blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 4 201 | content_id stringlengths 40 40 | detected_licenses listlengths 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 listlengths 1 1 | author stringlengths 0 119 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1e932ad0e997cd36ca22aa7325c8a76b8aa2e7be | 25b00327c5f303cff0cceb37343476a097fcf15b | /ggEngine/CastleVania/Stuff.h | 5803e1e8cdf980d7daa30428dde4d5cec426dc9d | [] | no_license | truongthanh96/ggEngine | e3fe42ad7d0979c3b0faebcfc19c15c8f6d5b96e | 6c0892b2352311bbd276a0111cbec677eabdd45d | refs/heads/master | 2022-03-29T16:02:49.261047 | 2017-06-14T14:00:16 | 2017-06-14T14:00:16 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 391 | h | #pragma once
#include <ggEngine.h>
#include "ItemBaseAnim.h"
using namespace ggEngine;
class Stuff : public ItemBaseAnim {
public:
Stuff(CVGame *cvGame, SpriteInfo *image, int frameWidth, int frameHeight, int defaultFrame = 0, int numberOfFrame = 0, DWORD msPerFrame = DEFAULT_MS_PER_FRAME_FOR_ANIMATION);
~Stuff();
void OnSimonContact(Simon *simon, ColliderArg e) override;
private:
}; | [
"umino.sharp@gmail.com"
] | umino.sharp@gmail.com |
21be7a15108ca8f5b39bfed55bc8ad690a50f56e | 1320fbedff6818abe5365349bec227c3213145bd | /Platformwrapper/Source/Common/Common.hpp | f8b3f8a1efefb4c385d82df224d4a7d47c3f65fd | [] | no_license | mbaturu/Ayria_cpp | 24a7271bab75bffd5ac91c3c6375fadf026fddd7 | d323b88300324bc00898955bdb1347eab5409891 | refs/heads/master | 2022-04-20T16:13:17.265834 | 2020-04-14T09:53:46 | 2020-04-14T09:53:46 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,891 | hpp | /*
Initial author: Convery (tcn@ayria.se)
Started: 2019-12-08
License: MIT
*/
#pragma once
#include <Stdinclude.hpp>
using Blob = std::basic_string<uint8_t>;
// LAN communication subsystem.
namespace Communication
{
struct Node_t
{
uint32_t Address;
uint32_t Timestamp;
uint64_t SessionID;
};
// For internal use, get our Node_t.
std::shared_ptr<Node_t> getLocalhost();
// Callbacks on events by name.
using Eventcallback_t = std::function<void(std::shared_ptr<Node_t> Sender, std::string &&Payload)>;
void addEventhandler(const std::string &Event, Eventcallback_t Callback);
// Push a message to all LAN clients.
void Broadcast(const std::string Eventname, std::string &&Payload);
// Spawn a thread that polls for packets in the background.
void Initialize(const uint16_t Port);
}
// Extend the communication-core.
namespace Matchmaking
{
struct Server_t
{
std::shared_ptr<Communication::Node_t> Core;
nlohmann::json Session{ nlohmann::json::object() };
template<typename T> void Set(std::string &&Property, T Value) { Session[Property] = Value; }
template<typename T> T Get(std::string &&Property, T Defaultvalue) { return Session.value(Property, Defaultvalue); }
};
// A list of all currently active servers on the local net.
std::vector<std::shared_ptr<Server_t>> Externalservers();
std::shared_ptr<Server_t> Localserver();
// Notify the public about our node being dirty.
void Broadcast();
// Callbacks on events by name.
using Eventcallback_t = std::function<void(std::shared_ptr<Server_t> Sender, std::string &&Payload)>;
void addEventhandler(const std::string &Event, Eventcallback_t Callback);
}
namespace Social
{
struct Social_t
{
std::shared_ptr<Communication::Node_t> Core;
nlohmann::json Richpresence{ nlohmann::json::object() };
template<typename T> void Set(std::string &&Property, T Value) { Richpresence[Property] = Value; }
template<typename T> T Get(std::string &&Property, T Defaultvalue) { return Richpresence.value(Property, Defaultvalue); }
};
// List all clients on the network as friends.
std::vector<std::shared_ptr<Social_t>> Friendlyclients();
// Callbacks on events by name.
using Eventcallback_t = std::function<void(std::shared_ptr<Social_t> Sender, std::string && Payload)>;
void addEventhandler(const std::string &Event, Eventcallback_t Callback);
}
namespace Ayria
{
// Keep the global state together.
#pragma pack(push, 1)
struct Globalstate_t
{
uint64_t UserID;
std::string Username;
uint64_t Startuptimestamp;
};
extern Globalstate_t Global;
#pragma pack(pop)
// Helper to create 'classes' when needed.
using Fakeclass_t = struct { void *VTABLE[70]; };
}
| [
"Convery10122@gmail.com"
] | Convery10122@gmail.com |
31967886496a7341ff7c8dea3d896cc9a519dd11 | 01e299722ef38a96207f1296b3a45c57ad6eed96 | /Problemas del juez automático/Ej21/Source.cpp | dfa9712ffbfc7ea28b16419c0beb74374a552169 | [] | no_license | jorgerodrigar/MARP | 115717b3a8279f35ea5e9f14869a550af5d61146 | 9e768a1771a27f0ab71f22335b10de312ed0a1a4 | refs/heads/master | 2020-03-30T01:44:20.780825 | 2018-12-19T11:09:34 | 2018-12-19T11:09:34 | 150,592,125 | 1 | 0 | null | null | null | null | ISO-8859-1 | C++ | false | false | 1,767 | cpp | //Jorge Rodríguez García
#include <iostream>
#include "PriorityQueue.h"
using namespace std;
// recoge la informacion de los usuarios registrados
struct InfoUsuario {
int id;
int periodo; //se usa para actualizar la prioridad cada periodo
int prioridad;
};
// redefino un comparador que compare la informacion de los usuarios segun las especs. del problema
// en caso de tener misma prioridad, se comparan identificadores
struct ComparadorInfo {
bool operator()(const InfoUsuario& _Left, const InfoUsuario& _Right) const {
if (_Left.prioridad == _Right.prioridad) return _Left.id < _Right.id;
else return _Left.prioridad < _Right.prioridad;
}
};
// calcula quienes seran los k proximos usuarios a los que se les enviara informacion teniendo en cuenta su prioridad
// y periodo -> en O(k*log n), siendo k el numero de usuarios a comprobar y n el numero de usuarios de la cola
void kPrimerosEnvios(PriorityQueue<InfoUsuario, ComparadorInfo>& priCola, int k) {
InfoUsuario infoUser;
for (int i = 0; i < k; i++) { // O(k), siendo k el numero de usuarios a comprobar
priCola.pop(infoUser); // O(log n), siendo n el numero de usuarios de la cola
cout << infoUser.id << endl;
infoUser.prioridad += infoUser.periodo;
priCola.push(infoUser); // O(log n)
}
cout << "----" << endl;
}
int main() {
int N, idUsuario, perUsuario, prioridad, k;
cin >> N;
while (N != 0) {
PriorityQueue<InfoUsuario, ComparadorInfo> priCola;
for (int i = 0; i < N; i++) {
cin >> idUsuario;
cin >> perUsuario;
prioridad = perUsuario;
InfoUsuario info = { idUsuario, perUsuario, prioridad };
priCola.push(info);
}
cin >> k;
kPrimerosEnvios(priCola, k);
cin >> N;
}
return 0;
} | [
"jorger09@ucm.es"
] | jorger09@ucm.es |
9ced221bb6a1c3d34c0f377b722bb668c54a9d44 | 786c9f1cec89bc17dcfd7f6782da8591886e54e4 | /examples/app_juce/JuceLibraryCode/include_juce_audio_formats.cpp | 4a8b9f3416fd311a44a62b53865d90f390a5716c | [
"MIT",
"LicenseRef-scancode-public-domain"
] | permissive | irh/freeverb-rs | 4e42e153229be0b7de49c8c4a916ed9f9299be1e | 5e85a24c7d1ddf9ad660282752c7b68a6941f90f | refs/heads/main | 2023-04-28T14:08:19.557000 | 2023-04-14T12:32:54 | 2023-04-14T12:33:28 | 158,553,815 | 183 | 18 | MIT | 2023-04-14T12:03:10 | 2018-11-21T13:41:39 | Rust | UTF-8 | C++ | false | false | 226 | cpp | /*
IMPORTANT! This file is auto-generated each time you save your
project - if you alter its contents, your changes may be overwritten!
*/
#include "AppConfig.h"
#include <juce_audio_formats/juce_audio_formats.cpp>
| [
"ian.r.hobson@gmail.com"
] | ian.r.hobson@gmail.com |
54e9431886c8844a351b8c27dcadee46e804ff74 | b88d0ff291bd8ceb76a23505e3add5cae714d464 | /ThreadCrashDemo/stdafx.cpp | 655bfa5fa83b2b60733b77952bfa6051eeb1ed26 | [] | no_license | SharkBSJ/MFC_9.0_Study | fc7efbbc6244cc9aa125eff6426255c9d1c8d7cf | f3a0502876378051cc9d7e40fc72c3db4731aec7 | refs/heads/master | 2020-08-11T21:24:26.111458 | 2019-10-12T12:36:29 | 2019-10-12T12:36:29 | 214,628,517 | 1 | 0 | null | null | null | null | UHC | C++ | false | false | 1,050 | cpp |
// stdafx.cpp : 표준 포함 파일만 들어 있는 소스 파일입니다.
// ThreadCrashDemo.pch는 미리 컴파일된 헤더가 됩니다.
// stdafx.obj에는 미리 컴파일된 형식 정보가 포함됩니다.
#include "stdafx.h"
CCriticalSection g_CS;
TCHAR* g_pszBuffer = NULL;
void SetString(TCHAR* pszData)
{
g_CS.Lock();
int nLength = lstrlen(pszData) + 1;
if (g_pszBuffer != NULL)
free(g_pszBuffer);
g_pszBuffer = (TCHAR*)malloc(sizeof(TCHAR) * nLength);
swprintf_s(g_pszBuffer, nLength, _T("%s"), pszData);
g_CS.Unlock();
}
BOOL GetString(TCHAR* pszData)
{
g_CS.Lock();
if (pszData != NULL && g_pszBuffer != NULL)
{
int nLength = lstrlen(g_pszBuffer);
swprintf_s(pszData, nLength + 1, _T("%s"), g_pszBuffer);
g_CS.Unlock();
return TRUE;
}
g_CS.Unlock();
return FALSE;
}
UINT ThreadFunc1(LPVOID nParam)
{
while (TRUE)
{
::Sleep(1);
SetString(_T("ThreadFunc1"));
}
return 0;
}
UINT ThreadFunc2(LPVOID nParam)
{
while (TRUE)
{
::Sleep(1);
SetString(_T("ThreadFunc2"));
}
return 0;
} | [
"baesungjin1996@gmail.com"
] | baesungjin1996@gmail.com |
76f535e3b742f210a42715cb01c49f525247d572 | e09d353de42f0ad64c96688eaa4714e576050965 | /Algorithms/bit-manipulation/cipher.cpp | 661d08419e21a0fa75da945e61512175debde93e | [] | no_license | poojajain10/HackerRank-2 | 32efb3e1d932090070f14004be208fb86c2f56cc | cead94ce3ba996fc6fb0116d517c2a3845b87c6c | refs/heads/master | 2021-07-20T07:54:13.480697 | 2017-10-28T04:48:31 | 2017-10-28T04:48:31 | 108,620,128 | 1 | 1 | null | 2017-10-28T04:39:13 | 2017-10-28T04:39:12 | null | UTF-8 | C++ | false | false | 361 | cpp | //cipher.cpp
//Cipher
//Weekly Challenges - Week 10
//Author: derekhh
#include<stdio.h>
int a[1000000];
int main()
{
int n, k;
scanf("%d %d\n", &n, &k);
int head = 0, curr = 0;
for (int i = 0; i < n; i++)
{
if (i - head == k)
curr ^= a[head++];
a[i] = (getchar() - '0') ^ curr;
printf("%d", a[i]);
curr ^= a[i];
}
printf("\n");
return 0;
} | [
"phoenixinter@gmail.com"
] | phoenixinter@gmail.com |
aeb7986b0535eb995040a1ea40a687e1fabb96a7 | 061edc5d76488b691f6ef5b8908624f7f840fdb9 | /Examples/BuoyancyWaterExample.h | f99086de733763f0fa1ff00c2476e39ceb6b6aed | [
"MIT"
] | permissive | hhc2tech/Vortex2D | 5d071e4e227b8cec246d5405807f7cfacb50f5a0 | de5230a572807064d7919f16c1e8c31c074af838 | refs/heads/master | 2020-04-15T23:07:22.025220 | 2019-01-07T15:43:58 | 2019-01-07T15:43:58 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,731 | h | //
// HydrostaticWaterExample.h
// Vortex2D
//
#include <Vortex2D/Vortex2D.h>
#include "Runner.h"
#include "Rigidbody.h"
#include <functional>
#include <vector>
#include <memory>
extern glm::vec4 red;
extern glm::vec4 blue;
class HydrostaticWaterExample : public Runner
{
const float gravityForce = 100.0f;
public:
HydrostaticWaterExample(const Vortex2D::Renderer::Device& device,
const glm::ivec2& size,
float dt)
: delta(dt)
, gravity(device, glm::vec2(256.0f, 256.0f))
, world(device, size, dt)
, solidPhi(world.SolidDistanceField())
, liquidPhi(world.LiquidDistanceField())
, rWorld(b2Vec2(0.0f, gravityForce))
, circle1(device, rWorld, b2_dynamicBody, world, Vortex2D::Fluid::RigidBody::Type::eStrong, 10.0f, 0.8f)
, circle2(device, rWorld, b2_dynamicBody, world, Vortex2D::Fluid::RigidBody::Type::eStrong, 10.0f, 0.9f)
, circle3(device, rWorld, b2_dynamicBody, world, Vortex2D::Fluid::RigidBody::Type::eStrong, 10.0f, 1.1f)
, left(device, rWorld, b2_staticBody, world, Vortex2D::Fluid::RigidBody::Type::eStatic, {5.0f, 125.0f})
, right(device, rWorld, b2_staticBody, world, Vortex2D::Fluid::RigidBody::Type::eStatic, {5.0f, 125.0f})
, bottom(device, rWorld, b2_staticBody, world, Vortex2D::Fluid::RigidBody::Type::eStatic, {250.0f, 5.0f})
{
gravity.Colour = glm::vec4(0.0f, dt * gravityForce, 0.0f, 0.0f);
solidPhi.Colour = red;
liquidPhi.Colour = blue;
}
void Init(const Vortex2D::Renderer::Device& device,
Vortex2D::Renderer::RenderTarget& renderTarget) override
{
// Add particles
Vortex2D::Renderer::IntRectangle fluid(device, {225.0f, 75.0f});
fluid.Position = {10.0f, 150.0f};
fluid.Colour = glm::vec4(4);
world.RecordParticleCount({fluid}).Submit().Wait();
// Draw boundaries
left.SetTransform({3.0f, 250.0f}, 0.0f);
left.Update();
right.SetTransform({250.0f, 250.0f}, 0.0f);
right.Update();
bottom.SetTransform({3.0f, 250.0f}, 0.0f);
bottom.Update();
// Add circles
circle1.SetTransform({50.0f, 100.0f}, 0.0f);
circle2.SetTransform({125.0f, 100.0f}, 0.0f);
circle3.SetTransform({200.0f, 100.0f}, 0.0f);
// Set gravity
velocityRender = world.RecordVelocity({gravity});
Vortex2D::Renderer::ColorBlendState blendState;
blendState.ColorBlend
.setBlendEnable(true)
.setAlphaBlendOp(vk::BlendOp::eAdd)
.setColorBlendOp(vk::BlendOp::eAdd)
.setSrcColorBlendFactor(vk::BlendFactor::eSrcAlpha)
.setSrcAlphaBlendFactor(vk::BlendFactor::eOne)
.setDstColorBlendFactor(vk::BlendFactor::eOneMinusSrcAlpha)
.setDstAlphaBlendFactor(vk::BlendFactor::eZero);
windowRender = renderTarget.Record({liquidPhi, solidPhi}, blendState);
}
void Step() override
{
circle1.Update();
circle2.Update();
circle3.Update();
world.SubmitVelocity(velocityRender);
world.Step();
const int velocityStep = 8;
const int positionStep = 3;
rWorld.Step(delta, velocityStep, positionStep);
windowRender.Submit();
}
private:
float delta;
Vortex2D::Renderer::Rectangle gravity;
Vortex2D::Fluid::WaterWorld world;
Vortex2D::Fluid::DistanceField solidPhi, liquidPhi;
Vortex2D::Renderer::RenderCommand velocityRender, windowRender;
b2World rWorld;
CircleRigidbody circle1, circle2, circle3;
BoxRigidbody left, right, bottom;
};
| [
"mmaldacker@gmail.com"
] | mmaldacker@gmail.com |
d15eeb95324b26d7ca55a0c655161a8a2fe5bca7 | dc212eeedf01702faeebd4e8d71264b08583cd26 | /sample/kmeans/main.cpp | fa84acf9f066443a160c8d510d14a0d1662d19cd | [] | no_license | zqplgl/kmeans | f90c83e5b8c05ee13b9444d1111a58b5a6dd46c1 | edff90af5cb9ed839deed75bea6f5b50ce96e217 | refs/heads/master | 2022-02-14T10:43:32.121650 | 2019-07-21T17:57:59 | 2019-07-21T17:57:59 | 198,070,216 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,161 | cpp | //
// Created by zqp on 19-7-21.
//
#include <iostream>
#include <opencv2/opencv.hpp>
#include <kmeans.h>
#include <memory>
#include <io.h>
using namespace std;
int main(int argc, char** argv) {
if(argc!=5) {
cerr<<"useage: kmeans feature_path k iters epsilon"<<endl;
return 0;
}
string json_path = argv[1];
int k = stoi(argv[2]);
int iters = stoi(argv[3]);
double epsilon = stod(argv[4]);
cv::Mat features;
IOHelper::LoadMatFromFile(features,json_path);
cerr << "loading features1 data success" << endl;
cerr << "features info:\trows "<<features.rows<<"\tcols "<<features.cols<<endl;
shared_ptr<Data<float>> data_ptr = make_shared<Data<float>>(features.rows,features.cols);
memcpy(data_ptr->data, features.data, features.rows*features.cols*sizeof(float));
Kmeans::TermCriteria term_criteria(3, iters,epsilon);
Kmeans kmeans(data_ptr,k, term_criteria,Kmeans::TYPE::KMEANS_PP_CENTERS);
shared_ptr<Data<int>> labels = make_shared<Data<int>>(features.rows,1);
shared_ptr<Data<float>> centers = make_shared<Data<float>>(k,features.cols);
kmeans.Cluster(labels,centers);
}
| [
"1316315878@qq.com"
] | 1316315878@qq.com |
4d77001491c080e3eacd5185b9bd1de476da5a59 | 156de3c57af4c6541b0c1cabfc933fb622aef44f | /RootCoreBin/include/xAODTrigL1Calo/versions/CMMJetHits_v1.h | 7401dbb72d9106695837c46291cd47752edc1bd4 | [] | no_license | Crashtime/ATLAS-JetCleaning | 704937a36e2b7c1d6908745eef1d02923b274447 | 442f298bfcd9196bef86b978588cce0c430507d7 | refs/heads/master | 2021-01-21T09:06:30.007753 | 2016-09-16T21:48:22 | 2016-09-16T21:48:22 | 68,410,571 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,117 | h | // Dear emacs, this is -*- c++ -*-
// $Id: CMMJetHits_v1.h 631127 2014-11-26 09:54:48Z gwatts $
#ifndef XAODTRIGL1CALO_VERSIONS_CMMJETHITS_V1_H
#define XAODTRIGL1CALO_VERSIONS_CMMJETHITS_V1_H
#include "AthLinks/ElementLink.h"
#include "AthContainers/AuxElement.h"
namespace xAOD {
/// Description of CMMJetHits_v1
///
/// @author John Morris <john.morris@cern.ch>
///
/// $Revision: 631127 $
/// $Date: 2014-11-26 10:54:48 +0100 (Wed, 26 Nov 2014) $
class CMMJetHits_v1 : public SG::AuxElement{
public:
// Default constructor
CMMJetHits_v1();
/// get crate number
int crate() const;
/// set crate number
void setCrate(int);
/// get dataID
int dataID() const;
/// set dataID
void setDataID(int);
/// get peak
int peak() const;
/// set peak
void setPeak(int);
/// get hitsVec - hits for all time slices
const std::vector<unsigned int>& hitsVec() const;
/// set hitsVec - hits for all time slices
void setHitsVec(const std::vector<unsigned int>&);
/// get errorVec - errors for all time slices
const std::vector<int>& errorVec() const;
/// set errorVec - errors for all time slices
void setErrorVec(const std::vector<int>&);
/// add hits. Internally calls setHitsVec(hits);setErrorVec(error);
void addHits(const std::vector<unsigned int>& hits,const std::vector<int>& error);
/// get hits for hitsVec[peak] - time slice that (hopefully) contains the collision
unsigned int hits() const;
/// get error for errorVec[peak] - time slice that (hopefully) contains the collision
int error() const;
/// Backwards Compatibility with Trigger/TrigT1/TrigT1CaloEvent
/// Run1 EDM did not strictly follow camelCaseNotation
/// See above for description
inline unsigned int Hits() const {return this->hits();}
inline int Error() const {return this->error();}
};
} // namespace xAOD
#endif // XAODTRIGL1CALO_VERSIONS_CMMJETHITS_V1_H
| [
"crashtime@gmail.com"
] | crashtime@gmail.com |
352c5bf3a5943cc3e3721cbb8ec7afd894baeb97 | 9bf7c59ca411b50c2e1199ed1d0cc5aa24627455 | /RS485_tx/RS485_tx.ino | 73f69b09ce2fbd511f8d225439192f1fd61f12bd | [] | no_license | abbyzava/telemetry | e3ff0734f1b6f1e80c12c9fea73c68a6915e0d12 | 4119065f487e7b174bdf54ed5456a4e523d1e4fa | refs/heads/master | 2020-06-04T21:32:08.979926 | 2019-05-09T01:03:47 | 2019-05-09T01:03:47 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,675 | ino | #include <SoftwareSerial.h>
#define TLMT_RS485_RO 12 //RX
#define TLMT_RS485_DI 9 //TX
#define TLMT_RS485_DE 11 //RS485 Direction control
#define TLMT_RS485_RE 10 //RS485 Direction control
#define TLMT_RS485_TRANSMIT HIGH
#define TLMT_RS485_RECEIVE LOW
#define TLMT_LED 13
SoftwareSerial RS485Serial(TLMT_RS485_RO, TLMT_RS485_DI); // RX, TX
int byteReceived;
int byteSend;
union ub_uint16{uint16_t value; byte bytes[2];};
ub_uint16 analogX;
void setup(){
// Start the built-in serial port, probably to Serial Monitor
Serial.begin(115200);
Serial.println("RS485 TX");
pinMode(TLMT_LED, OUTPUT); digitalWrite(TLMT_LED, HIGH);
pinMode(TLMT_RS485_DE, OUTPUT); digitalWrite(TLMT_RS485_DE, LOW);
pinMode(TLMT_RS485_RE, OUTPUT); digitalWrite(TLMT_RS485_RE, LOW);
RS485Serial.begin(9600);
analogX.value = 234;
}
void loop(){
beginTransmission();
RS485Serial.write(0xFF);
RS485Serial.write(0xFF);
RS485Serial.write(analogX.bytes, sizeof(analogX.bytes));
// int checksum = 255 - ((0x01 + 0x04 + 0x00 + analogX.bytes[0] + analogX.bytes[1])%256);
// RS485Serial.write(checksum); //INS
endTransmission();
// while (RS485Serial.available()){
// digitalWrite(TLMT_LED, HIGH);
//
// char _test = RS485Serial.read();
// Serial.print(_test);
//
// digitalWrite(TLMT_LED, LOW);
// }
}
void beginTransmission(){
digitalWrite(TLMT_LED, HIGH);
digitalWrite(TLMT_RS485_DE, TLMT_RS485_TRANSMIT);
digitalWrite(TLMT_RS485_RE, TLMT_RS485_TRANSMIT);
}
void endTransmission(){
digitalWrite(TLMT_RS485_DE, TLMT_RS485_RECEIVE);
digitalWrite(TLMT_RS485_RE, TLMT_RS485_RECEIVE);
digitalWrite(TLMT_LED, LOW);
}
| [
"mail@triqadafi.com"
] | mail@triqadafi.com |
45ff4d7ea3bae60165ac8c1c7eeca7a00899af32 | 3e6ecece23929a2f6bc02d02b00255248051ffb8 | /dolls/main.cpp | 7cd77a2a328c67a02cf2acbdf769b5109f5ff314 | [] | no_license | splteflre/CCC-and-other-Programming-problems | de853b5c6133a34bcb7557d0ef45f694fafcb8e3 | 839ee7c9a52e2a9d0398b2b1e829660fdc0ef418 | refs/heads/master | 2020-04-01T22:19:21.299370 | 2018-10-19T00:06:55 | 2018-10-19T00:06:55 | 153,701,939 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 401 | cpp | #include <bits/stdc++.h>
using namespace std;
map<int, int> bubu;
int n, big, small, temp;
vector<int> v;
int main()
{
cin >> n;
for(int i = 0; i < n; i++){
cin >> temp;
bubu[temp]++;
}
small = 1000001;
big = -1;
for(auto i: bubu){
big = max(i.second, big);
small = min(i.second, small);
}
cout << abs(big - small);
return 0;
}
| [
"jackmay.zhang@mail.utoronto.ca"
] | jackmay.zhang@mail.utoronto.ca |
d922574d496e4f1512501116fa3d7cb1a75a8371 | 64589428b06258be0b9b82a7e7c92c0b3f0778f1 | /Macacário/Math/fft.cpp | 3ac26dd09b82efc6adeabaff7ed1a82dabb14c0e | [] | no_license | splucs/Competitive-Programming | b6def1ec6be720c6fbf93f2618e926e1062fdc48 | 4f41a7fbc71aa6ab8cb943d80e82d9149de7c7d6 | refs/heads/master | 2023-08-31T05:10:09.573198 | 2023-08-31T00:40:32 | 2023-08-31T00:40:32 | 85,239,827 | 141 | 27 | null | 2023-01-08T20:31:49 | 2017-03-16T20:42:37 | C++ | UTF-8 | C++ | false | false | 3,339 | cpp | #include <vector>
#include <cstdio>
#include <complex>
using namespace std;
/*
* Fast complex
*/
struct base { // faster than complex<double>
double x, y;
base() : x(0), y(0) {}
base(double a, double b=0) : x(a), y(b) {}
base operator/=(double k) { x/=k; y/=k; return (*this); }
base operator*(base a) const { return base(x*a.x - y*a.y, x*a.y + y*a.x); }
base operator*=(base a) {
double tx = x*a.x - y*a.y;
double ty = x*a.y + y*a.x;
x = tx; y = ty;
return (*this);
}
base operator=(double a) { x=a; y=0; return (*this); }
base operator+(base a) const { return base(x+a.x, y+a.y); }
base operator+=(base a) { x+=a.x; y+=a.y; return (*this); }
base operator-(base a) const { return base(x-a.x, y-a.y); }
base operator-=(base a) { x-=a.x; y-=a.y; return (*this); }
double& real() { return x; }
double& imag() { return y; }
};
/*
* FFT - Fast Fourier Transform O(nlogn)
*/
//typedef complex<double> base;
void fft(vector<base> &a, bool invert) {
int n = (int)a.size();
for(int i = 1, j = 0; i < n; i++) {
int bit = n >> 1;
for(; j >= bit; bit >>= 1) j -= bit;
j += bit;
if (i < j) swap(a[i], a[j]);
}
for(int len = 2; len <= n; len <<= 1) {
double ang = 2*acos(-1.0)/len * (invert ? -1 : 1);
base wlen(cos(ang), sin(ang));
for(int i = 0; i < n; i += len) {
base w(1);
for(int j = 0; j < len/2; j++) {
base u = a[i+j], v = a[i+j+len/2] * w;
a[i + j] = u + v;
a[i + j + len/2] = u - v;
w *= wlen;
}
}
}
for (int i = 0; invert && i < n; i++) a[i] /= n;
}
void convolution(vector<base> a, vector<base> b, vector<base> &res) {
int n = 1;
while(n < max(a.size(), b.size())) n <<= 1;
n <<= 1;
a.resize(n), b.resize(n);
fft(a, false); fft(b, false);
res.resize(n);
for(int i=0; i<n; ++i) res[i] = a[i]*b[i];
fft(res, true);
}
void circularConv(vector<base> &a, vector<base> &b, vector<base> &res) {
//assert(a.size() == b.size());
int n = a.size();
convolution(a, b, res);
for(int i = n; i < (int)res.size(); i++)
res[i%n] += res[i];
res.resize(n);
}
/*
* SQRT DECOMPOSITION FOR FFT
*/
#include <cmath>
#define MOD 1000003LL
#define SMOD 1024LL // ~ sqrt(MOD)
typedef long long ll;
void sqrtConv(vector<ll> a, vector<ll> b, vector<ll> & c) {
vector<base> ca[2], cb[2], cc[2][2];
ca[0].resize(a.size());
ca[1].resize(a.size());
for(int i=0; i<(int)a.size(); i++) {
ca[0][i] = base(a[i] % SMOD, 0);
ca[1][i] = base(a[i] / SMOD, 0);
}
cb[0].resize(b.size());
cb[1].resize(b.size());
for(int i=0; i<(int)b.size(); i++) {
cb[0][i] = base(b[i] % SMOD, 0);
cb[1][i] = base(b[i] / SMOD, 0);
}
for(int l=0; l<2; l++) for(int r=0; r<2; r++)
convolution(ca[l], cb[r], cc[l][r]);
c.resize(cc[0][0].size());
for(int i=0; i<(int)c.size(); i++) {
c[i] =
(((ll)round(cc[1][1][i].real()))%MOD*(SMOD*SMOD)%MOD)%MOD +
((ll)round(cc[0][1][i].real()))%MOD*SMOD%MOD +
((ll)round(cc[1][0][i].real()))%MOD*SMOD%MOD +
((ll)round(cc[0][0][i].real()))%MOD;
c[i] %= MOD;
}
}
/*
* TEST MATRIX
*/
int main()
{
base a (1);
base b (2);
base c (3);
base d (4);
base e (5);
base f (6);
vector<base> A, B, C;
A.push_back(c);
A.push_back(b);
A.push_back(a);
B.push_back(f);
B.push_back(e);
B.push_back(d);
B.push_back(c);
convolution(A, B, C);
for(int i=0; i<(int)C.size(); i++) {
printf(" %.2f", C[i].real());
}
return 0;
} | [
"lucas.fra.oli18@gmail.com"
] | lucas.fra.oli18@gmail.com |
f40b86958686be2e49e2550855889b495ffcfce5 | ceb22be12b415b1fc27d8d156d7967ad8f718614 | /pogre/AnimationManager.cpp | 00e52f2e2306d4a911033a8dd584023f351a4365 | [
"MIT"
] | permissive | ValtoLibraries/PUtils | eb995fa40a900ae051aad1efae6f1786651c8e49 | f30ebf21416654743ad2a05b14974acd27257da8 | refs/heads/master | 2021-01-20T03:01:45.752484 | 2018-08-22T21:59:53 | 2018-08-22T21:59:53 | 101,342,848 | 0 | 0 | MIT | 2018-08-22T21:59:54 | 2017-08-24T22:31:07 | C++ | UTF-8 | C++ | false | false | 891 | cpp | #include "AnimationManager.hpp"
namespace pogre
{
namespace detail
{
void AnimationManager::addAnimation(Ogre::AnimationState &anim, bool loop) noexcept
{
anim.setLoop(loop);
anim.setEnabled(true);
_animations.push_back(&anim);
}
void AnimationManager::removeAnimation(Ogre::AnimationState &anim) noexcept
{
auto it = std::find(_animations.begin(), _animations.end(), &anim);
if (it != _animations.end())
{
(*it)->setLoop(false);
(*it)->setEnabled(false);
_animations.erase(it);
}
}
void AnimationManager::frameRendered(const Ogre::FrameEvent &event) noexcept
{
for (const auto anim : _animations)
anim->addTime(event.timeSinceLastFrame);
}
}
} | [
"nicolas@phister.fr"
] | nicolas@phister.fr |
2246cc7831e177a292d6d333e29c07a468a55666 | 6c9bf7aef87eda0bbbc6ddd4e375a28337c93c51 | /single_pin.ino | 0f567a17d152bd180c44af8f9923a9d4f4388d6e | [] | no_license | Sahith140699/ESD_Project | 80df623739fd5659568c7387f359abf30ed77cb0 | bab03705157b0b5f000fb51a11349cdbc04aaa4f | refs/heads/master | 2020-07-30T06:06:48.295196 | 2019-10-18T07:35:20 | 2019-10-18T07:35:20 | 210,112,361 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,470 | ino | int d_pin[8]; //Data Pins
int data[8]; // Current Values
int pdata[8]; //Previous Values
unsigned long lastDebounceTime[8] ; // the last time the output pin was toggled
unsigned long debounceDelay = 25; // the debounce time; increase if the output flickers
int i = 0;
int r,c;
byte pb,pb_prev,mode,mode_prev;
int num = 0;
void setup() {
pb_prev = 40;
mode_prev = 1;
d_pin[6] = 2;
d_pin[7] = 3;
for(i=0;i<6;i++)
{ d_pin[i]=i+4;
lastDebounceTime[i] = 0;
pinMode(d_pin[i],INPUT_PULLUP);
pdata[i] = HIGH;
}
lastDebounceTime[6] = 0;
lastDebounceTime[7] = 0;
pinMode(d_pin[6],INPUT_PULLUP);
pinMode(d_pin[7],INPUT_PULLUP);
Serial.begin(9600);
}
void loop() {
int j = 0;
for(j=0; j<8; j++)
{
int reading = digitalRead(d_pin[j]);
if (reading != pdata[j]) {
// reset the debouncing timer
lastDebounceTime[j] = millis();
}
if ((millis() - lastDebounceTime[j]) > debounceDelay) {
// if the button state has changed:
if (reading != data[j]) {
data[j] = reading;
}
}
pdata[j] = reading;
}
if(data[0]==0)
r=0;
else if(data[1]==0)
r=1;
else if(data[2]==0)
r=2;
else
r=10;
if(data[3]==0)
c=0;
else if(data[4]==0)
c=1;
else if(data[5]==0)
c=2;
else
c=10;
for(i=0;i<6;i++)
{
num += data[i];
}
pb=3*r+c;
if(pb != pb_prev && num == 4)
{
// Serial.write(data);
Serial.println(pb);
}
pb_prev = pb;
num = 0;
}
| [
"noreply@github.com"
] | noreply@github.com |
415950a1cc6152c797880c355e09b943de329b78 | 41495754cf8b951b23cece87b5c79a726748cff7 | /Library/Graphs/MST.cpp | 33c4bc3af86a1a9e94391b3960df8f781a9ba218 | [] | no_license | PedroAngeli/Competitive-Programming | 86ad490eced6980d7bc3376a49744832e470c639 | ff64a092023987d5e3fdd720f56c62b99ad175a6 | refs/heads/master | 2021-10-23T04:49:51.508166 | 2021-10-13T21:39:21 | 2021-10-13T21:39:21 | 198,916,501 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,205 | cpp | #include <bits/stdc++.h>
using namespace std;
#define f first
#define s second
#define all(c) (c).begin(), (c).end()
const int INF = 1e9 + 7;
struct UnionFind{
vector <int> parent;
vector <int> set_size;
int V;
UnionFind(int V):V(V){
parent.resize(V+1);
iota(all(parent),0);
set_size.assign(V+1,1);
}
int find(int x){
if(x == parent[x]) return x;
return parent[x] = find(parent[x]);
}
bool join(int x,int y){
x = find(x);
y = find(y);
if(x == y) return false;
if(set_size[x] > set_size[y]) swap(x,y);
parent[x] = y;
set_size[y] += set_size[x];
return true;
}
};
struct Graph{
vector <pair<int, pair <int,int>>> edges;
vector <pair<int, pair <int,int>>> edges_in_mst;
int V;
Graph(int V): V(V){}
void addEdge(int u,int v,int w){
edges.push_back({w,{u,v}});
}
//Returns the cost of the MST. O(E LOG E)
int kruskal(){
sort(all(edges));
UnionFind dsu(V);
int cost = 0;
for(auto e : edges){
int w = e.f;
int u = e.s.f;
int v = e.s.s;
if(dsu.find(u) == dsu.find(v)) continue;
edges_in_mst.push_back({w,{u,v}});
dsu.join(u,v);
cost += w;
}
return cost;
}
}; | [
"pedroans.angeli@hotmail.com"
] | pedroans.angeli@hotmail.com |
8803df6120e217f5d20c70c27c5f3f2bafb95083 | b45d18bc185a4fca73d6710af1828bccfccfdbb3 | /Chapter6/chapter6-2/merge_sort_2t.cpp | d069f5eb8b38bac9ab213cdaa7ae9df206a10177 | [] | no_license | fnsne/algorithm | 4535e5c9b8a5ab468fca9701f317694a6479e7b5 | 71ccd57f83fe40a255d33648e9c0237766cb0aff | refs/heads/master | 2021-05-09T03:50:23.361824 | 2018-02-11T06:38:35 | 2018-02-11T06:38:35 | 119,254,170 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,801 | cpp | #include<iostream>
#include<vector>
using namespace std;
vector<int> merge_sort(vector<int> data, int beg, int end);
vector<int> put_sorted_2_to_one(vector<int>&a, vector<int>&b);
vector<int> init_numbers();
void print_vector(vector<int>& vec);
int main(){
vector<int> numbers = init_numbers();
int beg = 0;
int end = numbers.size()-1;
cout << "the origin number sequence is ";
print_vector(numbers);
vector<int> sorted_nums = merge_sort(numbers, beg, end);
cout << "after merge sort " << endl;
cout << "the sorted number sequence is ";
print_vector(sorted_nums);
return 0;
}
void print_vector(vector<int>& vec){
for(int i : vec){
cout << i << ", " ;
}
cout << endl;
return;
}
vector<int> merge_sort(vector<int> data, int beg, int end){
vector<int> sorted_nums;
if(beg < end){
//divide and conquer
vector<int> left = merge_sort(data, beg, (beg+end)/2);
vector<int> right = merge_sort(data, (beg+end)/2+1, end);
//combine
sorted_nums = put_sorted_2_to_one(left, right);
}else{
sorted_nums.push_back(data[beg]);
}
return sorted_nums;
}
vector<int> put_sorted_2_to_one(vector<int>&a, vector<int>&b){
vector<int> sorted_nums;
int i = 0, j = 0;
int a_length = a.size();
int b_length = b.size();
while( (i<a_length)&&(j<b_length) ){
if(a[i] < b[j]){
sorted_nums.push_back(a[i]);
i++;
}else{
sorted_nums.push_back(b[j]);
j++;
}
}
for(; i < a_length; i++){
sorted_nums.push_back(a[i]);
}
for(; j < b_length; j++){
sorted_nums.push_back(b[j]);
}
return sorted_nums;
}
vector<int> init_numbers(){
int data[8] = {2,-1,3,9,9,-2,0,5};
vector<int>vec_data;
for(int i = 0 ; i < sizeof(data)/sizeof(data[0]); i++){
vec_data.push_back(data[i]);
}
return vec_data;
}
| [
"watashiwafnsne@gmail.com"
] | watashiwafnsne@gmail.com |
cfbe35ef10b3a9baaf78eb2e7f3356983bcf2840 | 63bc7c6d53d034100c4c0a067dedcb734fb00848 | /PhysiCell/modules/PhysiCell_settings.cpp | 59e2fd5ef8a0deff2667bcdb58a0f5bd49e2af67 | [
"BSD-3-Clause"
] | permissive | jrfaeder/COVID19 | 783fae17e7d8c6fec8a106232cebd1e29fe2e53d | 9284764f992899baf302b592dcd42c5bdec6cb14 | refs/heads/master | 2022-04-21T11:50:43.060579 | 2020-03-26T16:23:25 | 2020-03-26T16:23:25 | 258,623,832 | 0 | 0 | BSD-3-Clause | 2020-04-24T21:03:13 | 2020-04-24T21:03:12 | null | UTF-8 | C++ | false | false | 27,736 | cpp | /*
###############################################################################
# If you use PhysiCell in your project, please cite PhysiCell and the version #
# number, such as below: #
# #
# We implemented and solved the model using PhysiCell (Version x.y.z) [1]. #
# #
# [1] A Ghaffarizadeh, R Heiland, SH Friedman, SM Mumenthaler, and P Macklin, #
# PhysiCell: an Open Source Physics-Based Cell Simulator for Multicellu- #
# lar Systems, PLoS Comput. Biol. 14(2): e1005991, 2018 #
# DOI: 10.1371/journal.pcbi.1005991 #
# #
# See VERSION.txt or call get_PhysiCell_version() to get the current version #
# x.y.z. Call display_citations() to get detailed information on all cite-#
# able software used in your PhysiCell application. #
# #
# Because PhysiCell extensively uses BioFVM, we suggest you also cite BioFVM #
# as below: #
# #
# We implemented and solved the model using PhysiCell (Version x.y.z) [1], #
# with BioFVM [2] to solve the transport equations. #
# #
# [1] A Ghaffarizadeh, R Heiland, SH Friedman, SM Mumenthaler, and P Macklin, #
# PhysiCell: an Open Source Physics-Based Cell Simulator for Multicellu- #
# lar Systems, PLoS Comput. Biol. 14(2): e1005991, 2018 #
# DOI: 10.1371/journal.pcbi.1005991 #
# #
# [2] A Ghaffarizadeh, SH Friedman, and P Macklin, BioFVM: an efficient para- #
# llelized diffusive transport solver for 3-D biological simulations, #
# Bioinformatics 32(8): 1256-8, 2016. DOI: 10.1093/bioinformatics/btv730 #
# #
###############################################################################
# #
# BSD 3-Clause License (see https://opensource.org/licenses/BSD-3-Clause) #
# #
# Copyright (c) 2015-2018, Paul Macklin and the PhysiCell Project #
# All rights reserved. #
# #
# Redistribution and use in source and binary forms, with or without #
# modification, are permitted provided that the following conditions are met: #
# #
# 1. Redistributions of source code must retain the above copyright notice, #
# this list of conditions and the following disclaimer. #
# #
# 2. 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. #
# #
# 3. Neither the name of the copyright holder nor the names of its #
# contributors may be used to endorse or promote products derived from this #
# software without specific prior written permission. #
# #
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" #
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE #
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE #
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE #
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR #
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF #
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS #
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN #
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) #
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE #
# POSSIBILITY OF SUCH DAMAGE. #
# #
###############################################################################
*/
#include "./PhysiCell_settings.h"
using namespace BioFVM;
namespace PhysiCell{
PhysiCell_Settings PhysiCell_settings;
User_Parameters parameters;
bool physicell_config_dom_initialized = false;
pugi::xml_document physicell_config_doc;
pugi::xml_node physicell_config_root;
bool load_PhysiCell_config_file( std::string filename )
{
std::cout << "Using config file " << filename << " ... " << std::endl ;
pugi::xml_parse_result result = physicell_config_doc.load_file( filename.c_str() );
if( result.status != pugi::xml_parse_status::status_ok )
{
std::cout << "Error loading " << filename << "!" << std::endl;
return false;
}
physicell_config_root = physicell_config_doc.child("PhysiCell_settings");
physicell_config_dom_initialized = true;
PhysiCell_settings.read_from_pugixml();
// now read the microenvironment (optional)
if( !setup_microenvironment_from_XML( physicell_config_root ) )
{
std::cout << std::endl
<< "Warning: microenvironment_setup not found in " << filename << std::endl
<< " Either manually setup microenvironment in setup_microenvironment() (custom.cpp)" << std::endl
<< " or consult documentation to add microenvironment_setup to your configuration file." << std::endl << std::endl;
}
// now read user parameters
parameters.read_from_pugixml( physicell_config_root );
return true;
}
PhysiCell_Settings::PhysiCell_Settings()
{
// units
time_units = "min";
space_units = "micron";
// save options
folder = ".";
max_time = 60*24*45;
full_save_interval = 60;
enable_full_saves = true;
enable_legacy_saves = false;
SVG_save_interval = 60;
enable_SVG_saves = true;
// parallel options
omp_num_threads = 4;
return;
}
void PhysiCell_Settings::read_from_pugixml( void )
{
pugi::xml_node node;
// overall options
node = xml_find_node( physicell_config_root , "overall" );
max_time = xml_get_double_value( node , "max_time" );
time_units = xml_get_string_value( node, "time_units" ) ;
space_units = xml_get_string_value( node, "space_units" ) ;
// check to see if dt is specified in overall options
// if so, set from XML
pugi::xml_node search_result;
search_result = xml_find_node( node , "dt_diffusion" );
if( search_result )
{ diffusion_dt = xml_get_my_double_value( search_result ); }
search_result = xml_find_node( node , "dt_mechanics" );
if( search_result )
{ mechanics_dt = xml_get_my_double_value( search_result ); }
search_result = xml_find_node( node , "dt_phenotype" );
if( search_result )
{ phenotype_dt = xml_get_my_double_value( search_result ); }
node = node.parent();
// save options
node = xml_find_node( physicell_config_root , "save" );
folder = xml_get_string_value( node, "folder" ) ;
node = xml_find_node( node , "full_data" );
full_save_interval = xml_get_double_value( node , "interval" );
enable_full_saves = xml_get_bool_value( node , "enable" );
node = node.parent();
node = xml_find_node( node , "SVG" );
SVG_save_interval = xml_get_double_value( node , "interval" );
enable_SVG_saves = xml_get_bool_value( node , "enable" );
node = node.parent();
node = xml_find_node( node , "legacy_data" );
enable_legacy_saves = xml_get_bool_value( node , "enable" );
node = node.parent();
// parallel options
node = xml_find_node( physicell_config_root , "parallel" );
omp_num_threads = xml_get_int_value( node, "omp_num_threads" );
node = node.parent();
// domain options
node = xml_find_node( physicell_config_root , "domain" );
double xmin = xml_get_double_value( node , "x_min" );
double xmax = xml_get_double_value( node , "x_max" );
double ymin = xml_get_double_value( node , "y_min" );
double ymax = xml_get_double_value( node , "y_max" );
double zmin = xml_get_double_value( node , "z_min" );
double zmax = xml_get_double_value( node , "z_max" );
double dx = xml_get_double_value( node, "dx" );
double dy = xml_get_double_value( node, "dy" );
double dz = xml_get_double_value( node, "dz" );
default_microenvironment_options.simulate_2D = xml_get_bool_value( node, "use_2D" );
if( default_microenvironment_options.simulate_2D == true )
{
zmin = -0.5 * dz;
zmax = 0.5 * dz;
}
default_microenvironment_options.X_range = {xmin, xmax};
default_microenvironment_options.Y_range = {ymin, ymax};
default_microenvironment_options.Z_range = {zmin, zmax};
default_microenvironment_options.dx = dx;
default_microenvironment_options.dy = dy;
default_microenvironment_options.dz = dz;
node = node.parent();
// random seed options
return;
}
PhysiCell_Globals PhysiCell_globals;
/* parameters functions */
template <class T>
Parameter<T>::Parameter()
{
name = "unnamed";
units= "none";
/*
T* pT;
pT = new T;
value = *pT;
*/
value = (T) 0;
// value = 1-1;
return;
}
template <> Parameter<std::string>::Parameter()
{
name = "unnamed";
units= "none";
value = "none";
return;
}
template <class T>
Parameter<T>::Parameter( std::string my_name )
{
name = my_name;
units = "dimensionless";
/*
T* pT;
pT = new T;
value = *pT;
*/
value = (T) 0;
return;
}
template <> Parameter<std::string>::Parameter( std::string my_name )
{
name = my_name;
units= "none";
value = "none";
return;
}
template <class T>
void Parameter<T>::operator=( T& rhs )
{
value = rhs;
return;
}
template <class T>
void Parameter<T>::operator=( T rhs )
{
value = rhs;
return;
}
template <class T>
void Parameter<T>::operator=( Parameter& p )
{
name = p.name;
units = p.units;
value = p.value;
return;
}
template <class T>
std::ostream& operator<<(std::ostream& os, const Parameter<T>& param)
{
os << param.name << ": " << param.value << " [" << param.units << "]";
return os;
}
template <class T>
int Parameters<T>::size( void ) const
{ return parameters.size(); }
template <class T>
T& Parameters<T>::operator()( int i )
{
return parameters[i].value;
}
template <class T>
T& Parameters<T>::operator()( std::string str )
{
return parameters[ name_to_index_map[str] ].value;
}
template <class T>
Parameter<T>& Parameters<T>::operator[]( int i )
{
return parameters[i];
}
template <class T>
Parameter<T>& Parameters<T>::operator[]( std::string str )
{
return parameters[ name_to_index_map[str] ];
}
template <class T>
int Parameters<T>::find_index( std::string search_name )
{
return name_to_index_map[ search_name ];
}
template <class T>
std::ostream& operator<<( std::ostream& os , const Parameters<T>& params )
{
for( int i=0; i < params.parameters.size() ; i++ )
{
os << params.parameters[i] << std::endl;
}
return os;
}
template <class T>
Parameters<T>::Parameters()
{
parameters.resize( 0 );
name_to_index_map.clear();
return;
}
template <class T>
void Parameters<T>::add_parameter( std::string my_name )
{
Parameter<T>* pNew;
pNew = new Parameter<T> ;
pNew->name = my_name ;
int n = parameters.size();
parameters.push_back( *pNew );
name_to_index_map[ my_name ] = n;
return;
}
template <class T>
void Parameters<T>::add_parameter( std::string my_name , T my_value )
{
Parameter<T>* pNew;
pNew = new Parameter<T> ;
pNew->name = my_name ;
pNew->value = my_value;
int n = parameters.size();
parameters.push_back( *pNew );
name_to_index_map[ my_name ] = n;
return;
}
/*
template <class T>
void Parameters<T>::add_parameter( std::string my_name , T my_value )
{
Parameter<T>* pNew;
pNew = new Parameter<T> ;
pNew->name = my_name ;
pNew->value = my_value;
int n = parameters.size();
parameters.push_back( *pNew );
name_to_index_map[ my_name ] = n;
return;
}
*/
template <class T>
void Parameters<T>::add_parameter( std::string my_name , T my_value , std::string my_units )
{
Parameter<T>* pNew;
pNew = new Parameter<T> ;
pNew->name = my_name ;
pNew->value = my_value;
pNew->units = my_units;
int n = parameters.size();
parameters.push_back( *pNew );
name_to_index_map[ my_name ] = n;
return;
}
/*
template <class T>
void Parameters<T>::add_parameter( std::string my_name , T my_value , std::string my_units )
{
Parameter<T>* pNew;
pNew = new Parameter<T> ;
pNew->name = my_name ;
pNew->value = my_value;
pNew->units = my_units;
int n = parameters.size();
parameters.push_back( *pNew );
name_to_index_map[ my_name ] = n;
return;
}
*/
template <class T>
void Parameters<T>::add_parameter( Parameter<T> param )
{
int n = parameters.size();
parameters.push_back( param);
name_to_index_map[ param.name ] = n;
return;
}
std::ostream& operator<<( std::ostream& os , const User_Parameters up )
{
os << "Bool parameters:: " << std::endl << up.bools << std::endl;
os << "Int parameters:: " << std::endl << up.ints << std::endl;
os << "Double parameters:: " << std::endl << up.doubles << std::endl;
os << "String parameters:: " << std::endl << up.strings << std::endl;
return os;
}
void User_Parameters::read_from_pugixml( pugi::xml_node parent_node )
{
pugi::xml_node node = xml_find_node( parent_node , "user_parameters" );
pugi::xml_node node1 = node.first_child();
int i = 0;
while( node1 )
{
std::string name = xml_get_my_name( node1 );
std::string units = node1.attribute( "units" ).value();
if( units == "" )
{ units = "dimensionless"; }
std::string type = node1.attribute( "type" ).value();
bool done = false ;
if( type == "bool" && done == false )
{
bool value = xml_get_my_bool_value( node1 );
bools.add_parameter( name , value, units );
done = true;
}
if( type == "int" && done == false )
{
int value = xml_get_my_int_value( node1 );
ints.add_parameter( name , value, units );
done = true;
}
if( type == "double" && done == false )
{
double value = xml_get_my_double_value( node1 );
doubles.add_parameter( name , value, units );
done = true;
}
if( done == false && type == "string" )
{
std::string value = xml_get_my_string_value( node1 );
strings.add_parameter( name, value , units );
done = true;
}
/* default if no type specified: */
if( done == false )
{
double value = xml_get_my_double_value( node1 );
doubles.add_parameter( name , value, units );
done = true;
}
node1 = node1.next_sibling();
i++;
}
std::cout << "User parameters in XML config file: " << std::endl;
std::cout << *this << std::endl;
return;
}
// need this so that the template gets filled and compiled prior to linking
template class Parameter<bool>;
template class Parameter<int>;
template class Parameter<double>;
template class Parameter<std::string>;
template class Parameters<bool>;
template class Parameters<int>;
template class Parameters<double>;
template class Parameters<std::string>;
template std::ostream& operator<<(std::ostream& os, const Parameter<bool>& param);
template std::ostream& operator<<(std::ostream& os, const Parameter<int>& param);
template std::ostream& operator<<(std::ostream& os, const Parameter<double>& param);
template std::ostream& operator<<(std::ostream& os, const Parameter<std::string>& param);
bool setup_microenvironment_from_XML( pugi::xml_node root_node )
{
pugi::xml_node node;
// First, look for the correct XML node.
// If it isn't there, return false.
node = xml_find_node( root_node , "microenvironment_setup" );
if( !node )
{ return false; }
// now that we're using the XML to specify the microenvironment, don't
// use old defaults
// Don't let BioFVM use oxygen as the default
default_microenvironment_options.use_oxygen_as_first_field = false;
std::vector<double> initial_condition_vector = {};
std::vector<double> Dirichlet_condition_vector = {};
std::vector<bool> Dirichlet_activation_vector = {};
std::vector<bool> Dirichlet_all = {};
std::vector<bool> Dirichlet_xmin = {};
std::vector<bool> Dirichlet_xmax = {};
std::vector<bool> Dirichlet_ymin = {};
std::vector<bool> Dirichlet_ymax = {};
std::vector<bool> Dirichlet_zmin = {};
std::vector<bool> Dirichlet_zmax = {};
std::vector<double> Dirichlet_xmin_values = {};
std::vector<double> Dirichlet_xmax_values = {};
std::vector<double> Dirichlet_ymin_values = {};
std::vector<double> Dirichlet_ymax_values = {};
std::vector<double> Dirichlet_zmin_values = {};
std::vector<double> Dirichlet_zmax_values = {};
std::vector<double> Dirichlet_interior_values = {};
// next, add all the substrates to the microenvironment
// build the initial conditions and Dirichlet conditions as we go
// find the first substrate
pugi::xml_node node1 = node.child( "variable" ); // xml_find_node( node , "variable" );
node = node1;
int i = 0;
bool activated_Dirichlet_boundary_detected = false;
while( node )
{
// get the name and units
std::string name = node.attribute( "name" ).value();
std::string units = node.attribute( "units" ).value();
// add the substrate
if( i == 0 )
{ microenvironment.set_density( 0, name, units ); }
else
{ microenvironment.add_density( name, units ); }
// get the diffusion and decay parameters
node1 = xml_find_node( node, "physical_parameter_set" );
microenvironment.diffusion_coefficients[i] =
xml_get_double_value( node1, "diffusion_coefficient" );
microenvironment.decay_rates[i] =
xml_get_double_value( node1, "decay_rate" );
// now, get the initial value
node1 = xml_find_node( node, "initial_condition" );
initial_condition_vector.push_back( xml_get_my_double_value(node1) );
// now, get the Dirichlet value
node1 = xml_find_node( node, "Dirichlet_boundary_condition" );
Dirichlet_condition_vector.push_back( xml_get_my_double_value(node1) );
// now, decide whether or not to enable it
Dirichlet_activation_vector.push_back( node1.attribute("enabled").as_bool() );
Dirichlet_all.push_back( Dirichlet_activation_vector[i] );
if( Dirichlet_activation_vector[i] )
{ activated_Dirichlet_boundary_detected = true; }
// default interior activation will mirror the boundary
Dirichlet_xmin.push_back( Dirichlet_activation_vector[i] );
Dirichlet_xmax.push_back( Dirichlet_activation_vector[i] );
Dirichlet_ymin.push_back( Dirichlet_activation_vector[i] );
Dirichlet_ymax.push_back( Dirichlet_activation_vector[i] );
Dirichlet_zmin.push_back( Dirichlet_activation_vector[i] );
Dirichlet_zmax.push_back( Dirichlet_activation_vector[i] );
Dirichlet_xmin_values.push_back( Dirichlet_condition_vector[i] );
Dirichlet_xmax_values.push_back( Dirichlet_condition_vector[i] );
Dirichlet_ymin_values.push_back( Dirichlet_condition_vector[i] );
Dirichlet_ymax_values.push_back( Dirichlet_condition_vector[i] );
Dirichlet_zmin_values.push_back( Dirichlet_condition_vector[i] );
Dirichlet_zmax_values.push_back( Dirichlet_condition_vector[i] );
// now figure out finer-grained controls
node1 = node.child( "Dirichlet_options" );
if( node1 )
{
// xmin, xmax, ymin, ymax, zmin, zmax, interior
pugi::xml_node node2 = node1.child("boundary_value");
while( node2 )
{
// which boundary?
std::string boundary_ID = node2.attribute("ID").value();
// xmin
if( std::strstr( boundary_ID.c_str() , "xmin" ) )
{
// on or off
Dirichlet_xmin[i] = node2.attribute("enabled").as_bool();
// if there is at least one off bondary here, "all" is false for this substrate
if( node2.attribute("enabled").as_bool() == false )
{ Dirichlet_all[i] = false; }
// which value
{ Dirichlet_xmin_values[i] = xml_get_my_double_value( node2 ); }
}
// xmax
if( std::strstr( boundary_ID.c_str() , "xmax" ) )
{
// on or off
Dirichlet_xmax[i] = node2.attribute("enabled").as_bool();
// if there is at least one off bondary here, "all" is false for this substrate
if( node2.attribute("enabled").as_bool() == false )
{ Dirichlet_all[i] = false; }
// which value
{ Dirichlet_xmax_values[i] = xml_get_my_double_value( node2 ); }
}
// ymin
if( std::strstr( boundary_ID.c_str() , "ymin" ) )
{
// on or off
Dirichlet_ymin[i] = node2.attribute("enabled").as_bool();
// if there is at least one off bondary here, "all" is false for this substrate
if( node2.attribute("enabled").as_bool() == false )
{ Dirichlet_all[i] = false; }
// which value
{ Dirichlet_ymin_values[i] = xml_get_my_double_value( node2 ); }
}
// ymax
if( std::strstr( boundary_ID.c_str() , "ymax" ) )
{
// on or off
Dirichlet_ymax[i] = node2.attribute("enabled").as_bool();
// if there is at least one off bondary here, "all" is false for this substrate
if( node2.attribute("enabled").as_bool() == false )
{ Dirichlet_all[i] = false; }
// which value
{ Dirichlet_ymax_values[i] = xml_get_my_double_value( node2 ); }
}
// zmin
if( std::strstr( boundary_ID.c_str() , "zmin" ) )
{
// on or off
Dirichlet_zmin[i] = node2.attribute("enabled").as_bool();
// if there is at least one off bondary here, "all" is false for this substrate
if( node2.attribute("enabled").as_bool() == false )
{ Dirichlet_all[i] = false; }
// which value
{ Dirichlet_zmin_values[i] = xml_get_my_double_value( node2 ); }
}
// zmax
if( std::strstr( boundary_ID.c_str() , "zmax" ) )
{
// on or off
Dirichlet_zmax[i] = node2.attribute("enabled").as_bool();
// if there is at least one off bondary here, "all" is false for this substrate
if( node2.attribute("enabled").as_bool() == false )
{ Dirichlet_all[i] = false; }
// which value
{ Dirichlet_zmax_values[i] = xml_get_my_double_value( node2 ); }
}
node2 = node2.next_sibling("boundary");
}
}
// now, figure out if individual boundaries are set
/*
if( node1.attribute("boundaries") )
{
std::string option_string = node1.attribute("boundaries").value();
Dirichlet_all.push_back(false);
if( strstr( option_string.c_str() , "xmin" ) )
{ Dirichlet_xmin.push_back( true ); }
else
{ Dirichlet_xmin.push_back( false ); }
if( strstr( option_string.c_str() , "xmax" ) )
{ Dirichlet_xmax.push_back( true ); }
else
{ Dirichlet_xmax.push_back( false ); }
if( strstr( option_string.c_str() , "ymin" ) )
{ Dirichlet_ymin.push_back( true ); }
else
{ Dirichlet_ymin.push_back( false ); }
if( strstr( option_string.c_str() , "ymax" ) )
{ Dirichlet_ymax.push_back( true ); }
else
{ Dirichlet_ymax.push_back( false ); }
if( strstr( option_string.c_str() , "zmin" ) )
{ Dirichlet_zmin.push_back( true ); }
else
{ Dirichlet_zmin.push_back( false ); }
if( strstr( option_string.c_str() , "zmax" ) )
{ Dirichlet_zmax.push_back( true ); }
else
{ Dirichlet_zmax.push_back( false ); }
}
else
{
Dirichlet_all.push_back(true);
}
*/
// move on to the next variable (if any!)
node = node.next_sibling( "variable" );
i++;
}
// now that all the variables and boundary / initial conditions are defined,
// make sure that BioFVM knows about them
default_microenvironment_options.Dirichlet_condition_vector = Dirichlet_condition_vector;
default_microenvironment_options.Dirichlet_activation_vector = Dirichlet_activation_vector;
default_microenvironment_options.initial_condition_vector = initial_condition_vector;
default_microenvironment_options.Dirichlet_all = Dirichlet_all;
default_microenvironment_options.Dirichlet_xmin = Dirichlet_xmin;
default_microenvironment_options.Dirichlet_xmax = Dirichlet_xmax;
default_microenvironment_options.Dirichlet_ymin = Dirichlet_ymin;
default_microenvironment_options.Dirichlet_ymax = Dirichlet_ymax;
default_microenvironment_options.Dirichlet_zmin = Dirichlet_zmin;
default_microenvironment_options.Dirichlet_zmax = Dirichlet_zmax;
default_microenvironment_options.Dirichlet_xmin_values = Dirichlet_xmin_values;
default_microenvironment_options.Dirichlet_xmax_values = Dirichlet_xmax_values;
default_microenvironment_options.Dirichlet_ymin_values = Dirichlet_ymin_values;
default_microenvironment_options.Dirichlet_ymax_values = Dirichlet_ymax_values;
default_microenvironment_options.Dirichlet_zmin_values = Dirichlet_zmin_values;
default_microenvironment_options.Dirichlet_zmax_values = Dirichlet_zmax_values;
// because outer boundary Dirichlet conditions are defined in the XML,
// make sure we don't accidentally disable them
default_microenvironment_options.outer_Dirichlet_conditions = false;
// if *any* of the substrates have outer Dirichlet conditions enables,
// then set teh outer_Dirichlet_conditions = true;
if( activated_Dirichlet_boundary_detected )
{
default_microenvironment_options.outer_Dirichlet_conditions = true;
}
std::cout << activated_Dirichlet_boundary_detected << std::endl;
std::cout << "dc? " << default_microenvironment_options.outer_Dirichlet_conditions << std::endl;
// now, get the options
node = xml_find_node( root_node , "microenvironment_setup" );
node = xml_find_node( node , "options" );
// calculate gradients?
default_microenvironment_options.calculate_gradients = xml_get_bool_value( node, "calculate_gradients" );
// track internalized substrates in each agent?
default_microenvironment_options.track_internalized_substrates_in_each_agent
= xml_get_bool_value( node, "track_internalized_substrates_in_each_agent" );
// not yet supported : read initial conditions
/*
// read in initial conditions from an external file
<!-- not yet supported -->
<initial_condition type="matlab" enabled="false">
<filename>./config/initial.mat</filename>
</initial_condition>
*/
// not yet supported : read Dirichlet nodes (including boundary)
/*
// Read in Dirichlet nodes from an external file.
// Note that if they are defined this way, then
// set default_microenvironment_options.outer_Dirichlet_conditions = false;
// so that the microenvironment initialization in BioFVM does not
// also add Dirichlet nodes at the outer boundary
<!-- not yet supported -->
<dirichlet_nodes type="matlab" enabled="false">
<filename>./config/dirichlet.mat</filename>
</dirichlet_nodes>
*/
return true;
}
bool setup_microenvironment_from_XML( void )
{ return setup_microenvironment_from_XML( physicell_config_root ); }
};
| [
"Paul.Macklin@MathCancer.org"
] | Paul.Macklin@MathCancer.org |
dc2db3605c5e90305695d5e3e56b18377fedb286 | 7a046978779f0496d41e5bae4c4218abd0d06f57 | /HIDMapper/HIDStateChangeArgs.h | 09725b7f649122059c8511550b76e29553153391 | [
"MIT"
] | permissive | stewienj/DxHIDLoggerMapper | 943e54361532c09f96421731f2731ccfb13350a1 | a66606706e6f441385b73a199d4b1323bf765e55 | refs/heads/master | 2023-05-24T17:21:22.167078 | 2023-05-13T07:30:18 | 2023-05-13T08:55:27 | 124,023,064 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,380 | h | #pragma once
#include <windows.h>
#include <tchar.h>
using namespace System;
namespace HIDMapperDLL {
public enum class DeviceType
{
Unknown,
Keyboard,
Joystick,
Mouse
};
public ref class HIDStateChangeArgs : public EventArgs {
public:
HIDStateChangeArgs(TCHAR* device, DeviceType deviceType, GUID deviceGuid, TCHAR* control, int state, int previousState);
String^ Device;
String^ Control;
DeviceType DeviceType;
Guid DeviceGuid;
int State;
int PreviousState;
};
public ref class DeviceInfo : public EventArgs {
public:
enum class InfoType {Added, Removed, Checked, Updated, Error};
DeviceInfo(const TCHAR* device, DeviceType deviceType, GUID deviceGuid, DeviceInfo::InfoType infoAction);
~DeviceInfo();
InfoType InfoAction;
String^ Device;
DeviceType DeviceType;
Guid DeviceGuid;
};
public ref class DeviceInfoError : public DeviceInfo {
public:
DeviceInfoError(const TCHAR* device, HIDMapperDLL::DeviceType deviceType, GUID deviceGuid, String^ message);
~DeviceInfoError();
String^ ErrorMessage;
};
public ref class StartStopStatus : public EventArgs {
public:
enum class StartStopType {Started, Stopped};
StartStopStatus(StartStopType startedOrStopped) {
StartedOrStopped = startedOrStopped;
}
StartStopType StartedOrStopped;
};
}
| [
"stewienj@users.noreply.github.com"
] | stewienj@users.noreply.github.com |
622f05f45fcd0fd6d18db718adf705a752b27ddf | 9be2434c74628c7b68fce928dc89fcb0e3c2c9bf | /mainwindow.h | e128f432ed70197cd75a4a940ee4a1a8be5076b8 | [] | no_license | dluhosko/RMR_app | af8556292b3e70ae77c896b6f961c36973230c23 | 010bdcc2f5a438f6db143c545aa89eca87247eef | refs/heads/master | 2021-01-19T06:38:03.916456 | 2017-04-11T15:44:03 | 2017-04-11T15:44:03 | 87,471,678 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,375 | h | #ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include <QMessageBox>
#include "QTimer"
#include "QPainter"
#include "navigation.h"
#include "irobotcreate.h"
#include "definitions.h"
#include "rplidar.h"
#include "definitions.h"
#include "grid_map.h"
#include "global_planner.h"
#include "mapping.h"
#include "map_loader.h"
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
signals:
void showMB();
public:
void forMsgBox(){emit showMB();}
explicit MainWindow(QWidget *parent = 0);
~MainWindow();
static int demoCallback(CreateSensors inputData,void *ioPointer);
private slots:
void on_pushButton_clicked();
void on_pushButton_2_clicked();
void on_pointButton_clicked();
void on_turnButton_clicked();
void paintEvent(QPaintEvent *event);
void updatePicture();
void showMessageBox()
{
QMessageBox Msgbox;
Msgbox.setText("Save work and change Battery!");
Msgbox.setIcon(QMessageBox::Critical);
Msgbox.exec();
exit(-1);
}
private:
Ui::MainWindow *ui;
pthread_t threadHandleLidar; // handle na vlakno
int threadLidarMapping;
int paintEventStatus;
QPainter painter;
QTimer *timer;
bool loadMap();
};
#endif // MAINWINDOW_H
| [
"dluhosko@gmail.com"
] | dluhosko@gmail.com |
fff87be2d577bf2907e18c24d7a9cb016adbcd89 | 3c3287c6247d30e82f99d53b65fc1f1e27e50858 | /iOSBuild/classes/native/Mono.Security.cpp | be431e23c1d698c7c377d3ef35527bba962e6cdf | [] | no_license | alanlau28/iApplyAR | b3e21527e50b2bd07e03cb575d53136ce746dab0 | a7dd18520bf9e923e0e9008bdb60f1cfbe309aa8 | refs/heads/master | 2023-01-07T21:30:45.619936 | 2020-11-08T15:53:44 | 2020-11-08T15:53:44 | 310,936,601 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,568,964 | 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 "codegen/il2cpp-codegen.h"
#include "il2cpp-object-internals.h"
template <typename T1>
struct VirtActionInvoker1
{
typedef void (*Action)(void*, T1, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
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>
struct VirtFuncInvoker0
{
typedef R (*Func)(void*, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
}
};
struct VirtActionInvoker0
{
typedef void (*Action)(void*, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename T1, typename T2, typename T3>
struct VirtActionInvoker3
{
typedef void (*Action)(void*, T1, T2, T3, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method);
}
};
template <typename T1, typename T2>
struct VirtActionInvoker2
{
typedef void (*Action)(void*, T1, T2, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)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);
}
};
template <typename R, typename T1, typename T2, typename T3, typename T4>
struct VirtFuncInvoker4
{
typedef R (*Func)(void*, T1, T2, T3, T4, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, invokeData.method);
}
};
template <typename R, typename T1, typename T2, typename T3, typename T4, typename T5>
struct VirtFuncInvoker5
{
typedef R (*Func)(void*, T1, T2, T3, T4, T5, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, p5, invokeData.method);
}
};
template <typename R, typename T1>
struct GenericVirtFuncInvoker1
{
typedef R (*Func)(void*, T1, const RuntimeMethod*);
static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename R, typename T1, typename T2>
struct GenericVirtFuncInvoker2
{
typedef R (*Func)(void*, T1, T2, const RuntimeMethod*);
static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
template <typename T1>
struct GenericVirtActionInvoker1
{
typedef void (*Action)(void*, T1, const RuntimeMethod*);
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename T1, typename T2>
struct GenericVirtActionInvoker2
{
typedef void (*Action)(void*, T1, T2, const RuntimeMethod*);
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
template <typename R, typename T1, typename T2, typename T3>
struct GenericVirtFuncInvoker3
{
typedef R (*Func)(void*, T1, T2, T3, const RuntimeMethod*);
static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method);
}
};
template <typename R, typename T1, typename T2, typename T3, typename T4>
struct GenericVirtFuncInvoker4
{
typedef R (*Func)(void*, T1, T2, T3, T4, const RuntimeMethod*);
static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, 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);
}
};
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>
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);
}
};
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 T1, typename T2>
struct InterfaceActionInvoker2
{
typedef void (*Action)(void*, T1, T2, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
template <typename R, typename T1, typename T2, typename T3>
struct InterfaceFuncInvoker3
{
typedef R (*Func)(void*, T1, T2, T3, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method);
}
};
template <typename R, typename T1, typename T2, typename T3, typename T4>
struct InterfaceFuncInvoker4
{
typedef R (*Func)(void*, T1, T2, T3, T4, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, invokeData.method);
}
};
template <typename R, typename T1, typename T2, typename T3, typename T4, typename T5>
struct InterfaceFuncInvoker5
{
typedef R (*Func)(void*, T1, T2, T3, T4, T5, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, p5, invokeData.method);
}
};
template <typename R, typename T1>
struct GenericInterfaceFuncInvoker1
{
typedef R (*Func)(void*, T1, const RuntimeMethod*);
static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename R, typename T1, typename T2>
struct GenericInterfaceFuncInvoker2
{
typedef R (*Func)(void*, T1, T2, const RuntimeMethod*);
static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
template <typename T1>
struct GenericInterfaceActionInvoker1
{
typedef void (*Action)(void*, T1, const RuntimeMethod*);
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename T1, typename T2>
struct GenericInterfaceActionInvoker2
{
typedef void (*Action)(void*, T1, T2, const RuntimeMethod*);
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
template <typename R, typename T1, typename T2, typename T3>
struct GenericInterfaceFuncInvoker3
{
typedef R (*Func)(void*, T1, T2, T3, const RuntimeMethod*);
static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method);
}
};
template <typename R, typename T1, typename T2, typename T3, typename T4>
struct GenericInterfaceFuncInvoker4
{
typedef R (*Func)(void*, T1, T2, T3, T4, const RuntimeMethod*);
static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, invokeData.method);
}
};
// Mono.Math.BigInteger
struct BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8;
// Mono.Math.BigInteger/ModulusRing
struct ModulusRing_t308788615884D122EEEE30912EFFB7C15144C6E8;
// Mono.Math.BigInteger[]
struct BigIntegerU5BU5D_t15EB0DC5DA051C4F0C1BECDCD8D7AB250F0CDF4B;
// Mono.Math.Prime.Generator.PrimeGeneratorBase
struct PrimeGeneratorBase_tD86126CFDBC57352F37DE0964FFCF652C04D7059;
// Mono.Math.Prime.Generator.SequentialSearchPrimeGeneratorBase
struct SequentialSearchPrimeGeneratorBase_t051356406D15C0F3CCF38A685AB52DFC08B83360;
// Mono.Math.Prime.PrimalityTest
struct PrimalityTest_t86C33A5FB057EA0D357088A56E22FE56B7FA08D9;
// Mono.Security.ASN1
struct ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E;
// Mono.Security.Cryptography.KeyPairPersistence
struct KeyPairPersistence_t5C070E8D158094F7D0CC5D591F30EDFFB39849A2;
// Mono.Security.Cryptography.MD2
struct MD2_tCAAEC1A28A3D0B9E8810B27E4840BEA399619442;
// Mono.Security.Cryptography.MD2Managed
struct MD2Managed_t6867DBAD1BDCC846BE478BABC2D5DBAFFC7495EC;
// Mono.Security.Cryptography.MD4
struct MD4_t932C1DEA44D4B8650873251E88AA4096164BB380;
// Mono.Security.Cryptography.MD4Managed
struct MD4Managed_t1FC9A6CDB0A89A71416414689B3A0FF0283759D1;
// Mono.Security.Cryptography.PKCS8/EncryptedPrivateKeyInfo
struct EncryptedPrivateKeyInfo_tF582FAE09721F4F2BB353D5C2E28682FFB9C303D;
// Mono.Security.Cryptography.PKCS8/PrivateKeyInfo
struct PrivateKeyInfo_t053A73C524EC661748073EC908D290E2856DB5B9;
// Mono.Security.Cryptography.RSAManaged
struct RSAManaged_t386184E253177BF2DD9589A7E9C171DA8E718745;
// Mono.Security.Cryptography.RSAManaged
struct RSAManaged_t7FC74A986C888D9301EC82EBE4A37C293CDA963A;
// Mono.Security.Cryptography.RSAManaged/KeyGeneratedEventHandler
struct KeyGeneratedEventHandler_t4696955EF1EA571682FB3F21F5A4CA5E5B6737A9;
// Mono.Security.Interface.Alert
struct Alert_tABF269545F2C583CCA47FF574E612DDAF232944E;
// Mono.Security.Interface.CipherSuiteCode[]
struct CipherSuiteCodeU5BU5D_t0EC37AD4A25BB94BA9AB4A9C0C4802BD79A07CC4;
// Mono.Security.Interface.ICertificateValidator
struct ICertificateValidator_t0C1A54E00D408ADCBA27E600BFAA216E7E7D31A3;
// Mono.Security.Interface.ICertificateValidator2
struct ICertificateValidator2_t59AEA784559648561EFC807C805B3F3AD216AB18;
// Mono.Security.Interface.MonoLocalCertificateSelectionCallback
struct MonoLocalCertificateSelectionCallback_t657381EF916D4EDC456FA5A6AC948EFD7A481F0A;
// Mono.Security.Interface.MonoRemoteCertificateValidationCallback
struct MonoRemoteCertificateValidationCallback_t7A8DAD12B70CE3BB19BAAD04F587D5ED02385CC6;
// Mono.Security.Interface.MonoTlsConnectionInfo
struct MonoTlsConnectionInfo_tE32F709ECF061DD150F45384869CE8431BD7A74D;
// Mono.Security.Interface.MonoTlsProvider
struct MonoTlsProvider_tDCD056C5BBBE59ED6BAF63F25952B406C1143C27;
// Mono.Security.Interface.MonoTlsSettings
struct MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF;
// Mono.Security.Interface.TlsException
struct TlsException_t774465EA64E3ADAAE3DB21835DD9AB8C40247F91;
// Mono.Security.Interface.ValidationResult
struct ValidationResult_tBBAD776F36C835C8DDB515B1747DEF3A45C058D7;
// Mono.Security.PKCS7/ContentInfo
struct ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E;
// Mono.Security.PKCS7/EncryptedData
struct EncryptedData_tA100D7E93FCF1B7CBD486522E841F0A980CCE61B;
// Mono.Security.Protocol.Ntlm.ChallengeResponse
struct ChallengeResponse_t2A954E3C6AB2D638ECA50E1B8ACB99E8F28A048B;
// Mono.Security.Protocol.Ntlm.MessageBase
struct MessageBase_t504D166CC4021DEB56DED308D5E82C67F47F26C0;
// Mono.Security.Protocol.Ntlm.Type1Message
struct Type1Message_tF2DA0014BB300ABA864D84752FFA278EC6E6519C;
// Mono.Security.Protocol.Ntlm.Type2Message
struct Type2Message_t990283F48D41AECF1FFBDAA3A194CDE9C9078398;
// Mono.Security.Protocol.Ntlm.Type3Message
struct Type3Message_t6D21CF9E3D56192F8D9B6E2B29474773E838846C;
// Mono.Security.X509.PKCS12
struct PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C;
// Mono.Security.X509.PKCS12/DeriveBytes
struct DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D;
// Mono.Security.X509.SafeBag
struct SafeBag_t46FE0281DC1D6CAB5FD08FCDB3E57C2EA1859726;
// Mono.Security.X509.X509Certificate
struct X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B;
// Mono.Security.X509.X509CertificateCollection
struct X509CertificateCollection_t423BA1B9FAA983BA745023994C648C6DAC3E5A1A;
// Mono.Security.X509.X509CertificateCollection/X509CertificateEnumerator
struct X509CertificateEnumerator_t1CBC050F10F4BE1E2A8552A1F22E705013EBF505;
// Mono.Security.X509.X509ExtensionCollection
struct X509ExtensionCollection_t64150C4CB662DB5B4A434CC41C612FE573707D19;
// System.ArgumentException
struct ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1;
// System.ArgumentNullException
struct ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD;
// System.ArgumentOutOfRangeException
struct ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA;
// System.ArithmeticException
struct ArithmeticException_tF9EF5FE94597830EF315C5934258F994B8648269;
// System.AsyncCallback
struct AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4;
// System.Byte[]
struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821;
// System.Char[]
struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2;
// System.Collections.ArrayList
struct ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4;
// System.Collections.CollectionBase
struct CollectionBase_tF5D4583FF325726066A9803839A04E9C0084ED01;
// System.Collections.Generic.Dictionary`2<System.Int32,System.Globalization.CultureInfo>
struct Dictionary_2_tC88A56872F7C79DBB9582D4F3FC22ED5D8E0B98B;
// System.Collections.Generic.Dictionary`2<System.String,System.Globalization.CultureInfo>
struct Dictionary_2_tBA5388DBB42BF620266F9A48E8B859BBBB224E25;
// System.Collections.Hashtable
struct Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9;
// System.Collections.IDictionary
struct IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7;
// System.Collections.IEnumerator
struct IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A;
// System.Delegate
struct Delegate_t;
// System.DelegateData
struct DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE;
// System.Delegate[]
struct DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86;
// System.Diagnostics.StackTrace[]
struct StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196;
// System.EventArgs
struct EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E;
// System.Exception
struct Exception_t;
// System.FormatException
struct FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC;
// System.Globalization.Calendar
struct Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5;
// System.Globalization.CodePageDataItem
struct CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB;
// System.Globalization.CompareInfo
struct CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1;
// System.Globalization.CultureData
struct CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD;
// System.Globalization.CultureInfo
struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F;
// System.Globalization.DateTimeFormatInfo
struct DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F;
// System.Globalization.NumberFormatInfo
struct NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8;
// System.Globalization.TextInfo
struct TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8;
// System.IAsyncResult
struct IAsyncResult_t8E194308510B375B42432981AE5E7488C458D598;
// System.IFormatProvider
struct IFormatProvider_t4247E13AE2D97A079B88D594B7ABABF313259901;
// System.IndexOutOfRangeException
struct IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF;
// System.Int32[]
struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83;
// System.IntPtr[]
struct IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD;
// System.InvalidOperationException
struct InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1;
// System.NotImplementedException
struct NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4;
// System.NotSupportedException
struct NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010;
// System.ObjectDisposedException
struct ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A;
// System.Object[]
struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A;
// System.Reflection.Binder
struct Binder_t4D5CB06963501D32847C057B57157D6DC49CA759;
// System.Reflection.MemberFilter
struct MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381;
// System.Reflection.MethodInfo
struct MethodInfo_t;
// System.Runtime.Serialization.SafeSerializationManager
struct SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770;
// System.Security.Cryptography.AsymmetricAlgorithm
struct AsymmetricAlgorithm_t9F811260245370BD8786A849DBF9F8054F97F4CB;
// System.Security.Cryptography.CryptographicException
struct CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A;
// System.Security.Cryptography.CspParameters
struct CspParameters_t7DDB44526A2A9693723C2FA915D9DCF2848998C7;
// System.Security.Cryptography.DES
struct DES_tFB993FE8AF9722A555B0737FE730332CCD86F6F0;
// System.Security.Cryptography.DSA
struct DSA_t932F4A94DD2B782BFFC197544398826E6CDB64CF;
// System.Security.Cryptography.HMAC
struct HMAC_t85BE56AD7946F3A3D42B52448301D8995DEB7C90;
// System.Security.Cryptography.HMACMD5
struct HMACMD5_t8C6693E41EEA9BF26BBAF880B405CC170C43F11B;
// System.Security.Cryptography.HashAlgorithm
struct HashAlgorithm_t65659695B16C0BBF05707BF45191A97DC156D6BA;
// System.Security.Cryptography.KeySizes[]
struct KeySizesU5BU5D_t934CCA482596402177BAF86727F169872D74934E;
// System.Security.Cryptography.MD5
struct MD5_tCED753745572EC20FE5D31D15F132736B5343EE6;
// System.Security.Cryptography.RIPEMD160
struct RIPEMD160_t5BF1FB38C534BF0083B35AC6880867E11448EFE9;
// System.Security.Cryptography.RSA
struct RSA_tB6C4B434B2AC02E3F8981DB2908C2018E251D145;
// System.Security.Cryptography.RSACryptoServiceProvider
struct RSACryptoServiceProvider_t6DC0FC3205BA6CDCA4FF2AEEF566D8F0CCE26AD4;
// System.Security.Cryptography.RandomNumberGenerator
struct RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2;
// System.Security.Cryptography.SHA1
struct SHA1_t242C3C0C91D0CC11FA6F3CB0B06B416A550C6EAA;
// System.Security.Cryptography.SHA256
struct SHA256_tF15350D910DF8AC1E6ADDBA904218F95554711BD;
// System.Security.Cryptography.SHA384
struct SHA384_t73C69FA7FB10EF83355734BE635F079515FF5D37;
// System.Security.Cryptography.SHA512
struct SHA512_tA4117C79CCB7ECF8AC39BDBE41A0D0294E9D6936;
// System.Security.Cryptography.SymmetricAlgorithm
struct SymmetricAlgorithm_t0A2EC7E7AD8B8976832B4F0AC432B691F862E789;
// System.Security.Cryptography.X509Certificates.X509Certificate
struct X509Certificate_t6859B8914E252B6831D6F59A2A720CD23F7FA7B2;
// System.Security.Cryptography.X509Certificates.X509CertificateCollection
struct X509CertificateCollection_t824A6C58D0D1B4A7CAE30F26CE8EE4B23A8A1833;
// System.Security.Cryptography.X509Certificates.X509CertificateImpl
struct X509CertificateImpl_t89610BFDE87B872143A4623CFC7F17275EB48313;
// System.Security.Cryptography.X509Certificates.X509Chain
struct X509Chain_t4A28E9A30CBB331C9B68AE4AFCB30625C6C8B538;
// System.Security.Cryptography.X509Certificates.X509ChainImpl
struct X509ChainImpl_t34FABF07BEA0CFB6D88717BCDDE0607D9DA13A67;
// System.String
struct String_t;
// System.String[]
struct StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E;
// System.Text.DecoderFallback
struct DecoderFallback_t128445EB7676870485230893338EF044F6B72F60;
// System.Text.EncoderFallback
struct EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63;
// System.Text.Encoding
struct Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4;
// System.Text.StringBuilder
struct StringBuilder_t;
// System.Type
struct Type_t;
// System.Type[]
struct TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F;
// System.UInt32[]
struct UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB;
// System.Void
struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017;
IL2CPP_EXTERN_C RuntimeClass* ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* AlertDescription_t8D4DE3060801044928816134B2292AFB933D40D6_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* AlertLevel_t300CD4F0586BC84361B20C4B26C89EC1ECB3FC34_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Alert_tABF269545F2C583CCA47FF574E612DDAF232944E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ArithmeticException_tF9EF5FE94597830EF315C5934258F994B8648269_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* BigIntegerU5BU5D_t15EB0DC5DA051C4F0C1BECDCD8D7AB250F0CDF4B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CertificateValidationHelper_t700A78AF16D5DA1698501C49E6894B1B67963F86_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ChallengeResponse2_t2F5817D7717011A7F4C0DE0015D144A2292CAD77_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ChallengeResponse_t2A954E3C6AB2D638ECA50E1B8ACB99E8F28A048B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CipherSuiteCode_t32674B07A5C552605FA138AEACFFA20474A255F1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ConfidenceFactor_t945E0EE732DB24BE51678FCB2741BBEB440179CE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CspParameters_t7DDB44526A2A9693723C2FA915D9DCF2848998C7_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DES_tFB993FE8AF9722A555B0737FE730332CCD86F6F0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DSA_t932F4A94DD2B782BFFC197544398826E6CDB64CF_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EncryptedData_tA100D7E93FCF1B7CBD486522E841F0A980CCE61B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EncryptedPrivateKeyInfo_tF582FAE09721F4F2BB353D5C2E28682FFB9C303D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Exception_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* GC_tC1D7BD74E8F44ECCEF5CD2B5D84BFF9AAE02D01D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* HMACMD5_t8C6693E41EEA9BF26BBAF880B405CC170C43F11B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* HMACSHA1_t4E10C259BBC525A8E0ABEAE9EF01C8589F51FEE5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* HashAlgorithm_t65659695B16C0BBF05707BF45191A97DC156D6BA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ICertificateValidator2_t59AEA784559648561EFC807C805B3F3AD216AB18_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ICryptoTransform_t43C29A7F3A8C2DDAC9F3BF9BF739B03E4D5DE9A9_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IDictionaryEnumerator_t456EB67407D2045A257B66A3A25A825E883FD027_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* MD2Managed_t6867DBAD1BDCC846BE478BABC2D5DBAFFC7495EC_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* MD4Managed_t1FC9A6CDB0A89A71416414689B3A0FF0283759D1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Math_tFB388E53C7FDC6FCCF9A19ABF5A4E521FBD52E19_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* MessageBase_t504D166CC4021DEB56DED308D5E82C67F47F26C0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ModulusRing_t308788615884D122EEEE30912EFFB7C15144C6E8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* MonoSslPolicyErrors_t5F32A4E793EAB8B8A8128A6A3E7690D2E1F666C7_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* MonoTlsProvider_tDCD056C5BBBE59ED6BAF63F25952B406C1143C27_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* NtlmSettings_tC673E811873A17EA73FCA0EFD6D33839B5036009_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* PKCS1_t5ABACACDDA0FE1D9A3D2ECD6BEB8815C8431B222_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* PrimalityTest_t86C33A5FB057EA0D357088A56E22FE56B7FA08D9_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* PrivateKeyInfo_t053A73C524EC661748073EC908D290E2856DB5B9_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RSACryptoServiceProvider_t6DC0FC3205BA6CDCA4FF2AEEF566D8F0CCE26AD4_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RSA_tB6C4B434B2AC02E3F8981DB2908C2018E251D145_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RuntimeObject_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SafeBag_t46FE0281DC1D6CAB5FD08FCDB3E57C2EA1859726_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SequentialSearchPrimeGeneratorBase_t051356406D15C0F3CCF38A685AB52DFC08B83360_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* StringBuilder_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* String_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TlsProtocols_t25D1B0EFE5CC77B30D19258E7AC462AB4D828163_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Type_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* X509CertificateCollection_t423BA1B9FAA983BA745023994C648C6DAC3E5A1A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* X509CertificateCollection_t824A6C58D0D1B4A7CAE30F26CE8EE4B23A8A1833_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_tF21437707AFAA06797AEDEE07C84D4D3CC2837FA____16968835DEF6DD3BB86EABA9DEC53BF41851CD6D_2_FieldInfo_var;
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_tF21437707AFAA06797AEDEE07C84D4D3CC2837FA____320B018758ECE3752FFEDBAEB1A6DB67C80B9359_6_FieldInfo_var;
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_tF21437707AFAA06797AEDEE07C84D4D3CC2837FA____4E3B533C39447AAEB59A8E48FABD7E15B5B5D195_8_FieldInfo_var;
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_tF21437707AFAA06797AEDEE07C84D4D3CC2837FA____6E5DC824F803F8565AF31B42199DAE39FE7F4EA9_11_FieldInfo_var;
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_tF21437707AFAA06797AEDEE07C84D4D3CC2837FA____6FA00AC9FFFD87F82A38A7F9ECC8134F4A7052AF_12_FieldInfo_var;
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_tF21437707AFAA06797AEDEE07C84D4D3CC2837FA____9A9C3962CD4753376E3507C8CB5FD8FCC4B4EDB5_16_FieldInfo_var;
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_tF21437707AFAA06797AEDEE07C84D4D3CC2837FA____AEA5F1CC5CFE1660539EDD691FE017F775F63A0D_19_FieldInfo_var;
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_tF21437707AFAA06797AEDEE07C84D4D3CC2837FA____BE1BDEC0AA74B4DCB079943E70528096CCA985F8_20_FieldInfo_var;
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_tF21437707AFAA06797AEDEE07C84D4D3CC2837FA____CF0B42666EF5E37EDEA0AB8E173E42C196D03814_22_FieldInfo_var;
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_tF21437707AFAA06797AEDEE07C84D4D3CC2837FA____D28E8ABDBD777A482CE0EE5C24814ACAE52AABFE_23_FieldInfo_var;
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_tF21437707AFAA06797AEDEE07C84D4D3CC2837FA____D2C5BAE967587C6F3D9F2C4551911E0575A1101F_24_FieldInfo_var;
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_tF21437707AFAA06797AEDEE07C84D4D3CC2837FA____E75835D001C843F156FBA01B001DFE1B8029AC17_25_FieldInfo_var;
IL2CPP_EXTERN_C String_t* _stringLiteral0165688353CA81071FDEC1551C4AB96A2DB65E88;
IL2CPP_EXTERN_C String_t* _stringLiteral0425D7D3778CCF20AE9594EC58FAE88CACC94F5E;
IL2CPP_EXTERN_C String_t* _stringLiteral05E744AC2ACCB10E5085BEEA59CA196CBDBC4461;
IL2CPP_EXTERN_C String_t* _stringLiteral06AF517C94435AF79F1AA0F48FD67AA3634AA2BE;
IL2CPP_EXTERN_C String_t* _stringLiteral099D7F4DF2D04C9F091C29CF417AB4B2A1888D38;
IL2CPP_EXTERN_C String_t* _stringLiteral09AB7D22A03780085A8E13440BC03282C58B11C9;
IL2CPP_EXTERN_C String_t* _stringLiteral0F6016A42ADA1E2A1848FB5869B861EBC2F7FA13;
IL2CPP_EXTERN_C String_t* _stringLiteral16027BD069AB27D060EBB9DE6EF1E9ECA4BC97E2;
IL2CPP_EXTERN_C String_t* _stringLiteral16B16DE39EAF0CBCF65105A574643EF876F34376;
IL2CPP_EXTERN_C String_t* _stringLiteral19BEEC1D598AFC7149A3F97203082E708460E075;
IL2CPP_EXTERN_C String_t* _stringLiteral19D0B27B43EDD3905D1094D123383F92AE318631;
IL2CPP_EXTERN_C String_t* _stringLiteral1B455B5B6120697EB57C6A65C3F3E98FD311227A;
IL2CPP_EXTERN_C String_t* _stringLiteral1BFBA49274D5FFD04A381E293A69A95116E371E9;
IL2CPP_EXTERN_C String_t* _stringLiteral1C0FFB44A6993F53413B227FCD6BE6E7653BD3C7;
IL2CPP_EXTERN_C String_t* _stringLiteral1D9F018C6242ECF50722E7E37BA5BA97733D3906;
IL2CPP_EXTERN_C String_t* _stringLiteral2113842AE751CFD206BA143B55BA46A421A7E07F;
IL2CPP_EXTERN_C String_t* _stringLiteral2118C8699C55066293A0E34341B9953F6C1811BD;
IL2CPP_EXTERN_C String_t* _stringLiteral2148F912D5521151B4B4FCF9E3FA7841DB561995;
IL2CPP_EXTERN_C String_t* _stringLiteral2573431B92F35769F17226527DDA47049FF4A0DF;
IL2CPP_EXTERN_C String_t* _stringLiteral2585FC37E8BD5E0ABA0AA8CAD9C47283C578EBD3;
IL2CPP_EXTERN_C String_t* _stringLiteral25D33207529D684D63435567C0BEAFD4F02CCF74;
IL2CPP_EXTERN_C String_t* _stringLiteral2684A7EF111863B200C834E7572390FA05F109E3;
IL2CPP_EXTERN_C String_t* _stringLiteral2688E219B0D8158D32CE2DAEA691150496F98C52;
IL2CPP_EXTERN_C String_t* _stringLiteral26DB4ADFD18BEF9CD0D83082F02FA1E98DDA8B4D;
IL2CPP_EXTERN_C String_t* _stringLiteral287560723F8A1FBF90A40EFAD7B0419130008627;
IL2CPP_EXTERN_C String_t* _stringLiteral2A29B7FE27DAF69AFEE5861F4F771F3C1333106F;
IL2CPP_EXTERN_C String_t* _stringLiteral2B69EA076BD364D53AD2617C3A0BF3387013220C;
IL2CPP_EXTERN_C String_t* _stringLiteral2BBCCAEF340E6A667F3B3DEDEBD6B2545083F4B4;
IL2CPP_EXTERN_C String_t* _stringLiteral2BE04202B2D8138F15F1395499FEF177AB024D48;
IL2CPP_EXTERN_C String_t* _stringLiteral2CB0A92636DB3A3A9D187F27C6DE24B5B2F91B92;
IL2CPP_EXTERN_C String_t* _stringLiteral2CFD4072F8990E79EAEA6A6C2045E74F87B56352;
IL2CPP_EXTERN_C String_t* _stringLiteral2D91E9980B38E82DF8F787AB449DF0E2AADFF84A;
IL2CPP_EXTERN_C String_t* _stringLiteral2F280ADB68040B360D7B03B819A13379B799EFAB;
IL2CPP_EXTERN_C String_t* _stringLiteral3115DAFC73A9DE6DB80C4AC21E701A8A1C100369;
IL2CPP_EXTERN_C String_t* _stringLiteral356A192B7913B04C54574D18C28D46E6395428AB;
IL2CPP_EXTERN_C String_t* _stringLiteral389F2CE8BCC7BBD0A3FF8EEE933CAD8BCD045174;
IL2CPP_EXTERN_C String_t* _stringLiteral39B60EC0BF180A7A4890DF6BD02AA732F75E8623;
IL2CPP_EXTERN_C String_t* _stringLiteral3A52CE780950D4D969792A2559CD519D7EE8C727;
IL2CPP_EXTERN_C String_t* _stringLiteral3A5F6FCDC866AB625A631A6C57A6D2BEF6174645;
IL2CPP_EXTERN_C String_t* _stringLiteral3B8985A7F6F3523C5194B27380C8B9A09D4E7286;
IL2CPP_EXTERN_C String_t* _stringLiteral3E865F1099831286A154AA14FDC8362AFA6ED747;
IL2CPP_EXTERN_C String_t* _stringLiteral3F00283C1F56E677FC4B8300E75C719DD482B456;
IL2CPP_EXTERN_C String_t* _stringLiteral3F2997F78A546288F461F90F87679397A1E5A51F;
IL2CPP_EXTERN_C String_t* _stringLiteral3F556C2B89C9D40F8FCB8B45DB88D9BA3BDB25A7;
IL2CPP_EXTERN_C String_t* _stringLiteral42BBEE886171CED8B81918E0F830F24966193E05;
IL2CPP_EXTERN_C String_t* _stringLiteral42CC065F07E499226AC12F2671F652ACFDAF3D73;
IL2CPP_EXTERN_C String_t* _stringLiteral43C5083891C69B860FC78499995E820029745FE8;
IL2CPP_EXTERN_C String_t* _stringLiteral43CE8C8760C0F57C8E735CF657FC12BA30A8B65B;
IL2CPP_EXTERN_C String_t* _stringLiteral44C55C338925A7EF2FA7FA48B516C92EF8DB9745;
IL2CPP_EXTERN_C String_t* _stringLiteral44E5C4B7066508335FF9B48BB0D5A05575F2001B;
IL2CPP_EXTERN_C String_t* _stringLiteral471DB6AD83C76628B068C830D0269B041596AEAA;
IL2CPP_EXTERN_C String_t* _stringLiteral475F6403296A11AD7C5C0A2C315474FAE9953448;
IL2CPP_EXTERN_C String_t* _stringLiteral4E803123E3F3ACF68327B5004FFBFE1BEA455372;
IL2CPP_EXTERN_C String_t* _stringLiteral519EBF37CB5A7E254F612B256FC54B5F1F41C586;
IL2CPP_EXTERN_C String_t* _stringLiteral530D961C3F2D9207AA88243CDEDA8556D62138AA;
IL2CPP_EXTERN_C String_t* _stringLiteral57ECE3274FFAA576B81A69AE0C07BC9B708C818D;
IL2CPP_EXTERN_C String_t* _stringLiteral5946ACD155491E90D92E508F3BC09953839635A6;
IL2CPP_EXTERN_C String_t* _stringLiteral5AB8FB3BA84C84C0B9929FD9B6D13F639D3078BB;
IL2CPP_EXTERN_C String_t* _stringLiteral5F33E8DDD36B0C849687DF732835B9ABBE9B347B;
IL2CPP_EXTERN_C String_t* _stringLiteral605F515DB23E613CEB4831C6EACE4C2B023EAEAB;
IL2CPP_EXTERN_C String_t* _stringLiteral613FFB9B58FE9C68FF1D6DE407465C3D9BE81982;
IL2CPP_EXTERN_C String_t* _stringLiteral636C307C2499B64E58C024BD8EC39A968AF2D4A9;
IL2CPP_EXTERN_C String_t* _stringLiteral64348CB249149F4396EB7FB17C2F5706D32D8138;
IL2CPP_EXTERN_C String_t* _stringLiteral669EC1C9F3C16BB6049E4E62DED3D267DB25932E;
IL2CPP_EXTERN_C String_t* _stringLiteral6CB177B80C57F442434FADF5878CCBB93AE352D6;
IL2CPP_EXTERN_C String_t* _stringLiteral6D4853D9C2696A98DA8096DCE674A11141FD8E3C;
IL2CPP_EXTERN_C String_t* _stringLiteral6DEA0A0DA8A093EC1AAF0430ED587E9E19F55290;
IL2CPP_EXTERN_C String_t* _stringLiteral6F9B9AF3CD6E8B8A73C2CDCED37FE9F59226E27D;
IL2CPP_EXTERN_C String_t* _stringLiteral714EEA0F4C980736BDE0065FE73F573487F08E3A;
IL2CPP_EXTERN_C String_t* _stringLiteral796CC3E6D06777F1C198837519479B1D2F0024AD;
IL2CPP_EXTERN_C String_t* _stringLiteral7B845465C5D86662976B924FBF9F464EC87414F4;
IL2CPP_EXTERN_C String_t* _stringLiteral7CB21E3398253A9FD01555A78CDD038F46778484;
IL2CPP_EXTERN_C String_t* _stringLiteral80B7C95DB89E34F9F8C13CFECA9C592572CFAD08;
IL2CPP_EXTERN_C String_t* _stringLiteral80C050AFCE55BDA39642CED27679D2CBB619663F;
IL2CPP_EXTERN_C String_t* _stringLiteral8123C11021D033CA8E67AEF3CA8B6BC4D85B977C;
IL2CPP_EXTERN_C String_t* _stringLiteral83BD2260257D398076A738813A94BD2F37D6F282;
IL2CPP_EXTERN_C String_t* _stringLiteral84FF1FC8EFD0C9C1C39DF85058324C2B8AAAC64C;
IL2CPP_EXTERN_C String_t* _stringLiteral853460A00D15719D672A944A8ACCF5FC35952846;
IL2CPP_EXTERN_C String_t* _stringLiteral85C0C834CC0B9B381C0FF7F8BBAC9285AF308AB0;
IL2CPP_EXTERN_C String_t* _stringLiteral86E9FFF1D00C68995BA96D3B00B707D9685F6995;
IL2CPP_EXTERN_C String_t* _stringLiteral88AF471A23DFDC103E67752DD56128AE77B8DEBE;
IL2CPP_EXTERN_C String_t* _stringLiteral8979F67C086DEAF5044AC5C8AA93642B1431C146;
IL2CPP_EXTERN_C String_t* _stringLiteral8CE5CDE3AE12BB7F114211660525770636C8128A;
IL2CPP_EXTERN_C String_t* _stringLiteral8D6BEFF0610975FF4C08174B23C6DE430DB0BB84;
IL2CPP_EXTERN_C String_t* _stringLiteral8E0BFE8117E07EBEF6C2CD100E3BCC63032D3607;
IL2CPP_EXTERN_C String_t* _stringLiteral902E1C9C702765BFD051F2EA2095144DF20BEFF3;
IL2CPP_EXTERN_C String_t* _stringLiteral91032AD7BBCB6CF72875E8E8207DCFBA80173F7C;
IL2CPP_EXTERN_C String_t* _stringLiteral929E64373A1A3A451EAF8698A1D26A5C989E42EA;
IL2CPP_EXTERN_C String_t* _stringLiteral941EDC1E840EE8A244DED7C91C3A0C73970CBDD9;
IL2CPP_EXTERN_C String_t* _stringLiteral9444DC2D03948DE0E3F0FB612AC887006E0DC23E;
IL2CPP_EXTERN_C String_t* _stringLiteral95C4BEA12E4EDCF8AAD730A222793324DC42C29D;
IL2CPP_EXTERN_C String_t* _stringLiteral9636E74995FF458A887B597EABB50C7D35056A34;
IL2CPP_EXTERN_C String_t* _stringLiteral99DF9DBD518CF90FFF8724227F439A55D615463E;
IL2CPP_EXTERN_C String_t* _stringLiteral9D47261D808C7285426E7FA767344B13B392D7D2;
IL2CPP_EXTERN_C String_t* _stringLiteral9DB65CFA2237AB1A2FB1D568E668EC18B0803849;
IL2CPP_EXTERN_C String_t* _stringLiteral9EDF4240018976BF964CF31C1A24D34FDE8D517D;
IL2CPP_EXTERN_C String_t* _stringLiteral9F792B61D0EC544D91E7AFF34E2E99EE3CF2B313;
IL2CPP_EXTERN_C String_t* _stringLiteral9FF10F59D606AD213E55A2680D237F4560B5407D;
IL2CPP_EXTERN_C String_t* _stringLiteralA12083BADD146F221E05419C3C15DC0CB7D1A0F6;
IL2CPP_EXTERN_C String_t* _stringLiteralA28F5F35CE0911B6863CEB2418D166A24D8E77FA;
IL2CPP_EXTERN_C String_t* _stringLiteralA475B0456F9E29FC0A863EA86E627DE0D6273626;
IL2CPP_EXTERN_C String_t* _stringLiteralA5F656374D7FF6B837776376DF09B2C531805C9E;
IL2CPP_EXTERN_C String_t* _stringLiteralA6D742824424B5CC45A579F1CBB3776F08DDB783;
IL2CPP_EXTERN_C String_t* _stringLiteralAA8170ABE1940ECECCB2A8C879187D7FB5C54A00;
IL2CPP_EXTERN_C String_t* _stringLiteralAAAA93A1758EE795E9F4F4D7738AA8718321ECAA;
IL2CPP_EXTERN_C String_t* _stringLiteralAC52213E99AFDA01D46868C80010237AC135927B;
IL2CPP_EXTERN_C String_t* _stringLiteralAE01F992CF8E34DD0175C6CC6992DE1FB67CFFCF;
IL2CPP_EXTERN_C String_t* _stringLiteralB3C4276351B5F9013DC3E70B3FBC9174A0379575;
IL2CPP_EXTERN_C String_t* _stringLiteralB3F0C7F6BB763AF1BE91D9E74EABFEB199DC1F1F;
IL2CPP_EXTERN_C String_t* _stringLiteralB40D6CD4CF673AC976ECA2909907795C34BC177E;
IL2CPP_EXTERN_C String_t* _stringLiteralB6589FC6AB0DC82CF12099D1C2D40AB994E8410C;
IL2CPP_EXTERN_C String_t* _stringLiteralB69A13D63C5676008946ACB845A85AF96AEE9389;
IL2CPP_EXTERN_C String_t* _stringLiteralB6A6783D731A42C54B01BD71A6FD5F120594BE18;
IL2CPP_EXTERN_C String_t* _stringLiteralB773BED04A48DE200B96981BB79467413A222066;
IL2CPP_EXTERN_C String_t* _stringLiteralB8B0EDE7ABBF3F7F6738DC0C3F6D05656BAD431B;
IL2CPP_EXTERN_C String_t* _stringLiteralB92E713B21B29946A52E5FFE714C82EB670E98F9;
IL2CPP_EXTERN_C String_t* _stringLiteralBA5B3EECE056B8FA19F9675DC6B2C3279F72B203;
IL2CPP_EXTERN_C String_t* _stringLiteralBB13F629A52249ABF965ACF7316852F78FE0EA5E;
IL2CPP_EXTERN_C String_t* _stringLiteralBB9D653F4E12DEED891E16FF7E7D9376E13F075D;
IL2CPP_EXTERN_C String_t* _stringLiteralBC4CD0294E0999F20205970C2B199983C3C0B0A5;
IL2CPP_EXTERN_C String_t* _stringLiteralBD9F58A710FAC588AA107D63418A112D1F511D9C;
IL2CPP_EXTERN_C String_t* _stringLiteralBDEFEB489575DFA1A3BA1FCA02FEA1FB3C42F6EA;
IL2CPP_EXTERN_C String_t* _stringLiteralC2FFDAF1F4D54001A31179F5FE1D57F557C4FBDC;
IL2CPP_EXTERN_C String_t* _stringLiteralC376AAE863FED7F2100B15B45F998504B3C30559;
IL2CPP_EXTERN_C String_t* _stringLiteralC438BA3DF76E517ADEB7757B01B707A8FD7C53B9;
IL2CPP_EXTERN_C String_t* _stringLiteralC510A07D481619FBF882813AD37E03F5384F7266;
IL2CPP_EXTERN_C String_t* _stringLiteralC7B28B0B9455757301EFBE14A68ACEFE87C35B48;
IL2CPP_EXTERN_C String_t* _stringLiteralC99B45DFFF89CE2609C9C3C74B70826509B7E817;
IL2CPP_EXTERN_C String_t* _stringLiteralCF8640B2F06532BE2709134CF9028B273081AA99;
IL2CPP_EXTERN_C String_t* _stringLiteralD150280BF54C7333BE9D98D2044A6A91D3349975;
IL2CPP_EXTERN_C String_t* _stringLiteralD1CEA7B241EAF16F5C4A6E380E2B3624E7A80287;
IL2CPP_EXTERN_C String_t* _stringLiteralD4FCA0BC6A26DDF145B7A4AC7BFDAEBEDD5A886F;
IL2CPP_EXTERN_C String_t* _stringLiteralD964E4390D86936E2472E05166BCAA08DD191882;
IL2CPP_EXTERN_C String_t* _stringLiteralD9D28254BE2512FBA8D1D209322E0B1B22D90CEE;
IL2CPP_EXTERN_C String_t* _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
IL2CPP_EXTERN_C String_t* _stringLiteralDC62B38EEB716E83A2EF7B3E3983DFF61AAFA8F1;
IL2CPP_EXTERN_C String_t* _stringLiteralDC7A4E51273DD99D30CC77D766CCBD48170C6CAC;
IL2CPP_EXTERN_C String_t* _stringLiteralDCABF61621CAD370E5A1627F06A24046C669ADF8;
IL2CPP_EXTERN_C String_t* _stringLiteralDDE273A77F7B5FE50165399E85E5C2F0687C548D;
IL2CPP_EXTERN_C String_t* _stringLiteralE1389F27DE95DF8DE493690AD602D0D9C4B8A064;
IL2CPP_EXTERN_C String_t* _stringLiteralE1744A525099D9A53C0460EF9CB7AB0E4C4FC939;
IL2CPP_EXTERN_C String_t* _stringLiteralE2A4A83E97480FEE533C17B7E9E66E07F7D508D4;
IL2CPP_EXTERN_C String_t* _stringLiteralE6FB7942BFCD54B6178ADECE738C3E25D32CF155;
IL2CPP_EXTERN_C String_t* _stringLiteralEC870C8EC386B18E4953A9C1A441B73E787FE3E3;
IL2CPP_EXTERN_C String_t* _stringLiteralEE238767F38DC3956FF90192A7360A5B47C88C36;
IL2CPP_EXTERN_C String_t* _stringLiteralF02768AE02EDF48DA977F708A0513A95FDC0F733;
IL2CPP_EXTERN_C String_t* _stringLiteralF037AEB428D0D727267C01C044FA8D18A1427205;
IL2CPP_EXTERN_C String_t* _stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5;
IL2CPP_EXTERN_C const RuntimeMethod* ASN1Convert_FromOid_mC178E72357986C1AB75A1FFC9DA7687ECA20E462_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ASN1Convert_FromUnsignedBigInteger_mB500398BFB7953610B9218268B91E1960BA2E57A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ASN1Convert_ToDateTime_m94B39FD0657B85FB9AB61B04CAD71E759C9FE152_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ASN1Convert_ToInt32_mA2A8761F965979408D46FBEB946DB59F36137A5E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ASN1Convert_ToOid_mFFA93B4BBEFCA8E4E86DAE87CDB998E78BFB2D5A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ASN1__ctor_mE005F52336402C3D41EAD9E28A95910B3C0865DA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_Empty_TisRuntimeObject_m9CF99326FAC8A01A4A25C90AA97F0799BA35ECAB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_Reverse_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m03D674052100D1E9D6214ADD31FE7E5F7E6788DA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* BigInteger_TestBit_mFF11993F9C65D59A109EA7EC55B8B791A9DDB56B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* BigInteger_ToString_m9FD0DEAAA4F90CECA50A45E19876EF580B1EA9A2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* BigInteger_op_Implicit_m7057639C0ADB9D04334B3DA64237547E293A50EB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* BigInteger_op_Multiply_mEA6B6928879EF921641122FA7E597A16A613EDDE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* BigInteger_op_Subtraction_mC72451C0DAE478E11522A2AB99426BEAD4E97792_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ChallengeResponse2_Compute_mAA312CA925226C75A829516B6BDC2089840D389D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ChallengeResponse_get_LM_m3916048E028CFCA867E801A83FEB949F7C089263_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ChallengeResponse_get_NT_mEC9F2FDFDB8FADF415D4BA8A1564A23024FC3437_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ChallengeResponse_set_Challenge_mD747C1A002528A6E9AFDE848AA257FD7B1B85E6F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ChallengeResponse_set_Password_m530EB94179C374BED9B9AAE4BB30AB3FF14F07E2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ContentInfo__ctor_m3AAF5EC77C4891BB1B6AF1F980C8623C0621852D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EncryptedData__ctor_m385361DAE06A76AA773E49EF242400DE7F02A8FD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EncryptedPrivateKeyInfo_Decode_mC67C5672B7231974FCDF510FD280883B2E5C8639_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Kernel_LeftShift_mEA93DE79BE9A04B1AD826F95F9C77A28EC87CCA9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Kernel_RightShift_m1F0188E75D20E70731FC46BDB32106EB33A1DB83_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Kernel_modInverse_mEB896FA57CB36CE9FF75EBB4E11EA71AE23E3EC4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* MessageBase_Decode_m0994F2111010F3E105B94A83439BDBADA2E46537_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ModulusRing_BarrettReduction_m7B02B29BBEA5309C09AE3C2860CDA318810AB3E7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ModulusRing_Difference_m4994769FFA8FAE06882F901C9DBEFC0A745E5258_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* PKCS12_AddPrivateKey_m1197B452390B9CF1EB0E9F091AB0757EBF5A2697_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* PKCS12_Decode_m99D1E85A60263825BD361CFA623B088DE44FD2B7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* PKCS12_GetSymmetricAlgorithm_mD3F3C0B83D3F2F2F384895C287C95AEACC9D237B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* PKCS12_ReadSafeBag_m054D3F397B2D07EBD0ECDA6575D16EAA5AAE1B7B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* PKCS1_CreateFromName_mB407B0358BF42A94FAA0A3B7DF68A731827C21BE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* PrimalityTests_GetSPPRounds_mB217B6CB2BB40EEFAE4800E521105B5EE16C6979_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* PrimalityTests_RabinMillerTest_mE869E48DD897411CA22276B55C5E3E4A869307B8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* PrivateKeyInfo_DecodeDSA_m705D495634A3F9F97D73FA4FC995352DF5A3F5EF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* PrivateKeyInfo_DecodeRSA_m47EEB9282E7E66ED9256F2097B4E5C757B79B080_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* PrivateKeyInfo_Decode_mC8128B0803CD098039C8281AF413EEADD82EF13C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* PrivateKeyInfo_Encode_m3D458CE8888E92B151A56A3641E46651DFB05CD8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* RSAManaged_ExportParameters_m8029EBF5FC8B90AF79C6D1469ECB44D28FB101D4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* RSAManaged_ImportParameters_m74BDEF3C147D83EE752B8445A83E1F4B7866717D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* RSAManaged_ToXmlString_m9189B3341B9CAD4722BFF40BB674316DEDFD7EDF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* RSAManaged_get_KeySize_m460D3CD00D5E9DED31348982599FEC360F1FBF37_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Type3Message_GetBytes_m9C22065DB20CD016FCA226AA2A78952E111CF118_RuntimeMethod_var;
IL2CPP_EXTERN_C const uint32_t ASN1Convert_FromInt32_m59FF0922659B0A323026CCC0876BC33020C4FC9A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ASN1Convert_FromOid_mC178E72357986C1AB75A1FFC9DA7687ECA20E462_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ASN1Convert_FromUnsignedBigInteger_mB500398BFB7953610B9218268B91E1960BA2E57A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ASN1Convert_ToDateTime_m94B39FD0657B85FB9AB61B04CAD71E759C9FE152_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ASN1Convert_ToInt32_mA2A8761F965979408D46FBEB946DB59F36137A5E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ASN1Convert_ToOid_mFFA93B4BBEFCA8E4E86DAE87CDB998E78BFB2D5A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ASN1_Add_mF6ED0416BB021A1C333F99E42F8B17AF8B26639B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ASN1_DecodeTLV_m30440B1DE0A8C4236AA9658DEBF2808FD3BC00C3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ASN1_Decode_m94E3A6F94EDACE796521D04E6A832D99592F1149_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ASN1_Element_m505373548BEE512211614D9CE56AE728959D188D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ASN1_GetBytes_m4ABC0EF4CBE8CF6BE65CEC52CDB02BB59E2E9AE4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ASN1_ToString_mF3953615856548F00889AD245391D09FBE782CBA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ASN1__ctor_mE005F52336402C3D41EAD9E28A95910B3C0865DA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ASN1_get_Value_m9BD6239E12A6148AF9507C2F58058C6B8147A079_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ASN1_set_Value_m225FF9AC03EA872809C7742070A34A264C58588E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Alert_ToString_mF4C26959C923C9C023B6DAD01DFF6F0D2868D167_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t BigInteger_Equals_m9877E32FBB71233616ACE7B8AAA31ED8C497716D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t BigInteger_GeneratePseudoPrime_m40B9FAE1552A9CEF0A39529CF40E2F5C9FD377DE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t BigInteger_GenerateRandom_mA17F93C5DDA00EDFCBBB66C41120BA1886241F5D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t BigInteger_GenerateRandom_mABCBDC6EF81EBAF32CDA3B7685A208CA68C115D6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t BigInteger_GetBytes_m3FA801F9485DE409CF9C9E7F4873694BF642C31C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t BigInteger_LowestSetBit_m6E7C4246DA0DA86F94B880680121448F676E8435_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t BigInteger_TestBit_mFF11993F9C65D59A109EA7EC55B8B791A9DDB56B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t BigInteger_ToString_m589EF8667DF3B88F9A54068FCC1A60AE0D78FC67_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t BigInteger_ToString_m9FD0DEAAA4F90CECA50A45E19876EF580B1EA9A2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t BigInteger__cctor_mFA9F5AACEBB5B232D3139F994C06A883760DEAF0_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t BigInteger__ctor_m12A6762C07A6C1B90E6461D22E25A4DE6D3F1250_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t BigInteger__ctor_m718EBF73E0A8036284DBF530A63930E286233BC5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t BigInteger__ctor_m77CF9FF025A6A98A625E8E948F19F822210BC29C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t BigInteger__ctor_mCAC0EAFBC60E0DC2B64BE0DD21099C837FEC0A33_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t BigInteger__ctor_mF6EF77E576DB644975AE00AED27D25A7AC3AEE2E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t BigInteger_get_Rng_mFD8903C45513484592C646CCF0F2752DB66509E2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t BigInteger_op_Equality_mF5B5A983065914F1789BB1552A1AA1B589B59C90_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t BigInteger_op_Implicit_m47A1626222EC6D506611B5776F1506E5ED6F529F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t BigInteger_op_Implicit_m7057639C0ADB9D04334B3DA64237547E293A50EB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t BigInteger_op_Inequality_m0C6217422FC853BD5E26CF9E7995AE95E55668C2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t BigInteger_op_Multiply_mEA6B6928879EF921641122FA7E597A16A613EDDE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t BigInteger_op_Subtraction_mC72451C0DAE478E11522A2AB99426BEAD4E97792_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t BitConverterLE_GetUIntBytes_m871281C3039A5B7DFB56E0F3EBBE22F74135997C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t BitConverterLE_GetULongBytes_mCBAC987169706D10F05AFF42559A4EA1D88E1876_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t BitConverterLE_UIntFromBytes_m91E16C3362E794444D849A4AD5B9F746BF2A4FCB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t BitConverterLE_UShortFromBytes_mBC051D16FFC95E9695F110AFDEAB018BD76F84A9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CertificateValidationHelper_GetInternalValidator_m765EA22BAC020CAA59167E95C1D1A6A652FE1D01_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CertificateValidationHelper__cctor_m3F448328D24FD04BC74176CE26ACCB2C431E2B24_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ChallengeResponse2_Compute_LM_m3A1F9371E4F1E41B044787FFB3BE985E92A3AC22_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ChallengeResponse2_Compute_NTLM_Password_mD27D4A18DBD712B0E80B0F2A1CB296B353312C41_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ChallengeResponse2_Compute_NTLM_mA1DCA878A3A7A5517DB8BB0F2BEDD29353573976_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ChallengeResponse2_Compute_NTLMv2_Session_mFB6537BF7FC8D9D7CCE55BFCDF6A7C371460E296_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ChallengeResponse2_Compute_NTLMv2_mBCFF2DF7375AD035B98FC84253201D269201CE43_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ChallengeResponse2_Compute_mAA312CA925226C75A829516B6BDC2089840D389D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ChallengeResponse2_GetResponse_mE39699CD2453921E373BF9768180993EDCD810E7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ChallengeResponse2_PasswordToKey_m2871E605818DF2DE4BC5B1B163831BA8F64006D8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ChallengeResponse2_PrepareDESKey_m428EF8F37B18E0B4FC5895BFF02A681740CF7608_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ChallengeResponse2__cctor_mCF5C3FE5989C7BB7777C3BAADD67E9F8576A8C23_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ChallengeResponse_Dispose_mD6C08D1EDA541DC5A9B287744FB18E3149627434_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ChallengeResponse_GetResponse_m526E49021AB29DD12995CF8BB12DC9F03F2A583F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ChallengeResponse_PasswordToKey_m522B84CA0312284486A2C4E10FEE2D74BF4FF163_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ChallengeResponse_PrepareDESKey_m32B2174E0B63E959CE08204F3C39AAA01799A3B3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ChallengeResponse__cctor_m069BF87DE471BEDD893664B52BBD066119DCD55C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ChallengeResponse__ctor_m1E0300839CAF582A720DB0F4F9E425B6EE12B258_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ChallengeResponse_get_LM_m3916048E028CFCA867E801A83FEB949F7C089263_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ChallengeResponse_get_NT_mEC9F2FDFDB8FADF415D4BA8A1564A23024FC3437_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ChallengeResponse_set_Challenge_mD747C1A002528A6E9AFDE848AA257FD7B1B85E6F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ChallengeResponse_set_Password_m530EB94179C374BED9B9AAE4BB30AB3FF14F07E2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ContentInfo_GetASN1_m3DF4C4558BE17D650B80B7971158C1B704C7B995_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ContentInfo__ctor_m3AAF5EC77C4891BB1B6AF1F980C8623C0621852D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ContentInfo__ctor_mEE9D9E1E66FBF3DA3414423F0D4216E40C625BFA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ContentInfo__ctor_mFFDEEE8545287FC5A22740B7E06F6D64D401E196_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CryptoConvert_ToHex_m2FB6183AFF3B31424407BB7D767A844E3464B411_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DeriveBytes_DeriveIV_mEBA107DC29EA28DF2575F45EF7A0C55840BD8F03_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DeriveBytes_DeriveKey_mDF33F048359AB75CC3F1F634A67EB4EDEF02E796_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DeriveBytes_DeriveMAC_mD54FB1F61CFC13258B46861CCE527A85CC62652D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DeriveBytes_Derive_m77A53485FBE468A4F9698AEC0B36415699A9D72E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DeriveBytes__cctor_m9599099DAB452D213B5F996953DB05E43CBDD41B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DeriveBytes_set_Password_m01796801BB8FD1E5F9D62F48A057F936CE0D0E4D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DeriveBytes_set_Salt_m259A4E6B31DF7C039E776B473B4C5208890E8C5E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EncryptedData__ctor_m385361DAE06A76AA773E49EF242400DE7F02A8FD_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EncryptedData_get_EncryptedContent_m3C19AF07E7124131F08D7223E7B955AE67896BB8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EncryptedPrivateKeyInfo_Decode_mC67C5672B7231974FCDF510FD280883B2E5C8639_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EncryptedPrivateKeyInfo_get_EncryptedData_m0EB3C77C669117FCB3E0A5DA1758F9B0A18573D3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EncryptedPrivateKeyInfo_get_Salt_mF231C0F3BC06F402910179312CC9245911450C4B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Kernel_DwordDivMod_m7DD3CEDA379E3BEE45058144A4E63AB39C32268C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Kernel_LeftShift_mEA93DE79BE9A04B1AD826F95F9C77A28EC87CCA9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Kernel_RightShift_m1F0188E75D20E70731FC46BDB32106EB33A1DB83_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Kernel_Subtract_mD8975D3BC036B9DAEC10E5585880F304DAF3E332_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Kernel_modInverse_m3FE8ACCFD28EBC15685ACEE0ED33A048DE9D022D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Kernel_modInverse_mEB896FA57CB36CE9FF75EBB4E11EA71AE23E3EC4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Kernel_multiByteDivide_m3AB2BAB666EBB176A004D389DBDAAEBAA3763B54_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MD2Managed_HashFinal_m8840B1788737936945402AA9D19E14033ECA61EC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MD2Managed_MD2Transform_m95099D1A3DB46EA112FF62C9A585D947C7FD4C23_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MD2Managed_Padding_m3EB6A24F9144B480408240A0885F55C9BD0B47B1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MD2Managed__cctor_mFCD964B61C39F08BCF87A5CA5C9D04364FA0715E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MD2Managed__ctor_mB717463E13F068948687F8EE38041CA6087E6FCA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MD2_Create_mF375441B9B1B701ECE73B9B51AFE4E3ADDE6E02F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MD4Managed_HashFinal_m4853C50C4026A1F75D7C75FB28FD4E146E95F6AC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MD4Managed_Padding_m7AD58C8D8178AC6CD6738C93A146312D73ED0476_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MD4Managed__ctor_mDB4352DBB43112E1DF337DF241A3E25435C2C3C5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MD4_Create_m2D436A4CC284704A7DA0EEF4C4D5860F69D0BB93_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MessageBase_CheckHeader_m427014E264FA451B68062CFF8A1939DC3A04FB5A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MessageBase_Decode_m0994F2111010F3E105B94A83439BDBADA2E46537_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MessageBase_PrepareMessage_m6B0C0C463C16D086924EC49DB07C3ADE95C11958_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MessageBase__cctor_m4DF505F352AB2529D7E6EE09E6B096C076663B0F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ModulusRing_BarrettReduction_m7B02B29BBEA5309C09AE3C2860CDA318810AB3E7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ModulusRing_Difference_m4994769FFA8FAE06882F901C9DBEFC0A745E5258_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ModulusRing_Multiply_m4C45458BB28E03B17069F0A0BB87F1426ABAC272_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ModulusRing_Pow_m02E0BDA9434462191910C6F7BD6E7A6C77544C06_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ModulusRing_Pow_mA4D173D9DD4C251CE87C56CEA39D04A8719FBE24_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ModulusRing__ctor_mF09FC4C08A46EB1ECBA2A35B28BDD16D703E1050_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MonoRemoteCertificateValidationCallback_BeginInvoke_mE8A7228A3C1E37CED0138DA272D8A9A6ED52E2D1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MonoTlsConnectionInfo_ToString_m1988B66DE8C065C14AB2ED0DA4DDB84313C05E65_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MonoTlsProviderFactory_GetProvider_mB4747BFB69D961C9B18398D60AFC667F9A252245_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MonoTlsSettings_CloneWithValidator_m46363CAC421939D9904660815CF1D8131C8DC3B1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MonoTlsSettings_Clone_mF28F7F627B12CBD0BD1ABD6F35DD0B4BAD2E3840_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MonoTlsSettings__ctor_m3D336E73C9393401BE9BE856B7204BA176F52B17_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MonoTlsSettings_get_DefaultSettings_m49A7CECC7D687F62790DD374D560278D3916B887_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t NtlmSettings__cctor_mCE3B588B6BFFB63D73ECA11941E875814A5CE9BB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t NtlmSettings_get_DefaultAuthLevel_m98EDE4292136121773A45127209BD926E1CF141AMono_Security_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t NtlmSettings_get_DefaultAuthLevel_m98EDE4292136121773A45127209BD926E1CF141A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t PKCS12_AddCertificate_m17964E654DA9F739484806557EBD8CFE5331A198_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t PKCS12_AddPrivateKey_m1197B452390B9CF1EB0E9F091AB0757EBF5A2697_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t PKCS12_CertificateSafeBag_mD0DD83647F65C3ABAE16740304102EFD7495FB73_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t PKCS12_Clone_mCFFD83941C1E56BEFEFDF4CF4E04601B37564432_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t PKCS12_Decode_m99D1E85A60263825BD361CFA623B088DE44FD2B7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t PKCS12_Decrypt_m31927063D7A8B21C5E2B81F0879117F269B2F340_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t PKCS12_Encrypt_m46E5121EFD2B8D707F1028204C59EE95955FA992_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t PKCS12_EncryptedContentInfo_m1E71931C47F151A7B5AC985929B78FAED83C5E89_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t PKCS12_GetBytes_m8621373F343293D4A64DED97DA2610BE6B6D7D73_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t PKCS12_GetExistingParameters_mA087BFAB5B05292523844A22873E72CAEBF5500F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t PKCS12_GetSymmetricAlgorithm_mD3F3C0B83D3F2F2F384895C287C95AEACC9D237B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t PKCS12_MAC_mA1250320B5F0B5C94D8532296AB59CC32B7A7E78_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t PKCS12_ReadSafeBag_m054D3F397B2D07EBD0ECDA6575D16EAA5AAE1B7B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t PKCS12_RemoveCertificate_mFD3A6ECA0F182AC1C74E2E7A56D4F6E3D4D300D2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t PKCS12__cctor_m6147652F39C9E084AC465598F872099A0E0B9CAB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t PKCS12__ctor_mB6E3957A0DB6D7E17808EB1141909F9D1AEC162F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t PKCS12_get_Certificates_mB8B81E86E481809CAB88C4657FDFCA67FE5190F4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t PKCS12_get_Keys_mAAA961BD9580ED8EE3B394B702945FCB820E34AE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t PKCS12_get_MaximumPasswordLength_m456895C0914C8E686BC0548D036FAF11EB2AD266Mono_Security_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t PKCS12_get_MaximumPasswordLength_m456895C0914C8E686BC0548D036FAF11EB2AD266_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t PKCS12_set_Password_mE1814AD9981817AEB8B4DAD7AED8DEA6A17F1DB0_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t PKCS1_CreateFromName_mB407B0358BF42A94FAA0A3B7DF68A731827C21BE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t PKCS1__cctor_mA0BF327C9ECE4E5B1AACA740DBF4A61FB4F88825_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t PrimalityTest_BeginInvoke_m92CDF05BD3D7D4CD830DAD891C626440C69A8D45_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t PrimalityTests_GetSPPRounds_mB217B6CB2BB40EEFAE4800E521105B5EE16C6979_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t PrimalityTests_RabinMillerTest_mE869E48DD897411CA22276B55C5E3E4A869307B8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t PrimeGeneratorBase_get_PrimalityTest_m0BACD3BCEC2D3F9AA1E81726561BF3D8B4048092_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t PrivateKeyInfo_DecodeDSA_m705D495634A3F9F97D73FA4FC995352DF5A3F5EF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t PrivateKeyInfo_DecodeRSA_m47EEB9282E7E66ED9256F2097B4E5C757B79B080_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t PrivateKeyInfo_Decode_mC8128B0803CD098039C8281AF413EEADD82EF13C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t PrivateKeyInfo_Encode_m3D458CE8888E92B151A56A3641E46651DFB05CD8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t PrivateKeyInfo_Encode_mF1C1E856195368C0FD130E5E8DEFA373C9F4BEA5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t PrivateKeyInfo_Normalize_m918031FFC55B1092BD5004D914538F78CE701606_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t PrivateKeyInfo_RemoveLeadingZero_m674CB83B855FB14F8C49F062C3261D2587596384_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t PrivateKeyInfo__ctor_m589C6263501E8226678D7B08B7C816E9C9EBD939_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t PrivateKeyInfo_get_PrivateKey_mC390394E64E5FE39B4A833E7D91CF20A899179FA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RSAManaged_Dispose_m2C1A07BB502FBAB28DBE6675CA0B1D54019C6DFB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RSAManaged_ExportParameters_m8029EBF5FC8B90AF79C6D1469ECB44D28FB101D4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RSAManaged_GenerateKeyPair_m01DBB9859ED6B604FD48A26561F33FC8213A4BE5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RSAManaged_GetPaddedValue_m09F304D316894F8620769B764EE99DC5FBF29471_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RSAManaged_ImportParameters_m74BDEF3C147D83EE752B8445A83E1F4B7866717D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RSAManaged_ToXmlString_m9189B3341B9CAD4722BFF40BB674316DEDFD7EDF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RSAManaged_get_KeySize_m460D3CD00D5E9DED31348982599FEC360F1FBF37_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RSAManaged_get_PublicOnly_m1D989F2FB76A46F2C7C80F18D5EA820B7EDD60DD_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t SequentialSearchPrimeGeneratorBase_GenerateNewPrime_mC5D023E53C55A3D910AD896B1B888313516420BE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t SequentialSearchPrimeGeneratorBase_GenerateSearchBase_m2E65C4F49F03838C63E2CF7157F35A857FD85CCC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TlsException__ctor_m5B7689890B3AE575E72A71FB19541C2BBAEF2D93_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TlsException__ctor_mCD978D5A0E271F65BF28C40380F65D8E0247FA53_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Type1Message_GetBytes_m5705CD87750C73B44B8700A02FF0E4C2DE294C9E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Type1Message__ctor_mF11CFA44C4BF05765612B0D3CCBB4EBB433D7B23_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Type1Message_set_Domain_m14675CA2220D6338E39DA862B822553AE6DCFD12_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Type1Message_set_Host_mC0ADD586CC5A1F9FD5489AF1D8F14DF9AA4F2D68_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Type2Message_Decode_m480774BBEA24F18E5C8765273C8DD6A641D9E441_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Type2Message__ctor_m85E73F15F691FC25B93503B84B24D25805B5FBD9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Type2Message_get_Nonce_mEE9D40B2B299766F6B789195174BC580BDAEB4E1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Type2Message_get_TargetInfo_m5E0F0E5A6B32B7512393EDC2DFE9E8A6D79DB485_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Type3Message_Decode_m4624A3F2775E1E590627C69F188816C994270B6D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Type3Message_EncodeString_m431F1D808D738A2C9CE57DE1084F9A42C036AA5A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Type3Message_GetBytes_m9C22065DB20CD016FCA226AA2A78952E111CF118_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Type3Message__ctor_mBA583598EA5F842A0076F882C4A3205B919419D6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Type3Message_set_Domain_m04440D54FDAA49E5C82380E22C46DBF09C22DBF5_MetadataUsageId;
struct CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD_marshaled_com;
struct CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD_marshaled_pinvoke;
struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_com;
struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_pinvoke;
struct Delegate_t_marshaled_com;
struct Delegate_t_marshaled_pinvoke;
struct Exception_t_marshaled_com;
struct Exception_t_marshaled_pinvoke;
struct BigIntegerU5BU5D_t15EB0DC5DA051C4F0C1BECDCD8D7AB250F0CDF4B;
struct CipherSuiteCodeU5BU5D_t0EC37AD4A25BB94BA9AB4A9C0C4802BD79A07CC4;
struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821;
struct DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86;
struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A;
struct StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E;
struct UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB;
IL2CPP_EXTERN_C_BEGIN
IL2CPP_EXTERN_C_END
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <Module>
struct U3CModuleU3E_t239CA80C3AF3E763FA4B9A9F3CFADF0768B426EE
{
public:
public:
};
// System.Object
// Locale
struct Locale_t3E5C8C81DE8D62AC0972B423D543F499CE5BA9E3 : public RuntimeObject
{
public:
public:
};
// Mono.Math.BigInteger
struct BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 : public RuntimeObject
{
public:
// System.UInt32 Mono.Math.BigInteger::length
uint32_t ___length_0;
// System.UInt32[] Mono.Math.BigInteger::data
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* ___data_1;
public:
inline static int32_t get_offset_of_length_0() { return static_cast<int32_t>(offsetof(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8, ___length_0)); }
inline uint32_t get_length_0() const { return ___length_0; }
inline uint32_t* get_address_of_length_0() { return &___length_0; }
inline void set_length_0(uint32_t value)
{
___length_0 = value;
}
inline static int32_t get_offset_of_data_1() { return static_cast<int32_t>(offsetof(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8, ___data_1)); }
inline UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* get_data_1() const { return ___data_1; }
inline UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB** get_address_of_data_1() { return &___data_1; }
inline void set_data_1(UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* value)
{
___data_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___data_1), (void*)value);
}
};
struct BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_StaticFields
{
public:
// System.UInt32[] Mono.Math.BigInteger::smallPrimes
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* ___smallPrimes_2;
// System.Security.Cryptography.RandomNumberGenerator Mono.Math.BigInteger::rng
RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * ___rng_3;
public:
inline static int32_t get_offset_of_smallPrimes_2() { return static_cast<int32_t>(offsetof(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_StaticFields, ___smallPrimes_2)); }
inline UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* get_smallPrimes_2() const { return ___smallPrimes_2; }
inline UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB** get_address_of_smallPrimes_2() { return &___smallPrimes_2; }
inline void set_smallPrimes_2(UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* value)
{
___smallPrimes_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___smallPrimes_2), (void*)value);
}
inline static int32_t get_offset_of_rng_3() { return static_cast<int32_t>(offsetof(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_StaticFields, ___rng_3)); }
inline RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * get_rng_3() const { return ___rng_3; }
inline RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 ** get_address_of_rng_3() { return &___rng_3; }
inline void set_rng_3(RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * value)
{
___rng_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___rng_3), (void*)value);
}
};
// Mono.Math.BigInteger_Kernel
struct Kernel_t6BE0610F448D44A582E752BE181E8666581E7B49 : public RuntimeObject
{
public:
public:
};
// Mono.Math.BigInteger_ModulusRing
struct ModulusRing_t308788615884D122EEEE30912EFFB7C15144C6E8 : public RuntimeObject
{
public:
// Mono.Math.BigInteger Mono.Math.BigInteger_ModulusRing::mod
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___mod_0;
// Mono.Math.BigInteger Mono.Math.BigInteger_ModulusRing::constant
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___constant_1;
public:
inline static int32_t get_offset_of_mod_0() { return static_cast<int32_t>(offsetof(ModulusRing_t308788615884D122EEEE30912EFFB7C15144C6E8, ___mod_0)); }
inline BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * get_mod_0() const { return ___mod_0; }
inline BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 ** get_address_of_mod_0() { return &___mod_0; }
inline void set_mod_0(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * value)
{
___mod_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___mod_0), (void*)value);
}
inline static int32_t get_offset_of_constant_1() { return static_cast<int32_t>(offsetof(ModulusRing_t308788615884D122EEEE30912EFFB7C15144C6E8, ___constant_1)); }
inline BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * get_constant_1() const { return ___constant_1; }
inline BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 ** get_address_of_constant_1() { return &___constant_1; }
inline void set_constant_1(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * value)
{
___constant_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___constant_1), (void*)value);
}
};
// Mono.Math.Prime.Generator.PrimeGeneratorBase
struct PrimeGeneratorBase_tD86126CFDBC57352F37DE0964FFCF652C04D7059 : public RuntimeObject
{
public:
public:
};
// Mono.Math.Prime.PrimalityTests
struct PrimalityTests_t5C9DAAC1E282EC2EB50D1A71221CC2FCE5E8704F : public RuntimeObject
{
public:
public:
};
// Mono.Security.ASN1
struct ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E : public RuntimeObject
{
public:
// System.Byte Mono.Security.ASN1::m_nTag
uint8_t ___m_nTag_0;
// System.Byte[] Mono.Security.ASN1::m_aValue
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___m_aValue_1;
// System.Collections.ArrayList Mono.Security.ASN1::elist
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * ___elist_2;
public:
inline static int32_t get_offset_of_m_nTag_0() { return static_cast<int32_t>(offsetof(ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E, ___m_nTag_0)); }
inline uint8_t get_m_nTag_0() const { return ___m_nTag_0; }
inline uint8_t* get_address_of_m_nTag_0() { return &___m_nTag_0; }
inline void set_m_nTag_0(uint8_t value)
{
___m_nTag_0 = value;
}
inline static int32_t get_offset_of_m_aValue_1() { return static_cast<int32_t>(offsetof(ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E, ___m_aValue_1)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_m_aValue_1() const { return ___m_aValue_1; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_m_aValue_1() { return &___m_aValue_1; }
inline void set_m_aValue_1(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___m_aValue_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_aValue_1), (void*)value);
}
inline static int32_t get_offset_of_elist_2() { return static_cast<int32_t>(offsetof(ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E, ___elist_2)); }
inline ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * get_elist_2() const { return ___elist_2; }
inline ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 ** get_address_of_elist_2() { return &___elist_2; }
inline void set_elist_2(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * value)
{
___elist_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___elist_2), (void*)value);
}
};
// Mono.Security.ASN1Convert
struct ASN1Convert_t5F783CA2300717B94F27A342A75A0E57B73FCC05 : public RuntimeObject
{
public:
public:
};
// Mono.Security.BitConverterLE
struct BitConverterLE_t4CE9DF1164753ED72B6F4F33581C35FBCAEEC109 : public RuntimeObject
{
public:
public:
};
// Mono.Security.Cryptography.CryptoConvert
struct CryptoConvert_tF1F175C2F2C9E65FE7D5FBF0D434B964E4CAFF76 : public RuntimeObject
{
public:
public:
};
// Mono.Security.Cryptography.PKCS1
struct PKCS1_t5ABACACDDA0FE1D9A3D2ECD6BEB8815C8431B222 : public RuntimeObject
{
public:
public:
};
struct PKCS1_t5ABACACDDA0FE1D9A3D2ECD6BEB8815C8431B222_StaticFields
{
public:
// System.Byte[] Mono.Security.Cryptography.PKCS1::emptySHA1
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___emptySHA1_0;
// System.Byte[] Mono.Security.Cryptography.PKCS1::emptySHA256
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___emptySHA256_1;
// System.Byte[] Mono.Security.Cryptography.PKCS1::emptySHA384
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___emptySHA384_2;
// System.Byte[] Mono.Security.Cryptography.PKCS1::emptySHA512
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___emptySHA512_3;
public:
inline static int32_t get_offset_of_emptySHA1_0() { return static_cast<int32_t>(offsetof(PKCS1_t5ABACACDDA0FE1D9A3D2ECD6BEB8815C8431B222_StaticFields, ___emptySHA1_0)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_emptySHA1_0() const { return ___emptySHA1_0; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_emptySHA1_0() { return &___emptySHA1_0; }
inline void set_emptySHA1_0(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___emptySHA1_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___emptySHA1_0), (void*)value);
}
inline static int32_t get_offset_of_emptySHA256_1() { return static_cast<int32_t>(offsetof(PKCS1_t5ABACACDDA0FE1D9A3D2ECD6BEB8815C8431B222_StaticFields, ___emptySHA256_1)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_emptySHA256_1() const { return ___emptySHA256_1; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_emptySHA256_1() { return &___emptySHA256_1; }
inline void set_emptySHA256_1(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___emptySHA256_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___emptySHA256_1), (void*)value);
}
inline static int32_t get_offset_of_emptySHA384_2() { return static_cast<int32_t>(offsetof(PKCS1_t5ABACACDDA0FE1D9A3D2ECD6BEB8815C8431B222_StaticFields, ___emptySHA384_2)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_emptySHA384_2() const { return ___emptySHA384_2; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_emptySHA384_2() { return &___emptySHA384_2; }
inline void set_emptySHA384_2(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___emptySHA384_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___emptySHA384_2), (void*)value);
}
inline static int32_t get_offset_of_emptySHA512_3() { return static_cast<int32_t>(offsetof(PKCS1_t5ABACACDDA0FE1D9A3D2ECD6BEB8815C8431B222_StaticFields, ___emptySHA512_3)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_emptySHA512_3() const { return ___emptySHA512_3; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_emptySHA512_3() { return &___emptySHA512_3; }
inline void set_emptySHA512_3(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___emptySHA512_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___emptySHA512_3), (void*)value);
}
};
// Mono.Security.Cryptography.PKCS8
struct PKCS8_tD24BB8D5DD62F9EF2DCDB5E3B03DB4AB19415656 : public RuntimeObject
{
public:
public:
};
// Mono.Security.Cryptography.PKCS8_EncryptedPrivateKeyInfo
struct EncryptedPrivateKeyInfo_tF582FAE09721F4F2BB353D5C2E28682FFB9C303D : public RuntimeObject
{
public:
// System.String Mono.Security.Cryptography.PKCS8_EncryptedPrivateKeyInfo::_algorithm
String_t* ____algorithm_0;
// System.Byte[] Mono.Security.Cryptography.PKCS8_EncryptedPrivateKeyInfo::_salt
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ____salt_1;
// System.Int32 Mono.Security.Cryptography.PKCS8_EncryptedPrivateKeyInfo::_iterations
int32_t ____iterations_2;
// System.Byte[] Mono.Security.Cryptography.PKCS8_EncryptedPrivateKeyInfo::_data
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ____data_3;
public:
inline static int32_t get_offset_of__algorithm_0() { return static_cast<int32_t>(offsetof(EncryptedPrivateKeyInfo_tF582FAE09721F4F2BB353D5C2E28682FFB9C303D, ____algorithm_0)); }
inline String_t* get__algorithm_0() const { return ____algorithm_0; }
inline String_t** get_address_of__algorithm_0() { return &____algorithm_0; }
inline void set__algorithm_0(String_t* value)
{
____algorithm_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____algorithm_0), (void*)value);
}
inline static int32_t get_offset_of__salt_1() { return static_cast<int32_t>(offsetof(EncryptedPrivateKeyInfo_tF582FAE09721F4F2BB353D5C2E28682FFB9C303D, ____salt_1)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get__salt_1() const { return ____salt_1; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of__salt_1() { return &____salt_1; }
inline void set__salt_1(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
____salt_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____salt_1), (void*)value);
}
inline static int32_t get_offset_of__iterations_2() { return static_cast<int32_t>(offsetof(EncryptedPrivateKeyInfo_tF582FAE09721F4F2BB353D5C2E28682FFB9C303D, ____iterations_2)); }
inline int32_t get__iterations_2() const { return ____iterations_2; }
inline int32_t* get_address_of__iterations_2() { return &____iterations_2; }
inline void set__iterations_2(int32_t value)
{
____iterations_2 = value;
}
inline static int32_t get_offset_of__data_3() { return static_cast<int32_t>(offsetof(EncryptedPrivateKeyInfo_tF582FAE09721F4F2BB353D5C2E28682FFB9C303D, ____data_3)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get__data_3() const { return ____data_3; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of__data_3() { return &____data_3; }
inline void set__data_3(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
____data_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____data_3), (void*)value);
}
};
// Mono.Security.Cryptography.PKCS8_PrivateKeyInfo
struct PrivateKeyInfo_t053A73C524EC661748073EC908D290E2856DB5B9 : public RuntimeObject
{
public:
// System.Int32 Mono.Security.Cryptography.PKCS8_PrivateKeyInfo::_version
int32_t ____version_0;
// System.String Mono.Security.Cryptography.PKCS8_PrivateKeyInfo::_algorithm
String_t* ____algorithm_1;
// System.Byte[] Mono.Security.Cryptography.PKCS8_PrivateKeyInfo::_key
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ____key_2;
// System.Collections.ArrayList Mono.Security.Cryptography.PKCS8_PrivateKeyInfo::_list
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * ____list_3;
public:
inline static int32_t get_offset_of__version_0() { return static_cast<int32_t>(offsetof(PrivateKeyInfo_t053A73C524EC661748073EC908D290E2856DB5B9, ____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__algorithm_1() { return static_cast<int32_t>(offsetof(PrivateKeyInfo_t053A73C524EC661748073EC908D290E2856DB5B9, ____algorithm_1)); }
inline String_t* get__algorithm_1() const { return ____algorithm_1; }
inline String_t** get_address_of__algorithm_1() { return &____algorithm_1; }
inline void set__algorithm_1(String_t* value)
{
____algorithm_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____algorithm_1), (void*)value);
}
inline static int32_t get_offset_of__key_2() { return static_cast<int32_t>(offsetof(PrivateKeyInfo_t053A73C524EC661748073EC908D290E2856DB5B9, ____key_2)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get__key_2() const { return ____key_2; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of__key_2() { return &____key_2; }
inline void set__key_2(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
____key_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____key_2), (void*)value);
}
inline static int32_t get_offset_of__list_3() { return static_cast<int32_t>(offsetof(PrivateKeyInfo_t053A73C524EC661748073EC908D290E2856DB5B9, ____list_3)); }
inline ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * get__list_3() const { return ____list_3; }
inline ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 ** get_address_of__list_3() { return &____list_3; }
inline void set__list_3(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * value)
{
____list_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____list_3), (void*)value);
}
};
// Mono.Security.Interface.CertificateValidationHelper
struct CertificateValidationHelper_t700A78AF16D5DA1698501C49E6894B1B67963F86 : public RuntimeObject
{
public:
public:
};
struct CertificateValidationHelper_t700A78AF16D5DA1698501C49E6894B1B67963F86_StaticFields
{
public:
// System.Boolean Mono.Security.Interface.CertificateValidationHelper::noX509Chain
bool ___noX509Chain_0;
// System.Boolean Mono.Security.Interface.CertificateValidationHelper::supportsTrustAnchors
bool ___supportsTrustAnchors_1;
public:
inline static int32_t get_offset_of_noX509Chain_0() { return static_cast<int32_t>(offsetof(CertificateValidationHelper_t700A78AF16D5DA1698501C49E6894B1B67963F86_StaticFields, ___noX509Chain_0)); }
inline bool get_noX509Chain_0() const { return ___noX509Chain_0; }
inline bool* get_address_of_noX509Chain_0() { return &___noX509Chain_0; }
inline void set_noX509Chain_0(bool value)
{
___noX509Chain_0 = value;
}
inline static int32_t get_offset_of_supportsTrustAnchors_1() { return static_cast<int32_t>(offsetof(CertificateValidationHelper_t700A78AF16D5DA1698501C49E6894B1B67963F86_StaticFields, ___supportsTrustAnchors_1)); }
inline bool get_supportsTrustAnchors_1() const { return ___supportsTrustAnchors_1; }
inline bool* get_address_of_supportsTrustAnchors_1() { return &___supportsTrustAnchors_1; }
inline void set_supportsTrustAnchors_1(bool value)
{
___supportsTrustAnchors_1 = value;
}
};
// Mono.Security.Interface.MonoTlsProvider
struct MonoTlsProvider_tDCD056C5BBBE59ED6BAF63F25952B406C1143C27 : public RuntimeObject
{
public:
public:
};
// Mono.Security.Interface.MonoTlsProviderFactory
struct MonoTlsProviderFactory_t7BC164DB50C3AD4B37141048F27F7E74863146BB : public RuntimeObject
{
public:
public:
};
// Mono.Security.PKCS7
struct PKCS7_t1D68081B4F613E99B7DBDE29D89B8B64100638FB : public RuntimeObject
{
public:
public:
};
// Mono.Security.PKCS7_ContentInfo
struct ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E : public RuntimeObject
{
public:
// System.String Mono.Security.PKCS7_ContentInfo::contentType
String_t* ___contentType_0;
// Mono.Security.ASN1 Mono.Security.PKCS7_ContentInfo::content
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * ___content_1;
public:
inline static int32_t get_offset_of_contentType_0() { return static_cast<int32_t>(offsetof(ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E, ___contentType_0)); }
inline String_t* get_contentType_0() const { return ___contentType_0; }
inline String_t** get_address_of_contentType_0() { return &___contentType_0; }
inline void set_contentType_0(String_t* value)
{
___contentType_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___contentType_0), (void*)value);
}
inline static int32_t get_offset_of_content_1() { return static_cast<int32_t>(offsetof(ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E, ___content_1)); }
inline ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * get_content_1() const { return ___content_1; }
inline ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E ** get_address_of_content_1() { return &___content_1; }
inline void set_content_1(ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * value)
{
___content_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___content_1), (void*)value);
}
};
// Mono.Security.PKCS7_EncryptedData
struct EncryptedData_tA100D7E93FCF1B7CBD486522E841F0A980CCE61B : public RuntimeObject
{
public:
// System.Byte Mono.Security.PKCS7_EncryptedData::_version
uint8_t ____version_0;
// Mono.Security.PKCS7_ContentInfo Mono.Security.PKCS7_EncryptedData::_content
ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * ____content_1;
// Mono.Security.PKCS7_ContentInfo Mono.Security.PKCS7_EncryptedData::_encryptionAlgorithm
ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * ____encryptionAlgorithm_2;
// System.Byte[] Mono.Security.PKCS7_EncryptedData::_encrypted
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ____encrypted_3;
public:
inline static int32_t get_offset_of__version_0() { return static_cast<int32_t>(offsetof(EncryptedData_tA100D7E93FCF1B7CBD486522E841F0A980CCE61B, ____version_0)); }
inline uint8_t get__version_0() const { return ____version_0; }
inline uint8_t* get_address_of__version_0() { return &____version_0; }
inline void set__version_0(uint8_t value)
{
____version_0 = value;
}
inline static int32_t get_offset_of__content_1() { return static_cast<int32_t>(offsetof(EncryptedData_tA100D7E93FCF1B7CBD486522E841F0A980CCE61B, ____content_1)); }
inline ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * get__content_1() const { return ____content_1; }
inline ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E ** get_address_of__content_1() { return &____content_1; }
inline void set__content_1(ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * value)
{
____content_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____content_1), (void*)value);
}
inline static int32_t get_offset_of__encryptionAlgorithm_2() { return static_cast<int32_t>(offsetof(EncryptedData_tA100D7E93FCF1B7CBD486522E841F0A980CCE61B, ____encryptionAlgorithm_2)); }
inline ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * get__encryptionAlgorithm_2() const { return ____encryptionAlgorithm_2; }
inline ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E ** get_address_of__encryptionAlgorithm_2() { return &____encryptionAlgorithm_2; }
inline void set__encryptionAlgorithm_2(ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * value)
{
____encryptionAlgorithm_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____encryptionAlgorithm_2), (void*)value);
}
inline static int32_t get_offset_of__encrypted_3() { return static_cast<int32_t>(offsetof(EncryptedData_tA100D7E93FCF1B7CBD486522E841F0A980CCE61B, ____encrypted_3)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get__encrypted_3() const { return ____encrypted_3; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of__encrypted_3() { return &____encrypted_3; }
inline void set__encrypted_3(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
____encrypted_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____encrypted_3), (void*)value);
}
};
// Mono.Security.Protocol.Ntlm.ChallengeResponse
struct ChallengeResponse_t2A954E3C6AB2D638ECA50E1B8ACB99E8F28A048B : public RuntimeObject
{
public:
// System.Boolean Mono.Security.Protocol.Ntlm.ChallengeResponse::_disposed
bool ____disposed_2;
// System.Byte[] Mono.Security.Protocol.Ntlm.ChallengeResponse::_challenge
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ____challenge_3;
// System.Byte[] Mono.Security.Protocol.Ntlm.ChallengeResponse::_lmpwd
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ____lmpwd_4;
// System.Byte[] Mono.Security.Protocol.Ntlm.ChallengeResponse::_ntpwd
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ____ntpwd_5;
public:
inline static int32_t get_offset_of__disposed_2() { return static_cast<int32_t>(offsetof(ChallengeResponse_t2A954E3C6AB2D638ECA50E1B8ACB99E8F28A048B, ____disposed_2)); }
inline bool get__disposed_2() const { return ____disposed_2; }
inline bool* get_address_of__disposed_2() { return &____disposed_2; }
inline void set__disposed_2(bool value)
{
____disposed_2 = value;
}
inline static int32_t get_offset_of__challenge_3() { return static_cast<int32_t>(offsetof(ChallengeResponse_t2A954E3C6AB2D638ECA50E1B8ACB99E8F28A048B, ____challenge_3)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get__challenge_3() const { return ____challenge_3; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of__challenge_3() { return &____challenge_3; }
inline void set__challenge_3(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
____challenge_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____challenge_3), (void*)value);
}
inline static int32_t get_offset_of__lmpwd_4() { return static_cast<int32_t>(offsetof(ChallengeResponse_t2A954E3C6AB2D638ECA50E1B8ACB99E8F28A048B, ____lmpwd_4)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get__lmpwd_4() const { return ____lmpwd_4; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of__lmpwd_4() { return &____lmpwd_4; }
inline void set__lmpwd_4(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
____lmpwd_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____lmpwd_4), (void*)value);
}
inline static int32_t get_offset_of__ntpwd_5() { return static_cast<int32_t>(offsetof(ChallengeResponse_t2A954E3C6AB2D638ECA50E1B8ACB99E8F28A048B, ____ntpwd_5)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get__ntpwd_5() const { return ____ntpwd_5; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of__ntpwd_5() { return &____ntpwd_5; }
inline void set__ntpwd_5(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
____ntpwd_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____ntpwd_5), (void*)value);
}
};
struct ChallengeResponse_t2A954E3C6AB2D638ECA50E1B8ACB99E8F28A048B_StaticFields
{
public:
// System.Byte[] Mono.Security.Protocol.Ntlm.ChallengeResponse::magic
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___magic_0;
// System.Byte[] Mono.Security.Protocol.Ntlm.ChallengeResponse::nullEncMagic
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___nullEncMagic_1;
public:
inline static int32_t get_offset_of_magic_0() { return static_cast<int32_t>(offsetof(ChallengeResponse_t2A954E3C6AB2D638ECA50E1B8ACB99E8F28A048B_StaticFields, ___magic_0)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_magic_0() const { return ___magic_0; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_magic_0() { return &___magic_0; }
inline void set_magic_0(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___magic_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___magic_0), (void*)value);
}
inline static int32_t get_offset_of_nullEncMagic_1() { return static_cast<int32_t>(offsetof(ChallengeResponse_t2A954E3C6AB2D638ECA50E1B8ACB99E8F28A048B_StaticFields, ___nullEncMagic_1)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_nullEncMagic_1() const { return ___nullEncMagic_1; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_nullEncMagic_1() { return &___nullEncMagic_1; }
inline void set_nullEncMagic_1(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___nullEncMagic_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___nullEncMagic_1), (void*)value);
}
};
// Mono.Security.Protocol.Ntlm.ChallengeResponse2
struct ChallengeResponse2_t2F5817D7717011A7F4C0DE0015D144A2292CAD77 : public RuntimeObject
{
public:
public:
};
struct ChallengeResponse2_t2F5817D7717011A7F4C0DE0015D144A2292CAD77_StaticFields
{
public:
// System.Byte[] Mono.Security.Protocol.Ntlm.ChallengeResponse2::magic
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___magic_0;
// System.Byte[] Mono.Security.Protocol.Ntlm.ChallengeResponse2::nullEncMagic
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___nullEncMagic_1;
public:
inline static int32_t get_offset_of_magic_0() { return static_cast<int32_t>(offsetof(ChallengeResponse2_t2F5817D7717011A7F4C0DE0015D144A2292CAD77_StaticFields, ___magic_0)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_magic_0() const { return ___magic_0; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_magic_0() { return &___magic_0; }
inline void set_magic_0(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___magic_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___magic_0), (void*)value);
}
inline static int32_t get_offset_of_nullEncMagic_1() { return static_cast<int32_t>(offsetof(ChallengeResponse2_t2F5817D7717011A7F4C0DE0015D144A2292CAD77_StaticFields, ___nullEncMagic_1)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_nullEncMagic_1() const { return ___nullEncMagic_1; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_nullEncMagic_1() { return &___nullEncMagic_1; }
inline void set_nullEncMagic_1(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___nullEncMagic_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___nullEncMagic_1), (void*)value);
}
};
// Mono.Security.X509.PKCS12
struct PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C : public RuntimeObject
{
public:
// System.Byte[] Mono.Security.X509.PKCS12::_password
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ____password_0;
// System.Collections.ArrayList Mono.Security.X509.PKCS12::_keyBags
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * ____keyBags_1;
// System.Collections.ArrayList Mono.Security.X509.PKCS12::_secretBags
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * ____secretBags_2;
// Mono.Security.X509.X509CertificateCollection Mono.Security.X509.PKCS12::_certs
X509CertificateCollection_t423BA1B9FAA983BA745023994C648C6DAC3E5A1A * ____certs_3;
// System.Boolean Mono.Security.X509.PKCS12::_keyBagsChanged
bool ____keyBagsChanged_4;
// System.Boolean Mono.Security.X509.PKCS12::_secretBagsChanged
bool ____secretBagsChanged_5;
// System.Boolean Mono.Security.X509.PKCS12::_certsChanged
bool ____certsChanged_6;
// System.Int32 Mono.Security.X509.PKCS12::_iterations
int32_t ____iterations_7;
// System.Collections.ArrayList Mono.Security.X509.PKCS12::_safeBags
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * ____safeBags_8;
// System.Security.Cryptography.RandomNumberGenerator Mono.Security.X509.PKCS12::_rng
RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * ____rng_9;
public:
inline static int32_t get_offset_of__password_0() { return static_cast<int32_t>(offsetof(PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C, ____password_0)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get__password_0() const { return ____password_0; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of__password_0() { return &____password_0; }
inline void set__password_0(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
____password_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____password_0), (void*)value);
}
inline static int32_t get_offset_of__keyBags_1() { return static_cast<int32_t>(offsetof(PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C, ____keyBags_1)); }
inline ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * get__keyBags_1() const { return ____keyBags_1; }
inline ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 ** get_address_of__keyBags_1() { return &____keyBags_1; }
inline void set__keyBags_1(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * value)
{
____keyBags_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____keyBags_1), (void*)value);
}
inline static int32_t get_offset_of__secretBags_2() { return static_cast<int32_t>(offsetof(PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C, ____secretBags_2)); }
inline ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * get__secretBags_2() const { return ____secretBags_2; }
inline ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 ** get_address_of__secretBags_2() { return &____secretBags_2; }
inline void set__secretBags_2(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * value)
{
____secretBags_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____secretBags_2), (void*)value);
}
inline static int32_t get_offset_of__certs_3() { return static_cast<int32_t>(offsetof(PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C, ____certs_3)); }
inline X509CertificateCollection_t423BA1B9FAA983BA745023994C648C6DAC3E5A1A * get__certs_3() const { return ____certs_3; }
inline X509CertificateCollection_t423BA1B9FAA983BA745023994C648C6DAC3E5A1A ** get_address_of__certs_3() { return &____certs_3; }
inline void set__certs_3(X509CertificateCollection_t423BA1B9FAA983BA745023994C648C6DAC3E5A1A * value)
{
____certs_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____certs_3), (void*)value);
}
inline static int32_t get_offset_of__keyBagsChanged_4() { return static_cast<int32_t>(offsetof(PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C, ____keyBagsChanged_4)); }
inline bool get__keyBagsChanged_4() const { return ____keyBagsChanged_4; }
inline bool* get_address_of__keyBagsChanged_4() { return &____keyBagsChanged_4; }
inline void set__keyBagsChanged_4(bool value)
{
____keyBagsChanged_4 = value;
}
inline static int32_t get_offset_of__secretBagsChanged_5() { return static_cast<int32_t>(offsetof(PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C, ____secretBagsChanged_5)); }
inline bool get__secretBagsChanged_5() const { return ____secretBagsChanged_5; }
inline bool* get_address_of__secretBagsChanged_5() { return &____secretBagsChanged_5; }
inline void set__secretBagsChanged_5(bool value)
{
____secretBagsChanged_5 = value;
}
inline static int32_t get_offset_of__certsChanged_6() { return static_cast<int32_t>(offsetof(PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C, ____certsChanged_6)); }
inline bool get__certsChanged_6() const { return ____certsChanged_6; }
inline bool* get_address_of__certsChanged_6() { return &____certsChanged_6; }
inline void set__certsChanged_6(bool value)
{
____certsChanged_6 = value;
}
inline static int32_t get_offset_of__iterations_7() { return static_cast<int32_t>(offsetof(PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C, ____iterations_7)); }
inline int32_t get__iterations_7() const { return ____iterations_7; }
inline int32_t* get_address_of__iterations_7() { return &____iterations_7; }
inline void set__iterations_7(int32_t value)
{
____iterations_7 = value;
}
inline static int32_t get_offset_of__safeBags_8() { return static_cast<int32_t>(offsetof(PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C, ____safeBags_8)); }
inline ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * get__safeBags_8() const { return ____safeBags_8; }
inline ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 ** get_address_of__safeBags_8() { return &____safeBags_8; }
inline void set__safeBags_8(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * value)
{
____safeBags_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&____safeBags_8), (void*)value);
}
inline static int32_t get_offset_of__rng_9() { return static_cast<int32_t>(offsetof(PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C, ____rng_9)); }
inline RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * get__rng_9() const { return ____rng_9; }
inline RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 ** get_address_of__rng_9() { return &____rng_9; }
inline void set__rng_9(RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * value)
{
____rng_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&____rng_9), (void*)value);
}
};
struct PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C_StaticFields
{
public:
// System.Int32 Mono.Security.X509.PKCS12::password_max_length
int32_t ___password_max_length_10;
public:
inline static int32_t get_offset_of_password_max_length_10() { return static_cast<int32_t>(offsetof(PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C_StaticFields, ___password_max_length_10)); }
inline int32_t get_password_max_length_10() const { return ___password_max_length_10; }
inline int32_t* get_address_of_password_max_length_10() { return &___password_max_length_10; }
inline void set_password_max_length_10(int32_t value)
{
___password_max_length_10 = value;
}
};
// Mono.Security.X509.PKCS12_DeriveBytes
struct DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D : public RuntimeObject
{
public:
// System.String Mono.Security.X509.PKCS12_DeriveBytes::_hashName
String_t* ____hashName_3;
// System.Int32 Mono.Security.X509.PKCS12_DeriveBytes::_iterations
int32_t ____iterations_4;
// System.Byte[] Mono.Security.X509.PKCS12_DeriveBytes::_password
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ____password_5;
// System.Byte[] Mono.Security.X509.PKCS12_DeriveBytes::_salt
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ____salt_6;
public:
inline static int32_t get_offset_of__hashName_3() { return static_cast<int32_t>(offsetof(DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D, ____hashName_3)); }
inline String_t* get__hashName_3() const { return ____hashName_3; }
inline String_t** get_address_of__hashName_3() { return &____hashName_3; }
inline void set__hashName_3(String_t* value)
{
____hashName_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____hashName_3), (void*)value);
}
inline static int32_t get_offset_of__iterations_4() { return static_cast<int32_t>(offsetof(DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D, ____iterations_4)); }
inline int32_t get__iterations_4() const { return ____iterations_4; }
inline int32_t* get_address_of__iterations_4() { return &____iterations_4; }
inline void set__iterations_4(int32_t value)
{
____iterations_4 = value;
}
inline static int32_t get_offset_of__password_5() { return static_cast<int32_t>(offsetof(DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D, ____password_5)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get__password_5() const { return ____password_5; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of__password_5() { return &____password_5; }
inline void set__password_5(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
____password_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____password_5), (void*)value);
}
inline static int32_t get_offset_of__salt_6() { return static_cast<int32_t>(offsetof(DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D, ____salt_6)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get__salt_6() const { return ____salt_6; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of__salt_6() { return &____salt_6; }
inline void set__salt_6(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
____salt_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____salt_6), (void*)value);
}
};
struct DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D_StaticFields
{
public:
// System.Byte[] Mono.Security.X509.PKCS12_DeriveBytes::keyDiversifier
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___keyDiversifier_0;
// System.Byte[] Mono.Security.X509.PKCS12_DeriveBytes::ivDiversifier
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___ivDiversifier_1;
// System.Byte[] Mono.Security.X509.PKCS12_DeriveBytes::macDiversifier
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___macDiversifier_2;
public:
inline static int32_t get_offset_of_keyDiversifier_0() { return static_cast<int32_t>(offsetof(DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D_StaticFields, ___keyDiversifier_0)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_keyDiversifier_0() const { return ___keyDiversifier_0; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_keyDiversifier_0() { return &___keyDiversifier_0; }
inline void set_keyDiversifier_0(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___keyDiversifier_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___keyDiversifier_0), (void*)value);
}
inline static int32_t get_offset_of_ivDiversifier_1() { return static_cast<int32_t>(offsetof(DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D_StaticFields, ___ivDiversifier_1)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_ivDiversifier_1() const { return ___ivDiversifier_1; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_ivDiversifier_1() { return &___ivDiversifier_1; }
inline void set_ivDiversifier_1(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___ivDiversifier_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ivDiversifier_1), (void*)value);
}
inline static int32_t get_offset_of_macDiversifier_2() { return static_cast<int32_t>(offsetof(DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D_StaticFields, ___macDiversifier_2)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_macDiversifier_2() const { return ___macDiversifier_2; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_macDiversifier_2() { return &___macDiversifier_2; }
inline void set_macDiversifier_2(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___macDiversifier_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___macDiversifier_2), (void*)value);
}
};
// Mono.Security.X509.SafeBag
struct SafeBag_t46FE0281DC1D6CAB5FD08FCDB3E57C2EA1859726 : public RuntimeObject
{
public:
// System.String Mono.Security.X509.SafeBag::_bagOID
String_t* ____bagOID_0;
// Mono.Security.ASN1 Mono.Security.X509.SafeBag::_asn1
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * ____asn1_1;
public:
inline static int32_t get_offset_of__bagOID_0() { return static_cast<int32_t>(offsetof(SafeBag_t46FE0281DC1D6CAB5FD08FCDB3E57C2EA1859726, ____bagOID_0)); }
inline String_t* get__bagOID_0() const { return ____bagOID_0; }
inline String_t** get_address_of__bagOID_0() { return &____bagOID_0; }
inline void set__bagOID_0(String_t* value)
{
____bagOID_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____bagOID_0), (void*)value);
}
inline static int32_t get_offset_of__asn1_1() { return static_cast<int32_t>(offsetof(SafeBag_t46FE0281DC1D6CAB5FD08FCDB3E57C2EA1859726, ____asn1_1)); }
inline ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * get__asn1_1() const { return ____asn1_1; }
inline ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E ** get_address_of__asn1_1() { return &____asn1_1; }
inline void set__asn1_1(ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * value)
{
____asn1_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____asn1_1), (void*)value);
}
};
// Mono.Security.X509.X509CertificateCollection_X509CertificateEnumerator
struct X509CertificateEnumerator_t1CBC050F10F4BE1E2A8552A1F22E705013EBF505 : public RuntimeObject
{
public:
// System.Collections.IEnumerator Mono.Security.X509.X509CertificateCollection_X509CertificateEnumerator::enumerator
RuntimeObject* ___enumerator_0;
public:
inline static int32_t get_offset_of_enumerator_0() { return static_cast<int32_t>(offsetof(X509CertificateEnumerator_t1CBC050F10F4BE1E2A8552A1F22E705013EBF505, ___enumerator_0)); }
inline RuntimeObject* get_enumerator_0() const { return ___enumerator_0; }
inline RuntimeObject** get_address_of_enumerator_0() { return &___enumerator_0; }
inline void set_enumerator_0(RuntimeObject* value)
{
___enumerator_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___enumerator_0), (void*)value);
}
};
struct Il2CppArrayBounds;
// System.Array
// System.BitConverter
struct BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE : public RuntimeObject
{
public:
public:
};
struct BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE_StaticFields
{
public:
// System.Boolean System.BitConverter::IsLittleEndian
bool ___IsLittleEndian_0;
public:
inline static int32_t get_offset_of_IsLittleEndian_0() { return static_cast<int32_t>(offsetof(BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE_StaticFields, ___IsLittleEndian_0)); }
inline bool get_IsLittleEndian_0() const { return ___IsLittleEndian_0; }
inline bool* get_address_of_IsLittleEndian_0() { return &___IsLittleEndian_0; }
inline void set_IsLittleEndian_0(bool value)
{
___IsLittleEndian_0 = value;
}
};
// System.Collections.ArrayList
struct ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 : public RuntimeObject
{
public:
// System.Object[] System.Collections.ArrayList::_items
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ____items_0;
// System.Int32 System.Collections.ArrayList::_size
int32_t ____size_1;
// System.Int32 System.Collections.ArrayList::_version
int32_t ____version_2;
// System.Object System.Collections.ArrayList::_syncRoot
RuntimeObject * ____syncRoot_3;
public:
inline static int32_t get_offset_of__items_0() { return static_cast<int32_t>(offsetof(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4, ____items_0)); }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get__items_0() const { return ____items_0; }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of__items_0() { return &____items_0; }
inline void set__items_0(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
{
____items_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_0), (void*)value);
}
inline static int32_t get_offset_of__size_1() { return static_cast<int32_t>(offsetof(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4, ____size_1)); }
inline int32_t get__size_1() const { return ____size_1; }
inline int32_t* get_address_of__size_1() { return &____size_1; }
inline void set__size_1(int32_t value)
{
____size_1 = value;
}
inline static int32_t get_offset_of__version_2() { return static_cast<int32_t>(offsetof(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4, ____version_2)); }
inline int32_t get__version_2() const { return ____version_2; }
inline int32_t* get_address_of__version_2() { return &____version_2; }
inline void set__version_2(int32_t value)
{
____version_2 = value;
}
inline static int32_t get_offset_of__syncRoot_3() { return static_cast<int32_t>(offsetof(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4, ____syncRoot_3)); }
inline RuntimeObject * get__syncRoot_3() const { return ____syncRoot_3; }
inline RuntimeObject ** get_address_of__syncRoot_3() { return &____syncRoot_3; }
inline void set__syncRoot_3(RuntimeObject * value)
{
____syncRoot_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_3), (void*)value);
}
};
struct ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_StaticFields
{
public:
// System.Object[] System.Collections.ArrayList::emptyArray
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___emptyArray_5;
public:
inline static int32_t get_offset_of_emptyArray_5() { return static_cast<int32_t>(offsetof(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_StaticFields, ___emptyArray_5)); }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_emptyArray_5() const { return ___emptyArray_5; }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_emptyArray_5() { return &___emptyArray_5; }
inline void set_emptyArray_5(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
{
___emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___emptyArray_5), (void*)value);
}
};
// System.Collections.CollectionBase
struct CollectionBase_tF5D4583FF325726066A9803839A04E9C0084ED01 : public RuntimeObject
{
public:
// System.Collections.ArrayList System.Collections.CollectionBase::list
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * ___list_0;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(CollectionBase_tF5D4583FF325726066A9803839A04E9C0084ED01, ___list_0)); }
inline ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * get_list_0() const { return ___list_0; }
inline ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
};
// System.EmptyArray`1<System.Object>
struct EmptyArray_1_tCF137C88A5824F413EFB5A2F31664D8207E61D26 : public RuntimeObject
{
public:
public:
};
struct EmptyArray_1_tCF137C88A5824F413EFB5A2F31664D8207E61D26_StaticFields
{
public:
// T[] System.EmptyArray`1::Value
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyArray_1_tCF137C88A5824F413EFB5A2F31664D8207E61D26_StaticFields, ___Value_0)); }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_Value_0() const { return ___Value_0; }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.EventArgs
struct EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E : public RuntimeObject
{
public:
public:
};
struct EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E_StaticFields
{
public:
// System.EventArgs System.EventArgs::Empty
EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * ___Empty_0;
public:
inline static int32_t get_offset_of_Empty_0() { return static_cast<int32_t>(offsetof(EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E_StaticFields, ___Empty_0)); }
inline EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * get_Empty_0() const { return ___Empty_0; }
inline EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E ** get_address_of_Empty_0() { return &___Empty_0; }
inline void set_Empty_0(EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * value)
{
___Empty_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Empty_0), (void*)value);
}
};
// System.Globalization.CultureInfo
struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F : public RuntimeObject
{
public:
// System.Boolean System.Globalization.CultureInfo::m_isReadOnly
bool ___m_isReadOnly_3;
// System.Int32 System.Globalization.CultureInfo::cultureID
int32_t ___cultureID_4;
// System.Int32 System.Globalization.CultureInfo::parent_lcid
int32_t ___parent_lcid_5;
// System.Int32 System.Globalization.CultureInfo::datetime_index
int32_t ___datetime_index_6;
// System.Int32 System.Globalization.CultureInfo::number_index
int32_t ___number_index_7;
// System.Int32 System.Globalization.CultureInfo::default_calendar_type
int32_t ___default_calendar_type_8;
// System.Boolean System.Globalization.CultureInfo::m_useUserOverride
bool ___m_useUserOverride_9;
// System.Globalization.NumberFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::numInfo
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___numInfo_10;
// System.Globalization.DateTimeFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::dateTimeInfo
DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dateTimeInfo_11;
// System.Globalization.TextInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::textInfo
TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * ___textInfo_12;
// System.String System.Globalization.CultureInfo::m_name
String_t* ___m_name_13;
// System.String System.Globalization.CultureInfo::englishname
String_t* ___englishname_14;
// System.String System.Globalization.CultureInfo::nativename
String_t* ___nativename_15;
// System.String System.Globalization.CultureInfo::iso3lang
String_t* ___iso3lang_16;
// System.String System.Globalization.CultureInfo::iso2lang
String_t* ___iso2lang_17;
// System.String System.Globalization.CultureInfo::win3lang
String_t* ___win3lang_18;
// System.String System.Globalization.CultureInfo::territory
String_t* ___territory_19;
// System.String[] System.Globalization.CultureInfo::native_calendar_names
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___native_calendar_names_20;
// System.Globalization.CompareInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::compareInfo
CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * ___compareInfo_21;
// System.Void* System.Globalization.CultureInfo::textinfo_data
void* ___textinfo_data_22;
// System.Int32 System.Globalization.CultureInfo::m_dataItem
int32_t ___m_dataItem_23;
// System.Globalization.Calendar System.Globalization.CultureInfo::calendar
Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * ___calendar_24;
// System.Globalization.CultureInfo System.Globalization.CultureInfo::parent_culture
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___parent_culture_25;
// System.Boolean System.Globalization.CultureInfo::constructed
bool ___constructed_26;
// System.Byte[] System.Globalization.CultureInfo::cached_serialized_form
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___cached_serialized_form_27;
// System.Globalization.CultureData System.Globalization.CultureInfo::m_cultureData
CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD * ___m_cultureData_28;
// System.Boolean System.Globalization.CultureInfo::m_isInherited
bool ___m_isInherited_29;
public:
inline static int32_t get_offset_of_m_isReadOnly_3() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___m_isReadOnly_3)); }
inline bool get_m_isReadOnly_3() const { return ___m_isReadOnly_3; }
inline bool* get_address_of_m_isReadOnly_3() { return &___m_isReadOnly_3; }
inline void set_m_isReadOnly_3(bool value)
{
___m_isReadOnly_3 = value;
}
inline static int32_t get_offset_of_cultureID_4() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___cultureID_4)); }
inline int32_t get_cultureID_4() const { return ___cultureID_4; }
inline int32_t* get_address_of_cultureID_4() { return &___cultureID_4; }
inline void set_cultureID_4(int32_t value)
{
___cultureID_4 = value;
}
inline static int32_t get_offset_of_parent_lcid_5() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___parent_lcid_5)); }
inline int32_t get_parent_lcid_5() const { return ___parent_lcid_5; }
inline int32_t* get_address_of_parent_lcid_5() { return &___parent_lcid_5; }
inline void set_parent_lcid_5(int32_t value)
{
___parent_lcid_5 = value;
}
inline static int32_t get_offset_of_datetime_index_6() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___datetime_index_6)); }
inline int32_t get_datetime_index_6() const { return ___datetime_index_6; }
inline int32_t* get_address_of_datetime_index_6() { return &___datetime_index_6; }
inline void set_datetime_index_6(int32_t value)
{
___datetime_index_6 = value;
}
inline static int32_t get_offset_of_number_index_7() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___number_index_7)); }
inline int32_t get_number_index_7() const { return ___number_index_7; }
inline int32_t* get_address_of_number_index_7() { return &___number_index_7; }
inline void set_number_index_7(int32_t value)
{
___number_index_7 = value;
}
inline static int32_t get_offset_of_default_calendar_type_8() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___default_calendar_type_8)); }
inline int32_t get_default_calendar_type_8() const { return ___default_calendar_type_8; }
inline int32_t* get_address_of_default_calendar_type_8() { return &___default_calendar_type_8; }
inline void set_default_calendar_type_8(int32_t value)
{
___default_calendar_type_8 = value;
}
inline static int32_t get_offset_of_m_useUserOverride_9() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___m_useUserOverride_9)); }
inline bool get_m_useUserOverride_9() const { return ___m_useUserOverride_9; }
inline bool* get_address_of_m_useUserOverride_9() { return &___m_useUserOverride_9; }
inline void set_m_useUserOverride_9(bool value)
{
___m_useUserOverride_9 = value;
}
inline static int32_t get_offset_of_numInfo_10() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___numInfo_10)); }
inline NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * get_numInfo_10() const { return ___numInfo_10; }
inline NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 ** get_address_of_numInfo_10() { return &___numInfo_10; }
inline void set_numInfo_10(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * value)
{
___numInfo_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___numInfo_10), (void*)value);
}
inline static int32_t get_offset_of_dateTimeInfo_11() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___dateTimeInfo_11)); }
inline DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * get_dateTimeInfo_11() const { return ___dateTimeInfo_11; }
inline DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F ** get_address_of_dateTimeInfo_11() { return &___dateTimeInfo_11; }
inline void set_dateTimeInfo_11(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * value)
{
___dateTimeInfo_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___dateTimeInfo_11), (void*)value);
}
inline static int32_t get_offset_of_textInfo_12() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___textInfo_12)); }
inline TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * get_textInfo_12() const { return ___textInfo_12; }
inline TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 ** get_address_of_textInfo_12() { return &___textInfo_12; }
inline void set_textInfo_12(TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * value)
{
___textInfo_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___textInfo_12), (void*)value);
}
inline static int32_t get_offset_of_m_name_13() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___m_name_13)); }
inline String_t* get_m_name_13() const { return ___m_name_13; }
inline String_t** get_address_of_m_name_13() { return &___m_name_13; }
inline void set_m_name_13(String_t* value)
{
___m_name_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_name_13), (void*)value);
}
inline static int32_t get_offset_of_englishname_14() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___englishname_14)); }
inline String_t* get_englishname_14() const { return ___englishname_14; }
inline String_t** get_address_of_englishname_14() { return &___englishname_14; }
inline void set_englishname_14(String_t* value)
{
___englishname_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___englishname_14), (void*)value);
}
inline static int32_t get_offset_of_nativename_15() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___nativename_15)); }
inline String_t* get_nativename_15() const { return ___nativename_15; }
inline String_t** get_address_of_nativename_15() { return &___nativename_15; }
inline void set_nativename_15(String_t* value)
{
___nativename_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___nativename_15), (void*)value);
}
inline static int32_t get_offset_of_iso3lang_16() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___iso3lang_16)); }
inline String_t* get_iso3lang_16() const { return ___iso3lang_16; }
inline String_t** get_address_of_iso3lang_16() { return &___iso3lang_16; }
inline void set_iso3lang_16(String_t* value)
{
___iso3lang_16 = value;
Il2CppCodeGenWriteBarrier((void**)(&___iso3lang_16), (void*)value);
}
inline static int32_t get_offset_of_iso2lang_17() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___iso2lang_17)); }
inline String_t* get_iso2lang_17() const { return ___iso2lang_17; }
inline String_t** get_address_of_iso2lang_17() { return &___iso2lang_17; }
inline void set_iso2lang_17(String_t* value)
{
___iso2lang_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&___iso2lang_17), (void*)value);
}
inline static int32_t get_offset_of_win3lang_18() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___win3lang_18)); }
inline String_t* get_win3lang_18() const { return ___win3lang_18; }
inline String_t** get_address_of_win3lang_18() { return &___win3lang_18; }
inline void set_win3lang_18(String_t* value)
{
___win3lang_18 = value;
Il2CppCodeGenWriteBarrier((void**)(&___win3lang_18), (void*)value);
}
inline static int32_t get_offset_of_territory_19() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___territory_19)); }
inline String_t* get_territory_19() const { return ___territory_19; }
inline String_t** get_address_of_territory_19() { return &___territory_19; }
inline void set_territory_19(String_t* value)
{
___territory_19 = value;
Il2CppCodeGenWriteBarrier((void**)(&___territory_19), (void*)value);
}
inline static int32_t get_offset_of_native_calendar_names_20() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___native_calendar_names_20)); }
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_native_calendar_names_20() const { return ___native_calendar_names_20; }
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_native_calendar_names_20() { return &___native_calendar_names_20; }
inline void set_native_calendar_names_20(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value)
{
___native_calendar_names_20 = value;
Il2CppCodeGenWriteBarrier((void**)(&___native_calendar_names_20), (void*)value);
}
inline static int32_t get_offset_of_compareInfo_21() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___compareInfo_21)); }
inline CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * get_compareInfo_21() const { return ___compareInfo_21; }
inline CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 ** get_address_of_compareInfo_21() { return &___compareInfo_21; }
inline void set_compareInfo_21(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * value)
{
___compareInfo_21 = value;
Il2CppCodeGenWriteBarrier((void**)(&___compareInfo_21), (void*)value);
}
inline static int32_t get_offset_of_textinfo_data_22() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___textinfo_data_22)); }
inline void* get_textinfo_data_22() const { return ___textinfo_data_22; }
inline void** get_address_of_textinfo_data_22() { return &___textinfo_data_22; }
inline void set_textinfo_data_22(void* value)
{
___textinfo_data_22 = value;
}
inline static int32_t get_offset_of_m_dataItem_23() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___m_dataItem_23)); }
inline int32_t get_m_dataItem_23() const { return ___m_dataItem_23; }
inline int32_t* get_address_of_m_dataItem_23() { return &___m_dataItem_23; }
inline void set_m_dataItem_23(int32_t value)
{
___m_dataItem_23 = value;
}
inline static int32_t get_offset_of_calendar_24() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___calendar_24)); }
inline Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * get_calendar_24() const { return ___calendar_24; }
inline Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 ** get_address_of_calendar_24() { return &___calendar_24; }
inline void set_calendar_24(Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * value)
{
___calendar_24 = value;
Il2CppCodeGenWriteBarrier((void**)(&___calendar_24), (void*)value);
}
inline static int32_t get_offset_of_parent_culture_25() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___parent_culture_25)); }
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_parent_culture_25() const { return ___parent_culture_25; }
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_parent_culture_25() { return &___parent_culture_25; }
inline void set_parent_culture_25(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value)
{
___parent_culture_25 = value;
Il2CppCodeGenWriteBarrier((void**)(&___parent_culture_25), (void*)value);
}
inline static int32_t get_offset_of_constructed_26() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___constructed_26)); }
inline bool get_constructed_26() const { return ___constructed_26; }
inline bool* get_address_of_constructed_26() { return &___constructed_26; }
inline void set_constructed_26(bool value)
{
___constructed_26 = value;
}
inline static int32_t get_offset_of_cached_serialized_form_27() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___cached_serialized_form_27)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_cached_serialized_form_27() const { return ___cached_serialized_form_27; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_cached_serialized_form_27() { return &___cached_serialized_form_27; }
inline void set_cached_serialized_form_27(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___cached_serialized_form_27 = value;
Il2CppCodeGenWriteBarrier((void**)(&___cached_serialized_form_27), (void*)value);
}
inline static int32_t get_offset_of_m_cultureData_28() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___m_cultureData_28)); }
inline CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD * get_m_cultureData_28() const { return ___m_cultureData_28; }
inline CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD ** get_address_of_m_cultureData_28() { return &___m_cultureData_28; }
inline void set_m_cultureData_28(CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD * value)
{
___m_cultureData_28 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_cultureData_28), (void*)value);
}
inline static int32_t get_offset_of_m_isInherited_29() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___m_isInherited_29)); }
inline bool get_m_isInherited_29() const { return ___m_isInherited_29; }
inline bool* get_address_of_m_isInherited_29() { return &___m_isInherited_29; }
inline void set_m_isInherited_29(bool value)
{
___m_isInherited_29 = value;
}
};
struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields
{
public:
// System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::invariant_culture_info
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___invariant_culture_info_0;
// System.Object System.Globalization.CultureInfo::shared_table_lock
RuntimeObject * ___shared_table_lock_1;
// System.Globalization.CultureInfo System.Globalization.CultureInfo::default_current_culture
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___default_current_culture_2;
// System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::s_DefaultThreadCurrentUICulture
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___s_DefaultThreadCurrentUICulture_33;
// System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::s_DefaultThreadCurrentCulture
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___s_DefaultThreadCurrentCulture_34;
// System.Collections.Generic.Dictionary`2<System.Int32,System.Globalization.CultureInfo> System.Globalization.CultureInfo::shared_by_number
Dictionary_2_tC88A56872F7C79DBB9582D4F3FC22ED5D8E0B98B * ___shared_by_number_35;
// System.Collections.Generic.Dictionary`2<System.String,System.Globalization.CultureInfo> System.Globalization.CultureInfo::shared_by_name
Dictionary_2_tBA5388DBB42BF620266F9A48E8B859BBBB224E25 * ___shared_by_name_36;
// System.Boolean System.Globalization.CultureInfo::IsTaiwanSku
bool ___IsTaiwanSku_37;
public:
inline static int32_t get_offset_of_invariant_culture_info_0() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___invariant_culture_info_0)); }
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_invariant_culture_info_0() const { return ___invariant_culture_info_0; }
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_invariant_culture_info_0() { return &___invariant_culture_info_0; }
inline void set_invariant_culture_info_0(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value)
{
___invariant_culture_info_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___invariant_culture_info_0), (void*)value);
}
inline static int32_t get_offset_of_shared_table_lock_1() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___shared_table_lock_1)); }
inline RuntimeObject * get_shared_table_lock_1() const { return ___shared_table_lock_1; }
inline RuntimeObject ** get_address_of_shared_table_lock_1() { return &___shared_table_lock_1; }
inline void set_shared_table_lock_1(RuntimeObject * value)
{
___shared_table_lock_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___shared_table_lock_1), (void*)value);
}
inline static int32_t get_offset_of_default_current_culture_2() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___default_current_culture_2)); }
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_default_current_culture_2() const { return ___default_current_culture_2; }
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_default_current_culture_2() { return &___default_current_culture_2; }
inline void set_default_current_culture_2(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value)
{
___default_current_culture_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___default_current_culture_2), (void*)value);
}
inline static int32_t get_offset_of_s_DefaultThreadCurrentUICulture_33() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___s_DefaultThreadCurrentUICulture_33)); }
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_s_DefaultThreadCurrentUICulture_33() const { return ___s_DefaultThreadCurrentUICulture_33; }
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_s_DefaultThreadCurrentUICulture_33() { return &___s_DefaultThreadCurrentUICulture_33; }
inline void set_s_DefaultThreadCurrentUICulture_33(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value)
{
___s_DefaultThreadCurrentUICulture_33 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_DefaultThreadCurrentUICulture_33), (void*)value);
}
inline static int32_t get_offset_of_s_DefaultThreadCurrentCulture_34() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___s_DefaultThreadCurrentCulture_34)); }
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_s_DefaultThreadCurrentCulture_34() const { return ___s_DefaultThreadCurrentCulture_34; }
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_s_DefaultThreadCurrentCulture_34() { return &___s_DefaultThreadCurrentCulture_34; }
inline void set_s_DefaultThreadCurrentCulture_34(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value)
{
___s_DefaultThreadCurrentCulture_34 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_DefaultThreadCurrentCulture_34), (void*)value);
}
inline static int32_t get_offset_of_shared_by_number_35() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___shared_by_number_35)); }
inline Dictionary_2_tC88A56872F7C79DBB9582D4F3FC22ED5D8E0B98B * get_shared_by_number_35() const { return ___shared_by_number_35; }
inline Dictionary_2_tC88A56872F7C79DBB9582D4F3FC22ED5D8E0B98B ** get_address_of_shared_by_number_35() { return &___shared_by_number_35; }
inline void set_shared_by_number_35(Dictionary_2_tC88A56872F7C79DBB9582D4F3FC22ED5D8E0B98B * value)
{
___shared_by_number_35 = value;
Il2CppCodeGenWriteBarrier((void**)(&___shared_by_number_35), (void*)value);
}
inline static int32_t get_offset_of_shared_by_name_36() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___shared_by_name_36)); }
inline Dictionary_2_tBA5388DBB42BF620266F9A48E8B859BBBB224E25 * get_shared_by_name_36() const { return ___shared_by_name_36; }
inline Dictionary_2_tBA5388DBB42BF620266F9A48E8B859BBBB224E25 ** get_address_of_shared_by_name_36() { return &___shared_by_name_36; }
inline void set_shared_by_name_36(Dictionary_2_tBA5388DBB42BF620266F9A48E8B859BBBB224E25 * value)
{
___shared_by_name_36 = value;
Il2CppCodeGenWriteBarrier((void**)(&___shared_by_name_36), (void*)value);
}
inline static int32_t get_offset_of_IsTaiwanSku_37() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___IsTaiwanSku_37)); }
inline bool get_IsTaiwanSku_37() const { return ___IsTaiwanSku_37; }
inline bool* get_address_of_IsTaiwanSku_37() { return &___IsTaiwanSku_37; }
inline void set_IsTaiwanSku_37(bool value)
{
___IsTaiwanSku_37 = value;
}
};
// Native definition for P/Invoke marshalling of System.Globalization.CultureInfo
struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_pinvoke
{
int32_t ___m_isReadOnly_3;
int32_t ___cultureID_4;
int32_t ___parent_lcid_5;
int32_t ___datetime_index_6;
int32_t ___number_index_7;
int32_t ___default_calendar_type_8;
int32_t ___m_useUserOverride_9;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___numInfo_10;
DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dateTimeInfo_11;
TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * ___textInfo_12;
char* ___m_name_13;
char* ___englishname_14;
char* ___nativename_15;
char* ___iso3lang_16;
char* ___iso2lang_17;
char* ___win3lang_18;
char* ___territory_19;
char** ___native_calendar_names_20;
CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * ___compareInfo_21;
void* ___textinfo_data_22;
int32_t ___m_dataItem_23;
Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * ___calendar_24;
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_pinvoke* ___parent_culture_25;
int32_t ___constructed_26;
Il2CppSafeArray/*NONE*/* ___cached_serialized_form_27;
CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD_marshaled_pinvoke* ___m_cultureData_28;
int32_t ___m_isInherited_29;
};
// Native definition for COM marshalling of System.Globalization.CultureInfo
struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_com
{
int32_t ___m_isReadOnly_3;
int32_t ___cultureID_4;
int32_t ___parent_lcid_5;
int32_t ___datetime_index_6;
int32_t ___number_index_7;
int32_t ___default_calendar_type_8;
int32_t ___m_useUserOverride_9;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___numInfo_10;
DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dateTimeInfo_11;
TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * ___textInfo_12;
Il2CppChar* ___m_name_13;
Il2CppChar* ___englishname_14;
Il2CppChar* ___nativename_15;
Il2CppChar* ___iso3lang_16;
Il2CppChar* ___iso2lang_17;
Il2CppChar* ___win3lang_18;
Il2CppChar* ___territory_19;
Il2CppChar** ___native_calendar_names_20;
CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * ___compareInfo_21;
void* ___textinfo_data_22;
int32_t ___m_dataItem_23;
Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * ___calendar_24;
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_com* ___parent_culture_25;
int32_t ___constructed_26;
Il2CppSafeArray/*NONE*/* ___cached_serialized_form_27;
CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD_marshaled_com* ___m_cultureData_28;
int32_t ___m_isInherited_29;
};
// System.Reflection.MemberInfo
struct MemberInfo_t : public RuntimeObject
{
public:
public:
};
// System.Security.Cryptography.AsymmetricAlgorithm
struct AsymmetricAlgorithm_t9F811260245370BD8786A849DBF9F8054F97F4CB : public RuntimeObject
{
public:
// System.Int32 System.Security.Cryptography.AsymmetricAlgorithm::KeySizeValue
int32_t ___KeySizeValue_0;
// System.Security.Cryptography.KeySizes[] System.Security.Cryptography.AsymmetricAlgorithm::LegalKeySizesValue
KeySizesU5BU5D_t934CCA482596402177BAF86727F169872D74934E* ___LegalKeySizesValue_1;
public:
inline static int32_t get_offset_of_KeySizeValue_0() { return static_cast<int32_t>(offsetof(AsymmetricAlgorithm_t9F811260245370BD8786A849DBF9F8054F97F4CB, ___KeySizeValue_0)); }
inline int32_t get_KeySizeValue_0() const { return ___KeySizeValue_0; }
inline int32_t* get_address_of_KeySizeValue_0() { return &___KeySizeValue_0; }
inline void set_KeySizeValue_0(int32_t value)
{
___KeySizeValue_0 = value;
}
inline static int32_t get_offset_of_LegalKeySizesValue_1() { return static_cast<int32_t>(offsetof(AsymmetricAlgorithm_t9F811260245370BD8786A849DBF9F8054F97F4CB, ___LegalKeySizesValue_1)); }
inline KeySizesU5BU5D_t934CCA482596402177BAF86727F169872D74934E* get_LegalKeySizesValue_1() const { return ___LegalKeySizesValue_1; }
inline KeySizesU5BU5D_t934CCA482596402177BAF86727F169872D74934E** get_address_of_LegalKeySizesValue_1() { return &___LegalKeySizesValue_1; }
inline void set_LegalKeySizesValue_1(KeySizesU5BU5D_t934CCA482596402177BAF86727F169872D74934E* value)
{
___LegalKeySizesValue_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___LegalKeySizesValue_1), (void*)value);
}
};
// System.Security.Cryptography.CspParameters
struct CspParameters_t7DDB44526A2A9693723C2FA915D9DCF2848998C7 : public RuntimeObject
{
public:
// System.Int32 System.Security.Cryptography.CspParameters::ProviderType
int32_t ___ProviderType_0;
// System.String System.Security.Cryptography.CspParameters::ProviderName
String_t* ___ProviderName_1;
// System.String System.Security.Cryptography.CspParameters::KeyContainerName
String_t* ___KeyContainerName_2;
// System.Int32 System.Security.Cryptography.CspParameters::KeyNumber
int32_t ___KeyNumber_3;
// System.Int32 System.Security.Cryptography.CspParameters::m_flags
int32_t ___m_flags_4;
public:
inline static int32_t get_offset_of_ProviderType_0() { return static_cast<int32_t>(offsetof(CspParameters_t7DDB44526A2A9693723C2FA915D9DCF2848998C7, ___ProviderType_0)); }
inline int32_t get_ProviderType_0() const { return ___ProviderType_0; }
inline int32_t* get_address_of_ProviderType_0() { return &___ProviderType_0; }
inline void set_ProviderType_0(int32_t value)
{
___ProviderType_0 = value;
}
inline static int32_t get_offset_of_ProviderName_1() { return static_cast<int32_t>(offsetof(CspParameters_t7DDB44526A2A9693723C2FA915D9DCF2848998C7, ___ProviderName_1)); }
inline String_t* get_ProviderName_1() const { return ___ProviderName_1; }
inline String_t** get_address_of_ProviderName_1() { return &___ProviderName_1; }
inline void set_ProviderName_1(String_t* value)
{
___ProviderName_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ProviderName_1), (void*)value);
}
inline static int32_t get_offset_of_KeyContainerName_2() { return static_cast<int32_t>(offsetof(CspParameters_t7DDB44526A2A9693723C2FA915D9DCF2848998C7, ___KeyContainerName_2)); }
inline String_t* get_KeyContainerName_2() const { return ___KeyContainerName_2; }
inline String_t** get_address_of_KeyContainerName_2() { return &___KeyContainerName_2; }
inline void set_KeyContainerName_2(String_t* value)
{
___KeyContainerName_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___KeyContainerName_2), (void*)value);
}
inline static int32_t get_offset_of_KeyNumber_3() { return static_cast<int32_t>(offsetof(CspParameters_t7DDB44526A2A9693723C2FA915D9DCF2848998C7, ___KeyNumber_3)); }
inline int32_t get_KeyNumber_3() const { return ___KeyNumber_3; }
inline int32_t* get_address_of_KeyNumber_3() { return &___KeyNumber_3; }
inline void set_KeyNumber_3(int32_t value)
{
___KeyNumber_3 = value;
}
inline static int32_t get_offset_of_m_flags_4() { return static_cast<int32_t>(offsetof(CspParameters_t7DDB44526A2A9693723C2FA915D9DCF2848998C7, ___m_flags_4)); }
inline int32_t get_m_flags_4() const { return ___m_flags_4; }
inline int32_t* get_address_of_m_flags_4() { return &___m_flags_4; }
inline void set_m_flags_4(int32_t value)
{
___m_flags_4 = value;
}
};
// System.Security.Cryptography.HashAlgorithm
struct HashAlgorithm_t65659695B16C0BBF05707BF45191A97DC156D6BA : public RuntimeObject
{
public:
// System.Int32 System.Security.Cryptography.HashAlgorithm::HashSizeValue
int32_t ___HashSizeValue_0;
// System.Byte[] System.Security.Cryptography.HashAlgorithm::HashValue
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___HashValue_1;
// System.Int32 System.Security.Cryptography.HashAlgorithm::State
int32_t ___State_2;
// System.Boolean System.Security.Cryptography.HashAlgorithm::m_bDisposed
bool ___m_bDisposed_3;
public:
inline static int32_t get_offset_of_HashSizeValue_0() { return static_cast<int32_t>(offsetof(HashAlgorithm_t65659695B16C0BBF05707BF45191A97DC156D6BA, ___HashSizeValue_0)); }
inline int32_t get_HashSizeValue_0() const { return ___HashSizeValue_0; }
inline int32_t* get_address_of_HashSizeValue_0() { return &___HashSizeValue_0; }
inline void set_HashSizeValue_0(int32_t value)
{
___HashSizeValue_0 = value;
}
inline static int32_t get_offset_of_HashValue_1() { return static_cast<int32_t>(offsetof(HashAlgorithm_t65659695B16C0BBF05707BF45191A97DC156D6BA, ___HashValue_1)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_HashValue_1() const { return ___HashValue_1; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_HashValue_1() { return &___HashValue_1; }
inline void set_HashValue_1(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___HashValue_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___HashValue_1), (void*)value);
}
inline static int32_t get_offset_of_State_2() { return static_cast<int32_t>(offsetof(HashAlgorithm_t65659695B16C0BBF05707BF45191A97DC156D6BA, ___State_2)); }
inline int32_t get_State_2() const { return ___State_2; }
inline int32_t* get_address_of_State_2() { return &___State_2; }
inline void set_State_2(int32_t value)
{
___State_2 = value;
}
inline static int32_t get_offset_of_m_bDisposed_3() { return static_cast<int32_t>(offsetof(HashAlgorithm_t65659695B16C0BBF05707BF45191A97DC156D6BA, ___m_bDisposed_3)); }
inline bool get_m_bDisposed_3() const { return ___m_bDisposed_3; }
inline bool* get_address_of_m_bDisposed_3() { return &___m_bDisposed_3; }
inline void set_m_bDisposed_3(bool value)
{
___m_bDisposed_3 = value;
}
};
// System.Security.Cryptography.RandomNumberGenerator
struct RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 : public RuntimeObject
{
public:
public:
};
// System.Security.Cryptography.X509Certificates.X509Certificate
struct X509Certificate_t6859B8914E252B6831D6F59A2A720CD23F7FA7B2 : public RuntimeObject
{
public:
// System.Security.Cryptography.X509Certificates.X509CertificateImpl System.Security.Cryptography.X509Certificates.X509Certificate::impl
X509CertificateImpl_t89610BFDE87B872143A4623CFC7F17275EB48313 * ___impl_0;
// System.Boolean System.Security.Cryptography.X509Certificates.X509Certificate::hideDates
bool ___hideDates_1;
// System.String System.Security.Cryptography.X509Certificates.X509Certificate::issuer_name
String_t* ___issuer_name_2;
// System.String System.Security.Cryptography.X509Certificates.X509Certificate::subject_name
String_t* ___subject_name_3;
public:
inline static int32_t get_offset_of_impl_0() { return static_cast<int32_t>(offsetof(X509Certificate_t6859B8914E252B6831D6F59A2A720CD23F7FA7B2, ___impl_0)); }
inline X509CertificateImpl_t89610BFDE87B872143A4623CFC7F17275EB48313 * get_impl_0() const { return ___impl_0; }
inline X509CertificateImpl_t89610BFDE87B872143A4623CFC7F17275EB48313 ** get_address_of_impl_0() { return &___impl_0; }
inline void set_impl_0(X509CertificateImpl_t89610BFDE87B872143A4623CFC7F17275EB48313 * value)
{
___impl_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___impl_0), (void*)value);
}
inline static int32_t get_offset_of_hideDates_1() { return static_cast<int32_t>(offsetof(X509Certificate_t6859B8914E252B6831D6F59A2A720CD23F7FA7B2, ___hideDates_1)); }
inline bool get_hideDates_1() const { return ___hideDates_1; }
inline bool* get_address_of_hideDates_1() { return &___hideDates_1; }
inline void set_hideDates_1(bool value)
{
___hideDates_1 = value;
}
inline static int32_t get_offset_of_issuer_name_2() { return static_cast<int32_t>(offsetof(X509Certificate_t6859B8914E252B6831D6F59A2A720CD23F7FA7B2, ___issuer_name_2)); }
inline String_t* get_issuer_name_2() const { return ___issuer_name_2; }
inline String_t** get_address_of_issuer_name_2() { return &___issuer_name_2; }
inline void set_issuer_name_2(String_t* value)
{
___issuer_name_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___issuer_name_2), (void*)value);
}
inline static int32_t get_offset_of_subject_name_3() { return static_cast<int32_t>(offsetof(X509Certificate_t6859B8914E252B6831D6F59A2A720CD23F7FA7B2, ___subject_name_3)); }
inline String_t* get_subject_name_3() const { return ___subject_name_3; }
inline String_t** get_address_of_subject_name_3() { return &___subject_name_3; }
inline void set_subject_name_3(String_t* value)
{
___subject_name_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___subject_name_3), (void*)value);
}
};
// System.Security.Cryptography.X509Certificates.X509Chain
struct X509Chain_t4A28E9A30CBB331C9B68AE4AFCB30625C6C8B538 : public RuntimeObject
{
public:
// System.Security.Cryptography.X509Certificates.X509ChainImpl System.Security.Cryptography.X509Certificates.X509Chain::impl
X509ChainImpl_t34FABF07BEA0CFB6D88717BCDDE0607D9DA13A67 * ___impl_0;
public:
inline static int32_t get_offset_of_impl_0() { return static_cast<int32_t>(offsetof(X509Chain_t4A28E9A30CBB331C9B68AE4AFCB30625C6C8B538, ___impl_0)); }
inline X509ChainImpl_t34FABF07BEA0CFB6D88717BCDDE0607D9DA13A67 * get_impl_0() const { return ___impl_0; }
inline X509ChainImpl_t34FABF07BEA0CFB6D88717BCDDE0607D9DA13A67 ** get_address_of_impl_0() { return &___impl_0; }
inline void set_impl_0(X509ChainImpl_t34FABF07BEA0CFB6D88717BCDDE0607D9DA13A67 * value)
{
___impl_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___impl_0), (void*)value);
}
};
// 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((void**)(&___Empty_5), (void*)value);
}
};
// System.Text.Encoding
struct Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 : public RuntimeObject
{
public:
// System.Int32 System.Text.Encoding::m_codePage
int32_t ___m_codePage_9;
// System.Globalization.CodePageDataItem System.Text.Encoding::dataItem
CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB * ___dataItem_10;
// System.Boolean System.Text.Encoding::m_deserializedFromEverett
bool ___m_deserializedFromEverett_11;
// System.Boolean System.Text.Encoding::m_isReadOnly
bool ___m_isReadOnly_12;
// System.Text.EncoderFallback System.Text.Encoding::encoderFallback
EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * ___encoderFallback_13;
// System.Text.DecoderFallback System.Text.Encoding::decoderFallback
DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * ___decoderFallback_14;
public:
inline static int32_t get_offset_of_m_codePage_9() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___m_codePage_9)); }
inline int32_t get_m_codePage_9() const { return ___m_codePage_9; }
inline int32_t* get_address_of_m_codePage_9() { return &___m_codePage_9; }
inline void set_m_codePage_9(int32_t value)
{
___m_codePage_9 = value;
}
inline static int32_t get_offset_of_dataItem_10() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___dataItem_10)); }
inline CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB * get_dataItem_10() const { return ___dataItem_10; }
inline CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB ** get_address_of_dataItem_10() { return &___dataItem_10; }
inline void set_dataItem_10(CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB * value)
{
___dataItem_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___dataItem_10), (void*)value);
}
inline static int32_t get_offset_of_m_deserializedFromEverett_11() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___m_deserializedFromEverett_11)); }
inline bool get_m_deserializedFromEverett_11() const { return ___m_deserializedFromEverett_11; }
inline bool* get_address_of_m_deserializedFromEverett_11() { return &___m_deserializedFromEverett_11; }
inline void set_m_deserializedFromEverett_11(bool value)
{
___m_deserializedFromEverett_11 = value;
}
inline static int32_t get_offset_of_m_isReadOnly_12() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___m_isReadOnly_12)); }
inline bool get_m_isReadOnly_12() const { return ___m_isReadOnly_12; }
inline bool* get_address_of_m_isReadOnly_12() { return &___m_isReadOnly_12; }
inline void set_m_isReadOnly_12(bool value)
{
___m_isReadOnly_12 = value;
}
inline static int32_t get_offset_of_encoderFallback_13() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___encoderFallback_13)); }
inline EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * get_encoderFallback_13() const { return ___encoderFallback_13; }
inline EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 ** get_address_of_encoderFallback_13() { return &___encoderFallback_13; }
inline void set_encoderFallback_13(EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * value)
{
___encoderFallback_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___encoderFallback_13), (void*)value);
}
inline static int32_t get_offset_of_decoderFallback_14() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___decoderFallback_14)); }
inline DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * get_decoderFallback_14() const { return ___decoderFallback_14; }
inline DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 ** get_address_of_decoderFallback_14() { return &___decoderFallback_14; }
inline void set_decoderFallback_14(DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * value)
{
___decoderFallback_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___decoderFallback_14), (void*)value);
}
};
struct Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields
{
public:
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::defaultEncoding
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___defaultEncoding_0;
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::unicodeEncoding
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___unicodeEncoding_1;
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::bigEndianUnicode
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___bigEndianUnicode_2;
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf7Encoding
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___utf7Encoding_3;
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf8Encoding
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___utf8Encoding_4;
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf32Encoding
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___utf32Encoding_5;
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::asciiEncoding
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___asciiEncoding_6;
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::latin1Encoding
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___latin1Encoding_7;
// System.Collections.Hashtable modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::encodings
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ___encodings_8;
// System.Object System.Text.Encoding::s_InternalSyncObject
RuntimeObject * ___s_InternalSyncObject_15;
public:
inline static int32_t get_offset_of_defaultEncoding_0() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___defaultEncoding_0)); }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_defaultEncoding_0() const { return ___defaultEncoding_0; }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_defaultEncoding_0() { return &___defaultEncoding_0; }
inline void set_defaultEncoding_0(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value)
{
___defaultEncoding_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultEncoding_0), (void*)value);
}
inline static int32_t get_offset_of_unicodeEncoding_1() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___unicodeEncoding_1)); }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_unicodeEncoding_1() const { return ___unicodeEncoding_1; }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_unicodeEncoding_1() { return &___unicodeEncoding_1; }
inline void set_unicodeEncoding_1(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value)
{
___unicodeEncoding_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___unicodeEncoding_1), (void*)value);
}
inline static int32_t get_offset_of_bigEndianUnicode_2() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___bigEndianUnicode_2)); }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_bigEndianUnicode_2() const { return ___bigEndianUnicode_2; }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_bigEndianUnicode_2() { return &___bigEndianUnicode_2; }
inline void set_bigEndianUnicode_2(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value)
{
___bigEndianUnicode_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___bigEndianUnicode_2), (void*)value);
}
inline static int32_t get_offset_of_utf7Encoding_3() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___utf7Encoding_3)); }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_utf7Encoding_3() const { return ___utf7Encoding_3; }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_utf7Encoding_3() { return &___utf7Encoding_3; }
inline void set_utf7Encoding_3(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value)
{
___utf7Encoding_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___utf7Encoding_3), (void*)value);
}
inline static int32_t get_offset_of_utf8Encoding_4() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___utf8Encoding_4)); }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_utf8Encoding_4() const { return ___utf8Encoding_4; }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_utf8Encoding_4() { return &___utf8Encoding_4; }
inline void set_utf8Encoding_4(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value)
{
___utf8Encoding_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___utf8Encoding_4), (void*)value);
}
inline static int32_t get_offset_of_utf32Encoding_5() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___utf32Encoding_5)); }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_utf32Encoding_5() const { return ___utf32Encoding_5; }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_utf32Encoding_5() { return &___utf32Encoding_5; }
inline void set_utf32Encoding_5(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value)
{
___utf32Encoding_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___utf32Encoding_5), (void*)value);
}
inline static int32_t get_offset_of_asciiEncoding_6() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___asciiEncoding_6)); }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_asciiEncoding_6() const { return ___asciiEncoding_6; }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_asciiEncoding_6() { return &___asciiEncoding_6; }
inline void set_asciiEncoding_6(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value)
{
___asciiEncoding_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___asciiEncoding_6), (void*)value);
}
inline static int32_t get_offset_of_latin1Encoding_7() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___latin1Encoding_7)); }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_latin1Encoding_7() const { return ___latin1Encoding_7; }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_latin1Encoding_7() { return &___latin1Encoding_7; }
inline void set_latin1Encoding_7(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value)
{
___latin1Encoding_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___latin1Encoding_7), (void*)value);
}
inline static int32_t get_offset_of_encodings_8() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___encodings_8)); }
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * get_encodings_8() const { return ___encodings_8; }
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 ** get_address_of_encodings_8() { return &___encodings_8; }
inline void set_encodings_8(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * value)
{
___encodings_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___encodings_8), (void*)value);
}
inline static int32_t get_offset_of_s_InternalSyncObject_15() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___s_InternalSyncObject_15)); }
inline RuntimeObject * get_s_InternalSyncObject_15() const { return ___s_InternalSyncObject_15; }
inline RuntimeObject ** get_address_of_s_InternalSyncObject_15() { return &___s_InternalSyncObject_15; }
inline void set_s_InternalSyncObject_15(RuntimeObject * value)
{
___s_InternalSyncObject_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_InternalSyncObject_15), (void*)value);
}
};
// System.Text.StringBuilder
struct StringBuilder_t : public RuntimeObject
{
public:
// System.Char[] System.Text.StringBuilder::m_ChunkChars
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___m_ChunkChars_0;
// System.Text.StringBuilder System.Text.StringBuilder::m_ChunkPrevious
StringBuilder_t * ___m_ChunkPrevious_1;
// System.Int32 System.Text.StringBuilder::m_ChunkLength
int32_t ___m_ChunkLength_2;
// System.Int32 System.Text.StringBuilder::m_ChunkOffset
int32_t ___m_ChunkOffset_3;
// System.Int32 System.Text.StringBuilder::m_MaxCapacity
int32_t ___m_MaxCapacity_4;
public:
inline static int32_t get_offset_of_m_ChunkChars_0() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkChars_0)); }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_m_ChunkChars_0() const { return ___m_ChunkChars_0; }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_m_ChunkChars_0() { return &___m_ChunkChars_0; }
inline void set_m_ChunkChars_0(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
{
___m_ChunkChars_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ChunkChars_0), (void*)value);
}
inline static int32_t get_offset_of_m_ChunkPrevious_1() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkPrevious_1)); }
inline StringBuilder_t * get_m_ChunkPrevious_1() const { return ___m_ChunkPrevious_1; }
inline StringBuilder_t ** get_address_of_m_ChunkPrevious_1() { return &___m_ChunkPrevious_1; }
inline void set_m_ChunkPrevious_1(StringBuilder_t * value)
{
___m_ChunkPrevious_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ChunkPrevious_1), (void*)value);
}
inline static int32_t get_offset_of_m_ChunkLength_2() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkLength_2)); }
inline int32_t get_m_ChunkLength_2() const { return ___m_ChunkLength_2; }
inline int32_t* get_address_of_m_ChunkLength_2() { return &___m_ChunkLength_2; }
inline void set_m_ChunkLength_2(int32_t value)
{
___m_ChunkLength_2 = value;
}
inline static int32_t get_offset_of_m_ChunkOffset_3() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkOffset_3)); }
inline int32_t get_m_ChunkOffset_3() const { return ___m_ChunkOffset_3; }
inline int32_t* get_address_of_m_ChunkOffset_3() { return &___m_ChunkOffset_3; }
inline void set_m_ChunkOffset_3(int32_t value)
{
___m_ChunkOffset_3 = value;
}
inline static int32_t get_offset_of_m_MaxCapacity_4() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_MaxCapacity_4)); }
inline int32_t get_m_MaxCapacity_4() const { return ___m_MaxCapacity_4; }
inline int32_t* get_address_of_m_MaxCapacity_4() { return &___m_MaxCapacity_4; }
inline void set_m_MaxCapacity_4(int32_t value)
{
___m_MaxCapacity_4 = value;
}
};
// System.ValueType
struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF : public RuntimeObject
{
public:
public:
};
// Native definition for P/Invoke marshalling of System.ValueType
struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.ValueType
struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_marshaled_com
{
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D10
struct __StaticArrayInitTypeSizeU3D10_tA87C7E06DDCE3975CB99672F98A6AC23AD0D87A0
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D10_tA87C7E06DDCE3975CB99672F98A6AC23AD0D87A0__padding[10];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D14
struct __StaticArrayInitTypeSizeU3D14_t2293E0C6AC04C3ABC76C1B941A58194168C25109
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D14_t2293E0C6AC04C3ABC76C1B941A58194168C25109__padding[14];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D20
struct __StaticArrayInitTypeSizeU3D20_t45181D0C9A3626B505048EEE1AC441C18A377DBF
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D20_t45181D0C9A3626B505048EEE1AC441C18A377DBF__padding[20];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D256
struct __StaticArrayInitTypeSizeU3D256_t8BFCD627E5A35B5A739C81B9213D9B9A173DE667
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D256_t8BFCD627E5A35B5A739C81B9213D9B9A173DE667__padding[256];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D3
struct __StaticArrayInitTypeSizeU3D3_t83D19CF571199F638945B4CE7AC3EFBB12513428
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D3_t83D19CF571199F638945B4CE7AC3EFBB12513428__padding[3];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D3132
struct __StaticArrayInitTypeSizeU3D3132_t486168FFAE191756DEF1DBD0456C8C0AA26577B1
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D3132_t486168FFAE191756DEF1DBD0456C8C0AA26577B1__padding[3132];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D32
struct __StaticArrayInitTypeSizeU3D32_tB9E831F7CD5830D06525ABB45BC8517064237A2A
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D32_tB9E831F7CD5830D06525ABB45BC8517064237A2A__padding[32];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D48
struct __StaticArrayInitTypeSizeU3D48_t9F3D0EF2ACFB23A8C22DE5E03F835F1A400F8A52
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D48_t9F3D0EF2ACFB23A8C22DE5E03F835F1A400F8A52__padding[48];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D64
struct __StaticArrayInitTypeSizeU3D64_t7FDF3B8905F8D5A457AD7CA8FB6CB4F40AA78AF9
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D64_t7FDF3B8905F8D5A457AD7CA8FB6CB4F40AA78AF9__padding[64];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D9
struct __StaticArrayInitTypeSizeU3D9_t2B23599284B0D068CFDF7410ACB3027431B6FD94
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D9_t2B23599284B0D068CFDF7410ACB3027431B6FD94__padding[9];
};
public:
};
// Mono.Math.Prime.Generator.SequentialSearchPrimeGeneratorBase
struct SequentialSearchPrimeGeneratorBase_t051356406D15C0F3CCF38A685AB52DFC08B83360 : public PrimeGeneratorBase_tD86126CFDBC57352F37DE0964FFCF652C04D7059
{
public:
public:
};
// Mono.Security.Cryptography.MD2
struct MD2_tCAAEC1A28A3D0B9E8810B27E4840BEA399619442 : public HashAlgorithm_t65659695B16C0BBF05707BF45191A97DC156D6BA
{
public:
public:
};
// Mono.Security.Cryptography.MD4
struct MD4_t932C1DEA44D4B8650873251E88AA4096164BB380 : public HashAlgorithm_t65659695B16C0BBF05707BF45191A97DC156D6BA
{
public:
public:
};
// Mono.Security.X509.X509CertificateCollection
struct X509CertificateCollection_t423BA1B9FAA983BA745023994C648C6DAC3E5A1A : public CollectionBase_tF5D4583FF325726066A9803839A04E9C0084ED01
{
public:
public:
};
// System.Boolean
struct Boolean_tB53F6830F670160873277339AA58F15CAED4399C
{
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_tB53F6830F670160873277339AA58F15CAED4399C, ___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_tB53F6830F670160873277339AA58F15CAED4399C_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_tB53F6830F670160873277339AA58F15CAED4399C_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((void**)(&___TrueString_5), (void*)value);
}
inline static int32_t get_offset_of_FalseString_6() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_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((void**)(&___FalseString_6), (void*)value);
}
};
// System.Byte
struct Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07
{
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_tF87C579059BD4633E6840EBBBEEF899C6E33EF07, ___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;
}
};
// System.Char
struct Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9
{
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_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9, ___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_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_StaticFields
{
public:
// System.Byte[] System.Char::categoryForLatin1
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___categoryForLatin1_3;
public:
inline static int32_t get_offset_of_categoryForLatin1_3() { return static_cast<int32_t>(offsetof(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_StaticFields, ___categoryForLatin1_3)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_categoryForLatin1_3() const { return ___categoryForLatin1_3; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_categoryForLatin1_3() { return &___categoryForLatin1_3; }
inline void set_categoryForLatin1_3(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___categoryForLatin1_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___categoryForLatin1_3), (void*)value);
}
};
// System.DateTime
struct DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132
{
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_t349B7449FBAAFF4192636E2B7A07694DA9236132, ___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_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields
{
public:
// System.Int32[] System.DateTime::DaysToMonth365
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___DaysToMonth365_29;
// System.Int32[] System.DateTime::DaysToMonth366
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___DaysToMonth366_30;
// System.DateTime System.DateTime::MinValue
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___MinValue_31;
// System.DateTime System.DateTime::MaxValue
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___MaxValue_32;
public:
inline static int32_t get_offset_of_DaysToMonth365_29() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields, ___DaysToMonth365_29)); }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_DaysToMonth365_29() const { return ___DaysToMonth365_29; }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_DaysToMonth365_29() { return &___DaysToMonth365_29; }
inline void set_DaysToMonth365_29(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
{
___DaysToMonth365_29 = value;
Il2CppCodeGenWriteBarrier((void**)(&___DaysToMonth365_29), (void*)value);
}
inline static int32_t get_offset_of_DaysToMonth366_30() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields, ___DaysToMonth366_30)); }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_DaysToMonth366_30() const { return ___DaysToMonth366_30; }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_DaysToMonth366_30() { return &___DaysToMonth366_30; }
inline void set_DaysToMonth366_30(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
{
___DaysToMonth366_30 = value;
Il2CppCodeGenWriteBarrier((void**)(&___DaysToMonth366_30), (void*)value);
}
inline static int32_t get_offset_of_MinValue_31() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields, ___MinValue_31)); }
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 get_MinValue_31() const { return ___MinValue_31; }
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * get_address_of_MinValue_31() { return &___MinValue_31; }
inline void set_MinValue_31(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 value)
{
___MinValue_31 = value;
}
inline static int32_t get_offset_of_MaxValue_32() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields, ___MaxValue_32)); }
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 get_MaxValue_32() const { return ___MaxValue_32; }
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * get_address_of_MaxValue_32() { return &___MaxValue_32; }
inline void set_MaxValue_32(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 value)
{
___MaxValue_32 = value;
}
};
// System.Enum
struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521 : public ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF
{
public:
public:
};
struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_StaticFields
{
public:
// System.Char[] System.Enum::enumSeperatorCharArray
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___enumSeperatorCharArray_0;
public:
inline static int32_t get_offset_of_enumSeperatorCharArray_0() { return static_cast<int32_t>(offsetof(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_StaticFields, ___enumSeperatorCharArray_0)); }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_enumSeperatorCharArray_0() const { return ___enumSeperatorCharArray_0; }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_enumSeperatorCharArray_0() { return &___enumSeperatorCharArray_0; }
inline void set_enumSeperatorCharArray_0(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
{
___enumSeperatorCharArray_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___enumSeperatorCharArray_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Enum
struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.Enum
struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshaled_com
{
};
// System.Int16
struct Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D
{
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_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D, ___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;
}
};
// System.Int32
struct Int32_t585191389E07734F19F3156FF88FB3EF4800D102
{
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_t585191389E07734F19F3156FF88FB3EF4800D102, ___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;
}
};
// System.Int64
struct Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436
{
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_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, ___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;
}
};
// 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;
}
};
// System.Nullable`1<System.Boolean>
struct Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793
{
public:
// T System.Nullable`1::value
bool ___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_t9E6A67BECE376F0623B5C857F5674A0311C41793, ___value_0)); }
inline bool get_value_0() const { return ___value_0; }
inline bool* get_address_of_value_0() { return &___value_0; }
inline void set_value_0(bool value)
{
___value_0 = value;
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793, ___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;
}
};
// System.Security.Cryptography.DSA
struct DSA_t932F4A94DD2B782BFFC197544398826E6CDB64CF : public AsymmetricAlgorithm_t9F811260245370BD8786A849DBF9F8054F97F4CB
{
public:
public:
};
// System.Security.Cryptography.DSAParameters
struct DSAParameters_tCA1A96A151F47B1904693C457243E3B919425AC6
{
public:
// System.Byte[] System.Security.Cryptography.DSAParameters::P
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___P_0;
// System.Byte[] System.Security.Cryptography.DSAParameters::Q
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___Q_1;
// System.Byte[] System.Security.Cryptography.DSAParameters::G
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___G_2;
// System.Byte[] System.Security.Cryptography.DSAParameters::Y
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___Y_3;
// System.Byte[] System.Security.Cryptography.DSAParameters::J
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___J_4;
// System.Byte[] System.Security.Cryptography.DSAParameters::X
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___X_5;
// System.Byte[] System.Security.Cryptography.DSAParameters::Seed
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___Seed_6;
// System.Int32 System.Security.Cryptography.DSAParameters::Counter
int32_t ___Counter_7;
public:
inline static int32_t get_offset_of_P_0() { return static_cast<int32_t>(offsetof(DSAParameters_tCA1A96A151F47B1904693C457243E3B919425AC6, ___P_0)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_P_0() const { return ___P_0; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_P_0() { return &___P_0; }
inline void set_P_0(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___P_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___P_0), (void*)value);
}
inline static int32_t get_offset_of_Q_1() { return static_cast<int32_t>(offsetof(DSAParameters_tCA1A96A151F47B1904693C457243E3B919425AC6, ___Q_1)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_Q_1() const { return ___Q_1; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_Q_1() { return &___Q_1; }
inline void set_Q_1(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___Q_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Q_1), (void*)value);
}
inline static int32_t get_offset_of_G_2() { return static_cast<int32_t>(offsetof(DSAParameters_tCA1A96A151F47B1904693C457243E3B919425AC6, ___G_2)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_G_2() const { return ___G_2; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_G_2() { return &___G_2; }
inline void set_G_2(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___G_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___G_2), (void*)value);
}
inline static int32_t get_offset_of_Y_3() { return static_cast<int32_t>(offsetof(DSAParameters_tCA1A96A151F47B1904693C457243E3B919425AC6, ___Y_3)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_Y_3() const { return ___Y_3; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_Y_3() { return &___Y_3; }
inline void set_Y_3(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___Y_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Y_3), (void*)value);
}
inline static int32_t get_offset_of_J_4() { return static_cast<int32_t>(offsetof(DSAParameters_tCA1A96A151F47B1904693C457243E3B919425AC6, ___J_4)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_J_4() const { return ___J_4; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_J_4() { return &___J_4; }
inline void set_J_4(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___J_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___J_4), (void*)value);
}
inline static int32_t get_offset_of_X_5() { return static_cast<int32_t>(offsetof(DSAParameters_tCA1A96A151F47B1904693C457243E3B919425AC6, ___X_5)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_X_5() const { return ___X_5; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_X_5() { return &___X_5; }
inline void set_X_5(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___X_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___X_5), (void*)value);
}
inline static int32_t get_offset_of_Seed_6() { return static_cast<int32_t>(offsetof(DSAParameters_tCA1A96A151F47B1904693C457243E3B919425AC6, ___Seed_6)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_Seed_6() const { return ___Seed_6; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_Seed_6() { return &___Seed_6; }
inline void set_Seed_6(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___Seed_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Seed_6), (void*)value);
}
inline static int32_t get_offset_of_Counter_7() { return static_cast<int32_t>(offsetof(DSAParameters_tCA1A96A151F47B1904693C457243E3B919425AC6, ___Counter_7)); }
inline int32_t get_Counter_7() const { return ___Counter_7; }
inline int32_t* get_address_of_Counter_7() { return &___Counter_7; }
inline void set_Counter_7(int32_t value)
{
___Counter_7 = value;
}
};
// Native definition for P/Invoke marshalling of System.Security.Cryptography.DSAParameters
struct DSAParameters_tCA1A96A151F47B1904693C457243E3B919425AC6_marshaled_pinvoke
{
Il2CppSafeArray/*NONE*/* ___P_0;
Il2CppSafeArray/*NONE*/* ___Q_1;
Il2CppSafeArray/*NONE*/* ___G_2;
Il2CppSafeArray/*NONE*/* ___Y_3;
Il2CppSafeArray/*NONE*/* ___J_4;
Il2CppSafeArray/*NONE*/* ___X_5;
Il2CppSafeArray/*NONE*/* ___Seed_6;
int32_t ___Counter_7;
};
// Native definition for COM marshalling of System.Security.Cryptography.DSAParameters
struct DSAParameters_tCA1A96A151F47B1904693C457243E3B919425AC6_marshaled_com
{
Il2CppSafeArray/*NONE*/* ___P_0;
Il2CppSafeArray/*NONE*/* ___Q_1;
Il2CppSafeArray/*NONE*/* ___G_2;
Il2CppSafeArray/*NONE*/* ___Y_3;
Il2CppSafeArray/*NONE*/* ___J_4;
Il2CppSafeArray/*NONE*/* ___X_5;
Il2CppSafeArray/*NONE*/* ___Seed_6;
int32_t ___Counter_7;
};
// System.Security.Cryptography.KeyedHashAlgorithm
struct KeyedHashAlgorithm_t83CFA2CA5A4F0F39B747E61D013CB5EB919D218B : public HashAlgorithm_t65659695B16C0BBF05707BF45191A97DC156D6BA
{
public:
// System.Byte[] System.Security.Cryptography.KeyedHashAlgorithm::KeyValue
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___KeyValue_4;
public:
inline static int32_t get_offset_of_KeyValue_4() { return static_cast<int32_t>(offsetof(KeyedHashAlgorithm_t83CFA2CA5A4F0F39B747E61D013CB5EB919D218B, ___KeyValue_4)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_KeyValue_4() const { return ___KeyValue_4; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_KeyValue_4() { return &___KeyValue_4; }
inline void set_KeyValue_4(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___KeyValue_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___KeyValue_4), (void*)value);
}
};
// System.Security.Cryptography.MD5
struct MD5_tCED753745572EC20FE5D31D15F132736B5343EE6 : public HashAlgorithm_t65659695B16C0BBF05707BF45191A97DC156D6BA
{
public:
public:
};
// System.Security.Cryptography.RIPEMD160
struct RIPEMD160_t5BF1FB38C534BF0083B35AC6880867E11448EFE9 : public HashAlgorithm_t65659695B16C0BBF05707BF45191A97DC156D6BA
{
public:
public:
};
// System.Security.Cryptography.RSA
struct RSA_tB6C4B434B2AC02E3F8981DB2908C2018E251D145 : public AsymmetricAlgorithm_t9F811260245370BD8786A849DBF9F8054F97F4CB
{
public:
public:
};
// System.Security.Cryptography.RSAParameters
struct RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717
{
public:
// System.Byte[] System.Security.Cryptography.RSAParameters::Exponent
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___Exponent_0;
// System.Byte[] System.Security.Cryptography.RSAParameters::Modulus
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___Modulus_1;
// System.Byte[] System.Security.Cryptography.RSAParameters::P
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___P_2;
// System.Byte[] System.Security.Cryptography.RSAParameters::Q
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___Q_3;
// System.Byte[] System.Security.Cryptography.RSAParameters::DP
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___DP_4;
// System.Byte[] System.Security.Cryptography.RSAParameters::DQ
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___DQ_5;
// System.Byte[] System.Security.Cryptography.RSAParameters::InverseQ
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___InverseQ_6;
// System.Byte[] System.Security.Cryptography.RSAParameters::D
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___D_7;
public:
inline static int32_t get_offset_of_Exponent_0() { return static_cast<int32_t>(offsetof(RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717, ___Exponent_0)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_Exponent_0() const { return ___Exponent_0; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_Exponent_0() { return &___Exponent_0; }
inline void set_Exponent_0(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___Exponent_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Exponent_0), (void*)value);
}
inline static int32_t get_offset_of_Modulus_1() { return static_cast<int32_t>(offsetof(RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717, ___Modulus_1)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_Modulus_1() const { return ___Modulus_1; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_Modulus_1() { return &___Modulus_1; }
inline void set_Modulus_1(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___Modulus_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Modulus_1), (void*)value);
}
inline static int32_t get_offset_of_P_2() { return static_cast<int32_t>(offsetof(RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717, ___P_2)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_P_2() const { return ___P_2; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_P_2() { return &___P_2; }
inline void set_P_2(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___P_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___P_2), (void*)value);
}
inline static int32_t get_offset_of_Q_3() { return static_cast<int32_t>(offsetof(RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717, ___Q_3)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_Q_3() const { return ___Q_3; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_Q_3() { return &___Q_3; }
inline void set_Q_3(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___Q_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Q_3), (void*)value);
}
inline static int32_t get_offset_of_DP_4() { return static_cast<int32_t>(offsetof(RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717, ___DP_4)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_DP_4() const { return ___DP_4; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_DP_4() { return &___DP_4; }
inline void set_DP_4(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___DP_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___DP_4), (void*)value);
}
inline static int32_t get_offset_of_DQ_5() { return static_cast<int32_t>(offsetof(RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717, ___DQ_5)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_DQ_5() const { return ___DQ_5; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_DQ_5() { return &___DQ_5; }
inline void set_DQ_5(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___DQ_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___DQ_5), (void*)value);
}
inline static int32_t get_offset_of_InverseQ_6() { return static_cast<int32_t>(offsetof(RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717, ___InverseQ_6)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_InverseQ_6() const { return ___InverseQ_6; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_InverseQ_6() { return &___InverseQ_6; }
inline void set_InverseQ_6(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___InverseQ_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___InverseQ_6), (void*)value);
}
inline static int32_t get_offset_of_D_7() { return static_cast<int32_t>(offsetof(RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717, ___D_7)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_D_7() const { return ___D_7; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_D_7() { return &___D_7; }
inline void set_D_7(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___D_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___D_7), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Security.Cryptography.RSAParameters
struct RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717_marshaled_pinvoke
{
Il2CppSafeArray/*NONE*/* ___Exponent_0;
Il2CppSafeArray/*NONE*/* ___Modulus_1;
Il2CppSafeArray/*NONE*/* ___P_2;
Il2CppSafeArray/*NONE*/* ___Q_3;
Il2CppSafeArray/*NONE*/* ___DP_4;
Il2CppSafeArray/*NONE*/* ___DQ_5;
Il2CppSafeArray/*NONE*/* ___InverseQ_6;
Il2CppSafeArray/*NONE*/* ___D_7;
};
// Native definition for COM marshalling of System.Security.Cryptography.RSAParameters
struct RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717_marshaled_com
{
Il2CppSafeArray/*NONE*/* ___Exponent_0;
Il2CppSafeArray/*NONE*/* ___Modulus_1;
Il2CppSafeArray/*NONE*/* ___P_2;
Il2CppSafeArray/*NONE*/* ___Q_3;
Il2CppSafeArray/*NONE*/* ___DP_4;
Il2CppSafeArray/*NONE*/* ___DQ_5;
Il2CppSafeArray/*NONE*/* ___InverseQ_6;
Il2CppSafeArray/*NONE*/* ___D_7;
};
// System.Security.Cryptography.SHA1
struct SHA1_t242C3C0C91D0CC11FA6F3CB0B06B416A550C6EAA : public HashAlgorithm_t65659695B16C0BBF05707BF45191A97DC156D6BA
{
public:
public:
};
// System.Security.Cryptography.SHA256
struct SHA256_tF15350D910DF8AC1E6ADDBA904218F95554711BD : public HashAlgorithm_t65659695B16C0BBF05707BF45191A97DC156D6BA
{
public:
public:
};
// System.Security.Cryptography.SHA384
struct SHA384_t73C69FA7FB10EF83355734BE635F079515FF5D37 : public HashAlgorithm_t65659695B16C0BBF05707BF45191A97DC156D6BA
{
public:
public:
};
// System.Security.Cryptography.SHA512
struct SHA512_tA4117C79CCB7ECF8AC39BDBE41A0D0294E9D6936 : public HashAlgorithm_t65659695B16C0BBF05707BF45191A97DC156D6BA
{
public:
public:
};
// System.Security.Cryptography.X509Certificates.X509CertificateCollection
struct X509CertificateCollection_t824A6C58D0D1B4A7CAE30F26CE8EE4B23A8A1833 : public CollectionBase_tF5D4583FF325726066A9803839A04E9C0084ED01
{
public:
public:
};
// System.UInt16
struct UInt16_tAE45CEF73BF720100519F6867F32145D075F928E
{
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_tAE45CEF73BF720100519F6867F32145D075F928E, ___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;
}
};
// System.UInt32
struct UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B
{
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_t4980FA09003AFAAB5A6E361BA2748EA9A005709B, ___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;
}
};
// System.UInt64
struct UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E
{
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_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E, ___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;
}
};
// System.Void
struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017
{
public:
union
{
struct
{
};
uint8_t Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017__padding[1];
};
public:
};
// <PrivateImplementationDetails>
struct U3CPrivateImplementationDetailsU3E_tF21437707AFAA06797AEDEE07C84D4D3CC2837FA : public RuntimeObject
{
public:
public:
};
struct U3CPrivateImplementationDetailsU3E_tF21437707AFAA06797AEDEE07C84D4D3CC2837FA_StaticFields
{
public:
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D3 <PrivateImplementationDetails>::12D04472A8285260EA12FD3813CDFA9F2D2B548C
__StaticArrayInitTypeSizeU3D3_t83D19CF571199F638945B4CE7AC3EFBB12513428 ___12D04472A8285260EA12FD3813CDFA9F2D2B548C_0;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D3 <PrivateImplementationDetails>::13A35EF1A549297C70E2AD46045BBD2ECA17852D
__StaticArrayInitTypeSizeU3D3_t83D19CF571199F638945B4CE7AC3EFBB12513428 ___13A35EF1A549297C70E2AD46045BBD2ECA17852D_1;
// System.Int64 <PrivateImplementationDetails>::16968835DEF6DD3BB86EABA9DEC53BF41851CD6D
int64_t ___16968835DEF6DD3BB86EABA9DEC53BF41851CD6D_2;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D3 <PrivateImplementationDetails>::1A84029C80CB5518379F199F53FF08A7B764F8FD
__StaticArrayInitTypeSizeU3D3_t83D19CF571199F638945B4CE7AC3EFBB12513428 ___1A84029C80CB5518379F199F53FF08A7B764F8FD_3;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D3 <PrivateImplementationDetails>::235D99572263B22ADFEE10FDA0C25E12F4D94FFC
__StaticArrayInitTypeSizeU3D3_t83D19CF571199F638945B4CE7AC3EFBB12513428 ___235D99572263B22ADFEE10FDA0C25E12F4D94FFC_4;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D14 <PrivateImplementationDetails>::2D3CF0F15AC2DDEC2956EA1B7BBE43FB8B923130
__StaticArrayInitTypeSizeU3D14_t2293E0C6AC04C3ABC76C1B941A58194168C25109 ___2D3CF0F15AC2DDEC2956EA1B7BBE43FB8B923130_5;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D64 <PrivateImplementationDetails>::320B018758ECE3752FFEDBAEB1A6DB67C80B9359
__StaticArrayInitTypeSizeU3D64_t7FDF3B8905F8D5A457AD7CA8FB6CB4F40AA78AF9 ___320B018758ECE3752FFEDBAEB1A6DB67C80B9359_6;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D3 <PrivateImplementationDetails>::3E3442C7396F3F2BB4C7348F4A2074C7DC677D68
__StaticArrayInitTypeSizeU3D3_t83D19CF571199F638945B4CE7AC3EFBB12513428 ___3E3442C7396F3F2BB4C7348F4A2074C7DC677D68_7;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D48 <PrivateImplementationDetails>::4E3B533C39447AAEB59A8E48FABD7E15B5B5D195
__StaticArrayInitTypeSizeU3D48_t9F3D0EF2ACFB23A8C22DE5E03F835F1A400F8A52 ___4E3B533C39447AAEB59A8E48FABD7E15B5B5D195_8;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D10 <PrivateImplementationDetails>::56DFA5053B3131883637F53219E7D88CCEF35949
__StaticArrayInitTypeSizeU3D10_tA87C7E06DDCE3975CB99672F98A6AC23AD0D87A0 ___56DFA5053B3131883637F53219E7D88CCEF35949_9;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D9 <PrivateImplementationDetails>::6D49C9D487D7AD3491ECE08732D68A593CC2038D
__StaticArrayInitTypeSizeU3D9_t2B23599284B0D068CFDF7410ACB3027431B6FD94 ___6D49C9D487D7AD3491ECE08732D68A593CC2038D_10;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D3132 <PrivateImplementationDetails>::6E5DC824F803F8565AF31B42199DAE39FE7F4EA9
__StaticArrayInitTypeSizeU3D3132_t486168FFAE191756DEF1DBD0456C8C0AA26577B1 ___6E5DC824F803F8565AF31B42199DAE39FE7F4EA9_11;
// System.Int64 <PrivateImplementationDetails>::6FA00AC9FFFD87F82A38A7F9ECC8134F4A7052AF
int64_t ___6FA00AC9FFFD87F82A38A7F9ECC8134F4A7052AF_12;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D3 <PrivateImplementationDetails>::736D39815215889F11249D9958F6ED12D37B9F57
__StaticArrayInitTypeSizeU3D3_t83D19CF571199F638945B4CE7AC3EFBB12513428 ___736D39815215889F11249D9958F6ED12D37B9F57_13;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D3 <PrivateImplementationDetails>::86F4F563FA2C61798AE6238D789139739428463A
__StaticArrayInitTypeSizeU3D3_t83D19CF571199F638945B4CE7AC3EFBB12513428 ___86F4F563FA2C61798AE6238D789139739428463A_14;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D3 <PrivateImplementationDetails>::97FB30C84FF4A41CD4625B44B2940BFC8DB43003
__StaticArrayInitTypeSizeU3D3_t83D19CF571199F638945B4CE7AC3EFBB12513428 ___97FB30C84FF4A41CD4625B44B2940BFC8DB43003_15;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D64 <PrivateImplementationDetails>::9A9C3962CD4753376E3507C8CB5FD8FCC4B4EDB5
__StaticArrayInitTypeSizeU3D64_t7FDF3B8905F8D5A457AD7CA8FB6CB4F40AA78AF9 ___9A9C3962CD4753376E3507C8CB5FD8FCC4B4EDB5_16;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D3 <PrivateImplementationDetails>::9BB00D1FCCBAF03165447FC8028E7CA07CA9FE88
__StaticArrayInitTypeSizeU3D3_t83D19CF571199F638945B4CE7AC3EFBB12513428 ___9BB00D1FCCBAF03165447FC8028E7CA07CA9FE88_17;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D3 <PrivateImplementationDetails>::A323DB0813C4D072957BA6FDA79D9776674CD06B
__StaticArrayInitTypeSizeU3D3_t83D19CF571199F638945B4CE7AC3EFBB12513428 ___A323DB0813C4D072957BA6FDA79D9776674CD06B_18;
// System.Int64 <PrivateImplementationDetails>::AEA5F1CC5CFE1660539EDD691FE017F775F63A0D
int64_t ___AEA5F1CC5CFE1660539EDD691FE017F775F63A0D_19;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D20 <PrivateImplementationDetails>::BE1BDEC0AA74B4DCB079943E70528096CCA985F8
__StaticArrayInitTypeSizeU3D20_t45181D0C9A3626B505048EEE1AC441C18A377DBF ___BE1BDEC0AA74B4DCB079943E70528096CCA985F8_20;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D3 <PrivateImplementationDetails>::BF477463CE2F5EF38FC4C644BBBF4DF109E7670A
__StaticArrayInitTypeSizeU3D3_t83D19CF571199F638945B4CE7AC3EFBB12513428 ___BF477463CE2F5EF38FC4C644BBBF4DF109E7670A_21;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D64 <PrivateImplementationDetails>::CF0B42666EF5E37EDEA0AB8E173E42C196D03814
__StaticArrayInitTypeSizeU3D64_t7FDF3B8905F8D5A457AD7CA8FB6CB4F40AA78AF9 ___CF0B42666EF5E37EDEA0AB8E173E42C196D03814_22;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D32 <PrivateImplementationDetails>::D28E8ABDBD777A482CE0EE5C24814ACAE52AABFE
__StaticArrayInitTypeSizeU3D32_tB9E831F7CD5830D06525ABB45BC8517064237A2A ___D28E8ABDBD777A482CE0EE5C24814ACAE52AABFE_23;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D256 <PrivateImplementationDetails>::D2C5BAE967587C6F3D9F2C4551911E0575A1101F
__StaticArrayInitTypeSizeU3D256_t8BFCD627E5A35B5A739C81B9213D9B9A173DE667 ___D2C5BAE967587C6F3D9F2C4551911E0575A1101F_24;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D64 <PrivateImplementationDetails>::E75835D001C843F156FBA01B001DFE1B8029AC17
__StaticArrayInitTypeSizeU3D64_t7FDF3B8905F8D5A457AD7CA8FB6CB4F40AA78AF9 ___E75835D001C843F156FBA01B001DFE1B8029AC17_25;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D10 <PrivateImplementationDetails>::EC5BB4F59D4B9B2E9ECD3904D44A8275F23AFB11
__StaticArrayInitTypeSizeU3D10_tA87C7E06DDCE3975CB99672F98A6AC23AD0D87A0 ___EC5BB4F59D4B9B2E9ECD3904D44A8275F23AFB11_26;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D3 <PrivateImplementationDetails>::EC83FB16C20052BEE2B4025159BC2ED45C9C70C3
__StaticArrayInitTypeSizeU3D3_t83D19CF571199F638945B4CE7AC3EFBB12513428 ___EC83FB16C20052BEE2B4025159BC2ED45C9C70C3_27;
public:
inline static int32_t get_offset_of_U312D04472A8285260EA12FD3813CDFA9F2D2B548C_0() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_tF21437707AFAA06797AEDEE07C84D4D3CC2837FA_StaticFields, ___12D04472A8285260EA12FD3813CDFA9F2D2B548C_0)); }
inline __StaticArrayInitTypeSizeU3D3_t83D19CF571199F638945B4CE7AC3EFBB12513428 get_U312D04472A8285260EA12FD3813CDFA9F2D2B548C_0() const { return ___12D04472A8285260EA12FD3813CDFA9F2D2B548C_0; }
inline __StaticArrayInitTypeSizeU3D3_t83D19CF571199F638945B4CE7AC3EFBB12513428 * get_address_of_U312D04472A8285260EA12FD3813CDFA9F2D2B548C_0() { return &___12D04472A8285260EA12FD3813CDFA9F2D2B548C_0; }
inline void set_U312D04472A8285260EA12FD3813CDFA9F2D2B548C_0(__StaticArrayInitTypeSizeU3D3_t83D19CF571199F638945B4CE7AC3EFBB12513428 value)
{
___12D04472A8285260EA12FD3813CDFA9F2D2B548C_0 = value;
}
inline static int32_t get_offset_of_U313A35EF1A549297C70E2AD46045BBD2ECA17852D_1() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_tF21437707AFAA06797AEDEE07C84D4D3CC2837FA_StaticFields, ___13A35EF1A549297C70E2AD46045BBD2ECA17852D_1)); }
inline __StaticArrayInitTypeSizeU3D3_t83D19CF571199F638945B4CE7AC3EFBB12513428 get_U313A35EF1A549297C70E2AD46045BBD2ECA17852D_1() const { return ___13A35EF1A549297C70E2AD46045BBD2ECA17852D_1; }
inline __StaticArrayInitTypeSizeU3D3_t83D19CF571199F638945B4CE7AC3EFBB12513428 * get_address_of_U313A35EF1A549297C70E2AD46045BBD2ECA17852D_1() { return &___13A35EF1A549297C70E2AD46045BBD2ECA17852D_1; }
inline void set_U313A35EF1A549297C70E2AD46045BBD2ECA17852D_1(__StaticArrayInitTypeSizeU3D3_t83D19CF571199F638945B4CE7AC3EFBB12513428 value)
{
___13A35EF1A549297C70E2AD46045BBD2ECA17852D_1 = value;
}
inline static int32_t get_offset_of_U316968835DEF6DD3BB86EABA9DEC53BF41851CD6D_2() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_tF21437707AFAA06797AEDEE07C84D4D3CC2837FA_StaticFields, ___16968835DEF6DD3BB86EABA9DEC53BF41851CD6D_2)); }
inline int64_t get_U316968835DEF6DD3BB86EABA9DEC53BF41851CD6D_2() const { return ___16968835DEF6DD3BB86EABA9DEC53BF41851CD6D_2; }
inline int64_t* get_address_of_U316968835DEF6DD3BB86EABA9DEC53BF41851CD6D_2() { return &___16968835DEF6DD3BB86EABA9DEC53BF41851CD6D_2; }
inline void set_U316968835DEF6DD3BB86EABA9DEC53BF41851CD6D_2(int64_t value)
{
___16968835DEF6DD3BB86EABA9DEC53BF41851CD6D_2 = value;
}
inline static int32_t get_offset_of_U31A84029C80CB5518379F199F53FF08A7B764F8FD_3() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_tF21437707AFAA06797AEDEE07C84D4D3CC2837FA_StaticFields, ___1A84029C80CB5518379F199F53FF08A7B764F8FD_3)); }
inline __StaticArrayInitTypeSizeU3D3_t83D19CF571199F638945B4CE7AC3EFBB12513428 get_U31A84029C80CB5518379F199F53FF08A7B764F8FD_3() const { return ___1A84029C80CB5518379F199F53FF08A7B764F8FD_3; }
inline __StaticArrayInitTypeSizeU3D3_t83D19CF571199F638945B4CE7AC3EFBB12513428 * get_address_of_U31A84029C80CB5518379F199F53FF08A7B764F8FD_3() { return &___1A84029C80CB5518379F199F53FF08A7B764F8FD_3; }
inline void set_U31A84029C80CB5518379F199F53FF08A7B764F8FD_3(__StaticArrayInitTypeSizeU3D3_t83D19CF571199F638945B4CE7AC3EFBB12513428 value)
{
___1A84029C80CB5518379F199F53FF08A7B764F8FD_3 = value;
}
inline static int32_t get_offset_of_U3235D99572263B22ADFEE10FDA0C25E12F4D94FFC_4() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_tF21437707AFAA06797AEDEE07C84D4D3CC2837FA_StaticFields, ___235D99572263B22ADFEE10FDA0C25E12F4D94FFC_4)); }
inline __StaticArrayInitTypeSizeU3D3_t83D19CF571199F638945B4CE7AC3EFBB12513428 get_U3235D99572263B22ADFEE10FDA0C25E12F4D94FFC_4() const { return ___235D99572263B22ADFEE10FDA0C25E12F4D94FFC_4; }
inline __StaticArrayInitTypeSizeU3D3_t83D19CF571199F638945B4CE7AC3EFBB12513428 * get_address_of_U3235D99572263B22ADFEE10FDA0C25E12F4D94FFC_4() { return &___235D99572263B22ADFEE10FDA0C25E12F4D94FFC_4; }
inline void set_U3235D99572263B22ADFEE10FDA0C25E12F4D94FFC_4(__StaticArrayInitTypeSizeU3D3_t83D19CF571199F638945B4CE7AC3EFBB12513428 value)
{
___235D99572263B22ADFEE10FDA0C25E12F4D94FFC_4 = value;
}
inline static int32_t get_offset_of_U32D3CF0F15AC2DDEC2956EA1B7BBE43FB8B923130_5() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_tF21437707AFAA06797AEDEE07C84D4D3CC2837FA_StaticFields, ___2D3CF0F15AC2DDEC2956EA1B7BBE43FB8B923130_5)); }
inline __StaticArrayInitTypeSizeU3D14_t2293E0C6AC04C3ABC76C1B941A58194168C25109 get_U32D3CF0F15AC2DDEC2956EA1B7BBE43FB8B923130_5() const { return ___2D3CF0F15AC2DDEC2956EA1B7BBE43FB8B923130_5; }
inline __StaticArrayInitTypeSizeU3D14_t2293E0C6AC04C3ABC76C1B941A58194168C25109 * get_address_of_U32D3CF0F15AC2DDEC2956EA1B7BBE43FB8B923130_5() { return &___2D3CF0F15AC2DDEC2956EA1B7BBE43FB8B923130_5; }
inline void set_U32D3CF0F15AC2DDEC2956EA1B7BBE43FB8B923130_5(__StaticArrayInitTypeSizeU3D14_t2293E0C6AC04C3ABC76C1B941A58194168C25109 value)
{
___2D3CF0F15AC2DDEC2956EA1B7BBE43FB8B923130_5 = value;
}
inline static int32_t get_offset_of_U3320B018758ECE3752FFEDBAEB1A6DB67C80B9359_6() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_tF21437707AFAA06797AEDEE07C84D4D3CC2837FA_StaticFields, ___320B018758ECE3752FFEDBAEB1A6DB67C80B9359_6)); }
inline __StaticArrayInitTypeSizeU3D64_t7FDF3B8905F8D5A457AD7CA8FB6CB4F40AA78AF9 get_U3320B018758ECE3752FFEDBAEB1A6DB67C80B9359_6() const { return ___320B018758ECE3752FFEDBAEB1A6DB67C80B9359_6; }
inline __StaticArrayInitTypeSizeU3D64_t7FDF3B8905F8D5A457AD7CA8FB6CB4F40AA78AF9 * get_address_of_U3320B018758ECE3752FFEDBAEB1A6DB67C80B9359_6() { return &___320B018758ECE3752FFEDBAEB1A6DB67C80B9359_6; }
inline void set_U3320B018758ECE3752FFEDBAEB1A6DB67C80B9359_6(__StaticArrayInitTypeSizeU3D64_t7FDF3B8905F8D5A457AD7CA8FB6CB4F40AA78AF9 value)
{
___320B018758ECE3752FFEDBAEB1A6DB67C80B9359_6 = value;
}
inline static int32_t get_offset_of_U33E3442C7396F3F2BB4C7348F4A2074C7DC677D68_7() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_tF21437707AFAA06797AEDEE07C84D4D3CC2837FA_StaticFields, ___3E3442C7396F3F2BB4C7348F4A2074C7DC677D68_7)); }
inline __StaticArrayInitTypeSizeU3D3_t83D19CF571199F638945B4CE7AC3EFBB12513428 get_U33E3442C7396F3F2BB4C7348F4A2074C7DC677D68_7() const { return ___3E3442C7396F3F2BB4C7348F4A2074C7DC677D68_7; }
inline __StaticArrayInitTypeSizeU3D3_t83D19CF571199F638945B4CE7AC3EFBB12513428 * get_address_of_U33E3442C7396F3F2BB4C7348F4A2074C7DC677D68_7() { return &___3E3442C7396F3F2BB4C7348F4A2074C7DC677D68_7; }
inline void set_U33E3442C7396F3F2BB4C7348F4A2074C7DC677D68_7(__StaticArrayInitTypeSizeU3D3_t83D19CF571199F638945B4CE7AC3EFBB12513428 value)
{
___3E3442C7396F3F2BB4C7348F4A2074C7DC677D68_7 = value;
}
inline static int32_t get_offset_of_U34E3B533C39447AAEB59A8E48FABD7E15B5B5D195_8() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_tF21437707AFAA06797AEDEE07C84D4D3CC2837FA_StaticFields, ___4E3B533C39447AAEB59A8E48FABD7E15B5B5D195_8)); }
inline __StaticArrayInitTypeSizeU3D48_t9F3D0EF2ACFB23A8C22DE5E03F835F1A400F8A52 get_U34E3B533C39447AAEB59A8E48FABD7E15B5B5D195_8() const { return ___4E3B533C39447AAEB59A8E48FABD7E15B5B5D195_8; }
inline __StaticArrayInitTypeSizeU3D48_t9F3D0EF2ACFB23A8C22DE5E03F835F1A400F8A52 * get_address_of_U34E3B533C39447AAEB59A8E48FABD7E15B5B5D195_8() { return &___4E3B533C39447AAEB59A8E48FABD7E15B5B5D195_8; }
inline void set_U34E3B533C39447AAEB59A8E48FABD7E15B5B5D195_8(__StaticArrayInitTypeSizeU3D48_t9F3D0EF2ACFB23A8C22DE5E03F835F1A400F8A52 value)
{
___4E3B533C39447AAEB59A8E48FABD7E15B5B5D195_8 = value;
}
inline static int32_t get_offset_of_U356DFA5053B3131883637F53219E7D88CCEF35949_9() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_tF21437707AFAA06797AEDEE07C84D4D3CC2837FA_StaticFields, ___56DFA5053B3131883637F53219E7D88CCEF35949_9)); }
inline __StaticArrayInitTypeSizeU3D10_tA87C7E06DDCE3975CB99672F98A6AC23AD0D87A0 get_U356DFA5053B3131883637F53219E7D88CCEF35949_9() const { return ___56DFA5053B3131883637F53219E7D88CCEF35949_9; }
inline __StaticArrayInitTypeSizeU3D10_tA87C7E06DDCE3975CB99672F98A6AC23AD0D87A0 * get_address_of_U356DFA5053B3131883637F53219E7D88CCEF35949_9() { return &___56DFA5053B3131883637F53219E7D88CCEF35949_9; }
inline void set_U356DFA5053B3131883637F53219E7D88CCEF35949_9(__StaticArrayInitTypeSizeU3D10_tA87C7E06DDCE3975CB99672F98A6AC23AD0D87A0 value)
{
___56DFA5053B3131883637F53219E7D88CCEF35949_9 = value;
}
inline static int32_t get_offset_of_U36D49C9D487D7AD3491ECE08732D68A593CC2038D_10() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_tF21437707AFAA06797AEDEE07C84D4D3CC2837FA_StaticFields, ___6D49C9D487D7AD3491ECE08732D68A593CC2038D_10)); }
inline __StaticArrayInitTypeSizeU3D9_t2B23599284B0D068CFDF7410ACB3027431B6FD94 get_U36D49C9D487D7AD3491ECE08732D68A593CC2038D_10() const { return ___6D49C9D487D7AD3491ECE08732D68A593CC2038D_10; }
inline __StaticArrayInitTypeSizeU3D9_t2B23599284B0D068CFDF7410ACB3027431B6FD94 * get_address_of_U36D49C9D487D7AD3491ECE08732D68A593CC2038D_10() { return &___6D49C9D487D7AD3491ECE08732D68A593CC2038D_10; }
inline void set_U36D49C9D487D7AD3491ECE08732D68A593CC2038D_10(__StaticArrayInitTypeSizeU3D9_t2B23599284B0D068CFDF7410ACB3027431B6FD94 value)
{
___6D49C9D487D7AD3491ECE08732D68A593CC2038D_10 = value;
}
inline static int32_t get_offset_of_U36E5DC824F803F8565AF31B42199DAE39FE7F4EA9_11() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_tF21437707AFAA06797AEDEE07C84D4D3CC2837FA_StaticFields, ___6E5DC824F803F8565AF31B42199DAE39FE7F4EA9_11)); }
inline __StaticArrayInitTypeSizeU3D3132_t486168FFAE191756DEF1DBD0456C8C0AA26577B1 get_U36E5DC824F803F8565AF31B42199DAE39FE7F4EA9_11() const { return ___6E5DC824F803F8565AF31B42199DAE39FE7F4EA9_11; }
inline __StaticArrayInitTypeSizeU3D3132_t486168FFAE191756DEF1DBD0456C8C0AA26577B1 * get_address_of_U36E5DC824F803F8565AF31B42199DAE39FE7F4EA9_11() { return &___6E5DC824F803F8565AF31B42199DAE39FE7F4EA9_11; }
inline void set_U36E5DC824F803F8565AF31B42199DAE39FE7F4EA9_11(__StaticArrayInitTypeSizeU3D3132_t486168FFAE191756DEF1DBD0456C8C0AA26577B1 value)
{
___6E5DC824F803F8565AF31B42199DAE39FE7F4EA9_11 = value;
}
inline static int32_t get_offset_of_U36FA00AC9FFFD87F82A38A7F9ECC8134F4A7052AF_12() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_tF21437707AFAA06797AEDEE07C84D4D3CC2837FA_StaticFields, ___6FA00AC9FFFD87F82A38A7F9ECC8134F4A7052AF_12)); }
inline int64_t get_U36FA00AC9FFFD87F82A38A7F9ECC8134F4A7052AF_12() const { return ___6FA00AC9FFFD87F82A38A7F9ECC8134F4A7052AF_12; }
inline int64_t* get_address_of_U36FA00AC9FFFD87F82A38A7F9ECC8134F4A7052AF_12() { return &___6FA00AC9FFFD87F82A38A7F9ECC8134F4A7052AF_12; }
inline void set_U36FA00AC9FFFD87F82A38A7F9ECC8134F4A7052AF_12(int64_t value)
{
___6FA00AC9FFFD87F82A38A7F9ECC8134F4A7052AF_12 = value;
}
inline static int32_t get_offset_of_U3736D39815215889F11249D9958F6ED12D37B9F57_13() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_tF21437707AFAA06797AEDEE07C84D4D3CC2837FA_StaticFields, ___736D39815215889F11249D9958F6ED12D37B9F57_13)); }
inline __StaticArrayInitTypeSizeU3D3_t83D19CF571199F638945B4CE7AC3EFBB12513428 get_U3736D39815215889F11249D9958F6ED12D37B9F57_13() const { return ___736D39815215889F11249D9958F6ED12D37B9F57_13; }
inline __StaticArrayInitTypeSizeU3D3_t83D19CF571199F638945B4CE7AC3EFBB12513428 * get_address_of_U3736D39815215889F11249D9958F6ED12D37B9F57_13() { return &___736D39815215889F11249D9958F6ED12D37B9F57_13; }
inline void set_U3736D39815215889F11249D9958F6ED12D37B9F57_13(__StaticArrayInitTypeSizeU3D3_t83D19CF571199F638945B4CE7AC3EFBB12513428 value)
{
___736D39815215889F11249D9958F6ED12D37B9F57_13 = value;
}
inline static int32_t get_offset_of_U386F4F563FA2C61798AE6238D789139739428463A_14() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_tF21437707AFAA06797AEDEE07C84D4D3CC2837FA_StaticFields, ___86F4F563FA2C61798AE6238D789139739428463A_14)); }
inline __StaticArrayInitTypeSizeU3D3_t83D19CF571199F638945B4CE7AC3EFBB12513428 get_U386F4F563FA2C61798AE6238D789139739428463A_14() const { return ___86F4F563FA2C61798AE6238D789139739428463A_14; }
inline __StaticArrayInitTypeSizeU3D3_t83D19CF571199F638945B4CE7AC3EFBB12513428 * get_address_of_U386F4F563FA2C61798AE6238D789139739428463A_14() { return &___86F4F563FA2C61798AE6238D789139739428463A_14; }
inline void set_U386F4F563FA2C61798AE6238D789139739428463A_14(__StaticArrayInitTypeSizeU3D3_t83D19CF571199F638945B4CE7AC3EFBB12513428 value)
{
___86F4F563FA2C61798AE6238D789139739428463A_14 = value;
}
inline static int32_t get_offset_of_U397FB30C84FF4A41CD4625B44B2940BFC8DB43003_15() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_tF21437707AFAA06797AEDEE07C84D4D3CC2837FA_StaticFields, ___97FB30C84FF4A41CD4625B44B2940BFC8DB43003_15)); }
inline __StaticArrayInitTypeSizeU3D3_t83D19CF571199F638945B4CE7AC3EFBB12513428 get_U397FB30C84FF4A41CD4625B44B2940BFC8DB43003_15() const { return ___97FB30C84FF4A41CD4625B44B2940BFC8DB43003_15; }
inline __StaticArrayInitTypeSizeU3D3_t83D19CF571199F638945B4CE7AC3EFBB12513428 * get_address_of_U397FB30C84FF4A41CD4625B44B2940BFC8DB43003_15() { return &___97FB30C84FF4A41CD4625B44B2940BFC8DB43003_15; }
inline void set_U397FB30C84FF4A41CD4625B44B2940BFC8DB43003_15(__StaticArrayInitTypeSizeU3D3_t83D19CF571199F638945B4CE7AC3EFBB12513428 value)
{
___97FB30C84FF4A41CD4625B44B2940BFC8DB43003_15 = value;
}
inline static int32_t get_offset_of_U39A9C3962CD4753376E3507C8CB5FD8FCC4B4EDB5_16() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_tF21437707AFAA06797AEDEE07C84D4D3CC2837FA_StaticFields, ___9A9C3962CD4753376E3507C8CB5FD8FCC4B4EDB5_16)); }
inline __StaticArrayInitTypeSizeU3D64_t7FDF3B8905F8D5A457AD7CA8FB6CB4F40AA78AF9 get_U39A9C3962CD4753376E3507C8CB5FD8FCC4B4EDB5_16() const { return ___9A9C3962CD4753376E3507C8CB5FD8FCC4B4EDB5_16; }
inline __StaticArrayInitTypeSizeU3D64_t7FDF3B8905F8D5A457AD7CA8FB6CB4F40AA78AF9 * get_address_of_U39A9C3962CD4753376E3507C8CB5FD8FCC4B4EDB5_16() { return &___9A9C3962CD4753376E3507C8CB5FD8FCC4B4EDB5_16; }
inline void set_U39A9C3962CD4753376E3507C8CB5FD8FCC4B4EDB5_16(__StaticArrayInitTypeSizeU3D64_t7FDF3B8905F8D5A457AD7CA8FB6CB4F40AA78AF9 value)
{
___9A9C3962CD4753376E3507C8CB5FD8FCC4B4EDB5_16 = value;
}
inline static int32_t get_offset_of_U39BB00D1FCCBAF03165447FC8028E7CA07CA9FE88_17() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_tF21437707AFAA06797AEDEE07C84D4D3CC2837FA_StaticFields, ___9BB00D1FCCBAF03165447FC8028E7CA07CA9FE88_17)); }
inline __StaticArrayInitTypeSizeU3D3_t83D19CF571199F638945B4CE7AC3EFBB12513428 get_U39BB00D1FCCBAF03165447FC8028E7CA07CA9FE88_17() const { return ___9BB00D1FCCBAF03165447FC8028E7CA07CA9FE88_17; }
inline __StaticArrayInitTypeSizeU3D3_t83D19CF571199F638945B4CE7AC3EFBB12513428 * get_address_of_U39BB00D1FCCBAF03165447FC8028E7CA07CA9FE88_17() { return &___9BB00D1FCCBAF03165447FC8028E7CA07CA9FE88_17; }
inline void set_U39BB00D1FCCBAF03165447FC8028E7CA07CA9FE88_17(__StaticArrayInitTypeSizeU3D3_t83D19CF571199F638945B4CE7AC3EFBB12513428 value)
{
___9BB00D1FCCBAF03165447FC8028E7CA07CA9FE88_17 = value;
}
inline static int32_t get_offset_of_A323DB0813C4D072957BA6FDA79D9776674CD06B_18() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_tF21437707AFAA06797AEDEE07C84D4D3CC2837FA_StaticFields, ___A323DB0813C4D072957BA6FDA79D9776674CD06B_18)); }
inline __StaticArrayInitTypeSizeU3D3_t83D19CF571199F638945B4CE7AC3EFBB12513428 get_A323DB0813C4D072957BA6FDA79D9776674CD06B_18() const { return ___A323DB0813C4D072957BA6FDA79D9776674CD06B_18; }
inline __StaticArrayInitTypeSizeU3D3_t83D19CF571199F638945B4CE7AC3EFBB12513428 * get_address_of_A323DB0813C4D072957BA6FDA79D9776674CD06B_18() { return &___A323DB0813C4D072957BA6FDA79D9776674CD06B_18; }
inline void set_A323DB0813C4D072957BA6FDA79D9776674CD06B_18(__StaticArrayInitTypeSizeU3D3_t83D19CF571199F638945B4CE7AC3EFBB12513428 value)
{
___A323DB0813C4D072957BA6FDA79D9776674CD06B_18 = value;
}
inline static int32_t get_offset_of_AEA5F1CC5CFE1660539EDD691FE017F775F63A0D_19() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_tF21437707AFAA06797AEDEE07C84D4D3CC2837FA_StaticFields, ___AEA5F1CC5CFE1660539EDD691FE017F775F63A0D_19)); }
inline int64_t get_AEA5F1CC5CFE1660539EDD691FE017F775F63A0D_19() const { return ___AEA5F1CC5CFE1660539EDD691FE017F775F63A0D_19; }
inline int64_t* get_address_of_AEA5F1CC5CFE1660539EDD691FE017F775F63A0D_19() { return &___AEA5F1CC5CFE1660539EDD691FE017F775F63A0D_19; }
inline void set_AEA5F1CC5CFE1660539EDD691FE017F775F63A0D_19(int64_t value)
{
___AEA5F1CC5CFE1660539EDD691FE017F775F63A0D_19 = value;
}
inline static int32_t get_offset_of_BE1BDEC0AA74B4DCB079943E70528096CCA985F8_20() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_tF21437707AFAA06797AEDEE07C84D4D3CC2837FA_StaticFields, ___BE1BDEC0AA74B4DCB079943E70528096CCA985F8_20)); }
inline __StaticArrayInitTypeSizeU3D20_t45181D0C9A3626B505048EEE1AC441C18A377DBF get_BE1BDEC0AA74B4DCB079943E70528096CCA985F8_20() const { return ___BE1BDEC0AA74B4DCB079943E70528096CCA985F8_20; }
inline __StaticArrayInitTypeSizeU3D20_t45181D0C9A3626B505048EEE1AC441C18A377DBF * get_address_of_BE1BDEC0AA74B4DCB079943E70528096CCA985F8_20() { return &___BE1BDEC0AA74B4DCB079943E70528096CCA985F8_20; }
inline void set_BE1BDEC0AA74B4DCB079943E70528096CCA985F8_20(__StaticArrayInitTypeSizeU3D20_t45181D0C9A3626B505048EEE1AC441C18A377DBF value)
{
___BE1BDEC0AA74B4DCB079943E70528096CCA985F8_20 = value;
}
inline static int32_t get_offset_of_BF477463CE2F5EF38FC4C644BBBF4DF109E7670A_21() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_tF21437707AFAA06797AEDEE07C84D4D3CC2837FA_StaticFields, ___BF477463CE2F5EF38FC4C644BBBF4DF109E7670A_21)); }
inline __StaticArrayInitTypeSizeU3D3_t83D19CF571199F638945B4CE7AC3EFBB12513428 get_BF477463CE2F5EF38FC4C644BBBF4DF109E7670A_21() const { return ___BF477463CE2F5EF38FC4C644BBBF4DF109E7670A_21; }
inline __StaticArrayInitTypeSizeU3D3_t83D19CF571199F638945B4CE7AC3EFBB12513428 * get_address_of_BF477463CE2F5EF38FC4C644BBBF4DF109E7670A_21() { return &___BF477463CE2F5EF38FC4C644BBBF4DF109E7670A_21; }
inline void set_BF477463CE2F5EF38FC4C644BBBF4DF109E7670A_21(__StaticArrayInitTypeSizeU3D3_t83D19CF571199F638945B4CE7AC3EFBB12513428 value)
{
___BF477463CE2F5EF38FC4C644BBBF4DF109E7670A_21 = value;
}
inline static int32_t get_offset_of_CF0B42666EF5E37EDEA0AB8E173E42C196D03814_22() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_tF21437707AFAA06797AEDEE07C84D4D3CC2837FA_StaticFields, ___CF0B42666EF5E37EDEA0AB8E173E42C196D03814_22)); }
inline __StaticArrayInitTypeSizeU3D64_t7FDF3B8905F8D5A457AD7CA8FB6CB4F40AA78AF9 get_CF0B42666EF5E37EDEA0AB8E173E42C196D03814_22() const { return ___CF0B42666EF5E37EDEA0AB8E173E42C196D03814_22; }
inline __StaticArrayInitTypeSizeU3D64_t7FDF3B8905F8D5A457AD7CA8FB6CB4F40AA78AF9 * get_address_of_CF0B42666EF5E37EDEA0AB8E173E42C196D03814_22() { return &___CF0B42666EF5E37EDEA0AB8E173E42C196D03814_22; }
inline void set_CF0B42666EF5E37EDEA0AB8E173E42C196D03814_22(__StaticArrayInitTypeSizeU3D64_t7FDF3B8905F8D5A457AD7CA8FB6CB4F40AA78AF9 value)
{
___CF0B42666EF5E37EDEA0AB8E173E42C196D03814_22 = value;
}
inline static int32_t get_offset_of_D28E8ABDBD777A482CE0EE5C24814ACAE52AABFE_23() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_tF21437707AFAA06797AEDEE07C84D4D3CC2837FA_StaticFields, ___D28E8ABDBD777A482CE0EE5C24814ACAE52AABFE_23)); }
inline __StaticArrayInitTypeSizeU3D32_tB9E831F7CD5830D06525ABB45BC8517064237A2A get_D28E8ABDBD777A482CE0EE5C24814ACAE52AABFE_23() const { return ___D28E8ABDBD777A482CE0EE5C24814ACAE52AABFE_23; }
inline __StaticArrayInitTypeSizeU3D32_tB9E831F7CD5830D06525ABB45BC8517064237A2A * get_address_of_D28E8ABDBD777A482CE0EE5C24814ACAE52AABFE_23() { return &___D28E8ABDBD777A482CE0EE5C24814ACAE52AABFE_23; }
inline void set_D28E8ABDBD777A482CE0EE5C24814ACAE52AABFE_23(__StaticArrayInitTypeSizeU3D32_tB9E831F7CD5830D06525ABB45BC8517064237A2A value)
{
___D28E8ABDBD777A482CE0EE5C24814ACAE52AABFE_23 = value;
}
inline static int32_t get_offset_of_D2C5BAE967587C6F3D9F2C4551911E0575A1101F_24() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_tF21437707AFAA06797AEDEE07C84D4D3CC2837FA_StaticFields, ___D2C5BAE967587C6F3D9F2C4551911E0575A1101F_24)); }
inline __StaticArrayInitTypeSizeU3D256_t8BFCD627E5A35B5A739C81B9213D9B9A173DE667 get_D2C5BAE967587C6F3D9F2C4551911E0575A1101F_24() const { return ___D2C5BAE967587C6F3D9F2C4551911E0575A1101F_24; }
inline __StaticArrayInitTypeSizeU3D256_t8BFCD627E5A35B5A739C81B9213D9B9A173DE667 * get_address_of_D2C5BAE967587C6F3D9F2C4551911E0575A1101F_24() { return &___D2C5BAE967587C6F3D9F2C4551911E0575A1101F_24; }
inline void set_D2C5BAE967587C6F3D9F2C4551911E0575A1101F_24(__StaticArrayInitTypeSizeU3D256_t8BFCD627E5A35B5A739C81B9213D9B9A173DE667 value)
{
___D2C5BAE967587C6F3D9F2C4551911E0575A1101F_24 = value;
}
inline static int32_t get_offset_of_E75835D001C843F156FBA01B001DFE1B8029AC17_25() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_tF21437707AFAA06797AEDEE07C84D4D3CC2837FA_StaticFields, ___E75835D001C843F156FBA01B001DFE1B8029AC17_25)); }
inline __StaticArrayInitTypeSizeU3D64_t7FDF3B8905F8D5A457AD7CA8FB6CB4F40AA78AF9 get_E75835D001C843F156FBA01B001DFE1B8029AC17_25() const { return ___E75835D001C843F156FBA01B001DFE1B8029AC17_25; }
inline __StaticArrayInitTypeSizeU3D64_t7FDF3B8905F8D5A457AD7CA8FB6CB4F40AA78AF9 * get_address_of_E75835D001C843F156FBA01B001DFE1B8029AC17_25() { return &___E75835D001C843F156FBA01B001DFE1B8029AC17_25; }
inline void set_E75835D001C843F156FBA01B001DFE1B8029AC17_25(__StaticArrayInitTypeSizeU3D64_t7FDF3B8905F8D5A457AD7CA8FB6CB4F40AA78AF9 value)
{
___E75835D001C843F156FBA01B001DFE1B8029AC17_25 = value;
}
inline static int32_t get_offset_of_EC5BB4F59D4B9B2E9ECD3904D44A8275F23AFB11_26() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_tF21437707AFAA06797AEDEE07C84D4D3CC2837FA_StaticFields, ___EC5BB4F59D4B9B2E9ECD3904D44A8275F23AFB11_26)); }
inline __StaticArrayInitTypeSizeU3D10_tA87C7E06DDCE3975CB99672F98A6AC23AD0D87A0 get_EC5BB4F59D4B9B2E9ECD3904D44A8275F23AFB11_26() const { return ___EC5BB4F59D4B9B2E9ECD3904D44A8275F23AFB11_26; }
inline __StaticArrayInitTypeSizeU3D10_tA87C7E06DDCE3975CB99672F98A6AC23AD0D87A0 * get_address_of_EC5BB4F59D4B9B2E9ECD3904D44A8275F23AFB11_26() { return &___EC5BB4F59D4B9B2E9ECD3904D44A8275F23AFB11_26; }
inline void set_EC5BB4F59D4B9B2E9ECD3904D44A8275F23AFB11_26(__StaticArrayInitTypeSizeU3D10_tA87C7E06DDCE3975CB99672F98A6AC23AD0D87A0 value)
{
___EC5BB4F59D4B9B2E9ECD3904D44A8275F23AFB11_26 = value;
}
inline static int32_t get_offset_of_EC83FB16C20052BEE2B4025159BC2ED45C9C70C3_27() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_tF21437707AFAA06797AEDEE07C84D4D3CC2837FA_StaticFields, ___EC83FB16C20052BEE2B4025159BC2ED45C9C70C3_27)); }
inline __StaticArrayInitTypeSizeU3D3_t83D19CF571199F638945B4CE7AC3EFBB12513428 get_EC83FB16C20052BEE2B4025159BC2ED45C9C70C3_27() const { return ___EC83FB16C20052BEE2B4025159BC2ED45C9C70C3_27; }
inline __StaticArrayInitTypeSizeU3D3_t83D19CF571199F638945B4CE7AC3EFBB12513428 * get_address_of_EC83FB16C20052BEE2B4025159BC2ED45C9C70C3_27() { return &___EC83FB16C20052BEE2B4025159BC2ED45C9C70C3_27; }
inline void set_EC83FB16C20052BEE2B4025159BC2ED45C9C70C3_27(__StaticArrayInitTypeSizeU3D3_t83D19CF571199F638945B4CE7AC3EFBB12513428 value)
{
___EC83FB16C20052BEE2B4025159BC2ED45C9C70C3_27 = value;
}
};
// Mono.Math.BigInteger_Sign
struct Sign_t8182561D973670995EB6DDCE959479C0B8E45FDD
{
public:
// System.Int32 Mono.Math.BigInteger_Sign::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Sign_t8182561D973670995EB6DDCE959479C0B8E45FDD, ___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;
}
};
// Mono.Math.Prime.ConfidenceFactor
struct ConfidenceFactor_t945E0EE732DB24BE51678FCB2741BBEB440179CE
{
public:
// System.Int32 Mono.Math.Prime.ConfidenceFactor::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ConfidenceFactor_t945E0EE732DB24BE51678FCB2741BBEB440179CE, ___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;
}
};
// Mono.Security.Cryptography.MD2Managed
struct MD2Managed_t6867DBAD1BDCC846BE478BABC2D5DBAFFC7495EC : public MD2_tCAAEC1A28A3D0B9E8810B27E4840BEA399619442
{
public:
// System.Byte[] Mono.Security.Cryptography.MD2Managed::state
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___state_4;
// System.Byte[] Mono.Security.Cryptography.MD2Managed::checksum
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___checksum_5;
// System.Byte[] Mono.Security.Cryptography.MD2Managed::buffer
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer_6;
// System.Int32 Mono.Security.Cryptography.MD2Managed::count
int32_t ___count_7;
// System.Byte[] Mono.Security.Cryptography.MD2Managed::x
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___x_8;
public:
inline static int32_t get_offset_of_state_4() { return static_cast<int32_t>(offsetof(MD2Managed_t6867DBAD1BDCC846BE478BABC2D5DBAFFC7495EC, ___state_4)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_state_4() const { return ___state_4; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_state_4() { return &___state_4; }
inline void set_state_4(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___state_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___state_4), (void*)value);
}
inline static int32_t get_offset_of_checksum_5() { return static_cast<int32_t>(offsetof(MD2Managed_t6867DBAD1BDCC846BE478BABC2D5DBAFFC7495EC, ___checksum_5)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_checksum_5() const { return ___checksum_5; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_checksum_5() { return &___checksum_5; }
inline void set_checksum_5(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___checksum_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___checksum_5), (void*)value);
}
inline static int32_t get_offset_of_buffer_6() { return static_cast<int32_t>(offsetof(MD2Managed_t6867DBAD1BDCC846BE478BABC2D5DBAFFC7495EC, ___buffer_6)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_buffer_6() const { return ___buffer_6; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_buffer_6() { return &___buffer_6; }
inline void set_buffer_6(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___buffer_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___buffer_6), (void*)value);
}
inline static int32_t get_offset_of_count_7() { return static_cast<int32_t>(offsetof(MD2Managed_t6867DBAD1BDCC846BE478BABC2D5DBAFFC7495EC, ___count_7)); }
inline int32_t get_count_7() const { return ___count_7; }
inline int32_t* get_address_of_count_7() { return &___count_7; }
inline void set_count_7(int32_t value)
{
___count_7 = value;
}
inline static int32_t get_offset_of_x_8() { return static_cast<int32_t>(offsetof(MD2Managed_t6867DBAD1BDCC846BE478BABC2D5DBAFFC7495EC, ___x_8)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_x_8() const { return ___x_8; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_x_8() { return &___x_8; }
inline void set_x_8(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___x_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___x_8), (void*)value);
}
};
struct MD2Managed_t6867DBAD1BDCC846BE478BABC2D5DBAFFC7495EC_StaticFields
{
public:
// System.Byte[] Mono.Security.Cryptography.MD2Managed::PI_SUBST
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___PI_SUBST_9;
public:
inline static int32_t get_offset_of_PI_SUBST_9() { return static_cast<int32_t>(offsetof(MD2Managed_t6867DBAD1BDCC846BE478BABC2D5DBAFFC7495EC_StaticFields, ___PI_SUBST_9)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_PI_SUBST_9() const { return ___PI_SUBST_9; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_PI_SUBST_9() { return &___PI_SUBST_9; }
inline void set_PI_SUBST_9(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___PI_SUBST_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___PI_SUBST_9), (void*)value);
}
};
// Mono.Security.Cryptography.MD4Managed
struct MD4Managed_t1FC9A6CDB0A89A71416414689B3A0FF0283759D1 : public MD4_t932C1DEA44D4B8650873251E88AA4096164BB380
{
public:
// System.UInt32[] Mono.Security.Cryptography.MD4Managed::state
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* ___state_4;
// System.Byte[] Mono.Security.Cryptography.MD4Managed::buffer
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer_5;
// System.UInt32[] Mono.Security.Cryptography.MD4Managed::count
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* ___count_6;
// System.UInt32[] Mono.Security.Cryptography.MD4Managed::x
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* ___x_7;
// System.Byte[] Mono.Security.Cryptography.MD4Managed::digest
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___digest_8;
public:
inline static int32_t get_offset_of_state_4() { return static_cast<int32_t>(offsetof(MD4Managed_t1FC9A6CDB0A89A71416414689B3A0FF0283759D1, ___state_4)); }
inline UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* get_state_4() const { return ___state_4; }
inline UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB** get_address_of_state_4() { return &___state_4; }
inline void set_state_4(UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* value)
{
___state_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___state_4), (void*)value);
}
inline static int32_t get_offset_of_buffer_5() { return static_cast<int32_t>(offsetof(MD4Managed_t1FC9A6CDB0A89A71416414689B3A0FF0283759D1, ___buffer_5)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_buffer_5() const { return ___buffer_5; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_buffer_5() { return &___buffer_5; }
inline void set_buffer_5(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___buffer_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___buffer_5), (void*)value);
}
inline static int32_t get_offset_of_count_6() { return static_cast<int32_t>(offsetof(MD4Managed_t1FC9A6CDB0A89A71416414689B3A0FF0283759D1, ___count_6)); }
inline UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* get_count_6() const { return ___count_6; }
inline UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB** get_address_of_count_6() { return &___count_6; }
inline void set_count_6(UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* value)
{
___count_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___count_6), (void*)value);
}
inline static int32_t get_offset_of_x_7() { return static_cast<int32_t>(offsetof(MD4Managed_t1FC9A6CDB0A89A71416414689B3A0FF0283759D1, ___x_7)); }
inline UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* get_x_7() const { return ___x_7; }
inline UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB** get_address_of_x_7() { return &___x_7; }
inline void set_x_7(UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* value)
{
___x_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___x_7), (void*)value);
}
inline static int32_t get_offset_of_digest_8() { return static_cast<int32_t>(offsetof(MD4Managed_t1FC9A6CDB0A89A71416414689B3A0FF0283759D1, ___digest_8)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_digest_8() const { return ___digest_8; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_digest_8() { return &___digest_8; }
inline void set_digest_8(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___digest_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___digest_8), (void*)value);
}
};
// Mono.Security.Cryptography.RSAManaged
struct RSAManaged_t386184E253177BF2DD9589A7E9C171DA8E718745 : public RSA_tB6C4B434B2AC02E3F8981DB2908C2018E251D145
{
public:
// System.Boolean Mono.Security.Cryptography.RSAManaged::isCRTpossible
bool ___isCRTpossible_2;
// System.Boolean Mono.Security.Cryptography.RSAManaged::keypairGenerated
bool ___keypairGenerated_3;
// System.Boolean Mono.Security.Cryptography.RSAManaged::m_disposed
bool ___m_disposed_4;
// Mono.Math.BigInteger Mono.Security.Cryptography.RSAManaged::d
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___d_5;
// Mono.Math.BigInteger Mono.Security.Cryptography.RSAManaged::p
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___p_6;
// Mono.Math.BigInteger Mono.Security.Cryptography.RSAManaged::q
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___q_7;
// Mono.Math.BigInteger Mono.Security.Cryptography.RSAManaged::dp
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___dp_8;
// Mono.Math.BigInteger Mono.Security.Cryptography.RSAManaged::dq
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___dq_9;
// Mono.Math.BigInteger Mono.Security.Cryptography.RSAManaged::qInv
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___qInv_10;
// Mono.Math.BigInteger Mono.Security.Cryptography.RSAManaged::n
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___n_11;
// Mono.Math.BigInteger Mono.Security.Cryptography.RSAManaged::e
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___e_12;
// Mono.Security.Cryptography.RSAManaged_KeyGeneratedEventHandler Mono.Security.Cryptography.RSAManaged::KeyGenerated
KeyGeneratedEventHandler_t4696955EF1EA571682FB3F21F5A4CA5E5B6737A9 * ___KeyGenerated_13;
public:
inline static int32_t get_offset_of_isCRTpossible_2() { return static_cast<int32_t>(offsetof(RSAManaged_t386184E253177BF2DD9589A7E9C171DA8E718745, ___isCRTpossible_2)); }
inline bool get_isCRTpossible_2() const { return ___isCRTpossible_2; }
inline bool* get_address_of_isCRTpossible_2() { return &___isCRTpossible_2; }
inline void set_isCRTpossible_2(bool value)
{
___isCRTpossible_2 = value;
}
inline static int32_t get_offset_of_keypairGenerated_3() { return static_cast<int32_t>(offsetof(RSAManaged_t386184E253177BF2DD9589A7E9C171DA8E718745, ___keypairGenerated_3)); }
inline bool get_keypairGenerated_3() const { return ___keypairGenerated_3; }
inline bool* get_address_of_keypairGenerated_3() { return &___keypairGenerated_3; }
inline void set_keypairGenerated_3(bool value)
{
___keypairGenerated_3 = value;
}
inline static int32_t get_offset_of_m_disposed_4() { return static_cast<int32_t>(offsetof(RSAManaged_t386184E253177BF2DD9589A7E9C171DA8E718745, ___m_disposed_4)); }
inline bool get_m_disposed_4() const { return ___m_disposed_4; }
inline bool* get_address_of_m_disposed_4() { return &___m_disposed_4; }
inline void set_m_disposed_4(bool value)
{
___m_disposed_4 = value;
}
inline static int32_t get_offset_of_d_5() { return static_cast<int32_t>(offsetof(RSAManaged_t386184E253177BF2DD9589A7E9C171DA8E718745, ___d_5)); }
inline BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * get_d_5() const { return ___d_5; }
inline BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 ** get_address_of_d_5() { return &___d_5; }
inline void set_d_5(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * value)
{
___d_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___d_5), (void*)value);
}
inline static int32_t get_offset_of_p_6() { return static_cast<int32_t>(offsetof(RSAManaged_t386184E253177BF2DD9589A7E9C171DA8E718745, ___p_6)); }
inline BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * get_p_6() const { return ___p_6; }
inline BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 ** get_address_of_p_6() { return &___p_6; }
inline void set_p_6(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * value)
{
___p_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___p_6), (void*)value);
}
inline static int32_t get_offset_of_q_7() { return static_cast<int32_t>(offsetof(RSAManaged_t386184E253177BF2DD9589A7E9C171DA8E718745, ___q_7)); }
inline BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * get_q_7() const { return ___q_7; }
inline BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 ** get_address_of_q_7() { return &___q_7; }
inline void set_q_7(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * value)
{
___q_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___q_7), (void*)value);
}
inline static int32_t get_offset_of_dp_8() { return static_cast<int32_t>(offsetof(RSAManaged_t386184E253177BF2DD9589A7E9C171DA8E718745, ___dp_8)); }
inline BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * get_dp_8() const { return ___dp_8; }
inline BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 ** get_address_of_dp_8() { return &___dp_8; }
inline void set_dp_8(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * value)
{
___dp_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___dp_8), (void*)value);
}
inline static int32_t get_offset_of_dq_9() { return static_cast<int32_t>(offsetof(RSAManaged_t386184E253177BF2DD9589A7E9C171DA8E718745, ___dq_9)); }
inline BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * get_dq_9() const { return ___dq_9; }
inline BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 ** get_address_of_dq_9() { return &___dq_9; }
inline void set_dq_9(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * value)
{
___dq_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___dq_9), (void*)value);
}
inline static int32_t get_offset_of_qInv_10() { return static_cast<int32_t>(offsetof(RSAManaged_t386184E253177BF2DD9589A7E9C171DA8E718745, ___qInv_10)); }
inline BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * get_qInv_10() const { return ___qInv_10; }
inline BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 ** get_address_of_qInv_10() { return &___qInv_10; }
inline void set_qInv_10(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * value)
{
___qInv_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___qInv_10), (void*)value);
}
inline static int32_t get_offset_of_n_11() { return static_cast<int32_t>(offsetof(RSAManaged_t386184E253177BF2DD9589A7E9C171DA8E718745, ___n_11)); }
inline BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * get_n_11() const { return ___n_11; }
inline BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 ** get_address_of_n_11() { return &___n_11; }
inline void set_n_11(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * value)
{
___n_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___n_11), (void*)value);
}
inline static int32_t get_offset_of_e_12() { return static_cast<int32_t>(offsetof(RSAManaged_t386184E253177BF2DD9589A7E9C171DA8E718745, ___e_12)); }
inline BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * get_e_12() const { return ___e_12; }
inline BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 ** get_address_of_e_12() { return &___e_12; }
inline void set_e_12(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * value)
{
___e_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___e_12), (void*)value);
}
inline static int32_t get_offset_of_KeyGenerated_13() { return static_cast<int32_t>(offsetof(RSAManaged_t386184E253177BF2DD9589A7E9C171DA8E718745, ___KeyGenerated_13)); }
inline KeyGeneratedEventHandler_t4696955EF1EA571682FB3F21F5A4CA5E5B6737A9 * get_KeyGenerated_13() const { return ___KeyGenerated_13; }
inline KeyGeneratedEventHandler_t4696955EF1EA571682FB3F21F5A4CA5E5B6737A9 ** get_address_of_KeyGenerated_13() { return &___KeyGenerated_13; }
inline void set_KeyGenerated_13(KeyGeneratedEventHandler_t4696955EF1EA571682FB3F21F5A4CA5E5B6737A9 * value)
{
___KeyGenerated_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___KeyGenerated_13), (void*)value);
}
};
// Mono.Security.Interface.AlertDescription
struct AlertDescription_t8D4DE3060801044928816134B2292AFB933D40D6
{
public:
// System.Byte Mono.Security.Interface.AlertDescription::value__
uint8_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(AlertDescription_t8D4DE3060801044928816134B2292AFB933D40D6, ___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;
}
};
// Mono.Security.Interface.AlertLevel
struct AlertLevel_t300CD4F0586BC84361B20C4B26C89EC1ECB3FC34
{
public:
// System.Byte Mono.Security.Interface.AlertLevel::value__
uint8_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(AlertLevel_t300CD4F0586BC84361B20C4B26C89EC1ECB3FC34, ___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;
}
};
// Mono.Security.Interface.CipherSuiteCode
struct CipherSuiteCode_t32674B07A5C552605FA138AEACFFA20474A255F1
{
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_t32674B07A5C552605FA138AEACFFA20474A255F1, ___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;
}
};
// Mono.Security.Interface.MonoSslPolicyErrors
struct MonoSslPolicyErrors_t5F32A4E793EAB8B8A8128A6A3E7690D2E1F666C7
{
public:
// System.Int32 Mono.Security.Interface.MonoSslPolicyErrors::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(MonoSslPolicyErrors_t5F32A4E793EAB8B8A8128A6A3E7690D2E1F666C7, ___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;
}
};
// Mono.Security.Interface.TlsProtocols
struct TlsProtocols_t25D1B0EFE5CC77B30D19258E7AC462AB4D828163
{
public:
// System.Int32 Mono.Security.Interface.TlsProtocols::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TlsProtocols_t25D1B0EFE5CC77B30D19258E7AC462AB4D828163, ___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;
}
};
// Mono.Security.Protocol.Ntlm.NtlmAuthLevel
struct NtlmAuthLevel_tF1354DE8BF43C36E20D475A077E035BB11936015
{
public:
// System.Int32 Mono.Security.Protocol.Ntlm.NtlmAuthLevel::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(NtlmAuthLevel_tF1354DE8BF43C36E20D475A077E035BB11936015, ___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;
}
};
// Mono.Security.Protocol.Ntlm.NtlmFlags
struct NtlmFlags_t9AC7D2604BC2E16EDEF1C9D2066E6BEC0D8A1578
{
public:
// System.Int32 Mono.Security.Protocol.Ntlm.NtlmFlags::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(NtlmFlags_t9AC7D2604BC2E16EDEF1C9D2066E6BEC0D8A1578, ___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;
}
};
// Mono.Security.X509.X509Certificate
struct X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B : public RuntimeObject
{
public:
// Mono.Security.ASN1 Mono.Security.X509.X509Certificate::decoder
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * ___decoder_0;
// System.Byte[] Mono.Security.X509.X509Certificate::m_encodedcert
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___m_encodedcert_1;
// System.DateTime Mono.Security.X509.X509Certificate::m_from
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___m_from_2;
// System.DateTime Mono.Security.X509.X509Certificate::m_until
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___m_until_3;
// Mono.Security.ASN1 Mono.Security.X509.X509Certificate::issuer
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * ___issuer_4;
// System.String Mono.Security.X509.X509Certificate::m_issuername
String_t* ___m_issuername_5;
// System.String Mono.Security.X509.X509Certificate::m_keyalgo
String_t* ___m_keyalgo_6;
// System.Byte[] Mono.Security.X509.X509Certificate::m_keyalgoparams
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___m_keyalgoparams_7;
// Mono.Security.ASN1 Mono.Security.X509.X509Certificate::subject
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * ___subject_8;
// System.String Mono.Security.X509.X509Certificate::m_subject
String_t* ___m_subject_9;
// System.Byte[] Mono.Security.X509.X509Certificate::m_publickey
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___m_publickey_10;
// System.Byte[] Mono.Security.X509.X509Certificate::signature
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___signature_11;
// System.String Mono.Security.X509.X509Certificate::m_signaturealgo
String_t* ___m_signaturealgo_12;
// System.Byte[] Mono.Security.X509.X509Certificate::m_signaturealgoparams
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___m_signaturealgoparams_13;
// System.Security.Cryptography.RSA Mono.Security.X509.X509Certificate::_rsa
RSA_tB6C4B434B2AC02E3F8981DB2908C2018E251D145 * ____rsa_14;
// System.Security.Cryptography.DSA Mono.Security.X509.X509Certificate::_dsa
DSA_t932F4A94DD2B782BFFC197544398826E6CDB64CF * ____dsa_15;
// System.Int32 Mono.Security.X509.X509Certificate::version
int32_t ___version_16;
// System.Byte[] Mono.Security.X509.X509Certificate::serialnumber
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___serialnumber_17;
// System.Byte[] Mono.Security.X509.X509Certificate::issuerUniqueID
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___issuerUniqueID_18;
// System.Byte[] Mono.Security.X509.X509Certificate::subjectUniqueID
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___subjectUniqueID_19;
// Mono.Security.X509.X509ExtensionCollection Mono.Security.X509.X509Certificate::extensions
X509ExtensionCollection_t64150C4CB662DB5B4A434CC41C612FE573707D19 * ___extensions_20;
public:
inline static int32_t get_offset_of_decoder_0() { return static_cast<int32_t>(offsetof(X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B, ___decoder_0)); }
inline ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * get_decoder_0() const { return ___decoder_0; }
inline ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E ** get_address_of_decoder_0() { return &___decoder_0; }
inline void set_decoder_0(ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * value)
{
___decoder_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___decoder_0), (void*)value);
}
inline static int32_t get_offset_of_m_encodedcert_1() { return static_cast<int32_t>(offsetof(X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B, ___m_encodedcert_1)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_m_encodedcert_1() const { return ___m_encodedcert_1; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_m_encodedcert_1() { return &___m_encodedcert_1; }
inline void set_m_encodedcert_1(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___m_encodedcert_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_encodedcert_1), (void*)value);
}
inline static int32_t get_offset_of_m_from_2() { return static_cast<int32_t>(offsetof(X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B, ___m_from_2)); }
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 get_m_from_2() const { return ___m_from_2; }
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * get_address_of_m_from_2() { return &___m_from_2; }
inline void set_m_from_2(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 value)
{
___m_from_2 = value;
}
inline static int32_t get_offset_of_m_until_3() { return static_cast<int32_t>(offsetof(X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B, ___m_until_3)); }
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 get_m_until_3() const { return ___m_until_3; }
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * get_address_of_m_until_3() { return &___m_until_3; }
inline void set_m_until_3(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 value)
{
___m_until_3 = value;
}
inline static int32_t get_offset_of_issuer_4() { return static_cast<int32_t>(offsetof(X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B, ___issuer_4)); }
inline ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * get_issuer_4() const { return ___issuer_4; }
inline ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E ** get_address_of_issuer_4() { return &___issuer_4; }
inline void set_issuer_4(ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * value)
{
___issuer_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___issuer_4), (void*)value);
}
inline static int32_t get_offset_of_m_issuername_5() { return static_cast<int32_t>(offsetof(X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B, ___m_issuername_5)); }
inline String_t* get_m_issuername_5() const { return ___m_issuername_5; }
inline String_t** get_address_of_m_issuername_5() { return &___m_issuername_5; }
inline void set_m_issuername_5(String_t* value)
{
___m_issuername_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_issuername_5), (void*)value);
}
inline static int32_t get_offset_of_m_keyalgo_6() { return static_cast<int32_t>(offsetof(X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B, ___m_keyalgo_6)); }
inline String_t* get_m_keyalgo_6() const { return ___m_keyalgo_6; }
inline String_t** get_address_of_m_keyalgo_6() { return &___m_keyalgo_6; }
inline void set_m_keyalgo_6(String_t* value)
{
___m_keyalgo_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_keyalgo_6), (void*)value);
}
inline static int32_t get_offset_of_m_keyalgoparams_7() { return static_cast<int32_t>(offsetof(X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B, ___m_keyalgoparams_7)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_m_keyalgoparams_7() const { return ___m_keyalgoparams_7; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_m_keyalgoparams_7() { return &___m_keyalgoparams_7; }
inline void set_m_keyalgoparams_7(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___m_keyalgoparams_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_keyalgoparams_7), (void*)value);
}
inline static int32_t get_offset_of_subject_8() { return static_cast<int32_t>(offsetof(X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B, ___subject_8)); }
inline ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * get_subject_8() const { return ___subject_8; }
inline ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E ** get_address_of_subject_8() { return &___subject_8; }
inline void set_subject_8(ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * value)
{
___subject_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___subject_8), (void*)value);
}
inline static int32_t get_offset_of_m_subject_9() { return static_cast<int32_t>(offsetof(X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B, ___m_subject_9)); }
inline String_t* get_m_subject_9() const { return ___m_subject_9; }
inline String_t** get_address_of_m_subject_9() { return &___m_subject_9; }
inline void set_m_subject_9(String_t* value)
{
___m_subject_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_subject_9), (void*)value);
}
inline static int32_t get_offset_of_m_publickey_10() { return static_cast<int32_t>(offsetof(X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B, ___m_publickey_10)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_m_publickey_10() const { return ___m_publickey_10; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_m_publickey_10() { return &___m_publickey_10; }
inline void set_m_publickey_10(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___m_publickey_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_publickey_10), (void*)value);
}
inline static int32_t get_offset_of_signature_11() { return static_cast<int32_t>(offsetof(X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B, ___signature_11)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_signature_11() const { return ___signature_11; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_signature_11() { return &___signature_11; }
inline void set_signature_11(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___signature_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___signature_11), (void*)value);
}
inline static int32_t get_offset_of_m_signaturealgo_12() { return static_cast<int32_t>(offsetof(X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B, ___m_signaturealgo_12)); }
inline String_t* get_m_signaturealgo_12() const { return ___m_signaturealgo_12; }
inline String_t** get_address_of_m_signaturealgo_12() { return &___m_signaturealgo_12; }
inline void set_m_signaturealgo_12(String_t* value)
{
___m_signaturealgo_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_signaturealgo_12), (void*)value);
}
inline static int32_t get_offset_of_m_signaturealgoparams_13() { return static_cast<int32_t>(offsetof(X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B, ___m_signaturealgoparams_13)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_m_signaturealgoparams_13() const { return ___m_signaturealgoparams_13; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_m_signaturealgoparams_13() { return &___m_signaturealgoparams_13; }
inline void set_m_signaturealgoparams_13(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___m_signaturealgoparams_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_signaturealgoparams_13), (void*)value);
}
inline static int32_t get_offset_of__rsa_14() { return static_cast<int32_t>(offsetof(X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B, ____rsa_14)); }
inline RSA_tB6C4B434B2AC02E3F8981DB2908C2018E251D145 * get__rsa_14() const { return ____rsa_14; }
inline RSA_tB6C4B434B2AC02E3F8981DB2908C2018E251D145 ** get_address_of__rsa_14() { return &____rsa_14; }
inline void set__rsa_14(RSA_tB6C4B434B2AC02E3F8981DB2908C2018E251D145 * value)
{
____rsa_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&____rsa_14), (void*)value);
}
inline static int32_t get_offset_of__dsa_15() { return static_cast<int32_t>(offsetof(X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B, ____dsa_15)); }
inline DSA_t932F4A94DD2B782BFFC197544398826E6CDB64CF * get__dsa_15() const { return ____dsa_15; }
inline DSA_t932F4A94DD2B782BFFC197544398826E6CDB64CF ** get_address_of__dsa_15() { return &____dsa_15; }
inline void set__dsa_15(DSA_t932F4A94DD2B782BFFC197544398826E6CDB64CF * value)
{
____dsa_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&____dsa_15), (void*)value);
}
inline static int32_t get_offset_of_version_16() { return static_cast<int32_t>(offsetof(X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B, ___version_16)); }
inline int32_t get_version_16() const { return ___version_16; }
inline int32_t* get_address_of_version_16() { return &___version_16; }
inline void set_version_16(int32_t value)
{
___version_16 = value;
}
inline static int32_t get_offset_of_serialnumber_17() { return static_cast<int32_t>(offsetof(X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B, ___serialnumber_17)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_serialnumber_17() const { return ___serialnumber_17; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_serialnumber_17() { return &___serialnumber_17; }
inline void set_serialnumber_17(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___serialnumber_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&___serialnumber_17), (void*)value);
}
inline static int32_t get_offset_of_issuerUniqueID_18() { return static_cast<int32_t>(offsetof(X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B, ___issuerUniqueID_18)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_issuerUniqueID_18() const { return ___issuerUniqueID_18; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_issuerUniqueID_18() { return &___issuerUniqueID_18; }
inline void set_issuerUniqueID_18(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___issuerUniqueID_18 = value;
Il2CppCodeGenWriteBarrier((void**)(&___issuerUniqueID_18), (void*)value);
}
inline static int32_t get_offset_of_subjectUniqueID_19() { return static_cast<int32_t>(offsetof(X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B, ___subjectUniqueID_19)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_subjectUniqueID_19() const { return ___subjectUniqueID_19; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_subjectUniqueID_19() { return &___subjectUniqueID_19; }
inline void set_subjectUniqueID_19(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___subjectUniqueID_19 = value;
Il2CppCodeGenWriteBarrier((void**)(&___subjectUniqueID_19), (void*)value);
}
inline static int32_t get_offset_of_extensions_20() { return static_cast<int32_t>(offsetof(X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B, ___extensions_20)); }
inline X509ExtensionCollection_t64150C4CB662DB5B4A434CC41C612FE573707D19 * get_extensions_20() const { return ___extensions_20; }
inline X509ExtensionCollection_t64150C4CB662DB5B4A434CC41C612FE573707D19 ** get_address_of_extensions_20() { return &___extensions_20; }
inline void set_extensions_20(X509ExtensionCollection_t64150C4CB662DB5B4A434CC41C612FE573707D19 * value)
{
___extensions_20 = value;
Il2CppCodeGenWriteBarrier((void**)(&___extensions_20), (void*)value);
}
};
struct X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B_StaticFields
{
public:
// System.String Mono.Security.X509.X509Certificate::encoding_error
String_t* ___encoding_error_21;
public:
inline static int32_t get_offset_of_encoding_error_21() { return static_cast<int32_t>(offsetof(X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B_StaticFields, ___encoding_error_21)); }
inline String_t* get_encoding_error_21() const { return ___encoding_error_21; }
inline String_t** get_address_of_encoding_error_21() { return &___encoding_error_21; }
inline void set_encoding_error_21(String_t* value)
{
___encoding_error_21 = value;
Il2CppCodeGenWriteBarrier((void**)(&___encoding_error_21), (void*)value);
}
};
// System.Delegate
struct Delegate_t : 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_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___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_t, ___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_t, ___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_t, ___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((void**)(&___m_target_2), (void*)value);
}
inline static int32_t get_offset_of_method_3() { return static_cast<int32_t>(offsetof(Delegate_t, ___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_t, ___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_t, ___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_t, ___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_t, ___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((void**)(&___method_info_7), (void*)value);
}
inline static int32_t get_offset_of_original_method_info_8() { return static_cast<int32_t>(offsetof(Delegate_t, ___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((void**)(&___original_method_info_8), (void*)value);
}
inline static int32_t get_offset_of_data_9() { return static_cast<int32_t>(offsetof(Delegate_t, ___data_9)); }
inline DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * get_data_9() const { return ___data_9; }
inline DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE ** get_address_of_data_9() { return &___data_9; }
inline void set_data_9(DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * value)
{
___data_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___data_9), (void*)value);
}
inline static int32_t get_offset_of_method_is_virtual_10() { return static_cast<int32_t>(offsetof(Delegate_t, ___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;
}
};
// Native definition for P/Invoke marshalling of System.Delegate
struct Delegate_t_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_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___data_9;
int32_t ___method_is_virtual_10;
};
// Native definition for COM marshalling of System.Delegate
struct Delegate_t_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_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___data_9;
int32_t ___method_is_virtual_10;
};
// 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_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13;
// System.Diagnostics.StackTrace[] System.Exception::captured_traces
StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14;
// System.IntPtr[] System.Exception::native_trace_ips
IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* ___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((void**)(&____className_1), (void*)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((void**)(&____message_2), (void*)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((void**)(&____data_3), (void*)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((void**)(&____innerException_4), (void*)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((void**)(&____helpURL_5), (void*)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((void**)(&____stackTrace_6), (void*)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((void**)(&____stackTraceString_7), (void*)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((void**)(&____remoteStackTraceString_8), (void*)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((void**)(&____dynamicMethods_10), (void*)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((void**)(&____source_12), (void*)value);
}
inline static int32_t get_offset_of__safeSerializationManager_13() { return static_cast<int32_t>(offsetof(Exception_t, ____safeSerializationManager_13)); }
inline SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * get__safeSerializationManager_13() const { return ____safeSerializationManager_13; }
inline SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 ** get_address_of__safeSerializationManager_13() { return &____safeSerializationManager_13; }
inline void set__safeSerializationManager_13(SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * value)
{
____safeSerializationManager_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&____safeSerializationManager_13), (void*)value);
}
inline static int32_t get_offset_of_captured_traces_14() { return static_cast<int32_t>(offsetof(Exception_t, ___captured_traces_14)); }
inline StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* get_captured_traces_14() const { return ___captured_traces_14; }
inline StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196** get_address_of_captured_traces_14() { return &___captured_traces_14; }
inline void set_captured_traces_14(StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* value)
{
___captured_traces_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___captured_traces_14), (void*)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_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* get_native_trace_ips_15() const { return ___native_trace_ips_15; }
inline IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD** get_address_of_native_trace_ips_15() { return &___native_trace_ips_15; }
inline void set_native_trace_ips_15(IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* value)
{
___native_trace_ips_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___native_trace_ips_15), (void*)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((void**)(&___s_EDILock_0), (void*)value);
}
};
// 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_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13;
StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14;
Il2CppSafeArray/*NONE*/* ___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_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13;
StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14;
Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
};
// System.Globalization.DateTimeStyles
struct DateTimeStyles_tD09B34DB3747CD91D8AAA1238C7595845715301E
{
public:
// System.Int32 System.Globalization.DateTimeStyles::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(DateTimeStyles_tD09B34DB3747CD91D8AAA1238C7595845715301E, ___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;
}
};
// System.Nullable`1<System.DateTime>
struct Nullable_1_t3290384E361396B3724B88B498CBF637D7E87B78
{
public:
// T System.Nullable`1::value
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___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_t3290384E361396B3724B88B498CBF637D7E87B78, ___value_0)); }
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 get_value_0() const { return ___value_0; }
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * get_address_of_value_0() { return &___value_0; }
inline void set_value_0(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 value)
{
___value_0 = value;
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_t3290384E361396B3724B88B498CBF637D7E87B78, ___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;
}
};
// System.Reflection.BindingFlags
struct BindingFlags_tE35C91D046E63A1B92BB9AB909FCF9DA84379ED0
{
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_tE35C91D046E63A1B92BB9AB909FCF9DA84379ED0, ___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;
}
};
// System.RuntimeFieldHandle
struct RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF
{
public:
// System.IntPtr System.RuntimeFieldHandle::value
intptr_t ___value_0;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF, ___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;
}
};
// System.RuntimeTypeHandle
struct RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D
{
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_t7B542280A22F0EC4EAC2061C29178845847A8B2D, ___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;
}
};
// System.Security.Cryptography.CipherMode
struct CipherMode_t1DC3069D617AC3D17A2608F5BB36C0F115D229DF
{
public:
// System.Int32 System.Security.Cryptography.CipherMode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CipherMode_t1DC3069D617AC3D17A2608F5BB36C0F115D229DF, ___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;
}
};
// System.Security.Cryptography.CspProviderFlags
struct CspProviderFlags_t58BDA302C5856D2AA7A41E97CAB5BDD0516571F4
{
public:
// System.Int32 System.Security.Cryptography.CspProviderFlags::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CspProviderFlags_t58BDA302C5856D2AA7A41E97CAB5BDD0516571F4, ___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;
}
};
// System.Security.Cryptography.HMAC
struct HMAC_t85BE56AD7946F3A3D42B52448301D8995DEB7C90 : public KeyedHashAlgorithm_t83CFA2CA5A4F0F39B747E61D013CB5EB919D218B
{
public:
// System.Int32 System.Security.Cryptography.HMAC::blockSizeValue
int32_t ___blockSizeValue_5;
// System.String System.Security.Cryptography.HMAC::m_hashName
String_t* ___m_hashName_6;
// System.Security.Cryptography.HashAlgorithm System.Security.Cryptography.HMAC::m_hash1
HashAlgorithm_t65659695B16C0BBF05707BF45191A97DC156D6BA * ___m_hash1_7;
// System.Security.Cryptography.HashAlgorithm System.Security.Cryptography.HMAC::m_hash2
HashAlgorithm_t65659695B16C0BBF05707BF45191A97DC156D6BA * ___m_hash2_8;
// System.Byte[] System.Security.Cryptography.HMAC::m_inner
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___m_inner_9;
// System.Byte[] System.Security.Cryptography.HMAC::m_outer
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___m_outer_10;
// System.Boolean System.Security.Cryptography.HMAC::m_hashing
bool ___m_hashing_11;
public:
inline static int32_t get_offset_of_blockSizeValue_5() { return static_cast<int32_t>(offsetof(HMAC_t85BE56AD7946F3A3D42B52448301D8995DEB7C90, ___blockSizeValue_5)); }
inline int32_t get_blockSizeValue_5() const { return ___blockSizeValue_5; }
inline int32_t* get_address_of_blockSizeValue_5() { return &___blockSizeValue_5; }
inline void set_blockSizeValue_5(int32_t value)
{
___blockSizeValue_5 = value;
}
inline static int32_t get_offset_of_m_hashName_6() { return static_cast<int32_t>(offsetof(HMAC_t85BE56AD7946F3A3D42B52448301D8995DEB7C90, ___m_hashName_6)); }
inline String_t* get_m_hashName_6() const { return ___m_hashName_6; }
inline String_t** get_address_of_m_hashName_6() { return &___m_hashName_6; }
inline void set_m_hashName_6(String_t* value)
{
___m_hashName_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_hashName_6), (void*)value);
}
inline static int32_t get_offset_of_m_hash1_7() { return static_cast<int32_t>(offsetof(HMAC_t85BE56AD7946F3A3D42B52448301D8995DEB7C90, ___m_hash1_7)); }
inline HashAlgorithm_t65659695B16C0BBF05707BF45191A97DC156D6BA * get_m_hash1_7() const { return ___m_hash1_7; }
inline HashAlgorithm_t65659695B16C0BBF05707BF45191A97DC156D6BA ** get_address_of_m_hash1_7() { return &___m_hash1_7; }
inline void set_m_hash1_7(HashAlgorithm_t65659695B16C0BBF05707BF45191A97DC156D6BA * value)
{
___m_hash1_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_hash1_7), (void*)value);
}
inline static int32_t get_offset_of_m_hash2_8() { return static_cast<int32_t>(offsetof(HMAC_t85BE56AD7946F3A3D42B52448301D8995DEB7C90, ___m_hash2_8)); }
inline HashAlgorithm_t65659695B16C0BBF05707BF45191A97DC156D6BA * get_m_hash2_8() const { return ___m_hash2_8; }
inline HashAlgorithm_t65659695B16C0BBF05707BF45191A97DC156D6BA ** get_address_of_m_hash2_8() { return &___m_hash2_8; }
inline void set_m_hash2_8(HashAlgorithm_t65659695B16C0BBF05707BF45191A97DC156D6BA * value)
{
___m_hash2_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_hash2_8), (void*)value);
}
inline static int32_t get_offset_of_m_inner_9() { return static_cast<int32_t>(offsetof(HMAC_t85BE56AD7946F3A3D42B52448301D8995DEB7C90, ___m_inner_9)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_m_inner_9() const { return ___m_inner_9; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_m_inner_9() { return &___m_inner_9; }
inline void set_m_inner_9(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___m_inner_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_inner_9), (void*)value);
}
inline static int32_t get_offset_of_m_outer_10() { return static_cast<int32_t>(offsetof(HMAC_t85BE56AD7946F3A3D42B52448301D8995DEB7C90, ___m_outer_10)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_m_outer_10() const { return ___m_outer_10; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_m_outer_10() { return &___m_outer_10; }
inline void set_m_outer_10(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___m_outer_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_outer_10), (void*)value);
}
inline static int32_t get_offset_of_m_hashing_11() { return static_cast<int32_t>(offsetof(HMAC_t85BE56AD7946F3A3D42B52448301D8995DEB7C90, ___m_hashing_11)); }
inline bool get_m_hashing_11() const { return ___m_hashing_11; }
inline bool* get_address_of_m_hashing_11() { return &___m_hashing_11; }
inline void set_m_hashing_11(bool value)
{
___m_hashing_11 = value;
}
};
// System.Security.Cryptography.PaddingMode
struct PaddingMode_tA6F228B2795D29C9554F2D6824DB9FF67519A0E0
{
public:
// System.Int32 System.Security.Cryptography.PaddingMode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(PaddingMode_tA6F228B2795D29C9554F2D6824DB9FF67519A0E0, ___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;
}
};
// Mono.Security.Interface.Alert
struct Alert_tABF269545F2C583CCA47FF574E612DDAF232944E : public RuntimeObject
{
public:
// Mono.Security.Interface.AlertLevel Mono.Security.Interface.Alert::level
uint8_t ___level_0;
// Mono.Security.Interface.AlertDescription Mono.Security.Interface.Alert::description
uint8_t ___description_1;
public:
inline static int32_t get_offset_of_level_0() { return static_cast<int32_t>(offsetof(Alert_tABF269545F2C583CCA47FF574E612DDAF232944E, ___level_0)); }
inline uint8_t get_level_0() const { return ___level_0; }
inline uint8_t* get_address_of_level_0() { return &___level_0; }
inline void set_level_0(uint8_t value)
{
___level_0 = value;
}
inline static int32_t get_offset_of_description_1() { return static_cast<int32_t>(offsetof(Alert_tABF269545F2C583CCA47FF574E612DDAF232944E, ___description_1)); }
inline uint8_t get_description_1() const { return ___description_1; }
inline uint8_t* get_address_of_description_1() { return &___description_1; }
inline void set_description_1(uint8_t value)
{
___description_1 = value;
}
};
// Mono.Security.Interface.MonoTlsConnectionInfo
struct MonoTlsConnectionInfo_tE32F709ECF061DD150F45384869CE8431BD7A74D : public RuntimeObject
{
public:
// Mono.Security.Interface.CipherSuiteCode Mono.Security.Interface.MonoTlsConnectionInfo::<CipherSuiteCode>k__BackingField
uint16_t ___U3CCipherSuiteCodeU3Ek__BackingField_0;
// Mono.Security.Interface.TlsProtocols Mono.Security.Interface.MonoTlsConnectionInfo::<ProtocolVersion>k__BackingField
int32_t ___U3CProtocolVersionU3Ek__BackingField_1;
// System.String Mono.Security.Interface.MonoTlsConnectionInfo::<PeerDomainName>k__BackingField
String_t* ___U3CPeerDomainNameU3Ek__BackingField_2;
public:
inline static int32_t get_offset_of_U3CCipherSuiteCodeU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(MonoTlsConnectionInfo_tE32F709ECF061DD150F45384869CE8431BD7A74D, ___U3CCipherSuiteCodeU3Ek__BackingField_0)); }
inline uint16_t get_U3CCipherSuiteCodeU3Ek__BackingField_0() const { return ___U3CCipherSuiteCodeU3Ek__BackingField_0; }
inline uint16_t* get_address_of_U3CCipherSuiteCodeU3Ek__BackingField_0() { return &___U3CCipherSuiteCodeU3Ek__BackingField_0; }
inline void set_U3CCipherSuiteCodeU3Ek__BackingField_0(uint16_t value)
{
___U3CCipherSuiteCodeU3Ek__BackingField_0 = value;
}
inline static int32_t get_offset_of_U3CProtocolVersionU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(MonoTlsConnectionInfo_tE32F709ECF061DD150F45384869CE8431BD7A74D, ___U3CProtocolVersionU3Ek__BackingField_1)); }
inline int32_t get_U3CProtocolVersionU3Ek__BackingField_1() const { return ___U3CProtocolVersionU3Ek__BackingField_1; }
inline int32_t* get_address_of_U3CProtocolVersionU3Ek__BackingField_1() { return &___U3CProtocolVersionU3Ek__BackingField_1; }
inline void set_U3CProtocolVersionU3Ek__BackingField_1(int32_t value)
{
___U3CProtocolVersionU3Ek__BackingField_1 = value;
}
inline static int32_t get_offset_of_U3CPeerDomainNameU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(MonoTlsConnectionInfo_tE32F709ECF061DD150F45384869CE8431BD7A74D, ___U3CPeerDomainNameU3Ek__BackingField_2)); }
inline String_t* get_U3CPeerDomainNameU3Ek__BackingField_2() const { return ___U3CPeerDomainNameU3Ek__BackingField_2; }
inline String_t** get_address_of_U3CPeerDomainNameU3Ek__BackingField_2() { return &___U3CPeerDomainNameU3Ek__BackingField_2; }
inline void set_U3CPeerDomainNameU3Ek__BackingField_2(String_t* value)
{
___U3CPeerDomainNameU3Ek__BackingField_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CPeerDomainNameU3Ek__BackingField_2), (void*)value);
}
};
// Mono.Security.Interface.TlsException
struct TlsException_t774465EA64E3ADAAE3DB21835DD9AB8C40247F91 : public Exception_t
{
public:
// Mono.Security.Interface.Alert Mono.Security.Interface.TlsException::alert
Alert_tABF269545F2C583CCA47FF574E612DDAF232944E * ___alert_17;
public:
inline static int32_t get_offset_of_alert_17() { return static_cast<int32_t>(offsetof(TlsException_t774465EA64E3ADAAE3DB21835DD9AB8C40247F91, ___alert_17)); }
inline Alert_tABF269545F2C583CCA47FF574E612DDAF232944E * get_alert_17() const { return ___alert_17; }
inline Alert_tABF269545F2C583CCA47FF574E612DDAF232944E ** get_address_of_alert_17() { return &___alert_17; }
inline void set_alert_17(Alert_tABF269545F2C583CCA47FF574E612DDAF232944E * value)
{
___alert_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&___alert_17), (void*)value);
}
};
// Mono.Security.Protocol.Ntlm.MessageBase
struct MessageBase_t504D166CC4021DEB56DED308D5E82C67F47F26C0 : public RuntimeObject
{
public:
// System.Int32 Mono.Security.Protocol.Ntlm.MessageBase::_type
int32_t ____type_1;
// Mono.Security.Protocol.Ntlm.NtlmFlags Mono.Security.Protocol.Ntlm.MessageBase::_flags
int32_t ____flags_2;
public:
inline static int32_t get_offset_of__type_1() { return static_cast<int32_t>(offsetof(MessageBase_t504D166CC4021DEB56DED308D5E82C67F47F26C0, ____type_1)); }
inline int32_t get__type_1() const { return ____type_1; }
inline int32_t* get_address_of__type_1() { return &____type_1; }
inline void set__type_1(int32_t value)
{
____type_1 = value;
}
inline static int32_t get_offset_of__flags_2() { return static_cast<int32_t>(offsetof(MessageBase_t504D166CC4021DEB56DED308D5E82C67F47F26C0, ____flags_2)); }
inline int32_t get__flags_2() const { return ____flags_2; }
inline int32_t* get_address_of__flags_2() { return &____flags_2; }
inline void set__flags_2(int32_t value)
{
____flags_2 = value;
}
};
struct MessageBase_t504D166CC4021DEB56DED308D5E82C67F47F26C0_StaticFields
{
public:
// System.Byte[] Mono.Security.Protocol.Ntlm.MessageBase::header
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___header_0;
public:
inline static int32_t get_offset_of_header_0() { return static_cast<int32_t>(offsetof(MessageBase_t504D166CC4021DEB56DED308D5E82C67F47F26C0_StaticFields, ___header_0)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_header_0() const { return ___header_0; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_header_0() { return &___header_0; }
inline void set_header_0(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___header_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___header_0), (void*)value);
}
};
// Mono.Security.Protocol.Ntlm.NtlmSettings
struct NtlmSettings_tC673E811873A17EA73FCA0EFD6D33839B5036009 : public RuntimeObject
{
public:
public:
};
struct NtlmSettings_tC673E811873A17EA73FCA0EFD6D33839B5036009_StaticFields
{
public:
// Mono.Security.Protocol.Ntlm.NtlmAuthLevel Mono.Security.Protocol.Ntlm.NtlmSettings::defaultAuthLevel
int32_t ___defaultAuthLevel_0;
public:
inline static int32_t get_offset_of_defaultAuthLevel_0() { return static_cast<int32_t>(offsetof(NtlmSettings_tC673E811873A17EA73FCA0EFD6D33839B5036009_StaticFields, ___defaultAuthLevel_0)); }
inline int32_t get_defaultAuthLevel_0() const { return ___defaultAuthLevel_0; }
inline int32_t* get_address_of_defaultAuthLevel_0() { return &___defaultAuthLevel_0; }
inline void set_defaultAuthLevel_0(int32_t value)
{
___defaultAuthLevel_0 = value;
}
};
// System.MulticastDelegate
struct MulticastDelegate_t : public Delegate_t
{
public:
// System.Delegate[] System.MulticastDelegate::delegates
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* ___delegates_11;
public:
inline static int32_t get_offset_of_delegates_11() { return static_cast<int32_t>(offsetof(MulticastDelegate_t, ___delegates_11)); }
inline DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* get_delegates_11() const { return ___delegates_11; }
inline DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86** get_address_of_delegates_11() { return &___delegates_11; }
inline void set_delegates_11(DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* value)
{
___delegates_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___delegates_11), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.MulticastDelegate
struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke
{
Delegate_t_marshaled_pinvoke** ___delegates_11;
};
// Native definition for COM marshalling of System.MulticastDelegate
struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com
{
Delegate_t_marshaled_com** ___delegates_11;
};
// System.Nullable`1<Mono.Security.Interface.MonoSslPolicyErrors>
struct Nullable_1_t87E3837BC1E3397FF9051586CE8E2328CEA1F1D2
{
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_t87E3837BC1E3397FF9051586CE8E2328CEA1F1D2, ___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_t87E3837BC1E3397FF9051586CE8E2328CEA1F1D2, ___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;
}
};
// System.Nullable`1<Mono.Security.Interface.TlsProtocols>
struct Nullable_1_t601798BE10C3F3F37B6755E475BB1B3760DCBB10
{
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_t601798BE10C3F3F37B6755E475BB1B3760DCBB10, ___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_t601798BE10C3F3F37B6755E475BB1B3760DCBB10, ___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;
}
};
// System.Security.Cryptography.HMACMD5
struct HMACMD5_t8C6693E41EEA9BF26BBAF880B405CC170C43F11B : public HMAC_t85BE56AD7946F3A3D42B52448301D8995DEB7C90
{
public:
public:
};
// System.Security.Cryptography.HMACSHA1
struct HMACSHA1_t4E10C259BBC525A8E0ABEAE9EF01C8589F51FEE5 : public HMAC_t85BE56AD7946F3A3D42B52448301D8995DEB7C90
{
public:
public:
};
// System.Security.Cryptography.RSACryptoServiceProvider
struct RSACryptoServiceProvider_t6DC0FC3205BA6CDCA4FF2AEEF566D8F0CCE26AD4 : public RSA_tB6C4B434B2AC02E3F8981DB2908C2018E251D145
{
public:
// Mono.Security.Cryptography.KeyPairPersistence System.Security.Cryptography.RSACryptoServiceProvider::store
KeyPairPersistence_t5C070E8D158094F7D0CC5D591F30EDFFB39849A2 * ___store_3;
// System.Boolean System.Security.Cryptography.RSACryptoServiceProvider::persistKey
bool ___persistKey_4;
// System.Boolean System.Security.Cryptography.RSACryptoServiceProvider::persisted
bool ___persisted_5;
// System.Boolean System.Security.Cryptography.RSACryptoServiceProvider::privateKeyExportable
bool ___privateKeyExportable_6;
// System.Boolean System.Security.Cryptography.RSACryptoServiceProvider::m_disposed
bool ___m_disposed_7;
// Mono.Security.Cryptography.RSAManaged System.Security.Cryptography.RSACryptoServiceProvider::rsa
RSAManaged_t7FC74A986C888D9301EC82EBE4A37C293CDA963A * ___rsa_8;
public:
inline static int32_t get_offset_of_store_3() { return static_cast<int32_t>(offsetof(RSACryptoServiceProvider_t6DC0FC3205BA6CDCA4FF2AEEF566D8F0CCE26AD4, ___store_3)); }
inline KeyPairPersistence_t5C070E8D158094F7D0CC5D591F30EDFFB39849A2 * get_store_3() const { return ___store_3; }
inline KeyPairPersistence_t5C070E8D158094F7D0CC5D591F30EDFFB39849A2 ** get_address_of_store_3() { return &___store_3; }
inline void set_store_3(KeyPairPersistence_t5C070E8D158094F7D0CC5D591F30EDFFB39849A2 * value)
{
___store_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___store_3), (void*)value);
}
inline static int32_t get_offset_of_persistKey_4() { return static_cast<int32_t>(offsetof(RSACryptoServiceProvider_t6DC0FC3205BA6CDCA4FF2AEEF566D8F0CCE26AD4, ___persistKey_4)); }
inline bool get_persistKey_4() const { return ___persistKey_4; }
inline bool* get_address_of_persistKey_4() { return &___persistKey_4; }
inline void set_persistKey_4(bool value)
{
___persistKey_4 = value;
}
inline static int32_t get_offset_of_persisted_5() { return static_cast<int32_t>(offsetof(RSACryptoServiceProvider_t6DC0FC3205BA6CDCA4FF2AEEF566D8F0CCE26AD4, ___persisted_5)); }
inline bool get_persisted_5() const { return ___persisted_5; }
inline bool* get_address_of_persisted_5() { return &___persisted_5; }
inline void set_persisted_5(bool value)
{
___persisted_5 = value;
}
inline static int32_t get_offset_of_privateKeyExportable_6() { return static_cast<int32_t>(offsetof(RSACryptoServiceProvider_t6DC0FC3205BA6CDCA4FF2AEEF566D8F0CCE26AD4, ___privateKeyExportable_6)); }
inline bool get_privateKeyExportable_6() const { return ___privateKeyExportable_6; }
inline bool* get_address_of_privateKeyExportable_6() { return &___privateKeyExportable_6; }
inline void set_privateKeyExportable_6(bool value)
{
___privateKeyExportable_6 = value;
}
inline static int32_t get_offset_of_m_disposed_7() { return static_cast<int32_t>(offsetof(RSACryptoServiceProvider_t6DC0FC3205BA6CDCA4FF2AEEF566D8F0CCE26AD4, ___m_disposed_7)); }
inline bool get_m_disposed_7() const { return ___m_disposed_7; }
inline bool* get_address_of_m_disposed_7() { return &___m_disposed_7; }
inline void set_m_disposed_7(bool value)
{
___m_disposed_7 = value;
}
inline static int32_t get_offset_of_rsa_8() { return static_cast<int32_t>(offsetof(RSACryptoServiceProvider_t6DC0FC3205BA6CDCA4FF2AEEF566D8F0CCE26AD4, ___rsa_8)); }
inline RSAManaged_t7FC74A986C888D9301EC82EBE4A37C293CDA963A * get_rsa_8() const { return ___rsa_8; }
inline RSAManaged_t7FC74A986C888D9301EC82EBE4A37C293CDA963A ** get_address_of_rsa_8() { return &___rsa_8; }
inline void set_rsa_8(RSAManaged_t7FC74A986C888D9301EC82EBE4A37C293CDA963A * value)
{
___rsa_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___rsa_8), (void*)value);
}
};
struct RSACryptoServiceProvider_t6DC0FC3205BA6CDCA4FF2AEEF566D8F0CCE26AD4_StaticFields
{
public:
// System.Security.Cryptography.CspProviderFlags modreq(System.Runtime.CompilerServices.IsVolatile) System.Security.Cryptography.RSACryptoServiceProvider::s_UseMachineKeyStore
int32_t ___s_UseMachineKeyStore_2;
public:
inline static int32_t get_offset_of_s_UseMachineKeyStore_2() { return static_cast<int32_t>(offsetof(RSACryptoServiceProvider_t6DC0FC3205BA6CDCA4FF2AEEF566D8F0CCE26AD4_StaticFields, ___s_UseMachineKeyStore_2)); }
inline int32_t get_s_UseMachineKeyStore_2() const { return ___s_UseMachineKeyStore_2; }
inline int32_t* get_address_of_s_UseMachineKeyStore_2() { return &___s_UseMachineKeyStore_2; }
inline void set_s_UseMachineKeyStore_2(int32_t value)
{
___s_UseMachineKeyStore_2 = value;
}
};
// System.Security.Cryptography.SymmetricAlgorithm
struct SymmetricAlgorithm_t0A2EC7E7AD8B8976832B4F0AC432B691F862E789 : public RuntimeObject
{
public:
// System.Int32 System.Security.Cryptography.SymmetricAlgorithm::BlockSizeValue
int32_t ___BlockSizeValue_0;
// System.Int32 System.Security.Cryptography.SymmetricAlgorithm::FeedbackSizeValue
int32_t ___FeedbackSizeValue_1;
// System.Byte[] System.Security.Cryptography.SymmetricAlgorithm::IVValue
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___IVValue_2;
// System.Byte[] System.Security.Cryptography.SymmetricAlgorithm::KeyValue
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___KeyValue_3;
// System.Security.Cryptography.KeySizes[] System.Security.Cryptography.SymmetricAlgorithm::LegalBlockSizesValue
KeySizesU5BU5D_t934CCA482596402177BAF86727F169872D74934E* ___LegalBlockSizesValue_4;
// System.Security.Cryptography.KeySizes[] System.Security.Cryptography.SymmetricAlgorithm::LegalKeySizesValue
KeySizesU5BU5D_t934CCA482596402177BAF86727F169872D74934E* ___LegalKeySizesValue_5;
// System.Int32 System.Security.Cryptography.SymmetricAlgorithm::KeySizeValue
int32_t ___KeySizeValue_6;
// System.Security.Cryptography.CipherMode System.Security.Cryptography.SymmetricAlgorithm::ModeValue
int32_t ___ModeValue_7;
// System.Security.Cryptography.PaddingMode System.Security.Cryptography.SymmetricAlgorithm::PaddingValue
int32_t ___PaddingValue_8;
public:
inline static int32_t get_offset_of_BlockSizeValue_0() { return static_cast<int32_t>(offsetof(SymmetricAlgorithm_t0A2EC7E7AD8B8976832B4F0AC432B691F862E789, ___BlockSizeValue_0)); }
inline int32_t get_BlockSizeValue_0() const { return ___BlockSizeValue_0; }
inline int32_t* get_address_of_BlockSizeValue_0() { return &___BlockSizeValue_0; }
inline void set_BlockSizeValue_0(int32_t value)
{
___BlockSizeValue_0 = value;
}
inline static int32_t get_offset_of_FeedbackSizeValue_1() { return static_cast<int32_t>(offsetof(SymmetricAlgorithm_t0A2EC7E7AD8B8976832B4F0AC432B691F862E789, ___FeedbackSizeValue_1)); }
inline int32_t get_FeedbackSizeValue_1() const { return ___FeedbackSizeValue_1; }
inline int32_t* get_address_of_FeedbackSizeValue_1() { return &___FeedbackSizeValue_1; }
inline void set_FeedbackSizeValue_1(int32_t value)
{
___FeedbackSizeValue_1 = value;
}
inline static int32_t get_offset_of_IVValue_2() { return static_cast<int32_t>(offsetof(SymmetricAlgorithm_t0A2EC7E7AD8B8976832B4F0AC432B691F862E789, ___IVValue_2)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_IVValue_2() const { return ___IVValue_2; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_IVValue_2() { return &___IVValue_2; }
inline void set_IVValue_2(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___IVValue_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___IVValue_2), (void*)value);
}
inline static int32_t get_offset_of_KeyValue_3() { return static_cast<int32_t>(offsetof(SymmetricAlgorithm_t0A2EC7E7AD8B8976832B4F0AC432B691F862E789, ___KeyValue_3)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_KeyValue_3() const { return ___KeyValue_3; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_KeyValue_3() { return &___KeyValue_3; }
inline void set_KeyValue_3(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___KeyValue_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___KeyValue_3), (void*)value);
}
inline static int32_t get_offset_of_LegalBlockSizesValue_4() { return static_cast<int32_t>(offsetof(SymmetricAlgorithm_t0A2EC7E7AD8B8976832B4F0AC432B691F862E789, ___LegalBlockSizesValue_4)); }
inline KeySizesU5BU5D_t934CCA482596402177BAF86727F169872D74934E* get_LegalBlockSizesValue_4() const { return ___LegalBlockSizesValue_4; }
inline KeySizesU5BU5D_t934CCA482596402177BAF86727F169872D74934E** get_address_of_LegalBlockSizesValue_4() { return &___LegalBlockSizesValue_4; }
inline void set_LegalBlockSizesValue_4(KeySizesU5BU5D_t934CCA482596402177BAF86727F169872D74934E* value)
{
___LegalBlockSizesValue_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___LegalBlockSizesValue_4), (void*)value);
}
inline static int32_t get_offset_of_LegalKeySizesValue_5() { return static_cast<int32_t>(offsetof(SymmetricAlgorithm_t0A2EC7E7AD8B8976832B4F0AC432B691F862E789, ___LegalKeySizesValue_5)); }
inline KeySizesU5BU5D_t934CCA482596402177BAF86727F169872D74934E* get_LegalKeySizesValue_5() const { return ___LegalKeySizesValue_5; }
inline KeySizesU5BU5D_t934CCA482596402177BAF86727F169872D74934E** get_address_of_LegalKeySizesValue_5() { return &___LegalKeySizesValue_5; }
inline void set_LegalKeySizesValue_5(KeySizesU5BU5D_t934CCA482596402177BAF86727F169872D74934E* value)
{
___LegalKeySizesValue_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___LegalKeySizesValue_5), (void*)value);
}
inline static int32_t get_offset_of_KeySizeValue_6() { return static_cast<int32_t>(offsetof(SymmetricAlgorithm_t0A2EC7E7AD8B8976832B4F0AC432B691F862E789, ___KeySizeValue_6)); }
inline int32_t get_KeySizeValue_6() const { return ___KeySizeValue_6; }
inline int32_t* get_address_of_KeySizeValue_6() { return &___KeySizeValue_6; }
inline void set_KeySizeValue_6(int32_t value)
{
___KeySizeValue_6 = value;
}
inline static int32_t get_offset_of_ModeValue_7() { return static_cast<int32_t>(offsetof(SymmetricAlgorithm_t0A2EC7E7AD8B8976832B4F0AC432B691F862E789, ___ModeValue_7)); }
inline int32_t get_ModeValue_7() const { return ___ModeValue_7; }
inline int32_t* get_address_of_ModeValue_7() { return &___ModeValue_7; }
inline void set_ModeValue_7(int32_t value)
{
___ModeValue_7 = value;
}
inline static int32_t get_offset_of_PaddingValue_8() { return static_cast<int32_t>(offsetof(SymmetricAlgorithm_t0A2EC7E7AD8B8976832B4F0AC432B691F862E789, ___PaddingValue_8)); }
inline int32_t get_PaddingValue_8() const { return ___PaddingValue_8; }
inline int32_t* get_address_of_PaddingValue_8() { return &___PaddingValue_8; }
inline void set_PaddingValue_8(int32_t value)
{
___PaddingValue_8 = value;
}
};
// System.SystemException
struct SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 : public Exception_t
{
public:
public:
};
// System.Type
struct Type_t : public MemberInfo_t
{
public:
// System.RuntimeTypeHandle System.Type::_impl
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D ____impl_9;
public:
inline static int32_t get_offset_of__impl_9() { return static_cast<int32_t>(offsetof(Type_t, ____impl_9)); }
inline RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D get__impl_9() const { return ____impl_9; }
inline RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D * get_address_of__impl_9() { return &____impl_9; }
inline void set__impl_9(RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D value)
{
____impl_9 = value;
}
};
struct Type_t_StaticFields
{
public:
// System.Reflection.MemberFilter System.Type::FilterAttribute
MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * ___FilterAttribute_0;
// System.Reflection.MemberFilter System.Type::FilterName
MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * ___FilterName_1;
// System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase
MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * ___FilterNameIgnoreCase_2;
// System.Object System.Type::Missing
RuntimeObject * ___Missing_3;
// System.Char System.Type::Delimiter
Il2CppChar ___Delimiter_4;
// System.Type[] System.Type::EmptyTypes
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___EmptyTypes_5;
// System.Reflection.Binder System.Type::defaultBinder
Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * ___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_t25C1BD92C42BE94426E300787C13C452CB89B381 * get_FilterAttribute_0() const { return ___FilterAttribute_0; }
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 ** get_address_of_FilterAttribute_0() { return &___FilterAttribute_0; }
inline void set_FilterAttribute_0(MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * value)
{
___FilterAttribute_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FilterAttribute_0), (void*)value);
}
inline static int32_t get_offset_of_FilterName_1() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterName_1)); }
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * get_FilterName_1() const { return ___FilterName_1; }
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 ** get_address_of_FilterName_1() { return &___FilterName_1; }
inline void set_FilterName_1(MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * value)
{
___FilterName_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FilterName_1), (void*)value);
}
inline static int32_t get_offset_of_FilterNameIgnoreCase_2() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterNameIgnoreCase_2)); }
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * get_FilterNameIgnoreCase_2() const { return ___FilterNameIgnoreCase_2; }
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 ** get_address_of_FilterNameIgnoreCase_2() { return &___FilterNameIgnoreCase_2; }
inline void set_FilterNameIgnoreCase_2(MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * value)
{
___FilterNameIgnoreCase_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FilterNameIgnoreCase_2), (void*)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((void**)(&___Missing_3), (void*)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_t7FE623A666B49176DE123306221193E888A12F5F* get_EmptyTypes_5() const { return ___EmptyTypes_5; }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of_EmptyTypes_5() { return &___EmptyTypes_5; }
inline void set_EmptyTypes_5(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* value)
{
___EmptyTypes_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___EmptyTypes_5), (void*)value);
}
inline static int32_t get_offset_of_defaultBinder_6() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___defaultBinder_6)); }
inline Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * get_defaultBinder_6() const { return ___defaultBinder_6; }
inline Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 ** get_address_of_defaultBinder_6() { return &___defaultBinder_6; }
inline void set_defaultBinder_6(Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * value)
{
___defaultBinder_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultBinder_6), (void*)value);
}
};
// Mono.Math.Prime.PrimalityTest
struct PrimalityTest_t86C33A5FB057EA0D357088A56E22FE56B7FA08D9 : public MulticastDelegate_t
{
public:
public:
};
// Mono.Security.Cryptography.RSAManaged_KeyGeneratedEventHandler
struct KeyGeneratedEventHandler_t4696955EF1EA571682FB3F21F5A4CA5E5B6737A9 : public MulticastDelegate_t
{
public:
public:
};
// Mono.Security.Interface.MonoLocalCertificateSelectionCallback
struct MonoLocalCertificateSelectionCallback_t657381EF916D4EDC456FA5A6AC948EFD7A481F0A : public MulticastDelegate_t
{
public:
public:
};
// Mono.Security.Interface.MonoRemoteCertificateValidationCallback
struct MonoRemoteCertificateValidationCallback_t7A8DAD12B70CE3BB19BAAD04F587D5ED02385CC6 : public MulticastDelegate_t
{
public:
public:
};
// Mono.Security.Interface.MonoTlsSettings
struct MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF : public RuntimeObject
{
public:
// Mono.Security.Interface.MonoRemoteCertificateValidationCallback Mono.Security.Interface.MonoTlsSettings::<RemoteCertificateValidationCallback>k__BackingField
MonoRemoteCertificateValidationCallback_t7A8DAD12B70CE3BB19BAAD04F587D5ED02385CC6 * ___U3CRemoteCertificateValidationCallbackU3Ek__BackingField_0;
// Mono.Security.Interface.MonoLocalCertificateSelectionCallback Mono.Security.Interface.MonoTlsSettings::<ClientCertificateSelectionCallback>k__BackingField
MonoLocalCertificateSelectionCallback_t657381EF916D4EDC456FA5A6AC948EFD7A481F0A * ___U3CClientCertificateSelectionCallbackU3Ek__BackingField_1;
// System.Nullable`1<System.DateTime> Mono.Security.Interface.MonoTlsSettings::<CertificateValidationTime>k__BackingField
Nullable_1_t3290384E361396B3724B88B498CBF637D7E87B78 ___U3CCertificateValidationTimeU3Ek__BackingField_2;
// System.Security.Cryptography.X509Certificates.X509CertificateCollection Mono.Security.Interface.MonoTlsSettings::<TrustAnchors>k__BackingField
X509CertificateCollection_t824A6C58D0D1B4A7CAE30F26CE8EE4B23A8A1833 * ___U3CTrustAnchorsU3Ek__BackingField_3;
// System.Object Mono.Security.Interface.MonoTlsSettings::<UserSettings>k__BackingField
RuntimeObject * ___U3CUserSettingsU3Ek__BackingField_4;
// System.String[] Mono.Security.Interface.MonoTlsSettings::<CertificateSearchPaths>k__BackingField
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___U3CCertificateSearchPathsU3Ek__BackingField_5;
// System.Boolean Mono.Security.Interface.MonoTlsSettings::<SendCloseNotify>k__BackingField
bool ___U3CSendCloseNotifyU3Ek__BackingField_6;
// System.Nullable`1<Mono.Security.Interface.TlsProtocols> Mono.Security.Interface.MonoTlsSettings::<EnabledProtocols>k__BackingField
Nullable_1_t601798BE10C3F3F37B6755E475BB1B3760DCBB10 ___U3CEnabledProtocolsU3Ek__BackingField_7;
// Mono.Security.Interface.CipherSuiteCode[] Mono.Security.Interface.MonoTlsSettings::<EnabledCiphers>k__BackingField
CipherSuiteCodeU5BU5D_t0EC37AD4A25BB94BA9AB4A9C0C4802BD79A07CC4* ___U3CEnabledCiphersU3Ek__BackingField_8;
// System.Boolean Mono.Security.Interface.MonoTlsSettings::cloned
bool ___cloned_9;
// System.Boolean Mono.Security.Interface.MonoTlsSettings::checkCertName
bool ___checkCertName_10;
// System.Boolean Mono.Security.Interface.MonoTlsSettings::checkCertRevocationStatus
bool ___checkCertRevocationStatus_11;
// System.Nullable`1<System.Boolean> Mono.Security.Interface.MonoTlsSettings::useServicePointManagerCallback
Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 ___useServicePointManagerCallback_12;
// System.Boolean Mono.Security.Interface.MonoTlsSettings::skipSystemValidators
bool ___skipSystemValidators_13;
// System.Boolean Mono.Security.Interface.MonoTlsSettings::callbackNeedsChain
bool ___callbackNeedsChain_14;
// Mono.Security.Interface.ICertificateValidator Mono.Security.Interface.MonoTlsSettings::certificateValidator
RuntimeObject* ___certificateValidator_15;
public:
inline static int32_t get_offset_of_U3CRemoteCertificateValidationCallbackU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF, ___U3CRemoteCertificateValidationCallbackU3Ek__BackingField_0)); }
inline MonoRemoteCertificateValidationCallback_t7A8DAD12B70CE3BB19BAAD04F587D5ED02385CC6 * get_U3CRemoteCertificateValidationCallbackU3Ek__BackingField_0() const { return ___U3CRemoteCertificateValidationCallbackU3Ek__BackingField_0; }
inline MonoRemoteCertificateValidationCallback_t7A8DAD12B70CE3BB19BAAD04F587D5ED02385CC6 ** get_address_of_U3CRemoteCertificateValidationCallbackU3Ek__BackingField_0() { return &___U3CRemoteCertificateValidationCallbackU3Ek__BackingField_0; }
inline void set_U3CRemoteCertificateValidationCallbackU3Ek__BackingField_0(MonoRemoteCertificateValidationCallback_t7A8DAD12B70CE3BB19BAAD04F587D5ED02385CC6 * value)
{
___U3CRemoteCertificateValidationCallbackU3Ek__BackingField_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CRemoteCertificateValidationCallbackU3Ek__BackingField_0), (void*)value);
}
inline static int32_t get_offset_of_U3CClientCertificateSelectionCallbackU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF, ___U3CClientCertificateSelectionCallbackU3Ek__BackingField_1)); }
inline MonoLocalCertificateSelectionCallback_t657381EF916D4EDC456FA5A6AC948EFD7A481F0A * get_U3CClientCertificateSelectionCallbackU3Ek__BackingField_1() const { return ___U3CClientCertificateSelectionCallbackU3Ek__BackingField_1; }
inline MonoLocalCertificateSelectionCallback_t657381EF916D4EDC456FA5A6AC948EFD7A481F0A ** get_address_of_U3CClientCertificateSelectionCallbackU3Ek__BackingField_1() { return &___U3CClientCertificateSelectionCallbackU3Ek__BackingField_1; }
inline void set_U3CClientCertificateSelectionCallbackU3Ek__BackingField_1(MonoLocalCertificateSelectionCallback_t657381EF916D4EDC456FA5A6AC948EFD7A481F0A * value)
{
___U3CClientCertificateSelectionCallbackU3Ek__BackingField_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CClientCertificateSelectionCallbackU3Ek__BackingField_1), (void*)value);
}
inline static int32_t get_offset_of_U3CCertificateValidationTimeU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF, ___U3CCertificateValidationTimeU3Ek__BackingField_2)); }
inline Nullable_1_t3290384E361396B3724B88B498CBF637D7E87B78 get_U3CCertificateValidationTimeU3Ek__BackingField_2() const { return ___U3CCertificateValidationTimeU3Ek__BackingField_2; }
inline Nullable_1_t3290384E361396B3724B88B498CBF637D7E87B78 * get_address_of_U3CCertificateValidationTimeU3Ek__BackingField_2() { return &___U3CCertificateValidationTimeU3Ek__BackingField_2; }
inline void set_U3CCertificateValidationTimeU3Ek__BackingField_2(Nullable_1_t3290384E361396B3724B88B498CBF637D7E87B78 value)
{
___U3CCertificateValidationTimeU3Ek__BackingField_2 = value;
}
inline static int32_t get_offset_of_U3CTrustAnchorsU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF, ___U3CTrustAnchorsU3Ek__BackingField_3)); }
inline X509CertificateCollection_t824A6C58D0D1B4A7CAE30F26CE8EE4B23A8A1833 * get_U3CTrustAnchorsU3Ek__BackingField_3() const { return ___U3CTrustAnchorsU3Ek__BackingField_3; }
inline X509CertificateCollection_t824A6C58D0D1B4A7CAE30F26CE8EE4B23A8A1833 ** get_address_of_U3CTrustAnchorsU3Ek__BackingField_3() { return &___U3CTrustAnchorsU3Ek__BackingField_3; }
inline void set_U3CTrustAnchorsU3Ek__BackingField_3(X509CertificateCollection_t824A6C58D0D1B4A7CAE30F26CE8EE4B23A8A1833 * value)
{
___U3CTrustAnchorsU3Ek__BackingField_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CTrustAnchorsU3Ek__BackingField_3), (void*)value);
}
inline static int32_t get_offset_of_U3CUserSettingsU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF, ___U3CUserSettingsU3Ek__BackingField_4)); }
inline RuntimeObject * get_U3CUserSettingsU3Ek__BackingField_4() const { return ___U3CUserSettingsU3Ek__BackingField_4; }
inline RuntimeObject ** get_address_of_U3CUserSettingsU3Ek__BackingField_4() { return &___U3CUserSettingsU3Ek__BackingField_4; }
inline void set_U3CUserSettingsU3Ek__BackingField_4(RuntimeObject * value)
{
___U3CUserSettingsU3Ek__BackingField_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CUserSettingsU3Ek__BackingField_4), (void*)value);
}
inline static int32_t get_offset_of_U3CCertificateSearchPathsU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF, ___U3CCertificateSearchPathsU3Ek__BackingField_5)); }
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_U3CCertificateSearchPathsU3Ek__BackingField_5() const { return ___U3CCertificateSearchPathsU3Ek__BackingField_5; }
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_U3CCertificateSearchPathsU3Ek__BackingField_5() { return &___U3CCertificateSearchPathsU3Ek__BackingField_5; }
inline void set_U3CCertificateSearchPathsU3Ek__BackingField_5(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value)
{
___U3CCertificateSearchPathsU3Ek__BackingField_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CCertificateSearchPathsU3Ek__BackingField_5), (void*)value);
}
inline static int32_t get_offset_of_U3CSendCloseNotifyU3Ek__BackingField_6() { return static_cast<int32_t>(offsetof(MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF, ___U3CSendCloseNotifyU3Ek__BackingField_6)); }
inline bool get_U3CSendCloseNotifyU3Ek__BackingField_6() const { return ___U3CSendCloseNotifyU3Ek__BackingField_6; }
inline bool* get_address_of_U3CSendCloseNotifyU3Ek__BackingField_6() { return &___U3CSendCloseNotifyU3Ek__BackingField_6; }
inline void set_U3CSendCloseNotifyU3Ek__BackingField_6(bool value)
{
___U3CSendCloseNotifyU3Ek__BackingField_6 = value;
}
inline static int32_t get_offset_of_U3CEnabledProtocolsU3Ek__BackingField_7() { return static_cast<int32_t>(offsetof(MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF, ___U3CEnabledProtocolsU3Ek__BackingField_7)); }
inline Nullable_1_t601798BE10C3F3F37B6755E475BB1B3760DCBB10 get_U3CEnabledProtocolsU3Ek__BackingField_7() const { return ___U3CEnabledProtocolsU3Ek__BackingField_7; }
inline Nullable_1_t601798BE10C3F3F37B6755E475BB1B3760DCBB10 * get_address_of_U3CEnabledProtocolsU3Ek__BackingField_7() { return &___U3CEnabledProtocolsU3Ek__BackingField_7; }
inline void set_U3CEnabledProtocolsU3Ek__BackingField_7(Nullable_1_t601798BE10C3F3F37B6755E475BB1B3760DCBB10 value)
{
___U3CEnabledProtocolsU3Ek__BackingField_7 = value;
}
inline static int32_t get_offset_of_U3CEnabledCiphersU3Ek__BackingField_8() { return static_cast<int32_t>(offsetof(MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF, ___U3CEnabledCiphersU3Ek__BackingField_8)); }
inline CipherSuiteCodeU5BU5D_t0EC37AD4A25BB94BA9AB4A9C0C4802BD79A07CC4* get_U3CEnabledCiphersU3Ek__BackingField_8() const { return ___U3CEnabledCiphersU3Ek__BackingField_8; }
inline CipherSuiteCodeU5BU5D_t0EC37AD4A25BB94BA9AB4A9C0C4802BD79A07CC4** get_address_of_U3CEnabledCiphersU3Ek__BackingField_8() { return &___U3CEnabledCiphersU3Ek__BackingField_8; }
inline void set_U3CEnabledCiphersU3Ek__BackingField_8(CipherSuiteCodeU5BU5D_t0EC37AD4A25BB94BA9AB4A9C0C4802BD79A07CC4* value)
{
___U3CEnabledCiphersU3Ek__BackingField_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CEnabledCiphersU3Ek__BackingField_8), (void*)value);
}
inline static int32_t get_offset_of_cloned_9() { return static_cast<int32_t>(offsetof(MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF, ___cloned_9)); }
inline bool get_cloned_9() const { return ___cloned_9; }
inline bool* get_address_of_cloned_9() { return &___cloned_9; }
inline void set_cloned_9(bool value)
{
___cloned_9 = value;
}
inline static int32_t get_offset_of_checkCertName_10() { return static_cast<int32_t>(offsetof(MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF, ___checkCertName_10)); }
inline bool get_checkCertName_10() const { return ___checkCertName_10; }
inline bool* get_address_of_checkCertName_10() { return &___checkCertName_10; }
inline void set_checkCertName_10(bool value)
{
___checkCertName_10 = value;
}
inline static int32_t get_offset_of_checkCertRevocationStatus_11() { return static_cast<int32_t>(offsetof(MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF, ___checkCertRevocationStatus_11)); }
inline bool get_checkCertRevocationStatus_11() const { return ___checkCertRevocationStatus_11; }
inline bool* get_address_of_checkCertRevocationStatus_11() { return &___checkCertRevocationStatus_11; }
inline void set_checkCertRevocationStatus_11(bool value)
{
___checkCertRevocationStatus_11 = value;
}
inline static int32_t get_offset_of_useServicePointManagerCallback_12() { return static_cast<int32_t>(offsetof(MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF, ___useServicePointManagerCallback_12)); }
inline Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 get_useServicePointManagerCallback_12() const { return ___useServicePointManagerCallback_12; }
inline Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 * get_address_of_useServicePointManagerCallback_12() { return &___useServicePointManagerCallback_12; }
inline void set_useServicePointManagerCallback_12(Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 value)
{
___useServicePointManagerCallback_12 = value;
}
inline static int32_t get_offset_of_skipSystemValidators_13() { return static_cast<int32_t>(offsetof(MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF, ___skipSystemValidators_13)); }
inline bool get_skipSystemValidators_13() const { return ___skipSystemValidators_13; }
inline bool* get_address_of_skipSystemValidators_13() { return &___skipSystemValidators_13; }
inline void set_skipSystemValidators_13(bool value)
{
___skipSystemValidators_13 = value;
}
inline static int32_t get_offset_of_callbackNeedsChain_14() { return static_cast<int32_t>(offsetof(MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF, ___callbackNeedsChain_14)); }
inline bool get_callbackNeedsChain_14() const { return ___callbackNeedsChain_14; }
inline bool* get_address_of_callbackNeedsChain_14() { return &___callbackNeedsChain_14; }
inline void set_callbackNeedsChain_14(bool value)
{
___callbackNeedsChain_14 = value;
}
inline static int32_t get_offset_of_certificateValidator_15() { return static_cast<int32_t>(offsetof(MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF, ___certificateValidator_15)); }
inline RuntimeObject* get_certificateValidator_15() const { return ___certificateValidator_15; }
inline RuntimeObject** get_address_of_certificateValidator_15() { return &___certificateValidator_15; }
inline void set_certificateValidator_15(RuntimeObject* value)
{
___certificateValidator_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___certificateValidator_15), (void*)value);
}
};
struct MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF_StaticFields
{
public:
// Mono.Security.Interface.MonoTlsSettings Mono.Security.Interface.MonoTlsSettings::defaultSettings
MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * ___defaultSettings_16;
public:
inline static int32_t get_offset_of_defaultSettings_16() { return static_cast<int32_t>(offsetof(MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF_StaticFields, ___defaultSettings_16)); }
inline MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * get_defaultSettings_16() const { return ___defaultSettings_16; }
inline MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF ** get_address_of_defaultSettings_16() { return &___defaultSettings_16; }
inline void set_defaultSettings_16(MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * value)
{
___defaultSettings_16 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultSettings_16), (void*)value);
}
};
// Mono.Security.Interface.ValidationResult
struct ValidationResult_tBBAD776F36C835C8DDB515B1747DEF3A45C058D7 : public RuntimeObject
{
public:
// System.Boolean Mono.Security.Interface.ValidationResult::trusted
bool ___trusted_0;
// System.Boolean Mono.Security.Interface.ValidationResult::user_denied
bool ___user_denied_1;
// System.Int32 Mono.Security.Interface.ValidationResult::error_code
int32_t ___error_code_2;
// System.Nullable`1<Mono.Security.Interface.MonoSslPolicyErrors> Mono.Security.Interface.ValidationResult::policy_errors
Nullable_1_t87E3837BC1E3397FF9051586CE8E2328CEA1F1D2 ___policy_errors_3;
public:
inline static int32_t get_offset_of_trusted_0() { return static_cast<int32_t>(offsetof(ValidationResult_tBBAD776F36C835C8DDB515B1747DEF3A45C058D7, ___trusted_0)); }
inline bool get_trusted_0() const { return ___trusted_0; }
inline bool* get_address_of_trusted_0() { return &___trusted_0; }
inline void set_trusted_0(bool value)
{
___trusted_0 = value;
}
inline static int32_t get_offset_of_user_denied_1() { return static_cast<int32_t>(offsetof(ValidationResult_tBBAD776F36C835C8DDB515B1747DEF3A45C058D7, ___user_denied_1)); }
inline bool get_user_denied_1() const { return ___user_denied_1; }
inline bool* get_address_of_user_denied_1() { return &___user_denied_1; }
inline void set_user_denied_1(bool value)
{
___user_denied_1 = value;
}
inline static int32_t get_offset_of_error_code_2() { return static_cast<int32_t>(offsetof(ValidationResult_tBBAD776F36C835C8DDB515B1747DEF3A45C058D7, ___error_code_2)); }
inline int32_t get_error_code_2() const { return ___error_code_2; }
inline int32_t* get_address_of_error_code_2() { return &___error_code_2; }
inline void set_error_code_2(int32_t value)
{
___error_code_2 = value;
}
inline static int32_t get_offset_of_policy_errors_3() { return static_cast<int32_t>(offsetof(ValidationResult_tBBAD776F36C835C8DDB515B1747DEF3A45C058D7, ___policy_errors_3)); }
inline Nullable_1_t87E3837BC1E3397FF9051586CE8E2328CEA1F1D2 get_policy_errors_3() const { return ___policy_errors_3; }
inline Nullable_1_t87E3837BC1E3397FF9051586CE8E2328CEA1F1D2 * get_address_of_policy_errors_3() { return &___policy_errors_3; }
inline void set_policy_errors_3(Nullable_1_t87E3837BC1E3397FF9051586CE8E2328CEA1F1D2 value)
{
___policy_errors_3 = value;
}
};
// Mono.Security.Protocol.Ntlm.Type1Message
struct Type1Message_tF2DA0014BB300ABA864D84752FFA278EC6E6519C : public MessageBase_t504D166CC4021DEB56DED308D5E82C67F47F26C0
{
public:
// System.String Mono.Security.Protocol.Ntlm.Type1Message::_host
String_t* ____host_3;
// System.String Mono.Security.Protocol.Ntlm.Type1Message::_domain
String_t* ____domain_4;
public:
inline static int32_t get_offset_of__host_3() { return static_cast<int32_t>(offsetof(Type1Message_tF2DA0014BB300ABA864D84752FFA278EC6E6519C, ____host_3)); }
inline String_t* get__host_3() const { return ____host_3; }
inline String_t** get_address_of__host_3() { return &____host_3; }
inline void set__host_3(String_t* value)
{
____host_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____host_3), (void*)value);
}
inline static int32_t get_offset_of__domain_4() { return static_cast<int32_t>(offsetof(Type1Message_tF2DA0014BB300ABA864D84752FFA278EC6E6519C, ____domain_4)); }
inline String_t* get__domain_4() const { return ____domain_4; }
inline String_t** get_address_of__domain_4() { return &____domain_4; }
inline void set__domain_4(String_t* value)
{
____domain_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____domain_4), (void*)value);
}
};
// Mono.Security.Protocol.Ntlm.Type2Message
struct Type2Message_t990283F48D41AECF1FFBDAA3A194CDE9C9078398 : public MessageBase_t504D166CC4021DEB56DED308D5E82C67F47F26C0
{
public:
// System.Byte[] Mono.Security.Protocol.Ntlm.Type2Message::_nonce
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ____nonce_3;
// System.String Mono.Security.Protocol.Ntlm.Type2Message::_targetName
String_t* ____targetName_4;
// System.Byte[] Mono.Security.Protocol.Ntlm.Type2Message::_targetInfo
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ____targetInfo_5;
public:
inline static int32_t get_offset_of__nonce_3() { return static_cast<int32_t>(offsetof(Type2Message_t990283F48D41AECF1FFBDAA3A194CDE9C9078398, ____nonce_3)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get__nonce_3() const { return ____nonce_3; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of__nonce_3() { return &____nonce_3; }
inline void set__nonce_3(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
____nonce_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____nonce_3), (void*)value);
}
inline static int32_t get_offset_of__targetName_4() { return static_cast<int32_t>(offsetof(Type2Message_t990283F48D41AECF1FFBDAA3A194CDE9C9078398, ____targetName_4)); }
inline String_t* get__targetName_4() const { return ____targetName_4; }
inline String_t** get_address_of__targetName_4() { return &____targetName_4; }
inline void set__targetName_4(String_t* value)
{
____targetName_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____targetName_4), (void*)value);
}
inline static int32_t get_offset_of__targetInfo_5() { return static_cast<int32_t>(offsetof(Type2Message_t990283F48D41AECF1FFBDAA3A194CDE9C9078398, ____targetInfo_5)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get__targetInfo_5() const { return ____targetInfo_5; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of__targetInfo_5() { return &____targetInfo_5; }
inline void set__targetInfo_5(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
____targetInfo_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____targetInfo_5), (void*)value);
}
};
// Mono.Security.Protocol.Ntlm.Type3Message
struct Type3Message_t6D21CF9E3D56192F8D9B6E2B29474773E838846C : public MessageBase_t504D166CC4021DEB56DED308D5E82C67F47F26C0
{
public:
// Mono.Security.Protocol.Ntlm.NtlmAuthLevel Mono.Security.Protocol.Ntlm.Type3Message::_level
int32_t ____level_3;
// System.Byte[] Mono.Security.Protocol.Ntlm.Type3Message::_challenge
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ____challenge_4;
// System.String Mono.Security.Protocol.Ntlm.Type3Message::_host
String_t* ____host_5;
// System.String Mono.Security.Protocol.Ntlm.Type3Message::_domain
String_t* ____domain_6;
// System.String Mono.Security.Protocol.Ntlm.Type3Message::_username
String_t* ____username_7;
// System.String Mono.Security.Protocol.Ntlm.Type3Message::_password
String_t* ____password_8;
// Mono.Security.Protocol.Ntlm.Type2Message Mono.Security.Protocol.Ntlm.Type3Message::_type2
Type2Message_t990283F48D41AECF1FFBDAA3A194CDE9C9078398 * ____type2_9;
// System.Byte[] Mono.Security.Protocol.Ntlm.Type3Message::_lm
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ____lm_10;
// System.Byte[] Mono.Security.Protocol.Ntlm.Type3Message::_nt
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ____nt_11;
public:
inline static int32_t get_offset_of__level_3() { return static_cast<int32_t>(offsetof(Type3Message_t6D21CF9E3D56192F8D9B6E2B29474773E838846C, ____level_3)); }
inline int32_t get__level_3() const { return ____level_3; }
inline int32_t* get_address_of__level_3() { return &____level_3; }
inline void set__level_3(int32_t value)
{
____level_3 = value;
}
inline static int32_t get_offset_of__challenge_4() { return static_cast<int32_t>(offsetof(Type3Message_t6D21CF9E3D56192F8D9B6E2B29474773E838846C, ____challenge_4)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get__challenge_4() const { return ____challenge_4; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of__challenge_4() { return &____challenge_4; }
inline void set__challenge_4(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
____challenge_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____challenge_4), (void*)value);
}
inline static int32_t get_offset_of__host_5() { return static_cast<int32_t>(offsetof(Type3Message_t6D21CF9E3D56192F8D9B6E2B29474773E838846C, ____host_5)); }
inline String_t* get__host_5() const { return ____host_5; }
inline String_t** get_address_of__host_5() { return &____host_5; }
inline void set__host_5(String_t* value)
{
____host_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____host_5), (void*)value);
}
inline static int32_t get_offset_of__domain_6() { return static_cast<int32_t>(offsetof(Type3Message_t6D21CF9E3D56192F8D9B6E2B29474773E838846C, ____domain_6)); }
inline String_t* get__domain_6() const { return ____domain_6; }
inline String_t** get_address_of__domain_6() { return &____domain_6; }
inline void set__domain_6(String_t* value)
{
____domain_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____domain_6), (void*)value);
}
inline static int32_t get_offset_of__username_7() { return static_cast<int32_t>(offsetof(Type3Message_t6D21CF9E3D56192F8D9B6E2B29474773E838846C, ____username_7)); }
inline String_t* get__username_7() const { return ____username_7; }
inline String_t** get_address_of__username_7() { return &____username_7; }
inline void set__username_7(String_t* value)
{
____username_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____username_7), (void*)value);
}
inline static int32_t get_offset_of__password_8() { return static_cast<int32_t>(offsetof(Type3Message_t6D21CF9E3D56192F8D9B6E2B29474773E838846C, ____password_8)); }
inline String_t* get__password_8() const { return ____password_8; }
inline String_t** get_address_of__password_8() { return &____password_8; }
inline void set__password_8(String_t* value)
{
____password_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&____password_8), (void*)value);
}
inline static int32_t get_offset_of__type2_9() { return static_cast<int32_t>(offsetof(Type3Message_t6D21CF9E3D56192F8D9B6E2B29474773E838846C, ____type2_9)); }
inline Type2Message_t990283F48D41AECF1FFBDAA3A194CDE9C9078398 * get__type2_9() const { return ____type2_9; }
inline Type2Message_t990283F48D41AECF1FFBDAA3A194CDE9C9078398 ** get_address_of__type2_9() { return &____type2_9; }
inline void set__type2_9(Type2Message_t990283F48D41AECF1FFBDAA3A194CDE9C9078398 * value)
{
____type2_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&____type2_9), (void*)value);
}
inline static int32_t get_offset_of__lm_10() { return static_cast<int32_t>(offsetof(Type3Message_t6D21CF9E3D56192F8D9B6E2B29474773E838846C, ____lm_10)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get__lm_10() const { return ____lm_10; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of__lm_10() { return &____lm_10; }
inline void set__lm_10(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
____lm_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&____lm_10), (void*)value);
}
inline static int32_t get_offset_of__nt_11() { return static_cast<int32_t>(offsetof(Type3Message_t6D21CF9E3D56192F8D9B6E2B29474773E838846C, ____nt_11)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get__nt_11() const { return ____nt_11; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of__nt_11() { return &____nt_11; }
inline void set__nt_11(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
____nt_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&____nt_11), (void*)value);
}
};
// System.ArgumentException
struct ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
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_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1, ___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((void**)(&___m_paramName_17), (void*)value);
}
};
// System.ArithmeticException
struct ArithmeticException_tF9EF5FE94597830EF315C5934258F994B8648269 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
public:
};
// System.AsyncCallback
struct AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 : public MulticastDelegate_t
{
public:
public:
};
// System.FormatException
struct FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
public:
};
// System.IndexOutOfRangeException
struct IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
public:
};
// System.InvalidOperationException
struct InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
public:
};
// System.NotImplementedException
struct NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
public:
};
// System.NotSupportedException
struct NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
public:
};
// System.Security.Cryptography.CryptographicException
struct CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
public:
};
// System.Security.Cryptography.DES
struct DES_tFB993FE8AF9722A555B0737FE730332CCD86F6F0 : public SymmetricAlgorithm_t0A2EC7E7AD8B8976832B4F0AC432B691F862E789
{
public:
public:
};
struct DES_tFB993FE8AF9722A555B0737FE730332CCD86F6F0_StaticFields
{
public:
// System.Security.Cryptography.KeySizes[] System.Security.Cryptography.DES::s_legalBlockSizes
KeySizesU5BU5D_t934CCA482596402177BAF86727F169872D74934E* ___s_legalBlockSizes_9;
// System.Security.Cryptography.KeySizes[] System.Security.Cryptography.DES::s_legalKeySizes
KeySizesU5BU5D_t934CCA482596402177BAF86727F169872D74934E* ___s_legalKeySizes_10;
public:
inline static int32_t get_offset_of_s_legalBlockSizes_9() { return static_cast<int32_t>(offsetof(DES_tFB993FE8AF9722A555B0737FE730332CCD86F6F0_StaticFields, ___s_legalBlockSizes_9)); }
inline KeySizesU5BU5D_t934CCA482596402177BAF86727F169872D74934E* get_s_legalBlockSizes_9() const { return ___s_legalBlockSizes_9; }
inline KeySizesU5BU5D_t934CCA482596402177BAF86727F169872D74934E** get_address_of_s_legalBlockSizes_9() { return &___s_legalBlockSizes_9; }
inline void set_s_legalBlockSizes_9(KeySizesU5BU5D_t934CCA482596402177BAF86727F169872D74934E* value)
{
___s_legalBlockSizes_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_legalBlockSizes_9), (void*)value);
}
inline static int32_t get_offset_of_s_legalKeySizes_10() { return static_cast<int32_t>(offsetof(DES_tFB993FE8AF9722A555B0737FE730332CCD86F6F0_StaticFields, ___s_legalKeySizes_10)); }
inline KeySizesU5BU5D_t934CCA482596402177BAF86727F169872D74934E* get_s_legalKeySizes_10() const { return ___s_legalKeySizes_10; }
inline KeySizesU5BU5D_t934CCA482596402177BAF86727F169872D74934E** get_address_of_s_legalKeySizes_10() { return &___s_legalKeySizes_10; }
inline void set_s_legalKeySizes_10(KeySizesU5BU5D_t934CCA482596402177BAF86727F169872D74934E* value)
{
___s_legalKeySizes_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_legalKeySizes_10), (void*)value);
}
};
// System.ArgumentNullException
struct ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD : public ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1
{
public:
public:
};
// System.ArgumentOutOfRangeException
struct ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA : public ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1
{
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_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA, ___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((void**)(&___m_actualValue_19), (void*)value);
}
};
struct ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_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_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_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((void**)(&____rangeMessage_18), (void*)value);
}
};
// System.ObjectDisposedException
struct ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A : public InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1
{
public:
// System.String System.ObjectDisposedException::objectName
String_t* ___objectName_17;
public:
inline static int32_t get_offset_of_objectName_17() { return static_cast<int32_t>(offsetof(ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A, ___objectName_17)); }
inline String_t* get_objectName_17() const { return ___objectName_17; }
inline String_t** get_address_of_objectName_17() { return &___objectName_17; }
inline void set_objectName_17(String_t* value)
{
___objectName_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&___objectName_17), (void*)value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// System.UInt32[]
struct UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB : 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.Byte[]
struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821 : 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;
}
};
// Mono.Math.BigInteger[]
struct BigIntegerU5BU5D_t15EB0DC5DA051C4F0C1BECDCD8D7AB250F0CDF4B : public RuntimeArray
{
public:
ALIGN_FIELD (8) BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * m_Items[1];
public:
inline BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 ** 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, BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Delegate[]
struct DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Delegate_t * m_Items[1];
public:
inline Delegate_t * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Delegate_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, Delegate_t * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline Delegate_t * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Delegate_t ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Delegate_t * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Object[]
struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A : 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((void**)m_Items + index, (void*)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((void**)m_Items + index, (void*)value);
}
};
// System.String[]
struct StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E : public RuntimeArray
{
public:
ALIGN_FIELD (8) String_t* m_Items[1];
public:
inline String_t* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline String_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, String_t* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline String_t* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline String_t** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, String_t* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// Mono.Security.Interface.CipherSuiteCode[]
struct CipherSuiteCodeU5BU5D_t0EC37AD4A25BB94BA9AB4A9C0C4802BD79A07CC4 : 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;
}
};
// !!0[] System.Array::Empty<System.Object>()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* Array_Empty_TisRuntimeObject_m9CF99326FAC8A01A4A25C90AA97F0799BA35ECAB_gshared_inline (const RuntimeMethod* method);
// System.Void System.Array::Reverse<System.Byte>(!!0[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Reverse_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m03D674052100D1E9D6214ADD31FE7E5F7E6788DA_gshared (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___array0, const RuntimeMethod* method);
// System.Char System.String::get_Chars(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96 (String_t* __this, int32_t ___index0, const RuntimeMethod* method);
// System.Int32 System.String::get_Length()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline (String_t* __this, const RuntimeMethod* method);
// System.Void System.Object::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0 (RuntimeObject * __this, const RuntimeMethod* method);
// System.Object System.Array::Clone()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Array_Clone_mE8C710213E323617A6F46F2B36DCDDD4C7CF5176 (RuntimeArray * __this, const RuntimeMethod* method);
// System.Void Mono.Math.BigInteger::Normalize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BigInteger_Normalize_mF0C4E36E69C54DB487EB2A29532BB7EB21585592 (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * __this, const RuntimeMethod* method);
// System.Void Mono.Math.BigInteger::.ctor(System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BigInteger__ctor_mCAC0EAFBC60E0DC2B64BE0DD21099C837FEC0A33 (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * __this, uint32_t ___ui0, const RuntimeMethod* method);
// System.Void System.ArgumentOutOfRangeException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6 (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * __this, String_t* ___paramName0, const RuntimeMethod* method);
// System.Boolean Mono.Math.BigInteger::op_Equality(Mono.Math.BigInteger,System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BigInteger_op_Equality_mAA7DD5259960E4837D8A8AB56DB3C6AEF367C504 (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi10, uint32_t ___ui1, const RuntimeMethod* method);
// System.Void Mono.Math.BigInteger::.ctor(Mono.Math.BigInteger)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BigInteger__ctor_m77CF9FF025A6A98A625E8E948F19F822210BC29C (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * __this, BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi0, const RuntimeMethod* method);
// System.Void System.ArithmeticException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArithmeticException__ctor_mAE18F94959F9827DEA553C7C2F3C5568BEC81CCF (ArithmeticException_tF9EF5FE94597830EF315C5934258F994B8648269 * __this, String_t* ___message0, const RuntimeMethod* method);
// Mono.Math.BigInteger/Sign Mono.Math.BigInteger/Kernel::Compare(Mono.Math.BigInteger,Mono.Math.BigInteger)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Kernel_Compare_m07031942FB73AA6F48F11CBB4FDAEBF6767C84EE (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi10, BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi21, const RuntimeMethod* method);
// Mono.Math.BigInteger Mono.Math.BigInteger::op_Implicit(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * BigInteger_op_Implicit_m7057639C0ADB9D04334B3DA64237547E293A50EB (int32_t ___value0, const RuntimeMethod* method);
// Mono.Math.BigInteger Mono.Math.BigInteger/Kernel::Subtract(Mono.Math.BigInteger,Mono.Math.BigInteger)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * Kernel_Subtract_mD8975D3BC036B9DAEC10E5585880F304DAF3E332 (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___big0, BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___small1, const RuntimeMethod* method);
// System.Void System.Exception::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception__ctor_m5FEC89FBFACEEDCEE29CCFD44A85D72FC28EB0D1 (Exception_t * __this, const RuntimeMethod* method);
// System.UInt32 Mono.Math.BigInteger/Kernel::DwordMod(Mono.Math.BigInteger,System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Kernel_DwordMod_m09BBF0BCB7D08A1CC8A24A82A8190E81D12BABDA (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___n0, uint32_t ___d1, const RuntimeMethod* method);
// Mono.Math.BigInteger[] Mono.Math.BigInteger/Kernel::multiByteDivide(Mono.Math.BigInteger,Mono.Math.BigInteger)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BigIntegerU5BU5D_t15EB0DC5DA051C4F0C1BECDCD8D7AB250F0CDF4B* Kernel_multiByteDivide_m3AB2BAB666EBB176A004D389DBDAAEBAA3763B54 (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi10, BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi21, const RuntimeMethod* method);
// System.Void System.IndexOutOfRangeException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IndexOutOfRangeException__ctor_mCCE2EFF47A0ACB4B2636F63140F94FCEA71A9BCA (IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Void Mono.Math.BigInteger::.ctor(Mono.Math.BigInteger/Sign,System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BigInteger__ctor_mF6EF77E576DB644975AE00AED27D25A7AC3AEE2E (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * __this, int32_t ___sign0, uint32_t ___len1, const RuntimeMethod* method);
// System.Void Mono.Math.BigInteger/Kernel::Multiply(System.UInt32[],System.UInt32,System.UInt32,System.UInt32[],System.UInt32,System.UInt32,System.UInt32[],System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Kernel_Multiply_m904FC66FF96CDE798413346196E3836ADE1B8AF4 (UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* ___x0, uint32_t ___xOffset1, uint32_t ___xLen2, UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* ___y3, uint32_t ___yOffset4, uint32_t ___yLen5, UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* ___d6, uint32_t ___dOffset7, const RuntimeMethod* method);
// Mono.Math.BigInteger Mono.Math.BigInteger/Kernel::LeftShift(Mono.Math.BigInteger,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * Kernel_LeftShift_mEA93DE79BE9A04B1AD826F95F9C77A28EC87CCA9 (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi0, int32_t ___n1, const RuntimeMethod* method);
// Mono.Math.BigInteger Mono.Math.BigInteger/Kernel::RightShift(Mono.Math.BigInteger,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * Kernel_RightShift_m1F0188E75D20E70731FC46BDB32106EB33A1DB83 (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi0, int32_t ___n1, const RuntimeMethod* method);
// System.Security.Cryptography.RandomNumberGenerator System.Security.Cryptography.RandomNumberGenerator::Create()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * RandomNumberGenerator_Create_mB84B1BA538B29D0679F310D3B574A7D5BAA890C4 (const RuntimeMethod* method);
// System.Void System.Buffer::BlockCopy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353 (RuntimeArray * ___src0, int32_t ___srcOffset1, RuntimeArray * ___dst2, int32_t ___dstOffset3, int32_t ___count4, const RuntimeMethod* method);
// System.Security.Cryptography.RandomNumberGenerator Mono.Math.BigInteger::get_Rng()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * BigInteger_get_Rng_mFD8903C45513484592C646CCF0F2752DB66509E2 (const RuntimeMethod* method);
// Mono.Math.BigInteger Mono.Math.BigInteger::GenerateRandom(System.Int32,System.Security.Cryptography.RandomNumberGenerator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * BigInteger_GenerateRandom_mABCBDC6EF81EBAF32CDA3B7685A208CA68C115D6 (int32_t ___bits0, RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * ___rng1, const RuntimeMethod* method);
// System.Void Mono.Math.BigInteger::SetBit(System.UInt32,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BigInteger_SetBit_m1D93A7DB2AFE83CBBB14F2E3D1E665CB53454A68 (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * __this, uint32_t ___bitNum0, bool ___value1, const RuntimeMethod* method);
// System.Boolean Mono.Math.BigInteger::TestBit(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BigInteger_TestBit_mFF11993F9C65D59A109EA7EC55B8B791A9DDB56B (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * __this, int32_t ___bitNum0, const RuntimeMethod* method);
// System.Int32 Mono.Math.BigInteger::BitCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BigInteger_BitCount_mFEA208FDC3B126E1517F0E5AAB8D1193856F8C76 (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * __this, const RuntimeMethod* method);
// System.Boolean Mono.Math.BigInteger::op_Equality(Mono.Math.BigInteger,Mono.Math.BigInteger)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BigInteger_op_Equality_mF5B5A983065914F1789BB1552A1AA1B589B59C90 (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi10, BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi21, const RuntimeMethod* method);
// System.String Mono.Math.BigInteger::ToString(System.UInt32,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* BigInteger_ToString_m9FD0DEAAA4F90CECA50A45E19876EF580B1EA9A2 (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * __this, uint32_t ___radix0, String_t* ___characterSet1, const RuntimeMethod* method);
// System.Void System.ArgumentException::.ctor(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8 (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * __this, String_t* ___message0, String_t* ___paramName1, const RuntimeMethod* method);
// System.UInt32 Mono.Math.BigInteger/Kernel::SingleByteDivideInPlace(Mono.Math.BigInteger,System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Kernel_SingleByteDivideInPlace_mA3A9E99D052F6906DAC3EC33E815F85621B9D2E3 (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___n0, uint32_t ___d1, const RuntimeMethod* method);
// System.String System.Char::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Char_ToString_mA42A88FEBA41B72D48BB24373E3101B7A91B6FD8 (Il2CppChar* __this, const RuntimeMethod* method);
// System.String System.String::Concat(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE (String_t* ___str00, String_t* ___str11, const RuntimeMethod* method);
// System.Boolean Mono.Math.BigInteger::op_Inequality(Mono.Math.BigInteger,System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BigInteger_op_Inequality_m13AF07D0E4BF09886DCCDCFDE553542F6F4ED1A4 (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi10, uint32_t ___ui1, const RuntimeMethod* method);
// System.String Mono.Math.BigInteger::ToString(System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* BigInteger_ToString_m589EF8667DF3B88F9A54068FCC1A60AE0D78FC67 (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * __this, uint32_t ___radix0, const RuntimeMethod* method);
// Mono.Math.BigInteger Mono.Math.BigInteger/Kernel::modInverse(Mono.Math.BigInteger,Mono.Math.BigInteger)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * Kernel_modInverse_mEB896FA57CB36CE9FF75EBB4E11EA71AE23E3EC4 (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi0, BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___modulus1, const RuntimeMethod* method);
// System.Void Mono.Math.Prime.Generator.SequentialSearchPrimeGeneratorBase::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SequentialSearchPrimeGeneratorBase__ctor_m04D212D2DBC1A2B3DD39C26A8008D56528984A11 (SequentialSearchPrimeGeneratorBase_t051356406D15C0F3CCF38A685AB52DFC08B83360 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.RuntimeHelpers::InitializeArray(System.Array,System.RuntimeFieldHandle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A (RuntimeArray * ___array0, RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF ___fldHandle1, const RuntimeMethod* method);
// Mono.Math.BigInteger Mono.Math.BigInteger::op_Implicit(System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * BigInteger_op_Implicit_m47A1626222EC6D506611B5776F1506E5ED6F529F (uint32_t ___value0, const RuntimeMethod* method);
// Mono.Math.BigInteger[] Mono.Math.BigInteger/Kernel::DwordDivMod(Mono.Math.BigInteger,System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BigIntegerU5BU5D_t15EB0DC5DA051C4F0C1BECDCD8D7AB250F0CDF4B* Kernel_DwordDivMod_m7DD3CEDA379E3BEE45058144A4E63AB39C32268C (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___n0, uint32_t ___d1, const RuntimeMethod* method);
// Mono.Math.BigInteger Mono.Math.BigInteger::op_LeftShift(Mono.Math.BigInteger,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * BigInteger_op_LeftShift_m728D921C2E6E603DF2590718EF51B6BA8B4F463A (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi10, int32_t ___shiftVal1, const RuntimeMethod* method);
// Mono.Math.BigInteger Mono.Math.BigInteger::op_RightShift(Mono.Math.BigInteger,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * BigInteger_op_RightShift_mD39A8D10E9F70F516D42932712403651A91F4F64 (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi10, int32_t ___shiftVal1, const RuntimeMethod* method);
// System.Void Mono.Math.BigInteger::.ctor(Mono.Math.BigInteger,System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BigInteger__ctor_m718EBF73E0A8036284DBF530A63930E286233BC5 (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * __this, BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi0, uint32_t ___len1, const RuntimeMethod* method);
// System.UInt32 Mono.Math.BigInteger::op_Modulus(Mono.Math.BigInteger,System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t BigInteger_op_Modulus_mEE11685FAA7292E357C36DB794C18EF9E388C876 (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi0, uint32_t ___ui1, const RuntimeMethod* method);
// System.UInt32 Mono.Math.BigInteger/Kernel::modInverse(Mono.Math.BigInteger,System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Kernel_modInverse_m3FE8ACCFD28EBC15685ACEE0ED33A048DE9D022D (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi0, uint32_t ___modulus1, const RuntimeMethod* method);
// System.Void Mono.Math.BigInteger/ModulusRing::.ctor(Mono.Math.BigInteger)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ModulusRing__ctor_mF09FC4C08A46EB1ECBA2A35B28BDD16D703E1050 (ModulusRing_t308788615884D122EEEE30912EFFB7C15144C6E8 * __this, BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___modulus0, const RuntimeMethod* method);
// Mono.Math.BigInteger Mono.Math.BigInteger::op_Multiply(Mono.Math.BigInteger,Mono.Math.BigInteger)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * BigInteger_op_Multiply_mEA6B6928879EF921641122FA7E597A16A613EDDE (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi10, BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi21, const RuntimeMethod* method);
// Mono.Math.BigInteger Mono.Math.BigInteger/ModulusRing::Difference(Mono.Math.BigInteger,Mono.Math.BigInteger)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ModulusRing_Difference_m4994769FFA8FAE06882F901C9DBEFC0A745E5258 (ModulusRing_t308788615884D122EEEE30912EFFB7C15144C6E8 * __this, BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___a0, BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___b1, const RuntimeMethod* method);
// Mono.Math.BigInteger Mono.Math.BigInteger::op_Division(Mono.Math.BigInteger,Mono.Math.BigInteger)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * BigInteger_op_Division_m8C1BDE4543BD0EFE3864D46646ACFF3F9B535D3B (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi10, BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi21, const RuntimeMethod* method);
// System.Void Mono.Math.BigInteger/Kernel::MultiplyMod2p32pmod(System.UInt32[],System.Int32,System.Int32,System.UInt32[],System.Int32,System.Int32,System.UInt32[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Kernel_MultiplyMod2p32pmod_mAF33D396324D6705B3F436779118B56F2622EB05 (UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* ___x0, int32_t ___xOffset1, int32_t ___xLen2, UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* ___y3, int32_t ___yOffest4, int32_t ___yLen5, UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* ___d6, int32_t ___dOffset7, int32_t ___mod8, const RuntimeMethod* method);
// System.Boolean Mono.Math.BigInteger::op_LessThanOrEqual(Mono.Math.BigInteger,Mono.Math.BigInteger)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BigInteger_op_LessThanOrEqual_m6F736D56374810C3251542D1CFFB2AB4ADFCCE86 (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi10, BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi21, const RuntimeMethod* method);
// System.Void Mono.Math.BigInteger/Kernel::MinusEq(Mono.Math.BigInteger,Mono.Math.BigInteger)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Kernel_MinusEq_m75848E6833E2D01CF229BBA57A1A6D641D5D0380 (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___big0, BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___small1, const RuntimeMethod* method);
// System.Void Mono.Math.BigInteger/Kernel::PlusEq(Mono.Math.BigInteger,Mono.Math.BigInteger)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Kernel_PlusEq_mF8EEDAFBFE9AD10CAD8770DC3A5D09E5147B0A48 (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi10, BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi21, const RuntimeMethod* method);
// System.Boolean Mono.Math.BigInteger::op_GreaterThanOrEqual(Mono.Math.BigInteger,Mono.Math.BigInteger)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BigInteger_op_GreaterThanOrEqual_mF4B81FC95ED0CBFA91676E43B1FAE027C850FBBF (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi10, BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi21, const RuntimeMethod* method);
// System.Boolean Mono.Math.BigInteger::op_GreaterThan(Mono.Math.BigInteger,Mono.Math.BigInteger)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BigInteger_op_GreaterThan_m4CC14F86717F122D7489EFF24C991F5BEE92A00F (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi10, BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi21, const RuntimeMethod* method);
// Mono.Math.BigInteger Mono.Math.BigInteger::op_Modulus(Mono.Math.BigInteger,Mono.Math.BigInteger)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * BigInteger_op_Modulus_mAFBC82D374D9E2866AA4958732FA53F7445B122F (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi10, BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi21, const RuntimeMethod* method);
// System.Void Mono.Math.BigInteger/ModulusRing::BarrettReduction(Mono.Math.BigInteger)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ModulusRing_BarrettReduction_m7B02B29BBEA5309C09AE3C2860CDA318810AB3E7 (ModulusRing_t308788615884D122EEEE30912EFFB7C15144C6E8 * __this, BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___x0, const RuntimeMethod* method);
// Mono.Math.BigInteger Mono.Math.BigInteger::op_Subtraction(Mono.Math.BigInteger,Mono.Math.BigInteger)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * BigInteger_op_Subtraction_mC72451C0DAE478E11522A2AB99426BEAD4E97792 (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi10, BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi21, const RuntimeMethod* method);
// Mono.Math.BigInteger Mono.Math.BigInteger/ModulusRing::Multiply(Mono.Math.BigInteger,Mono.Math.BigInteger)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ModulusRing_Multiply_m4C45458BB28E03B17069F0A0BB87F1426ABAC272 (ModulusRing_t308788615884D122EEEE30912EFFB7C15144C6E8 * __this, BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___a0, BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___b1, const RuntimeMethod* method);
// Mono.Math.BigInteger Mono.Math.BigInteger/ModulusRing::Pow(Mono.Math.BigInteger,Mono.Math.BigInteger)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ModulusRing_Pow_m02E0BDA9434462191910C6F7BD6E7A6C77544C06 (ModulusRing_t308788615884D122EEEE30912EFFB7C15144C6E8 * __this, BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___a0, BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___k1, const RuntimeMethod* method);
// System.Void Mono.Math.Prime.PrimalityTest::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PrimalityTest__ctor_m7D2A94DF17C3BB4D352BC4F7CF5E682A4C595CE7 (PrimalityTest_t86C33A5FB057EA0D357088A56E22FE56B7FA08D9 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method);
// Mono.Math.BigInteger Mono.Math.BigInteger::GenerateRandom(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * BigInteger_GenerateRandom_mA17F93C5DDA00EDFCBBB66C41120BA1886241F5D (int32_t ___bits0, const RuntimeMethod* method);
// System.Void Mono.Math.BigInteger::SetBit(System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BigInteger_SetBit_m9D1FECEB7D6672C82002A3FF59B17939C752CF41 (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * __this, uint32_t ___bitNum0, const RuntimeMethod* method);
// System.Boolean Mono.Math.Prime.PrimalityTest::Invoke(Mono.Math.BigInteger,Mono.Math.Prime.ConfidenceFactor)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PrimalityTest_Invoke_mFF0B6770EB0400A4842A1D85D58B2D26C0F039F5 (PrimalityTest_t86C33A5FB057EA0D357088A56E22FE56B7FA08D9 * __this, BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi0, int32_t ___confidence1, const RuntimeMethod* method);
// System.Void Mono.Math.BigInteger::Incr2()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BigInteger_Incr2_mB0C767ACE801C97882A9887153C362F93118FCAA (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * __this, const RuntimeMethod* method);
// System.Void Mono.Math.Prime.Generator.PrimeGeneratorBase::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PrimeGeneratorBase__ctor_m13B11935BE29102AC8EF61ADD1F25F36AAED8028 (PrimeGeneratorBase_tD86126CFDBC57352F37DE0964FFCF652C04D7059 * __this, const RuntimeMethod* method);
// System.Void System.Exception::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception__ctor_m89BADFF36C3B170013878726E07729D51AA9FBE0 (Exception_t * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Int32 Mono.Math.Prime.PrimalityTests::GetSPPRounds(Mono.Math.BigInteger,Mono.Math.Prime.ConfidenceFactor)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PrimalityTests_GetSPPRounds_mB217B6CB2BB40EEFAE4800E521105B5EE16C6979 (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi0, int32_t ___confidence1, const RuntimeMethod* method);
// System.Int32 Mono.Math.BigInteger::LowestSetBit()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BigInteger_LowestSetBit_m6E7C4246DA0DA86F94B880680121448F676E8435 (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * __this, const RuntimeMethod* method);
// Mono.Math.BigInteger Mono.Math.BigInteger/ModulusRing::Pow(System.UInt32,Mono.Math.BigInteger)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ModulusRing_Pow_mA4D173D9DD4C251CE87C56CEA39D04A8719FBE24 (ModulusRing_t308788615884D122EEEE30912EFFB7C15144C6E8 * __this, uint32_t ___b0, BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___exp1, const RuntimeMethod* method);
// System.Boolean Mono.Math.BigInteger::op_Inequality(Mono.Math.BigInteger,Mono.Math.BigInteger)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BigInteger_op_Inequality_m0C6217422FC853BD5E26CF9E7995AE95E55668C2 (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi10, BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi21, const RuntimeMethod* method);
// System.Void Mono.Security.ASN1::.ctor(System.Byte,System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ASN1__ctor_mAB2593792CB61AD1542F4F9D6FB6E8BB96DE007E (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * __this, uint8_t ___tag0, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___data1, const RuntimeMethod* method);
// System.Void System.NotSupportedException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Void Mono.Security.ASN1::Decode(System.Byte[],System.Int32&,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ASN1_Decode_m94E3A6F94EDACE796521D04E6A832D99592F1149 (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___asn10, int32_t* ___anPos1, int32_t ___anLength2, const RuntimeMethod* method);
// System.Boolean Mono.Security.ASN1::CompareArray(System.Byte[],System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ASN1_CompareArray_m8061EE9321D1B3F9CB387776552931A8AE9A96FE (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___array10, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___array21, const RuntimeMethod* method);
// System.Void System.Collections.ArrayList::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayList__ctor_m481FA7B37620B59B8C0434A764F5705A6ABDEAE6 (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * __this, const RuntimeMethod* method);
// System.Int32 Mono.Security.ASN1::get_Count()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ASN1_get_Count_m5A0E71B4C4A2257C0875AE1041AAA953C5B12A19 (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * __this, const RuntimeMethod* method);
// System.Void Mono.Security.ASN1::DecodeTLV(System.Byte[],System.Int32&,System.Byte&,System.Int32&,System.Byte[]&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ASN1_DecodeTLV_m30440B1DE0A8C4236AA9658DEBF2808FD3BC00C3 (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___asn10, int32_t* ___pos1, uint8_t* ___tag2, int32_t* ___length3, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** ___content4, const RuntimeMethod* method);
// Mono.Security.ASN1 Mono.Security.ASN1::Add(Mono.Security.ASN1)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * ASN1_Add_mF6ED0416BB021A1C333F99E42F8B17AF8B26639B (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * __this, ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * ___asn10, const RuntimeMethod* method);
// System.Byte Mono.Security.ASN1::get_Tag()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR uint8_t ASN1_get_Tag_m1346989AC839D85A9E0A211525A6B551974E4862_inline (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * __this, const RuntimeMethod* method);
// System.Void System.Text.StringBuilder::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder__ctor_mF928376F82E8C8FF3C11842C562DB8CF28B2735E (StringBuilder_t * __this, const RuntimeMethod* method);
// System.String System.Byte::ToString(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Byte_ToString_m5F54DEEC2138DAC5587E05890F97866DB78E75BA (uint8_t* __this, String_t* ___format0, const RuntimeMethod* method);
// System.String System.Environment::get_NewLine()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_get_NewLine_m5D4F4667FA5D1E2DBDD4DF9696D0CE76C83EF318 (const RuntimeMethod* method);
// System.Text.StringBuilder System.Text.StringBuilder::AppendFormat(System.String,System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_AppendFormat_m9DBA7709F546159ABC85BA341965305AB044D1B7 (StringBuilder_t * __this, String_t* ___format0, RuntimeObject * ___arg01, RuntimeObject * ___arg12, const RuntimeMethod* method);
// System.Byte[] Mono.Security.ASN1::get_Value()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ASN1_get_Value_m9BD6239E12A6148AF9507C2F58058C6B8147A079 (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * __this, const RuntimeMethod* method);
// System.Text.StringBuilder System.Text.StringBuilder::Append(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260 (StringBuilder_t * __this, String_t* ___value0, const RuntimeMethod* method);
// System.Text.StringBuilder System.Text.StringBuilder::AppendFormat(System.String,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_AppendFormat_mFFABDE5D2413C5657E6411FC60C8C38E1674E09D (StringBuilder_t * __this, String_t* ___format0, RuntimeObject * ___arg01, const RuntimeMethod* method);
// !!0[] System.Array::Empty<System.Object>()
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* Array_Empty_TisRuntimeObject_m9CF99326FAC8A01A4A25C90AA97F0799BA35ECAB_inline (const RuntimeMethod* method)
{
return (( ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* (*) (const RuntimeMethod*))Array_Empty_TisRuntimeObject_m9CF99326FAC8A01A4A25C90AA97F0799BA35ECAB_gshared_inline)(method);
}
// System.Text.StringBuilder System.Text.StringBuilder::AppendFormat(System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_AppendFormat_m23742FE1E3C60341F37C243EB6BEE06AE444C774 (StringBuilder_t * __this, String_t* ___format0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args1, const RuntimeMethod* method);
// System.Byte[] Mono.Security.BitConverterLE::GetBytes(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* BitConverterLE_GetBytes_m1207548B6BC0E2D49DD06D5B3A3AC19C001BDB35 (int32_t ___value0, const RuntimeMethod* method);
// System.Void System.Array::Reverse<System.Byte>(!!0[])
inline void Array_Reverse_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m03D674052100D1E9D6214ADD31FE7E5F7E6788DA (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___array0, const RuntimeMethod* method)
{
(( void (*) (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, const RuntimeMethod*))Array_Reverse_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m03D674052100D1E9D6214ADD31FE7E5F7E6788DA_gshared)(___array0, method);
}
// System.Void Mono.Security.ASN1::.ctor(System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ASN1__ctor_m6DD2E5BD0B12A6BFA95E1822A55B2294B8C237BC (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * __this, uint8_t ___tag0, const RuntimeMethod* method);
// System.Void Mono.Security.ASN1::set_Value(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ASN1_set_Value_m225FF9AC03EA872809C7742070A34A264C58588E (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___value0, const RuntimeMethod* method);
// System.Void System.ArgumentNullException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * __this, String_t* ___paramName0, const RuntimeMethod* method);
// System.Byte[] System.Security.Cryptography.CryptoConfig::EncodeOID(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* CryptoConfig_EncodeOID_mEC2EB86D30669917D71AC194CD83281D1A67AC92 (String_t* ___str0, const RuntimeMethod* method);
// System.Void Mono.Security.ASN1::.ctor(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ASN1__ctor_mE005F52336402C3D41EAD9E28A95910B3C0865DA (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___data0, const RuntimeMethod* method);
// System.Void System.FormatException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FormatException__ctor_m89167FF9884AE20232190FE9286DC50E146A4F14 (FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Globalization.CultureInfo System.Globalization.CultureInfo::get_InvariantCulture()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72 (const RuntimeMethod* method);
// System.String System.Byte::ToString(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Byte_ToString_m0E74FC03C86ECFB7B6639F93E224A1975374D8F7 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.String System.UInt64::ToString(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UInt64_ToString_m6CBBC10ABBA0EE36F5E72F926A38F6CD7F497A55 (uint64_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Text.Encoding System.Text.Encoding::get_ASCII()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * Encoding_get_ASCII_m9B673AE3152AB04D07CADE6E5E142C785B5BC94E (const RuntimeMethod* method);
// System.String System.String::Substring(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Substring_mB593C0A320C683E6E47EFFC0A12B7A465E5E43BB (String_t* __this, int32_t ___startIndex0, int32_t ___length1, const RuntimeMethod* method);
// System.Int16 System.Convert::ToInt16(System.String,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_m4EE0839C08F0FDFBB7719B316D962B043F55589B (String_t* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method);
// System.String System.String::Format(System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_mA3AC3FE7B23D97F3A5BAA082D25B0E01B341A865 (String_t* ___format0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args1, const RuntimeMethod* method);
// System.DateTime System.DateTime::ParseExact(System.String,System.String,System.IFormatProvider,System.Globalization.DateTimeStyles)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 DateTime_ParseExact_mF45E615EBCC82CA967D4BC7838EE570508D0F97F (String_t* ___s0, String_t* ___format1, RuntimeObject* ___provider2, int32_t ___style3, const RuntimeMethod* method);
// System.Byte[] Mono.Security.BitConverterLE::GetUIntBytes(System.Byte*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* BitConverterLE_GetUIntBytes_m871281C3039A5B7DFB56E0F3EBBE22F74135997C (uint8_t* ___bytes0, const RuntimeMethod* method);
// System.Byte[] Mono.Security.BitConverterLE::GetULongBytes(System.Byte*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* BitConverterLE_GetULongBytes_mCBAC987169706D10F05AFF42559A4EA1D88E1876 (uint8_t* ___bytes0, const RuntimeMethod* method);
// System.Void Mono.Security.BitConverterLE::UShortFromBytes(System.Byte*,System.Byte[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BitConverterLE_UShortFromBytes_mBC051D16FFC95E9695F110AFDEAB018BD76F84A9 (uint8_t* ___dst0, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___src1, int32_t ___startIndex2, const RuntimeMethod* method);
// System.Void Mono.Security.BitConverterLE::UIntFromBytes(System.Byte*,System.Byte[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BitConverterLE_UIntFromBytes_m91E16C3362E794444D849A4AD5B9F746BF2A4FCB (uint8_t* ___dst0, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___src1, int32_t ___startIndex2, const RuntimeMethod* method);
// System.Void System.Text.StringBuilder::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder__ctor_m1C0F2D97B838537A2D0F64033AE4EF02D150A956 (StringBuilder_t * __this, int32_t ___capacity0, const RuntimeMethod* method);
// System.String System.Byte::ToString(System.String,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Byte_ToString_m731FDB27391432D7F14B6769B5D0A3E248803D25 (uint8_t* __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method);
// System.Void System.Security.Cryptography.HashAlgorithm::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HashAlgorithm__ctor_mC0C923AB8904FC11889F63B39177507FBB35AA43 (HashAlgorithm_t65659695B16C0BBF05707BF45191A97DC156D6BA * __this, const RuntimeMethod* method);
// System.Void Mono.Security.Cryptography.MD2Managed::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MD2Managed__ctor_mB717463E13F068948687F8EE38041CA6087E6FCA (MD2Managed_t6867DBAD1BDCC846BE478BABC2D5DBAFFC7495EC * __this, const RuntimeMethod* method);
// System.Void Mono.Security.Cryptography.MD2::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MD2__ctor_mE62E9B3FF536BF5CF083EFBBE0CFAF4BD62FA0C0 (MD2_tCAAEC1A28A3D0B9E8810B27E4840BEA399619442 * __this, const RuntimeMethod* method);
// System.Void System.Array::Clear(System.Array,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E (RuntimeArray * ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method);
// System.Void Mono.Security.Cryptography.MD2Managed::MD2Transform(System.Byte[],System.Byte[],System.Byte[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MD2Managed_MD2Transform_m95099D1A3DB46EA112FF62C9A585D947C7FD4C23 (MD2Managed_t6867DBAD1BDCC846BE478BABC2D5DBAFFC7495EC * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___state0, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___checksum1, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___block2, int32_t ___index3, const RuntimeMethod* method);
// System.Byte[] Mono.Security.Cryptography.MD2Managed::Padding(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* MD2Managed_Padding_m3EB6A24F9144B480408240A0885F55C9BD0B47B1 (MD2Managed_t6867DBAD1BDCC846BE478BABC2D5DBAFFC7495EC * __this, int32_t ___nLength0, const RuntimeMethod* method);
// System.Void Mono.Security.Cryptography.MD4Managed::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MD4Managed__ctor_mDB4352DBB43112E1DF337DF241A3E25435C2C3C5 (MD4Managed_t1FC9A6CDB0A89A71416414689B3A0FF0283759D1 * __this, const RuntimeMethod* method);
// System.Void Mono.Security.Cryptography.MD4::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MD4__ctor_m6AD2F7EC5132898B34FA52CB4EAB9A82F0FEFF59 (MD4_t932C1DEA44D4B8650873251E88AA4096164BB380 * __this, const RuntimeMethod* method);
// System.Void Mono.Security.Cryptography.MD4Managed::MD4Transform(System.UInt32[],System.Byte[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MD4Managed_MD4Transform_m385B46D14814EB12B82642AC995E26FB99B6816C (MD4Managed_t1FC9A6CDB0A89A71416414689B3A0FF0283759D1 * __this, UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* ___state0, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___block1, int32_t ___index2, const RuntimeMethod* method);
// System.Void Mono.Security.Cryptography.MD4Managed::Encode(System.Byte[],System.UInt32[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MD4Managed_Encode_m4EAEC7D200AF9F9BBB8D4AAF0ABD4B5E9D9C4AF2 (MD4Managed_t1FC9A6CDB0A89A71416414689B3A0FF0283759D1 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___output0, UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* ___input1, const RuntimeMethod* method);
// System.Byte[] Mono.Security.Cryptography.MD4Managed::Padding(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* MD4Managed_Padding_m7AD58C8D8178AC6CD6738C93A146312D73ED0476 (MD4Managed_t1FC9A6CDB0A89A71416414689B3A0FF0283759D1 * __this, int32_t ___nLength0, const RuntimeMethod* method);
// System.UInt32 Mono.Security.Cryptography.MD4Managed::F(System.UInt32,System.UInt32,System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t MD4Managed_F_mB457E78CC0BDBD1ADCD8E687A6891E0D6B454174 (MD4Managed_t1FC9A6CDB0A89A71416414689B3A0FF0283759D1 * __this, uint32_t ___x0, uint32_t ___y1, uint32_t ___z2, const RuntimeMethod* method);
// System.UInt32 Mono.Security.Cryptography.MD4Managed::ROL(System.UInt32,System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t MD4Managed_ROL_mAD186591B4745F5050E7B34A5805A7476448D7F0 (MD4Managed_t1FC9A6CDB0A89A71416414689B3A0FF0283759D1 * __this, uint32_t ___x0, uint8_t ___n1, const RuntimeMethod* method);
// System.UInt32 Mono.Security.Cryptography.MD4Managed::G(System.UInt32,System.UInt32,System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t MD4Managed_G_mCF22020BF90E65B0E322FAE8962502BBC22A157F (MD4Managed_t1FC9A6CDB0A89A71416414689B3A0FF0283759D1 * __this, uint32_t ___x0, uint32_t ___y1, uint32_t ___z2, const RuntimeMethod* method);
// System.UInt32 Mono.Security.Cryptography.MD4Managed::H(System.UInt32,System.UInt32,System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t MD4Managed_H_mDF220E77C694540EF16BD892D7F03B34AE055225 (MD4Managed_t1FC9A6CDB0A89A71416414689B3A0FF0283759D1 * __this, uint32_t ___x0, uint32_t ___y1, uint32_t ___z2, const RuntimeMethod* method);
// System.Void Mono.Security.Cryptography.MD4Managed::Decode(System.UInt32[],System.Byte[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MD4Managed_Decode_m450A7CE51E89191B352AC0DD4527135B343443D6 (MD4Managed_t1FC9A6CDB0A89A71416414689B3A0FF0283759D1 * __this, UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* ___output0, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___input1, int32_t ___index2, const RuntimeMethod* method);
// System.Void Mono.Security.Cryptography.MD4Managed::FF(System.UInt32&,System.UInt32,System.UInt32,System.UInt32,System.UInt32,System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MD4Managed_FF_m8750957E572840973D5E0792CD61594F819861C3 (MD4Managed_t1FC9A6CDB0A89A71416414689B3A0FF0283759D1 * __this, uint32_t* ___a0, uint32_t ___b1, uint32_t ___c2, uint32_t ___d3, uint32_t ___x4, uint8_t ___s5, const RuntimeMethod* method);
// System.Void Mono.Security.Cryptography.MD4Managed::GG(System.UInt32&,System.UInt32,System.UInt32,System.UInt32,System.UInt32,System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MD4Managed_GG_m00A4648827B25DF55EABDF6FFB5C96E871C60E36 (MD4Managed_t1FC9A6CDB0A89A71416414689B3A0FF0283759D1 * __this, uint32_t* ___a0, uint32_t ___b1, uint32_t ___c2, uint32_t ___d3, uint32_t ___x4, uint8_t ___s5, const RuntimeMethod* method);
// System.Void Mono.Security.Cryptography.MD4Managed::HH(System.UInt32&,System.UInt32,System.UInt32,System.UInt32,System.UInt32,System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MD4Managed_HH_mC0581C10D440E254F218664593ED5291035038F6 (MD4Managed_t1FC9A6CDB0A89A71416414689B3A0FF0283759D1 * __this, uint32_t* ___a0, uint32_t ___b1, uint32_t ___c2, uint32_t ___d3, uint32_t ___x4, uint8_t ___s5, const RuntimeMethod* method);
// System.UInt32 <PrivateImplementationDetails>::ComputeStringHash(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t U3CPrivateImplementationDetailsU3E_ComputeStringHash_m8375D44A8A75C7D8223EA98CF65C40C0BA8C7BEB (String_t* ___s0, const RuntimeMethod* method);
// System.Boolean System.String::op_Equality(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE (String_t* ___a0, String_t* ___b1, const RuntimeMethod* method);
// Mono.Security.Cryptography.MD2 Mono.Security.Cryptography.MD2::Create()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MD2_tCAAEC1A28A3D0B9E8810B27E4840BEA399619442 * MD2_Create_mF375441B9B1B701ECE73B9B51AFE4E3ADDE6E02F (const RuntimeMethod* method);
// Mono.Security.Cryptography.MD4 Mono.Security.Cryptography.MD4::Create()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MD4_t932C1DEA44D4B8650873251E88AA4096164BB380 * MD4_Create_m2D436A4CC284704A7DA0EEF4C4D5860F69D0BB93 (const RuntimeMethod* method);
// System.Security.Cryptography.MD5 System.Security.Cryptography.MD5::Create()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MD5_tCED753745572EC20FE5D31D15F132736B5343EE6 * MD5_Create_m87EB14601AD6AF168032C29DA938E18454CA05AE (const RuntimeMethod* method);
// System.Security.Cryptography.SHA1 System.Security.Cryptography.SHA1::Create()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SHA1_t242C3C0C91D0CC11FA6F3CB0B06B416A550C6EAA * SHA1_Create_m5ECE86DE88BB9CDD4674000066642BA7FDF466E4 (const RuntimeMethod* method);
// System.Security.Cryptography.SHA256 System.Security.Cryptography.SHA256::Create()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SHA256_tF15350D910DF8AC1E6ADDBA904218F95554711BD * SHA256_Create_mBB1886B9CB89D706FB87832AB8EC74F3BD835C3F (const RuntimeMethod* method);
// System.Security.Cryptography.SHA384 System.Security.Cryptography.SHA384::Create()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SHA384_t73C69FA7FB10EF83355734BE635F079515FF5D37 * SHA384_Create_m1DB8E3BCF13E7A7A3903B0609491D6A1170C0695 (const RuntimeMethod* method);
// System.Security.Cryptography.SHA512 System.Security.Cryptography.SHA512::Create()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SHA512_tA4117C79CCB7ECF8AC39BDBE41A0D0294E9D6936 * SHA512_Create_mFAF244BD7F518A7FFCC07C8858EAC625FDA7B25E (const RuntimeMethod* method);
// System.Security.Cryptography.RIPEMD160 System.Security.Cryptography.RIPEMD160::Create()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RIPEMD160_t5BF1FB38C534BF0083B35AC6880867E11448EFE9 * RIPEMD160_Create_mA05D45DE1F4811F68B3BFE07CE48E025916D93F0 (const RuntimeMethod* method);
// System.Type System.Type::GetType(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Type_GetType_mCF0A3B28889C9FFB9987C8D30C23DF0912E7C00C (String_t* ___typeName0);
// System.Object System.Activator::CreateInstance(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Activator_CreateInstance_mD06EE47879F606317C6DA91FB63E678CABAC6A16 (Type_t * ___type0, const RuntimeMethod* method);
// System.Void System.Security.Cryptography.CryptographicException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CryptographicException__ctor_m0A5D357C12F9A830A9EBC51723094EBA5B854B98 (CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Void Mono.Security.Cryptography.PKCS8/EncryptedPrivateKeyInfo::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EncryptedPrivateKeyInfo__ctor_m8244581E6D6275989DE1D18E79B663BF62943069 (EncryptedPrivateKeyInfo_tF582FAE09721F4F2BB353D5C2E28682FFB9C303D * __this, const RuntimeMethod* method);
// System.Void Mono.Security.Cryptography.PKCS8/EncryptedPrivateKeyInfo::Decode(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EncryptedPrivateKeyInfo_Decode_mC67C5672B7231974FCDF510FD280883B2E5C8639 (EncryptedPrivateKeyInfo_tF582FAE09721F4F2BB353D5C2E28682FFB9C303D * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___data0, const RuntimeMethod* method);
// Mono.Security.ASN1 Mono.Security.ASN1::get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08 (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * __this, int32_t ___index0, const RuntimeMethod* method);
// System.String Mono.Security.ASN1Convert::ToOid(Mono.Security.ASN1)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ASN1Convert_ToOid_mFFA93B4BBEFCA8E4E86DAE87CDB998E78BFB2D5A (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * ___asn10, const RuntimeMethod* method);
// System.Int32 Mono.Security.ASN1Convert::ToInt32(Mono.Security.ASN1)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ASN1Convert_ToInt32_mA2A8761F965979408D46FBEB946DB59F36137A5E (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * ___asn10, const RuntimeMethod* method);
// System.Void Mono.Security.Cryptography.PKCS8/PrivateKeyInfo::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PrivateKeyInfo__ctor_m589C6263501E8226678D7B08B7C816E9C9EBD939 (PrivateKeyInfo_t053A73C524EC661748073EC908D290E2856DB5B9 * __this, const RuntimeMethod* method);
// System.Void Mono.Security.Cryptography.PKCS8/PrivateKeyInfo::Decode(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PrivateKeyInfo_Decode_mC8128B0803CD098039C8281AF413EEADD82EF13C (PrivateKeyInfo_t053A73C524EC661748073EC908D290E2856DB5B9 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___data0, const RuntimeMethod* method);
// System.Byte[] Mono.Security.Cryptography.PKCS8/PrivateKeyInfo::RemoveLeadingZero(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* PrivateKeyInfo_RemoveLeadingZero_m674CB83B855FB14F8C49F062C3261D2587596384 (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___bigInt0, const RuntimeMethod* method);
// System.Byte[] Mono.Security.Cryptography.PKCS8/PrivateKeyInfo::Normalize(System.Byte[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* PrivateKeyInfo_Normalize_m918031FFC55B1092BD5004D914538F78CE701606 (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___bigInt0, int32_t ___length1, const RuntimeMethod* method);
// System.Security.Cryptography.RSA System.Security.Cryptography.RSA::Create()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RSA_tB6C4B434B2AC02E3F8981DB2908C2018E251D145 * RSA_Create_m1AF30C2FAB458D7291DA15B4D2650AE7507DEDAB (const RuntimeMethod* method);
// System.Void System.Security.Cryptography.CspParameters::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CspParameters__ctor_m6C7ED4CF3021168DC6CEFB0FECC591547DCE4342 (CspParameters_t7DDB44526A2A9693723C2FA915D9DCF2848998C7 * __this, const RuntimeMethod* method);
// System.Void System.Security.Cryptography.CspParameters::set_Flags(System.Security.Cryptography.CspProviderFlags)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CspParameters_set_Flags_m4982C5960E9DE0BE5FA72E859B5DF0FB803B9E1F (CspParameters_t7DDB44526A2A9693723C2FA915D9DCF2848998C7 * __this, int32_t ___value0, const RuntimeMethod* method);
// System.Void System.Security.Cryptography.RSACryptoServiceProvider::.ctor(System.Security.Cryptography.CspParameters)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RSACryptoServiceProvider__ctor_m1688FF86ACB164CE19D754507AA1D87535BC2A30 (RSACryptoServiceProvider_t6DC0FC3205BA6CDCA4FF2AEEF566D8F0CCE26AD4 * __this, CspParameters_t7DDB44526A2A9693723C2FA915D9DCF2848998C7 * ___parameters0, const RuntimeMethod* method);
// Mono.Security.ASN1 Mono.Security.ASN1Convert::FromUnsignedBigInteger(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * ASN1Convert_FromUnsignedBigInteger_mB500398BFB7953610B9218268B91E1960BA2E57A (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___big0, const RuntimeMethod* method);
// System.Security.Cryptography.DSA System.Security.Cryptography.DSA::Create()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DSA_t932F4A94DD2B782BFFC197544398826E6CDB64CF * DSA_Create_m727400EBC98FEDC4F43DD568D974EDC1CD2868BA (const RuntimeMethod* method);
// System.Byte[] Mono.Security.Cryptography.PKCS8/PrivateKeyInfo::Encode(System.Security.Cryptography.RSA)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* PrivateKeyInfo_Encode_mF1C1E856195368C0FD130E5E8DEFA373C9F4BEA5 (RSA_tB6C4B434B2AC02E3F8981DB2908C2018E251D145 * ___rsa0, const RuntimeMethod* method);
// System.Byte[] Mono.Security.Cryptography.PKCS8/PrivateKeyInfo::Encode(System.Security.Cryptography.DSA)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* PrivateKeyInfo_Encode_m2BD3A752B326B5CE1243BF80896C452F710C8FB8 (DSA_t932F4A94DD2B782BFFC197544398826E6CDB64CF * ___dsa0, const RuntimeMethod* method);
// System.Void System.Security.Cryptography.CryptographicException::.ctor(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CryptographicException__ctor_mA09CE78A67CC67991C8D2F77FBC4F8029E593195 (CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A * __this, String_t* ___format0, String_t* ___insert1, const RuntimeMethod* method);
// System.Void System.Object::Finalize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object_Finalize_m4015B7D3A44DE125C5FE34D7276CD4697C06F380 (RuntimeObject * __this, const RuntimeMethod* method);
// Mono.Math.BigInteger Mono.Math.BigInteger::GeneratePseudoPrime(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * BigInteger_GeneratePseudoPrime_m40B9FAE1552A9CEF0A39529CF40E2F5C9FD377DE (int32_t ___bits0, const RuntimeMethod* method);
// System.Boolean Mono.Math.BigInteger::op_LessThan(Mono.Math.BigInteger,Mono.Math.BigInteger)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BigInteger_op_LessThan_m3E95747DE75EE020DB45C030FEA87F2785F1F106 (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi10, BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi21, const RuntimeMethod* method);
// Mono.Math.BigInteger Mono.Math.BigInteger::ModInverse(Mono.Math.BigInteger)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * BigInteger_ModInverse_mBA7BA94A2C0F242844B97B18DAEE368065E59522 (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * __this, BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___modulus0, const RuntimeMethod* method);
// System.Void Mono.Security.Cryptography.RSAManaged/KeyGeneratedEventHandler::Invoke(System.Object,System.EventArgs)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyGeneratedEventHandler_Invoke_m2544ADEDCC25B2745B8803AC571D74C34459F2F2 (KeyGeneratedEventHandler_t4696955EF1EA571682FB3F21F5A4CA5E5B6737A9 * __this, RuntimeObject * ___sender0, EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * ___e1, const RuntimeMethod* method);
// System.String Locale::GetText(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Locale_GetText_m67B66557188C94648AA7A23F6A7501BE7D455ADA (String_t* ___msg0, const RuntimeMethod* method);
// System.Void System.ObjectDisposedException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectDisposedException__ctor_m8B5D23EA08E42BDE6BC5233CC666295F19BBD2F9 (ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A * __this, String_t* ___objectName0, const RuntimeMethod* method);
// System.Int32 System.Security.Cryptography.AsymmetricAlgorithm::get_KeySize()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t AsymmetricAlgorithm_get_KeySize_mE8C6882BD6C01D3721FAE2B622DFACD89072FB50_inline (AsymmetricAlgorithm_t9F811260245370BD8786A849DBF9F8054F97F4CB * __this, const RuntimeMethod* method);
// System.Void Mono.Security.Cryptography.RSAManaged::GenerateKeyPair()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RSAManaged_GenerateKeyPair_m01DBB9859ED6B604FD48A26561F33FC8213A4BE5 (RSAManaged_t386184E253177BF2DD9589A7E9C171DA8E718745 * __this, const RuntimeMethod* method);
// System.Byte[] Mono.Math.BigInteger::GetBytes()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* BigInteger_GetBytes_m3FA801F9485DE409CF9C9E7F4873694BF642C31C (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * __this, const RuntimeMethod* method);
// System.Byte[] Mono.Security.Cryptography.RSAManaged::GetPaddedValue(Mono.Math.BigInteger,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* RSAManaged_GetPaddedValue_m09F304D316894F8620769B764EE99DC5FBF29471 (RSAManaged_t386184E253177BF2DD9589A7E9C171DA8E718745 * __this, BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___value0, int32_t ___length1, const RuntimeMethod* method);
// System.Void Mono.Math.BigInteger::.ctor(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BigInteger__ctor_m12A6762C07A6C1B90E6461D22E25A4DE6D3F1250 (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___inData0, const RuntimeMethod* method);
// System.Void Mono.Math.BigInteger::Clear()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BigInteger_Clear_m255C25D3F81897E8ACF1B0F1C75E33459E4E9ECD (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * __this, const RuntimeMethod* method);
// System.String System.Convert::ToBase64String(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Convert_ToBase64String_mF201749AD724C437524C8A6108519470A0F65B84 (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___inArray0, const RuntimeMethod* method);
// System.Void Mono.Security.Interface.Alert::inferAlertLevel()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Alert_inferAlertLevel_m3501288705DB4CCFDCBB9230E4C3F2E819738A9C (Alert_tABF269545F2C583CCA47FF574E612DDAF232944E * __this, const RuntimeMethod* method);
// Mono.Security.Interface.AlertLevel Mono.Security.Interface.Alert::get_Level()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR uint8_t Alert_get_Level_m4D9BDC77286315A186F6517A3AE514DD7B31FBDC_inline (Alert_tABF269545F2C583CCA47FF574E612DDAF232944E * __this, const RuntimeMethod* method);
// Mono.Security.Interface.AlertDescription Mono.Security.Interface.Alert::get_Description()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR uint8_t Alert_get_Description_m3FDF20086BFE900B014DB0EA960F27413326A11D_inline (Alert_tABF269545F2C583CCA47FF574E612DDAF232944E * __this, const RuntimeMethod* method);
// System.String System.String::Format(System.String,System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m19325298DBC61AAC016C16F7B3CF97A8A3DEA34A (String_t* ___format0, RuntimeObject * ___arg01, RuntimeObject * ___arg12, const RuntimeMethod* method);
// System.Boolean System.IO.File::Exists(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool File_Exists_m6B9BDD8EEB33D744EB0590DD27BC0152FAFBD1FB (String_t* ___path0, const RuntimeMethod* method);
// System.Object Mono.Net.Security.NoReflectionHelper::GetInternalValidator(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * NoReflectionHelper_GetInternalValidator_m231BC9D1C0A711D48F25B6F0162ACABBA93A0D74 (RuntimeObject * ___provider0, RuntimeObject * ___settings1, const RuntimeMethod* method);
// Mono.Security.Interface.TlsProtocols Mono.Security.Interface.MonoTlsConnectionInfo::get_ProtocolVersion()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t MonoTlsConnectionInfo_get_ProtocolVersion_m63DA43DE02158D38E19EB7E5E93DD3E2EA6B87CA_inline (MonoTlsConnectionInfo_tE32F709ECF061DD150F45384869CE8431BD7A74D * __this, const RuntimeMethod* method);
// Mono.Security.Interface.CipherSuiteCode Mono.Security.Interface.MonoTlsConnectionInfo::get_CipherSuiteCode()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR uint16_t MonoTlsConnectionInfo_get_CipherSuiteCode_m8C74B9FD02856309D7179AB0BE91B2F3F8BDF951_inline (MonoTlsConnectionInfo_tE32F709ECF061DD150F45384869CE8431BD7A74D * __this, const RuntimeMethod* method);
// System.Object Mono.Net.Security.NoReflectionHelper::GetProvider()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * NoReflectionHelper_GetProvider_m59893E33828D7422C8A4779F4C608373877FC05A (const RuntimeMethod* method);
// System.Void Mono.Security.Interface.MonoTlsSettings::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoTlsSettings__ctor_m09A7B7F0B1CA2775C8A24B8A6BEC032E6B1C0A72 (MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * __this, const RuntimeMethod* method);
// Mono.Security.Interface.MonoTlsSettings Mono.Security.Interface.MonoTlsSettings::get_DefaultSettings()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * MonoTlsSettings_get_DefaultSettings_m49A7CECC7D687F62790DD374D560278D3916B887 (const RuntimeMethod* method);
// Mono.Security.Interface.MonoTlsSettings Mono.Security.Interface.MonoTlsSettings::Clone()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * MonoTlsSettings_Clone_mF28F7F627B12CBD0BD1ABD6F35DD0B4BAD2E3840 (MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * __this, const RuntimeMethod* method);
// System.Void Mono.Security.Interface.MonoTlsSettings::.ctor(Mono.Security.Interface.MonoTlsSettings)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoTlsSettings__ctor_m3D336E73C9393401BE9BE856B7204BA176F52B17 (MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * __this, MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * ___other0, const RuntimeMethod* method);
// Mono.Security.Interface.MonoRemoteCertificateValidationCallback Mono.Security.Interface.MonoTlsSettings::get_RemoteCertificateValidationCallback()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR MonoRemoteCertificateValidationCallback_t7A8DAD12B70CE3BB19BAAD04F587D5ED02385CC6 * MonoTlsSettings_get_RemoteCertificateValidationCallback_m1718C4B085FE8A31AFC7262616FFC5071072D737_inline (MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * __this, const RuntimeMethod* method);
// System.Void Mono.Security.Interface.MonoTlsSettings::set_RemoteCertificateValidationCallback(Mono.Security.Interface.MonoRemoteCertificateValidationCallback)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void MonoTlsSettings_set_RemoteCertificateValidationCallback_mC9225CD237B10BBF4813A975D827B822DF970E21_inline (MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * __this, MonoRemoteCertificateValidationCallback_t7A8DAD12B70CE3BB19BAAD04F587D5ED02385CC6 * ___value0, const RuntimeMethod* method);
// Mono.Security.Interface.MonoLocalCertificateSelectionCallback Mono.Security.Interface.MonoTlsSettings::get_ClientCertificateSelectionCallback()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR MonoLocalCertificateSelectionCallback_t657381EF916D4EDC456FA5A6AC948EFD7A481F0A * MonoTlsSettings_get_ClientCertificateSelectionCallback_mAD91A51A5228D02BF8F2B6F1F49A0646D029E1D0_inline (MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * __this, const RuntimeMethod* method);
// System.Void Mono.Security.Interface.MonoTlsSettings::set_ClientCertificateSelectionCallback(Mono.Security.Interface.MonoLocalCertificateSelectionCallback)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void MonoTlsSettings_set_ClientCertificateSelectionCallback_m815474865E0743103BE1BA06CCFC85588BAFBAA4_inline (MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * __this, MonoLocalCertificateSelectionCallback_t657381EF916D4EDC456FA5A6AC948EFD7A481F0A * ___value0, const RuntimeMethod* method);
// System.Void Mono.Security.Interface.MonoTlsSettings::set_UseServicePointManagerCallback(System.Nullable`1<System.Boolean>)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void MonoTlsSettings_set_UseServicePointManagerCallback_m3982FDDB084256E77E18F9A3E42E91E65F6F699B_inline (MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * __this, Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 ___value0, const RuntimeMethod* method);
// System.Object Mono.Security.Interface.MonoTlsSettings::get_UserSettings()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * MonoTlsSettings_get_UserSettings_m31F62282C588A3847737F11AF9158E493CD86E9A_inline (MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * __this, const RuntimeMethod* method);
// System.Void Mono.Security.Interface.MonoTlsSettings::set_UserSettings(System.Object)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void MonoTlsSettings_set_UserSettings_mEC113D468C571102A4FF0327E617E7BA30D5D3F8_inline (MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * __this, RuntimeObject * ___value0, const RuntimeMethod* method);
// System.Nullable`1<Mono.Security.Interface.TlsProtocols> Mono.Security.Interface.MonoTlsSettings::get_EnabledProtocols()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Nullable_1_t601798BE10C3F3F37B6755E475BB1B3760DCBB10 MonoTlsSettings_get_EnabledProtocols_mB290C2A19B7268559520FDF47925D20A4F9D8106_inline (MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * __this, const RuntimeMethod* method);
// System.Void Mono.Security.Interface.MonoTlsSettings::set_EnabledProtocols(System.Nullable`1<Mono.Security.Interface.TlsProtocols>)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void MonoTlsSettings_set_EnabledProtocols_m88B942CBAB596E1F6FC91744D93F845862796A32_inline (MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * __this, Nullable_1_t601798BE10C3F3F37B6755E475BB1B3760DCBB10 ___value0, const RuntimeMethod* method);
// Mono.Security.Interface.CipherSuiteCode[] Mono.Security.Interface.MonoTlsSettings::get_EnabledCiphers()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR CipherSuiteCodeU5BU5D_t0EC37AD4A25BB94BA9AB4A9C0C4802BD79A07CC4* MonoTlsSettings_get_EnabledCiphers_mB3F4FB0A332010BBCDF8EFF2B6B105C0CC92AF1D_inline (MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * __this, const RuntimeMethod* method);
// System.Void Mono.Security.Interface.MonoTlsSettings::set_EnabledCiphers(Mono.Security.Interface.CipherSuiteCode[])
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void MonoTlsSettings_set_EnabledCiphers_m27702EB1FBABCE66F73582F1F3B7DD14B4A95E12_inline (MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * __this, CipherSuiteCodeU5BU5D_t0EC37AD4A25BB94BA9AB4A9C0C4802BD79A07CC4* ___value0, const RuntimeMethod* method);
// System.Nullable`1<System.DateTime> Mono.Security.Interface.MonoTlsSettings::get_CertificateValidationTime()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Nullable_1_t3290384E361396B3724B88B498CBF637D7E87B78 MonoTlsSettings_get_CertificateValidationTime_m51F473A56D26B7FF38182524C3EF3250653181CD_inline (MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * __this, const RuntimeMethod* method);
// System.Void Mono.Security.Interface.MonoTlsSettings::set_CertificateValidationTime(System.Nullable`1<System.DateTime>)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void MonoTlsSettings_set_CertificateValidationTime_mD081C06E0CCCCEF4230D2A7A70ED06F7E5D1717D_inline (MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * __this, Nullable_1_t3290384E361396B3724B88B498CBF637D7E87B78 ___value0, const RuntimeMethod* method);
// System.Boolean Mono.Security.Interface.MonoTlsSettings::get_SendCloseNotify()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool MonoTlsSettings_get_SendCloseNotify_m4E72508568F2055945A21AD19B1129AD2437C92F_inline (MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * __this, const RuntimeMethod* method);
// System.Void Mono.Security.Interface.MonoTlsSettings::set_SendCloseNotify(System.Boolean)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void MonoTlsSettings_set_SendCloseNotify_m292B72B22AC90DAC052BB0CB28D079F258803521_inline (MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * __this, bool ___value0, const RuntimeMethod* method);
// System.Security.Cryptography.X509Certificates.X509CertificateCollection Mono.Security.Interface.MonoTlsSettings::get_TrustAnchors()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR X509CertificateCollection_t824A6C58D0D1B4A7CAE30F26CE8EE4B23A8A1833 * MonoTlsSettings_get_TrustAnchors_mD6ADD8546ED8D9C0BA58A25F0ADA0BBB5127F28F_inline (MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * __this, const RuntimeMethod* method);
// System.Void System.Security.Cryptography.X509Certificates.X509CertificateCollection::.ctor(System.Security.Cryptography.X509Certificates.X509CertificateCollection)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509CertificateCollection__ctor_m24BAA500237577256DCA1BD814ED88D163E702E3 (X509CertificateCollection_t824A6C58D0D1B4A7CAE30F26CE8EE4B23A8A1833 * __this, X509CertificateCollection_t824A6C58D0D1B4A7CAE30F26CE8EE4B23A8A1833 * ___value0, const RuntimeMethod* method);
// System.Void Mono.Security.Interface.MonoTlsSettings::set_TrustAnchors(System.Security.Cryptography.X509Certificates.X509CertificateCollection)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void MonoTlsSettings_set_TrustAnchors_m96D71EF074D01C5CBF8159B392825679DADD9B2A_inline (MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * __this, X509CertificateCollection_t824A6C58D0D1B4A7CAE30F26CE8EE4B23A8A1833 * ___value0, const RuntimeMethod* method);
// System.String[] Mono.Security.Interface.MonoTlsSettings::get_CertificateSearchPaths()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* MonoTlsSettings_get_CertificateSearchPaths_mE287996050CC9939D950713EAB5FC382FC64453B_inline (MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * __this, const RuntimeMethod* method);
// System.Void Mono.Security.Interface.MonoTlsSettings::set_CertificateSearchPaths(System.String[])
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void MonoTlsSettings_set_CertificateSearchPaths_m7A42E0C25B12F9D923BEDE97E270433CD3C8A1D4_inline (MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * __this, StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___value0, const RuntimeMethod* method);
// System.Void System.Array::CopyTo(System.Array,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_CopyTo_m455300D414FFB0EBFE53EA4E8BBD31532006EBB7 (RuntimeArray * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method);
// System.Void Mono.Security.Interface.Alert::.ctor(Mono.Security.Interface.AlertDescription)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Alert__ctor_mD0D7AE959A64782F053515E043A70D71E229279B (Alert_tABF269545F2C583CCA47FF574E612DDAF232944E * __this, uint8_t ___description0, const RuntimeMethod* method);
// System.Void Mono.Security.Interface.TlsException::.ctor(Mono.Security.Interface.Alert,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TlsException__ctor_m5B7689890B3AE575E72A71FB19541C2BBAEF2D93 (TlsException_t774465EA64E3ADAAE3DB21835DD9AB8C40247F91 * __this, Alert_tABF269545F2C583CCA47FF574E612DDAF232944E * ___alert0, String_t* ___message1, const RuntimeMethod* method);
// System.Void Mono.Security.PKCS7/ContentInfo::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContentInfo__ctor_mEE9D9E1E66FBF3DA3414423F0D4216E40C625BFA (ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * __this, const RuntimeMethod* method);
// System.Void Mono.Security.PKCS7/ContentInfo::.ctor(Mono.Security.ASN1)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContentInfo__ctor_m3AAF5EC77C4891BB1B6AF1F980C8623C0621852D (ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * __this, ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * ___asn10, const RuntimeMethod* method);
// System.Void System.ArgumentException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7 (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * __this, String_t* ___message0, const RuntimeMethod* method);
// Mono.Security.ASN1 Mono.Security.PKCS7/ContentInfo::GetASN1()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * ContentInfo_GetASN1_m3DF4C4558BE17D650B80B7971158C1B704C7B995 (ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * __this, const RuntimeMethod* method);
// Mono.Security.ASN1 Mono.Security.ASN1Convert::FromOid(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * ASN1Convert_FromOid_mC178E72357986C1AB75A1FFC9DA7687ECA20E462 (String_t* ___oid0, const RuntimeMethod* method);
// System.Void Mono.Security.PKCS7/EncryptedData::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EncryptedData__ctor_m960EE725A153200911315F85B009E0D9E99D8114 (EncryptedData_tA100D7E93FCF1B7CBD486522E841F0A980CCE61B * __this, const RuntimeMethod* method);
// System.Void Mono.Security.PKCS7/ContentInfo::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContentInfo__ctor_mF21B31604F01A686DB03E30FEAE859A53A0E084A (ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * __this, String_t* ___oid0, const RuntimeMethod* method);
// System.Void Mono.Security.PKCS7/ContentInfo::set_Content(Mono.Security.ASN1)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void ContentInfo_set_Content_m15B5D9A61236E1C116A9B5A651E80C5D78FB2598_inline (ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * __this, ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * ___value0, const RuntimeMethod* method);
// System.Void Mono.Security.Protocol.Ntlm.ChallengeResponse::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ChallengeResponse__ctor_m1E0300839CAF582A720DB0F4F9E425B6EE12B258 (ChallengeResponse_t2A954E3C6AB2D638ECA50E1B8ACB99E8F28A048B * __this, const RuntimeMethod* method);
// System.Void Mono.Security.Protocol.Ntlm.ChallengeResponse::set_Password(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ChallengeResponse_set_Password_m530EB94179C374BED9B9AAE4BB30AB3FF14F07E2 (ChallengeResponse_t2A954E3C6AB2D638ECA50E1B8ACB99E8F28A048B * __this, String_t* ___value0, const RuntimeMethod* method);
// System.Void Mono.Security.Protocol.Ntlm.ChallengeResponse::set_Challenge(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ChallengeResponse_set_Challenge_mD747C1A002528A6E9AFDE848AA257FD7B1B85E6F (ChallengeResponse_t2A954E3C6AB2D638ECA50E1B8ACB99E8F28A048B * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___value0, const RuntimeMethod* method);
// System.Void Mono.Security.Protocol.Ntlm.ChallengeResponse::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ChallengeResponse_Dispose_mD6C08D1EDA541DC5A9B287744FB18E3149627434 (ChallengeResponse_t2A954E3C6AB2D638ECA50E1B8ACB99E8F28A048B * __this, const RuntimeMethod* method);
// System.Security.Cryptography.DES System.Security.Cryptography.DES::Create()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DES_tFB993FE8AF9722A555B0737FE730332CCD86F6F0 * DES_Create_m5EE267FBCD5AA18E04C29247C796430D12247CC5 (const RuntimeMethod* method);
// System.Byte[] Mono.Security.Protocol.Ntlm.ChallengeResponse::PasswordToKey(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ChallengeResponse_PasswordToKey_m522B84CA0312284486A2C4E10FEE2D74BF4FF163 (ChallengeResponse_t2A954E3C6AB2D638ECA50E1B8ACB99E8F28A048B * __this, String_t* ___password0, int32_t ___position1, const RuntimeMethod* method);
// System.Text.Encoding System.Text.Encoding::get_Unicode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * Encoding_get_Unicode_m86CC470F70F9BB52DDB26721F0C0D6EDAFC318AA (const RuntimeMethod* method);
// System.Byte[] System.Security.Cryptography.HashAlgorithm::ComputeHash(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* HashAlgorithm_ComputeHash_m18501D3068AEBEB5FA83EA72BE780E371DB0C122 (HashAlgorithm_t65659695B16C0BBF05707BF45191A97DC156D6BA * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer0, const RuntimeMethod* method);
// System.Void System.Security.Cryptography.SymmetricAlgorithm::Clear()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SymmetricAlgorithm_Clear_m8487379B135918E72684597CFE388EF7FCA733D2 (SymmetricAlgorithm_t0A2EC7E7AD8B8976832B4F0AC432B691F862E789 * __this, const RuntimeMethod* method);
// System.Byte[] Mono.Security.Protocol.Ntlm.ChallengeResponse::GetResponse(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ChallengeResponse_GetResponse_m526E49021AB29DD12995CF8BB12DC9F03F2A583F (ChallengeResponse_t2A954E3C6AB2D638ECA50E1B8ACB99E8F28A048B * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___pwd0, const RuntimeMethod* method);
// System.Void Mono.Security.Protocol.Ntlm.ChallengeResponse::Dispose(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ChallengeResponse_Dispose_mF3B015B967C89BE1E139EFA40740208B10441AED (ChallengeResponse_t2A954E3C6AB2D638ECA50E1B8ACB99E8F28A048B * __this, bool ___disposing0, const RuntimeMethod* method);
// System.Void System.GC::SuppressFinalize(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GC_SuppressFinalize_m037319A9B95A5BA437E806DE592802225EE5B425 (RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Byte[] Mono.Security.Protocol.Ntlm.ChallengeResponse::PrepareDESKey(System.Byte[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ChallengeResponse_PrepareDESKey_m32B2174E0B63E959CE08204F3C39AAA01799A3B3 (ChallengeResponse_t2A954E3C6AB2D638ECA50E1B8ACB99E8F28A048B * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___key56bits0, int32_t ___position1, const RuntimeMethod* method);
// System.Int32 System.Math::Min(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Math_Min_mC950438198519FB2B0260FCB91220847EE4BB525 (int32_t ___val10, int32_t ___val21, const RuntimeMethod* method);
// System.Globalization.CultureInfo System.Globalization.CultureInfo::get_CurrentCulture()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * CultureInfo_get_CurrentCulture_mD86F3D8E5D332FB304F80D9B9CA4DE849C2A6831 (const RuntimeMethod* method);
// System.String System.String::ToUpper(System.Globalization.CultureInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_ToUpper_m8C69D974350ABA8BA0BC3A66996004CCEFD64293 (String_t* __this, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___culture0, const RuntimeMethod* method);
// System.Byte[] Mono.Security.Protocol.Ntlm.ChallengeResponse2::PasswordToKey(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ChallengeResponse2_PasswordToKey_m2871E605818DF2DE4BC5B1B163831BA8F64006D8 (String_t* ___password0, int32_t ___position1, const RuntimeMethod* method);
// System.Byte[] Mono.Security.Protocol.Ntlm.ChallengeResponse2::GetResponse(System.Byte[],System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ChallengeResponse2_GetResponse_mE39699CD2453921E373BF9768180993EDCD810E7 (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___challenge0, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___pwd1, const RuntimeMethod* method);
// System.Byte[] Mono.Security.Protocol.Ntlm.ChallengeResponse2::Compute_NTLM_Password(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ChallengeResponse2_Compute_NTLM_Password_mD27D4A18DBD712B0E80B0F2A1CB296B353312C41 (String_t* ___password0, const RuntimeMethod* method);
// System.Void System.Array::Copy(System.Array,System.Array,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Copy_m2D96731C600DE8A167348CA8BA796344E64F7434 (RuntimeArray * ___sourceArray0, RuntimeArray * ___destinationArray1, int32_t ___length2, const RuntimeMethod* method);
// System.Byte[] Mono.Security.Protocol.Ntlm.ChallengeResponse2::Compute_NTLM(System.String,System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ChallengeResponse2_Compute_NTLM_mA1DCA878A3A7A5517DB8BB0F2BEDD29353573976 (String_t* ___password0, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___challenge1, const RuntimeMethod* method);
// System.String System.String::ToUpperInvariant()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_ToUpperInvariant_m0AA42416F4CACA4D0E3B89D97E534D88AB136338 (String_t* __this, const RuntimeMethod* method);
// System.Void System.Array::Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6 (RuntimeArray * ___sourceArray0, int32_t ___sourceIndex1, RuntimeArray * ___destinationArray2, int32_t ___destinationIndex3, int32_t ___length4, const RuntimeMethod* method);
// System.Void System.Security.Cryptography.HMACMD5::.ctor(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HMACMD5__ctor_m246E639FCF66A7C0A443CF06F461A3C5C26EB6F9 (HMACMD5_t8C6693E41EEA9BF26BBAF880B405CC170C43F11B * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___key0, const RuntimeMethod* method);
// System.Void System.Security.Cryptography.HashAlgorithm::Clear()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HashAlgorithm_Clear_m2E975EB7B42C1E241B24578CDF15AD41F35A5A8D (HashAlgorithm_t65659695B16C0BBF05707BF45191A97DC156D6BA * __this, const RuntimeMethod* method);
// System.DateTime System.DateTime::get_Now()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 DateTime_get_Now_mB464D30F15C97069F92C1F910DCDDC3DFCC7F7D2 (const RuntimeMethod* method);
// System.Int64 System.DateTime::get_Ticks()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t DateTime_get_Ticks_mBCB529E43D065E498EAF08971D2EB49D5CB59D60 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, const RuntimeMethod* method);
// System.Byte[] Mono.Security.Protocol.Ntlm.Type2Message::get_TargetInfo()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* Type2Message_get_TargetInfo_m5E0F0E5A6B32B7512393EDC2DFE9E8A6D79DB485 (Type2Message_t990283F48D41AECF1FFBDAA3A194CDE9C9078398 * __this, const RuntimeMethod* method);
// System.Byte[] Mono.Security.BitConverterLE::GetBytes(System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* BitConverterLE_GetBytes_m8B2BFEBCB4830C010E4572C925AE3C3A3CC14031 (int64_t ___value0, const RuntimeMethod* method);
// System.Byte[] Mono.Security.Protocol.Ntlm.Type2Message::get_Nonce()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* Type2Message_get_Nonce_mEE9D40B2B299766F6B789195174BC580BDAEB4E1 (Type2Message_t990283F48D41AECF1FFBDAA3A194CDE9C9078398 * __this, const RuntimeMethod* method);
// System.Byte[] Mono.Security.Protocol.Ntlm.ChallengeResponse2::Compute_LM(System.String,System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ChallengeResponse2_Compute_LM_m3A1F9371E4F1E41B044787FFB3BE985E92A3AC22 (String_t* ___password0, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___challenge1, const RuntimeMethod* method);
// Mono.Security.Protocol.Ntlm.NtlmFlags Mono.Security.Protocol.Ntlm.MessageBase::get_Flags()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t MessageBase_get_Flags_m226EB26B3AB8C91ADA936E7B45CC8968D0F4CA9E_inline (MessageBase_t504D166CC4021DEB56DED308D5E82C67F47F26C0 * __this, const RuntimeMethod* method);
// System.Void Mono.Security.Protocol.Ntlm.ChallengeResponse2::Compute_NTLMv2_Session(System.String,System.Byte[],System.Byte[]&,System.Byte[]&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ChallengeResponse2_Compute_NTLMv2_Session_mFB6537BF7FC8D9D7CCE55BFCDF6A7C371460E296 (String_t* ___password0, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___challenge1, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** ___lm2, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** ___ntlm3, const RuntimeMethod* method);
// System.Byte[] Mono.Security.Protocol.Ntlm.ChallengeResponse2::Compute_NTLMv2(Mono.Security.Protocol.Ntlm.Type2Message,System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ChallengeResponse2_Compute_NTLMv2_mBCFF2DF7375AD035B98FC84253201D269201CE43 (Type2Message_t990283F48D41AECF1FFBDAA3A194CDE9C9078398 * ___type20, String_t* ___username1, String_t* ___password2, String_t* ___domain3, const RuntimeMethod* method);
// System.Void System.InvalidOperationException::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_m1F94EA1226068BD1B7EAA1B836A59C99979F579E (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * __this, const RuntimeMethod* method);
// System.Byte[] Mono.Security.Protocol.Ntlm.ChallengeResponse2::PrepareDESKey(System.Byte[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ChallengeResponse2_PrepareDESKey_m428EF8F37B18E0B4FC5895BFF02A681740CF7608 (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___key56bits0, int32_t ___position1, const RuntimeMethod* method);
// System.Void System.ArgumentOutOfRangeException::.ctor(System.String,System.Object,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_m755B01B4B4595B447596E3281F22FD7CE6DAE378 (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * __this, String_t* ___paramName0, RuntimeObject * ___actualValue1, String_t* ___message2, const RuntimeMethod* method);
// System.Boolean Mono.Security.Protocol.Ntlm.MessageBase::CheckHeader(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MessageBase_CheckHeader_m427014E264FA451B68062CFF8A1939DC3A04FB5A (MessageBase_t504D166CC4021DEB56DED308D5E82C67F47F26C0 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___message0, const RuntimeMethod* method);
// System.String System.String::Format(System.String,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m0ACDD8B34764E4040AED0B3EEB753567E4576BFA (String_t* ___format0, RuntimeObject * ___arg01, const RuntimeMethod* method);
// System.UInt32 Mono.Security.BitConverterLE::ToUInt32(System.Byte[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t BitConverterLE_ToUInt32_m898E287439DDB0A31E4E39FF83DD032B1C43FA26 (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___value0, int32_t ___startIndex1, const RuntimeMethod* method);
// System.Void Mono.Security.Protocol.Ntlm.MessageBase::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MessageBase__ctor_m32BA1280CB1020E88C6EF6DFA9C3ABABF3B36E59 (MessageBase_t504D166CC4021DEB56DED308D5E82C67F47F26C0 * __this, int32_t ___messageType0, const RuntimeMethod* method);
// System.String System.Environment::get_UserDomainName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_get_UserDomainName_mC55D253D7319CBE9030836E420FF9518921C3A52 (const RuntimeMethod* method);
// System.String System.Environment::get_MachineName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_get_MachineName_m0300D26C1A5348D90800793717D33B1F629AF10D (const RuntimeMethod* method);
// System.Void Mono.Security.Protocol.Ntlm.MessageBase::set_Flags(Mono.Security.Protocol.Ntlm.NtlmFlags)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void MessageBase_set_Flags_m0E8B48A02DB678CB59A3D3274AE51418732C864C_inline (MessageBase_t504D166CC4021DEB56DED308D5E82C67F47F26C0 * __this, int32_t ___value0, const RuntimeMethod* method);
// System.Void Mono.Security.Protocol.Ntlm.MessageBase::Decode(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MessageBase_Decode_m0994F2111010F3E105B94A83439BDBADA2E46537 (MessageBase_t504D166CC4021DEB56DED308D5E82C67F47F26C0 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___message0, const RuntimeMethod* method);
// System.UInt16 Mono.Security.BitConverterLE::ToUInt16(System.Byte[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t BitConverterLE_ToUInt16_mFC8811706681807666F91EE89A28ADF75DF6EFCC (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___value0, int32_t ___startIndex1, const RuntimeMethod* method);
// System.Byte[] Mono.Security.Protocol.Ntlm.MessageBase::PrepareMessage(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* MessageBase_PrepareMessage_m6B0C0C463C16D086924EC49DB07C3ADE95C11958 (MessageBase_t504D166CC4021DEB56DED308D5E82C67F47F26C0 * __this, int32_t ___messageSize0, const RuntimeMethod* method);
// Mono.Security.Protocol.Ntlm.NtlmAuthLevel Mono.Security.Protocol.Ntlm.NtlmSettings::get_DefaultAuthLevel()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t NtlmSettings_get_DefaultAuthLevel_m98EDE4292136121773A45127209BD926E1CF141A_inline (const RuntimeMethod* method);
// System.String Mono.Security.Protocol.Ntlm.Type2Message::get_TargetName()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* Type2Message_get_TargetName_m3B65DC156E863BC78E674D0D1BEF653B25F53B7D_inline (Type2Message_t990283F48D41AECF1FFBDAA3A194CDE9C9078398 * __this, const RuntimeMethod* method);
// System.String System.Environment::get_UserName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_get_UserName_m089F0073984A6341BC214F4EB3DE42ACD19D067B (const RuntimeMethod* method);
// System.String Mono.Security.Protocol.Ntlm.Type3Message::DecodeString(System.Byte[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Type3Message_DecodeString_mCB1797B1FA97CD96E788DCE096FDBC275685C42F (Type3Message_t6D21CF9E3D56192F8D9B6E2B29474773E838846C * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer0, int32_t ___offset1, int32_t ___len2, const RuntimeMethod* method);
// System.Byte[] Mono.Security.Protocol.Ntlm.Type3Message::EncodeString(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* Type3Message_EncodeString_m431F1D808D738A2C9CE57DE1084F9A42C036AA5A (Type3Message_t6D21CF9E3D56192F8D9B6E2B29474773E838846C * __this, String_t* ___text0, const RuntimeMethod* method);
// System.Void System.InvalidOperationException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706 (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Void Mono.Security.Protocol.Ntlm.ChallengeResponse::.ctor(System.String,System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ChallengeResponse__ctor_mF80EAE315F35264F1DA0167B3ED7A8CD8E2D1FFA (ChallengeResponse_t2A954E3C6AB2D638ECA50E1B8ACB99E8F28A048B * __this, String_t* ___password0, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___challenge1, const RuntimeMethod* method);
// System.Byte[] Mono.Security.Protocol.Ntlm.ChallengeResponse::get_LM()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ChallengeResponse_get_LM_m3916048E028CFCA867E801A83FEB949F7C089263 (ChallengeResponse_t2A954E3C6AB2D638ECA50E1B8ACB99E8F28A048B * __this, const RuntimeMethod* method);
// System.Byte[] Mono.Security.Protocol.Ntlm.ChallengeResponse::get_NT()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ChallengeResponse_get_NT_mEC9F2FDFDB8FADF415D4BA8A1564A23024FC3437 (ChallengeResponse_t2A954E3C6AB2D638ECA50E1B8ACB99E8F28A048B * __this, const RuntimeMethod* method);
// System.Void Mono.Security.Protocol.Ntlm.ChallengeResponse2::Compute(Mono.Security.Protocol.Ntlm.Type2Message,Mono.Security.Protocol.Ntlm.NtlmAuthLevel,System.String,System.String,System.String,System.Byte[]&,System.Byte[]&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ChallengeResponse2_Compute_mAA312CA925226C75A829516B6BDC2089840D389D (Type2Message_t990283F48D41AECF1FFBDAA3A194CDE9C9078398 * ___type20, int32_t ___level1, String_t* ___username2, String_t* ___password3, String_t* ___domain4, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** ___lm5, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** ___ntlm6, const RuntimeMethod* method);
// System.Void Mono.Security.X509.X509CertificateCollection::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509CertificateCollection__ctor_mC7C07103044E3520FC785CD5BF0018F27C3132EE (X509CertificateCollection_t423BA1B9FAA983BA745023994C648C6DAC3E5A1A * __this, const RuntimeMethod* method);
// System.Void Mono.Security.X509.PKCS12::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PKCS12__ctor_mB6E3957A0DB6D7E17808EB1141909F9D1AEC162F (PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C * __this, const RuntimeMethod* method);
// System.Void Mono.Security.X509.PKCS12::set_Password(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PKCS12_set_Password_mE1814AD9981817AEB8B4DAD7AED8DEA6A17F1DB0 (PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C * __this, String_t* ___value0, const RuntimeMethod* method);
// System.Void Mono.Security.X509.PKCS12::Decode(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PKCS12_Decode_m99D1E85A60263825BD361CFA623B088DE44FD2B7 (PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___data0, const RuntimeMethod* method);
// System.String Mono.Security.PKCS7/ContentInfo::get_ContentType()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* ContentInfo_get_ContentType_m26D6492CA5D227AAC583CFC4A898C056ACEC8196_inline (ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * __this, const RuntimeMethod* method);
// System.Boolean System.String::op_Inequality(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Inequality_m0BD184A74F453A72376E81CC6CAEE2556B80493E (String_t* ___a0, String_t* ___b1, const RuntimeMethod* method);
// Mono.Security.ASN1 Mono.Security.PKCS7/ContentInfo::get_Content()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * ContentInfo_get_Content_mCF1CED122282F62BAA3453E585E487D50367289F_inline (ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * __this, const RuntimeMethod* method);
// System.Byte[] Mono.Security.X509.PKCS12::MAC(System.Byte[],System.Byte[],System.Int32,System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* PKCS12_MAC_mA1250320B5F0B5C94D8532296AB59CC32B7A7E78 (PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___password0, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___salt1, int32_t ___iterations2, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___data3, const RuntimeMethod* method);
// System.Boolean Mono.Security.X509.PKCS12::Compare(System.Byte[],System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PKCS12_Compare_m12F289CEDEFD3FCB171A1D84CFC3B38657041FDC (PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___expected0, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___actual1, const RuntimeMethod* method);
// System.Void Mono.Security.X509.PKCS12::ReadSafeBag(Mono.Security.ASN1)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PKCS12_ReadSafeBag_m054D3F397B2D07EBD0ECDA6575D16EAA5AAE1B7B (PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C * __this, ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * ___safeBag0, const RuntimeMethod* method);
// System.Void Mono.Security.PKCS7/EncryptedData::.ctor(Mono.Security.ASN1)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EncryptedData__ctor_m385361DAE06A76AA773E49EF242400DE7F02A8FD (EncryptedData_tA100D7E93FCF1B7CBD486522E841F0A980CCE61B * __this, ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * ___asn10, const RuntimeMethod* method);
// System.Byte[] Mono.Security.X509.PKCS12::Decrypt(Mono.Security.PKCS7/EncryptedData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* PKCS12_Decrypt_mBEC36809198C23CF1A3DDBABEC167DAF259763AC (PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C * __this, EncryptedData_tA100D7E93FCF1B7CBD486522E841F0A980CCE61B * ___ed0, const RuntimeMethod* method);
// System.Void System.NotImplementedException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotImplementedException__ctor_mEBAED0FCA8B8CCE7E96492474350BA35D14CF59C (NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4 * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Int32 Mono.Security.X509.PKCS12::get_MaximumPasswordLength()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t PKCS12_get_MaximumPasswordLength_m456895C0914C8E686BC0548D036FAF11EB2AD266_inline (const RuntimeMethod* method);
// System.Text.Encoding System.Text.Encoding::get_BigEndianUnicode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * Encoding_get_BigEndianUnicode_m6CC17642A36943FE038F54729446D7E30D582BDD (const RuntimeMethod* method);
// System.String Mono.Security.X509.SafeBag::get_BagOID()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* SafeBag_get_BagOID_m111CD6142B7D3C61FB45932B8EF9A635D80244B5_inline (SafeBag_t46FE0281DC1D6CAB5FD08FCDB3E57C2EA1859726 * __this, const RuntimeMethod* method);
// System.Boolean System.String::Equals(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_Equals_m9C4D78DFA0979504FE31429B64A4C26DF48020D1 (String_t* __this, String_t* ___value0, const RuntimeMethod* method);
// Mono.Security.ASN1 Mono.Security.X509.SafeBag::get_ASN1()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * SafeBag_get_ASN1_m77708924A6B21495CB27668AB3CDCC844724AAD1_inline (SafeBag_t46FE0281DC1D6CAB5FD08FCDB3E57C2EA1859726 * __this, const RuntimeMethod* method);
// System.Void Mono.Security.Cryptography.PKCS8/PrivateKeyInfo::.ctor(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PrivateKeyInfo__ctor_m4FE1CE37466756FCCAD2C7320E6E8E8B0D4D603A (PrivateKeyInfo_t053A73C524EC661748073EC908D290E2856DB5B9 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___data0, const RuntimeMethod* method);
// System.Byte[] Mono.Security.Cryptography.PKCS8/PrivateKeyInfo::get_PrivateKey()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* PrivateKeyInfo_get_PrivateKey_mC390394E64E5FE39B4A833E7D91CF20A899179FA (PrivateKeyInfo_t053A73C524EC661748073EC908D290E2856DB5B9 * __this, const RuntimeMethod* method);
// System.Security.Cryptography.DSA Mono.Security.Cryptography.PKCS8/PrivateKeyInfo::DecodeDSA(System.Byte[],System.Security.Cryptography.DSAParameters)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DSA_t932F4A94DD2B782BFFC197544398826E6CDB64CF * PrivateKeyInfo_DecodeDSA_m705D495634A3F9F97D73FA4FC995352DF5A3F5EF (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___privateKey0, DSAParameters_tCA1A96A151F47B1904693C457243E3B919425AC6 ___dsaParameters1, const RuntimeMethod* method);
// System.Security.Cryptography.RSA Mono.Security.Cryptography.PKCS8/PrivateKeyInfo::DecodeRSA(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RSA_tB6C4B434B2AC02E3F8981DB2908C2018E251D145 * PrivateKeyInfo_DecodeRSA_m47EEB9282E7E66ED9256F2097B4E5C757B79B080 (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___keypair0, const RuntimeMethod* method);
// System.Void Mono.Security.Cryptography.PKCS8/EncryptedPrivateKeyInfo::.ctor(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EncryptedPrivateKeyInfo__ctor_mB2FBC3DDB156046CBB737280E490994A3B20362A (EncryptedPrivateKeyInfo_tF582FAE09721F4F2BB353D5C2E28682FFB9C303D * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___data0, const RuntimeMethod* method);
// System.String Mono.Security.Cryptography.PKCS8/EncryptedPrivateKeyInfo::get_Algorithm()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* EncryptedPrivateKeyInfo_get_Algorithm_m93A361B3EE1EDF57B8D83ECF187CD75E6B45A9D9_inline (EncryptedPrivateKeyInfo_tF582FAE09721F4F2BB353D5C2E28682FFB9C303D * __this, const RuntimeMethod* method);
// System.Byte[] Mono.Security.Cryptography.PKCS8/EncryptedPrivateKeyInfo::get_Salt()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* EncryptedPrivateKeyInfo_get_Salt_mF231C0F3BC06F402910179312CC9245911450C4B (EncryptedPrivateKeyInfo_tF582FAE09721F4F2BB353D5C2E28682FFB9C303D * __this, const RuntimeMethod* method);
// System.Int32 Mono.Security.Cryptography.PKCS8/EncryptedPrivateKeyInfo::get_IterationCount()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t EncryptedPrivateKeyInfo_get_IterationCount_m3CD06665FBE6C8B3965AA0D870B702A4E6F833FC_inline (EncryptedPrivateKeyInfo_tF582FAE09721F4F2BB353D5C2E28682FFB9C303D * __this, const RuntimeMethod* method);
// System.Byte[] Mono.Security.Cryptography.PKCS8/EncryptedPrivateKeyInfo::get_EncryptedData()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* EncryptedPrivateKeyInfo_get_EncryptedData_m0EB3C77C669117FCB3E0A5DA1758F9B0A18573D3 (EncryptedPrivateKeyInfo_tF582FAE09721F4F2BB353D5C2E28682FFB9C303D * __this, const RuntimeMethod* method);
// System.Byte[] Mono.Security.X509.PKCS12::Decrypt(System.String,System.Byte[],System.Int32,System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* PKCS12_Decrypt_m31927063D7A8B21C5E2B81F0879117F269B2F340 (PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C * __this, String_t* ___algorithmOid0, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___salt1, int32_t ___iterationCount2, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___encryptedData3, const RuntimeMethod* method);
// System.Collections.ArrayList System.Collections.ArrayList::ReadOnly(System.Collections.ArrayList)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * ArrayList_ReadOnly_m15C79B069370829463875D47C52859A0F539F90F (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * ___list0, const RuntimeMethod* method);
// System.Void System.Collections.CollectionBase::Clear()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionBase_Clear_m532DA443B53F9D48FAC7184B5C405D8E725E554A (CollectionBase_tF5D4583FF325726066A9803839A04E9C0084ED01 * __this, const RuntimeMethod* method);
// System.Void Mono.Security.PKCS7/ContentInfo::.ctor(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContentInfo__ctor_mFFDEEE8545287FC5A22740B7E06F6D64D401E196 (ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___data0, const RuntimeMethod* method);
// System.Void Mono.Security.X509.X509Certificate::.ctor(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509Certificate__ctor_mE2BC6649D450A36E902A2D6BEB50C49130411129 (X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___data0, const RuntimeMethod* method);
// System.Int32 Mono.Security.X509.X509CertificateCollection::Add(Mono.Security.X509.X509Certificate)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t X509CertificateCollection_Add_mC060190867D9C5D182236A313FE912DFCCE1F785 (X509CertificateCollection_t423BA1B9FAA983BA745023994C648C6DAC3E5A1A * __this, X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B * ___value0, const RuntimeMethod* method);
// System.Void Mono.Security.X509.PKCS12/DeriveBytes::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DeriveBytes__ctor_mCF98BD3EFADD4D2F34101977C2B49258932F19C2 (DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D * __this, const RuntimeMethod* method);
// System.Void Mono.Security.X509.PKCS12/DeriveBytes::set_Password(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DeriveBytes_set_Password_m01796801BB8FD1E5F9D62F48A057F936CE0D0E4D (DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___value0, const RuntimeMethod* method);
// System.Void Mono.Security.X509.PKCS12/DeriveBytes::set_Salt(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DeriveBytes_set_Salt_m259A4E6B31DF7C039E776B473B4C5208890E8C5E (DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___value0, const RuntimeMethod* method);
// System.Void Mono.Security.X509.PKCS12/DeriveBytes::set_IterationCount(System.Int32)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void DeriveBytes_set_IterationCount_mFE67702E80E2748EA2B61D15E2E58CB9A4173143_inline (DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D * __this, int32_t ___value0, const RuntimeMethod* method);
// System.Void Mono.Security.X509.PKCS12/DeriveBytes::set_HashName(System.String)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void DeriveBytes_set_HashName_mBDFF79A4AAA347FC742CF1E25214854EF200DA72_inline (DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D * __this, String_t* ___value0, const RuntimeMethod* method);
// System.Security.Cryptography.SymmetricAlgorithm System.Security.Cryptography.SymmetricAlgorithm::Create(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SymmetricAlgorithm_t0A2EC7E7AD8B8976832B4F0AC432B691F862E789 * SymmetricAlgorithm_Create_m09E1B072260AEBCFF0850A7F4C129F529CC7D8A5 (String_t* ___algName0, const RuntimeMethod* method);
// System.Byte[] Mono.Security.X509.PKCS12/DeriveBytes::DeriveKey(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* DeriveBytes_DeriveKey_mDF33F048359AB75CC3F1F634A67EB4EDEF02E796 (DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D * __this, int32_t ___size0, const RuntimeMethod* method);
// System.Byte[] Mono.Security.X509.PKCS12/DeriveBytes::DeriveIV(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* DeriveBytes_DeriveIV_mEBA107DC29EA28DF2575F45EF7A0C55840BD8F03 (DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D * __this, int32_t ___size0, const RuntimeMethod* method);
// System.Security.Cryptography.SymmetricAlgorithm Mono.Security.X509.PKCS12::GetSymmetricAlgorithm(System.String,System.Byte[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SymmetricAlgorithm_t0A2EC7E7AD8B8976832B4F0AC432B691F862E789 * PKCS12_GetSymmetricAlgorithm_mD3F3C0B83D3F2F2F384895C287C95AEACC9D237B (PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C * __this, String_t* ___algorithmOid0, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___salt1, int32_t ___iterationCount2, const RuntimeMethod* method);
// Mono.Security.PKCS7/ContentInfo Mono.Security.PKCS7/EncryptedData::get_EncryptionAlgorithm()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * EncryptedData_get_EncryptionAlgorithm_m06B627AA11F08C1515676B6E58DEDDD43B4F380F_inline (EncryptedData_tA100D7E93FCF1B7CBD486522E841F0A980CCE61B * __this, const RuntimeMethod* method);
// System.Byte[] Mono.Security.PKCS7/EncryptedData::get_EncryptedContent()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* EncryptedData_get_EncryptedContent_m3C19AF07E7124131F08D7223E7B955AE67896BB8 (EncryptedData_tA100D7E93FCF1B7CBD486522E841F0A980CCE61B * __this, const RuntimeMethod* method);
// Mono.Security.X509.X509CertificateCollection Mono.Security.X509.PKCS12::get_Certificates()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509CertificateCollection_t423BA1B9FAA983BA745023994C648C6DAC3E5A1A * PKCS12_get_Certificates_mB8B81E86E481809CAB88C4657FDFCA67FE5190F4 (PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C * __this, const RuntimeMethod* method);
// Mono.Security.X509.X509CertificateCollection/X509CertificateEnumerator Mono.Security.X509.X509CertificateCollection::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509CertificateEnumerator_t1CBC050F10F4BE1E2A8552A1F22E705013EBF505 * X509CertificateCollection_GetEnumerator_mE786AA0C41503620161D81E4D9172932564BAB4C (X509CertificateCollection_t423BA1B9FAA983BA745023994C648C6DAC3E5A1A * __this, const RuntimeMethod* method);
// Mono.Security.X509.X509Certificate Mono.Security.X509.X509CertificateCollection/X509CertificateEnumerator::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B * X509CertificateEnumerator_get_Current_m68306EF52C95B315E36054119C0422ACAF95C09F (X509CertificateEnumerator_t1CBC050F10F4BE1E2A8552A1F22E705013EBF505 * __this, const RuntimeMethod* method);
// System.Security.Cryptography.DSA Mono.Security.X509.X509Certificate::get_DSA()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DSA_t932F4A94DD2B782BFFC197544398826E6CDB64CF * X509Certificate_get_DSA_m7C3868DFAC7C067D09A324C348D7461D70E10F7F (X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B * __this, const RuntimeMethod* method);
// System.Boolean Mono.Security.X509.X509CertificateCollection/X509CertificateEnumerator::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool X509CertificateEnumerator_MoveNext_m9E88A7C9685146F7E558267D7D828711C5E898F4 (X509CertificateEnumerator_t1CBC050F10F4BE1E2A8552A1F22E705013EBF505 * __this, const RuntimeMethod* method);
// System.Security.Cryptography.DSAParameters Mono.Security.X509.PKCS12::GetExistingParameters(System.Boolean&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DSAParameters_tCA1A96A151F47B1904693C457243E3B919425AC6 PKCS12_GetExistingParameters_mA087BFAB5B05292523844A22873E72CAEBF5500F (PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C * __this, bool* ___found0, const RuntimeMethod* method);
// System.Void Mono.Security.X509.PKCS12::AddPrivateKey(Mono.Security.Cryptography.PKCS8/PrivateKeyInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PKCS12_AddPrivateKey_m1197B452390B9CF1EB0E9F091AB0757EBF5A2697 (PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C * __this, PrivateKeyInfo_t053A73C524EC661748073EC908D290E2856DB5B9 * ___pki0, const RuntimeMethod* method);
// System.Void Mono.Security.X509.SafeBag::.ctor(System.String,Mono.Security.ASN1)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SafeBag__ctor_mA72466DEC40046A944E2120A27BEFD3D2EAD57B7 (SafeBag_t46FE0281DC1D6CAB5FD08FCDB3E57C2EA1859726 * __this, String_t* ___bagOID0, ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * ___asn11, const RuntimeMethod* method);
// System.Void Mono.Security.PKCS7/ContentInfo::set_ContentType(System.String)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void ContentInfo_set_ContentType_m4FEE943D01600FC088408F7E20C5E1667CB5BA21_inline (ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * __this, String_t* ___value0, const RuntimeMethod* method);
// Mono.Security.ASN1 Mono.Security.PKCS7/ContentInfo::get_ASN1()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * ContentInfo_get_ASN1_mE290789431E97C3AF43911BB56FBE15C6D799411 (ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * __this, const RuntimeMethod* method);
// System.Security.Cryptography.HMAC System.Security.Cryptography.HMAC::Create()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HMAC_t85BE56AD7946F3A3D42B52448301D8995DEB7C90 * HMAC_Create_m865273728E60831137927C36E23E6F584383FD2B (const RuntimeMethod* method);
// System.Byte[] Mono.Security.X509.PKCS12/DeriveBytes::DeriveMAC(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* DeriveBytes_DeriveMAC_mD54FB1F61CFC13258B46861CCE527A85CC62652D (DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D * __this, int32_t ___size0, const RuntimeMethod* method);
// System.Byte[] System.Security.Cryptography.HashAlgorithm::ComputeHash(System.Byte[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* HashAlgorithm_ComputeHash_m944CD5B5BF66F170C9ACD2674E258E62ED297819 (HashAlgorithm_t65659695B16C0BBF05707BF45191A97DC156D6BA * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer0, int32_t ___offset1, int32_t ___count2, const RuntimeMethod* method);
// System.Void Mono.Security.X509.PKCS12::RemoveCertificate(Mono.Security.X509.X509Certificate)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PKCS12_RemoveCertificate_mE3594A106A1E0771DF835725966BC529F738DFCE (PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C * __this, X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B * ___cert0, const RuntimeMethod* method);
// System.Void Mono.Security.X509.PKCS12::AddCertificate(Mono.Security.X509.X509Certificate)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PKCS12_AddCertificate_m9D6DE2BF285B6BFCE1F8314438969020F5C3005D (PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C * __this, X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B * ___cert0, const RuntimeMethod* method);
// Mono.Security.PKCS7/ContentInfo Mono.Security.X509.PKCS12::EncryptedContentInfo(Mono.Security.ASN1,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * PKCS12_EncryptedContentInfo_m1E71931C47F151A7B5AC985929B78FAED83C5E89 (PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C * __this, ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * ___safeBags0, String_t* ___algorithmOid1, const RuntimeMethod* method);
// System.Security.Cryptography.RandomNumberGenerator Mono.Security.X509.PKCS12::get_RNG()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * PKCS12_get_RNG_m41E242AD5803360A10A8084A081F54F6D3402736 (PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C * __this, const RuntimeMethod* method);
// Mono.Security.ASN1 Mono.Security.ASN1Convert::FromInt32(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * ASN1Convert_FromInt32_m59FF0922659B0A323026CCC0876BC33020C4FC9A (int32_t ___value0, const RuntimeMethod* method);
// System.Byte[] Mono.Security.X509.PKCS12::Encrypt(System.String,System.Byte[],System.Int32,System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* PKCS12_Encrypt_m46E5121EFD2B8D707F1028204C59EE95955FA992 (PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C * __this, String_t* ___algorithmOid0, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___salt1, int32_t ___iterationCount2, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___data3, const RuntimeMethod* method);
// System.Void Mono.Security.X509.PKCS12::AddCertificate(Mono.Security.X509.X509Certificate,System.Collections.IDictionary)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PKCS12_AddCertificate_m17964E654DA9F739484806557EBD8CFE5331A198 (PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C * __this, X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B * ___cert0, RuntimeObject* ___attributes1, const RuntimeMethod* method);
// Mono.Security.ASN1 Mono.Security.X509.PKCS12::CertificateSafeBag(Mono.Security.X509.X509Certificate,System.Collections.IDictionary)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * PKCS12_CertificateSafeBag_mD0DD83647F65C3ABAE16740304102EFD7495FB73 (PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C * __this, X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B * ___x5090, RuntimeObject* ___attributes1, const RuntimeMethod* method);
// System.Void Mono.Security.X509.PKCS12::RemoveCertificate(Mono.Security.X509.X509Certificate,System.Collections.IDictionary)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PKCS12_RemoveCertificate_mFD3A6ECA0F182AC1C74E2E7A56D4F6E3D4D300D2 (PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C * __this, X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B * ___cert0, RuntimeObject* ___attrs1, const RuntimeMethod* method);
// System.Byte[] Mono.Security.X509.PKCS12::GetBytes()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* PKCS12_GetBytes_m8621373F343293D4A64DED97DA2610BE6B6D7D73 (PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C * __this, const RuntimeMethod* method);
// System.Void Mono.Security.X509.PKCS12::.ctor(System.Byte[],System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PKCS12__ctor_m35A8D4C261B2A0B4B7BC677160AB1DF90B04B229 (PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___data0, String_t* ___password1, const RuntimeMethod* method);
// System.Void Mono.Security.X509.PKCS12::.ctor(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PKCS12__ctor_mBE0BDBA0DD4C15F304D04F31E028CFFB31D7B8AB (PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___data0, const RuntimeMethod* method);
// System.Int32 Mono.Security.X509.PKCS12::get_IterationCount()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t PKCS12_get_IterationCount_m85A4D92CA6130D1BC6818CA8C434C9A8CFD120EC_inline (PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C * __this, const RuntimeMethod* method);
// System.Void Mono.Security.X509.PKCS12::set_IterationCount(System.Int32)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void PKCS12_set_IterationCount_m95AA7918C2940DFAA9AD540AEE484DD8E9A0DA43_inline (PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C * __this, int32_t ___value0, const RuntimeMethod* method);
// System.Security.Cryptography.HashAlgorithm Mono.Security.Cryptography.PKCS1::CreateFromName(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HashAlgorithm_t65659695B16C0BBF05707BF45191A97DC156D6BA * PKCS1_CreateFromName_mB407B0358BF42A94FAA0A3B7DF68A731827C21BE (String_t* ___name0, const RuntimeMethod* method);
// System.Int32 System.Security.Cryptography.HashAlgorithm::TransformBlock(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HashAlgorithm_TransformBlock_m500873E221BF1E4278C23D3DD113FA36711CBE22 (HashAlgorithm_t65659695B16C0BBF05707BF45191A97DC156D6BA * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___inputBuffer0, int32_t ___inputOffset1, int32_t ___inputCount2, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___outputBuffer3, int32_t ___outputOffset4, const RuntimeMethod* method);
// System.Byte[] System.Security.Cryptography.HashAlgorithm::TransformFinalBlock(System.Byte[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* HashAlgorithm_TransformFinalBlock_mC9CB1BD6A8E410BE986650C1478A93378F138177 (HashAlgorithm_t65659695B16C0BBF05707BF45191A97DC156D6BA * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___inputBuffer0, int32_t ___inputOffset1, int32_t ___inputCount2, const RuntimeMethod* method);
// System.Void Mono.Security.X509.PKCS12/DeriveBytes::Adjust(System.Byte[],System.Int32,System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DeriveBytes_Adjust_m62C31A3D1780C7E6278429908FAA52AC2280668F (DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___a0, int32_t ___aOff1, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___b2, const RuntimeMethod* method);
// System.Byte[] Mono.Security.X509.PKCS12/DeriveBytes::Derive(System.Byte[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* DeriveBytes_Derive_m77A53485FBE468A4F9698AEC0B36415699A9D72E (DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___diversifier0, int32_t ___n1, const RuntimeMethod* method);
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.UInt32 <PrivateImplementationDetails>::ComputeStringHash(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t U3CPrivateImplementationDetailsU3E_ComputeStringHash_m8375D44A8A75C7D8223EA98CF65C40C0BA8C7BEB (String_t* ___s0, const RuntimeMethod* method)
{
uint32_t V_0 = 0;
int32_t V_1 = 0;
{
String_t* L_0 = ___s0;
if (!L_0)
{
goto IL_002a;
}
}
{
V_0 = ((int32_t)-2128831035);
V_1 = 0;
goto IL_0021;
}
IL_000d:
{
String_t* L_1 = ___s0;
int32_t L_2 = V_1;
NullCheck(L_1);
Il2CppChar L_3 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_1, L_2, /*hidden argument*/NULL);
uint32_t L_4 = V_0;
V_0 = ((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)((int32_t)L_3^(int32_t)L_4)), (int32_t)((int32_t)16777619)));
int32_t L_5 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1));
}
IL_0021:
{
int32_t L_6 = V_1;
String_t* L_7 = ___s0;
NullCheck(L_7);
int32_t L_8 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_7, /*hidden argument*/NULL);
if ((((int32_t)L_6) < ((int32_t)L_8)))
{
goto IL_000d;
}
}
IL_002a:
{
uint32_t L_9 = V_0;
return L_9;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.String Locale::GetText(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Locale_GetText_m67B66557188C94648AA7A23F6A7501BE7D455ADA (String_t* ___msg0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___msg0;
return L_0;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Mono.Math.BigInteger::.ctor(Mono.Math.BigInteger_Sign,System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BigInteger__ctor_mF6EF77E576DB644975AE00AED27D25A7AC3AEE2E (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * __this, int32_t ___sign0, uint32_t ___len1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BigInteger__ctor_mF6EF77E576DB644975AE00AED27D25A7AC3AEE2E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
__this->set_length_0(1);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
uint32_t L_0 = ___len1;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_1 = (UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB*)(UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB*)SZArrayNew(UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB_il2cpp_TypeInfo_var, (uint32_t)L_0);
__this->set_data_1(L_1);
uint32_t L_2 = ___len1;
__this->set_length_0(L_2);
return;
}
}
// System.Void Mono.Math.BigInteger::.ctor(Mono.Math.BigInteger)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BigInteger__ctor_m77CF9FF025A6A98A625E8E948F19F822210BC29C (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * __this, BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BigInteger__ctor_m77CF9FF025A6A98A625E8E948F19F822210BC29C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
__this->set_length_0(1);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_0 = ___bi0;
NullCheck(L_0);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_1 = L_0->get_data_1();
NullCheck((RuntimeArray *)(RuntimeArray *)L_1);
RuntimeObject * L_2 = Array_Clone_mE8C710213E323617A6F46F2B36DCDDD4C7CF5176((RuntimeArray *)(RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_data_1(((UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB*)Castclass((RuntimeObject*)L_2, UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB_il2cpp_TypeInfo_var)));
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_3 = ___bi0;
NullCheck(L_3);
uint32_t L_4 = L_3->get_length_0();
__this->set_length_0(L_4);
return;
}
}
// System.Void Mono.Math.BigInteger::.ctor(Mono.Math.BigInteger,System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BigInteger__ctor_m718EBF73E0A8036284DBF530A63930E286233BC5 (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * __this, BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi0, uint32_t ___len1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BigInteger__ctor_m718EBF73E0A8036284DBF530A63930E286233BC5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint32_t V_0 = 0;
{
__this->set_length_0(1);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
uint32_t L_0 = ___len1;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_1 = (UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB*)(UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB*)SZArrayNew(UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB_il2cpp_TypeInfo_var, (uint32_t)L_0);
__this->set_data_1(L_1);
V_0 = 0;
goto IL_0031;
}
IL_001d:
{
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_2 = __this->get_data_1();
uint32_t L_3 = V_0;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_4 = ___bi0;
NullCheck(L_4);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_5 = L_4->get_data_1();
uint32_t L_6 = V_0;
NullCheck(L_5);
uint32_t L_7 = L_6;
uint32_t L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
NullCheck(L_2);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (uint32_t)L_8);
uint32_t L_9 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_0031:
{
uint32_t L_10 = V_0;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_11 = ___bi0;
NullCheck(L_11);
uint32_t L_12 = L_11->get_length_0();
if ((!(((uint32_t)L_10) >= ((uint32_t)L_12))))
{
goto IL_001d;
}
}
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_13 = ___bi0;
NullCheck(L_13);
uint32_t L_14 = L_13->get_length_0();
__this->set_length_0(L_14);
return;
}
}
// System.Void Mono.Math.BigInteger::.ctor(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BigInteger__ctor_m12A6762C07A6C1B90E6461D22E25A4DE6D3F1250 (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___inData0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BigInteger__ctor_m12A6762C07A6C1B90E6461D22E25A4DE6D3F1250_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
__this->set_length_0(1);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___inData0;
NullCheck(L_0);
if ((((RuntimeArray*)L_0)->max_length))
{
goto IL_0019;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)1);
___inData0 = L_1;
}
IL_0019:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = ___inData0;
NullCheck(L_2);
__this->set_length_0(((int32_t)((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length))))>>2)));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = ___inData0;
NullCheck(L_3);
V_0 = ((int32_t)((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length))))&(int32_t)3));
int32_t L_4 = V_0;
if (!L_4)
{
goto IL_003b;
}
}
{
uint32_t L_5 = __this->get_length_0();
__this->set_length_0(((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1)));
}
IL_003b:
{
uint32_t L_6 = __this->get_length_0();
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_7 = (UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB*)(UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB*)SZArrayNew(UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB_il2cpp_TypeInfo_var, (uint32_t)L_6);
__this->set_data_1(L_7);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_8 = ___inData0;
NullCheck(L_8);
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length)))), (int32_t)1));
V_2 = 0;
goto IL_0083;
}
IL_0056:
{
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_9 = __this->get_data_1();
int32_t L_10 = V_2;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_11 = ___inData0;
int32_t L_12 = V_1;
NullCheck(L_11);
int32_t L_13 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_12, (int32_t)3));
uint8_t L_14 = (L_11)->GetAt(static_cast<il2cpp_array_size_t>(L_13));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_15 = ___inData0;
int32_t L_16 = V_1;
NullCheck(L_15);
int32_t L_17 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_16, (int32_t)2));
uint8_t L_18 = (L_15)->GetAt(static_cast<il2cpp_array_size_t>(L_17));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_19 = ___inData0;
int32_t L_20 = V_1;
NullCheck(L_19);
int32_t L_21 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_20, (int32_t)1));
uint8_t L_22 = (L_19)->GetAt(static_cast<il2cpp_array_size_t>(L_21));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_23 = ___inData0;
int32_t L_24 = V_1;
NullCheck(L_23);
int32_t L_25 = L_24;
uint8_t L_26 = (L_23)->GetAt(static_cast<il2cpp_array_size_t>(L_25));
NullCheck(L_9);
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(L_10), (uint32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_14<<(int32_t)((int32_t)24)))|(int32_t)((int32_t)((int32_t)L_18<<(int32_t)((int32_t)16)))))|(int32_t)((int32_t)((int32_t)L_22<<(int32_t)8))))|(int32_t)L_26)));
int32_t L_27 = V_1;
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_27, (int32_t)4));
int32_t L_28 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_28, (int32_t)1));
}
IL_0083:
{
int32_t L_29 = V_1;
if ((((int32_t)L_29) >= ((int32_t)3)))
{
goto IL_0056;
}
}
{
int32_t L_30 = V_0;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_30, (int32_t)1)))
{
case 0:
{
goto IL_009d;
}
case 1:
{
goto IL_00b1;
}
case 2:
{
goto IL_00cb;
}
}
}
{
goto IL_00ea;
}
IL_009d:
{
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_31 = __this->get_data_1();
uint32_t L_32 = __this->get_length_0();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_33 = ___inData0;
NullCheck(L_33);
int32_t L_34 = 0;
uint8_t L_35 = (L_33)->GetAt(static_cast<il2cpp_array_size_t>(L_34));
NullCheck(L_31);
(L_31)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_subtract((int32_t)L_32, (int32_t)1))), (uint32_t)L_35);
goto IL_00ea;
}
IL_00b1:
{
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_36 = __this->get_data_1();
uint32_t L_37 = __this->get_length_0();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_38 = ___inData0;
NullCheck(L_38);
int32_t L_39 = 0;
uint8_t L_40 = (L_38)->GetAt(static_cast<il2cpp_array_size_t>(L_39));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_41 = ___inData0;
NullCheck(L_41);
int32_t L_42 = 1;
uint8_t L_43 = (L_41)->GetAt(static_cast<il2cpp_array_size_t>(L_42));
NullCheck(L_36);
(L_36)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_subtract((int32_t)L_37, (int32_t)1))), (uint32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_40<<(int32_t)8))|(int32_t)L_43)));
goto IL_00ea;
}
IL_00cb:
{
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_44 = __this->get_data_1();
uint32_t L_45 = __this->get_length_0();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_46 = ___inData0;
NullCheck(L_46);
int32_t L_47 = 0;
uint8_t L_48 = (L_46)->GetAt(static_cast<il2cpp_array_size_t>(L_47));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_49 = ___inData0;
NullCheck(L_49);
int32_t L_50 = 1;
uint8_t L_51 = (L_49)->GetAt(static_cast<il2cpp_array_size_t>(L_50));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_52 = ___inData0;
NullCheck(L_52);
int32_t L_53 = 2;
uint8_t L_54 = (L_52)->GetAt(static_cast<il2cpp_array_size_t>(L_53));
NullCheck(L_44);
(L_44)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_subtract((int32_t)L_45, (int32_t)1))), (uint32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_48<<(int32_t)((int32_t)16)))|(int32_t)((int32_t)((int32_t)L_51<<(int32_t)8))))|(int32_t)L_54)));
}
IL_00ea:
{
BigInteger_Normalize_mF0C4E36E69C54DB487EB2A29532BB7EB21585592(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void Mono.Math.BigInteger::.ctor(System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BigInteger__ctor_mCAC0EAFBC60E0DC2B64BE0DD21099C837FEC0A33 (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * __this, uint32_t ___ui0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BigInteger__ctor_mCAC0EAFBC60E0DC2B64BE0DD21099C837FEC0A33_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
__this->set_length_0(1);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_0 = (UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB*)(UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB*)SZArrayNew(UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB_il2cpp_TypeInfo_var, (uint32_t)1);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_1 = L_0;
uint32_t L_2 = ___ui0;
NullCheck(L_1);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (uint32_t)L_2);
__this->set_data_1(L_1);
return;
}
}
// Mono.Math.BigInteger Mono.Math.BigInteger::op_Implicit(System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * BigInteger_op_Implicit_m47A1626222EC6D506611B5776F1506E5ED6F529F (uint32_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BigInteger_op_Implicit_m47A1626222EC6D506611B5776F1506E5ED6F529F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
uint32_t L_0 = ___value0;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_1 = (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)il2cpp_codegen_object_new(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
BigInteger__ctor_mCAC0EAFBC60E0DC2B64BE0DD21099C837FEC0A33(L_1, L_0, /*hidden argument*/NULL);
return L_1;
}
}
// Mono.Math.BigInteger Mono.Math.BigInteger::op_Implicit(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * BigInteger_op_Implicit_m7057639C0ADB9D04334B3DA64237547E293A50EB (int32_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BigInteger_op_Implicit_m7057639C0ADB9D04334B3DA64237547E293A50EB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___value0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_000f;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_1 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_1, _stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, BigInteger_op_Implicit_m7057639C0ADB9D04334B3DA64237547E293A50EB_RuntimeMethod_var);
}
IL_000f:
{
int32_t L_2 = ___value0;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_3 = (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)il2cpp_codegen_object_new(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
BigInteger__ctor_mCAC0EAFBC60E0DC2B64BE0DD21099C837FEC0A33(L_3, L_2, /*hidden argument*/NULL);
return L_3;
}
}
// Mono.Math.BigInteger Mono.Math.BigInteger::op_Subtraction(Mono.Math.BigInteger,Mono.Math.BigInteger)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * BigInteger_op_Subtraction_mC72451C0DAE478E11522A2AB99426BEAD4E97792 (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi10, BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi21, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BigInteger_op_Subtraction_mC72451C0DAE478E11522A2AB99426BEAD4E97792_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_0 = ___bi21;
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
bool L_1 = BigInteger_op_Equality_mAA7DD5259960E4837D8A8AB56DB3C6AEF367C504(L_0, 0, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_0010;
}
}
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_2 = ___bi10;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_3 = (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)il2cpp_codegen_object_new(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
BigInteger__ctor_m77CF9FF025A6A98A625E8E948F19F822210BC29C(L_3, L_2, /*hidden argument*/NULL);
return L_3;
}
IL_0010:
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_4 = ___bi10;
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
bool L_5 = BigInteger_op_Equality_mAA7DD5259960E4837D8A8AB56DB3C6AEF367C504(L_4, 0, /*hidden argument*/NULL);
if (!L_5)
{
goto IL_0024;
}
}
{
ArithmeticException_tF9EF5FE94597830EF315C5934258F994B8648269 * L_6 = (ArithmeticException_tF9EF5FE94597830EF315C5934258F994B8648269 *)il2cpp_codegen_object_new(ArithmeticException_tF9EF5FE94597830EF315C5934258F994B8648269_il2cpp_TypeInfo_var);
ArithmeticException__ctor_mAE18F94959F9827DEA553C7C2F3C5568BEC81CCF(L_6, _stringLiteralD4FCA0BC6A26DDF145B7A4AC7BFDAEBEDD5A886F, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, NULL, BigInteger_op_Subtraction_mC72451C0DAE478E11522A2AB99426BEAD4E97792_RuntimeMethod_var);
}
IL_0024:
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_7 = ___bi10;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_8 = ___bi21;
int32_t L_9 = Kernel_Compare_m07031942FB73AA6F48F11CBB4FDAEBF6767C84EE(L_7, L_8, /*hidden argument*/NULL);
V_0 = L_9;
int32_t L_10 = V_0;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_10, (int32_t)(-1))))
{
case 0:
{
goto IL_0051;
}
case 1:
{
goto IL_0042;
}
case 2:
{
goto IL_0049;
}
}
}
{
goto IL_005c;
}
IL_0042:
{
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_11 = BigInteger_op_Implicit_m7057639C0ADB9D04334B3DA64237547E293A50EB(0, /*hidden argument*/NULL);
return L_11;
}
IL_0049:
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_12 = ___bi10;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_13 = ___bi21;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_14 = Kernel_Subtract_mD8975D3BC036B9DAEC10E5585880F304DAF3E332(L_12, L_13, /*hidden argument*/NULL);
return L_14;
}
IL_0051:
{
ArithmeticException_tF9EF5FE94597830EF315C5934258F994B8648269 * L_15 = (ArithmeticException_tF9EF5FE94597830EF315C5934258F994B8648269 *)il2cpp_codegen_object_new(ArithmeticException_tF9EF5FE94597830EF315C5934258F994B8648269_il2cpp_TypeInfo_var);
ArithmeticException__ctor_mAE18F94959F9827DEA553C7C2F3C5568BEC81CCF(L_15, _stringLiteralD4FCA0BC6A26DDF145B7A4AC7BFDAEBEDD5A886F, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, NULL, BigInteger_op_Subtraction_mC72451C0DAE478E11522A2AB99426BEAD4E97792_RuntimeMethod_var);
}
IL_005c:
{
Exception_t * L_16 = (Exception_t *)il2cpp_codegen_object_new(Exception_t_il2cpp_TypeInfo_var);
Exception__ctor_m5FEC89FBFACEEDCEE29CCFD44A85D72FC28EB0D1(L_16, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_16, NULL, BigInteger_op_Subtraction_mC72451C0DAE478E11522A2AB99426BEAD4E97792_RuntimeMethod_var);
}
}
// System.UInt32 Mono.Math.BigInteger::op_Modulus(Mono.Math.BigInteger,System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t BigInteger_op_Modulus_mEE11685FAA7292E357C36DB794C18EF9E388C876 (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi0, uint32_t ___ui1, const RuntimeMethod* method)
{
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_0 = ___bi0;
uint32_t L_1 = ___ui1;
uint32_t L_2 = Kernel_DwordMod_m09BBF0BCB7D08A1CC8A24A82A8190E81D12BABDA(L_0, L_1, /*hidden argument*/NULL);
return L_2;
}
}
// Mono.Math.BigInteger Mono.Math.BigInteger::op_Modulus(Mono.Math.BigInteger,Mono.Math.BigInteger)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * BigInteger_op_Modulus_mAFBC82D374D9E2866AA4958732FA53F7445B122F (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi10, BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi21, const RuntimeMethod* method)
{
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_0 = ___bi10;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_1 = ___bi21;
BigIntegerU5BU5D_t15EB0DC5DA051C4F0C1BECDCD8D7AB250F0CDF4B* L_2 = Kernel_multiByteDivide_m3AB2BAB666EBB176A004D389DBDAAEBAA3763B54(L_0, L_1, /*hidden argument*/NULL);
NullCheck(L_2);
int32_t L_3 = 1;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_4 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
return L_4;
}
}
// Mono.Math.BigInteger Mono.Math.BigInteger::op_Division(Mono.Math.BigInteger,Mono.Math.BigInteger)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * BigInteger_op_Division_m8C1BDE4543BD0EFE3864D46646ACFF3F9B535D3B (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi10, BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi21, const RuntimeMethod* method)
{
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_0 = ___bi10;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_1 = ___bi21;
BigIntegerU5BU5D_t15EB0DC5DA051C4F0C1BECDCD8D7AB250F0CDF4B* L_2 = Kernel_multiByteDivide_m3AB2BAB666EBB176A004D389DBDAAEBAA3763B54(L_0, L_1, /*hidden argument*/NULL);
NullCheck(L_2);
int32_t L_3 = 0;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_4 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
return L_4;
}
}
// Mono.Math.BigInteger Mono.Math.BigInteger::op_Multiply(Mono.Math.BigInteger,Mono.Math.BigInteger)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * BigInteger_op_Multiply_mEA6B6928879EF921641122FA7E597A16A613EDDE (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi10, BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi21, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BigInteger_op_Multiply_mEA6B6928879EF921641122FA7E597A16A613EDDE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * V_0 = NULL;
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_0 = ___bi10;
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
bool L_1 = BigInteger_op_Equality_mAA7DD5259960E4837D8A8AB56DB3C6AEF367C504(L_0, 0, /*hidden argument*/NULL);
if (L_1)
{
goto IL_0012;
}
}
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_2 = ___bi21;
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
bool L_3 = BigInteger_op_Equality_mAA7DD5259960E4837D8A8AB56DB3C6AEF367C504(L_2, 0, /*hidden argument*/NULL);
if (!L_3)
{
goto IL_0019;
}
}
IL_0012:
{
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_4 = BigInteger_op_Implicit_m7057639C0ADB9D04334B3DA64237547E293A50EB(0, /*hidden argument*/NULL);
return L_4;
}
IL_0019:
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_5 = ___bi10;
NullCheck(L_5);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_6 = L_5->get_data_1();
NullCheck(L_6);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_7 = ___bi10;
NullCheck(L_7);
uint32_t L_8 = L_7->get_length_0();
if ((((int64_t)(((int64_t)((int64_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))))))) >= ((int64_t)(((int64_t)((uint64_t)L_8))))))
{
goto IL_0036;
}
}
{
IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF * L_9 = (IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF *)il2cpp_codegen_object_new(IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF_il2cpp_TypeInfo_var);
IndexOutOfRangeException__ctor_mCCE2EFF47A0ACB4B2636F63140F94FCEA71A9BCA(L_9, _stringLiteralBB13F629A52249ABF965ACF7316852F78FE0EA5E, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, BigInteger_op_Multiply_mEA6B6928879EF921641122FA7E597A16A613EDDE_RuntimeMethod_var);
}
IL_0036:
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_10 = ___bi21;
NullCheck(L_10);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_11 = L_10->get_data_1();
NullCheck(L_11);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_12 = ___bi21;
NullCheck(L_12);
uint32_t L_13 = L_12->get_length_0();
if ((((int64_t)(((int64_t)((int64_t)(((int32_t)((int32_t)(((RuntimeArray*)L_11)->max_length)))))))) >= ((int64_t)(((int64_t)((uint64_t)L_13))))))
{
goto IL_0053;
}
}
{
IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF * L_14 = (IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF *)il2cpp_codegen_object_new(IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF_il2cpp_TypeInfo_var);
IndexOutOfRangeException__ctor_mCCE2EFF47A0ACB4B2636F63140F94FCEA71A9BCA(L_14, _stringLiteral530D961C3F2D9207AA88243CDEDA8556D62138AA, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_14, NULL, BigInteger_op_Multiply_mEA6B6928879EF921641122FA7E597A16A613EDDE_RuntimeMethod_var);
}
IL_0053:
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_15 = ___bi10;
NullCheck(L_15);
uint32_t L_16 = L_15->get_length_0();
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_17 = ___bi21;
NullCheck(L_17);
uint32_t L_18 = L_17->get_length_0();
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_19 = (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)il2cpp_codegen_object_new(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
BigInteger__ctor_mF6EF77E576DB644975AE00AED27D25A7AC3AEE2E(L_19, 1, ((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)L_18)), /*hidden argument*/NULL);
V_0 = L_19;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_20 = ___bi10;
NullCheck(L_20);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_21 = L_20->get_data_1();
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_22 = ___bi10;
NullCheck(L_22);
uint32_t L_23 = L_22->get_length_0();
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_24 = ___bi21;
NullCheck(L_24);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_25 = L_24->get_data_1();
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_26 = ___bi21;
NullCheck(L_26);
uint32_t L_27 = L_26->get_length_0();
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_28 = V_0;
NullCheck(L_28);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_29 = L_28->get_data_1();
Kernel_Multiply_m904FC66FF96CDE798413346196E3836ADE1B8AF4(L_21, 0, L_23, L_25, 0, L_27, L_29, 0, /*hidden argument*/NULL);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_30 = V_0;
NullCheck(L_30);
BigInteger_Normalize_mF0C4E36E69C54DB487EB2A29532BB7EB21585592(L_30, /*hidden argument*/NULL);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_31 = V_0;
return L_31;
}
}
// Mono.Math.BigInteger Mono.Math.BigInteger::op_LeftShift(Mono.Math.BigInteger,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * BigInteger_op_LeftShift_m728D921C2E6E603DF2590718EF51B6BA8B4F463A (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi10, int32_t ___shiftVal1, const RuntimeMethod* method)
{
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_0 = ___bi10;
int32_t L_1 = ___shiftVal1;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_2 = Kernel_LeftShift_mEA93DE79BE9A04B1AD826F95F9C77A28EC87CCA9(L_0, L_1, /*hidden argument*/NULL);
return L_2;
}
}
// Mono.Math.BigInteger Mono.Math.BigInteger::op_RightShift(Mono.Math.BigInteger,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * BigInteger_op_RightShift_mD39A8D10E9F70F516D42932712403651A91F4F64 (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi10, int32_t ___shiftVal1, const RuntimeMethod* method)
{
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_0 = ___bi10;
int32_t L_1 = ___shiftVal1;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_2 = Kernel_RightShift_m1F0188E75D20E70731FC46BDB32106EB33A1DB83(L_0, L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.Security.Cryptography.RandomNumberGenerator Mono.Math.BigInteger::get_Rng()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * BigInteger_get_Rng_mFD8903C45513484592C646CCF0F2752DB66509E2 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BigInteger_get_Rng_mFD8903C45513484592C646CCF0F2752DB66509E2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * L_0 = ((BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_StaticFields*)il2cpp_codegen_static_fields_for(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var))->get_rng_3();
if (L_0)
{
goto IL_0011;
}
}
{
RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * L_1 = RandomNumberGenerator_Create_mB84B1BA538B29D0679F310D3B574A7D5BAA890C4(/*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
((BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_StaticFields*)il2cpp_codegen_static_fields_for(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var))->set_rng_3(L_1);
}
IL_0011:
{
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * L_2 = ((BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_StaticFields*)il2cpp_codegen_static_fields_for(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var))->get_rng_3();
return L_2;
}
}
// Mono.Math.BigInteger Mono.Math.BigInteger::GenerateRandom(System.Int32,System.Security.Cryptography.RandomNumberGenerator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * BigInteger_GenerateRandom_mABCBDC6EF81EBAF32CDA3B7685A208CA68C115D6 (int32_t ___bits0, RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * ___rng1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BigInteger_GenerateRandom_mABCBDC6EF81EBAF32CDA3B7685A208CA68C115D6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * V_2 = NULL;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_3 = NULL;
uint32_t V_4 = 0;
{
int32_t L_0 = ___bits0;
V_0 = ((int32_t)((int32_t)L_0>>(int32_t)5));
int32_t L_1 = ___bits0;
V_1 = ((int32_t)((int32_t)L_1&(int32_t)((int32_t)31)));
int32_t L_2 = V_1;
if (!L_2)
{
goto IL_0010;
}
}
{
int32_t L_3 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1));
}
IL_0010:
{
int32_t L_4 = V_0;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_5 = (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)il2cpp_codegen_object_new(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
BigInteger__ctor_mF6EF77E576DB644975AE00AED27D25A7AC3AEE2E(L_5, 1, ((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)), /*hidden argument*/NULL);
V_2 = L_5;
int32_t L_6 = V_0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_7 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)((int32_t)((int32_t)L_6<<(int32_t)2)));
V_3 = L_7;
RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * L_8 = ___rng1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_9 = V_3;
NullCheck(L_8);
VirtActionInvoker1< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(6 /* System.Void System.Security.Cryptography.RandomNumberGenerator::GetBytes(System.Byte[]) */, L_8, L_9);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_10 = V_3;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_11 = V_2;
NullCheck(L_11);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_12 = L_11->get_data_1();
int32_t L_13 = V_0;
Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353((RuntimeArray *)(RuntimeArray *)L_10, 0, (RuntimeArray *)(RuntimeArray *)L_12, 0, ((int32_t)((int32_t)L_13<<(int32_t)2)), /*hidden argument*/NULL);
int32_t L_14 = V_1;
if (!L_14)
{
goto IL_007d;
}
}
{
int32_t L_15 = V_1;
V_4 = ((int32_t)((int32_t)1<<(int32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_15, (int32_t)1))&(int32_t)((int32_t)31)))));
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_16 = V_2;
NullCheck(L_16);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_17 = L_16->get_data_1();
int32_t L_18 = V_0;
NullCheck(L_17);
uint32_t* L_19 = ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)1)))));
int32_t L_20 = *((uint32_t*)L_19);
uint32_t L_21 = V_4;
*((int32_t*)L_19) = (int32_t)((int32_t)((int32_t)L_20|(int32_t)L_21));
int32_t L_22 = V_1;
V_4 = ((int32_t)((uint32_t)(-1)>>((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)32), (int32_t)L_22))&(int32_t)((int32_t)31)))));
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_23 = V_2;
NullCheck(L_23);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_24 = L_23->get_data_1();
int32_t L_25 = V_0;
NullCheck(L_24);
uint32_t* L_26 = ((L_24)->GetAddressAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_subtract((int32_t)L_25, (int32_t)1)))));
int32_t L_27 = *((uint32_t*)L_26);
uint32_t L_28 = V_4;
*((int32_t*)L_26) = (int32_t)((int32_t)((int32_t)L_27&(int32_t)L_28));
goto IL_0094;
}
IL_007d:
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_29 = V_2;
NullCheck(L_29);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_30 = L_29->get_data_1();
int32_t L_31 = V_0;
NullCheck(L_30);
uint32_t* L_32 = ((L_30)->GetAddressAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_subtract((int32_t)L_31, (int32_t)1)))));
int32_t L_33 = *((uint32_t*)L_32);
*((int32_t*)L_32) = (int32_t)((int32_t)((int32_t)L_33|(int32_t)((int32_t)-2147483648LL)));
}
IL_0094:
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_34 = V_2;
NullCheck(L_34);
BigInteger_Normalize_mF0C4E36E69C54DB487EB2A29532BB7EB21585592(L_34, /*hidden argument*/NULL);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_35 = V_2;
return L_35;
}
}
// Mono.Math.BigInteger Mono.Math.BigInteger::GenerateRandom(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * BigInteger_GenerateRandom_mA17F93C5DDA00EDFCBBB66C41120BA1886241F5D (int32_t ___bits0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BigInteger_GenerateRandom_mA17F93C5DDA00EDFCBBB66C41120BA1886241F5D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___bits0;
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * L_1 = BigInteger_get_Rng_mFD8903C45513484592C646CCF0F2752DB66509E2(/*hidden argument*/NULL);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_2 = BigInteger_GenerateRandom_mABCBDC6EF81EBAF32CDA3B7685A208CA68C115D6(L_0, L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.Int32 Mono.Math.BigInteger::BitCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BigInteger_BitCount_mFEA208FDC3B126E1517F0E5AAB8D1193856F8C76 (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * __this, const RuntimeMethod* method)
{
uint32_t V_0 = 0;
uint32_t V_1 = 0;
uint32_t V_2 = 0;
{
BigInteger_Normalize_mF0C4E36E69C54DB487EB2A29532BB7EB21585592(__this, /*hidden argument*/NULL);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_0 = __this->get_data_1();
uint32_t L_1 = __this->get_length_0();
NullCheck(L_0);
int32_t L_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)1));
uint32_t L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
V_0 = L_3;
V_1 = ((int32_t)-2147483648LL);
V_2 = ((int32_t)32);
goto IL_0029;
}
IL_0021:
{
uint32_t L_4 = V_2;
V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
uint32_t L_5 = V_1;
V_1 = ((int32_t)((uint32_t)L_5>>1));
}
IL_0029:
{
uint32_t L_6 = V_2;
if ((!(((uint32_t)L_6) > ((uint32_t)0))))
{
goto IL_0032;
}
}
{
uint32_t L_7 = V_0;
uint32_t L_8 = V_1;
if (!((int32_t)((int32_t)L_7&(int32_t)L_8)))
{
goto IL_0021;
}
}
IL_0032:
{
uint32_t L_9 = V_2;
uint32_t L_10 = __this->get_length_0();
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_10, (int32_t)1))<<(int32_t)5))));
uint32_t L_11 = V_2;
return L_11;
}
}
// System.Boolean Mono.Math.BigInteger::TestBit(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BigInteger_TestBit_mFF11993F9C65D59A109EA7EC55B8B791A9DDB56B (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * __this, int32_t ___bitNum0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BigInteger_TestBit_mFF11993F9C65D59A109EA7EC55B8B791A9DDB56B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint32_t V_0 = 0;
uint8_t V_1 = 0x0;
uint32_t V_2 = 0;
{
int32_t L_0 = ___bitNum0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_000f;
}
}
{
IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF * L_1 = (IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF *)il2cpp_codegen_object_new(IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF_il2cpp_TypeInfo_var);
IndexOutOfRangeException__ctor_mCCE2EFF47A0ACB4B2636F63140F94FCEA71A9BCA(L_1, _stringLiteral7B845465C5D86662976B924FBF9F464EC87414F4, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, BigInteger_TestBit_mFF11993F9C65D59A109EA7EC55B8B791A9DDB56B_RuntimeMethod_var);
}
IL_000f:
{
int32_t L_2 = ___bitNum0;
V_0 = ((int32_t)((uint32_t)L_2>>5));
int32_t L_3 = ___bitNum0;
V_1 = (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)L_3&(int32_t)((int32_t)31))))));
uint8_t L_4 = V_1;
V_2 = ((int32_t)((int32_t)1<<(int32_t)((int32_t)((int32_t)L_4&(int32_t)((int32_t)31)))));
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_5 = __this->get_data_1();
uint32_t L_6 = V_0;
NullCheck(L_5);
uint32_t L_7 = L_6;
uint32_t L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
uint32_t L_9 = V_2;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_10 = __this->get_data_1();
uint32_t L_11 = V_0;
NullCheck(L_10);
uint32_t L_12 = L_11;
uint32_t L_13 = (L_10)->GetAt(static_cast<il2cpp_array_size_t>(L_12));
return (bool)((((int32_t)((int32_t)((int32_t)L_8|(int32_t)L_9))) == ((int32_t)L_13))? 1 : 0);
}
}
// System.Void Mono.Math.BigInteger::SetBit(System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BigInteger_SetBit_m9D1FECEB7D6672C82002A3FF59B17939C752CF41 (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * __this, uint32_t ___bitNum0, const RuntimeMethod* method)
{
{
uint32_t L_0 = ___bitNum0;
BigInteger_SetBit_m1D93A7DB2AFE83CBBB14F2E3D1E665CB53454A68(__this, L_0, (bool)1, /*hidden argument*/NULL);
return;
}
}
// System.Void Mono.Math.BigInteger::SetBit(System.UInt32,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BigInteger_SetBit_m1D93A7DB2AFE83CBBB14F2E3D1E665CB53454A68 (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * __this, uint32_t ___bitNum0, bool ___value1, const RuntimeMethod* method)
{
uint32_t V_0 = 0;
uint32_t V_1 = 0;
{
uint32_t L_0 = ___bitNum0;
V_0 = ((int32_t)((uint32_t)L_0>>5));
uint32_t L_1 = V_0;
uint32_t L_2 = __this->get_length_0();
if ((!(((uint32_t)L_1) < ((uint32_t)L_2))))
{
goto IL_003e;
}
}
{
uint32_t L_3 = ___bitNum0;
V_1 = ((int32_t)((int32_t)1<<(int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_3&(int32_t)((int32_t)31)))&(int32_t)((int32_t)31)))));
bool L_4 = ___value1;
if (!L_4)
{
goto IL_002c;
}
}
{
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_5 = __this->get_data_1();
uint32_t L_6 = V_0;
NullCheck(L_5);
uint32_t* L_7 = ((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)));
int32_t L_8 = *((uint32_t*)L_7);
uint32_t L_9 = V_1;
*((int32_t*)L_7) = (int32_t)((int32_t)((int32_t)L_8|(int32_t)L_9));
return;
}
IL_002c:
{
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_10 = __this->get_data_1();
uint32_t L_11 = V_0;
NullCheck(L_10);
uint32_t* L_12 = ((L_10)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_11)));
int32_t L_13 = *((uint32_t*)L_12);
uint32_t L_14 = V_1;
*((int32_t*)L_12) = (int32_t)((int32_t)((int32_t)L_13&(int32_t)((~L_14))));
}
IL_003e:
{
return;
}
}
// System.Int32 Mono.Math.BigInteger::LowestSetBit()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BigInteger_LowestSetBit_m6E7C4246DA0DA86F94B880680121448F676E8435 (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BigInteger_LowestSetBit_m6E7C4246DA0DA86F94B880680121448F676E8435_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
bool L_0 = BigInteger_op_Equality_mAA7DD5259960E4837D8A8AB56DB3C6AEF367C504(__this, 0, /*hidden argument*/NULL);
if (!L_0)
{
goto IL_000b;
}
}
{
return (-1);
}
IL_000b:
{
V_0 = 0;
goto IL_0013;
}
IL_000f:
{
int32_t L_1 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)1));
}
IL_0013:
{
int32_t L_2 = V_0;
bool L_3 = BigInteger_TestBit_mFF11993F9C65D59A109EA7EC55B8B791A9DDB56B(__this, L_2, /*hidden argument*/NULL);
if (!L_3)
{
goto IL_000f;
}
}
{
int32_t L_4 = V_0;
return L_4;
}
}
// System.Byte[] Mono.Math.BigInteger::GetBytes()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* BigInteger_GetBytes_m3FA801F9485DE409CF9C9E7F4873694BF642C31C (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BigInteger_GetBytes_m3FA801F9485DE409CF9C9E7F4873694BF642C31C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_1 = NULL;
int32_t V_2 = 0;
int32_t V_3 = 0;
int32_t V_4 = 0;
uint32_t V_5 = 0;
int32_t V_6 = 0;
{
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
bool L_0 = BigInteger_op_Equality_mAA7DD5259960E4837D8A8AB56DB3C6AEF367C504(__this, 0, /*hidden argument*/NULL);
if (!L_0)
{
goto IL_0010;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)1);
return L_1;
}
IL_0010:
{
int32_t L_2 = BigInteger_BitCount_mFEA208FDC3B126E1517F0E5AAB8D1193856F8C76(__this, /*hidden argument*/NULL);
int32_t L_3 = L_2;
V_0 = ((int32_t)((int32_t)L_3>>(int32_t)3));
if (!((int32_t)((int32_t)L_3&(int32_t)7)))
{
goto IL_0022;
}
}
{
int32_t L_4 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1));
}
IL_0022:
{
int32_t L_5 = V_0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_6 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)L_5);
V_1 = L_6;
int32_t L_7 = V_0;
V_2 = ((int32_t)((int32_t)L_7&(int32_t)3));
int32_t L_8 = V_2;
if (L_8)
{
goto IL_0032;
}
}
{
V_2 = 4;
}
IL_0032:
{
V_3 = 0;
uint32_t L_9 = __this->get_length_0();
V_4 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1));
goto IL_007e;
}
IL_0040:
{
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_10 = __this->get_data_1();
int32_t L_11 = V_4;
NullCheck(L_10);
int32_t L_12 = L_11;
uint32_t L_13 = (L_10)->GetAt(static_cast<il2cpp_array_size_t>(L_12));
V_5 = L_13;
int32_t L_14 = V_2;
V_6 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_14, (int32_t)1));
goto IL_006d;
}
IL_0052:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_15 = V_1;
int32_t L_16 = V_3;
int32_t L_17 = V_6;
uint32_t L_18 = V_5;
NullCheck(L_15);
(L_15)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)L_17))), (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)L_18&(int32_t)((int32_t)255)))))));
uint32_t L_19 = V_5;
V_5 = ((int32_t)((uint32_t)L_19>>8));
int32_t L_20 = V_6;
V_6 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_20, (int32_t)1));
}
IL_006d:
{
int32_t L_21 = V_6;
if ((((int32_t)L_21) >= ((int32_t)0)))
{
goto IL_0052;
}
}
{
int32_t L_22 = V_3;
int32_t L_23 = V_2;
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_22, (int32_t)L_23));
V_2 = 4;
int32_t L_24 = V_4;
V_4 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_24, (int32_t)1));
}
IL_007e:
{
int32_t L_25 = V_4;
if ((((int32_t)L_25) >= ((int32_t)0)))
{
goto IL_0040;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_26 = V_1;
return L_26;
}
}
// System.Boolean Mono.Math.BigInteger::op_Equality(Mono.Math.BigInteger,System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BigInteger_op_Equality_mAA7DD5259960E4837D8A8AB56DB3C6AEF367C504 (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi10, uint32_t ___ui1, const RuntimeMethod* method)
{
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_0 = ___bi10;
NullCheck(L_0);
uint32_t L_1 = L_0->get_length_0();
if ((((int32_t)L_1) == ((int32_t)1)))
{
goto IL_000f;
}
}
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_2 = ___bi10;
NullCheck(L_2);
BigInteger_Normalize_mF0C4E36E69C54DB487EB2A29532BB7EB21585592(L_2, /*hidden argument*/NULL);
}
IL_000f:
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_3 = ___bi10;
NullCheck(L_3);
uint32_t L_4 = L_3->get_length_0();
if ((!(((uint32_t)L_4) == ((uint32_t)1))))
{
goto IL_0024;
}
}
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_5 = ___bi10;
NullCheck(L_5);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_6 = L_5->get_data_1();
NullCheck(L_6);
int32_t L_7 = 0;
uint32_t L_8 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
uint32_t L_9 = ___ui1;
return (bool)((((int32_t)L_8) == ((int32_t)L_9))? 1 : 0);
}
IL_0024:
{
return (bool)0;
}
}
// System.Boolean Mono.Math.BigInteger::op_Inequality(Mono.Math.BigInteger,System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BigInteger_op_Inequality_m13AF07D0E4BF09886DCCDCFDE553542F6F4ED1A4 (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi10, uint32_t ___ui1, const RuntimeMethod* method)
{
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_0 = ___bi10;
NullCheck(L_0);
uint32_t L_1 = L_0->get_length_0();
if ((((int32_t)L_1) == ((int32_t)1)))
{
goto IL_000f;
}
}
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_2 = ___bi10;
NullCheck(L_2);
BigInteger_Normalize_mF0C4E36E69C54DB487EB2A29532BB7EB21585592(L_2, /*hidden argument*/NULL);
}
IL_000f:
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_3 = ___bi10;
NullCheck(L_3);
uint32_t L_4 = L_3->get_length_0();
if ((!(((uint32_t)L_4) == ((uint32_t)1))))
{
goto IL_0027;
}
}
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_5 = ___bi10;
NullCheck(L_5);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_6 = L_5->get_data_1();
NullCheck(L_6);
int32_t L_7 = 0;
uint32_t L_8 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
uint32_t L_9 = ___ui1;
return (bool)((((int32_t)((((int32_t)L_8) == ((int32_t)L_9))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_0027:
{
return (bool)1;
}
}
// System.Boolean Mono.Math.BigInteger::op_Equality(Mono.Math.BigInteger,Mono.Math.BigInteger)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BigInteger_op_Equality_mF5B5A983065914F1789BB1552A1AA1B589B59C90 (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi10, BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi21, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BigInteger_op_Equality_mF5B5A983065914F1789BB1552A1AA1B589B59C90_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_0 = ___bi10;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_1 = ___bi21;
if ((!(((RuntimeObject*)(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)L_0) == ((RuntimeObject*)(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)L_1))))
{
goto IL_0006;
}
}
{
return (bool)1;
}
IL_0006:
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_2 = ___bi10;
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
bool L_3 = BigInteger_op_Equality_mF5B5A983065914F1789BB1552A1AA1B589B59C90((BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)NULL, L_2, /*hidden argument*/NULL);
if (L_3)
{
goto IL_0018;
}
}
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_4 = ___bi21;
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
bool L_5 = BigInteger_op_Equality_mF5B5A983065914F1789BB1552A1AA1B589B59C90((BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)NULL, L_4, /*hidden argument*/NULL);
if (!L_5)
{
goto IL_001a;
}
}
IL_0018:
{
return (bool)0;
}
IL_001a:
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_6 = ___bi10;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_7 = ___bi21;
int32_t L_8 = Kernel_Compare_m07031942FB73AA6F48F11CBB4FDAEBF6767C84EE(L_6, L_7, /*hidden argument*/NULL);
return (bool)((((int32_t)L_8) == ((int32_t)0))? 1 : 0);
}
}
// System.Boolean Mono.Math.BigInteger::op_Inequality(Mono.Math.BigInteger,Mono.Math.BigInteger)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BigInteger_op_Inequality_m0C6217422FC853BD5E26CF9E7995AE95E55668C2 (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi10, BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi21, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BigInteger_op_Inequality_m0C6217422FC853BD5E26CF9E7995AE95E55668C2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_0 = ___bi10;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_1 = ___bi21;
if ((!(((RuntimeObject*)(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)L_0) == ((RuntimeObject*)(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)L_1))))
{
goto IL_0006;
}
}
{
return (bool)0;
}
IL_0006:
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_2 = ___bi10;
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
bool L_3 = BigInteger_op_Equality_mF5B5A983065914F1789BB1552A1AA1B589B59C90((BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)NULL, L_2, /*hidden argument*/NULL);
if (L_3)
{
goto IL_0018;
}
}
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_4 = ___bi21;
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
bool L_5 = BigInteger_op_Equality_mF5B5A983065914F1789BB1552A1AA1B589B59C90((BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)NULL, L_4, /*hidden argument*/NULL);
if (!L_5)
{
goto IL_001a;
}
}
IL_0018:
{
return (bool)1;
}
IL_001a:
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_6 = ___bi10;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_7 = ___bi21;
int32_t L_8 = Kernel_Compare_m07031942FB73AA6F48F11CBB4FDAEBF6767C84EE(L_6, L_7, /*hidden argument*/NULL);
return (bool)((!(((uint32_t)L_8) <= ((uint32_t)0)))? 1 : 0);
}
}
// System.Boolean Mono.Math.BigInteger::op_GreaterThan(Mono.Math.BigInteger,Mono.Math.BigInteger)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BigInteger_op_GreaterThan_m4CC14F86717F122D7489EFF24C991F5BEE92A00F (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi10, BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi21, const RuntimeMethod* method)
{
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_0 = ___bi10;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_1 = ___bi21;
int32_t L_2 = Kernel_Compare_m07031942FB73AA6F48F11CBB4FDAEBF6767C84EE(L_0, L_1, /*hidden argument*/NULL);
return (bool)((((int32_t)L_2) > ((int32_t)0))? 1 : 0);
}
}
// System.Boolean Mono.Math.BigInteger::op_LessThan(Mono.Math.BigInteger,Mono.Math.BigInteger)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BigInteger_op_LessThan_m3E95747DE75EE020DB45C030FEA87F2785F1F106 (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi10, BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi21, const RuntimeMethod* method)
{
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_0 = ___bi10;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_1 = ___bi21;
int32_t L_2 = Kernel_Compare_m07031942FB73AA6F48F11CBB4FDAEBF6767C84EE(L_0, L_1, /*hidden argument*/NULL);
return (bool)((((int32_t)L_2) < ((int32_t)0))? 1 : 0);
}
}
// System.Boolean Mono.Math.BigInteger::op_GreaterThanOrEqual(Mono.Math.BigInteger,Mono.Math.BigInteger)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BigInteger_op_GreaterThanOrEqual_mF4B81FC95ED0CBFA91676E43B1FAE027C850FBBF (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi10, BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi21, const RuntimeMethod* method)
{
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_0 = ___bi10;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_1 = ___bi21;
int32_t L_2 = Kernel_Compare_m07031942FB73AA6F48F11CBB4FDAEBF6767C84EE(L_0, L_1, /*hidden argument*/NULL);
return (bool)((((int32_t)((((int32_t)L_2) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
}
// System.Boolean Mono.Math.BigInteger::op_LessThanOrEqual(Mono.Math.BigInteger,Mono.Math.BigInteger)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BigInteger_op_LessThanOrEqual_m6F736D56374810C3251542D1CFFB2AB4ADFCCE86 (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi10, BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi21, const RuntimeMethod* method)
{
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_0 = ___bi10;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_1 = ___bi21;
int32_t L_2 = Kernel_Compare_m07031942FB73AA6F48F11CBB4FDAEBF6767C84EE(L_0, L_1, /*hidden argument*/NULL);
return (bool)((((int32_t)((((int32_t)L_2) > ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
}
// System.String Mono.Math.BigInteger::ToString(System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* BigInteger_ToString_m589EF8667DF3B88F9A54068FCC1A60AE0D78FC67 (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * __this, uint32_t ___radix0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BigInteger_ToString_m589EF8667DF3B88F9A54068FCC1A60AE0D78FC67_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
uint32_t L_0 = ___radix0;
String_t* L_1 = BigInteger_ToString_m9FD0DEAAA4F90CECA50A45E19876EF580B1EA9A2(__this, L_0, _stringLiteralD150280BF54C7333BE9D98D2044A6A91D3349975, /*hidden argument*/NULL);
return L_1;
}
}
// System.String Mono.Math.BigInteger::ToString(System.UInt32,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* BigInteger_ToString_m9FD0DEAAA4F90CECA50A45E19876EF580B1EA9A2 (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * __this, uint32_t ___radix0, String_t* ___characterSet1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BigInteger_ToString_m9FD0DEAAA4F90CECA50A45E19876EF580B1EA9A2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * V_1 = NULL;
uint32_t V_2 = 0;
Il2CppChar V_3 = 0x0;
{
String_t* L_0 = ___characterSet1;
NullCheck(L_0);
int32_t L_1 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_0, /*hidden argument*/NULL);
uint32_t L_2 = ___radix0;
if ((((int64_t)(((int64_t)((int64_t)L_1)))) >= ((int64_t)(((int64_t)((uint64_t)L_2))))))
{
goto IL_001b;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_3 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_3, _stringLiteralEE238767F38DC3956FF90192A7360A5B47C88C36, _stringLiteralC510A07D481619FBF882813AD37E03F5384F7266, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, BigInteger_ToString_m9FD0DEAAA4F90CECA50A45E19876EF580B1EA9A2_RuntimeMethod_var);
}
IL_001b:
{
uint32_t L_4 = ___radix0;
if ((!(((uint32_t)L_4) == ((uint32_t)1))))
{
goto IL_002f;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_5 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_5, _stringLiteral05E744AC2ACCB10E5085BEEA59CA196CBDBC4461, _stringLiteral5F33E8DDD36B0C849687DF732835B9ABBE9B347B, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, BigInteger_ToString_m9FD0DEAAA4F90CECA50A45E19876EF580B1EA9A2_RuntimeMethod_var);
}
IL_002f:
{
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
bool L_6 = BigInteger_op_Equality_mAA7DD5259960E4837D8A8AB56DB3C6AEF367C504(__this, 0, /*hidden argument*/NULL);
if (!L_6)
{
goto IL_003e;
}
}
{
return _stringLiteralB6589FC6AB0DC82CF12099D1C2D40AB994E8410C;
}
IL_003e:
{
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
bool L_7 = BigInteger_op_Equality_mAA7DD5259960E4837D8A8AB56DB3C6AEF367C504(__this, 1, /*hidden argument*/NULL);
if (!L_7)
{
goto IL_004d;
}
}
{
return _stringLiteral356A192B7913B04C54574D18C28D46E6395428AB;
}
IL_004d:
{
V_0 = _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_8 = (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)il2cpp_codegen_object_new(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
BigInteger__ctor_m77CF9FF025A6A98A625E8E948F19F822210BC29C(L_8, __this, /*hidden argument*/NULL);
V_1 = L_8;
goto IL_007a;
}
IL_005c:
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_9 = V_1;
uint32_t L_10 = ___radix0;
uint32_t L_11 = Kernel_SingleByteDivideInPlace_mA3A9E99D052F6906DAC3EC33E815F85621B9D2E3(L_9, L_10, /*hidden argument*/NULL);
V_2 = L_11;
String_t* L_12 = ___characterSet1;
uint32_t L_13 = V_2;
NullCheck(L_12);
Il2CppChar L_14 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_12, L_13, /*hidden argument*/NULL);
V_3 = L_14;
String_t* L_15 = Char_ToString_mA42A88FEBA41B72D48BB24373E3101B7A91B6FD8((Il2CppChar*)(&V_3), /*hidden argument*/NULL);
String_t* L_16 = V_0;
String_t* L_17 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(L_15, L_16, /*hidden argument*/NULL);
V_0 = L_17;
}
IL_007a:
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_18 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
bool L_19 = BigInteger_op_Inequality_m13AF07D0E4BF09886DCCDCFDE553542F6F4ED1A4(L_18, 0, /*hidden argument*/NULL);
if (L_19)
{
goto IL_005c;
}
}
{
String_t* L_20 = V_0;
return L_20;
}
}
// System.Void Mono.Math.BigInteger::Normalize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BigInteger_Normalize_mF0C4E36E69C54DB487EB2A29532BB7EB21585592 (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * __this, const RuntimeMethod* method)
{
{
goto IL_0010;
}
IL_0002:
{
uint32_t L_0 = __this->get_length_0();
__this->set_length_0(((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)1)));
}
IL_0010:
{
uint32_t L_1 = __this->get_length_0();
if ((!(((uint32_t)L_1) > ((uint32_t)0))))
{
goto IL_002a;
}
}
{
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_2 = __this->get_data_1();
uint32_t L_3 = __this->get_length_0();
NullCheck(L_2);
int32_t L_4 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_3, (int32_t)1));
uint32_t L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
if (!L_5)
{
goto IL_0002;
}
}
IL_002a:
{
uint32_t L_6 = __this->get_length_0();
if (L_6)
{
goto IL_0040;
}
}
{
uint32_t L_7 = __this->get_length_0();
__this->set_length_0(((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1)));
}
IL_0040:
{
return;
}
}
// System.Void Mono.Math.BigInteger::Clear()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BigInteger_Clear_m255C25D3F81897E8ACF1B0F1C75E33459E4E9ECD (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
V_0 = 0;
goto IL_0011;
}
IL_0004:
{
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_0 = __this->get_data_1();
int32_t L_1 = V_0;
NullCheck(L_0);
(L_0)->SetAt(static_cast<il2cpp_array_size_t>(L_1), (uint32_t)0);
int32_t L_2 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)1));
}
IL_0011:
{
int32_t L_3 = V_0;
uint32_t L_4 = __this->get_length_0();
if ((((int64_t)(((int64_t)((int64_t)L_3)))) < ((int64_t)(((int64_t)((uint64_t)L_4))))))
{
goto IL_0004;
}
}
{
return;
}
}
// System.Int32 Mono.Math.BigInteger::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BigInteger_GetHashCode_m41D93A3D1A7ADC2BC2DB20A06DB19E645C2A77EC (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * __this, const RuntimeMethod* method)
{
uint32_t V_0 = 0;
uint32_t V_1 = 0;
{
V_0 = 0;
V_1 = 0;
goto IL_0015;
}
IL_0006:
{
uint32_t L_0 = V_0;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_1 = __this->get_data_1();
uint32_t L_2 = V_1;
NullCheck(L_1);
uint32_t L_3 = L_2;
uint32_t L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
V_0 = ((int32_t)((int32_t)L_0^(int32_t)L_4));
uint32_t L_5 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1));
}
IL_0015:
{
uint32_t L_6 = V_1;
uint32_t L_7 = __this->get_length_0();
if ((!(((uint32_t)L_6) >= ((uint32_t)L_7))))
{
goto IL_0006;
}
}
{
uint32_t L_8 = V_0;
return L_8;
}
}
// System.String Mono.Math.BigInteger::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* BigInteger_ToString_m77C1AB4DFF33F0056239D0019B8AB6255E75C359 (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = BigInteger_ToString_m589EF8667DF3B88F9A54068FCC1A60AE0D78FC67(__this, ((int32_t)10), /*hidden argument*/NULL);
return L_0;
}
}
// System.Boolean Mono.Math.BigInteger::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BigInteger_Equals_m9877E32FBB71233616ACE7B8AAA31ED8C497716D (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * __this, RuntimeObject * ___o0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BigInteger_Equals_m9877E32FBB71233616ACE7B8AAA31ED8C497716D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * V_0 = NULL;
{
RuntimeObject * L_0 = ___o0;
if (L_0)
{
goto IL_0005;
}
}
{
return (bool)0;
}
IL_0005:
{
RuntimeObject * L_1 = ___o0;
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_1, Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var)))
{
goto IL_0025;
}
}
{
RuntimeObject * L_2 = ___o0;
if ((((int32_t)((*(int32_t*)((int32_t*)UnBox(L_2, Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var))))) < ((int32_t)0)))
{
goto IL_0023;
}
}
{
RuntimeObject * L_3 = ___o0;
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
bool L_4 = BigInteger_op_Equality_mAA7DD5259960E4837D8A8AB56DB3C6AEF367C504(__this, ((*(uint32_t*)((uint32_t*)UnBox(L_3, UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
return L_4;
}
IL_0023:
{
return (bool)0;
}
IL_0025:
{
RuntimeObject * L_5 = ___o0;
V_0 = ((BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)IsInstClass((RuntimeObject*)L_5, BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var));
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_6 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
bool L_7 = BigInteger_op_Equality_mF5B5A983065914F1789BB1552A1AA1B589B59C90(L_6, (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)NULL, /*hidden argument*/NULL);
if (!L_7)
{
goto IL_0037;
}
}
{
return (bool)0;
}
IL_0037:
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_8 = V_0;
int32_t L_9 = Kernel_Compare_m07031942FB73AA6F48F11CBB4FDAEBF6767C84EE(__this, L_8, /*hidden argument*/NULL);
return (bool)((((int32_t)L_9) == ((int32_t)0))? 1 : 0);
}
}
// Mono.Math.BigInteger Mono.Math.BigInteger::ModInverse(Mono.Math.BigInteger)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * BigInteger_ModInverse_mBA7BA94A2C0F242844B97B18DAEE368065E59522 (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * __this, BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___modulus0, const RuntimeMethod* method)
{
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_0 = ___modulus0;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_1 = Kernel_modInverse_mEB896FA57CB36CE9FF75EBB4E11EA71AE23E3EC4(__this, L_0, /*hidden argument*/NULL);
return L_1;
}
}
// Mono.Math.BigInteger Mono.Math.BigInteger::GeneratePseudoPrime(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * BigInteger_GeneratePseudoPrime_m40B9FAE1552A9CEF0A39529CF40E2F5C9FD377DE (int32_t ___bits0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BigInteger_GeneratePseudoPrime_m40B9FAE1552A9CEF0A39529CF40E2F5C9FD377DE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
SequentialSearchPrimeGeneratorBase_t051356406D15C0F3CCF38A685AB52DFC08B83360 * L_0 = (SequentialSearchPrimeGeneratorBase_t051356406D15C0F3CCF38A685AB52DFC08B83360 *)il2cpp_codegen_object_new(SequentialSearchPrimeGeneratorBase_t051356406D15C0F3CCF38A685AB52DFC08B83360_il2cpp_TypeInfo_var);
SequentialSearchPrimeGeneratorBase__ctor_m04D212D2DBC1A2B3DD39C26A8008D56528984A11(L_0, /*hidden argument*/NULL);
int32_t L_1 = ___bits0;
NullCheck(L_0);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_2 = VirtFuncInvoker1< BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *, int32_t >::Invoke(7 /* Mono.Math.BigInteger Mono.Math.Prime.Generator.PrimeGeneratorBase::GenerateNewPrime(System.Int32) */, L_0, L_1);
return L_2;
}
}
// System.Void Mono.Math.BigInteger::Incr2()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BigInteger_Incr2_mB0C767ACE801C97882A9887153C362F93118FCAA (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
V_0 = 0;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_0 = __this->get_data_1();
NullCheck(L_0);
uint32_t* L_1 = ((L_0)->GetAddressAt(static_cast<il2cpp_array_size_t>(0)));
int32_t L_2 = *((uint32_t*)L_1);
*((int32_t*)L_1) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)2));
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_3 = __this->get_data_1();
NullCheck(L_3);
int32_t L_4 = 0;
uint32_t L_5 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
if ((!(((uint32_t)L_5) < ((uint32_t)2))))
{
goto IL_006b;
}
}
{
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_6 = __this->get_data_1();
int32_t L_7 = V_0;
int32_t L_8 = ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1));
V_0 = L_8;
NullCheck(L_6);
uint32_t* L_9 = ((L_6)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_8)));
int32_t L_10 = *((uint32_t*)L_9);
*((int32_t*)L_9) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1));
goto IL_0046;
}
IL_0035:
{
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_11 = __this->get_data_1();
int32_t L_12 = V_0;
NullCheck(L_11);
uint32_t* L_13 = ((L_11)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_12)));
int32_t L_14 = *((uint32_t*)L_13);
*((int32_t*)L_13) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1));
}
IL_0046:
{
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_15 = __this->get_data_1();
int32_t L_16 = V_0;
int32_t L_17 = L_16;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1));
NullCheck(L_15);
int32_t L_18 = L_17;
uint32_t L_19 = (L_15)->GetAt(static_cast<il2cpp_array_size_t>(L_18));
if (!L_19)
{
goto IL_0035;
}
}
{
uint32_t L_20 = __this->get_length_0();
int32_t L_21 = V_0;
if ((!(((uint32_t)L_20) == ((uint32_t)L_21))))
{
goto IL_006b;
}
}
{
uint32_t L_22 = __this->get_length_0();
__this->set_length_0(((int32_t)il2cpp_codegen_add((int32_t)L_22, (int32_t)1)));
}
IL_006b:
{
return;
}
}
// System.Void Mono.Math.BigInteger::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BigInteger__cctor_mFA9F5AACEBB5B232D3139F994C06A883760DEAF0 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BigInteger__cctor_mFA9F5AACEBB5B232D3139F994C06A883760DEAF0_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_0 = (UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB*)(UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB*)SZArrayNew(UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB_il2cpp_TypeInfo_var, (uint32_t)((int32_t)783));
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_1 = L_0;
RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_2 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_tF21437707AFAA06797AEDEE07C84D4D3CC2837FA____6E5DC824F803F8565AF31B42199DAE39FE7F4EA9_11_FieldInfo_var) };
RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_1, L_2, /*hidden argument*/NULL);
((BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_StaticFields*)il2cpp_codegen_static_fields_for(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var))->set_smallPrimes_2(L_1);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Math.BigInteger Mono.Math.BigInteger_Kernel::Subtract(Mono.Math.BigInteger,Mono.Math.BigInteger)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * Kernel_Subtract_mD8975D3BC036B9DAEC10E5585880F304DAF3E332 (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___big0, BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___small1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Kernel_Subtract_mD8975D3BC036B9DAEC10E5585880F304DAF3E332_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * V_0 = NULL;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* V_1 = NULL;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* V_2 = NULL;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* V_3 = NULL;
uint32_t V_4 = 0;
uint32_t V_5 = 0;
uint32_t V_6 = 0;
uint32_t V_7 = 0;
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_0 = ___big0;
NullCheck(L_0);
uint32_t L_1 = L_0->get_length_0();
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_2 = (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)il2cpp_codegen_object_new(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
BigInteger__ctor_mF6EF77E576DB644975AE00AED27D25A7AC3AEE2E(L_2, 1, L_1, /*hidden argument*/NULL);
V_0 = L_2;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_3 = V_0;
NullCheck(L_3);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_4 = L_3->get_data_1();
V_1 = L_4;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_5 = ___big0;
NullCheck(L_5);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_6 = L_5->get_data_1();
V_2 = L_6;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_7 = ___small1;
NullCheck(L_7);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_8 = L_7->get_data_1();
V_3 = L_8;
V_4 = 0;
V_5 = 0;
}
IL_0028:
{
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_9 = V_3;
uint32_t L_10 = V_4;
NullCheck(L_9);
uint32_t L_11 = L_10;
uint32_t L_12 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_11));
V_6 = L_12;
uint32_t L_13 = V_6;
uint32_t L_14 = V_5;
int32_t L_15 = ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14));
V_6 = L_15;
uint32_t L_16 = V_5;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_17 = V_1;
uint32_t L_18 = V_4;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_19 = V_2;
uint32_t L_20 = V_4;
NullCheck(L_19);
uint32_t L_21 = L_20;
uint32_t L_22 = (L_19)->GetAt(static_cast<il2cpp_array_size_t>(L_21));
uint32_t L_23 = V_6;
int32_t L_24 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_22, (int32_t)L_23));
V_7 = L_24;
NullCheck(L_17);
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(L_18), (uint32_t)L_24);
uint32_t L_25 = V_7;
uint32_t L_26 = V_6;
if (!((int32_t)((int32_t)((!(((uint32_t)L_15) >= ((uint32_t)L_16)))? 1 : 0)|(int32_t)((!(((uint32_t)L_25) <= ((uint32_t)((~L_26)))))? 1 : 0))))
{
goto IL_0057;
}
}
{
V_5 = 1;
goto IL_005a;
}
IL_0057:
{
V_5 = 0;
}
IL_005a:
{
uint32_t L_27 = V_4;
int32_t L_28 = ((int32_t)il2cpp_codegen_add((int32_t)L_27, (int32_t)1));
V_4 = L_28;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_29 = ___small1;
NullCheck(L_29);
uint32_t L_30 = L_29->get_length_0();
if ((!(((uint32_t)L_28) >= ((uint32_t)L_30))))
{
goto IL_0028;
}
}
{
uint32_t L_31 = V_4;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_32 = ___big0;
NullCheck(L_32);
uint32_t L_33 = L_32->get_length_0();
if ((((int32_t)L_31) == ((int32_t)L_33)))
{
goto IL_00b8;
}
}
{
uint32_t L_34 = V_5;
if ((!(((uint32_t)L_34) == ((uint32_t)1))))
{
goto IL_00a1;
}
}
IL_0078:
{
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_35 = V_1;
uint32_t L_36 = V_4;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_37 = V_2;
uint32_t L_38 = V_4;
NullCheck(L_37);
uint32_t L_39 = L_38;
uint32_t L_40 = (L_37)->GetAt(static_cast<il2cpp_array_size_t>(L_39));
NullCheck(L_35);
(L_35)->SetAt(static_cast<il2cpp_array_size_t>(L_36), (uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_40, (int32_t)1)));
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_41 = V_2;
uint32_t L_42 = V_4;
uint32_t L_43 = L_42;
V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_43, (int32_t)1));
NullCheck(L_41);
uint32_t L_44 = L_43;
uint32_t L_45 = (L_41)->GetAt(static_cast<il2cpp_array_size_t>(L_44));
if (L_45)
{
goto IL_0097;
}
}
{
uint32_t L_46 = V_4;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_47 = ___big0;
NullCheck(L_47);
uint32_t L_48 = L_47->get_length_0();
if ((!(((uint32_t)L_46) >= ((uint32_t)L_48))))
{
goto IL_0078;
}
}
IL_0097:
{
uint32_t L_49 = V_4;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_50 = ___big0;
NullCheck(L_50);
uint32_t L_51 = L_50->get_length_0();
if ((((int32_t)L_49) == ((int32_t)L_51)))
{
goto IL_00b8;
}
}
IL_00a1:
{
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_52 = V_1;
uint32_t L_53 = V_4;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_54 = V_2;
uint32_t L_55 = V_4;
NullCheck(L_54);
uint32_t L_56 = L_55;
uint32_t L_57 = (L_54)->GetAt(static_cast<il2cpp_array_size_t>(L_56));
NullCheck(L_52);
(L_52)->SetAt(static_cast<il2cpp_array_size_t>(L_53), (uint32_t)L_57);
uint32_t L_58 = V_4;
int32_t L_59 = ((int32_t)il2cpp_codegen_add((int32_t)L_58, (int32_t)1));
V_4 = L_59;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_60 = ___big0;
NullCheck(L_60);
uint32_t L_61 = L_60->get_length_0();
if ((!(((uint32_t)L_59) >= ((uint32_t)L_61))))
{
goto IL_00a1;
}
}
IL_00b8:
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_62 = V_0;
NullCheck(L_62);
BigInteger_Normalize_mF0C4E36E69C54DB487EB2A29532BB7EB21585592(L_62, /*hidden argument*/NULL);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_63 = V_0;
return L_63;
}
}
// System.Void Mono.Math.BigInteger_Kernel::MinusEq(Mono.Math.BigInteger,Mono.Math.BigInteger)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Kernel_MinusEq_m75848E6833E2D01CF229BBA57A1A6D641D5D0380 (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___big0, BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___small1, const RuntimeMethod* method)
{
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* V_0 = NULL;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* V_1 = NULL;
uint32_t V_2 = 0;
uint32_t V_3 = 0;
uint32_t V_4 = 0;
uint32_t V_5 = 0;
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_0 = ___big0;
NullCheck(L_0);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_1 = L_0->get_data_1();
V_0 = L_1;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_2 = ___small1;
NullCheck(L_2);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_3 = L_2->get_data_1();
V_1 = L_3;
V_2 = 0;
V_3 = 0;
}
IL_0012:
{
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_4 = V_1;
uint32_t L_5 = V_2;
NullCheck(L_4);
uint32_t L_6 = L_5;
uint32_t L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
V_4 = L_7;
uint32_t L_8 = V_4;
uint32_t L_9 = V_3;
int32_t L_10 = ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)L_9));
V_4 = L_10;
uint32_t L_11 = V_3;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_12 = V_0;
uint32_t L_13 = V_2;
NullCheck(L_12);
uint32_t* L_14 = ((L_12)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_13)));
int32_t L_15 = *((uint32_t*)L_14);
uint32_t L_16 = V_4;
int32_t L_17 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_15, (int32_t)L_16));
V_5 = L_17;
*((int32_t*)L_14) = (int32_t)L_17;
uint32_t L_18 = V_5;
uint32_t L_19 = V_4;
if (!((int32_t)((int32_t)((!(((uint32_t)L_10) >= ((uint32_t)L_11)))? 1 : 0)|(int32_t)((!(((uint32_t)L_18) <= ((uint32_t)((~L_19)))))? 1 : 0))))
{
goto IL_003f;
}
}
{
V_3 = 1;
goto IL_0041;
}
IL_003f:
{
V_3 = 0;
}
IL_0041:
{
uint32_t L_20 = V_2;
int32_t L_21 = ((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1));
V_2 = L_21;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_22 = ___small1;
NullCheck(L_22);
uint32_t L_23 = L_22->get_length_0();
if ((!(((uint32_t)L_21) >= ((uint32_t)L_23))))
{
goto IL_0012;
}
}
{
uint32_t L_24 = V_2;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_25 = ___big0;
NullCheck(L_25);
uint32_t L_26 = L_25->get_length_0();
if ((((int32_t)L_24) == ((int32_t)L_26)))
{
goto IL_0089;
}
}
{
uint32_t L_27 = V_3;
if ((!(((uint32_t)L_27) == ((uint32_t)1))))
{
goto IL_0089;
}
}
IL_005b:
{
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_28 = V_0;
uint32_t L_29 = V_2;
NullCheck(L_28);
uint32_t* L_30 = ((L_28)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_29)));
int32_t L_31 = *((uint32_t*)L_30);
*((int32_t*)L_30) = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_31, (int32_t)1));
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_32 = V_0;
uint32_t L_33 = V_2;
uint32_t L_34 = L_33;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_34, (int32_t)1));
NullCheck(L_32);
uint32_t L_35 = L_34;
uint32_t L_36 = (L_32)->GetAt(static_cast<il2cpp_array_size_t>(L_35));
if (L_36)
{
goto IL_0089;
}
}
{
uint32_t L_37 = V_2;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_38 = ___big0;
NullCheck(L_38);
uint32_t L_39 = L_38->get_length_0();
if ((!(((uint32_t)L_37) >= ((uint32_t)L_39))))
{
goto IL_005b;
}
}
{
goto IL_0089;
}
IL_007b:
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_40 = ___big0;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_41 = L_40;
NullCheck(L_41);
uint32_t L_42 = L_41->get_length_0();
NullCheck(L_41);
L_41->set_length_0(((int32_t)il2cpp_codegen_subtract((int32_t)L_42, (int32_t)1)));
}
IL_0089:
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_43 = ___big0;
NullCheck(L_43);
uint32_t L_44 = L_43->get_length_0();
if ((!(((uint32_t)L_44) > ((uint32_t)0))))
{
goto IL_00a3;
}
}
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_45 = ___big0;
NullCheck(L_45);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_46 = L_45->get_data_1();
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_47 = ___big0;
NullCheck(L_47);
uint32_t L_48 = L_47->get_length_0();
NullCheck(L_46);
int32_t L_49 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_48, (int32_t)1));
uint32_t L_50 = (L_46)->GetAt(static_cast<il2cpp_array_size_t>(L_49));
if (!L_50)
{
goto IL_007b;
}
}
IL_00a3:
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_51 = ___big0;
NullCheck(L_51);
uint32_t L_52 = L_51->get_length_0();
if (L_52)
{
goto IL_00b9;
}
}
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_53 = ___big0;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_54 = L_53;
NullCheck(L_54);
uint32_t L_55 = L_54->get_length_0();
NullCheck(L_54);
L_54->set_length_0(((int32_t)il2cpp_codegen_add((int32_t)L_55, (int32_t)1)));
}
IL_00b9:
{
return;
}
}
// System.Void Mono.Math.BigInteger_Kernel::PlusEq(Mono.Math.BigInteger,Mono.Math.BigInteger)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Kernel_PlusEq_mF8EEDAFBFE9AD10CAD8770DC3A5D09E5147B0A48 (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi10, BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi21, const RuntimeMethod* method)
{
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* V_0 = NULL;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* V_1 = NULL;
uint32_t V_2 = 0;
uint32_t V_3 = 0;
uint32_t V_4 = 0;
bool V_5 = false;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* V_6 = NULL;
uint64_t V_7 = 0;
bool V_8 = false;
uint32_t V_9 = 0;
{
V_4 = 0;
V_5 = (bool)0;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_0 = ___bi10;
NullCheck(L_0);
uint32_t L_1 = L_0->get_length_0();
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_2 = ___bi21;
NullCheck(L_2);
uint32_t L_3 = L_2->get_length_0();
if ((!(((uint32_t)L_1) < ((uint32_t)L_3))))
{
goto IL_0035;
}
}
{
V_5 = (bool)1;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_4 = ___bi21;
NullCheck(L_4);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_5 = L_4->get_data_1();
V_0 = L_5;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_6 = ___bi21;
NullCheck(L_6);
uint32_t L_7 = L_6->get_length_0();
V_3 = L_7;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_8 = ___bi10;
NullCheck(L_8);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_9 = L_8->get_data_1();
V_1 = L_9;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_10 = ___bi10;
NullCheck(L_10);
uint32_t L_11 = L_10->get_length_0();
V_2 = L_11;
goto IL_0051;
}
IL_0035:
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_12 = ___bi10;
NullCheck(L_12);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_13 = L_12->get_data_1();
V_0 = L_13;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_14 = ___bi10;
NullCheck(L_14);
uint32_t L_15 = L_14->get_length_0();
V_3 = L_15;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_16 = ___bi21;
NullCheck(L_16);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_17 = L_16->get_data_1();
V_1 = L_17;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_18 = ___bi21;
NullCheck(L_18);
uint32_t L_19 = L_18->get_length_0();
V_2 = L_19;
}
IL_0051:
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_20 = ___bi10;
NullCheck(L_20);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_21 = L_20->get_data_1();
V_6 = L_21;
V_7 = (((int64_t)((int64_t)0)));
}
IL_005d:
{
uint64_t L_22 = V_7;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_23 = V_0;
uint32_t L_24 = V_4;
NullCheck(L_23);
uint32_t L_25 = L_24;
uint32_t L_26 = (L_23)->GetAt(static_cast<il2cpp_array_size_t>(L_25));
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_27 = V_1;
uint32_t L_28 = V_4;
NullCheck(L_27);
uint32_t L_29 = L_28;
uint32_t L_30 = (L_27)->GetAt(static_cast<il2cpp_array_size_t>(L_29));
V_7 = ((int64_t)il2cpp_codegen_add((int64_t)L_22, (int64_t)((int64_t)il2cpp_codegen_add((int64_t)(((int64_t)((uint64_t)L_26))), (int64_t)(((int64_t)((uint64_t)L_30)))))));
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_31 = V_6;
uint32_t L_32 = V_4;
uint64_t L_33 = V_7;
NullCheck(L_31);
(L_31)->SetAt(static_cast<il2cpp_array_size_t>(L_32), (uint32_t)(((int32_t)((uint32_t)L_33))));
uint64_t L_34 = V_7;
V_7 = ((int64_t)((uint64_t)L_34>>((int32_t)32)));
uint32_t L_35 = V_4;
int32_t L_36 = ((int32_t)il2cpp_codegen_add((int32_t)L_35, (int32_t)1));
V_4 = L_36;
uint32_t L_37 = V_2;
if ((!(((uint32_t)L_36) >= ((uint32_t)L_37))))
{
goto IL_005d;
}
}
{
uint64_t L_38 = V_7;
V_8 = (bool)((!(((uint64_t)L_38) <= ((uint64_t)(((int64_t)((int64_t)0))))))? 1 : 0);
bool L_39 = V_8;
if (!L_39)
{
goto IL_00d3;
}
}
{
uint32_t L_40 = V_4;
uint32_t L_41 = V_3;
if ((!(((uint32_t)L_40) < ((uint32_t)L_41))))
{
goto IL_00bb;
}
}
IL_0097:
{
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_42 = V_6;
uint32_t L_43 = V_4;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_44 = V_0;
uint32_t L_45 = V_4;
NullCheck(L_44);
uint32_t L_46 = L_45;
uint32_t L_47 = (L_44)->GetAt(static_cast<il2cpp_array_size_t>(L_46));
int32_t L_48 = ((int32_t)il2cpp_codegen_add((int32_t)L_47, (int32_t)1));
V_9 = L_48;
NullCheck(L_42);
(L_42)->SetAt(static_cast<il2cpp_array_size_t>(L_43), (uint32_t)L_48);
uint32_t L_49 = V_9;
V_8 = (bool)((((int32_t)L_49) == ((int32_t)0))? 1 : 0);
uint32_t L_50 = V_4;
int32_t L_51 = ((int32_t)il2cpp_codegen_add((int32_t)L_50, (int32_t)1));
V_4 = L_51;
uint32_t L_52 = V_3;
bool L_53 = V_8;
if (((int32_t)((int32_t)((!(((uint32_t)L_51) >= ((uint32_t)L_52)))? 1 : 0)&(int32_t)L_53)))
{
goto IL_0097;
}
}
IL_00bb:
{
bool L_54 = V_8;
if (!L_54)
{
goto IL_00d3;
}
}
{
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_55 = V_6;
uint32_t L_56 = V_4;
NullCheck(L_55);
(L_55)->SetAt(static_cast<il2cpp_array_size_t>(L_56), (uint32_t)1);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_57 = ___bi10;
uint32_t L_58 = V_4;
int32_t L_59 = ((int32_t)il2cpp_codegen_add((int32_t)L_58, (int32_t)1));
V_4 = L_59;
NullCheck(L_57);
L_57->set_length_0(L_59);
return;
}
IL_00d3:
{
bool L_60 = V_5;
if (!L_60)
{
goto IL_00f1;
}
}
{
uint32_t L_61 = V_4;
uint32_t L_62 = V_3;
if ((!(((uint32_t)L_61) < ((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_62, (int32_t)1))))))
{
goto IL_00f1;
}
}
IL_00de:
{
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_63 = V_6;
uint32_t L_64 = V_4;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_65 = V_0;
uint32_t L_66 = V_4;
NullCheck(L_65);
uint32_t L_67 = L_66;
uint32_t L_68 = (L_65)->GetAt(static_cast<il2cpp_array_size_t>(L_67));
NullCheck(L_63);
(L_63)->SetAt(static_cast<il2cpp_array_size_t>(L_64), (uint32_t)L_68);
uint32_t L_69 = V_4;
int32_t L_70 = ((int32_t)il2cpp_codegen_add((int32_t)L_69, (int32_t)1));
V_4 = L_70;
uint32_t L_71 = V_3;
if ((!(((uint32_t)L_70) >= ((uint32_t)L_71))))
{
goto IL_00de;
}
}
IL_00f1:
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_72 = ___bi10;
uint32_t L_73 = V_3;
NullCheck(L_72);
L_72->set_length_0(((int32_t)il2cpp_codegen_add((int32_t)L_73, (int32_t)1)));
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_74 = ___bi10;
NullCheck(L_74);
BigInteger_Normalize_mF0C4E36E69C54DB487EB2A29532BB7EB21585592(L_74, /*hidden argument*/NULL);
return;
}
}
// Mono.Math.BigInteger_Sign Mono.Math.BigInteger_Kernel::Compare(Mono.Math.BigInteger,Mono.Math.BigInteger)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Kernel_Compare_m07031942FB73AA6F48F11CBB4FDAEBF6767C84EE (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi10, BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi21, const RuntimeMethod* method)
{
uint32_t V_0 = 0;
uint32_t V_1 = 0;
uint32_t V_2 = 0;
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_0 = ___bi10;
NullCheck(L_0);
uint32_t L_1 = L_0->get_length_0();
V_0 = L_1;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_2 = ___bi21;
NullCheck(L_2);
uint32_t L_3 = L_2->get_length_0();
V_1 = L_3;
goto IL_0014;
}
IL_0010:
{
uint32_t L_4 = V_0;
V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
}
IL_0014:
{
uint32_t L_5 = V_0;
if ((!(((uint32_t)L_5) > ((uint32_t)0))))
{
goto IL_002a;
}
}
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_6 = ___bi10;
NullCheck(L_6);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_7 = L_6->get_data_1();
uint32_t L_8 = V_0;
NullCheck(L_7);
int32_t L_9 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_8, (int32_t)1));
uint32_t L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
if (!L_10)
{
goto IL_0010;
}
}
{
goto IL_002a;
}
IL_0026:
{
uint32_t L_11 = V_1;
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_11, (int32_t)1));
}
IL_002a:
{
uint32_t L_12 = V_1;
if ((!(((uint32_t)L_12) > ((uint32_t)0))))
{
goto IL_003a;
}
}
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_13 = ___bi21;
NullCheck(L_13);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_14 = L_13->get_data_1();
uint32_t L_15 = V_1;
NullCheck(L_14);
int32_t L_16 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_15, (int32_t)1));
uint32_t L_17 = (L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_16));
if (!L_17)
{
goto IL_0026;
}
}
IL_003a:
{
uint32_t L_18 = V_0;
if (L_18)
{
goto IL_0042;
}
}
{
uint32_t L_19 = V_1;
if (L_19)
{
goto IL_0042;
}
}
{
return (int32_t)(0);
}
IL_0042:
{
uint32_t L_20 = V_0;
uint32_t L_21 = V_1;
if ((!(((uint32_t)L_20) < ((uint32_t)L_21))))
{
goto IL_0048;
}
}
{
return (int32_t)((-1));
}
IL_0048:
{
uint32_t L_22 = V_0;
uint32_t L_23 = V_1;
if ((!(((uint32_t)L_22) > ((uint32_t)L_23))))
{
goto IL_004e;
}
}
{
return (int32_t)(1);
}
IL_004e:
{
uint32_t L_24 = V_0;
V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_24, (int32_t)1));
goto IL_0058;
}
IL_0054:
{
uint32_t L_25 = V_2;
V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_25, (int32_t)1));
}
IL_0058:
{
uint32_t L_26 = V_2;
if (!L_26)
{
goto IL_006d;
}
}
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_27 = ___bi10;
NullCheck(L_27);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_28 = L_27->get_data_1();
uint32_t L_29 = V_2;
NullCheck(L_28);
uint32_t L_30 = L_29;
uint32_t L_31 = (L_28)->GetAt(static_cast<il2cpp_array_size_t>(L_30));
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_32 = ___bi21;
NullCheck(L_32);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_33 = L_32->get_data_1();
uint32_t L_34 = V_2;
NullCheck(L_33);
uint32_t L_35 = L_34;
uint32_t L_36 = (L_33)->GetAt(static_cast<il2cpp_array_size_t>(L_35));
if ((((int32_t)L_31) == ((int32_t)L_36)))
{
goto IL_0054;
}
}
IL_006d:
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_37 = ___bi10;
NullCheck(L_37);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_38 = L_37->get_data_1();
uint32_t L_39 = V_2;
NullCheck(L_38);
uint32_t L_40 = L_39;
uint32_t L_41 = (L_38)->GetAt(static_cast<il2cpp_array_size_t>(L_40));
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_42 = ___bi21;
NullCheck(L_42);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_43 = L_42->get_data_1();
uint32_t L_44 = V_2;
NullCheck(L_43);
uint32_t L_45 = L_44;
uint32_t L_46 = (L_43)->GetAt(static_cast<il2cpp_array_size_t>(L_45));
if ((!(((uint32_t)L_41) < ((uint32_t)L_46))))
{
goto IL_0081;
}
}
{
return (int32_t)((-1));
}
IL_0081:
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_47 = ___bi10;
NullCheck(L_47);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_48 = L_47->get_data_1();
uint32_t L_49 = V_2;
NullCheck(L_48);
uint32_t L_50 = L_49;
uint32_t L_51 = (L_48)->GetAt(static_cast<il2cpp_array_size_t>(L_50));
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_52 = ___bi21;
NullCheck(L_52);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_53 = L_52->get_data_1();
uint32_t L_54 = V_2;
NullCheck(L_53);
uint32_t L_55 = L_54;
uint32_t L_56 = (L_53)->GetAt(static_cast<il2cpp_array_size_t>(L_55));
if ((!(((uint32_t)L_51) > ((uint32_t)L_56))))
{
goto IL_0095;
}
}
{
return (int32_t)(1);
}
IL_0095:
{
return (int32_t)(0);
}
}
// System.UInt32 Mono.Math.BigInteger_Kernel::SingleByteDivideInPlace(Mono.Math.BigInteger,System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Kernel_SingleByteDivideInPlace_mA3A9E99D052F6906DAC3EC33E815F85621B9D2E3 (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___n0, uint32_t ___d1, const RuntimeMethod* method)
{
uint64_t V_0 = 0;
uint32_t V_1 = 0;
{
V_0 = (((int64_t)((int64_t)0)));
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_0 = ___n0;
NullCheck(L_0);
uint32_t L_1 = L_0->get_length_0();
V_1 = L_1;
goto IL_002f;
}
IL_000c:
{
uint64_t L_2 = V_0;
V_0 = ((int64_t)((int64_t)L_2<<(int32_t)((int32_t)32)));
uint64_t L_3 = V_0;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_4 = ___n0;
NullCheck(L_4);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_5 = L_4->get_data_1();
uint32_t L_6 = V_1;
NullCheck(L_5);
uint32_t L_7 = L_6;
uint32_t L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
V_0 = ((int64_t)((int64_t)L_3|(int64_t)(((int64_t)((uint64_t)L_8)))));
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_9 = ___n0;
NullCheck(L_9);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_10 = L_9->get_data_1();
uint32_t L_11 = V_1;
uint64_t L_12 = V_0;
uint32_t L_13 = ___d1;
NullCheck(L_10);
(L_10)->SetAt(static_cast<il2cpp_array_size_t>(L_11), (uint32_t)(((int32_t)((uint32_t)((int64_t)((uint64_t)(int64_t)L_12/(uint64_t)(int64_t)(((int64_t)((uint64_t)L_13)))))))));
uint64_t L_14 = V_0;
uint32_t L_15 = ___d1;
V_0 = ((int64_t)((uint64_t)(int64_t)L_14%(uint64_t)(int64_t)(((int64_t)((uint64_t)L_15)))));
}
IL_002f:
{
uint32_t L_16 = V_1;
uint32_t L_17 = L_16;
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)1));
if ((!(((uint32_t)L_17) <= ((uint32_t)0))))
{
goto IL_000c;
}
}
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_18 = ___n0;
NullCheck(L_18);
BigInteger_Normalize_mF0C4E36E69C54DB487EB2A29532BB7EB21585592(L_18, /*hidden argument*/NULL);
uint64_t L_19 = V_0;
return (((int32_t)((uint32_t)L_19)));
}
}
// System.UInt32 Mono.Math.BigInteger_Kernel::DwordMod(Mono.Math.BigInteger,System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Kernel_DwordMod_m09BBF0BCB7D08A1CC8A24A82A8190E81D12BABDA (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___n0, uint32_t ___d1, const RuntimeMethod* method)
{
uint64_t V_0 = 0;
uint32_t V_1 = 0;
{
V_0 = (((int64_t)((int64_t)0)));
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_0 = ___n0;
NullCheck(L_0);
uint32_t L_1 = L_0->get_length_0();
V_1 = L_1;
goto IL_0022;
}
IL_000c:
{
uint64_t L_2 = V_0;
V_0 = ((int64_t)((int64_t)L_2<<(int32_t)((int32_t)32)));
uint64_t L_3 = V_0;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_4 = ___n0;
NullCheck(L_4);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_5 = L_4->get_data_1();
uint32_t L_6 = V_1;
NullCheck(L_5);
uint32_t L_7 = L_6;
uint32_t L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
V_0 = ((int64_t)((int64_t)L_3|(int64_t)(((int64_t)((uint64_t)L_8)))));
uint64_t L_9 = V_0;
uint32_t L_10 = ___d1;
V_0 = ((int64_t)((uint64_t)(int64_t)L_9%(uint64_t)(int64_t)(((int64_t)((uint64_t)L_10)))));
}
IL_0022:
{
uint32_t L_11 = V_1;
uint32_t L_12 = L_11;
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_12, (int32_t)1));
if ((!(((uint32_t)L_12) <= ((uint32_t)0))))
{
goto IL_000c;
}
}
{
uint64_t L_13 = V_0;
return (((int32_t)((uint32_t)L_13)));
}
}
// Mono.Math.BigInteger[] Mono.Math.BigInteger_Kernel::DwordDivMod(Mono.Math.BigInteger,System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BigIntegerU5BU5D_t15EB0DC5DA051C4F0C1BECDCD8D7AB250F0CDF4B* Kernel_DwordDivMod_m7DD3CEDA379E3BEE45058144A4E63AB39C32268C (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___n0, uint32_t ___d1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Kernel_DwordDivMod_m7DD3CEDA379E3BEE45058144A4E63AB39C32268C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * V_0 = NULL;
uint64_t V_1 = 0;
uint32_t V_2 = 0;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * V_3 = NULL;
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_0 = ___n0;
NullCheck(L_0);
uint32_t L_1 = L_0->get_length_0();
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_2 = (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)il2cpp_codegen_object_new(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
BigInteger__ctor_mF6EF77E576DB644975AE00AED27D25A7AC3AEE2E(L_2, 1, L_1, /*hidden argument*/NULL);
V_0 = L_2;
V_1 = (((int64_t)((int64_t)0)));
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_3 = ___n0;
NullCheck(L_3);
uint32_t L_4 = L_3->get_length_0();
V_2 = L_4;
goto IL_003c;
}
IL_0019:
{
uint64_t L_5 = V_1;
V_1 = ((int64_t)((int64_t)L_5<<(int32_t)((int32_t)32)));
uint64_t L_6 = V_1;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_7 = ___n0;
NullCheck(L_7);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_8 = L_7->get_data_1();
uint32_t L_9 = V_2;
NullCheck(L_8);
uint32_t L_10 = L_9;
uint32_t L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
V_1 = ((int64_t)((int64_t)L_6|(int64_t)(((int64_t)((uint64_t)L_11)))));
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_12 = V_0;
NullCheck(L_12);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_13 = L_12->get_data_1();
uint32_t L_14 = V_2;
uint64_t L_15 = V_1;
uint32_t L_16 = ___d1;
NullCheck(L_13);
(L_13)->SetAt(static_cast<il2cpp_array_size_t>(L_14), (uint32_t)(((int32_t)((uint32_t)((int64_t)((uint64_t)(int64_t)L_15/(uint64_t)(int64_t)(((int64_t)((uint64_t)L_16)))))))));
uint64_t L_17 = V_1;
uint32_t L_18 = ___d1;
V_1 = ((int64_t)((uint64_t)(int64_t)L_17%(uint64_t)(int64_t)(((int64_t)((uint64_t)L_18)))));
}
IL_003c:
{
uint32_t L_19 = V_2;
uint32_t L_20 = L_19;
V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_20, (int32_t)1));
if ((!(((uint32_t)L_20) <= ((uint32_t)0))))
{
goto IL_0019;
}
}
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_21 = V_0;
NullCheck(L_21);
BigInteger_Normalize_mF0C4E36E69C54DB487EB2A29532BB7EB21585592(L_21, /*hidden argument*/NULL);
uint64_t L_22 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_23 = BigInteger_op_Implicit_m47A1626222EC6D506611B5776F1506E5ED6F529F((((int32_t)((uint32_t)L_22))), /*hidden argument*/NULL);
V_3 = L_23;
BigIntegerU5BU5D_t15EB0DC5DA051C4F0C1BECDCD8D7AB250F0CDF4B* L_24 = (BigIntegerU5BU5D_t15EB0DC5DA051C4F0C1BECDCD8D7AB250F0CDF4B*)(BigIntegerU5BU5D_t15EB0DC5DA051C4F0C1BECDCD8D7AB250F0CDF4B*)SZArrayNew(BigIntegerU5BU5D_t15EB0DC5DA051C4F0C1BECDCD8D7AB250F0CDF4B_il2cpp_TypeInfo_var, (uint32_t)2);
BigIntegerU5BU5D_t15EB0DC5DA051C4F0C1BECDCD8D7AB250F0CDF4B* L_25 = L_24;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_26 = V_0;
NullCheck(L_25);
ArrayElementTypeCheck (L_25, L_26);
(L_25)->SetAt(static_cast<il2cpp_array_size_t>(0), (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)L_26);
BigIntegerU5BU5D_t15EB0DC5DA051C4F0C1BECDCD8D7AB250F0CDF4B* L_27 = L_25;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_28 = V_3;
NullCheck(L_27);
ArrayElementTypeCheck (L_27, L_28);
(L_27)->SetAt(static_cast<il2cpp_array_size_t>(1), (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)L_28);
return L_27;
}
}
// Mono.Math.BigInteger[] Mono.Math.BigInteger_Kernel::multiByteDivide(Mono.Math.BigInteger,Mono.Math.BigInteger)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BigIntegerU5BU5D_t15EB0DC5DA051C4F0C1BECDCD8D7AB250F0CDF4B* Kernel_multiByteDivide_m3AB2BAB666EBB176A004D389DBDAAEBAA3763B54 (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi10, BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi21, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Kernel_multiByteDivide_m3AB2BAB666EBB176A004D389DBDAAEBAA3763B54_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint32_t V_0 = 0;
int32_t V_1 = 0;
uint32_t V_2 = 0;
uint32_t V_3 = 0;
int32_t V_4 = 0;
int32_t V_5 = 0;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * V_6 = NULL;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * V_7 = NULL;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* V_8 = NULL;
int32_t V_9 = 0;
int32_t V_10 = 0;
uint32_t V_11 = 0;
uint64_t V_12 = 0;
BigIntegerU5BU5D_t15EB0DC5DA051C4F0C1BECDCD8D7AB250F0CDF4B* V_13 = NULL;
uint64_t V_14 = 0;
uint64_t V_15 = 0;
uint32_t V_16 = 0;
uint32_t V_17 = 0;
int32_t V_18 = 0;
uint64_t V_19 = 0;
uint32_t V_20 = 0;
uint64_t V_21 = 0;
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_0 = ___bi10;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_1 = ___bi21;
int32_t L_2 = Kernel_Compare_m07031942FB73AA6F48F11CBB4FDAEBF6767C84EE(L_0, L_1, /*hidden argument*/NULL);
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0023;
}
}
{
BigIntegerU5BU5D_t15EB0DC5DA051C4F0C1BECDCD8D7AB250F0CDF4B* L_3 = (BigIntegerU5BU5D_t15EB0DC5DA051C4F0C1BECDCD8D7AB250F0CDF4B*)(BigIntegerU5BU5D_t15EB0DC5DA051C4F0C1BECDCD8D7AB250F0CDF4B*)SZArrayNew(BigIntegerU5BU5D_t15EB0DC5DA051C4F0C1BECDCD8D7AB250F0CDF4B_il2cpp_TypeInfo_var, (uint32_t)2);
BigIntegerU5BU5D_t15EB0DC5DA051C4F0C1BECDCD8D7AB250F0CDF4B* L_4 = L_3;
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_5 = BigInteger_op_Implicit_m7057639C0ADB9D04334B3DA64237547E293A50EB(0, /*hidden argument*/NULL);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_5);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(0), (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)L_5);
BigIntegerU5BU5D_t15EB0DC5DA051C4F0C1BECDCD8D7AB250F0CDF4B* L_6 = L_4;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_7 = ___bi10;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_8 = (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)il2cpp_codegen_object_new(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
BigInteger__ctor_m77CF9FF025A6A98A625E8E948F19F822210BC29C(L_8, L_7, /*hidden argument*/NULL);
NullCheck(L_6);
ArrayElementTypeCheck (L_6, L_8);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(1), (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)L_8);
return L_6;
}
IL_0023:
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_9 = ___bi10;
NullCheck(L_9);
BigInteger_Normalize_mF0C4E36E69C54DB487EB2A29532BB7EB21585592(L_9, /*hidden argument*/NULL);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_10 = ___bi21;
NullCheck(L_10);
BigInteger_Normalize_mF0C4E36E69C54DB487EB2A29532BB7EB21585592(L_10, /*hidden argument*/NULL);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_11 = ___bi21;
NullCheck(L_11);
uint32_t L_12 = L_11->get_length_0();
if ((!(((uint32_t)L_12) == ((uint32_t)1))))
{
goto IL_0047;
}
}
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_13 = ___bi10;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_14 = ___bi21;
NullCheck(L_14);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_15 = L_14->get_data_1();
NullCheck(L_15);
int32_t L_16 = 0;
uint32_t L_17 = (L_15)->GetAt(static_cast<il2cpp_array_size_t>(L_16));
BigIntegerU5BU5D_t15EB0DC5DA051C4F0C1BECDCD8D7AB250F0CDF4B* L_18 = Kernel_DwordDivMod_m7DD3CEDA379E3BEE45058144A4E63AB39C32268C(L_13, L_17, /*hidden argument*/NULL);
return L_18;
}
IL_0047:
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_19 = ___bi10;
NullCheck(L_19);
uint32_t L_20 = L_19->get_length_0();
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1));
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_21 = ___bi21;
NullCheck(L_21);
uint32_t L_22 = L_21->get_length_0();
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_22, (int32_t)1));
V_2 = ((int32_t)-2147483648LL);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_23 = ___bi21;
NullCheck(L_23);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_24 = L_23->get_data_1();
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_25 = ___bi21;
NullCheck(L_25);
uint32_t L_26 = L_25->get_length_0();
NullCheck(L_24);
int32_t L_27 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_26, (int32_t)1));
uint32_t L_28 = (L_24)->GetAt(static_cast<il2cpp_array_size_t>(L_27));
V_3 = L_28;
V_4 = 0;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_29 = ___bi10;
NullCheck(L_29);
uint32_t L_30 = L_29->get_length_0();
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_31 = ___bi21;
NullCheck(L_31);
uint32_t L_32 = L_31->get_length_0();
V_5 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_30, (int32_t)L_32));
goto IL_008d;
}
IL_0083:
{
int32_t L_33 = V_4;
V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_33, (int32_t)1));
uint32_t L_34 = V_2;
V_2 = ((int32_t)((uint32_t)L_34>>1));
}
IL_008d:
{
uint32_t L_35 = V_2;
if (!L_35)
{
goto IL_0095;
}
}
{
uint32_t L_36 = V_3;
uint32_t L_37 = V_2;
if (!((int32_t)((int32_t)L_36&(int32_t)L_37)))
{
goto IL_0083;
}
}
IL_0095:
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_38 = ___bi10;
NullCheck(L_38);
uint32_t L_39 = L_38->get_length_0();
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_40 = ___bi21;
NullCheck(L_40);
uint32_t L_41 = L_40->get_length_0();
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_42 = (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)il2cpp_codegen_object_new(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
BigInteger__ctor_mF6EF77E576DB644975AE00AED27D25A7AC3AEE2E(L_42, 1, ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_39, (int32_t)L_41)), (int32_t)1)), /*hidden argument*/NULL);
V_6 = L_42;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_43 = ___bi10;
int32_t L_44 = V_4;
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_45 = BigInteger_op_LeftShift_m728D921C2E6E603DF2590718EF51B6BA8B4F463A(L_43, L_44, /*hidden argument*/NULL);
V_7 = L_45;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_46 = V_7;
NullCheck(L_46);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_47 = L_46->get_data_1();
V_8 = L_47;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_48 = ___bi21;
int32_t L_49 = V_4;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_50 = BigInteger_op_LeftShift_m728D921C2E6E603DF2590718EF51B6BA8B4F463A(L_48, L_49, /*hidden argument*/NULL);
___bi21 = L_50;
uint32_t L_51 = V_0;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_52 = ___bi21;
NullCheck(L_52);
uint32_t L_53 = L_52->get_length_0();
V_9 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_51, (int32_t)L_53));
uint32_t L_54 = V_0;
V_10 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_54, (int32_t)1));
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_55 = ___bi21;
NullCheck(L_55);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_56 = L_55->get_data_1();
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_57 = ___bi21;
NullCheck(L_57);
uint32_t L_58 = L_57->get_length_0();
NullCheck(L_56);
int32_t L_59 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_58, (int32_t)1));
uint32_t L_60 = (L_56)->GetAt(static_cast<il2cpp_array_size_t>(L_59));
V_11 = L_60;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_61 = ___bi21;
NullCheck(L_61);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_62 = L_61->get_data_1();
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_63 = ___bi21;
NullCheck(L_63);
uint32_t L_64 = L_63->get_length_0();
NullCheck(L_62);
int32_t L_65 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_64, (int32_t)2));
uint32_t L_66 = (L_62)->GetAt(static_cast<il2cpp_array_size_t>(L_65));
V_12 = (((int64_t)((uint64_t)L_66)));
goto IL_0233;
}
IL_0100:
{
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_67 = V_8;
int32_t L_68 = V_10;
NullCheck(L_67);
int32_t L_69 = L_68;
uint32_t L_70 = (L_67)->GetAt(static_cast<il2cpp_array_size_t>(L_69));
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_71 = V_8;
int32_t L_72 = V_10;
NullCheck(L_71);
int32_t L_73 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_72, (int32_t)1));
uint32_t L_74 = (L_71)->GetAt(static_cast<il2cpp_array_size_t>(L_73));
int64_t L_75 = ((int64_t)il2cpp_codegen_add((int64_t)((int64_t)((int64_t)(((int64_t)((uint64_t)L_70)))<<(int32_t)((int32_t)32))), (int64_t)(((int64_t)((uint64_t)L_74)))));
uint32_t L_76 = V_11;
V_14 = ((int64_t)((uint64_t)(int64_t)L_75/(uint64_t)(int64_t)(((int64_t)((uint64_t)L_76)))));
uint32_t L_77 = V_11;
V_15 = ((int64_t)((uint64_t)(int64_t)L_75%(uint64_t)(int64_t)(((int64_t)((uint64_t)L_77)))));
}
IL_011f:
{
uint64_t L_78 = V_14;
if ((((int64_t)L_78) == ((int64_t)((int64_t)4294967296LL))))
{
goto IL_0141;
}
}
{
uint64_t L_79 = V_14;
uint64_t L_80 = V_12;
uint64_t L_81 = V_15;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_82 = V_8;
int32_t L_83 = V_10;
NullCheck(L_82);
int32_t L_84 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_83, (int32_t)2));
uint32_t L_85 = (L_82)->GetAt(static_cast<il2cpp_array_size_t>(L_84));
if ((!(((uint64_t)((int64_t)il2cpp_codegen_multiply((int64_t)L_79, (int64_t)L_80))) > ((uint64_t)((int64_t)il2cpp_codegen_add((int64_t)((int64_t)((int64_t)L_81<<(int32_t)((int32_t)32))), (int64_t)(((int64_t)((uint64_t)L_85)))))))))
{
goto IL_015d;
}
}
IL_0141:
{
uint64_t L_86 = V_14;
V_14 = ((int64_t)il2cpp_codegen_subtract((int64_t)L_86, (int64_t)(((int64_t)((int64_t)1)))));
uint64_t L_87 = V_15;
uint32_t L_88 = V_11;
V_15 = ((int64_t)il2cpp_codegen_add((int64_t)L_87, (int64_t)(((int64_t)((uint64_t)L_88)))));
uint64_t L_89 = V_15;
if ((!(((uint64_t)L_89) >= ((uint64_t)((int64_t)4294967296LL)))))
{
goto IL_011f;
}
}
IL_015d:
{
V_17 = 0;
int32_t L_90 = V_10;
int32_t L_91 = V_1;
V_18 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_90, (int32_t)L_91)), (int32_t)1));
V_19 = (((int64_t)((int64_t)0)));
uint64_t L_92 = V_14;
V_20 = (((int32_t)((uint32_t)L_92)));
}
IL_0171:
{
uint64_t L_93 = V_19;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_94 = ___bi21;
NullCheck(L_94);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_95 = L_94->get_data_1();
uint32_t L_96 = V_17;
NullCheck(L_95);
uint32_t L_97 = L_96;
uint32_t L_98 = (L_95)->GetAt(static_cast<il2cpp_array_size_t>(L_97));
uint32_t L_99 = V_20;
V_19 = ((int64_t)il2cpp_codegen_add((int64_t)L_93, (int64_t)((int64_t)il2cpp_codegen_multiply((int64_t)(((int64_t)((uint64_t)L_98))), (int64_t)(((int64_t)((uint64_t)L_99)))))));
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_100 = V_8;
int32_t L_101 = V_18;
NullCheck(L_100);
int32_t L_102 = L_101;
uint32_t L_103 = (L_100)->GetAt(static_cast<il2cpp_array_size_t>(L_102));
V_16 = L_103;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_104 = V_8;
int32_t L_105 = V_18;
NullCheck(L_104);
uint32_t* L_106 = ((L_104)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_105)));
int32_t L_107 = *((uint32_t*)L_106);
uint64_t L_108 = V_19;
*((int32_t*)L_106) = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_107, (int32_t)(((int32_t)((uint32_t)L_108)))));
uint64_t L_109 = V_19;
V_19 = ((int64_t)((uint64_t)L_109>>((int32_t)32)));
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_110 = V_8;
int32_t L_111 = V_18;
NullCheck(L_110);
int32_t L_112 = L_111;
uint32_t L_113 = (L_110)->GetAt(static_cast<il2cpp_array_size_t>(L_112));
uint32_t L_114 = V_16;
if ((!(((uint32_t)L_113) > ((uint32_t)L_114))))
{
goto IL_01b2;
}
}
{
uint64_t L_115 = V_19;
V_19 = ((int64_t)il2cpp_codegen_add((int64_t)L_115, (int64_t)(((int64_t)((int64_t)1)))));
}
IL_01b2:
{
uint32_t L_116 = V_17;
V_17 = ((int32_t)il2cpp_codegen_add((int32_t)L_116, (int32_t)1));
int32_t L_117 = V_18;
V_18 = ((int32_t)il2cpp_codegen_add((int32_t)L_117, (int32_t)1));
uint32_t L_118 = V_17;
int32_t L_119 = V_1;
if ((((int64_t)(((int64_t)((uint64_t)L_118)))) < ((int64_t)(((int64_t)((int64_t)L_119))))))
{
goto IL_0171;
}
}
{
int32_t L_120 = V_10;
int32_t L_121 = V_1;
V_18 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_120, (int32_t)L_121)), (int32_t)1));
V_17 = 0;
uint64_t L_122 = V_19;
if (!L_122)
{
goto IL_0216;
}
}
{
uint32_t L_123 = V_20;
V_20 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_123, (int32_t)1));
V_21 = (((int64_t)((int64_t)0)));
}
IL_01de:
{
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_124 = V_8;
int32_t L_125 = V_18;
NullCheck(L_124);
int32_t L_126 = L_125;
uint32_t L_127 = (L_124)->GetAt(static_cast<il2cpp_array_size_t>(L_126));
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_128 = ___bi21;
NullCheck(L_128);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_129 = L_128->get_data_1();
uint32_t L_130 = V_17;
NullCheck(L_129);
uint32_t L_131 = L_130;
uint32_t L_132 = (L_129)->GetAt(static_cast<il2cpp_array_size_t>(L_131));
uint64_t L_133 = V_21;
V_21 = ((int64_t)il2cpp_codegen_add((int64_t)((int64_t)il2cpp_codegen_add((int64_t)(((int64_t)((uint64_t)L_127))), (int64_t)(((int64_t)((uint64_t)L_132))))), (int64_t)L_133));
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_134 = V_8;
int32_t L_135 = V_18;
uint64_t L_136 = V_21;
NullCheck(L_134);
(L_134)->SetAt(static_cast<il2cpp_array_size_t>(L_135), (uint32_t)(((int32_t)((uint32_t)L_136))));
uint64_t L_137 = V_21;
V_21 = ((int64_t)((uint64_t)L_137>>((int32_t)32)));
uint32_t L_138 = V_17;
V_17 = ((int32_t)il2cpp_codegen_add((int32_t)L_138, (int32_t)1));
int32_t L_139 = V_18;
V_18 = ((int32_t)il2cpp_codegen_add((int32_t)L_139, (int32_t)1));
uint32_t L_140 = V_17;
int32_t L_141 = V_1;
if ((((int64_t)(((int64_t)((uint64_t)L_140)))) < ((int64_t)(((int64_t)((int64_t)L_141))))))
{
goto IL_01de;
}
}
IL_0216:
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_142 = V_6;
NullCheck(L_142);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_143 = L_142->get_data_1();
int32_t L_144 = V_5;
int32_t L_145 = L_144;
V_5 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_145, (int32_t)1));
uint32_t L_146 = V_20;
NullCheck(L_143);
(L_143)->SetAt(static_cast<il2cpp_array_size_t>(L_145), (uint32_t)L_146);
int32_t L_147 = V_10;
V_10 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_147, (int32_t)1));
int32_t L_148 = V_9;
V_9 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_148, (int32_t)1));
}
IL_0233:
{
int32_t L_149 = V_9;
if ((((int32_t)L_149) > ((int32_t)0)))
{
goto IL_0100;
}
}
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_150 = V_6;
NullCheck(L_150);
BigInteger_Normalize_mF0C4E36E69C54DB487EB2A29532BB7EB21585592(L_150, /*hidden argument*/NULL);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_151 = V_7;
NullCheck(L_151);
BigInteger_Normalize_mF0C4E36E69C54DB487EB2A29532BB7EB21585592(L_151, /*hidden argument*/NULL);
BigIntegerU5BU5D_t15EB0DC5DA051C4F0C1BECDCD8D7AB250F0CDF4B* L_152 = (BigIntegerU5BU5D_t15EB0DC5DA051C4F0C1BECDCD8D7AB250F0CDF4B*)(BigIntegerU5BU5D_t15EB0DC5DA051C4F0C1BECDCD8D7AB250F0CDF4B*)SZArrayNew(BigIntegerU5BU5D_t15EB0DC5DA051C4F0C1BECDCD8D7AB250F0CDF4B_il2cpp_TypeInfo_var, (uint32_t)2);
BigIntegerU5BU5D_t15EB0DC5DA051C4F0C1BECDCD8D7AB250F0CDF4B* L_153 = L_152;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_154 = V_6;
NullCheck(L_153);
ArrayElementTypeCheck (L_153, L_154);
(L_153)->SetAt(static_cast<il2cpp_array_size_t>(0), (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)L_154);
BigIntegerU5BU5D_t15EB0DC5DA051C4F0C1BECDCD8D7AB250F0CDF4B* L_155 = L_153;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_156 = V_7;
NullCheck(L_155);
ArrayElementTypeCheck (L_155, L_156);
(L_155)->SetAt(static_cast<il2cpp_array_size_t>(1), (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)L_156);
V_13 = L_155;
int32_t L_157 = V_4;
if (!L_157)
{
goto IL_0271;
}
}
{
BigIntegerU5BU5D_t15EB0DC5DA051C4F0C1BECDCD8D7AB250F0CDF4B* L_158 = V_13;
NullCheck(L_158);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 ** L_159 = ((L_158)->GetAddressAt(static_cast<il2cpp_array_size_t>(1)));
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_160 = *((BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 **)L_159);
int32_t L_161 = V_4;
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_162 = BigInteger_op_RightShift_mD39A8D10E9F70F516D42932712403651A91F4F64(L_160, L_161, /*hidden argument*/NULL);
*((RuntimeObject **)L_159) = (RuntimeObject *)L_162;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_159, (void*)(RuntimeObject *)L_162);
}
IL_0271:
{
BigIntegerU5BU5D_t15EB0DC5DA051C4F0C1BECDCD8D7AB250F0CDF4B* L_163 = V_13;
return L_163;
}
}
// Mono.Math.BigInteger Mono.Math.BigInteger_Kernel::LeftShift(Mono.Math.BigInteger,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * Kernel_LeftShift_mEA93DE79BE9A04B1AD826F95F9C77A28EC87CCA9 (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi0, int32_t ___n1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Kernel_LeftShift_mEA93DE79BE9A04B1AD826F95F9C77A28EC87CCA9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * V_1 = NULL;
uint32_t V_2 = 0;
uint32_t V_3 = 0;
uint32_t V_4 = 0;
uint32_t V_5 = 0;
{
int32_t L_0 = ___n1;
if (L_0)
{
goto IL_0012;
}
}
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_1 = ___bi0;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_2 = ___bi0;
NullCheck(L_2);
uint32_t L_3 = L_2->get_length_0();
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_4 = (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)il2cpp_codegen_object_new(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
BigInteger__ctor_m718EBF73E0A8036284DBF530A63930E286233BC5(L_4, L_1, ((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)), /*hidden argument*/NULL);
return L_4;
}
IL_0012:
{
int32_t L_5 = ___n1;
V_0 = ((int32_t)((int32_t)L_5>>(int32_t)5));
int32_t L_6 = ___n1;
___n1 = ((int32_t)((int32_t)L_6&(int32_t)((int32_t)31)));
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_7 = ___bi0;
NullCheck(L_7);
uint32_t L_8 = L_7->get_length_0();
int32_t L_9 = V_0;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_10 = (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)il2cpp_codegen_object_new(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
BigInteger__ctor_mF6EF77E576DB644975AE00AED27D25A7AC3AEE2E(L_10, 1, ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1)), (int32_t)L_9)), /*hidden argument*/NULL);
V_1 = L_10;
V_2 = 0;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_11 = ___bi0;
NullCheck(L_11);
uint32_t L_12 = L_11->get_length_0();
V_3 = L_12;
int32_t L_13 = ___n1;
if (!L_13)
{
goto IL_009d;
}
}
{
V_5 = 0;
goto IL_006f;
}
IL_003e:
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_14 = ___bi0;
NullCheck(L_14);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_15 = L_14->get_data_1();
uint32_t L_16 = V_2;
NullCheck(L_15);
uint32_t L_17 = L_16;
uint32_t L_18 = (L_15)->GetAt(static_cast<il2cpp_array_size_t>(L_17));
V_4 = L_18;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_19 = V_1;
NullCheck(L_19);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_20 = L_19->get_data_1();
uint32_t L_21 = V_2;
int32_t L_22 = V_0;
if ((int64_t)(((int64_t)il2cpp_codegen_add((int64_t)(((int64_t)((uint64_t)L_21))), (int64_t)(((int64_t)((int64_t)L_22)))))) > INTPTR_MAX) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), NULL, Kernel_LeftShift_mEA93DE79BE9A04B1AD826F95F9C77A28EC87CCA9_RuntimeMethod_var);
uint32_t L_23 = V_4;
int32_t L_24 = ___n1;
uint32_t L_25 = V_5;
NullCheck(L_20);
(L_20)->SetAt(static_cast<il2cpp_array_size_t>((((intptr_t)((int64_t)il2cpp_codegen_add((int64_t)(((int64_t)((uint64_t)L_21))), (int64_t)(((int64_t)((int64_t)L_22)))))))), (uint32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_23<<(int32_t)((int32_t)((int32_t)L_24&(int32_t)((int32_t)31)))))|(int32_t)L_25)));
uint32_t L_26 = V_4;
int32_t L_27 = ___n1;
V_5 = ((int32_t)((uint32_t)L_26>>((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)32), (int32_t)L_27))&(int32_t)((int32_t)31)))));
uint32_t L_28 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_28, (int32_t)1));
}
IL_006f:
{
uint32_t L_29 = V_2;
uint32_t L_30 = V_3;
if ((!(((uint32_t)L_29) >= ((uint32_t)L_30))))
{
goto IL_003e;
}
}
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_31 = V_1;
NullCheck(L_31);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_32 = L_31->get_data_1();
uint32_t L_33 = V_2;
int32_t L_34 = V_0;
if ((int64_t)(((int64_t)il2cpp_codegen_add((int64_t)(((int64_t)((uint64_t)L_33))), (int64_t)(((int64_t)((int64_t)L_34)))))) > INTPTR_MAX) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), NULL, Kernel_LeftShift_mEA93DE79BE9A04B1AD826F95F9C77A28EC87CCA9_RuntimeMethod_var);
uint32_t L_35 = V_5;
NullCheck(L_32);
(L_32)->SetAt(static_cast<il2cpp_array_size_t>((((intptr_t)((int64_t)il2cpp_codegen_add((int64_t)(((int64_t)((uint64_t)L_33))), (int64_t)(((int64_t)((int64_t)L_34)))))))), (uint32_t)L_35);
goto IL_00a1;
}
IL_0084:
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_36 = V_1;
NullCheck(L_36);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_37 = L_36->get_data_1();
uint32_t L_38 = V_2;
int32_t L_39 = V_0;
if ((int64_t)(((int64_t)il2cpp_codegen_add((int64_t)(((int64_t)((uint64_t)L_38))), (int64_t)(((int64_t)((int64_t)L_39)))))) > INTPTR_MAX) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), NULL, Kernel_LeftShift_mEA93DE79BE9A04B1AD826F95F9C77A28EC87CCA9_RuntimeMethod_var);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_40 = ___bi0;
NullCheck(L_40);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_41 = L_40->get_data_1();
uint32_t L_42 = V_2;
NullCheck(L_41);
uint32_t L_43 = L_42;
uint32_t L_44 = (L_41)->GetAt(static_cast<il2cpp_array_size_t>(L_43));
NullCheck(L_37);
(L_37)->SetAt(static_cast<il2cpp_array_size_t>((((intptr_t)((int64_t)il2cpp_codegen_add((int64_t)(((int64_t)((uint64_t)L_38))), (int64_t)(((int64_t)((int64_t)L_39)))))))), (uint32_t)L_44);
uint32_t L_45 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_45, (int32_t)1));
}
IL_009d:
{
uint32_t L_46 = V_2;
uint32_t L_47 = V_3;
if ((!(((uint32_t)L_46) >= ((uint32_t)L_47))))
{
goto IL_0084;
}
}
IL_00a1:
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_48 = V_1;
NullCheck(L_48);
BigInteger_Normalize_mF0C4E36E69C54DB487EB2A29532BB7EB21585592(L_48, /*hidden argument*/NULL);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_49 = V_1;
return L_49;
}
}
// Mono.Math.BigInteger Mono.Math.BigInteger_Kernel::RightShift(Mono.Math.BigInteger,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * Kernel_RightShift_m1F0188E75D20E70731FC46BDB32106EB33A1DB83 (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi0, int32_t ___n1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Kernel_RightShift_m1F0188E75D20E70731FC46BDB32106EB33A1DB83_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * V_1 = NULL;
uint32_t V_2 = 0;
uint32_t V_3 = 0;
uint32_t V_4 = 0;
{
int32_t L_0 = ___n1;
if (L_0)
{
goto IL_000a;
}
}
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_1 = ___bi0;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_2 = (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)il2cpp_codegen_object_new(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
BigInteger__ctor_m77CF9FF025A6A98A625E8E948F19F822210BC29C(L_2, L_1, /*hidden argument*/NULL);
return L_2;
}
IL_000a:
{
int32_t L_3 = ___n1;
V_0 = ((int32_t)((int32_t)L_3>>(int32_t)5));
int32_t L_4 = ___n1;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_5 = ___bi0;
NullCheck(L_5);
uint32_t L_6 = L_5->get_length_0();
int32_t L_7 = V_0;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_8 = (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)il2cpp_codegen_object_new(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
BigInteger__ctor_mF6EF77E576DB644975AE00AED27D25A7AC3AEE2E(L_8, 1, ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)L_7)), (int32_t)1)), /*hidden argument*/NULL);
V_1 = L_8;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_9 = V_1;
NullCheck(L_9);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_10 = L_9->get_data_1();
NullCheck(L_10);
V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_10)->max_length)))), (int32_t)1));
if (!((int32_t)((int32_t)L_4&(int32_t)((int32_t)31))))
{
goto IL_007e;
}
}
{
V_4 = 0;
goto IL_005f;
}
IL_0035:
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_11 = ___bi0;
NullCheck(L_11);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_12 = L_11->get_data_1();
uint32_t L_13 = V_2;
int32_t L_14 = V_0;
if ((int64_t)(((int64_t)il2cpp_codegen_add((int64_t)(((int64_t)((uint64_t)L_13))), (int64_t)(((int64_t)((int64_t)L_14)))))) > INTPTR_MAX) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), NULL, Kernel_RightShift_m1F0188E75D20E70731FC46BDB32106EB33A1DB83_RuntimeMethod_var);
NullCheck(L_12);
intptr_t L_15 = (((intptr_t)((int64_t)il2cpp_codegen_add((int64_t)(((int64_t)((uint64_t)L_13))), (int64_t)(((int64_t)((int64_t)L_14)))))));
uint32_t L_16 = (L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
V_3 = L_16;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_17 = V_1;
NullCheck(L_17);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_18 = L_17->get_data_1();
uint32_t L_19 = V_2;
uint32_t L_20 = V_3;
int32_t L_21 = ___n1;
uint32_t L_22 = V_4;
NullCheck(L_18);
(L_18)->SetAt(static_cast<il2cpp_array_size_t>(L_19), (uint32_t)((int32_t)((int32_t)((int32_t)((uint32_t)L_20>>((int32_t)((int32_t)L_21&(int32_t)((int32_t)31)))))|(int32_t)L_22)));
uint32_t L_23 = V_3;
int32_t L_24 = ___n1;
V_4 = ((int32_t)((int32_t)L_23<<(int32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)32), (int32_t)L_24))&(int32_t)((int32_t)31)))));
}
IL_005f:
{
uint32_t L_25 = V_2;
uint32_t L_26 = L_25;
V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_26, (int32_t)1));
if ((!(((uint32_t)L_26) <= ((uint32_t)0))))
{
goto IL_0035;
}
}
{
goto IL_0086;
}
IL_0069:
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_27 = V_1;
NullCheck(L_27);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_28 = L_27->get_data_1();
uint32_t L_29 = V_2;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_30 = ___bi0;
NullCheck(L_30);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_31 = L_30->get_data_1();
uint32_t L_32 = V_2;
int32_t L_33 = V_0;
if ((int64_t)(((int64_t)il2cpp_codegen_add((int64_t)(((int64_t)((uint64_t)L_32))), (int64_t)(((int64_t)((int64_t)L_33)))))) > INTPTR_MAX) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), NULL, Kernel_RightShift_m1F0188E75D20E70731FC46BDB32106EB33A1DB83_RuntimeMethod_var);
NullCheck(L_31);
intptr_t L_34 = (((intptr_t)((int64_t)il2cpp_codegen_add((int64_t)(((int64_t)((uint64_t)L_32))), (int64_t)(((int64_t)((int64_t)L_33)))))));
uint32_t L_35 = (L_31)->GetAt(static_cast<il2cpp_array_size_t>(L_34));
NullCheck(L_28);
(L_28)->SetAt(static_cast<il2cpp_array_size_t>(L_29), (uint32_t)L_35);
}
IL_007e:
{
uint32_t L_36 = V_2;
uint32_t L_37 = L_36;
V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_37, (int32_t)1));
if ((!(((uint32_t)L_37) <= ((uint32_t)0))))
{
goto IL_0069;
}
}
IL_0086:
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_38 = V_1;
NullCheck(L_38);
BigInteger_Normalize_mF0C4E36E69C54DB487EB2A29532BB7EB21585592(L_38, /*hidden argument*/NULL);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_39 = V_1;
return L_39;
}
}
// System.Void Mono.Math.BigInteger_Kernel::Multiply(System.UInt32[],System.UInt32,System.UInt32,System.UInt32[],System.UInt32,System.UInt32,System.UInt32[],System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Kernel_Multiply_m904FC66FF96CDE798413346196E3836ADE1B8AF4 (UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* ___x0, uint32_t ___xOffset1, uint32_t ___xLen2, UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* ___y3, uint32_t ___yOffset4, uint32_t ___yLen5, UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* ___d6, uint32_t ___dOffset7, const RuntimeMethod* method)
{
uint32_t* V_0 = NULL;
uint32_t* V_1 = NULL;
uint32_t* V_2 = NULL;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* V_3 = NULL;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* V_4 = NULL;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* V_5 = NULL;
uint32_t* V_6 = NULL;
uint32_t* V_7 = NULL;
uint32_t* V_8 = NULL;
uint32_t* V_9 = NULL;
uint32_t* V_10 = NULL;
uint64_t V_11 = 0;
uint32_t* V_12 = NULL;
uint32_t* V_13 = NULL;
{
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_0 = ___x0;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_1 = L_0;
V_3 = L_1;
if (!L_1)
{
goto IL_000a;
}
}
{
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_2 = V_3;
NullCheck(L_2);
if ((((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length)))))
{
goto IL_000f;
}
}
IL_000a:
{
V_0 = (uint32_t*)(((uintptr_t)0));
goto IL_0018;
}
IL_000f:
{
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_3 = V_3;
NullCheck(L_3);
V_0 = (uint32_t*)(((uintptr_t)((L_3)->GetAddressAt(static_cast<il2cpp_array_size_t>(0)))));
}
IL_0018:
{
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_4 = ___y3;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_5 = L_4;
V_4 = L_5;
if (!L_5)
{
goto IL_0024;
}
}
{
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_6 = V_4;
NullCheck(L_6);
if ((((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))))
{
goto IL_0029;
}
}
IL_0024:
{
V_1 = (uint32_t*)(((uintptr_t)0));
goto IL_0033;
}
IL_0029:
{
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_7 = V_4;
NullCheck(L_7);
V_1 = (uint32_t*)(((uintptr_t)((L_7)->GetAddressAt(static_cast<il2cpp_array_size_t>(0)))));
}
IL_0033:
{
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_8 = ___d6;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_9 = L_8;
V_5 = L_9;
if (!L_9)
{
goto IL_0040;
}
}
{
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_10 = V_5;
NullCheck(L_10);
if ((((int32_t)((int32_t)(((RuntimeArray*)L_10)->max_length)))))
{
goto IL_0045;
}
}
IL_0040:
{
V_2 = (uint32_t*)(((uintptr_t)0));
goto IL_004f;
}
IL_0045:
{
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_11 = V_5;
NullCheck(L_11);
V_2 = (uint32_t*)(((uintptr_t)((L_11)->GetAddressAt(static_cast<il2cpp_array_size_t>(0)))));
}
IL_004f:
{
uint32_t* L_12 = V_0;
uint32_t L_13 = ___xOffset1;
V_6 = (uint32_t*)((uint32_t*)il2cpp_codegen_add((intptr_t)L_12, (intptr_t)(((intptr_t)((int64_t)il2cpp_codegen_multiply((int64_t)(((int64_t)((uint64_t)L_13))), (int64_t)(((int64_t)((int64_t)4)))))))));
uint32_t* L_14 = V_6;
uint32_t L_15 = ___xLen2;
V_7 = (uint32_t*)((uint32_t*)il2cpp_codegen_add((intptr_t)L_14, (intptr_t)(((intptr_t)((int64_t)il2cpp_codegen_multiply((int64_t)(((int64_t)((uint64_t)L_15))), (int64_t)(((int64_t)((int64_t)4)))))))));
uint32_t* L_16 = V_1;
uint32_t L_17 = ___yOffset4;
V_8 = (uint32_t*)((uint32_t*)il2cpp_codegen_add((intptr_t)L_16, (intptr_t)(((intptr_t)((int64_t)il2cpp_codegen_multiply((int64_t)(((int64_t)((uint64_t)L_17))), (int64_t)(((int64_t)((int64_t)4)))))))));
uint32_t* L_18 = V_8;
uint32_t L_19 = ___yLen5;
V_9 = (uint32_t*)((uint32_t*)il2cpp_codegen_add((intptr_t)L_18, (intptr_t)(((intptr_t)((int64_t)il2cpp_codegen_multiply((int64_t)(((int64_t)((uint64_t)L_19))), (int64_t)(((int64_t)((int64_t)4)))))))));
uint32_t* L_20 = V_2;
uint32_t L_21 = ___dOffset7;
V_10 = (uint32_t*)((uint32_t*)il2cpp_codegen_add((intptr_t)L_20, (intptr_t)(((intptr_t)((int64_t)il2cpp_codegen_multiply((int64_t)(((int64_t)((uint64_t)L_21))), (int64_t)(((int64_t)((int64_t)4)))))))));
goto IL_00e3;
}
IL_0088:
{
uint32_t* L_22 = V_6;
int32_t L_23 = *((uint32_t*)L_22);
if (!L_23)
{
goto IL_00d7;
}
}
{
V_11 = (((int64_t)((int64_t)0)));
uint32_t* L_24 = V_10;
V_12 = (uint32_t*)L_24;
uint32_t* L_25 = V_8;
V_13 = (uint32_t*)L_25;
goto IL_00c7;
}
IL_009b:
{
uint64_t L_26 = V_11;
uint32_t* L_27 = V_6;
int32_t L_28 = *((uint32_t*)L_27);
uint32_t* L_29 = V_13;
int32_t L_30 = *((uint32_t*)L_29);
uint32_t* L_31 = V_12;
int32_t L_32 = *((uint32_t*)L_31);
V_11 = ((int64_t)il2cpp_codegen_add((int64_t)L_26, (int64_t)((int64_t)il2cpp_codegen_add((int64_t)((int64_t)il2cpp_codegen_multiply((int64_t)(((int64_t)((uint64_t)(((uint32_t)((uint32_t)L_28)))))), (int64_t)(((int64_t)((uint64_t)(((uint32_t)((uint32_t)L_30)))))))), (int64_t)(((int64_t)((uint64_t)(((uint32_t)((uint32_t)L_32))))))))));
uint32_t* L_33 = V_12;
uint64_t L_34 = V_11;
*((int32_t*)L_33) = (int32_t)(((int32_t)((uint32_t)L_34)));
uint64_t L_35 = V_11;
V_11 = ((int64_t)((uint64_t)L_35>>((int32_t)32)));
uint32_t* L_36 = V_13;
V_13 = (uint32_t*)((uint32_t*)il2cpp_codegen_add((intptr_t)L_36, (int32_t)4));
uint32_t* L_37 = V_12;
V_12 = (uint32_t*)((uint32_t*)il2cpp_codegen_add((intptr_t)L_37, (int32_t)4));
}
IL_00c7:
{
uint32_t* L_38 = V_13;
uint32_t* L_39 = V_9;
if ((!(((uintptr_t)L_38) >= ((uintptr_t)L_39))))
{
goto IL_009b;
}
}
{
uint64_t L_40 = V_11;
if (!L_40)
{
goto IL_00d7;
}
}
{
uint32_t* L_41 = V_12;
uint64_t L_42 = V_11;
*((int32_t*)L_41) = (int32_t)(((int32_t)((uint32_t)L_42)));
}
IL_00d7:
{
uint32_t* L_43 = V_6;
V_6 = (uint32_t*)((uint32_t*)il2cpp_codegen_add((intptr_t)L_43, (int32_t)4));
uint32_t* L_44 = V_10;
V_10 = (uint32_t*)((uint32_t*)il2cpp_codegen_add((intptr_t)L_44, (int32_t)4));
}
IL_00e3:
{
uint32_t* L_45 = V_6;
uint32_t* L_46 = V_7;
if ((!(((uintptr_t)L_45) >= ((uintptr_t)L_46))))
{
goto IL_0088;
}
}
{
V_3 = (UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB*)NULL;
V_4 = (UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB*)NULL;
V_5 = (UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB*)NULL;
return;
}
}
// System.Void Mono.Math.BigInteger_Kernel::MultiplyMod2p32pmod(System.UInt32[],System.Int32,System.Int32,System.UInt32[],System.Int32,System.Int32,System.UInt32[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Kernel_MultiplyMod2p32pmod_mAF33D396324D6705B3F436779118B56F2622EB05 (UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* ___x0, int32_t ___xOffset1, int32_t ___xLen2, UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* ___y3, int32_t ___yOffest4, int32_t ___yLen5, UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* ___d6, int32_t ___dOffset7, int32_t ___mod8, const RuntimeMethod* method)
{
uint32_t* V_0 = NULL;
uint32_t* V_1 = NULL;
uint32_t* V_2 = NULL;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* V_3 = NULL;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* V_4 = NULL;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* V_5 = NULL;
uint32_t* V_6 = NULL;
uint32_t* V_7 = NULL;
uint32_t* V_8 = NULL;
uint32_t* V_9 = NULL;
uint32_t* V_10 = NULL;
uint32_t* V_11 = NULL;
uint64_t V_12 = 0;
uint32_t* V_13 = NULL;
uint32_t* V_14 = NULL;
{
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_0 = ___x0;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_1 = L_0;
V_3 = L_1;
if (!L_1)
{
goto IL_000a;
}
}
{
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_2 = V_3;
NullCheck(L_2);
if ((((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length)))))
{
goto IL_000f;
}
}
IL_000a:
{
V_0 = (uint32_t*)(((uintptr_t)0));
goto IL_0018;
}
IL_000f:
{
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_3 = V_3;
NullCheck(L_3);
V_0 = (uint32_t*)(((uintptr_t)((L_3)->GetAddressAt(static_cast<il2cpp_array_size_t>(0)))));
}
IL_0018:
{
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_4 = ___y3;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_5 = L_4;
V_4 = L_5;
if (!L_5)
{
goto IL_0024;
}
}
{
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_6 = V_4;
NullCheck(L_6);
if ((((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))))
{
goto IL_0029;
}
}
IL_0024:
{
V_1 = (uint32_t*)(((uintptr_t)0));
goto IL_0033;
}
IL_0029:
{
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_7 = V_4;
NullCheck(L_7);
V_1 = (uint32_t*)(((uintptr_t)((L_7)->GetAddressAt(static_cast<il2cpp_array_size_t>(0)))));
}
IL_0033:
{
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_8 = ___d6;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_9 = L_8;
V_5 = L_9;
if (!L_9)
{
goto IL_0040;
}
}
{
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_10 = V_5;
NullCheck(L_10);
if ((((int32_t)((int32_t)(((RuntimeArray*)L_10)->max_length)))))
{
goto IL_0045;
}
}
IL_0040:
{
V_2 = (uint32_t*)(((uintptr_t)0));
goto IL_004f;
}
IL_0045:
{
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_11 = V_5;
NullCheck(L_11);
V_2 = (uint32_t*)(((uintptr_t)((L_11)->GetAddressAt(static_cast<il2cpp_array_size_t>(0)))));
}
IL_004f:
{
uint32_t* L_12 = V_0;
int32_t L_13 = ___xOffset1;
V_6 = (uint32_t*)((uint32_t*)il2cpp_codegen_add((intptr_t)L_12, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_13)), (int32_t)4))));
uint32_t* L_14 = V_6;
int32_t L_15 = ___xLen2;
V_7 = (uint32_t*)((uint32_t*)il2cpp_codegen_add((intptr_t)L_14, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_15)), (int32_t)4))));
uint32_t* L_16 = V_1;
int32_t L_17 = ___yOffest4;
V_8 = (uint32_t*)((uint32_t*)il2cpp_codegen_add((intptr_t)L_16, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_17)), (int32_t)4))));
uint32_t* L_18 = V_8;
int32_t L_19 = ___yLen5;
V_9 = (uint32_t*)((uint32_t*)il2cpp_codegen_add((intptr_t)L_18, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_19)), (int32_t)4))));
uint32_t* L_20 = V_2;
int32_t L_21 = ___dOffset7;
V_10 = (uint32_t*)((uint32_t*)il2cpp_codegen_add((intptr_t)L_20, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_21)), (int32_t)4))));
uint32_t* L_22 = V_10;
int32_t L_23 = ___mod8;
V_11 = (uint32_t*)((uint32_t*)il2cpp_codegen_add((intptr_t)L_22, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_23)), (int32_t)4))));
goto IL_00ef;
}
IL_0088:
{
uint32_t* L_24 = V_6;
int32_t L_25 = *((uint32_t*)L_24);
if (!L_25)
{
goto IL_00e3;
}
}
{
V_12 = (((int64_t)((int64_t)0)));
uint32_t* L_26 = V_10;
V_13 = (uint32_t*)L_26;
uint32_t* L_27 = V_8;
V_14 = (uint32_t*)L_27;
goto IL_00c7;
}
IL_009b:
{
uint64_t L_28 = V_12;
uint32_t* L_29 = V_6;
int32_t L_30 = *((uint32_t*)L_29);
uint32_t* L_31 = V_14;
int32_t L_32 = *((uint32_t*)L_31);
uint32_t* L_33 = V_13;
int32_t L_34 = *((uint32_t*)L_33);
V_12 = ((int64_t)il2cpp_codegen_add((int64_t)L_28, (int64_t)((int64_t)il2cpp_codegen_add((int64_t)((int64_t)il2cpp_codegen_multiply((int64_t)(((int64_t)((uint64_t)(((uint32_t)((uint32_t)L_30)))))), (int64_t)(((int64_t)((uint64_t)(((uint32_t)((uint32_t)L_32)))))))), (int64_t)(((int64_t)((uint64_t)(((uint32_t)((uint32_t)L_34))))))))));
uint32_t* L_35 = V_13;
uint64_t L_36 = V_12;
*((int32_t*)L_35) = (int32_t)(((int32_t)((uint32_t)L_36)));
uint64_t L_37 = V_12;
V_12 = ((int64_t)((uint64_t)L_37>>((int32_t)32)));
uint32_t* L_38 = V_14;
V_14 = (uint32_t*)((uint32_t*)il2cpp_codegen_add((intptr_t)L_38, (int32_t)4));
uint32_t* L_39 = V_13;
V_13 = (uint32_t*)((uint32_t*)il2cpp_codegen_add((intptr_t)L_39, (int32_t)4));
}
IL_00c7:
{
uint32_t* L_40 = V_14;
uint32_t* L_41 = V_9;
if ((!(((uintptr_t)L_40) < ((uintptr_t)L_41))))
{
goto IL_00d3;
}
}
{
uint32_t* L_42 = V_13;
uint32_t* L_43 = V_11;
if ((!(((uintptr_t)L_42) >= ((uintptr_t)L_43))))
{
goto IL_009b;
}
}
IL_00d3:
{
uint64_t L_44 = V_12;
if (!L_44)
{
goto IL_00e3;
}
}
{
uint32_t* L_45 = V_13;
uint32_t* L_46 = V_11;
if ((!(((uintptr_t)L_45) < ((uintptr_t)L_46))))
{
goto IL_00e3;
}
}
{
uint32_t* L_47 = V_13;
uint64_t L_48 = V_12;
*((int32_t*)L_47) = (int32_t)(((int32_t)((uint32_t)L_48)));
}
IL_00e3:
{
uint32_t* L_49 = V_6;
V_6 = (uint32_t*)((uint32_t*)il2cpp_codegen_add((intptr_t)L_49, (int32_t)4));
uint32_t* L_50 = V_10;
V_10 = (uint32_t*)((uint32_t*)il2cpp_codegen_add((intptr_t)L_50, (int32_t)4));
}
IL_00ef:
{
uint32_t* L_51 = V_6;
uint32_t* L_52 = V_7;
if ((!(((uintptr_t)L_51) >= ((uintptr_t)L_52))))
{
goto IL_0088;
}
}
{
V_3 = (UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB*)NULL;
V_4 = (UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB*)NULL;
V_5 = (UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB*)NULL;
return;
}
}
// System.UInt32 Mono.Math.BigInteger_Kernel::modInverse(Mono.Math.BigInteger,System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Kernel_modInverse_m3FE8ACCFD28EBC15685ACEE0ED33A048DE9D022D (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi0, uint32_t ___modulus1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Kernel_modInverse_m3FE8ACCFD28EBC15685ACEE0ED33A048DE9D022D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint32_t V_0 = 0;
uint32_t V_1 = 0;
uint32_t V_2 = 0;
uint32_t V_3 = 0;
{
uint32_t L_0 = ___modulus1;
V_0 = L_0;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_1 = ___bi0;
uint32_t L_2 = ___modulus1;
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
uint32_t L_3 = BigInteger_op_Modulus_mEE11685FAA7292E357C36DB794C18EF9E388C876(L_1, L_2, /*hidden argument*/NULL);
V_1 = L_3;
V_2 = 0;
V_3 = 1;
goto IL_0039;
}
IL_0010:
{
uint32_t L_4 = V_1;
if ((!(((uint32_t)L_4) == ((uint32_t)1))))
{
goto IL_0016;
}
}
{
uint32_t L_5 = V_3;
return L_5;
}
IL_0016:
{
uint32_t L_6 = V_2;
uint32_t L_7 = V_0;
uint32_t L_8 = V_1;
uint32_t L_9 = V_3;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)((uint32_t)(int32_t)L_7/(uint32_t)(int32_t)L_8)), (int32_t)L_9))));
uint32_t L_10 = V_0;
uint32_t L_11 = V_1;
V_0 = ((int32_t)((uint32_t)(int32_t)L_10%(uint32_t)(int32_t)L_11));
uint32_t L_12 = V_0;
if (!L_12)
{
goto IL_003c;
}
}
{
uint32_t L_13 = V_0;
if ((!(((uint32_t)L_13) == ((uint32_t)1))))
{
goto IL_002d;
}
}
{
uint32_t L_14 = ___modulus1;
uint32_t L_15 = V_2;
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_14, (int32_t)L_15));
}
IL_002d:
{
uint32_t L_16 = V_3;
uint32_t L_17 = V_1;
uint32_t L_18 = V_0;
uint32_t L_19 = V_2;
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)((uint32_t)(int32_t)L_17/(uint32_t)(int32_t)L_18)), (int32_t)L_19))));
uint32_t L_20 = V_1;
uint32_t L_21 = V_0;
V_1 = ((int32_t)((uint32_t)(int32_t)L_20%(uint32_t)(int32_t)L_21));
}
IL_0039:
{
uint32_t L_22 = V_1;
if (L_22)
{
goto IL_0010;
}
}
IL_003c:
{
return 0;
}
}
// Mono.Math.BigInteger Mono.Math.BigInteger_Kernel::modInverse(Mono.Math.BigInteger,Mono.Math.BigInteger)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * Kernel_modInverse_mEB896FA57CB36CE9FF75EBB4E11EA71AE23E3EC4 (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi0, BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___modulus1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Kernel_modInverse_mEB896FA57CB36CE9FF75EBB4E11EA71AE23E3EC4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
BigIntegerU5BU5D_t15EB0DC5DA051C4F0C1BECDCD8D7AB250F0CDF4B* V_0 = NULL;
BigIntegerU5BU5D_t15EB0DC5DA051C4F0C1BECDCD8D7AB250F0CDF4B* V_1 = NULL;
BigIntegerU5BU5D_t15EB0DC5DA051C4F0C1BECDCD8D7AB250F0CDF4B* V_2 = NULL;
int32_t V_3 = 0;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * V_4 = NULL;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * V_5 = NULL;
ModulusRing_t308788615884D122EEEE30912EFFB7C15144C6E8 * V_6 = NULL;
BigIntegerU5BU5D_t15EB0DC5DA051C4F0C1BECDCD8D7AB250F0CDF4B* V_7 = NULL;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * V_8 = NULL;
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_0 = ___modulus1;
NullCheck(L_0);
uint32_t L_1 = L_0->get_length_0();
if ((!(((uint32_t)L_1) == ((uint32_t)1))))
{
goto IL_001d;
}
}
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_2 = ___bi0;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_3 = ___modulus1;
NullCheck(L_3);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_4 = L_3->get_data_1();
NullCheck(L_4);
int32_t L_5 = 0;
uint32_t L_6 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
uint32_t L_7 = Kernel_modInverse_m3FE8ACCFD28EBC15685ACEE0ED33A048DE9D022D(L_2, L_6, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_8 = BigInteger_op_Implicit_m47A1626222EC6D506611B5776F1506E5ED6F529F(L_7, /*hidden argument*/NULL);
return L_8;
}
IL_001d:
{
BigIntegerU5BU5D_t15EB0DC5DA051C4F0C1BECDCD8D7AB250F0CDF4B* L_9 = (BigIntegerU5BU5D_t15EB0DC5DA051C4F0C1BECDCD8D7AB250F0CDF4B*)(BigIntegerU5BU5D_t15EB0DC5DA051C4F0C1BECDCD8D7AB250F0CDF4B*)SZArrayNew(BigIntegerU5BU5D_t15EB0DC5DA051C4F0C1BECDCD8D7AB250F0CDF4B_il2cpp_TypeInfo_var, (uint32_t)2);
BigIntegerU5BU5D_t15EB0DC5DA051C4F0C1BECDCD8D7AB250F0CDF4B* L_10 = L_9;
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_11 = BigInteger_op_Implicit_m7057639C0ADB9D04334B3DA64237547E293A50EB(0, /*hidden argument*/NULL);
NullCheck(L_10);
ArrayElementTypeCheck (L_10, L_11);
(L_10)->SetAt(static_cast<il2cpp_array_size_t>(0), (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)L_11);
BigIntegerU5BU5D_t15EB0DC5DA051C4F0C1BECDCD8D7AB250F0CDF4B* L_12 = L_10;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_13 = BigInteger_op_Implicit_m7057639C0ADB9D04334B3DA64237547E293A50EB(1, /*hidden argument*/NULL);
NullCheck(L_12);
ArrayElementTypeCheck (L_12, L_13);
(L_12)->SetAt(static_cast<il2cpp_array_size_t>(1), (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)L_13);
V_0 = L_12;
BigIntegerU5BU5D_t15EB0DC5DA051C4F0C1BECDCD8D7AB250F0CDF4B* L_14 = (BigIntegerU5BU5D_t15EB0DC5DA051C4F0C1BECDCD8D7AB250F0CDF4B*)(BigIntegerU5BU5D_t15EB0DC5DA051C4F0C1BECDCD8D7AB250F0CDF4B*)SZArrayNew(BigIntegerU5BU5D_t15EB0DC5DA051C4F0C1BECDCD8D7AB250F0CDF4B_il2cpp_TypeInfo_var, (uint32_t)2);
V_1 = L_14;
BigIntegerU5BU5D_t15EB0DC5DA051C4F0C1BECDCD8D7AB250F0CDF4B* L_15 = (BigIntegerU5BU5D_t15EB0DC5DA051C4F0C1BECDCD8D7AB250F0CDF4B*)(BigIntegerU5BU5D_t15EB0DC5DA051C4F0C1BECDCD8D7AB250F0CDF4B*)SZArrayNew(BigIntegerU5BU5D_t15EB0DC5DA051C4F0C1BECDCD8D7AB250F0CDF4B_il2cpp_TypeInfo_var, (uint32_t)2);
BigIntegerU5BU5D_t15EB0DC5DA051C4F0C1BECDCD8D7AB250F0CDF4B* L_16 = L_15;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_17 = BigInteger_op_Implicit_m7057639C0ADB9D04334B3DA64237547E293A50EB(0, /*hidden argument*/NULL);
NullCheck(L_16);
ArrayElementTypeCheck (L_16, L_17);
(L_16)->SetAt(static_cast<il2cpp_array_size_t>(0), (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)L_17);
BigIntegerU5BU5D_t15EB0DC5DA051C4F0C1BECDCD8D7AB250F0CDF4B* L_18 = L_16;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_19 = BigInteger_op_Implicit_m7057639C0ADB9D04334B3DA64237547E293A50EB(0, /*hidden argument*/NULL);
NullCheck(L_18);
ArrayElementTypeCheck (L_18, L_19);
(L_18)->SetAt(static_cast<il2cpp_array_size_t>(1), (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)L_19);
V_2 = L_18;
V_3 = 0;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_20 = ___modulus1;
V_4 = L_20;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_21 = ___bi0;
V_5 = L_21;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_22 = ___modulus1;
ModulusRing_t308788615884D122EEEE30912EFFB7C15144C6E8 * L_23 = (ModulusRing_t308788615884D122EEEE30912EFFB7C15144C6E8 *)il2cpp_codegen_object_new(ModulusRing_t308788615884D122EEEE30912EFFB7C15144C6E8_il2cpp_TypeInfo_var);
ModulusRing__ctor_mF09FC4C08A46EB1ECBA2A35B28BDD16D703E1050(L_23, L_22, /*hidden argument*/NULL);
V_6 = L_23;
goto IL_00c1;
}
IL_0068:
{
int32_t L_24 = V_3;
if ((((int32_t)L_24) <= ((int32_t)1)))
{
goto IL_008e;
}
}
{
ModulusRing_t308788615884D122EEEE30912EFFB7C15144C6E8 * L_25 = V_6;
BigIntegerU5BU5D_t15EB0DC5DA051C4F0C1BECDCD8D7AB250F0CDF4B* L_26 = V_0;
NullCheck(L_26);
int32_t L_27 = 0;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_28 = (L_26)->GetAt(static_cast<il2cpp_array_size_t>(L_27));
BigIntegerU5BU5D_t15EB0DC5DA051C4F0C1BECDCD8D7AB250F0CDF4B* L_29 = V_0;
NullCheck(L_29);
int32_t L_30 = 1;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_31 = (L_29)->GetAt(static_cast<il2cpp_array_size_t>(L_30));
BigIntegerU5BU5D_t15EB0DC5DA051C4F0C1BECDCD8D7AB250F0CDF4B* L_32 = V_1;
NullCheck(L_32);
int32_t L_33 = 0;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_34 = (L_32)->GetAt(static_cast<il2cpp_array_size_t>(L_33));
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_35 = BigInteger_op_Multiply_mEA6B6928879EF921641122FA7E597A16A613EDDE(L_31, L_34, /*hidden argument*/NULL);
NullCheck(L_25);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_36 = ModulusRing_Difference_m4994769FFA8FAE06882F901C9DBEFC0A745E5258(L_25, L_28, L_35, /*hidden argument*/NULL);
V_8 = L_36;
BigIntegerU5BU5D_t15EB0DC5DA051C4F0C1BECDCD8D7AB250F0CDF4B* L_37 = V_0;
BigIntegerU5BU5D_t15EB0DC5DA051C4F0C1BECDCD8D7AB250F0CDF4B* L_38 = V_0;
NullCheck(L_38);
int32_t L_39 = 1;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_40 = (L_38)->GetAt(static_cast<il2cpp_array_size_t>(L_39));
NullCheck(L_37);
ArrayElementTypeCheck (L_37, L_40);
(L_37)->SetAt(static_cast<il2cpp_array_size_t>(0), (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)L_40);
BigIntegerU5BU5D_t15EB0DC5DA051C4F0C1BECDCD8D7AB250F0CDF4B* L_41 = V_0;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_42 = V_8;
NullCheck(L_41);
ArrayElementTypeCheck (L_41, L_42);
(L_41)->SetAt(static_cast<il2cpp_array_size_t>(1), (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)L_42);
}
IL_008e:
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_43 = V_4;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_44 = V_5;
BigIntegerU5BU5D_t15EB0DC5DA051C4F0C1BECDCD8D7AB250F0CDF4B* L_45 = Kernel_multiByteDivide_m3AB2BAB666EBB176A004D389DBDAAEBAA3763B54(L_43, L_44, /*hidden argument*/NULL);
V_7 = L_45;
BigIntegerU5BU5D_t15EB0DC5DA051C4F0C1BECDCD8D7AB250F0CDF4B* L_46 = V_1;
BigIntegerU5BU5D_t15EB0DC5DA051C4F0C1BECDCD8D7AB250F0CDF4B* L_47 = V_1;
NullCheck(L_47);
int32_t L_48 = 1;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_49 = (L_47)->GetAt(static_cast<il2cpp_array_size_t>(L_48));
NullCheck(L_46);
ArrayElementTypeCheck (L_46, L_49);
(L_46)->SetAt(static_cast<il2cpp_array_size_t>(0), (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)L_49);
BigIntegerU5BU5D_t15EB0DC5DA051C4F0C1BECDCD8D7AB250F0CDF4B* L_50 = V_1;
BigIntegerU5BU5D_t15EB0DC5DA051C4F0C1BECDCD8D7AB250F0CDF4B* L_51 = V_7;
NullCheck(L_51);
int32_t L_52 = 0;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_53 = (L_51)->GetAt(static_cast<il2cpp_array_size_t>(L_52));
NullCheck(L_50);
ArrayElementTypeCheck (L_50, L_53);
(L_50)->SetAt(static_cast<il2cpp_array_size_t>(1), (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)L_53);
BigIntegerU5BU5D_t15EB0DC5DA051C4F0C1BECDCD8D7AB250F0CDF4B* L_54 = V_2;
BigIntegerU5BU5D_t15EB0DC5DA051C4F0C1BECDCD8D7AB250F0CDF4B* L_55 = V_2;
NullCheck(L_55);
int32_t L_56 = 1;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_57 = (L_55)->GetAt(static_cast<il2cpp_array_size_t>(L_56));
NullCheck(L_54);
ArrayElementTypeCheck (L_54, L_57);
(L_54)->SetAt(static_cast<il2cpp_array_size_t>(0), (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)L_57);
BigIntegerU5BU5D_t15EB0DC5DA051C4F0C1BECDCD8D7AB250F0CDF4B* L_58 = V_2;
BigIntegerU5BU5D_t15EB0DC5DA051C4F0C1BECDCD8D7AB250F0CDF4B* L_59 = V_7;
NullCheck(L_59);
int32_t L_60 = 1;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_61 = (L_59)->GetAt(static_cast<il2cpp_array_size_t>(L_60));
NullCheck(L_58);
ArrayElementTypeCheck (L_58, L_61);
(L_58)->SetAt(static_cast<il2cpp_array_size_t>(1), (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)L_61);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_62 = V_5;
V_4 = L_62;
BigIntegerU5BU5D_t15EB0DC5DA051C4F0C1BECDCD8D7AB250F0CDF4B* L_63 = V_7;
NullCheck(L_63);
int32_t L_64 = 1;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_65 = (L_63)->GetAt(static_cast<il2cpp_array_size_t>(L_64));
V_5 = L_65;
int32_t L_66 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_66, (int32_t)1));
}
IL_00c1:
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_67 = V_5;
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
bool L_68 = BigInteger_op_Inequality_m13AF07D0E4BF09886DCCDCFDE553542F6F4ED1A4(L_67, 0, /*hidden argument*/NULL);
if (L_68)
{
goto IL_0068;
}
}
{
BigIntegerU5BU5D_t15EB0DC5DA051C4F0C1BECDCD8D7AB250F0CDF4B* L_69 = V_2;
NullCheck(L_69);
int32_t L_70 = 0;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_71 = (L_69)->GetAt(static_cast<il2cpp_array_size_t>(L_70));
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
bool L_72 = BigInteger_op_Inequality_m13AF07D0E4BF09886DCCDCFDE553542F6F4ED1A4(L_71, 1, /*hidden argument*/NULL);
if (!L_72)
{
goto IL_00e1;
}
}
{
ArithmeticException_tF9EF5FE94597830EF315C5934258F994B8648269 * L_73 = (ArithmeticException_tF9EF5FE94597830EF315C5934258F994B8648269 *)il2cpp_codegen_object_new(ArithmeticException_tF9EF5FE94597830EF315C5934258F994B8648269_il2cpp_TypeInfo_var);
ArithmeticException__ctor_mAE18F94959F9827DEA553C7C2F3C5568BEC81CCF(L_73, _stringLiteral0F6016A42ADA1E2A1848FB5869B861EBC2F7FA13, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_73, NULL, Kernel_modInverse_mEB896FA57CB36CE9FF75EBB4E11EA71AE23E3EC4_RuntimeMethod_var);
}
IL_00e1:
{
ModulusRing_t308788615884D122EEEE30912EFFB7C15144C6E8 * L_74 = V_6;
BigIntegerU5BU5D_t15EB0DC5DA051C4F0C1BECDCD8D7AB250F0CDF4B* L_75 = V_0;
NullCheck(L_75);
int32_t L_76 = 0;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_77 = (L_75)->GetAt(static_cast<il2cpp_array_size_t>(L_76));
BigIntegerU5BU5D_t15EB0DC5DA051C4F0C1BECDCD8D7AB250F0CDF4B* L_78 = V_0;
NullCheck(L_78);
int32_t L_79 = 1;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_80 = (L_78)->GetAt(static_cast<il2cpp_array_size_t>(L_79));
BigIntegerU5BU5D_t15EB0DC5DA051C4F0C1BECDCD8D7AB250F0CDF4B* L_81 = V_1;
NullCheck(L_81);
int32_t L_82 = 0;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_83 = (L_81)->GetAt(static_cast<il2cpp_array_size_t>(L_82));
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_84 = BigInteger_op_Multiply_mEA6B6928879EF921641122FA7E597A16A613EDDE(L_80, L_83, /*hidden argument*/NULL);
NullCheck(L_74);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_85 = ModulusRing_Difference_m4994769FFA8FAE06882F901C9DBEFC0A745E5258(L_74, L_77, L_84, /*hidden argument*/NULL);
return L_85;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Mono.Math.BigInteger_ModulusRing::.ctor(Mono.Math.BigInteger)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ModulusRing__ctor_mF09FC4C08A46EB1ECBA2A35B28BDD16D703E1050 (ModulusRing_t308788615884D122EEEE30912EFFB7C15144C6E8 * __this, BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___modulus0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ModulusRing__ctor_mF09FC4C08A46EB1ECBA2A35B28BDD16D703E1050_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint32_t V_0 = 0;
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_0 = ___modulus0;
__this->set_mod_0(L_0);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_1 = __this->get_mod_0();
NullCheck(L_1);
uint32_t L_2 = L_1->get_length_0();
V_0 = ((int32_t)((int32_t)L_2<<(int32_t)1));
uint32_t L_3 = V_0;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_4 = (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)il2cpp_codegen_object_new(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
BigInteger__ctor_mF6EF77E576DB644975AE00AED27D25A7AC3AEE2E(L_4, 1, ((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)), /*hidden argument*/NULL);
__this->set_constant_1(L_4);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_5 = __this->get_constant_1();
NullCheck(L_5);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_6 = L_5->get_data_1();
uint32_t L_7 = V_0;
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (uint32_t)1);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_8 = __this->get_constant_1();
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_9 = __this->get_mod_0();
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_10 = BigInteger_op_Division_m8C1BDE4543BD0EFE3864D46646ACFF3F9B535D3B(L_8, L_9, /*hidden argument*/NULL);
__this->set_constant_1(L_10);
return;
}
}
// System.Void Mono.Math.BigInteger_ModulusRing::BarrettReduction(Mono.Math.BigInteger)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ModulusRing_BarrettReduction_m7B02B29BBEA5309C09AE3C2860CDA318810AB3E7 (ModulusRing_t308788615884D122EEEE30912EFFB7C15144C6E8 * __this, BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___x0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ModulusRing_BarrettReduction_m7B02B29BBEA5309C09AE3C2860CDA318810AB3E7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * V_0 = NULL;
uint32_t V_1 = 0;
uint32_t V_2 = 0;
uint32_t V_3 = 0;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * V_4 = NULL;
uint32_t V_5 = 0;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * V_6 = NULL;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * V_7 = NULL;
uint32_t G_B7_0 = 0;
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_0 = __this->get_mod_0();
V_0 = L_0;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_1 = V_0;
NullCheck(L_1);
uint32_t L_2 = L_1->get_length_0();
V_1 = L_2;
uint32_t L_3 = V_1;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1));
uint32_t L_4 = V_1;
V_3 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_5 = ___x0;
NullCheck(L_5);
uint32_t L_6 = L_5->get_length_0();
uint32_t L_7 = V_1;
if ((!(((uint32_t)L_6) < ((uint32_t)L_7))))
{
goto IL_0020;
}
}
{
return;
}
IL_0020:
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_8 = ___x0;
NullCheck(L_8);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_9 = L_8->get_data_1();
NullCheck(L_9);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_10 = ___x0;
NullCheck(L_10);
uint32_t L_11 = L_10->get_length_0();
if ((((int64_t)(((int64_t)((int64_t)(((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length)))))))) >= ((int64_t)(((int64_t)((uint64_t)L_11))))))
{
goto IL_003d;
}
}
{
IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF * L_12 = (IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF *)il2cpp_codegen_object_new(IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF_il2cpp_TypeInfo_var);
IndexOutOfRangeException__ctor_mCCE2EFF47A0ACB4B2636F63140F94FCEA71A9BCA(L_12, _stringLiteral57ECE3274FFAA576B81A69AE0C07BC9B708C818D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, NULL, ModulusRing_BarrettReduction_m7B02B29BBEA5309C09AE3C2860CDA318810AB3E7_RuntimeMethod_var);
}
IL_003d:
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_13 = ___x0;
NullCheck(L_13);
uint32_t L_14 = L_13->get_length_0();
uint32_t L_15 = V_3;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_16 = __this->get_constant_1();
NullCheck(L_16);
uint32_t L_17 = L_16->get_length_0();
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_18 = (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)il2cpp_codegen_object_new(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
BigInteger__ctor_mF6EF77E576DB644975AE00AED27D25A7AC3AEE2E(L_18, 1, ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_14, (int32_t)L_15)), (int32_t)L_17)), /*hidden argument*/NULL);
V_4 = L_18;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_19 = ___x0;
NullCheck(L_19);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_20 = L_19->get_data_1();
uint32_t L_21 = V_3;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_22 = ___x0;
NullCheck(L_22);
uint32_t L_23 = L_22->get_length_0();
uint32_t L_24 = V_3;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_25 = __this->get_constant_1();
NullCheck(L_25);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_26 = L_25->get_data_1();
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_27 = __this->get_constant_1();
NullCheck(L_27);
uint32_t L_28 = L_27->get_length_0();
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_29 = V_4;
NullCheck(L_29);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_30 = L_29->get_data_1();
Kernel_Multiply_m904FC66FF96CDE798413346196E3836ADE1B8AF4(L_20, L_21, ((int32_t)il2cpp_codegen_subtract((int32_t)L_23, (int32_t)L_24)), L_26, 0, L_28, L_30, 0, /*hidden argument*/NULL);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_31 = ___x0;
NullCheck(L_31);
uint32_t L_32 = L_31->get_length_0();
uint32_t L_33 = V_2;
if ((!(((uint32_t)L_32) <= ((uint32_t)L_33))))
{
goto IL_009d;
}
}
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_34 = ___x0;
NullCheck(L_34);
uint32_t L_35 = L_34->get_length_0();
G_B7_0 = L_35;
goto IL_009e;
}
IL_009d:
{
uint32_t L_36 = V_2;
G_B7_0 = L_36;
}
IL_009e:
{
V_5 = G_B7_0;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_37 = ___x0;
uint32_t L_38 = V_5;
NullCheck(L_37);
L_37->set_length_0(L_38);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_39 = ___x0;
NullCheck(L_39);
BigInteger_Normalize_mF0C4E36E69C54DB487EB2A29532BB7EB21585592(L_39, /*hidden argument*/NULL);
uint32_t L_40 = V_2;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_41 = (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)il2cpp_codegen_object_new(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
BigInteger__ctor_mF6EF77E576DB644975AE00AED27D25A7AC3AEE2E(L_41, 1, L_40, /*hidden argument*/NULL);
V_6 = L_41;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_42 = V_4;
NullCheck(L_42);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_43 = L_42->get_data_1();
uint32_t L_44 = V_2;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_45 = V_4;
NullCheck(L_45);
uint32_t L_46 = L_45->get_length_0();
uint32_t L_47 = V_2;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_48 = V_0;
NullCheck(L_48);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_49 = L_48->get_data_1();
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_50 = V_0;
NullCheck(L_50);
uint32_t L_51 = L_50->get_length_0();
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_52 = V_6;
NullCheck(L_52);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_53 = L_52->get_data_1();
uint32_t L_54 = V_2;
Kernel_MultiplyMod2p32pmod_mAF33D396324D6705B3F436779118B56F2622EB05(L_43, L_44, ((int32_t)il2cpp_codegen_subtract((int32_t)L_46, (int32_t)L_47)), L_49, 0, L_51, L_53, 0, L_54, /*hidden argument*/NULL);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_55 = V_6;
NullCheck(L_55);
BigInteger_Normalize_mF0C4E36E69C54DB487EB2A29532BB7EB21585592(L_55, /*hidden argument*/NULL);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_56 = V_6;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_57 = ___x0;
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
bool L_58 = BigInteger_op_LessThanOrEqual_m6F736D56374810C3251542D1CFFB2AB4ADFCCE86(L_56, L_57, /*hidden argument*/NULL);
if (!L_58)
{
goto IL_00fe;
}
}
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_59 = ___x0;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_60 = V_6;
Kernel_MinusEq_m75848E6833E2D01CF229BBA57A1A6D641D5D0380(L_59, L_60, /*hidden argument*/NULL);
goto IL_012d;
}
IL_00fe:
{
uint32_t L_61 = V_2;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_62 = (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)il2cpp_codegen_object_new(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
BigInteger__ctor_mF6EF77E576DB644975AE00AED27D25A7AC3AEE2E(L_62, 1, ((int32_t)il2cpp_codegen_add((int32_t)L_61, (int32_t)1)), /*hidden argument*/NULL);
V_7 = L_62;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_63 = V_7;
NullCheck(L_63);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_64 = L_63->get_data_1();
uint32_t L_65 = V_2;
NullCheck(L_64);
(L_64)->SetAt(static_cast<il2cpp_array_size_t>(L_65), (uint32_t)1);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_66 = V_7;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_67 = V_6;
Kernel_MinusEq_m75848E6833E2D01CF229BBA57A1A6D641D5D0380(L_66, L_67, /*hidden argument*/NULL);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_68 = ___x0;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_69 = V_7;
Kernel_PlusEq_mF8EEDAFBFE9AD10CAD8770DC3A5D09E5147B0A48(L_68, L_69, /*hidden argument*/NULL);
goto IL_012d;
}
IL_0126:
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_70 = ___x0;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_71 = V_0;
Kernel_MinusEq_m75848E6833E2D01CF229BBA57A1A6D641D5D0380(L_70, L_71, /*hidden argument*/NULL);
}
IL_012d:
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_72 = ___x0;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_73 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
bool L_74 = BigInteger_op_GreaterThanOrEqual_mF4B81FC95ED0CBFA91676E43B1FAE027C850FBBF(L_72, L_73, /*hidden argument*/NULL);
if (L_74)
{
goto IL_0126;
}
}
{
return;
}
}
// Mono.Math.BigInteger Mono.Math.BigInteger_ModulusRing::Multiply(Mono.Math.BigInteger,Mono.Math.BigInteger)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ModulusRing_Multiply_m4C45458BB28E03B17069F0A0BB87F1426ABAC272 (ModulusRing_t308788615884D122EEEE30912EFFB7C15144C6E8 * __this, BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___a0, BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___b1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ModulusRing_Multiply_m4C45458BB28E03B17069F0A0BB87F1426ABAC272_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * V_0 = NULL;
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_0 = ___a0;
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
bool L_1 = BigInteger_op_Equality_mAA7DD5259960E4837D8A8AB56DB3C6AEF367C504(L_0, 0, /*hidden argument*/NULL);
if (L_1)
{
goto IL_0012;
}
}
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_2 = ___b1;
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
bool L_3 = BigInteger_op_Equality_mAA7DD5259960E4837D8A8AB56DB3C6AEF367C504(L_2, 0, /*hidden argument*/NULL);
if (!L_3)
{
goto IL_0019;
}
}
IL_0012:
{
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_4 = BigInteger_op_Implicit_m7057639C0ADB9D04334B3DA64237547E293A50EB(0, /*hidden argument*/NULL);
return L_4;
}
IL_0019:
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_5 = ___a0;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_6 = __this->get_mod_0();
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
bool L_7 = BigInteger_op_GreaterThan_m4CC14F86717F122D7489EFF24C991F5BEE92A00F(L_5, L_6, /*hidden argument*/NULL);
if (!L_7)
{
goto IL_0035;
}
}
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_8 = ___a0;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_9 = __this->get_mod_0();
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_10 = BigInteger_op_Modulus_mAFBC82D374D9E2866AA4958732FA53F7445B122F(L_8, L_9, /*hidden argument*/NULL);
___a0 = L_10;
}
IL_0035:
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_11 = ___b1;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_12 = __this->get_mod_0();
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
bool L_13 = BigInteger_op_GreaterThan_m4CC14F86717F122D7489EFF24C991F5BEE92A00F(L_11, L_12, /*hidden argument*/NULL);
if (!L_13)
{
goto IL_0051;
}
}
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_14 = ___b1;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_15 = __this->get_mod_0();
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_16 = BigInteger_op_Modulus_mAFBC82D374D9E2866AA4958732FA53F7445B122F(L_14, L_15, /*hidden argument*/NULL);
___b1 = L_16;
}
IL_0051:
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_17 = ___a0;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_18 = ___b1;
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_19 = BigInteger_op_Multiply_mEA6B6928879EF921641122FA7E597A16A613EDDE(L_17, L_18, /*hidden argument*/NULL);
V_0 = L_19;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_20 = V_0;
ModulusRing_BarrettReduction_m7B02B29BBEA5309C09AE3C2860CDA318810AB3E7(__this, L_20, /*hidden argument*/NULL);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_21 = V_0;
return L_21;
}
}
// Mono.Math.BigInteger Mono.Math.BigInteger_ModulusRing::Difference(Mono.Math.BigInteger,Mono.Math.BigInteger)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ModulusRing_Difference_m4994769FFA8FAE06882F901C9DBEFC0A745E5258 (ModulusRing_t308788615884D122EEEE30912EFFB7C15144C6E8 * __this, BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___a0, BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___b1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ModulusRing_Difference_m4994769FFA8FAE06882F901C9DBEFC0A745E5258_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * V_1 = NULL;
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_0 = ___a0;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_1 = ___b1;
int32_t L_2 = Kernel_Compare_m07031942FB73AA6F48F11CBB4FDAEBF6767C84EE(L_0, L_1, /*hidden argument*/NULL);
V_0 = L_2;
int32_t L_3 = V_0;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_3, (int32_t)(-1))))
{
case 0:
{
goto IL_002f;
}
case 1:
{
goto IL_001e;
}
case 2:
{
goto IL_0025;
}
}
}
{
goto IL_0039;
}
IL_001e:
{
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_4 = BigInteger_op_Implicit_m7057639C0ADB9D04334B3DA64237547E293A50EB(0, /*hidden argument*/NULL);
return L_4;
}
IL_0025:
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_5 = ___a0;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_6 = ___b1;
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_7 = BigInteger_op_Subtraction_mC72451C0DAE478E11522A2AB99426BEAD4E97792(L_5, L_6, /*hidden argument*/NULL);
V_1 = L_7;
goto IL_003f;
}
IL_002f:
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_8 = ___b1;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_9 = ___a0;
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_10 = BigInteger_op_Subtraction_mC72451C0DAE478E11522A2AB99426BEAD4E97792(L_8, L_9, /*hidden argument*/NULL);
V_1 = L_10;
goto IL_003f;
}
IL_0039:
{
Exception_t * L_11 = (Exception_t *)il2cpp_codegen_object_new(Exception_t_il2cpp_TypeInfo_var);
Exception__ctor_m5FEC89FBFACEEDCEE29CCFD44A85D72FC28EB0D1(L_11, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, NULL, ModulusRing_Difference_m4994769FFA8FAE06882F901C9DBEFC0A745E5258_RuntimeMethod_var);
}
IL_003f:
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_12 = V_1;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_13 = __this->get_mod_0();
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
bool L_14 = BigInteger_op_GreaterThanOrEqual_mF4B81FC95ED0CBFA91676E43B1FAE027C850FBBF(L_12, L_13, /*hidden argument*/NULL);
if (!L_14)
{
goto IL_0078;
}
}
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_15 = V_1;
NullCheck(L_15);
uint32_t L_16 = L_15->get_length_0();
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_17 = __this->get_mod_0();
NullCheck(L_17);
uint32_t L_18 = L_17->get_length_0();
if ((!(((uint32_t)L_16) >= ((uint32_t)((int32_t)((int32_t)L_18<<(int32_t)1))))))
{
goto IL_0071;
}
}
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_19 = V_1;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_20 = __this->get_mod_0();
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_21 = BigInteger_op_Modulus_mAFBC82D374D9E2866AA4958732FA53F7445B122F(L_19, L_20, /*hidden argument*/NULL);
V_1 = L_21;
goto IL_0078;
}
IL_0071:
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_22 = V_1;
ModulusRing_BarrettReduction_m7B02B29BBEA5309C09AE3C2860CDA318810AB3E7(__this, L_22, /*hidden argument*/NULL);
}
IL_0078:
{
int32_t L_23 = V_0;
if ((!(((uint32_t)L_23) == ((uint32_t)(-1)))))
{
goto IL_0089;
}
}
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_24 = __this->get_mod_0();
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_25 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_26 = BigInteger_op_Subtraction_mC72451C0DAE478E11522A2AB99426BEAD4E97792(L_24, L_25, /*hidden argument*/NULL);
V_1 = L_26;
}
IL_0089:
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_27 = V_1;
return L_27;
}
}
// Mono.Math.BigInteger Mono.Math.BigInteger_ModulusRing::Pow(Mono.Math.BigInteger,Mono.Math.BigInteger)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ModulusRing_Pow_m02E0BDA9434462191910C6F7BD6E7A6C77544C06 (ModulusRing_t308788615884D122EEEE30912EFFB7C15144C6E8 * __this, BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___a0, BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___k1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ModulusRing_Pow_m02E0BDA9434462191910C6F7BD6E7A6C77544C06_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * V_0 = NULL;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * V_1 = NULL;
int32_t V_2 = 0;
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_0 = (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)il2cpp_codegen_object_new(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
BigInteger__ctor_mCAC0EAFBC60E0DC2B64BE0DD21099C837FEC0A33(L_0, 1, /*hidden argument*/NULL);
V_0 = L_0;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_1 = ___k1;
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
bool L_2 = BigInteger_op_Equality_mAA7DD5259960E4837D8A8AB56DB3C6AEF367C504(L_1, 0, /*hidden argument*/NULL);
if (!L_2)
{
goto IL_0012;
}
}
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_3 = V_0;
return L_3;
}
IL_0012:
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_4 = ___a0;
V_1 = L_4;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_5 = ___k1;
NullCheck(L_5);
bool L_6 = BigInteger_TestBit_mFF11993F9C65D59A109EA7EC55B8B791A9DDB56B(L_5, 0, /*hidden argument*/NULL);
if (!L_6)
{
goto IL_001f;
}
}
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_7 = ___a0;
V_0 = L_7;
}
IL_001f:
{
V_2 = 1;
goto IL_0042;
}
IL_0023:
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_8 = V_1;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_9 = V_1;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_10 = ModulusRing_Multiply_m4C45458BB28E03B17069F0A0BB87F1426ABAC272(__this, L_8, L_9, /*hidden argument*/NULL);
V_1 = L_10;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_11 = ___k1;
int32_t L_12 = V_2;
NullCheck(L_11);
bool L_13 = BigInteger_TestBit_mFF11993F9C65D59A109EA7EC55B8B791A9DDB56B(L_11, L_12, /*hidden argument*/NULL);
if (!L_13)
{
goto IL_003e;
}
}
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_14 = V_1;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_15 = V_0;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_16 = ModulusRing_Multiply_m4C45458BB28E03B17069F0A0BB87F1426ABAC272(__this, L_14, L_15, /*hidden argument*/NULL);
V_0 = L_16;
}
IL_003e:
{
int32_t L_17 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1));
}
IL_0042:
{
int32_t L_18 = V_2;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_19 = ___k1;
NullCheck(L_19);
int32_t L_20 = BigInteger_BitCount_mFEA208FDC3B126E1517F0E5AAB8D1193856F8C76(L_19, /*hidden argument*/NULL);
if ((((int32_t)L_18) < ((int32_t)L_20)))
{
goto IL_0023;
}
}
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_21 = V_0;
return L_21;
}
}
// Mono.Math.BigInteger Mono.Math.BigInteger_ModulusRing::Pow(System.UInt32,Mono.Math.BigInteger)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ModulusRing_Pow_mA4D173D9DD4C251CE87C56CEA39D04A8719FBE24 (ModulusRing_t308788615884D122EEEE30912EFFB7C15144C6E8 * __this, uint32_t ___b0, BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___exp1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ModulusRing_Pow_mA4D173D9DD4C251CE87C56CEA39D04A8719FBE24_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
uint32_t L_0 = ___b0;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_1 = (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)il2cpp_codegen_object_new(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
BigInteger__ctor_mCAC0EAFBC60E0DC2B64BE0DD21099C837FEC0A33(L_1, L_0, /*hidden argument*/NULL);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_2 = ___exp1;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_3 = ModulusRing_Pow_m02E0BDA9434462191910C6F7BD6E7A6C77544C06(__this, L_1, L_2, /*hidden argument*/NULL);
return L_3;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Math.Prime.ConfidenceFactor Mono.Math.Prime.Generator.PrimeGeneratorBase::get_Confidence()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PrimeGeneratorBase_get_Confidence_mB3EFAA5059BACC2C036F212DB2819E65B1D30464 (PrimeGeneratorBase_tD86126CFDBC57352F37DE0964FFCF652C04D7059 * __this, const RuntimeMethod* method)
{
{
return (int32_t)(2);
}
}
// Mono.Math.Prime.PrimalityTest Mono.Math.Prime.Generator.PrimeGeneratorBase::get_PrimalityTest()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PrimalityTest_t86C33A5FB057EA0D357088A56E22FE56B7FA08D9 * PrimeGeneratorBase_get_PrimalityTest_m0BACD3BCEC2D3F9AA1E81726561BF3D8B4048092 (PrimeGeneratorBase_tD86126CFDBC57352F37DE0964FFCF652C04D7059 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PrimeGeneratorBase_get_PrimalityTest_m0BACD3BCEC2D3F9AA1E81726561BF3D8B4048092_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
PrimalityTest_t86C33A5FB057EA0D357088A56E22FE56B7FA08D9 * L_0 = (PrimalityTest_t86C33A5FB057EA0D357088A56E22FE56B7FA08D9 *)il2cpp_codegen_object_new(PrimalityTest_t86C33A5FB057EA0D357088A56E22FE56B7FA08D9_il2cpp_TypeInfo_var);
PrimalityTest__ctor_m7D2A94DF17C3BB4D352BC4F7CF5E682A4C595CE7(L_0, NULL, (intptr_t)((intptr_t)PrimalityTests_RabinMillerTest_mE869E48DD897411CA22276B55C5E3E4A869307B8_RuntimeMethod_var), /*hidden argument*/NULL);
return L_0;
}
}
// System.Int32 Mono.Math.Prime.Generator.PrimeGeneratorBase::get_TrialDivisionBounds()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PrimeGeneratorBase_get_TrialDivisionBounds_m93D07CEF572D4D3C20794F7B9C798EE12B8F4C82 (PrimeGeneratorBase_tD86126CFDBC57352F37DE0964FFCF652C04D7059 * __this, const RuntimeMethod* method)
{
{
return ((int32_t)4000);
}
}
// System.Void Mono.Math.Prime.Generator.PrimeGeneratorBase::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PrimeGeneratorBase__ctor_m13B11935BE29102AC8EF61ADD1F25F36AAED8028 (PrimeGeneratorBase_tD86126CFDBC57352F37DE0964FFCF652C04D7059 * __this, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Math.BigInteger Mono.Math.Prime.Generator.SequentialSearchPrimeGeneratorBase::GenerateSearchBase(System.Int32,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * SequentialSearchPrimeGeneratorBase_GenerateSearchBase_m2E65C4F49F03838C63E2CF7157F35A857FD85CCC (SequentialSearchPrimeGeneratorBase_t051356406D15C0F3CCF38A685AB52DFC08B83360 * __this, int32_t ___bits0, RuntimeObject * ___context1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SequentialSearchPrimeGeneratorBase_GenerateSearchBase_m2E65C4F49F03838C63E2CF7157F35A857FD85CCC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___bits0;
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_1 = BigInteger_GenerateRandom_mA17F93C5DDA00EDFCBBB66C41120BA1886241F5D(L_0, /*hidden argument*/NULL);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_2 = L_1;
NullCheck(L_2);
BigInteger_SetBit_m9D1FECEB7D6672C82002A3FF59B17939C752CF41(L_2, 0, /*hidden argument*/NULL);
return L_2;
}
}
// Mono.Math.BigInteger Mono.Math.Prime.Generator.SequentialSearchPrimeGeneratorBase::GenerateNewPrime(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * SequentialSearchPrimeGeneratorBase_GenerateNewPrime_mF8C719FF7060839F80F3D1D1119CC35CEE7321C8 (SequentialSearchPrimeGeneratorBase_t051356406D15C0F3CCF38A685AB52DFC08B83360 * __this, int32_t ___bits0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___bits0;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_1 = VirtFuncInvoker2< BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *, int32_t, RuntimeObject * >::Invoke(9 /* Mono.Math.BigInteger Mono.Math.Prime.Generator.SequentialSearchPrimeGeneratorBase::GenerateNewPrime(System.Int32,System.Object) */, __this, L_0, NULL);
return L_1;
}
}
// Mono.Math.BigInteger Mono.Math.Prime.Generator.SequentialSearchPrimeGeneratorBase::GenerateNewPrime(System.Int32,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * SequentialSearchPrimeGeneratorBase_GenerateNewPrime_mC5D023E53C55A3D910AD896B1B888313516420BE (SequentialSearchPrimeGeneratorBase_t051356406D15C0F3CCF38A685AB52DFC08B83360 * __this, int32_t ___bits0, RuntimeObject * ___context1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SequentialSearchPrimeGeneratorBase_GenerateNewPrime_mC5D023E53C55A3D910AD896B1B888313516420BE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * V_0 = NULL;
uint32_t V_1 = 0;
int32_t V_2 = 0;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* V_3 = NULL;
int32_t V_4 = 0;
{
int32_t L_0 = ___bits0;
RuntimeObject * L_1 = ___context1;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_2 = VirtFuncInvoker2< BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *, int32_t, RuntimeObject * >::Invoke(8 /* Mono.Math.BigInteger Mono.Math.Prime.Generator.SequentialSearchPrimeGeneratorBase::GenerateSearchBase(System.Int32,System.Object) */, __this, L_0, L_1);
V_0 = L_2;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_3 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
uint32_t L_4 = BigInteger_op_Modulus_mEE11685FAA7292E357C36DB794C18EF9E388C876(L_3, ((int32_t)-1060120681), /*hidden argument*/NULL);
V_1 = L_4;
int32_t L_5 = VirtFuncInvoker0< int32_t >::Invoke(6 /* System.Int32 Mono.Math.Prime.Generator.PrimeGeneratorBase::get_TrialDivisionBounds() */, __this);
V_2 = L_5;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_6 = ((BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_StaticFields*)il2cpp_codegen_static_fields_for(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var))->get_smallPrimes_2();
V_3 = L_6;
}
IL_0022:
{
uint32_t L_7 = V_1;
if (!((int32_t)((uint32_t)(int32_t)L_7%(uint32_t)(int32_t)3)))
{
goto IL_009d;
}
}
{
uint32_t L_8 = V_1;
if (!((int32_t)((uint32_t)(int32_t)L_8%(uint32_t)(int32_t)5)))
{
goto IL_009d;
}
}
{
uint32_t L_9 = V_1;
if (!((int32_t)((uint32_t)(int32_t)L_9%(uint32_t)(int32_t)7)))
{
goto IL_009d;
}
}
{
uint32_t L_10 = V_1;
if (!((int32_t)((uint32_t)(int32_t)L_10%(uint32_t)(int32_t)((int32_t)11))))
{
goto IL_009d;
}
}
{
uint32_t L_11 = V_1;
if (!((int32_t)((uint32_t)(int32_t)L_11%(uint32_t)(int32_t)((int32_t)13))))
{
goto IL_009d;
}
}
{
uint32_t L_12 = V_1;
if (!((int32_t)((uint32_t)(int32_t)L_12%(uint32_t)(int32_t)((int32_t)17))))
{
goto IL_009d;
}
}
{
uint32_t L_13 = V_1;
if (!((int32_t)((uint32_t)(int32_t)L_13%(uint32_t)(int32_t)((int32_t)19))))
{
goto IL_009d;
}
}
{
uint32_t L_14 = V_1;
if (!((int32_t)((uint32_t)(int32_t)L_14%(uint32_t)(int32_t)((int32_t)23))))
{
goto IL_009d;
}
}
{
uint32_t L_15 = V_1;
if (!((int32_t)((uint32_t)(int32_t)L_15%(uint32_t)(int32_t)((int32_t)29))))
{
goto IL_009d;
}
}
{
V_4 = ((int32_t)10);
goto IL_006d;
}
IL_005b:
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_16 = V_0;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_17 = V_3;
int32_t L_18 = V_4;
NullCheck(L_17);
int32_t L_19 = L_18;
uint32_t L_20 = (L_17)->GetAt(static_cast<il2cpp_array_size_t>(L_19));
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
uint32_t L_21 = BigInteger_op_Modulus_mEE11685FAA7292E357C36DB794C18EF9E388C876(L_16, L_20, /*hidden argument*/NULL);
if (!L_21)
{
goto IL_009d;
}
}
{
int32_t L_22 = V_4;
V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_22, (int32_t)1));
}
IL_006d:
{
int32_t L_23 = V_4;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_24 = V_3;
NullCheck(L_24);
if ((((int32_t)L_23) >= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_24)->max_length)))))))
{
goto IL_007d;
}
}
{
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_25 = V_3;
int32_t L_26 = V_4;
NullCheck(L_25);
int32_t L_27 = L_26;
uint32_t L_28 = (L_25)->GetAt(static_cast<il2cpp_array_size_t>(L_27));
int32_t L_29 = V_2;
if ((((int64_t)(((int64_t)((uint64_t)L_28)))) <= ((int64_t)(((int64_t)((int64_t)L_29))))))
{
goto IL_005b;
}
}
IL_007d:
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_30 = V_0;
RuntimeObject * L_31 = ___context1;
bool L_32 = VirtFuncInvoker2< bool, BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *, RuntimeObject * >::Invoke(10 /* System.Boolean Mono.Math.Prime.Generator.SequentialSearchPrimeGeneratorBase::IsPrimeAcceptable(Mono.Math.BigInteger,System.Object) */, __this, L_30, L_31);
if (!L_32)
{
goto IL_009d;
}
}
{
PrimalityTest_t86C33A5FB057EA0D357088A56E22FE56B7FA08D9 * L_33 = VirtFuncInvoker0< PrimalityTest_t86C33A5FB057EA0D357088A56E22FE56B7FA08D9 * >::Invoke(5 /* Mono.Math.Prime.PrimalityTest Mono.Math.Prime.Generator.PrimeGeneratorBase::get_PrimalityTest() */, __this);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_34 = V_0;
int32_t L_35 = VirtFuncInvoker0< int32_t >::Invoke(4 /* Mono.Math.Prime.ConfidenceFactor Mono.Math.Prime.Generator.PrimeGeneratorBase::get_Confidence() */, __this);
NullCheck(L_33);
bool L_36 = PrimalityTest_Invoke_mFF0B6770EB0400A4842A1D85D58B2D26C0F039F5(L_33, L_34, L_35, /*hidden argument*/NULL);
if (!L_36)
{
goto IL_009d;
}
}
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_37 = V_0;
return L_37;
}
IL_009d:
{
uint32_t L_38 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)2));
uint32_t L_39 = V_1;
if ((!(((uint32_t)L_39) >= ((uint32_t)((int32_t)-1060120681)))))
{
goto IL_00b1;
}
}
{
uint32_t L_40 = V_1;
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_40, (int32_t)((int32_t)-1060120681)));
}
IL_00b1:
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_41 = V_0;
NullCheck(L_41);
BigInteger_Incr2_mB0C767ACE801C97882A9887153C362F93118FCAA(L_41, /*hidden argument*/NULL);
goto IL_0022;
}
}
// System.Boolean Mono.Math.Prime.Generator.SequentialSearchPrimeGeneratorBase::IsPrimeAcceptable(Mono.Math.BigInteger,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SequentialSearchPrimeGeneratorBase_IsPrimeAcceptable_m962A08FE185146B9CC09E0004761B152A9EC2DF7 (SequentialSearchPrimeGeneratorBase_t051356406D15C0F3CCF38A685AB52DFC08B83360 * __this, BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi0, RuntimeObject * ___context1, const RuntimeMethod* method)
{
{
return (bool)1;
}
}
// System.Void Mono.Math.Prime.Generator.SequentialSearchPrimeGeneratorBase::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SequentialSearchPrimeGeneratorBase__ctor_m04D212D2DBC1A2B3DD39C26A8008D56528984A11 (SequentialSearchPrimeGeneratorBase_t051356406D15C0F3CCF38A685AB52DFC08B83360 * __this, const RuntimeMethod* method)
{
{
PrimeGeneratorBase__ctor_m13B11935BE29102AC8EF61ADD1F25F36AAED8028(__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Mono.Math.Prime.PrimalityTest::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PrimalityTest__ctor_m7D2A94DF17C3BB4D352BC4F7CF5E682A4C595CE7 (PrimalityTest_t86C33A5FB057EA0D357088A56E22FE56B7FA08D9 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Boolean Mono.Math.Prime.PrimalityTest::Invoke(Mono.Math.BigInteger,Mono.Math.Prime.ConfidenceFactor)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PrimalityTest_Invoke_mFF0B6770EB0400A4842A1D85D58B2D26C0F039F5 (PrimalityTest_t86C33A5FB057EA0D357088A56E22FE56B7FA08D9 * __this, BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi0, int32_t ___confidence1, const RuntimeMethod* method)
{
bool result = false;
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 2)
{
// open
typedef bool (*FunctionPointerType) (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *, int32_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___bi0, ___confidence1, targetMethod);
}
else
{
// closed
typedef bool (*FunctionPointerType) (void*, BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *, int32_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___bi0, ___confidence1, targetMethod);
}
}
else if (___parameterCount != 2)
{
// open
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< bool, int32_t >::Invoke(targetMethod, ___bi0, ___confidence1);
else
result = GenericVirtFuncInvoker1< bool, int32_t >::Invoke(targetMethod, ___bi0, ___confidence1);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< bool, int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___bi0, ___confidence1);
else
result = VirtFuncInvoker1< bool, int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___bi0, ___confidence1);
}
}
else
{
typedef bool (*FunctionPointerType) (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *, int32_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___bi0, ___confidence1, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef bool (*FunctionPointerType) (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *, int32_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___bi0, ___confidence1, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker2< bool, BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *, int32_t >::Invoke(targetMethod, targetThis, ___bi0, ___confidence1);
else
result = GenericVirtFuncInvoker2< bool, BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *, int32_t >::Invoke(targetMethod, targetThis, ___bi0, ___confidence1);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker2< bool, BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *, int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___bi0, ___confidence1);
else
result = VirtFuncInvoker2< bool, BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *, int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___bi0, ___confidence1);
}
}
else
{
typedef bool (*FunctionPointerType) (void*, BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *, int32_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___bi0, ___confidence1, targetMethod);
}
}
}
return result;
}
// System.IAsyncResult Mono.Math.Prime.PrimalityTest::BeginInvoke(Mono.Math.BigInteger,Mono.Math.Prime.ConfidenceFactor,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* PrimalityTest_BeginInvoke_m92CDF05BD3D7D4CD830DAD891C626440C69A8D45 (PrimalityTest_t86C33A5FB057EA0D357088A56E22FE56B7FA08D9 * __this, BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi0, int32_t ___confidence1, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback2, RuntimeObject * ___object3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PrimalityTest_BeginInvoke_m92CDF05BD3D7D4CD830DAD891C626440C69A8D45_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[3] = {0};
__d_args[0] = ___bi0;
__d_args[1] = Box(ConfidenceFactor_t945E0EE732DB24BE51678FCB2741BBEB440179CE_il2cpp_TypeInfo_var, &___confidence1);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback2, (RuntimeObject*)___object3);
}
// System.Boolean Mono.Math.Prime.PrimalityTest::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PrimalityTest_EndInvoke_m3158FEAF83FCC3FECE30DEECCC093C8849421CAF (PrimalityTest_t86C33A5FB057EA0D357088A56E22FE56B7FA08D9 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(bool*)UnBox ((RuntimeObject*)__result);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Int32 Mono.Math.Prime.PrimalityTests::GetSPPRounds(Mono.Math.BigInteger,Mono.Math.Prime.ConfidenceFactor)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PrimalityTests_GetSPPRounds_mB217B6CB2BB40EEFAE4800E521105B5EE16C6979 (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___bi0, int32_t ___confidence1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PrimalityTests_GetSPPRounds_mB217B6CB2BB40EEFAE4800E521105B5EE16C6979_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_0 = ___bi0;
NullCheck(L_0);
int32_t L_1 = BigInteger_BitCount_mFEA208FDC3B126E1517F0E5AAB8D1193856F8C76(L_0, /*hidden argument*/NULL);
V_0 = L_1;
int32_t L_2 = V_0;
if ((((int32_t)L_2) > ((int32_t)((int32_t)100))))
{
goto IL_0011;
}
}
{
V_1 = ((int32_t)27);
goto IL_008f;
}
IL_0011:
{
int32_t L_3 = V_0;
if ((((int32_t)L_3) > ((int32_t)((int32_t)150))))
{
goto IL_001e;
}
}
{
V_1 = ((int32_t)18);
goto IL_008f;
}
IL_001e:
{
int32_t L_4 = V_0;
if ((((int32_t)L_4) > ((int32_t)((int32_t)200))))
{
goto IL_002b;
}
}
{
V_1 = ((int32_t)15);
goto IL_008f;
}
IL_002b:
{
int32_t L_5 = V_0;
if ((((int32_t)L_5) > ((int32_t)((int32_t)250))))
{
goto IL_0038;
}
}
{
V_1 = ((int32_t)12);
goto IL_008f;
}
IL_0038:
{
int32_t L_6 = V_0;
if ((((int32_t)L_6) > ((int32_t)((int32_t)300))))
{
goto IL_0045;
}
}
{
V_1 = ((int32_t)9);
goto IL_008f;
}
IL_0045:
{
int32_t L_7 = V_0;
if ((((int32_t)L_7) > ((int32_t)((int32_t)350))))
{
goto IL_0051;
}
}
{
V_1 = 8;
goto IL_008f;
}
IL_0051:
{
int32_t L_8 = V_0;
if ((((int32_t)L_8) > ((int32_t)((int32_t)400))))
{
goto IL_005d;
}
}
{
V_1 = 7;
goto IL_008f;
}
IL_005d:
{
int32_t L_9 = V_0;
if ((((int32_t)L_9) > ((int32_t)((int32_t)500))))
{
goto IL_0069;
}
}
{
V_1 = 6;
goto IL_008f;
}
IL_0069:
{
int32_t L_10 = V_0;
if ((((int32_t)L_10) > ((int32_t)((int32_t)600))))
{
goto IL_0075;
}
}
{
V_1 = 5;
goto IL_008f;
}
IL_0075:
{
int32_t L_11 = V_0;
if ((((int32_t)L_11) > ((int32_t)((int32_t)800))))
{
goto IL_0081;
}
}
{
V_1 = 4;
goto IL_008f;
}
IL_0081:
{
int32_t L_12 = V_0;
if ((((int32_t)L_12) > ((int32_t)((int32_t)1250))))
{
goto IL_008d;
}
}
{
V_1 = 3;
goto IL_008f;
}
IL_008d:
{
V_1 = 2;
}
IL_008f:
{
int32_t L_13 = ___confidence1;
switch (L_13)
{
case 0:
{
goto IL_00af;
}
case 1:
{
goto IL_00ba;
}
case 2:
{
goto IL_00c5;
}
case 3:
{
goto IL_00c7;
}
case 4:
{
goto IL_00cb;
}
case 5:
{
goto IL_00cf;
}
}
}
{
goto IL_00da;
}
IL_00af:
{
int32_t L_14 = V_1;
V_1 = ((int32_t)((int32_t)L_14>>(int32_t)2));
int32_t L_15 = V_1;
if (L_15)
{
goto IL_00b8;
}
}
{
return 1;
}
IL_00b8:
{
int32_t L_16 = V_1;
return L_16;
}
IL_00ba:
{
int32_t L_17 = V_1;
V_1 = ((int32_t)((int32_t)L_17>>(int32_t)1));
int32_t L_18 = V_1;
if (L_18)
{
goto IL_00c3;
}
}
{
return 1;
}
IL_00c3:
{
int32_t L_19 = V_1;
return L_19;
}
IL_00c5:
{
int32_t L_20 = V_1;
return L_20;
}
IL_00c7:
{
int32_t L_21 = V_1;
return ((int32_t)((int32_t)L_21<<(int32_t)1));
}
IL_00cb:
{
int32_t L_22 = V_1;
return ((int32_t)((int32_t)L_22<<(int32_t)2));
}
IL_00cf:
{
Exception_t * L_23 = (Exception_t *)il2cpp_codegen_object_new(Exception_t_il2cpp_TypeInfo_var);
Exception__ctor_m89BADFF36C3B170013878726E07729D51AA9FBE0(L_23, _stringLiteral519EBF37CB5A7E254F612B256FC54B5F1F41C586, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_23, NULL, PrimalityTests_GetSPPRounds_mB217B6CB2BB40EEFAE4800E521105B5EE16C6979_RuntimeMethod_var);
}
IL_00da:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_24 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_24, _stringLiteral0165688353CA81071FDEC1551C4AB96A2DB65E88, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_24, NULL, PrimalityTests_GetSPPRounds_mB217B6CB2BB40EEFAE4800E521105B5EE16C6979_RuntimeMethod_var);
}
}
// System.Boolean Mono.Math.Prime.PrimalityTests::RabinMillerTest(Mono.Math.BigInteger,Mono.Math.Prime.ConfidenceFactor)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PrimalityTests_RabinMillerTest_mE869E48DD897411CA22276B55C5E3E4A869307B8 (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___n0, int32_t ___confidence1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PrimalityTests_RabinMillerTest_mE869E48DD897411CA22276B55C5E3E4A869307B8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * V_2 = NULL;
int32_t V_3 = 0;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * V_4 = NULL;
ModulusRing_t308788615884D122EEEE30912EFFB7C15144C6E8 * V_5 = NULL;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * V_6 = NULL;
int32_t V_7 = 0;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * V_8 = NULL;
int32_t V_9 = 0;
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_0 = ___n0;
NullCheck(L_0);
int32_t L_1 = BigInteger_BitCount_mFEA208FDC3B126E1517F0E5AAB8D1193856F8C76(L_0, /*hidden argument*/NULL);
V_0 = L_1;
int32_t L_2 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_3 = BigInteger_op_Implicit_m7057639C0ADB9D04334B3DA64237547E293A50EB(L_2, /*hidden argument*/NULL);
int32_t L_4 = ___confidence1;
int32_t L_5 = PrimalityTests_GetSPPRounds_mB217B6CB2BB40EEFAE4800E521105B5EE16C6979(L_3, L_4, /*hidden argument*/NULL);
V_1 = L_5;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_6 = ___n0;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_7 = BigInteger_op_Implicit_m7057639C0ADB9D04334B3DA64237547E293A50EB(1, /*hidden argument*/NULL);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_8 = BigInteger_op_Subtraction_mC72451C0DAE478E11522A2AB99426BEAD4E97792(L_6, L_7, /*hidden argument*/NULL);
V_2 = L_8;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_9 = V_2;
NullCheck(L_9);
int32_t L_10 = BigInteger_LowestSetBit_m6E7C4246DA0DA86F94B880680121448F676E8435(L_9, /*hidden argument*/NULL);
V_3 = L_10;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_11 = V_2;
int32_t L_12 = V_3;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_13 = BigInteger_op_RightShift_mD39A8D10E9F70F516D42932712403651A91F4F64(L_11, L_12, /*hidden argument*/NULL);
V_4 = L_13;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_14 = ___n0;
ModulusRing_t308788615884D122EEEE30912EFFB7C15144C6E8 * L_15 = (ModulusRing_t308788615884D122EEEE30912EFFB7C15144C6E8 *)il2cpp_codegen_object_new(ModulusRing_t308788615884D122EEEE30912EFFB7C15144C6E8_il2cpp_TypeInfo_var);
ModulusRing__ctor_mF09FC4C08A46EB1ECBA2A35B28BDD16D703E1050(L_15, L_14, /*hidden argument*/NULL);
V_5 = L_15;
V_6 = (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)NULL;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_16 = ___n0;
NullCheck(L_16);
int32_t L_17 = BigInteger_BitCount_mFEA208FDC3B126E1517F0E5AAB8D1193856F8C76(L_16, /*hidden argument*/NULL);
if ((((int32_t)L_17) <= ((int32_t)((int32_t)100))))
{
goto IL_0052;
}
}
{
ModulusRing_t308788615884D122EEEE30912EFFB7C15144C6E8 * L_18 = V_5;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_19 = V_4;
NullCheck(L_18);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_20 = ModulusRing_Pow_mA4D173D9DD4C251CE87C56CEA39D04A8719FBE24(L_18, 2, L_19, /*hidden argument*/NULL);
V_6 = L_20;
}
IL_0052:
{
V_7 = 0;
goto IL_00ed;
}
IL_005a:
{
int32_t L_21 = V_7;
if ((((int32_t)L_21) > ((int32_t)0)))
{
goto IL_0069;
}
}
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_22 = V_6;
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
bool L_23 = BigInteger_op_Equality_mF5B5A983065914F1789BB1552A1AA1B589B59C90(L_22, (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)NULL, /*hidden argument*/NULL);
if (!L_23)
{
goto IL_009a;
}
}
IL_0069:
{
V_8 = (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)NULL;
}
IL_006c:
{
int32_t L_24 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_25 = BigInteger_GenerateRandom_mA17F93C5DDA00EDFCBBB66C41120BA1886241F5D(L_24, /*hidden argument*/NULL);
V_8 = L_25;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_26 = V_8;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_27 = BigInteger_op_Implicit_m7057639C0ADB9D04334B3DA64237547E293A50EB(2, /*hidden argument*/NULL);
bool L_28 = BigInteger_op_LessThanOrEqual_m6F736D56374810C3251542D1CFFB2AB4ADFCCE86(L_26, L_27, /*hidden argument*/NULL);
if (!L_28)
{
goto IL_008d;
}
}
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_29 = V_8;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_30 = V_2;
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
bool L_31 = BigInteger_op_GreaterThanOrEqual_mF4B81FC95ED0CBFA91676E43B1FAE027C850FBBF(L_29, L_30, /*hidden argument*/NULL);
if (L_31)
{
goto IL_006c;
}
}
IL_008d:
{
ModulusRing_t308788615884D122EEEE30912EFFB7C15144C6E8 * L_32 = V_5;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_33 = V_8;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_34 = V_4;
NullCheck(L_32);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_35 = ModulusRing_Pow_m02E0BDA9434462191910C6F7BD6E7A6C77544C06(L_32, L_33, L_34, /*hidden argument*/NULL);
V_6 = L_35;
}
IL_009a:
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_36 = V_6;
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
bool L_37 = BigInteger_op_Equality_mAA7DD5259960E4837D8A8AB56DB3C6AEF367C504(L_36, 1, /*hidden argument*/NULL);
if (L_37)
{
goto IL_00e7;
}
}
{
V_9 = 0;
goto IL_00cc;
}
IL_00a9:
{
ModulusRing_t308788615884D122EEEE30912EFFB7C15144C6E8 * L_38 = V_5;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_39 = V_6;
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_40 = BigInteger_op_Implicit_m7057639C0ADB9D04334B3DA64237547E293A50EB(2, /*hidden argument*/NULL);
NullCheck(L_38);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_41 = ModulusRing_Pow_m02E0BDA9434462191910C6F7BD6E7A6C77544C06(L_38, L_39, L_40, /*hidden argument*/NULL);
V_6 = L_41;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_42 = V_6;
bool L_43 = BigInteger_op_Equality_mAA7DD5259960E4837D8A8AB56DB3C6AEF367C504(L_42, 1, /*hidden argument*/NULL);
if (!L_43)
{
goto IL_00c6;
}
}
{
return (bool)0;
}
IL_00c6:
{
int32_t L_44 = V_9;
V_9 = ((int32_t)il2cpp_codegen_add((int32_t)L_44, (int32_t)1));
}
IL_00cc:
{
int32_t L_45 = V_9;
int32_t L_46 = V_3;
if ((((int32_t)L_45) >= ((int32_t)L_46)))
{
goto IL_00db;
}
}
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_47 = V_6;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_48 = V_2;
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
bool L_49 = BigInteger_op_Inequality_m0C6217422FC853BD5E26CF9E7995AE95E55668C2(L_47, L_48, /*hidden argument*/NULL);
if (L_49)
{
goto IL_00a9;
}
}
IL_00db:
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_50 = V_6;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_51 = V_2;
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
bool L_52 = BigInteger_op_Inequality_m0C6217422FC853BD5E26CF9E7995AE95E55668C2(L_50, L_51, /*hidden argument*/NULL);
if (!L_52)
{
goto IL_00e7;
}
}
{
return (bool)0;
}
IL_00e7:
{
int32_t L_53 = V_7;
V_7 = ((int32_t)il2cpp_codegen_add((int32_t)L_53, (int32_t)1));
}
IL_00ed:
{
int32_t L_54 = V_7;
int32_t L_55 = V_1;
if ((((int32_t)L_54) < ((int32_t)L_55)))
{
goto IL_005a;
}
}
{
return (bool)1;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Mono.Security.ASN1::.ctor(System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ASN1__ctor_m6DD2E5BD0B12A6BFA95E1822A55B2294B8C237BC (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * __this, uint8_t ___tag0, const RuntimeMethod* method)
{
{
uint8_t L_0 = ___tag0;
ASN1__ctor_mAB2593792CB61AD1542F4F9D6FB6E8BB96DE007E(__this, L_0, (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)NULL, /*hidden argument*/NULL);
return;
}
}
// System.Void Mono.Security.ASN1::.ctor(System.Byte,System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ASN1__ctor_mAB2593792CB61AD1542F4F9D6FB6E8BB96DE007E (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * __this, uint8_t ___tag0, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___data1, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
uint8_t L_0 = ___tag0;
__this->set_m_nTag_0(L_0);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = ___data1;
__this->set_m_aValue_1(L_1);
return;
}
}
// System.Void Mono.Security.ASN1::.ctor(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ASN1__ctor_mE005F52336402C3D41EAD9E28A95910B3C0865DA (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___data0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ASN1__ctor_mE005F52336402C3D41EAD9E28A95910B3C0865DA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
int32_t V_3 = 0;
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___data0;
NullCheck(L_0);
int32_t L_1 = 0;
uint8_t L_2 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_1));
__this->set_m_nTag_0(L_2);
V_0 = 0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = ___data0;
NullCheck(L_3);
int32_t L_4 = 1;
uint8_t L_5 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
V_1 = L_5;
int32_t L_6 = V_1;
if ((((int32_t)L_6) <= ((int32_t)((int32_t)128))))
{
goto IL_0045;
}
}
{
int32_t L_7 = V_1;
V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_7, (int32_t)((int32_t)128)));
V_1 = 0;
V_2 = 0;
goto IL_003f;
}
IL_002b:
{
int32_t L_8 = V_1;
V_1 = ((int32_t)il2cpp_codegen_multiply((int32_t)L_8, (int32_t)((int32_t)256)));
int32_t L_9 = V_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_10 = ___data0;
int32_t L_11 = V_2;
NullCheck(L_10);
int32_t L_12 = ((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)2));
uint8_t L_13 = (L_10)->GetAt(static_cast<il2cpp_array_size_t>(L_12));
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)L_13));
int32_t L_14 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1));
}
IL_003f:
{
int32_t L_15 = V_2;
int32_t L_16 = V_0;
if ((((int32_t)L_15) < ((int32_t)L_16)))
{
goto IL_002b;
}
}
{
goto IL_0058;
}
IL_0045:
{
int32_t L_17 = V_1;
if ((!(((uint32_t)L_17) == ((uint32_t)((int32_t)128)))))
{
goto IL_0058;
}
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_18 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_18, _stringLiteral3A5F6FCDC866AB625A631A6C57A6D2BEF6174645, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_18, NULL, ASN1__ctor_mE005F52336402C3D41EAD9E28A95910B3C0865DA_RuntimeMethod_var);
}
IL_0058:
{
int32_t L_19 = V_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_20 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)L_19);
__this->set_m_aValue_1(L_20);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_21 = ___data0;
int32_t L_22 = V_0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_23 = __this->get_m_aValue_1();
int32_t L_24 = V_1;
Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353((RuntimeArray *)(RuntimeArray *)L_21, ((int32_t)il2cpp_codegen_add((int32_t)2, (int32_t)L_22)), (RuntimeArray *)(RuntimeArray *)L_23, 0, L_24, /*hidden argument*/NULL);
uint8_t L_25 = __this->get_m_nTag_0();
if ((!(((uint32_t)((int32_t)((int32_t)L_25&(int32_t)((int32_t)32)))) == ((uint32_t)((int32_t)32)))))
{
goto IL_0092;
}
}
{
int32_t L_26 = V_0;
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)2, (int32_t)L_26));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_27 = ___data0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_28 = ___data0;
NullCheck(L_28);
ASN1_Decode_m94E3A6F94EDACE796521D04E6A832D99592F1149(__this, L_27, (int32_t*)(&V_3), (((int32_t)((int32_t)(((RuntimeArray*)L_28)->max_length)))), /*hidden argument*/NULL);
}
IL_0092:
{
return;
}
}
// System.Int32 Mono.Security.ASN1::get_Count()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ASN1_get_Count_m5A0E71B4C4A2257C0875AE1041AAA953C5B12A19 (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * __this, const RuntimeMethod* method)
{
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_0 = __this->get_elist_2();
if (L_0)
{
goto IL_000a;
}
}
{
return 0;
}
IL_000a:
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_1 = __this->get_elist_2();
NullCheck(L_1);
int32_t L_2 = VirtFuncInvoker0< int32_t >::Invoke(22 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_1);
return L_2;
}
}
// System.Byte Mono.Security.ASN1::get_Tag()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t ASN1_get_Tag_m1346989AC839D85A9E0A211525A6B551974E4862 (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * __this, const RuntimeMethod* method)
{
{
uint8_t L_0 = __this->get_m_nTag_0();
return L_0;
}
}
// System.Int32 Mono.Security.ASN1::get_Length()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ASN1_get_Length_mD0AC74E8F07244961D697B341599BD83D989EF63 (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * __this, const RuntimeMethod* method)
{
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = __this->get_m_aValue_1();
if (!L_0)
{
goto IL_0011;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = __this->get_m_aValue_1();
NullCheck(L_1);
return (((int32_t)((int32_t)(((RuntimeArray*)L_1)->max_length))));
}
IL_0011:
{
return 0;
}
}
// System.Byte[] Mono.Security.ASN1::get_Value()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ASN1_get_Value_m9BD6239E12A6148AF9507C2F58058C6B8147A079 (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ASN1_get_Value_m9BD6239E12A6148AF9507C2F58058C6B8147A079_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = __this->get_m_aValue_1();
if (L_0)
{
goto IL_000f;
}
}
{
VirtFuncInvoker0< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(4 /* System.Byte[] Mono.Security.ASN1::GetBytes() */, __this);
}
IL_000f:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = __this->get_m_aValue_1();
NullCheck((RuntimeArray *)(RuntimeArray *)L_1);
RuntimeObject * L_2 = Array_Clone_mE8C710213E323617A6F46F2B36DCDDD4C7CF5176((RuntimeArray *)(RuntimeArray *)L_1, /*hidden argument*/NULL);
return ((ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)Castclass((RuntimeObject*)L_2, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var));
}
}
// System.Void Mono.Security.ASN1::set_Value(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ASN1_set_Value_m225FF9AC03EA872809C7742070A34A264C58588E (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ASN1_set_Value_m225FF9AC03EA872809C7742070A34A264C58588E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___value0;
if (!L_0)
{
goto IL_0014;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = ___value0;
NullCheck((RuntimeArray *)(RuntimeArray *)L_1);
RuntimeObject * L_2 = Array_Clone_mE8C710213E323617A6F46F2B36DCDDD4C7CF5176((RuntimeArray *)(RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_m_aValue_1(((ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)Castclass((RuntimeObject*)L_2, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var)));
}
IL_0014:
{
return;
}
}
// System.Boolean Mono.Security.ASN1::CompareArray(System.Byte[],System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ASN1_CompareArray_m8061EE9321D1B3F9CB387776552931A8AE9A96FE (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___array10, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___array21, const RuntimeMethod* method)
{
bool V_0 = false;
int32_t V_1 = 0;
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___array10;
NullCheck(L_0);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = ___array21;
NullCheck(L_1);
V_0 = (bool)((((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length))))) == ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_1)->max_length))))))? 1 : 0);
bool L_2 = V_0;
if (!L_2)
{
goto IL_0024;
}
}
{
V_1 = 0;
goto IL_001e;
}
IL_0010:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = ___array10;
int32_t L_4 = V_1;
NullCheck(L_3);
int32_t L_5 = L_4;
uint8_t L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_7 = ___array21;
int32_t L_8 = V_1;
NullCheck(L_7);
int32_t L_9 = L_8;
uint8_t L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
if ((((int32_t)L_6) == ((int32_t)L_10)))
{
goto IL_001a;
}
}
{
return (bool)0;
}
IL_001a:
{
int32_t L_11 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1));
}
IL_001e:
{
int32_t L_12 = V_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_13 = ___array10;
NullCheck(L_13);
if ((((int32_t)L_12) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_13)->max_length)))))))
{
goto IL_0010;
}
}
IL_0024:
{
bool L_14 = V_0;
return L_14;
}
}
// System.Boolean Mono.Security.ASN1::CompareValue(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ASN1_CompareValue_mB18BFB4C3B5CC0086F6733C93472B6ECE85DBC99 (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___value0, const RuntimeMethod* method)
{
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = __this->get_m_aValue_1();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = ___value0;
bool L_2 = ASN1_CompareArray_m8061EE9321D1B3F9CB387776552931A8AE9A96FE(__this, L_0, L_1, /*hidden argument*/NULL);
return L_2;
}
}
// Mono.Security.ASN1 Mono.Security.ASN1::Add(Mono.Security.ASN1)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * ASN1_Add_mF6ED0416BB021A1C333F99E42F8B17AF8B26639B (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * __this, ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * ___asn10, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ASN1_Add_mF6ED0416BB021A1C333F99E42F8B17AF8B26639B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_0 = ___asn10;
if (!L_0)
{
goto IL_0023;
}
}
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_1 = __this->get_elist_2();
if (L_1)
{
goto IL_0016;
}
}
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_2 = (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 *)il2cpp_codegen_object_new(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_il2cpp_TypeInfo_var);
ArrayList__ctor_m481FA7B37620B59B8C0434A764F5705A6ABDEAE6(L_2, /*hidden argument*/NULL);
__this->set_elist_2(L_2);
}
IL_0016:
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_3 = __this->get_elist_2();
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_4 = ___asn10;
NullCheck(L_3);
VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_3, L_4);
}
IL_0023:
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_5 = ___asn10;
return L_5;
}
}
// System.Byte[] Mono.Security.ASN1::GetBytes()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ASN1_GetBytes_m4ABC0EF4CBE8CF6BE65CEC52CDB02BB59E2E9AE4 (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ASN1_GetBytes_m4ABC0EF4CBE8CF6BE65CEC52CDB02BB59E2E9AE4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_0 = NULL;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_1 = NULL;
int32_t V_2 = 0;
int32_t V_3 = 0;
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * V_4 = NULL;
int32_t V_5 = 0;
RuntimeObject* V_6 = NULL;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_7 = NULL;
RuntimeObject* V_8 = NULL;
int32_t V_9 = 0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_10 = NULL;
int32_t V_11 = 0;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
V_0 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)NULL;
int32_t L_0 = ASN1_get_Count_m5A0E71B4C4A2257C0875AE1041AAA953C5B12A19(__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)0)))
{
goto IL_00b8;
}
}
{
V_3 = 0;
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_1 = (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 *)il2cpp_codegen_object_new(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_il2cpp_TypeInfo_var);
ArrayList__ctor_m481FA7B37620B59B8C0434A764F5705A6ABDEAE6(L_1, /*hidden argument*/NULL);
V_4 = L_1;
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_2 = __this->get_elist_2();
NullCheck(L_2);
RuntimeObject* L_3 = VirtFuncInvoker0< RuntimeObject* >::Invoke(37 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_2);
V_6 = L_3;
}
IL_0024:
try
{ // begin try (depth: 1)
{
goto IL_004a;
}
IL_0026:
{
RuntimeObject* L_4 = V_6;
NullCheck(L_4);
RuntimeObject * L_5 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_4);
NullCheck(((ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E *)CastclassClass((RuntimeObject*)L_5, ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E_il2cpp_TypeInfo_var)));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_6 = VirtFuncInvoker0< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(4 /* System.Byte[] Mono.Security.ASN1::GetBytes() */, ((ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E *)CastclassClass((RuntimeObject*)L_5, ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E_il2cpp_TypeInfo_var)));
V_7 = L_6;
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_7 = V_4;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_8 = V_7;
NullCheck(L_7);
VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_7, (RuntimeObject *)(RuntimeObject *)L_8);
int32_t L_9 = V_3;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_10 = V_7;
NullCheck(L_10);
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_10)->max_length))))));
}
IL_004a:
{
RuntimeObject* L_11 = V_6;
NullCheck(L_11);
bool L_12 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_11);
if (L_12)
{
goto IL_0026;
}
}
IL_0053:
{
IL2CPP_LEAVE(0x6A, FINALLY_0055);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0055;
}
FINALLY_0055:
{ // begin finally (depth: 1)
{
RuntimeObject* L_13 = V_6;
V_8 = ((RuntimeObject*)IsInst((RuntimeObject*)L_13, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var));
RuntimeObject* L_14 = V_8;
if (!L_14)
{
goto IL_0069;
}
}
IL_0062:
{
RuntimeObject* L_15 = V_8;
NullCheck(L_15);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_15);
}
IL_0069:
{
IL2CPP_END_FINALLY(85)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(85)
{
IL2CPP_JUMP_TBL(0x6A, IL_006a)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_006a:
{
int32_t L_16 = V_3;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_17 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)L_16);
V_0 = L_17;
V_5 = 0;
V_9 = 0;
goto IL_00a7;
}
IL_0079:
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_18 = V_4;
int32_t L_19 = V_9;
NullCheck(L_18);
RuntimeObject * L_20 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(27 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_18, L_19);
V_10 = ((ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)Castclass((RuntimeObject*)L_20, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_21 = V_10;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_22 = V_0;
int32_t L_23 = V_5;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_24 = V_10;
NullCheck(L_24);
Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353((RuntimeArray *)(RuntimeArray *)L_21, 0, (RuntimeArray *)(RuntimeArray *)L_22, L_23, (((int32_t)((int32_t)(((RuntimeArray*)L_24)->max_length)))), /*hidden argument*/NULL);
int32_t L_25 = V_5;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_26 = V_10;
NullCheck(L_26);
V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_26)->max_length))))));
int32_t L_27 = V_9;
V_9 = ((int32_t)il2cpp_codegen_add((int32_t)L_27, (int32_t)1));
}
IL_00a7:
{
int32_t L_28 = V_9;
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_29 = __this->get_elist_2();
NullCheck(L_29);
int32_t L_30 = VirtFuncInvoker0< int32_t >::Invoke(22 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_29);
if ((((int32_t)L_28) < ((int32_t)L_30)))
{
goto IL_0079;
}
}
{
goto IL_00c7;
}
IL_00b8:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_31 = __this->get_m_aValue_1();
if (!L_31)
{
goto IL_00c7;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_32 = __this->get_m_aValue_1();
V_0 = L_32;
}
IL_00c7:
{
V_2 = 0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_33 = V_0;
if (!L_33)
{
goto IL_01e6;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_34 = V_0;
NullCheck(L_34);
V_11 = (((int32_t)((int32_t)(((RuntimeArray*)L_34)->max_length))));
int32_t L_35 = V_11;
if ((((int32_t)L_35) <= ((int32_t)((int32_t)127))))
{
goto IL_01bd;
}
}
{
int32_t L_36 = V_11;
if ((((int32_t)L_36) > ((int32_t)((int32_t)255))))
{
goto IL_010c;
}
}
{
int32_t L_37 = V_11;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_38 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_add((int32_t)3, (int32_t)L_37)));
V_1 = L_38;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_39 = V_0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_40 = V_1;
int32_t L_41 = V_11;
Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353((RuntimeArray *)(RuntimeArray *)L_39, 0, (RuntimeArray *)(RuntimeArray *)L_40, 3, L_41, /*hidden argument*/NULL);
V_2 = ((int32_t)129);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_42 = V_1;
int32_t L_43 = V_11;
NullCheck(L_42);
(L_42)->SetAt(static_cast<il2cpp_array_size_t>(2), (uint8_t)(((int32_t)((uint8_t)L_43))));
goto IL_01d5;
}
IL_010c:
{
int32_t L_44 = V_11;
if ((((int32_t)L_44) > ((int32_t)((int32_t)65535))))
{
goto IL_0143;
}
}
{
int32_t L_45 = V_11;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_46 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_add((int32_t)4, (int32_t)L_45)));
V_1 = L_46;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_47 = V_0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_48 = V_1;
int32_t L_49 = V_11;
Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353((RuntimeArray *)(RuntimeArray *)L_47, 0, (RuntimeArray *)(RuntimeArray *)L_48, 4, L_49, /*hidden argument*/NULL);
V_2 = ((int32_t)130);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_50 = V_1;
int32_t L_51 = V_11;
NullCheck(L_50);
(L_50)->SetAt(static_cast<il2cpp_array_size_t>(2), (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)L_51>>(int32_t)8))))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_52 = V_1;
int32_t L_53 = V_11;
NullCheck(L_52);
(L_52)->SetAt(static_cast<il2cpp_array_size_t>(3), (uint8_t)(((int32_t)((uint8_t)L_53))));
goto IL_01d5;
}
IL_0143:
{
int32_t L_54 = V_11;
if ((((int32_t)L_54) > ((int32_t)((int32_t)16777215))))
{
goto IL_0180;
}
}
{
int32_t L_55 = V_11;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_56 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_add((int32_t)5, (int32_t)L_55)));
V_1 = L_56;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_57 = V_0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_58 = V_1;
int32_t L_59 = V_11;
Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353((RuntimeArray *)(RuntimeArray *)L_57, 0, (RuntimeArray *)(RuntimeArray *)L_58, 5, L_59, /*hidden argument*/NULL);
V_2 = ((int32_t)131);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_60 = V_1;
int32_t L_61 = V_11;
NullCheck(L_60);
(L_60)->SetAt(static_cast<il2cpp_array_size_t>(2), (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)L_61>>(int32_t)((int32_t)16)))))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_62 = V_1;
int32_t L_63 = V_11;
NullCheck(L_62);
(L_62)->SetAt(static_cast<il2cpp_array_size_t>(3), (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)L_63>>(int32_t)8))))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_64 = V_1;
int32_t L_65 = V_11;
NullCheck(L_64);
(L_64)->SetAt(static_cast<il2cpp_array_size_t>(4), (uint8_t)(((int32_t)((uint8_t)L_65))));
goto IL_01d5;
}
IL_0180:
{
int32_t L_66 = V_11;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_67 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_add((int32_t)6, (int32_t)L_66)));
V_1 = L_67;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_68 = V_0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_69 = V_1;
int32_t L_70 = V_11;
Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353((RuntimeArray *)(RuntimeArray *)L_68, 0, (RuntimeArray *)(RuntimeArray *)L_69, 6, L_70, /*hidden argument*/NULL);
V_2 = ((int32_t)132);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_71 = V_1;
int32_t L_72 = V_11;
NullCheck(L_71);
(L_71)->SetAt(static_cast<il2cpp_array_size_t>(2), (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)L_72>>(int32_t)((int32_t)24)))))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_73 = V_1;
int32_t L_74 = V_11;
NullCheck(L_73);
(L_73)->SetAt(static_cast<il2cpp_array_size_t>(3), (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)L_74>>(int32_t)((int32_t)16)))))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_75 = V_1;
int32_t L_76 = V_11;
NullCheck(L_75);
(L_75)->SetAt(static_cast<il2cpp_array_size_t>(4), (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)L_76>>(int32_t)8))))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_77 = V_1;
int32_t L_78 = V_11;
NullCheck(L_77);
(L_77)->SetAt(static_cast<il2cpp_array_size_t>(5), (uint8_t)(((int32_t)((uint8_t)L_78))));
goto IL_01d5;
}
IL_01bd:
{
int32_t L_79 = V_11;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_80 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_add((int32_t)2, (int32_t)L_79)));
V_1 = L_80;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_81 = V_0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_82 = V_1;
int32_t L_83 = V_11;
Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353((RuntimeArray *)(RuntimeArray *)L_81, 0, (RuntimeArray *)(RuntimeArray *)L_82, 2, L_83, /*hidden argument*/NULL);
int32_t L_84 = V_11;
V_2 = L_84;
}
IL_01d5:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_85 = __this->get_m_aValue_1();
if (L_85)
{
goto IL_01ed;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_86 = V_0;
__this->set_m_aValue_1(L_86);
goto IL_01ed;
}
IL_01e6:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_87 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)2);
V_1 = L_87;
}
IL_01ed:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_88 = V_1;
uint8_t L_89 = __this->get_m_nTag_0();
NullCheck(L_88);
(L_88)->SetAt(static_cast<il2cpp_array_size_t>(0), (uint8_t)L_89);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_90 = V_1;
int32_t L_91 = V_2;
NullCheck(L_90);
(L_90)->SetAt(static_cast<il2cpp_array_size_t>(1), (uint8_t)(((int32_t)((uint8_t)L_91))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_92 = V_1;
return L_92;
}
}
// System.Void Mono.Security.ASN1::Decode(System.Byte[],System.Int32&,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ASN1_Decode_m94E3A6F94EDACE796521D04E6A832D99592F1149 (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___asn10, int32_t* ___anPos1, int32_t ___anLength2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ASN1_Decode_m94E3A6F94EDACE796521D04E6A832D99592F1149_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint8_t V_0 = 0x0;
int32_t V_1 = 0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_2 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * V_3 = NULL;
int32_t V_4 = 0;
{
goto IL_0040;
}
IL_0002:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___asn10;
int32_t* L_1 = ___anPos1;
ASN1_DecodeTLV_m30440B1DE0A8C4236AA9658DEBF2808FD3BC00C3(__this, L_0, (int32_t*)L_1, (uint8_t*)(&V_0), (int32_t*)(&V_1), (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821**)(&V_2), /*hidden argument*/NULL);
uint8_t L_2 = V_0;
if (!L_2)
{
goto IL_0040;
}
}
{
uint8_t L_3 = V_0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = V_2;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_5 = (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E *)il2cpp_codegen_object_new(ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E_il2cpp_TypeInfo_var);
ASN1__ctor_mAB2593792CB61AD1542F4F9D6FB6E8BB96DE007E(L_5, L_3, L_4, /*hidden argument*/NULL);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_6 = ASN1_Add_mF6ED0416BB021A1C333F99E42F8B17AF8B26639B(__this, L_5, /*hidden argument*/NULL);
V_3 = L_6;
uint8_t L_7 = V_0;
if ((!(((uint32_t)((int32_t)((int32_t)L_7&(int32_t)((int32_t)32)))) == ((uint32_t)((int32_t)32)))))
{
goto IL_003a;
}
}
{
int32_t* L_8 = ___anPos1;
int32_t L_9 = *((int32_t*)L_8);
V_4 = L_9;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_10 = V_3;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_11 = ___asn10;
int32_t L_12 = V_4;
int32_t L_13 = V_1;
NullCheck(L_10);
ASN1_Decode_m94E3A6F94EDACE796521D04E6A832D99592F1149(L_10, L_11, (int32_t*)(&V_4), ((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)L_13)), /*hidden argument*/NULL);
}
IL_003a:
{
int32_t* L_14 = ___anPos1;
int32_t* L_15 = ___anPos1;
int32_t L_16 = *((int32_t*)L_15);
int32_t L_17 = V_1;
*((int32_t*)L_14) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)L_17));
}
IL_0040:
{
int32_t* L_18 = ___anPos1;
int32_t L_19 = *((int32_t*)L_18);
int32_t L_20 = ___anLength2;
if ((((int32_t)L_19) < ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_20, (int32_t)1)))))
{
goto IL_0002;
}
}
{
return;
}
}
// System.Void Mono.Security.ASN1::DecodeTLV(System.Byte[],System.Int32&,System.Byte&,System.Int32&,System.Byte[]&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ASN1_DecodeTLV_m30440B1DE0A8C4236AA9658DEBF2808FD3BC00C3 (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___asn10, int32_t* ___pos1, uint8_t* ___tag2, int32_t* ___length3, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** ___content4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ASN1_DecodeTLV_m30440B1DE0A8C4236AA9658DEBF2808FD3BC00C3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
uint8_t* L_0 = ___tag2;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = ___asn10;
int32_t* L_2 = ___pos1;
int32_t* L_3 = ___pos1;
int32_t L_4 = *((int32_t*)L_3);
V_0 = L_4;
int32_t L_5 = V_0;
*((int32_t*)L_2) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1));
int32_t L_6 = V_0;
NullCheck(L_1);
int32_t L_7 = L_6;
uint8_t L_8 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
*((int8_t*)L_0) = (int8_t)L_8;
int32_t* L_9 = ___length3;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_10 = ___asn10;
int32_t* L_11 = ___pos1;
int32_t* L_12 = ___pos1;
int32_t L_13 = *((int32_t*)L_12);
V_0 = L_13;
int32_t L_14 = V_0;
*((int32_t*)L_11) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1));
int32_t L_15 = V_0;
NullCheck(L_10);
int32_t L_16 = L_15;
uint8_t L_17 = (L_10)->GetAt(static_cast<il2cpp_array_size_t>(L_16));
*((int32_t*)L_9) = (int32_t)L_17;
int32_t* L_18 = ___length3;
int32_t L_19 = *((int32_t*)L_18);
if ((!(((uint32_t)((int32_t)((int32_t)L_19&(int32_t)((int32_t)128)))) == ((uint32_t)((int32_t)128)))))
{
goto IL_005a;
}
}
{
int32_t* L_20 = ___length3;
int32_t L_21 = *((int32_t*)L_20);
V_1 = ((int32_t)((int32_t)L_21&(int32_t)((int32_t)127)));
int32_t* L_22 = ___length3;
*((int32_t*)L_22) = (int32_t)0;
V_2 = 0;
goto IL_0056;
}
IL_003a:
{
int32_t* L_23 = ___length3;
int32_t* L_24 = ___length3;
int32_t L_25 = *((int32_t*)L_24);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_26 = ___asn10;
int32_t* L_27 = ___pos1;
int32_t* L_28 = ___pos1;
int32_t L_29 = *((int32_t*)L_28);
V_0 = L_29;
int32_t L_30 = V_0;
*((int32_t*)L_27) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_30, (int32_t)1));
int32_t L_31 = V_0;
NullCheck(L_26);
int32_t L_32 = L_31;
uint8_t L_33 = (L_26)->GetAt(static_cast<il2cpp_array_size_t>(L_32));
*((int32_t*)L_23) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_25, (int32_t)((int32_t)256))), (int32_t)L_33));
int32_t L_34 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_34, (int32_t)1));
}
IL_0056:
{
int32_t L_35 = V_2;
int32_t L_36 = V_1;
if ((((int32_t)L_35) < ((int32_t)L_36)))
{
goto IL_003a;
}
}
IL_005a:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** L_37 = ___content4;
int32_t* L_38 = ___length3;
int32_t L_39 = *((int32_t*)L_38);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_40 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)L_39);
*((RuntimeObject **)L_37) = (RuntimeObject *)L_40;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_37, (void*)(RuntimeObject *)L_40);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_41 = ___asn10;
int32_t* L_42 = ___pos1;
int32_t L_43 = *((int32_t*)L_42);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** L_44 = ___content4;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_45 = *((ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821**)L_44);
int32_t* L_46 = ___length3;
int32_t L_47 = *((int32_t*)L_46);
Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353((RuntimeArray *)(RuntimeArray *)L_41, L_43, (RuntimeArray *)(RuntimeArray *)L_45, 0, L_47, /*hidden argument*/NULL);
return;
}
}
// Mono.Security.ASN1 Mono.Security.ASN1::get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08 (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * V_0 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 3);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
IL_0000:
try
{ // begin try (depth: 1)
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_0 = __this->get_elist_2();
if (!L_0)
{
goto IL_0016;
}
}
IL_0008:
{
int32_t L_1 = ___index0;
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_2 = __this->get_elist_2();
NullCheck(L_2);
int32_t L_3 = VirtFuncInvoker0< int32_t >::Invoke(22 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_2);
if ((((int32_t)L_1) < ((int32_t)L_3)))
{
goto IL_001a;
}
}
IL_0016:
{
V_0 = (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E *)NULL;
goto IL_0033;
}
IL_001a:
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_4 = __this->get_elist_2();
int32_t L_5 = ___index0;
NullCheck(L_4);
RuntimeObject * L_6 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(27 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_4, L_5);
V_0 = ((ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E *)CastclassClass((RuntimeObject*)L_6, ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E_il2cpp_TypeInfo_var));
goto IL_0033;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_002e;
throw e;
}
CATCH_002e:
{ // begin catch(System.ArgumentOutOfRangeException)
V_0 = (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E *)NULL;
goto IL_0033;
} // end catch (depth: 1)
IL_0033:
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_7 = V_0;
return L_7;
}
}
// Mono.Security.ASN1 Mono.Security.ASN1::Element(System.Int32,System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * ASN1_Element_m505373548BEE512211614D9CE56AE728959D188D (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * __this, int32_t ___index0, uint8_t ___anTag1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ASN1_Element_m505373548BEE512211614D9CE56AE728959D188D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * V_0 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * V_1 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 4);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
IL_0000:
try
{ // begin try (depth: 1)
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_0 = __this->get_elist_2();
if (!L_0)
{
goto IL_0016;
}
}
IL_0008:
{
int32_t L_1 = ___index0;
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_2 = __this->get_elist_2();
NullCheck(L_2);
int32_t L_3 = VirtFuncInvoker0< int32_t >::Invoke(22 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_2);
if ((((int32_t)L_1) < ((int32_t)L_3)))
{
goto IL_001a;
}
}
IL_0016:
{
V_1 = (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E *)NULL;
goto IL_0042;
}
IL_001a:
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_4 = __this->get_elist_2();
int32_t L_5 = ___index0;
NullCheck(L_4);
RuntimeObject * L_6 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(27 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_4, L_5);
V_0 = ((ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E *)CastclassClass((RuntimeObject*)L_6, ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E_il2cpp_TypeInfo_var));
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_7 = V_0;
NullCheck(L_7);
uint8_t L_8 = ASN1_get_Tag_m1346989AC839D85A9E0A211525A6B551974E4862_inline(L_7, /*hidden argument*/NULL);
uint8_t L_9 = ___anTag1;
if ((!(((uint32_t)L_8) == ((uint32_t)L_9))))
{
goto IL_0039;
}
}
IL_0035:
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_10 = V_0;
V_1 = L_10;
goto IL_0042;
}
IL_0039:
{
V_1 = (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E *)NULL;
goto IL_0042;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_003d;
throw e;
}
CATCH_003d:
{ // begin catch(System.ArgumentOutOfRangeException)
V_1 = (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E *)NULL;
goto IL_0042;
} // end catch (depth: 1)
IL_0042:
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_11 = V_1;
return L_11;
}
}
// System.String Mono.Security.ASN1::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ASN1_ToString_mF3953615856548F00889AD245391D09FBE782CBA (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ASN1_ToString_mF3953615856548F00889AD245391D09FBE782CBA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
StringBuilder_t * V_0 = NULL;
int32_t V_1 = 0;
{
StringBuilder_t * L_0 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
StringBuilder__ctor_mF928376F82E8C8FF3C11842C562DB8CF28B2735E(L_0, /*hidden argument*/NULL);
V_0 = L_0;
StringBuilder_t * L_1 = V_0;
uint8_t* L_2 = __this->get_address_of_m_nTag_0();
String_t* L_3 = Byte_ToString_m5F54DEEC2138DAC5587E05890F97866DB78E75BA((uint8_t*)L_2, _stringLiteral9F792B61D0EC544D91E7AFF34E2E99EE3CF2B313, /*hidden argument*/NULL);
String_t* L_4 = Environment_get_NewLine_m5D4F4667FA5D1E2DBDD4DF9696D0CE76C83EF318(/*hidden argument*/NULL);
NullCheck(L_1);
StringBuilder_AppendFormat_m9DBA7709F546159ABC85BA341965305AB044D1B7(L_1, _stringLiteral39B60EC0BF180A7A4890DF6BD02AA732F75E8623, L_3, L_4, /*hidden argument*/NULL);
StringBuilder_t * L_5 = V_0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_6 = ASN1_get_Value_m9BD6239E12A6148AF9507C2F58058C6B8147A079(__this, /*hidden argument*/NULL);
NullCheck(L_6);
int32_t L_7 = (((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length))));
RuntimeObject * L_8 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_7);
String_t* L_9 = Environment_get_NewLine_m5D4F4667FA5D1E2DBDD4DF9696D0CE76C83EF318(/*hidden argument*/NULL);
NullCheck(L_5);
StringBuilder_AppendFormat_m9DBA7709F546159ABC85BA341965305AB044D1B7(L_5, _stringLiteral3E865F1099831286A154AA14FDC8362AFA6ED747, L_8, L_9, /*hidden argument*/NULL);
StringBuilder_t * L_10 = V_0;
NullCheck(L_10);
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_10, _stringLiteral2688E219B0D8158D32CE2DAEA691150496F98C52, /*hidden argument*/NULL);
StringBuilder_t * L_11 = V_0;
String_t* L_12 = Environment_get_NewLine_m5D4F4667FA5D1E2DBDD4DF9696D0CE76C83EF318(/*hidden argument*/NULL);
NullCheck(L_11);
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_11, L_12, /*hidden argument*/NULL);
V_1 = 0;
goto IL_00a0;
}
IL_0061:
{
StringBuilder_t * L_13 = V_0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_14 = ASN1_get_Value_m9BD6239E12A6148AF9507C2F58058C6B8147A079(__this, /*hidden argument*/NULL);
int32_t L_15 = V_1;
NullCheck(L_14);
String_t* L_16 = Byte_ToString_m5F54DEEC2138DAC5587E05890F97866DB78E75BA((uint8_t*)((L_14)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_15))), _stringLiteral9F792B61D0EC544D91E7AFF34E2E99EE3CF2B313, /*hidden argument*/NULL);
NullCheck(L_13);
StringBuilder_AppendFormat_mFFABDE5D2413C5657E6411FC60C8C38E1674E09D(L_13, _stringLiteral06AF517C94435AF79F1AA0F48FD67AA3634AA2BE, L_16, /*hidden argument*/NULL);
int32_t L_17 = V_1;
if (((int32_t)((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1))%(int32_t)((int32_t)16))))
{
goto IL_009c;
}
}
{
StringBuilder_t * L_18 = V_0;
String_t* L_19 = Environment_get_NewLine_m5D4F4667FA5D1E2DBDD4DF9696D0CE76C83EF318(/*hidden argument*/NULL);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_20 = Array_Empty_TisRuntimeObject_m9CF99326FAC8A01A4A25C90AA97F0799BA35ECAB_inline(/*hidden argument*/Array_Empty_TisRuntimeObject_m9CF99326FAC8A01A4A25C90AA97F0799BA35ECAB_RuntimeMethod_var);
NullCheck(L_18);
StringBuilder_AppendFormat_m23742FE1E3C60341F37C243EB6BEE06AE444C774(L_18, L_19, L_20, /*hidden argument*/NULL);
}
IL_009c:
{
int32_t L_21 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_21, (int32_t)1));
}
IL_00a0:
{
int32_t L_22 = V_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_23 = ASN1_get_Value_m9BD6239E12A6148AF9507C2F58058C6B8147A079(__this, /*hidden argument*/NULL);
NullCheck(L_23);
if ((((int32_t)L_22) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_23)->max_length)))))))
{
goto IL_0061;
}
}
{
StringBuilder_t * L_24 = V_0;
NullCheck(L_24);
String_t* L_25 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_24);
return L_25;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.ASN1 Mono.Security.ASN1Convert::FromInt32(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * ASN1Convert_FromInt32_m59FF0922659B0A323026CCC0876BC33020C4FC9A (int32_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ASN1Convert_FromInt32_m59FF0922659B0A323026CCC0876BC33020C4FC9A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_0 = NULL;
int32_t V_1 = 0;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * V_2 = NULL;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_3 = NULL;
{
int32_t L_0 = ___value0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = BitConverterLE_GetBytes_m1207548B6BC0E2D49DD06D5B3A3AC19C001BDB35(L_0, /*hidden argument*/NULL);
V_0 = L_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = V_0;
Array_Reverse_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m03D674052100D1E9D6214ADD31FE7E5F7E6788DA(L_2, /*hidden argument*/Array_Reverse_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m03D674052100D1E9D6214ADD31FE7E5F7E6788DA_RuntimeMethod_var);
V_1 = 0;
goto IL_0015;
}
IL_0011:
{
int32_t L_3 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1));
}
IL_0015:
{
int32_t L_4 = V_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_5 = V_0;
NullCheck(L_5);
if ((((int32_t)L_4) >= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_5)->max_length)))))))
{
goto IL_0020;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_6 = V_0;
int32_t L_7 = V_1;
NullCheck(L_6);
int32_t L_8 = L_7;
uint8_t L_9 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_8));
if (!L_9)
{
goto IL_0011;
}
}
IL_0020:
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_10 = (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E *)il2cpp_codegen_object_new(ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E_il2cpp_TypeInfo_var);
ASN1__ctor_m6DD2E5BD0B12A6BFA95E1822A55B2294B8C237BC(L_10, (uint8_t)2, /*hidden argument*/NULL);
V_2 = L_10;
int32_t L_11 = V_1;
if (!L_11)
{
goto IL_0030;
}
}
{
int32_t L_12 = V_1;
if ((((int32_t)L_12) == ((int32_t)4)))
{
goto IL_0039;
}
}
{
goto IL_0047;
}
IL_0030:
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_13 = V_2;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_14 = V_0;
NullCheck(L_13);
ASN1_set_Value_m225FF9AC03EA872809C7742070A34A264C58588E(L_13, L_14, /*hidden argument*/NULL);
goto IL_0063;
}
IL_0039:
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_15 = V_2;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_16 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)1);
NullCheck(L_15);
ASN1_set_Value_m225FF9AC03EA872809C7742070A34A264C58588E(L_15, L_16, /*hidden argument*/NULL);
goto IL_0063;
}
IL_0047:
{
int32_t L_17 = V_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_18 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)4, (int32_t)L_17)));
V_3 = L_18;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_19 = V_0;
int32_t L_20 = V_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_21 = V_3;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_22 = V_3;
NullCheck(L_22);
Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353((RuntimeArray *)(RuntimeArray *)L_19, L_20, (RuntimeArray *)(RuntimeArray *)L_21, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_22)->max_length)))), /*hidden argument*/NULL);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_23 = V_2;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_24 = V_3;
NullCheck(L_23);
ASN1_set_Value_m225FF9AC03EA872809C7742070A34A264C58588E(L_23, L_24, /*hidden argument*/NULL);
}
IL_0063:
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_25 = V_2;
return L_25;
}
}
// Mono.Security.ASN1 Mono.Security.ASN1Convert::FromOid(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * ASN1Convert_FromOid_mC178E72357986C1AB75A1FFC9DA7687ECA20E462 (String_t* ___oid0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ASN1Convert_FromOid_mC178E72357986C1AB75A1FFC9DA7687ECA20E462_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___oid0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral2118C8699C55066293A0E34341B9953F6C1811BD, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, ASN1Convert_FromOid_mC178E72357986C1AB75A1FFC9DA7687ECA20E462_RuntimeMethod_var);
}
IL_000e:
{
String_t* L_2 = ___oid0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = CryptoConfig_EncodeOID_mEC2EB86D30669917D71AC194CD83281D1A67AC92(L_2, /*hidden argument*/NULL);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_4 = (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E *)il2cpp_codegen_object_new(ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E_il2cpp_TypeInfo_var);
ASN1__ctor_mE005F52336402C3D41EAD9E28A95910B3C0865DA(L_4, L_3, /*hidden argument*/NULL);
return L_4;
}
}
// Mono.Security.ASN1 Mono.Security.ASN1Convert::FromUnsignedBigInteger(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * ASN1Convert_FromUnsignedBigInteger_mB500398BFB7953610B9218268B91E1960BA2E57A (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___big0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ASN1Convert_FromUnsignedBigInteger_mB500398BFB7953610B9218268B91E1960BA2E57A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_1 = NULL;
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___big0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral95C4BEA12E4EDCF8AAD730A222793324DC42C29D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, ASN1Convert_FromUnsignedBigInteger_mB500398BFB7953610B9218268B91E1960BA2E57A_RuntimeMethod_var);
}
IL_000e:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = ___big0;
NullCheck(L_2);
int32_t L_3 = 0;
uint8_t L_4 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
if ((((int32_t)L_4) < ((int32_t)((int32_t)128))))
{
goto IL_0034;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_5 = ___big0;
NullCheck(L_5);
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_5)->max_length)))), (int32_t)1));
int32_t L_6 = V_0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_7 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)L_6);
V_1 = L_7;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_8 = ___big0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_9 = V_1;
int32_t L_10 = V_0;
Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353((RuntimeArray *)(RuntimeArray *)L_8, 0, (RuntimeArray *)(RuntimeArray *)L_9, 1, ((int32_t)il2cpp_codegen_subtract((int32_t)L_10, (int32_t)1)), /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_11 = V_1;
___big0 = L_11;
}
IL_0034:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_12 = ___big0;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_13 = (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E *)il2cpp_codegen_object_new(ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E_il2cpp_TypeInfo_var);
ASN1__ctor_mAB2593792CB61AD1542F4F9D6FB6E8BB96DE007E(L_13, (uint8_t)2, L_12, /*hidden argument*/NULL);
return L_13;
}
}
// System.Int32 Mono.Security.ASN1Convert::ToInt32(Mono.Security.ASN1)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ASN1Convert_ToInt32_mA2A8761F965979408D46FBEB946DB59F36137A5E (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * ___asn10, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ASN1Convert_ToInt32_mA2A8761F965979408D46FBEB946DB59F36137A5E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_0 = ___asn10;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral9EDF4240018976BF964CF31C1A24D34FDE8D517D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, ASN1Convert_ToInt32_mA2A8761F965979408D46FBEB946DB59F36137A5E_RuntimeMethod_var);
}
IL_000e:
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_2 = ___asn10;
NullCheck(L_2);
uint8_t L_3 = ASN1_get_Tag_m1346989AC839D85A9E0A211525A6B551974E4862_inline(L_2, /*hidden argument*/NULL);
if ((((int32_t)L_3) == ((int32_t)2)))
{
goto IL_0022;
}
}
{
FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC * L_4 = (FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC *)il2cpp_codegen_object_new(FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC_il2cpp_TypeInfo_var);
FormatException__ctor_m89167FF9884AE20232190FE9286DC50E146A4F14(L_4, _stringLiteralAA8170ABE1940ECECCB2A8C879187D7FB5C54A00, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, ASN1Convert_ToInt32_mA2A8761F965979408D46FBEB946DB59F36137A5E_RuntimeMethod_var);
}
IL_0022:
{
V_0 = 0;
V_1 = 0;
goto IL_0039;
}
IL_0028:
{
int32_t L_5 = V_0;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_6 = ___asn10;
NullCheck(L_6);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_7 = ASN1_get_Value_m9BD6239E12A6148AF9507C2F58058C6B8147A079(L_6, /*hidden argument*/NULL);
int32_t L_8 = V_1;
NullCheck(L_7);
int32_t L_9 = L_8;
uint8_t L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)((int32_t)L_5<<(int32_t)8)), (int32_t)L_10));
int32_t L_11 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1));
}
IL_0039:
{
int32_t L_12 = V_1;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_13 = ___asn10;
NullCheck(L_13);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_14 = ASN1_get_Value_m9BD6239E12A6148AF9507C2F58058C6B8147A079(L_13, /*hidden argument*/NULL);
NullCheck(L_14);
if ((((int32_t)L_12) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_14)->max_length)))))))
{
goto IL_0028;
}
}
{
int32_t L_15 = V_0;
return L_15;
}
}
// System.String Mono.Security.ASN1Convert::ToOid(Mono.Security.ASN1)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ASN1Convert_ToOid_mFFA93B4BBEFCA8E4E86DAE87CDB998E78BFB2D5A (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * ___asn10, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ASN1Convert_ToOid_mFFA93B4BBEFCA8E4E86DAE87CDB998E78BFB2D5A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_0 = NULL;
StringBuilder_t * V_1 = NULL;
uint8_t V_2 = 0x0;
uint8_t V_3 = 0x0;
uint64_t V_4 = 0;
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_0 = ___asn10;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral9EDF4240018976BF964CF31C1A24D34FDE8D517D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, ASN1Convert_ToOid_mFFA93B4BBEFCA8E4E86DAE87CDB998E78BFB2D5A_RuntimeMethod_var);
}
IL_000e:
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_2 = ___asn10;
NullCheck(L_2);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = ASN1_get_Value_m9BD6239E12A6148AF9507C2F58058C6B8147A079(L_2, /*hidden argument*/NULL);
V_0 = L_3;
StringBuilder_t * L_4 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
StringBuilder__ctor_mF928376F82E8C8FF3C11842C562DB8CF28B2735E(L_4, /*hidden argument*/NULL);
V_1 = L_4;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_5 = V_0;
NullCheck(L_5);
int32_t L_6 = 0;
uint8_t L_7 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
V_2 = (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)L_7/(int32_t)((int32_t)40))))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_8 = V_0;
NullCheck(L_8);
int32_t L_9 = 0;
uint8_t L_10 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
V_3 = (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)L_10%(int32_t)((int32_t)40))))));
uint8_t L_11 = V_2;
if ((((int32_t)L_11) <= ((int32_t)2)))
{
goto IL_003c;
}
}
{
uint8_t L_12 = V_3;
uint8_t L_13 = V_2;
V_3 = (uint8_t)(((int32_t)((uint8_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)(((int32_t)((uint8_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_13, (int32_t)2)), (int32_t)((int32_t)40)))))))))));
V_2 = (uint8_t)2;
}
IL_003c:
{
StringBuilder_t * L_14 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_15 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
String_t* L_16 = Byte_ToString_m0E74FC03C86ECFB7B6639F93E224A1975374D8F7((uint8_t*)(&V_2), L_15, /*hidden argument*/NULL);
NullCheck(L_14);
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_14, L_16, /*hidden argument*/NULL);
StringBuilder_t * L_17 = V_1;
NullCheck(L_17);
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_17, _stringLiteral3A52CE780950D4D969792A2559CD519D7EE8C727, /*hidden argument*/NULL);
StringBuilder_t * L_18 = V_1;
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_19 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
String_t* L_20 = Byte_ToString_m0E74FC03C86ECFB7B6639F93E224A1975374D8F7((uint8_t*)(&V_3), L_19, /*hidden argument*/NULL);
NullCheck(L_18);
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_18, L_20, /*hidden argument*/NULL);
V_4 = (((int64_t)((int64_t)0)));
V_2 = (uint8_t)1;
goto IL_00bd;
}
IL_0076:
{
uint64_t L_21 = V_4;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_22 = V_0;
uint8_t L_23 = V_2;
NullCheck(L_22);
uint8_t L_24 = L_23;
uint8_t L_25 = (L_22)->GetAt(static_cast<il2cpp_array_size_t>(L_24));
V_4 = ((int64_t)((int64_t)((int64_t)((int64_t)L_21<<(int32_t)7))|(int64_t)(((int64_t)((uint64_t)(((uint32_t)((uint32_t)(((int32_t)((uint8_t)((int32_t)((int32_t)L_25&(int32_t)((int32_t)127))))))))))))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_26 = V_0;
uint8_t L_27 = V_2;
NullCheck(L_26);
uint8_t L_28 = L_27;
uint8_t L_29 = (L_26)->GetAt(static_cast<il2cpp_array_size_t>(L_28));
if ((((int32_t)((int32_t)((int32_t)L_29&(int32_t)((int32_t)128)))) == ((int32_t)((int32_t)128))))
{
goto IL_00b8;
}
}
{
StringBuilder_t * L_30 = V_1;
NullCheck(L_30);
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_30, _stringLiteral3A52CE780950D4D969792A2559CD519D7EE8C727, /*hidden argument*/NULL);
StringBuilder_t * L_31 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_32 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
String_t* L_33 = UInt64_ToString_m6CBBC10ABBA0EE36F5E72F926A38F6CD7F497A55((uint64_t*)(&V_4), L_32, /*hidden argument*/NULL);
NullCheck(L_31);
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_31, L_33, /*hidden argument*/NULL);
V_4 = (((int64_t)((int64_t)0)));
}
IL_00b8:
{
uint8_t L_34 = V_2;
V_2 = (uint8_t)(((int32_t)((uint8_t)((int32_t)il2cpp_codegen_add((int32_t)L_34, (int32_t)1)))));
}
IL_00bd:
{
uint8_t L_35 = V_2;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_36 = V_0;
NullCheck(L_36);
if ((((int32_t)L_35) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_36)->max_length)))))))
{
goto IL_0076;
}
}
{
StringBuilder_t * L_37 = V_1;
NullCheck(L_37);
String_t* L_38 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_37);
return L_38;
}
}
// System.DateTime Mono.Security.ASN1Convert::ToDateTime(Mono.Security.ASN1)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ASN1Convert_ToDateTime_m94B39FD0657B85FB9AB61B04CAD71E759C9FE152 (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * ___time0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ASN1Convert_ToDateTime_m94B39FD0657B85FB9AB61B04CAD71E759C9FE152_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
String_t* V_1 = NULL;
int32_t V_2 = 0;
String_t* V_3 = NULL;
Il2CppChar V_4 = 0x0;
String_t* G_B13_0 = NULL;
int32_t G_B16_0 = 0;
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_0 = ___time0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral714EEA0F4C980736BDE0065FE73F573487F08E3A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, ASN1Convert_ToDateTime_m94B39FD0657B85FB9AB61B04CAD71E759C9FE152_RuntimeMethod_var);
}
IL_000e:
{
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_2 = Encoding_get_ASCII_m9B673AE3152AB04D07CADE6E5E142C785B5BC94E(/*hidden argument*/NULL);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_3 = ___time0;
NullCheck(L_3);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = ASN1_get_Value_m9BD6239E12A6148AF9507C2F58058C6B8147A079(L_3, /*hidden argument*/NULL);
NullCheck(L_2);
String_t* L_5 = VirtFuncInvoker1< String_t*, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(34 /* System.String System.Text.Encoding::GetString(System.Byte[]) */, L_2, L_4);
V_0 = L_5;
V_1 = (String_t*)NULL;
String_t* L_6 = V_0;
NullCheck(L_6);
int32_t L_7 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_6, /*hidden argument*/NULL);
V_2 = L_7;
int32_t L_8 = V_2;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_8, (int32_t)((int32_t)11))))
{
case 0:
{
goto IL_0052;
}
case 1:
{
goto IL_014b;
}
case 2:
{
goto IL_005d;
}
case 3:
{
goto IL_014b;
}
case 4:
{
goto IL_0098;
}
case 5:
{
goto IL_014b;
}
case 6:
{
goto IL_00a3;
}
}
}
{
goto IL_014b;
}
IL_0052:
{
V_1 = _stringLiteral2BE04202B2D8138F15F1395499FEF177AB024D48;
goto IL_014b;
}
IL_005d:
{
String_t* L_9 = V_0;
NullCheck(L_9);
String_t* L_10 = String_Substring_mB593C0A320C683E6E47EFFC0A12B7A465E5E43BB(L_9, 0, 2, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_11 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
int16_t L_12 = Convert_ToInt16_m4EE0839C08F0FDFBB7719B316D962B043F55589B(L_10, L_11, /*hidden argument*/NULL);
if ((((int32_t)L_12) < ((int32_t)((int32_t)50))))
{
goto IL_0081;
}
}
{
String_t* L_13 = V_0;
String_t* L_14 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(_stringLiteralB3F0C7F6BB763AF1BE91D9E74EABFEB199DC1F1F, L_13, /*hidden argument*/NULL);
V_0 = L_14;
goto IL_008d;
}
IL_0081:
{
String_t* L_15 = V_0;
String_t* L_16 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(_stringLiteral91032AD7BBCB6CF72875E8E8207DCFBA80173F7C, L_15, /*hidden argument*/NULL);
V_0 = L_16;
}
IL_008d:
{
V_1 = _stringLiteral853460A00D15719D672A944A8ACCF5FC35952846;
goto IL_014b;
}
IL_0098:
{
V_1 = _stringLiteral853460A00D15719D672A944A8ACCF5FC35952846;
goto IL_014b;
}
IL_00a3:
{
String_t* L_17 = V_0;
NullCheck(L_17);
String_t* L_18 = String_Substring_mB593C0A320C683E6E47EFFC0A12B7A465E5E43BB(L_17, 0, 2, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_19 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
int16_t L_20 = Convert_ToInt16_m4EE0839C08F0FDFBB7719B316D962B043F55589B(L_18, L_19, /*hidden argument*/NULL);
if ((((int32_t)L_20) >= ((int32_t)((int32_t)50))))
{
goto IL_00c0;
}
}
{
G_B13_0 = _stringLiteral91032AD7BBCB6CF72875E8E8207DCFBA80173F7C;
goto IL_00c5;
}
IL_00c0:
{
G_B13_0 = _stringLiteralB3F0C7F6BB763AF1BE91D9E74EABFEB199DC1F1F;
}
IL_00c5:
{
V_3 = G_B13_0;
String_t* L_21 = V_0;
NullCheck(L_21);
Il2CppChar L_22 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_21, ((int32_t)12), /*hidden argument*/NULL);
if ((((int32_t)L_22) == ((int32_t)((int32_t)43))))
{
goto IL_00d6;
}
}
{
G_B16_0 = ((int32_t)43);
goto IL_00d8;
}
IL_00d6:
{
G_B16_0 = ((int32_t)45);
}
IL_00d8:
{
V_4 = G_B16_0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_23 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)7);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_24 = L_23;
String_t* L_25 = V_3;
NullCheck(L_24);
ArrayElementTypeCheck (L_24, L_25);
(L_24)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_25);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_26 = L_24;
String_t* L_27 = V_0;
NullCheck(L_27);
String_t* L_28 = String_Substring_mB593C0A320C683E6E47EFFC0A12B7A465E5E43BB(L_27, 0, ((int32_t)12), /*hidden argument*/NULL);
NullCheck(L_26);
ArrayElementTypeCheck (L_26, L_28);
(L_26)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_28);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_29 = L_26;
Il2CppChar L_30 = V_4;
Il2CppChar L_31 = L_30;
RuntimeObject * L_32 = Box(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var, &L_31);
NullCheck(L_29);
ArrayElementTypeCheck (L_29, L_32);
(L_29)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)L_32);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_33 = L_29;
String_t* L_34 = V_0;
NullCheck(L_34);
Il2CppChar L_35 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_34, ((int32_t)13), /*hidden argument*/NULL);
Il2CppChar L_36 = L_35;
RuntimeObject * L_37 = Box(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var, &L_36);
NullCheck(L_33);
ArrayElementTypeCheck (L_33, L_37);
(L_33)->SetAt(static_cast<il2cpp_array_size_t>(3), (RuntimeObject *)L_37);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_38 = L_33;
String_t* L_39 = V_0;
NullCheck(L_39);
Il2CppChar L_40 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_39, ((int32_t)14), /*hidden argument*/NULL);
Il2CppChar L_41 = L_40;
RuntimeObject * L_42 = Box(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var, &L_41);
NullCheck(L_38);
ArrayElementTypeCheck (L_38, L_42);
(L_38)->SetAt(static_cast<il2cpp_array_size_t>(4), (RuntimeObject *)L_42);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_43 = L_38;
String_t* L_44 = V_0;
NullCheck(L_44);
Il2CppChar L_45 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_44, ((int32_t)15), /*hidden argument*/NULL);
Il2CppChar L_46 = L_45;
RuntimeObject * L_47 = Box(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var, &L_46);
NullCheck(L_43);
ArrayElementTypeCheck (L_43, L_47);
(L_43)->SetAt(static_cast<il2cpp_array_size_t>(5), (RuntimeObject *)L_47);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_48 = L_43;
String_t* L_49 = V_0;
NullCheck(L_49);
Il2CppChar L_50 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_49, ((int32_t)16), /*hidden argument*/NULL);
Il2CppChar L_51 = L_50;
RuntimeObject * L_52 = Box(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var, &L_51);
NullCheck(L_48);
ArrayElementTypeCheck (L_48, L_52);
(L_48)->SetAt(static_cast<il2cpp_array_size_t>(6), (RuntimeObject *)L_52);
String_t* L_53 = String_Format_mA3AC3FE7B23D97F3A5BAA082D25B0E01B341A865(_stringLiteral1C0FFB44A6993F53413B227FCD6BE6E7653BD3C7, L_48, /*hidden argument*/NULL);
V_0 = L_53;
V_1 = _stringLiteral64348CB249149F4396EB7FB17C2F5706D32D8138;
}
IL_014b:
{
String_t* L_54 = V_0;
String_t* L_55 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_56 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var);
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_57 = DateTime_ParseExact_mF45E615EBCC82CA967D4BC7838EE570508D0F97F(L_54, L_55, L_56, ((int32_t)16), /*hidden argument*/NULL);
return L_57;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Byte[] Mono.Security.BitConverterLE::GetUIntBytes(System.Byte*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* BitConverterLE_GetUIntBytes_m871281C3039A5B7DFB56E0F3EBBE22F74135997C (uint8_t* ___bytes0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BitConverterLE_GetUIntBytes_m871281C3039A5B7DFB56E0F3EBBE22F74135997C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE_il2cpp_TypeInfo_var);
bool L_0 = ((BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE_StaticFields*)il2cpp_codegen_static_fields_for(BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE_il2cpp_TypeInfo_var))->get_IsLittleEndian_0();
if (!L_0)
{
goto IL_0028;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)4);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = L_1;
uint8_t* L_3 = ___bytes0;
int32_t L_4 = *((uint8_t*)L_3);
NullCheck(L_2);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(0), (uint8_t)L_4);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_5 = L_2;
uint8_t* L_6 = ___bytes0;
int32_t L_7 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_6, (int32_t)1)));
NullCheck(L_5);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(1), (uint8_t)L_7);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_8 = L_5;
uint8_t* L_9 = ___bytes0;
int32_t L_10 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_9, (int32_t)2)));
NullCheck(L_8);
(L_8)->SetAt(static_cast<il2cpp_array_size_t>(2), (uint8_t)L_10);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_11 = L_8;
uint8_t* L_12 = ___bytes0;
int32_t L_13 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_12, (int32_t)3)));
NullCheck(L_11);
(L_11)->SetAt(static_cast<il2cpp_array_size_t>(3), (uint8_t)L_13);
return L_11;
}
IL_0028:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_14 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)4);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_15 = L_14;
uint8_t* L_16 = ___bytes0;
int32_t L_17 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_16, (int32_t)3)));
NullCheck(L_15);
(L_15)->SetAt(static_cast<il2cpp_array_size_t>(0), (uint8_t)L_17);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_18 = L_15;
uint8_t* L_19 = ___bytes0;
int32_t L_20 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_19, (int32_t)2)));
NullCheck(L_18);
(L_18)->SetAt(static_cast<il2cpp_array_size_t>(1), (uint8_t)L_20);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_21 = L_18;
uint8_t* L_22 = ___bytes0;
int32_t L_23 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_22, (int32_t)1)));
NullCheck(L_21);
(L_21)->SetAt(static_cast<il2cpp_array_size_t>(2), (uint8_t)L_23);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_24 = L_21;
uint8_t* L_25 = ___bytes0;
int32_t L_26 = *((uint8_t*)L_25);
NullCheck(L_24);
(L_24)->SetAt(static_cast<il2cpp_array_size_t>(3), (uint8_t)L_26);
return L_24;
}
}
// System.Byte[] Mono.Security.BitConverterLE::GetULongBytes(System.Byte*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* BitConverterLE_GetULongBytes_mCBAC987169706D10F05AFF42559A4EA1D88E1876 (uint8_t* ___bytes0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BitConverterLE_GetULongBytes_mCBAC987169706D10F05AFF42559A4EA1D88E1876_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE_il2cpp_TypeInfo_var);
bool L_0 = ((BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE_StaticFields*)il2cpp_codegen_static_fields_for(BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE_il2cpp_TypeInfo_var))->get_IsLittleEndian_0();
if (!L_0)
{
goto IL_0044;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)8);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = L_1;
uint8_t* L_3 = ___bytes0;
int32_t L_4 = *((uint8_t*)L_3);
NullCheck(L_2);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(0), (uint8_t)L_4);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_5 = L_2;
uint8_t* L_6 = ___bytes0;
int32_t L_7 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_6, (int32_t)1)));
NullCheck(L_5);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(1), (uint8_t)L_7);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_8 = L_5;
uint8_t* L_9 = ___bytes0;
int32_t L_10 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_9, (int32_t)2)));
NullCheck(L_8);
(L_8)->SetAt(static_cast<il2cpp_array_size_t>(2), (uint8_t)L_10);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_11 = L_8;
uint8_t* L_12 = ___bytes0;
int32_t L_13 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_12, (int32_t)3)));
NullCheck(L_11);
(L_11)->SetAt(static_cast<il2cpp_array_size_t>(3), (uint8_t)L_13);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_14 = L_11;
uint8_t* L_15 = ___bytes0;
int32_t L_16 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_15, (int32_t)4)));
NullCheck(L_14);
(L_14)->SetAt(static_cast<il2cpp_array_size_t>(4), (uint8_t)L_16);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_17 = L_14;
uint8_t* L_18 = ___bytes0;
int32_t L_19 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_18, (int32_t)5)));
NullCheck(L_17);
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(5), (uint8_t)L_19);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_20 = L_17;
uint8_t* L_21 = ___bytes0;
int32_t L_22 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_21, (int32_t)6)));
NullCheck(L_20);
(L_20)->SetAt(static_cast<il2cpp_array_size_t>(6), (uint8_t)L_22);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_23 = L_20;
uint8_t* L_24 = ___bytes0;
int32_t L_25 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_24, (int32_t)7)));
NullCheck(L_23);
(L_23)->SetAt(static_cast<il2cpp_array_size_t>(7), (uint8_t)L_25);
return L_23;
}
IL_0044:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_26 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)8);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_27 = L_26;
uint8_t* L_28 = ___bytes0;
int32_t L_29 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_28, (int32_t)7)));
NullCheck(L_27);
(L_27)->SetAt(static_cast<il2cpp_array_size_t>(0), (uint8_t)L_29);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_30 = L_27;
uint8_t* L_31 = ___bytes0;
int32_t L_32 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_31, (int32_t)6)));
NullCheck(L_30);
(L_30)->SetAt(static_cast<il2cpp_array_size_t>(1), (uint8_t)L_32);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_33 = L_30;
uint8_t* L_34 = ___bytes0;
int32_t L_35 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_34, (int32_t)5)));
NullCheck(L_33);
(L_33)->SetAt(static_cast<il2cpp_array_size_t>(2), (uint8_t)L_35);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_36 = L_33;
uint8_t* L_37 = ___bytes0;
int32_t L_38 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_37, (int32_t)4)));
NullCheck(L_36);
(L_36)->SetAt(static_cast<il2cpp_array_size_t>(3), (uint8_t)L_38);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_39 = L_36;
uint8_t* L_40 = ___bytes0;
int32_t L_41 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_40, (int32_t)3)));
NullCheck(L_39);
(L_39)->SetAt(static_cast<il2cpp_array_size_t>(4), (uint8_t)L_41);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_42 = L_39;
uint8_t* L_43 = ___bytes0;
int32_t L_44 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_43, (int32_t)2)));
NullCheck(L_42);
(L_42)->SetAt(static_cast<il2cpp_array_size_t>(5), (uint8_t)L_44);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_45 = L_42;
uint8_t* L_46 = ___bytes0;
int32_t L_47 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_46, (int32_t)1)));
NullCheck(L_45);
(L_45)->SetAt(static_cast<il2cpp_array_size_t>(6), (uint8_t)L_47);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_48 = L_45;
uint8_t* L_49 = ___bytes0;
int32_t L_50 = *((uint8_t*)L_49);
NullCheck(L_48);
(L_48)->SetAt(static_cast<il2cpp_array_size_t>(7), (uint8_t)L_50);
return L_48;
}
}
// System.Byte[] Mono.Security.BitConverterLE::GetBytes(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* BitConverterLE_GetBytes_m1207548B6BC0E2D49DD06D5B3A3AC19C001BDB35 (int32_t ___value0, const RuntimeMethod* method)
{
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = BitConverterLE_GetUIntBytes_m871281C3039A5B7DFB56E0F3EBBE22F74135997C((uint8_t*)(uint8_t*)(((uintptr_t)(&___value0))), /*hidden argument*/NULL);
return L_0;
}
}
// System.Byte[] Mono.Security.BitConverterLE::GetBytes(System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* BitConverterLE_GetBytes_m8B2BFEBCB4830C010E4572C925AE3C3A3CC14031 (int64_t ___value0, const RuntimeMethod* method)
{
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = BitConverterLE_GetULongBytes_mCBAC987169706D10F05AFF42559A4EA1D88E1876((uint8_t*)(uint8_t*)(((uintptr_t)(&___value0))), /*hidden argument*/NULL);
return L_0;
}
}
// System.Void Mono.Security.BitConverterLE::UShortFromBytes(System.Byte*,System.Byte[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BitConverterLE_UShortFromBytes_mBC051D16FFC95E9695F110AFDEAB018BD76F84A9 (uint8_t* ___dst0, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___src1, int32_t ___startIndex2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BitConverterLE_UShortFromBytes_mBC051D16FFC95E9695F110AFDEAB018BD76F84A9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE_il2cpp_TypeInfo_var);
bool L_0 = ((BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE_StaticFields*)il2cpp_codegen_static_fields_for(BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE_il2cpp_TypeInfo_var))->get_IsLittleEndian_0();
if (!L_0)
{
goto IL_0016;
}
}
{
uint8_t* L_1 = ___dst0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = ___src1;
int32_t L_3 = ___startIndex2;
NullCheck(L_2);
int32_t L_4 = L_3;
uint8_t L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
*((int8_t*)L_1) = (int8_t)L_5;
uint8_t* L_6 = ___dst0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_7 = ___src1;
int32_t L_8 = ___startIndex2;
NullCheck(L_7);
int32_t L_9 = ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1));
uint8_t L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_6, (int32_t)1))) = (int8_t)L_10;
return;
}
IL_0016:
{
uint8_t* L_11 = ___dst0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_12 = ___src1;
int32_t L_13 = ___startIndex2;
NullCheck(L_12);
int32_t L_14 = ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1));
uint8_t L_15 = (L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_14));
*((int8_t*)L_11) = (int8_t)L_15;
uint8_t* L_16 = ___dst0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_17 = ___src1;
int32_t L_18 = ___startIndex2;
NullCheck(L_17);
int32_t L_19 = L_18;
uint8_t L_20 = (L_17)->GetAt(static_cast<il2cpp_array_size_t>(L_19));
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_16, (int32_t)1))) = (int8_t)L_20;
return;
}
}
// System.Void Mono.Security.BitConverterLE::UIntFromBytes(System.Byte*,System.Byte[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BitConverterLE_UIntFromBytes_m91E16C3362E794444D849A4AD5B9F746BF2A4FCB (uint8_t* ___dst0, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___src1, int32_t ___startIndex2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BitConverterLE_UIntFromBytes_m91E16C3362E794444D849A4AD5B9F746BF2A4FCB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE_il2cpp_TypeInfo_var);
bool L_0 = ((BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE_StaticFields*)il2cpp_codegen_static_fields_for(BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE_il2cpp_TypeInfo_var))->get_IsLittleEndian_0();
if (!L_0)
{
goto IL_0028;
}
}
{
uint8_t* L_1 = ___dst0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = ___src1;
int32_t L_3 = ___startIndex2;
NullCheck(L_2);
int32_t L_4 = L_3;
uint8_t L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
*((int8_t*)L_1) = (int8_t)L_5;
uint8_t* L_6 = ___dst0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_7 = ___src1;
int32_t L_8 = ___startIndex2;
NullCheck(L_7);
int32_t L_9 = ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1));
uint8_t L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_6, (int32_t)1))) = (int8_t)L_10;
uint8_t* L_11 = ___dst0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_12 = ___src1;
int32_t L_13 = ___startIndex2;
NullCheck(L_12);
int32_t L_14 = ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)2));
uint8_t L_15 = (L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_14));
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_11, (int32_t)2))) = (int8_t)L_15;
uint8_t* L_16 = ___dst0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_17 = ___src1;
int32_t L_18 = ___startIndex2;
NullCheck(L_17);
int32_t L_19 = ((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)3));
uint8_t L_20 = (L_17)->GetAt(static_cast<il2cpp_array_size_t>(L_19));
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_16, (int32_t)3))) = (int8_t)L_20;
return;
}
IL_0028:
{
uint8_t* L_21 = ___dst0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_22 = ___src1;
int32_t L_23 = ___startIndex2;
NullCheck(L_22);
int32_t L_24 = ((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)3));
uint8_t L_25 = (L_22)->GetAt(static_cast<il2cpp_array_size_t>(L_24));
*((int8_t*)L_21) = (int8_t)L_25;
uint8_t* L_26 = ___dst0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_27 = ___src1;
int32_t L_28 = ___startIndex2;
NullCheck(L_27);
int32_t L_29 = ((int32_t)il2cpp_codegen_add((int32_t)L_28, (int32_t)2));
uint8_t L_30 = (L_27)->GetAt(static_cast<il2cpp_array_size_t>(L_29));
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_26, (int32_t)1))) = (int8_t)L_30;
uint8_t* L_31 = ___dst0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_32 = ___src1;
int32_t L_33 = ___startIndex2;
NullCheck(L_32);
int32_t L_34 = ((int32_t)il2cpp_codegen_add((int32_t)L_33, (int32_t)1));
uint8_t L_35 = (L_32)->GetAt(static_cast<il2cpp_array_size_t>(L_34));
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_31, (int32_t)2))) = (int8_t)L_35;
uint8_t* L_36 = ___dst0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_37 = ___src1;
int32_t L_38 = ___startIndex2;
NullCheck(L_37);
int32_t L_39 = L_38;
uint8_t L_40 = (L_37)->GetAt(static_cast<il2cpp_array_size_t>(L_39));
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_36, (int32_t)3))) = (int8_t)L_40;
return;
}
}
// System.UInt16 Mono.Security.BitConverterLE::ToUInt16(System.Byte[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t BitConverterLE_ToUInt16_mFC8811706681807666F91EE89A28ADF75DF6EFCC (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___value0, int32_t ___startIndex1, const RuntimeMethod* method)
{
uint16_t V_0 = 0;
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___value0;
int32_t L_1 = ___startIndex1;
BitConverterLE_UShortFromBytes_mBC051D16FFC95E9695F110AFDEAB018BD76F84A9((uint8_t*)(uint8_t*)(((uintptr_t)(&V_0))), L_0, L_1, /*hidden argument*/NULL);
uint16_t L_2 = V_0;
return L_2;
}
}
// System.UInt32 Mono.Security.BitConverterLE::ToUInt32(System.Byte[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t BitConverterLE_ToUInt32_m898E287439DDB0A31E4E39FF83DD032B1C43FA26 (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___value0, int32_t ___startIndex1, const RuntimeMethod* method)
{
uint32_t V_0 = 0;
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___value0;
int32_t L_1 = ___startIndex1;
BitConverterLE_UIntFromBytes_m91E16C3362E794444D849A4AD5B9F746BF2A4FCB((uint8_t*)(uint8_t*)(((uintptr_t)(&V_0))), L_0, L_1, /*hidden argument*/NULL);
uint32_t L_2 = V_0;
return L_2;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.String Mono.Security.Cryptography.CryptoConvert::ToHex(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* CryptoConvert_ToHex_m2FB6183AFF3B31424407BB7D767A844E3464B411 (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___input0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CryptoConvert_ToHex_m2FB6183AFF3B31424407BB7D767A844E3464B411_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
StringBuilder_t * V_0 = NULL;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_1 = NULL;
int32_t V_2 = 0;
uint8_t V_3 = 0x0;
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___input0;
if (L_0)
{
goto IL_0005;
}
}
{
return (String_t*)NULL;
}
IL_0005:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = ___input0;
NullCheck(L_1);
StringBuilder_t * L_2 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
StringBuilder__ctor_m1C0F2D97B838537A2D0F64033AE4EF02D150A956(L_2, ((int32_t)il2cpp_codegen_multiply((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_1)->max_length)))), (int32_t)2)), /*hidden argument*/NULL);
V_0 = L_2;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = ___input0;
V_1 = L_3;
V_2 = 0;
goto IL_0036;
}
IL_0016:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = V_1;
int32_t L_5 = V_2;
NullCheck(L_4);
int32_t L_6 = L_5;
uint8_t L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
V_3 = L_7;
StringBuilder_t * L_8 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_9 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
String_t* L_10 = Byte_ToString_m731FDB27391432D7F14B6769B5D0A3E248803D25((uint8_t*)(&V_3), _stringLiteral9F792B61D0EC544D91E7AFF34E2E99EE3CF2B313, L_9, /*hidden argument*/NULL);
NullCheck(L_8);
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_8, L_10, /*hidden argument*/NULL);
int32_t L_11 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1));
}
IL_0036:
{
int32_t L_12 = V_2;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_13 = V_1;
NullCheck(L_13);
if ((((int32_t)L_12) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_13)->max_length)))))))
{
goto IL_0016;
}
}
{
StringBuilder_t * L_14 = V_0;
NullCheck(L_14);
String_t* L_15 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_14);
return L_15;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Mono.Security.Cryptography.MD2::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MD2__ctor_mE62E9B3FF536BF5CF083EFBBE0CFAF4BD62FA0C0 (MD2_tCAAEC1A28A3D0B9E8810B27E4840BEA399619442 * __this, const RuntimeMethod* method)
{
{
HashAlgorithm__ctor_mC0C923AB8904FC11889F63B39177507FBB35AA43(__this, /*hidden argument*/NULL);
((HashAlgorithm_t65659695B16C0BBF05707BF45191A97DC156D6BA *)__this)->set_HashSizeValue_0(((int32_t)128));
return;
}
}
// Mono.Security.Cryptography.MD2 Mono.Security.Cryptography.MD2::Create()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MD2_tCAAEC1A28A3D0B9E8810B27E4840BEA399619442 * MD2_Create_mF375441B9B1B701ECE73B9B51AFE4E3ADDE6E02F (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MD2_Create_mF375441B9B1B701ECE73B9B51AFE4E3ADDE6E02F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
MD2Managed_t6867DBAD1BDCC846BE478BABC2D5DBAFFC7495EC * L_0 = (MD2Managed_t6867DBAD1BDCC846BE478BABC2D5DBAFFC7495EC *)il2cpp_codegen_object_new(MD2Managed_t6867DBAD1BDCC846BE478BABC2D5DBAFFC7495EC_il2cpp_TypeInfo_var);
MD2Managed__ctor_mB717463E13F068948687F8EE38041CA6087E6FCA(L_0, /*hidden argument*/NULL);
return L_0;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Byte[] Mono.Security.Cryptography.MD2Managed::Padding(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* MD2Managed_Padding_m3EB6A24F9144B480408240A0885F55C9BD0B47B1 (MD2Managed_t6867DBAD1BDCC846BE478BABC2D5DBAFFC7495EC * __this, int32_t ___nLength0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MD2Managed_Padding_m3EB6A24F9144B480408240A0885F55C9BD0B47B1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_0 = NULL;
int32_t V_1 = 0;
{
int32_t L_0 = ___nLength0;
if ((((int32_t)L_0) <= ((int32_t)0)))
{
goto IL_0020;
}
}
{
int32_t L_1 = ___nLength0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)L_1);
V_0 = L_2;
V_1 = 0;
goto IL_0018;
}
IL_000f:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = V_0;
int32_t L_4 = V_1;
int32_t L_5 = ___nLength0;
NullCheck(L_3);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(L_4), (uint8_t)(((int32_t)((uint8_t)L_5))));
int32_t L_6 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)1));
}
IL_0018:
{
int32_t L_7 = V_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_8 = V_0;
NullCheck(L_8);
if ((((int32_t)L_7) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length)))))))
{
goto IL_000f;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_9 = V_0;
return L_9;
}
IL_0020:
{
return (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)NULL;
}
}
// System.Void Mono.Security.Cryptography.MD2Managed::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MD2Managed__ctor_mB717463E13F068948687F8EE38041CA6087E6FCA (MD2Managed_t6867DBAD1BDCC846BE478BABC2D5DBAFFC7495EC * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MD2Managed__ctor_mB717463E13F068948687F8EE38041CA6087E6FCA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
MD2__ctor_mE62E9B3FF536BF5CF083EFBBE0CFAF4BD62FA0C0(__this, /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)((int32_t)16));
__this->set_state_4(L_0);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)((int32_t)16));
__this->set_checksum_5(L_1);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)((int32_t)16));
__this->set_buffer_6(L_2);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)((int32_t)48));
__this->set_x_8(L_3);
VirtActionInvoker0::Invoke(16 /* System.Void System.Security.Cryptography.HashAlgorithm::Initialize() */, __this);
return;
}
}
// System.Void Mono.Security.Cryptography.MD2Managed::Initialize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MD2Managed_Initialize_m237CBCA36A820C9CA42E6E50E637405388236644 (MD2Managed_t6867DBAD1BDCC846BE478BABC2D5DBAFFC7495EC * __this, const RuntimeMethod* method)
{
{
__this->set_count_7(0);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = __this->get_state_4();
Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E((RuntimeArray *)(RuntimeArray *)L_0, 0, ((int32_t)16), /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = __this->get_checksum_5();
Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E((RuntimeArray *)(RuntimeArray *)L_1, 0, ((int32_t)16), /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = __this->get_buffer_6();
Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E((RuntimeArray *)(RuntimeArray *)L_2, 0, ((int32_t)16), /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = __this->get_x_8();
Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E((RuntimeArray *)(RuntimeArray *)L_3, 0, ((int32_t)48), /*hidden argument*/NULL);
return;
}
}
// System.Void Mono.Security.Cryptography.MD2Managed::HashCore(System.Byte[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MD2Managed_HashCore_m3A2BD8F0CE3D25C498F3D640B71B0F8ED681A1FB (MD2Managed_t6867DBAD1BDCC846BE478BABC2D5DBAFFC7495EC * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___array0, int32_t ___ibStart1, int32_t ___cbSize2, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = __this->get_count_7();
V_1 = L_0;
int32_t L_1 = V_1;
int32_t L_2 = ___cbSize2;
__this->set_count_7(((int32_t)((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)L_2))&(int32_t)((int32_t)15))));
int32_t L_3 = V_1;
V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)16), (int32_t)L_3));
int32_t L_4 = ___cbSize2;
int32_t L_5 = V_2;
if ((((int32_t)L_4) < ((int32_t)L_5)))
{
goto IL_006e;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_6 = ___array0;
int32_t L_7 = ___ibStart1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_8 = __this->get_buffer_6();
int32_t L_9 = V_1;
int32_t L_10 = V_2;
Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353((RuntimeArray *)(RuntimeArray *)L_6, L_7, (RuntimeArray *)(RuntimeArray *)L_8, L_9, L_10, /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_11 = __this->get_state_4();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_12 = __this->get_checksum_5();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_13 = __this->get_buffer_6();
MD2Managed_MD2Transform_m95099D1A3DB46EA112FF62C9A585D947C7FD4C23(__this, L_11, L_12, L_13, 0, /*hidden argument*/NULL);
int32_t L_14 = V_2;
V_0 = L_14;
goto IL_0063;
}
IL_0048:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_15 = __this->get_state_4();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_16 = __this->get_checksum_5();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_17 = ___array0;
int32_t L_18 = ___ibStart1;
int32_t L_19 = V_0;
MD2Managed_MD2Transform_m95099D1A3DB46EA112FF62C9A585D947C7FD4C23(__this, L_15, L_16, L_17, ((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)L_19)), /*hidden argument*/NULL);
int32_t L_20 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)((int32_t)16)));
}
IL_0063:
{
int32_t L_21 = V_0;
int32_t L_22 = ___cbSize2;
if ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_21, (int32_t)((int32_t)15)))) < ((int32_t)L_22)))
{
goto IL_0048;
}
}
{
V_1 = 0;
goto IL_0070;
}
IL_006e:
{
V_0 = 0;
}
IL_0070:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_23 = ___array0;
int32_t L_24 = ___ibStart1;
int32_t L_25 = V_0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_26 = __this->get_buffer_6();
int32_t L_27 = V_1;
int32_t L_28 = ___cbSize2;
int32_t L_29 = V_0;
Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353((RuntimeArray *)(RuntimeArray *)L_23, ((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)L_25)), (RuntimeArray *)(RuntimeArray *)L_26, L_27, ((int32_t)il2cpp_codegen_subtract((int32_t)L_28, (int32_t)L_29)), /*hidden argument*/NULL);
return;
}
}
// System.Byte[] Mono.Security.Cryptography.MD2Managed::HashFinal()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* MD2Managed_HashFinal_m8840B1788737936945402AA9D19E14033ECA61EC (MD2Managed_t6867DBAD1BDCC846BE478BABC2D5DBAFFC7495EC * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MD2Managed_HashFinal_m8840B1788737936945402AA9D19E14033ECA61EC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
{
int32_t L_0 = __this->get_count_7();
V_0 = L_0;
int32_t L_1 = V_0;
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)16), (int32_t)L_1));
int32_t L_2 = V_1;
if ((((int32_t)L_2) <= ((int32_t)0)))
{
goto IL_001f;
}
}
{
int32_t L_3 = V_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = MD2Managed_Padding_m3EB6A24F9144B480408240A0885F55C9BD0B47B1(__this, L_3, /*hidden argument*/NULL);
int32_t L_5 = V_1;
VirtActionInvoker3< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(17 /* System.Void System.Security.Cryptography.HashAlgorithm::HashCore(System.Byte[],System.Int32,System.Int32) */, __this, L_4, 0, L_5);
}
IL_001f:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_6 = __this->get_checksum_5();
VirtActionInvoker3< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(17 /* System.Void System.Security.Cryptography.HashAlgorithm::HashCore(System.Byte[],System.Int32,System.Int32) */, __this, L_6, 0, ((int32_t)16));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_7 = __this->get_state_4();
NullCheck((RuntimeArray *)(RuntimeArray *)L_7);
RuntimeObject * L_8 = Array_Clone_mE8C710213E323617A6F46F2B36DCDDD4C7CF5176((RuntimeArray *)(RuntimeArray *)L_7, /*hidden argument*/NULL);
VirtActionInvoker0::Invoke(16 /* System.Void System.Security.Cryptography.HashAlgorithm::Initialize() */, __this);
return ((ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)Castclass((RuntimeObject*)L_8, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var));
}
}
// System.Void Mono.Security.Cryptography.MD2Managed::MD2Transform(System.Byte[],System.Byte[],System.Byte[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MD2Managed_MD2Transform_m95099D1A3DB46EA112FF62C9A585D947C7FD4C23 (MD2Managed_t6867DBAD1BDCC846BE478BABC2D5DBAFFC7495EC * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___state0, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___checksum1, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___block2, int32_t ___index3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MD2Managed_MD2Transform_m95099D1A3DB46EA112FF62C9A585D947C7FD4C23_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
int32_t V_3 = 0;
uint8_t V_4 = 0x0;
int32_t V_5 = 0;
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___state0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = __this->get_x_8();
Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353((RuntimeArray *)(RuntimeArray *)L_0, 0, (RuntimeArray *)(RuntimeArray *)L_1, 0, ((int32_t)16), /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = ___block2;
int32_t L_3 = ___index3;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = __this->get_x_8();
Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353((RuntimeArray *)(RuntimeArray *)L_2, L_3, (RuntimeArray *)(RuntimeArray *)L_4, ((int32_t)16), ((int32_t)16), /*hidden argument*/NULL);
V_1 = 0;
goto IL_0040;
}
IL_0026:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_5 = __this->get_x_8();
int32_t L_6 = V_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_7 = ___state0;
int32_t L_8 = V_1;
NullCheck(L_7);
int32_t L_9 = L_8;
uint8_t L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_11 = ___block2;
int32_t L_12 = ___index3;
int32_t L_13 = V_1;
NullCheck(L_11);
int32_t L_14 = ((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)L_13));
uint8_t L_15 = (L_11)->GetAt(static_cast<il2cpp_array_size_t>(L_14));
NullCheck(L_5);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)((int32_t)32)))), (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)L_10^(int32_t)L_15))))));
int32_t L_16 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_0040:
{
int32_t L_17 = V_1;
if ((((int32_t)L_17) < ((int32_t)((int32_t)16))))
{
goto IL_0026;
}
}
{
V_0 = 0;
V_2 = 0;
goto IL_0084;
}
IL_004b:
{
V_3 = 0;
goto IL_0071;
}
IL_004f:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_18 = __this->get_x_8();
int32_t L_19 = V_3;
NullCheck(L_18);
uint8_t* L_20 = ((L_18)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_19)));
int32_t L_21 = *((uint8_t*)L_20);
IL2CPP_RUNTIME_CLASS_INIT(MD2Managed_t6867DBAD1BDCC846BE478BABC2D5DBAFFC7495EC_il2cpp_TypeInfo_var);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_22 = ((MD2Managed_t6867DBAD1BDCC846BE478BABC2D5DBAFFC7495EC_StaticFields*)il2cpp_codegen_static_fields_for(MD2Managed_t6867DBAD1BDCC846BE478BABC2D5DBAFFC7495EC_il2cpp_TypeInfo_var))->get_PI_SUBST_9();
int32_t L_23 = V_0;
NullCheck(L_22);
int32_t L_24 = L_23;
uint8_t L_25 = (L_22)->GetAt(static_cast<il2cpp_array_size_t>(L_24));
int32_t L_26 = (((int32_t)((uint8_t)((int32_t)((int32_t)L_21^(int32_t)L_25)))));
V_4 = (uint8_t)L_26;
*((int8_t*)L_20) = (int8_t)L_26;
uint8_t L_27 = V_4;
V_0 = L_27;
int32_t L_28 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_28, (int32_t)1));
}
IL_0071:
{
int32_t L_29 = V_3;
if ((((int32_t)L_29) < ((int32_t)((int32_t)48))))
{
goto IL_004f;
}
}
{
int32_t L_30 = V_0;
int32_t L_31 = V_2;
V_0 = ((int32_t)((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_30, (int32_t)L_31))&(int32_t)((int32_t)255)));
int32_t L_32 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_32, (int32_t)1));
}
IL_0084:
{
int32_t L_33 = V_2;
if ((((int32_t)L_33) < ((int32_t)((int32_t)18))))
{
goto IL_004b;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_34 = __this->get_x_8();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_35 = ___state0;
Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353((RuntimeArray *)(RuntimeArray *)L_34, 0, (RuntimeArray *)(RuntimeArray *)L_35, 0, ((int32_t)16), /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_36 = ___checksum1;
NullCheck(L_36);
int32_t L_37 = ((int32_t)15);
uint8_t L_38 = (L_36)->GetAt(static_cast<il2cpp_array_size_t>(L_37));
V_0 = L_38;
V_5 = 0;
goto IL_00cb;
}
IL_00a3:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_39 = ___checksum1;
int32_t L_40 = V_5;
NullCheck(L_39);
uint8_t* L_41 = ((L_39)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_40)));
int32_t L_42 = *((uint8_t*)L_41);
IL2CPP_RUNTIME_CLASS_INIT(MD2Managed_t6867DBAD1BDCC846BE478BABC2D5DBAFFC7495EC_il2cpp_TypeInfo_var);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_43 = ((MD2Managed_t6867DBAD1BDCC846BE478BABC2D5DBAFFC7495EC_StaticFields*)il2cpp_codegen_static_fields_for(MD2Managed_t6867DBAD1BDCC846BE478BABC2D5DBAFFC7495EC_il2cpp_TypeInfo_var))->get_PI_SUBST_9();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_44 = ___block2;
int32_t L_45 = ___index3;
int32_t L_46 = V_5;
NullCheck(L_44);
int32_t L_47 = ((int32_t)il2cpp_codegen_add((int32_t)L_45, (int32_t)L_46));
uint8_t L_48 = (L_44)->GetAt(static_cast<il2cpp_array_size_t>(L_47));
int32_t L_49 = V_0;
NullCheck(L_43);
int32_t L_50 = ((int32_t)((int32_t)L_48^(int32_t)L_49));
uint8_t L_51 = (L_43)->GetAt(static_cast<il2cpp_array_size_t>(L_50));
int32_t L_52 = (((int32_t)((uint8_t)((int32_t)((int32_t)L_42^(int32_t)L_51)))));
V_4 = (uint8_t)L_52;
*((int8_t*)L_41) = (int8_t)L_52;
uint8_t L_53 = V_4;
V_0 = L_53;
int32_t L_54 = V_5;
V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_54, (int32_t)1));
}
IL_00cb:
{
int32_t L_55 = V_5;
if ((((int32_t)L_55) < ((int32_t)((int32_t)16))))
{
goto IL_00a3;
}
}
{
return;
}
}
// System.Void Mono.Security.Cryptography.MD2Managed::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MD2Managed__cctor_mFCD964B61C39F08BCF87A5CA5C9D04364FA0715E (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MD2Managed__cctor_mFCD964B61C39F08BCF87A5CA5C9D04364FA0715E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)((int32_t)256));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = L_0;
RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_2 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_tF21437707AFAA06797AEDEE07C84D4D3CC2837FA____D2C5BAE967587C6F3D9F2C4551911E0575A1101F_24_FieldInfo_var) };
RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_1, L_2, /*hidden argument*/NULL);
((MD2Managed_t6867DBAD1BDCC846BE478BABC2D5DBAFFC7495EC_StaticFields*)il2cpp_codegen_static_fields_for(MD2Managed_t6867DBAD1BDCC846BE478BABC2D5DBAFFC7495EC_il2cpp_TypeInfo_var))->set_PI_SUBST_9(L_1);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Mono.Security.Cryptography.MD4::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MD4__ctor_m6AD2F7EC5132898B34FA52CB4EAB9A82F0FEFF59 (MD4_t932C1DEA44D4B8650873251E88AA4096164BB380 * __this, const RuntimeMethod* method)
{
{
HashAlgorithm__ctor_mC0C923AB8904FC11889F63B39177507FBB35AA43(__this, /*hidden argument*/NULL);
((HashAlgorithm_t65659695B16C0BBF05707BF45191A97DC156D6BA *)__this)->set_HashSizeValue_0(((int32_t)128));
return;
}
}
// Mono.Security.Cryptography.MD4 Mono.Security.Cryptography.MD4::Create()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MD4_t932C1DEA44D4B8650873251E88AA4096164BB380 * MD4_Create_m2D436A4CC284704A7DA0EEF4C4D5860F69D0BB93 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MD4_Create_m2D436A4CC284704A7DA0EEF4C4D5860F69D0BB93_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
MD4Managed_t1FC9A6CDB0A89A71416414689B3A0FF0283759D1 * L_0 = (MD4Managed_t1FC9A6CDB0A89A71416414689B3A0FF0283759D1 *)il2cpp_codegen_object_new(MD4Managed_t1FC9A6CDB0A89A71416414689B3A0FF0283759D1_il2cpp_TypeInfo_var);
MD4Managed__ctor_mDB4352DBB43112E1DF337DF241A3E25435C2C3C5(L_0, /*hidden argument*/NULL);
return L_0;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Mono.Security.Cryptography.MD4Managed::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MD4Managed__ctor_mDB4352DBB43112E1DF337DF241A3E25435C2C3C5 (MD4Managed_t1FC9A6CDB0A89A71416414689B3A0FF0283759D1 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MD4Managed__ctor_mDB4352DBB43112E1DF337DF241A3E25435C2C3C5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
MD4__ctor_m6AD2F7EC5132898B34FA52CB4EAB9A82F0FEFF59(__this, /*hidden argument*/NULL);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_0 = (UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB*)(UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB*)SZArrayNew(UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB_il2cpp_TypeInfo_var, (uint32_t)4);
__this->set_state_4(L_0);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_1 = (UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB*)(UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB*)SZArrayNew(UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB_il2cpp_TypeInfo_var, (uint32_t)2);
__this->set_count_6(L_1);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)((int32_t)64));
__this->set_buffer_5(L_2);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)((int32_t)16));
__this->set_digest_8(L_3);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_4 = (UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB*)(UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB*)SZArrayNew(UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB_il2cpp_TypeInfo_var, (uint32_t)((int32_t)16));
__this->set_x_7(L_4);
VirtActionInvoker0::Invoke(16 /* System.Void System.Security.Cryptography.HashAlgorithm::Initialize() */, __this);
return;
}
}
// System.Void Mono.Security.Cryptography.MD4Managed::Initialize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MD4Managed_Initialize_m40CDDA70F2946B6B942EB66BE77D5AC25AEC56EB (MD4Managed_t1FC9A6CDB0A89A71416414689B3A0FF0283759D1 * __this, const RuntimeMethod* method)
{
{
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_0 = __this->get_count_6();
NullCheck(L_0);
(L_0)->SetAt(static_cast<il2cpp_array_size_t>(0), (uint32_t)0);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_1 = __this->get_count_6();
NullCheck(L_1);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(1), (uint32_t)0);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_2 = __this->get_state_4();
NullCheck(L_2);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(0), (uint32_t)((int32_t)1732584193));
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_3 = __this->get_state_4();
NullCheck(L_3);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(1), (uint32_t)((int32_t)-271733879));
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_4 = __this->get_state_4();
NullCheck(L_4);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(2), (uint32_t)((int32_t)-1732584194));
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_5 = __this->get_state_4();
NullCheck(L_5);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(3), (uint32_t)((int32_t)271733878));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_6 = __this->get_buffer_5();
Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E((RuntimeArray *)(RuntimeArray *)L_6, 0, ((int32_t)64), /*hidden argument*/NULL);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_7 = __this->get_x_7();
Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E((RuntimeArray *)(RuntimeArray *)L_7, 0, ((int32_t)16), /*hidden argument*/NULL);
return;
}
}
// System.Void Mono.Security.Cryptography.MD4Managed::HashCore(System.Byte[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MD4Managed_HashCore_mB3D2B92E80F6D0D1EEE5F41F2DB21F7A88DC41AB (MD4Managed_t1FC9A6CDB0A89A71416414689B3A0FF0283759D1 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___array0, int32_t ___ibStart1, int32_t ___cbSize2, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_0 = __this->get_count_6();
NullCheck(L_0);
int32_t L_1 = 0;
uint32_t L_2 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_1));
V_0 = ((int32_t)((int32_t)((int32_t)((uint32_t)L_2>>3))&(int32_t)((int32_t)63)));
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_3 = __this->get_count_6();
NullCheck(L_3);
uint32_t* L_4 = ((L_3)->GetAddressAt(static_cast<il2cpp_array_size_t>(0)));
int32_t L_5 = *((uint32_t*)L_4);
int32_t L_6 = ___cbSize2;
*((int32_t*)L_4) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)((int32_t)((int32_t)L_6<<(int32_t)3))));
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_7 = __this->get_count_6();
NullCheck(L_7);
int32_t L_8 = 0;
uint32_t L_9 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_8));
int32_t L_10 = ___cbSize2;
if ((((int64_t)(((int64_t)((uint64_t)L_9)))) >= ((int64_t)(((int64_t)((int64_t)((int32_t)((int32_t)L_10<<(int32_t)3))))))))
{
goto IL_0041;
}
}
{
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_11 = __this->get_count_6();
NullCheck(L_11);
uint32_t* L_12 = ((L_11)->GetAddressAt(static_cast<il2cpp_array_size_t>(1)));
int32_t L_13 = *((uint32_t*)L_12);
*((int32_t*)L_12) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1));
}
IL_0041:
{
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_14 = __this->get_count_6();
NullCheck(L_14);
uint32_t* L_15 = ((L_14)->GetAddressAt(static_cast<il2cpp_array_size_t>(1)));
int32_t L_16 = *((uint32_t*)L_15);
int32_t L_17 = ___cbSize2;
*((int32_t*)L_15) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)((int32_t)((int32_t)L_17>>(int32_t)((int32_t)29)))));
int32_t L_18 = V_0;
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)64), (int32_t)L_18));
V_2 = 0;
int32_t L_19 = ___cbSize2;
int32_t L_20 = V_1;
if ((((int32_t)L_19) < ((int32_t)L_20)))
{
goto IL_00a4;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_21 = ___array0;
int32_t L_22 = ___ibStart1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_23 = __this->get_buffer_5();
int32_t L_24 = V_0;
int32_t L_25 = V_1;
Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353((RuntimeArray *)(RuntimeArray *)L_21, L_22, (RuntimeArray *)(RuntimeArray *)L_23, L_24, L_25, /*hidden argument*/NULL);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_26 = __this->get_state_4();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_27 = __this->get_buffer_5();
MD4Managed_MD4Transform_m385B46D14814EB12B82642AC995E26FB99B6816C(__this, L_26, L_27, 0, /*hidden argument*/NULL);
int32_t L_28 = V_1;
V_2 = L_28;
goto IL_009b;
}
IL_0086:
{
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_29 = __this->get_state_4();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_30 = ___array0;
int32_t L_31 = ___ibStart1;
int32_t L_32 = V_2;
MD4Managed_MD4Transform_m385B46D14814EB12B82642AC995E26FB99B6816C(__this, L_29, L_30, ((int32_t)il2cpp_codegen_add((int32_t)L_31, (int32_t)L_32)), /*hidden argument*/NULL);
int32_t L_33 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_33, (int32_t)((int32_t)64)));
}
IL_009b:
{
int32_t L_34 = V_2;
int32_t L_35 = ___cbSize2;
if ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_34, (int32_t)((int32_t)63)))) < ((int32_t)L_35)))
{
goto IL_0086;
}
}
{
V_0 = 0;
}
IL_00a4:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_36 = ___array0;
int32_t L_37 = ___ibStart1;
int32_t L_38 = V_2;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_39 = __this->get_buffer_5();
int32_t L_40 = V_0;
int32_t L_41 = ___cbSize2;
int32_t L_42 = V_2;
Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353((RuntimeArray *)(RuntimeArray *)L_36, ((int32_t)il2cpp_codegen_add((int32_t)L_37, (int32_t)L_38)), (RuntimeArray *)(RuntimeArray *)L_39, L_40, ((int32_t)il2cpp_codegen_subtract((int32_t)L_41, (int32_t)L_42)), /*hidden argument*/NULL);
return;
}
}
// System.Byte[] Mono.Security.Cryptography.MD4Managed::HashFinal()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* MD4Managed_HashFinal_m4853C50C4026A1F75D7C75FB28FD4E146E95F6AC (MD4Managed_t1FC9A6CDB0A89A71416414689B3A0FF0283759D1 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MD4Managed_HashFinal_m4853C50C4026A1F75D7C75FB28FD4E146E95F6AC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_0 = NULL;
uint32_t V_1 = 0;
int32_t V_2 = 0;
int32_t G_B3_0 = 0;
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)8);
V_0 = L_0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = V_0;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_2 = __this->get_count_6();
MD4Managed_Encode_m4EAEC7D200AF9F9BBB8D4AAF0ABD4B5E9D9C4AF2(__this, L_1, L_2, /*hidden argument*/NULL);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_3 = __this->get_count_6();
NullCheck(L_3);
int32_t L_4 = 0;
uint32_t L_5 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
V_1 = ((int32_t)((int32_t)((int32_t)((uint32_t)L_5>>3))&(int32_t)((int32_t)63)));
uint32_t L_6 = V_1;
if ((!(((uint32_t)L_6) >= ((uint32_t)((int32_t)56)))))
{
goto IL_002d;
}
}
{
uint32_t L_7 = V_1;
G_B3_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)120), (int32_t)L_7));
goto IL_0031;
}
IL_002d:
{
uint32_t L_8 = V_1;
G_B3_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)56), (int32_t)L_8));
}
IL_0031:
{
V_2 = G_B3_0;
int32_t L_9 = V_2;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_10 = MD4Managed_Padding_m7AD58C8D8178AC6CD6738C93A146312D73ED0476(__this, L_9, /*hidden argument*/NULL);
int32_t L_11 = V_2;
VirtActionInvoker3< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(17 /* System.Void System.Security.Cryptography.HashAlgorithm::HashCore(System.Byte[],System.Int32,System.Int32) */, __this, L_10, 0, L_11);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_12 = V_0;
VirtActionInvoker3< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(17 /* System.Void System.Security.Cryptography.HashAlgorithm::HashCore(System.Byte[],System.Int32,System.Int32) */, __this, L_12, 0, 8);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_13 = __this->get_digest_8();
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_14 = __this->get_state_4();
MD4Managed_Encode_m4EAEC7D200AF9F9BBB8D4AAF0ABD4B5E9D9C4AF2(__this, L_13, L_14, /*hidden argument*/NULL);
VirtActionInvoker0::Invoke(16 /* System.Void System.Security.Cryptography.HashAlgorithm::Initialize() */, __this);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_15 = __this->get_digest_8();
return L_15;
}
}
// System.Byte[] Mono.Security.Cryptography.MD4Managed::Padding(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* MD4Managed_Padding_m7AD58C8D8178AC6CD6738C93A146312D73ED0476 (MD4Managed_t1FC9A6CDB0A89A71416414689B3A0FF0283759D1 * __this, int32_t ___nLength0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MD4Managed_Padding_m7AD58C8D8178AC6CD6738C93A146312D73ED0476_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___nLength0;
if ((((int32_t)L_0) <= ((int32_t)0)))
{
goto IL_0013;
}
}
{
int32_t L_1 = ___nLength0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)L_1);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = L_2;
NullCheck(L_3);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(0), (uint8_t)((int32_t)128));
return L_3;
}
IL_0013:
{
return (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)NULL;
}
}
// System.UInt32 Mono.Security.Cryptography.MD4Managed::F(System.UInt32,System.UInt32,System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t MD4Managed_F_mB457E78CC0BDBD1ADCD8E687A6891E0D6B454174 (MD4Managed_t1FC9A6CDB0A89A71416414689B3A0FF0283759D1 * __this, uint32_t ___x0, uint32_t ___y1, uint32_t ___z2, const RuntimeMethod* method)
{
{
uint32_t L_0 = ___x0;
uint32_t L_1 = ___y1;
uint32_t L_2 = ___x0;
uint32_t L_3 = ___z2;
return ((int32_t)((int32_t)((int32_t)((int32_t)L_0&(int32_t)L_1))|(int32_t)((int32_t)((int32_t)((~L_2))&(int32_t)L_3))));
}
}
// System.UInt32 Mono.Security.Cryptography.MD4Managed::G(System.UInt32,System.UInt32,System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t MD4Managed_G_mCF22020BF90E65B0E322FAE8962502BBC22A157F (MD4Managed_t1FC9A6CDB0A89A71416414689B3A0FF0283759D1 * __this, uint32_t ___x0, uint32_t ___y1, uint32_t ___z2, const RuntimeMethod* method)
{
{
uint32_t L_0 = ___x0;
uint32_t L_1 = ___y1;
uint32_t L_2 = ___x0;
uint32_t L_3 = ___z2;
uint32_t L_4 = ___y1;
uint32_t L_5 = ___z2;
return ((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_0&(int32_t)L_1))|(int32_t)((int32_t)((int32_t)L_2&(int32_t)L_3))))|(int32_t)((int32_t)((int32_t)L_4&(int32_t)L_5))));
}
}
// System.UInt32 Mono.Security.Cryptography.MD4Managed::H(System.UInt32,System.UInt32,System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t MD4Managed_H_mDF220E77C694540EF16BD892D7F03B34AE055225 (MD4Managed_t1FC9A6CDB0A89A71416414689B3A0FF0283759D1 * __this, uint32_t ___x0, uint32_t ___y1, uint32_t ___z2, const RuntimeMethod* method)
{
{
uint32_t L_0 = ___x0;
uint32_t L_1 = ___y1;
uint32_t L_2 = ___z2;
return ((int32_t)((int32_t)((int32_t)((int32_t)L_0^(int32_t)L_1))^(int32_t)L_2));
}
}
// System.UInt32 Mono.Security.Cryptography.MD4Managed::ROL(System.UInt32,System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t MD4Managed_ROL_mAD186591B4745F5050E7B34A5805A7476448D7F0 (MD4Managed_t1FC9A6CDB0A89A71416414689B3A0FF0283759D1 * __this, uint32_t ___x0, uint8_t ___n1, const RuntimeMethod* method)
{
{
uint32_t L_0 = ___x0;
uint8_t L_1 = ___n1;
uint32_t L_2 = ___x0;
uint8_t L_3 = ___n1;
return ((int32_t)((int32_t)((int32_t)((int32_t)L_0<<(int32_t)((int32_t)((int32_t)L_1&(int32_t)((int32_t)31)))))|(int32_t)((int32_t)((uint32_t)L_2>>((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)32), (int32_t)L_3))&(int32_t)((int32_t)31)))))));
}
}
// System.Void Mono.Security.Cryptography.MD4Managed::FF(System.UInt32&,System.UInt32,System.UInt32,System.UInt32,System.UInt32,System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MD4Managed_FF_m8750957E572840973D5E0792CD61594F819861C3 (MD4Managed_t1FC9A6CDB0A89A71416414689B3A0FF0283759D1 * __this, uint32_t* ___a0, uint32_t ___b1, uint32_t ___c2, uint32_t ___d3, uint32_t ___x4, uint8_t ___s5, const RuntimeMethod* method)
{
{
uint32_t* L_0 = ___a0;
uint32_t* L_1 = ___a0;
int32_t L_2 = *((uint32_t*)L_1);
uint32_t L_3 = ___b1;
uint32_t L_4 = ___c2;
uint32_t L_5 = ___d3;
uint32_t L_6 = MD4Managed_F_mB457E78CC0BDBD1ADCD8E687A6891E0D6B454174(__this, L_3, L_4, L_5, /*hidden argument*/NULL);
uint32_t L_7 = ___x4;
*((int32_t*)L_0) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)L_7))));
uint32_t* L_8 = ___a0;
uint32_t* L_9 = ___a0;
int32_t L_10 = *((uint32_t*)L_9);
uint8_t L_11 = ___s5;
uint32_t L_12 = MD4Managed_ROL_mAD186591B4745F5050E7B34A5805A7476448D7F0(__this, L_10, L_11, /*hidden argument*/NULL);
*((int32_t*)L_8) = (int32_t)L_12;
return;
}
}
// System.Void Mono.Security.Cryptography.MD4Managed::GG(System.UInt32&,System.UInt32,System.UInt32,System.UInt32,System.UInt32,System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MD4Managed_GG_m00A4648827B25DF55EABDF6FFB5C96E871C60E36 (MD4Managed_t1FC9A6CDB0A89A71416414689B3A0FF0283759D1 * __this, uint32_t* ___a0, uint32_t ___b1, uint32_t ___c2, uint32_t ___d3, uint32_t ___x4, uint8_t ___s5, const RuntimeMethod* method)
{
{
uint32_t* L_0 = ___a0;
uint32_t* L_1 = ___a0;
int32_t L_2 = *((uint32_t*)L_1);
uint32_t L_3 = ___b1;
uint32_t L_4 = ___c2;
uint32_t L_5 = ___d3;
uint32_t L_6 = MD4Managed_G_mCF22020BF90E65B0E322FAE8962502BBC22A157F(__this, L_3, L_4, L_5, /*hidden argument*/NULL);
uint32_t L_7 = ___x4;
*((int32_t*)L_0) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)L_7)), (int32_t)((int32_t)1518500249)))));
uint32_t* L_8 = ___a0;
uint32_t* L_9 = ___a0;
int32_t L_10 = *((uint32_t*)L_9);
uint8_t L_11 = ___s5;
uint32_t L_12 = MD4Managed_ROL_mAD186591B4745F5050E7B34A5805A7476448D7F0(__this, L_10, L_11, /*hidden argument*/NULL);
*((int32_t*)L_8) = (int32_t)L_12;
return;
}
}
// System.Void Mono.Security.Cryptography.MD4Managed::HH(System.UInt32&,System.UInt32,System.UInt32,System.UInt32,System.UInt32,System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MD4Managed_HH_mC0581C10D440E254F218664593ED5291035038F6 (MD4Managed_t1FC9A6CDB0A89A71416414689B3A0FF0283759D1 * __this, uint32_t* ___a0, uint32_t ___b1, uint32_t ___c2, uint32_t ___d3, uint32_t ___x4, uint8_t ___s5, const RuntimeMethod* method)
{
{
uint32_t* L_0 = ___a0;
uint32_t* L_1 = ___a0;
int32_t L_2 = *((uint32_t*)L_1);
uint32_t L_3 = ___b1;
uint32_t L_4 = ___c2;
uint32_t L_5 = ___d3;
uint32_t L_6 = MD4Managed_H_mDF220E77C694540EF16BD892D7F03B34AE055225(__this, L_3, L_4, L_5, /*hidden argument*/NULL);
uint32_t L_7 = ___x4;
*((int32_t*)L_0) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)L_7)), (int32_t)((int32_t)1859775393)))));
uint32_t* L_8 = ___a0;
uint32_t* L_9 = ___a0;
int32_t L_10 = *((uint32_t*)L_9);
uint8_t L_11 = ___s5;
uint32_t L_12 = MD4Managed_ROL_mAD186591B4745F5050E7B34A5805A7476448D7F0(__this, L_10, L_11, /*hidden argument*/NULL);
*((int32_t*)L_8) = (int32_t)L_12;
return;
}
}
// System.Void Mono.Security.Cryptography.MD4Managed::Encode(System.Byte[],System.UInt32[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MD4Managed_Encode_m4EAEC7D200AF9F9BBB8D4AAF0ABD4B5E9D9C4AF2 (MD4Managed_t1FC9A6CDB0A89A71416414689B3A0FF0283759D1 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___output0, UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* ___input1, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
V_0 = 0;
V_1 = 0;
goto IL_0038;
}
IL_0006:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___output0;
int32_t L_1 = V_1;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_2 = ___input1;
int32_t L_3 = V_0;
NullCheck(L_2);
int32_t L_4 = L_3;
uint32_t L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
NullCheck(L_0);
(L_0)->SetAt(static_cast<il2cpp_array_size_t>(L_1), (uint8_t)(((int32_t)((uint8_t)L_5))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_6 = ___output0;
int32_t L_7 = V_1;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_8 = ___input1;
int32_t L_9 = V_0;
NullCheck(L_8);
int32_t L_10 = L_9;
uint32_t L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1))), (uint8_t)(((int32_t)((uint8_t)((int32_t)((uint32_t)L_11>>8))))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_12 = ___output0;
int32_t L_13 = V_1;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_14 = ___input1;
int32_t L_15 = V_0;
NullCheck(L_14);
int32_t L_16 = L_15;
uint32_t L_17 = (L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_16));
NullCheck(L_12);
(L_12)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)2))), (uint8_t)(((int32_t)((uint8_t)((int32_t)((uint32_t)L_17>>((int32_t)16)))))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_18 = ___output0;
int32_t L_19 = V_1;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_20 = ___input1;
int32_t L_21 = V_0;
NullCheck(L_20);
int32_t L_22 = L_21;
uint32_t L_23 = (L_20)->GetAt(static_cast<il2cpp_array_size_t>(L_22));
NullCheck(L_18);
(L_18)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add((int32_t)L_19, (int32_t)3))), (uint8_t)(((int32_t)((uint8_t)((int32_t)((uint32_t)L_23>>((int32_t)24)))))));
int32_t L_24 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)1));
int32_t L_25 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)4));
}
IL_0038:
{
int32_t L_26 = V_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_27 = ___output0;
NullCheck(L_27);
if ((((int32_t)L_26) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_27)->max_length)))))))
{
goto IL_0006;
}
}
{
return;
}
}
// System.Void Mono.Security.Cryptography.MD4Managed::Decode(System.UInt32[],System.Byte[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MD4Managed_Decode_m450A7CE51E89191B352AC0DD4527135B343443D6 (MD4Managed_t1FC9A6CDB0A89A71416414689B3A0FF0283759D1 * __this, UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* ___output0, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___input1, int32_t ___index2, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
V_0 = 0;
int32_t L_0 = ___index2;
V_1 = L_0;
goto IL_002e;
}
IL_0006:
{
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_1 = ___output0;
int32_t L_2 = V_0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = ___input1;
int32_t L_4 = V_1;
NullCheck(L_3);
int32_t L_5 = L_4;
uint8_t L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_7 = ___input1;
int32_t L_8 = V_1;
NullCheck(L_7);
int32_t L_9 = ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1));
uint8_t L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_11 = ___input1;
int32_t L_12 = V_1;
NullCheck(L_11);
int32_t L_13 = ((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)2));
uint8_t L_14 = (L_11)->GetAt(static_cast<il2cpp_array_size_t>(L_13));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_15 = ___input1;
int32_t L_16 = V_1;
NullCheck(L_15);
int32_t L_17 = ((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)3));
uint8_t L_18 = (L_15)->GetAt(static_cast<il2cpp_array_size_t>(L_17));
NullCheck(L_1);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(L_2), (uint32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6|(int32_t)((int32_t)((int32_t)L_10<<(int32_t)8))))|(int32_t)((int32_t)((int32_t)L_14<<(int32_t)((int32_t)16)))))|(int32_t)((int32_t)((int32_t)L_18<<(int32_t)((int32_t)24))))));
int32_t L_19 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_19, (int32_t)1));
int32_t L_20 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)4));
}
IL_002e:
{
int32_t L_21 = V_0;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_22 = ___output0;
NullCheck(L_22);
if ((((int32_t)L_21) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_22)->max_length)))))))
{
goto IL_0006;
}
}
{
return;
}
}
// System.Void Mono.Security.Cryptography.MD4Managed::MD4Transform(System.UInt32[],System.Byte[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MD4Managed_MD4Transform_m385B46D14814EB12B82642AC995E26FB99B6816C (MD4Managed_t1FC9A6CDB0A89A71416414689B3A0FF0283759D1 * __this, UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* ___state0, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___block1, int32_t ___index2, const RuntimeMethod* method)
{
uint32_t V_0 = 0;
uint32_t V_1 = 0;
uint32_t V_2 = 0;
uint32_t V_3 = 0;
{
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_0 = ___state0;
NullCheck(L_0);
int32_t L_1 = 0;
uint32_t L_2 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_1));
V_0 = L_2;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_3 = ___state0;
NullCheck(L_3);
int32_t L_4 = 1;
uint32_t L_5 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
V_1 = L_5;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_6 = ___state0;
NullCheck(L_6);
int32_t L_7 = 2;
uint32_t L_8 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
V_2 = L_8;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_9 = ___state0;
NullCheck(L_9);
int32_t L_10 = 3;
uint32_t L_11 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
V_3 = L_11;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_12 = __this->get_x_7();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_13 = ___block1;
int32_t L_14 = ___index2;
MD4Managed_Decode_m450A7CE51E89191B352AC0DD4527135B343443D6(__this, L_12, L_13, L_14, /*hidden argument*/NULL);
uint32_t L_15 = V_1;
uint32_t L_16 = V_2;
uint32_t L_17 = V_3;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_18 = __this->get_x_7();
NullCheck(L_18);
int32_t L_19 = 0;
uint32_t L_20 = (L_18)->GetAt(static_cast<il2cpp_array_size_t>(L_19));
MD4Managed_FF_m8750957E572840973D5E0792CD61594F819861C3(__this, (uint32_t*)(&V_0), L_15, L_16, L_17, L_20, (uint8_t)3, /*hidden argument*/NULL);
uint32_t L_21 = V_0;
uint32_t L_22 = V_1;
uint32_t L_23 = V_2;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_24 = __this->get_x_7();
NullCheck(L_24);
int32_t L_25 = 1;
uint32_t L_26 = (L_24)->GetAt(static_cast<il2cpp_array_size_t>(L_25));
MD4Managed_FF_m8750957E572840973D5E0792CD61594F819861C3(__this, (uint32_t*)(&V_3), L_21, L_22, L_23, L_26, (uint8_t)7, /*hidden argument*/NULL);
uint32_t L_27 = V_3;
uint32_t L_28 = V_0;
uint32_t L_29 = V_1;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_30 = __this->get_x_7();
NullCheck(L_30);
int32_t L_31 = 2;
uint32_t L_32 = (L_30)->GetAt(static_cast<il2cpp_array_size_t>(L_31));
MD4Managed_FF_m8750957E572840973D5E0792CD61594F819861C3(__this, (uint32_t*)(&V_2), L_27, L_28, L_29, L_32, (uint8_t)((int32_t)11), /*hidden argument*/NULL);
uint32_t L_33 = V_2;
uint32_t L_34 = V_3;
uint32_t L_35 = V_0;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_36 = __this->get_x_7();
NullCheck(L_36);
int32_t L_37 = 3;
uint32_t L_38 = (L_36)->GetAt(static_cast<il2cpp_array_size_t>(L_37));
MD4Managed_FF_m8750957E572840973D5E0792CD61594F819861C3(__this, (uint32_t*)(&V_1), L_33, L_34, L_35, L_38, (uint8_t)((int32_t)19), /*hidden argument*/NULL);
uint32_t L_39 = V_1;
uint32_t L_40 = V_2;
uint32_t L_41 = V_3;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_42 = __this->get_x_7();
NullCheck(L_42);
int32_t L_43 = 4;
uint32_t L_44 = (L_42)->GetAt(static_cast<il2cpp_array_size_t>(L_43));
MD4Managed_FF_m8750957E572840973D5E0792CD61594F819861C3(__this, (uint32_t*)(&V_0), L_39, L_40, L_41, L_44, (uint8_t)3, /*hidden argument*/NULL);
uint32_t L_45 = V_0;
uint32_t L_46 = V_1;
uint32_t L_47 = V_2;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_48 = __this->get_x_7();
NullCheck(L_48);
int32_t L_49 = 5;
uint32_t L_50 = (L_48)->GetAt(static_cast<il2cpp_array_size_t>(L_49));
MD4Managed_FF_m8750957E572840973D5E0792CD61594F819861C3(__this, (uint32_t*)(&V_3), L_45, L_46, L_47, L_50, (uint8_t)7, /*hidden argument*/NULL);
uint32_t L_51 = V_3;
uint32_t L_52 = V_0;
uint32_t L_53 = V_1;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_54 = __this->get_x_7();
NullCheck(L_54);
int32_t L_55 = 6;
uint32_t L_56 = (L_54)->GetAt(static_cast<il2cpp_array_size_t>(L_55));
MD4Managed_FF_m8750957E572840973D5E0792CD61594F819861C3(__this, (uint32_t*)(&V_2), L_51, L_52, L_53, L_56, (uint8_t)((int32_t)11), /*hidden argument*/NULL);
uint32_t L_57 = V_2;
uint32_t L_58 = V_3;
uint32_t L_59 = V_0;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_60 = __this->get_x_7();
NullCheck(L_60);
int32_t L_61 = 7;
uint32_t L_62 = (L_60)->GetAt(static_cast<il2cpp_array_size_t>(L_61));
MD4Managed_FF_m8750957E572840973D5E0792CD61594F819861C3(__this, (uint32_t*)(&V_1), L_57, L_58, L_59, L_62, (uint8_t)((int32_t)19), /*hidden argument*/NULL);
uint32_t L_63 = V_1;
uint32_t L_64 = V_2;
uint32_t L_65 = V_3;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_66 = __this->get_x_7();
NullCheck(L_66);
int32_t L_67 = 8;
uint32_t L_68 = (L_66)->GetAt(static_cast<il2cpp_array_size_t>(L_67));
MD4Managed_FF_m8750957E572840973D5E0792CD61594F819861C3(__this, (uint32_t*)(&V_0), L_63, L_64, L_65, L_68, (uint8_t)3, /*hidden argument*/NULL);
uint32_t L_69 = V_0;
uint32_t L_70 = V_1;
uint32_t L_71 = V_2;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_72 = __this->get_x_7();
NullCheck(L_72);
int32_t L_73 = ((int32_t)9);
uint32_t L_74 = (L_72)->GetAt(static_cast<il2cpp_array_size_t>(L_73));
MD4Managed_FF_m8750957E572840973D5E0792CD61594F819861C3(__this, (uint32_t*)(&V_3), L_69, L_70, L_71, L_74, (uint8_t)7, /*hidden argument*/NULL);
uint32_t L_75 = V_3;
uint32_t L_76 = V_0;
uint32_t L_77 = V_1;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_78 = __this->get_x_7();
NullCheck(L_78);
int32_t L_79 = ((int32_t)10);
uint32_t L_80 = (L_78)->GetAt(static_cast<il2cpp_array_size_t>(L_79));
MD4Managed_FF_m8750957E572840973D5E0792CD61594F819861C3(__this, (uint32_t*)(&V_2), L_75, L_76, L_77, L_80, (uint8_t)((int32_t)11), /*hidden argument*/NULL);
uint32_t L_81 = V_2;
uint32_t L_82 = V_3;
uint32_t L_83 = V_0;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_84 = __this->get_x_7();
NullCheck(L_84);
int32_t L_85 = ((int32_t)11);
uint32_t L_86 = (L_84)->GetAt(static_cast<il2cpp_array_size_t>(L_85));
MD4Managed_FF_m8750957E572840973D5E0792CD61594F819861C3(__this, (uint32_t*)(&V_1), L_81, L_82, L_83, L_86, (uint8_t)((int32_t)19), /*hidden argument*/NULL);
uint32_t L_87 = V_1;
uint32_t L_88 = V_2;
uint32_t L_89 = V_3;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_90 = __this->get_x_7();
NullCheck(L_90);
int32_t L_91 = ((int32_t)12);
uint32_t L_92 = (L_90)->GetAt(static_cast<il2cpp_array_size_t>(L_91));
MD4Managed_FF_m8750957E572840973D5E0792CD61594F819861C3(__this, (uint32_t*)(&V_0), L_87, L_88, L_89, L_92, (uint8_t)3, /*hidden argument*/NULL);
uint32_t L_93 = V_0;
uint32_t L_94 = V_1;
uint32_t L_95 = V_2;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_96 = __this->get_x_7();
NullCheck(L_96);
int32_t L_97 = ((int32_t)13);
uint32_t L_98 = (L_96)->GetAt(static_cast<il2cpp_array_size_t>(L_97));
MD4Managed_FF_m8750957E572840973D5E0792CD61594F819861C3(__this, (uint32_t*)(&V_3), L_93, L_94, L_95, L_98, (uint8_t)7, /*hidden argument*/NULL);
uint32_t L_99 = V_3;
uint32_t L_100 = V_0;
uint32_t L_101 = V_1;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_102 = __this->get_x_7();
NullCheck(L_102);
int32_t L_103 = ((int32_t)14);
uint32_t L_104 = (L_102)->GetAt(static_cast<il2cpp_array_size_t>(L_103));
MD4Managed_FF_m8750957E572840973D5E0792CD61594F819861C3(__this, (uint32_t*)(&V_2), L_99, L_100, L_101, L_104, (uint8_t)((int32_t)11), /*hidden argument*/NULL);
uint32_t L_105 = V_2;
uint32_t L_106 = V_3;
uint32_t L_107 = V_0;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_108 = __this->get_x_7();
NullCheck(L_108);
int32_t L_109 = ((int32_t)15);
uint32_t L_110 = (L_108)->GetAt(static_cast<il2cpp_array_size_t>(L_109));
MD4Managed_FF_m8750957E572840973D5E0792CD61594F819861C3(__this, (uint32_t*)(&V_1), L_105, L_106, L_107, L_110, (uint8_t)((int32_t)19), /*hidden argument*/NULL);
uint32_t L_111 = V_1;
uint32_t L_112 = V_2;
uint32_t L_113 = V_3;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_114 = __this->get_x_7();
NullCheck(L_114);
int32_t L_115 = 0;
uint32_t L_116 = (L_114)->GetAt(static_cast<il2cpp_array_size_t>(L_115));
MD4Managed_GG_m00A4648827B25DF55EABDF6FFB5C96E871C60E36(__this, (uint32_t*)(&V_0), L_111, L_112, L_113, L_116, (uint8_t)3, /*hidden argument*/NULL);
uint32_t L_117 = V_0;
uint32_t L_118 = V_1;
uint32_t L_119 = V_2;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_120 = __this->get_x_7();
NullCheck(L_120);
int32_t L_121 = 4;
uint32_t L_122 = (L_120)->GetAt(static_cast<il2cpp_array_size_t>(L_121));
MD4Managed_GG_m00A4648827B25DF55EABDF6FFB5C96E871C60E36(__this, (uint32_t*)(&V_3), L_117, L_118, L_119, L_122, (uint8_t)5, /*hidden argument*/NULL);
uint32_t L_123 = V_3;
uint32_t L_124 = V_0;
uint32_t L_125 = V_1;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_126 = __this->get_x_7();
NullCheck(L_126);
int32_t L_127 = 8;
uint32_t L_128 = (L_126)->GetAt(static_cast<il2cpp_array_size_t>(L_127));
MD4Managed_GG_m00A4648827B25DF55EABDF6FFB5C96E871C60E36(__this, (uint32_t*)(&V_2), L_123, L_124, L_125, L_128, (uint8_t)((int32_t)9), /*hidden argument*/NULL);
uint32_t L_129 = V_2;
uint32_t L_130 = V_3;
uint32_t L_131 = V_0;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_132 = __this->get_x_7();
NullCheck(L_132);
int32_t L_133 = ((int32_t)12);
uint32_t L_134 = (L_132)->GetAt(static_cast<il2cpp_array_size_t>(L_133));
MD4Managed_GG_m00A4648827B25DF55EABDF6FFB5C96E871C60E36(__this, (uint32_t*)(&V_1), L_129, L_130, L_131, L_134, (uint8_t)((int32_t)13), /*hidden argument*/NULL);
uint32_t L_135 = V_1;
uint32_t L_136 = V_2;
uint32_t L_137 = V_3;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_138 = __this->get_x_7();
NullCheck(L_138);
int32_t L_139 = 1;
uint32_t L_140 = (L_138)->GetAt(static_cast<il2cpp_array_size_t>(L_139));
MD4Managed_GG_m00A4648827B25DF55EABDF6FFB5C96E871C60E36(__this, (uint32_t*)(&V_0), L_135, L_136, L_137, L_140, (uint8_t)3, /*hidden argument*/NULL);
uint32_t L_141 = V_0;
uint32_t L_142 = V_1;
uint32_t L_143 = V_2;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_144 = __this->get_x_7();
NullCheck(L_144);
int32_t L_145 = 5;
uint32_t L_146 = (L_144)->GetAt(static_cast<il2cpp_array_size_t>(L_145));
MD4Managed_GG_m00A4648827B25DF55EABDF6FFB5C96E871C60E36(__this, (uint32_t*)(&V_3), L_141, L_142, L_143, L_146, (uint8_t)5, /*hidden argument*/NULL);
uint32_t L_147 = V_3;
uint32_t L_148 = V_0;
uint32_t L_149 = V_1;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_150 = __this->get_x_7();
NullCheck(L_150);
int32_t L_151 = ((int32_t)9);
uint32_t L_152 = (L_150)->GetAt(static_cast<il2cpp_array_size_t>(L_151));
MD4Managed_GG_m00A4648827B25DF55EABDF6FFB5C96E871C60E36(__this, (uint32_t*)(&V_2), L_147, L_148, L_149, L_152, (uint8_t)((int32_t)9), /*hidden argument*/NULL);
uint32_t L_153 = V_2;
uint32_t L_154 = V_3;
uint32_t L_155 = V_0;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_156 = __this->get_x_7();
NullCheck(L_156);
int32_t L_157 = ((int32_t)13);
uint32_t L_158 = (L_156)->GetAt(static_cast<il2cpp_array_size_t>(L_157));
MD4Managed_GG_m00A4648827B25DF55EABDF6FFB5C96E871C60E36(__this, (uint32_t*)(&V_1), L_153, L_154, L_155, L_158, (uint8_t)((int32_t)13), /*hidden argument*/NULL);
uint32_t L_159 = V_1;
uint32_t L_160 = V_2;
uint32_t L_161 = V_3;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_162 = __this->get_x_7();
NullCheck(L_162);
int32_t L_163 = 2;
uint32_t L_164 = (L_162)->GetAt(static_cast<il2cpp_array_size_t>(L_163));
MD4Managed_GG_m00A4648827B25DF55EABDF6FFB5C96E871C60E36(__this, (uint32_t*)(&V_0), L_159, L_160, L_161, L_164, (uint8_t)3, /*hidden argument*/NULL);
uint32_t L_165 = V_0;
uint32_t L_166 = V_1;
uint32_t L_167 = V_2;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_168 = __this->get_x_7();
NullCheck(L_168);
int32_t L_169 = 6;
uint32_t L_170 = (L_168)->GetAt(static_cast<il2cpp_array_size_t>(L_169));
MD4Managed_GG_m00A4648827B25DF55EABDF6FFB5C96E871C60E36(__this, (uint32_t*)(&V_3), L_165, L_166, L_167, L_170, (uint8_t)5, /*hidden argument*/NULL);
uint32_t L_171 = V_3;
uint32_t L_172 = V_0;
uint32_t L_173 = V_1;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_174 = __this->get_x_7();
NullCheck(L_174);
int32_t L_175 = ((int32_t)10);
uint32_t L_176 = (L_174)->GetAt(static_cast<il2cpp_array_size_t>(L_175));
MD4Managed_GG_m00A4648827B25DF55EABDF6FFB5C96E871C60E36(__this, (uint32_t*)(&V_2), L_171, L_172, L_173, L_176, (uint8_t)((int32_t)9), /*hidden argument*/NULL);
uint32_t L_177 = V_2;
uint32_t L_178 = V_3;
uint32_t L_179 = V_0;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_180 = __this->get_x_7();
NullCheck(L_180);
int32_t L_181 = ((int32_t)14);
uint32_t L_182 = (L_180)->GetAt(static_cast<il2cpp_array_size_t>(L_181));
MD4Managed_GG_m00A4648827B25DF55EABDF6FFB5C96E871C60E36(__this, (uint32_t*)(&V_1), L_177, L_178, L_179, L_182, (uint8_t)((int32_t)13), /*hidden argument*/NULL);
uint32_t L_183 = V_1;
uint32_t L_184 = V_2;
uint32_t L_185 = V_3;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_186 = __this->get_x_7();
NullCheck(L_186);
int32_t L_187 = 3;
uint32_t L_188 = (L_186)->GetAt(static_cast<il2cpp_array_size_t>(L_187));
MD4Managed_GG_m00A4648827B25DF55EABDF6FFB5C96E871C60E36(__this, (uint32_t*)(&V_0), L_183, L_184, L_185, L_188, (uint8_t)3, /*hidden argument*/NULL);
uint32_t L_189 = V_0;
uint32_t L_190 = V_1;
uint32_t L_191 = V_2;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_192 = __this->get_x_7();
NullCheck(L_192);
int32_t L_193 = 7;
uint32_t L_194 = (L_192)->GetAt(static_cast<il2cpp_array_size_t>(L_193));
MD4Managed_GG_m00A4648827B25DF55EABDF6FFB5C96E871C60E36(__this, (uint32_t*)(&V_3), L_189, L_190, L_191, L_194, (uint8_t)5, /*hidden argument*/NULL);
uint32_t L_195 = V_3;
uint32_t L_196 = V_0;
uint32_t L_197 = V_1;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_198 = __this->get_x_7();
NullCheck(L_198);
int32_t L_199 = ((int32_t)11);
uint32_t L_200 = (L_198)->GetAt(static_cast<il2cpp_array_size_t>(L_199));
MD4Managed_GG_m00A4648827B25DF55EABDF6FFB5C96E871C60E36(__this, (uint32_t*)(&V_2), L_195, L_196, L_197, L_200, (uint8_t)((int32_t)9), /*hidden argument*/NULL);
uint32_t L_201 = V_2;
uint32_t L_202 = V_3;
uint32_t L_203 = V_0;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_204 = __this->get_x_7();
NullCheck(L_204);
int32_t L_205 = ((int32_t)15);
uint32_t L_206 = (L_204)->GetAt(static_cast<il2cpp_array_size_t>(L_205));
MD4Managed_GG_m00A4648827B25DF55EABDF6FFB5C96E871C60E36(__this, (uint32_t*)(&V_1), L_201, L_202, L_203, L_206, (uint8_t)((int32_t)13), /*hidden argument*/NULL);
uint32_t L_207 = V_1;
uint32_t L_208 = V_2;
uint32_t L_209 = V_3;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_210 = __this->get_x_7();
NullCheck(L_210);
int32_t L_211 = 0;
uint32_t L_212 = (L_210)->GetAt(static_cast<il2cpp_array_size_t>(L_211));
MD4Managed_HH_mC0581C10D440E254F218664593ED5291035038F6(__this, (uint32_t*)(&V_0), L_207, L_208, L_209, L_212, (uint8_t)3, /*hidden argument*/NULL);
uint32_t L_213 = V_0;
uint32_t L_214 = V_1;
uint32_t L_215 = V_2;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_216 = __this->get_x_7();
NullCheck(L_216);
int32_t L_217 = 8;
uint32_t L_218 = (L_216)->GetAt(static_cast<il2cpp_array_size_t>(L_217));
MD4Managed_HH_mC0581C10D440E254F218664593ED5291035038F6(__this, (uint32_t*)(&V_3), L_213, L_214, L_215, L_218, (uint8_t)((int32_t)9), /*hidden argument*/NULL);
uint32_t L_219 = V_3;
uint32_t L_220 = V_0;
uint32_t L_221 = V_1;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_222 = __this->get_x_7();
NullCheck(L_222);
int32_t L_223 = 4;
uint32_t L_224 = (L_222)->GetAt(static_cast<il2cpp_array_size_t>(L_223));
MD4Managed_HH_mC0581C10D440E254F218664593ED5291035038F6(__this, (uint32_t*)(&V_2), L_219, L_220, L_221, L_224, (uint8_t)((int32_t)11), /*hidden argument*/NULL);
uint32_t L_225 = V_2;
uint32_t L_226 = V_3;
uint32_t L_227 = V_0;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_228 = __this->get_x_7();
NullCheck(L_228);
int32_t L_229 = ((int32_t)12);
uint32_t L_230 = (L_228)->GetAt(static_cast<il2cpp_array_size_t>(L_229));
MD4Managed_HH_mC0581C10D440E254F218664593ED5291035038F6(__this, (uint32_t*)(&V_1), L_225, L_226, L_227, L_230, (uint8_t)((int32_t)15), /*hidden argument*/NULL);
uint32_t L_231 = V_1;
uint32_t L_232 = V_2;
uint32_t L_233 = V_3;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_234 = __this->get_x_7();
NullCheck(L_234);
int32_t L_235 = 2;
uint32_t L_236 = (L_234)->GetAt(static_cast<il2cpp_array_size_t>(L_235));
MD4Managed_HH_mC0581C10D440E254F218664593ED5291035038F6(__this, (uint32_t*)(&V_0), L_231, L_232, L_233, L_236, (uint8_t)3, /*hidden argument*/NULL);
uint32_t L_237 = V_0;
uint32_t L_238 = V_1;
uint32_t L_239 = V_2;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_240 = __this->get_x_7();
NullCheck(L_240);
int32_t L_241 = ((int32_t)10);
uint32_t L_242 = (L_240)->GetAt(static_cast<il2cpp_array_size_t>(L_241));
MD4Managed_HH_mC0581C10D440E254F218664593ED5291035038F6(__this, (uint32_t*)(&V_3), L_237, L_238, L_239, L_242, (uint8_t)((int32_t)9), /*hidden argument*/NULL);
uint32_t L_243 = V_3;
uint32_t L_244 = V_0;
uint32_t L_245 = V_1;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_246 = __this->get_x_7();
NullCheck(L_246);
int32_t L_247 = 6;
uint32_t L_248 = (L_246)->GetAt(static_cast<il2cpp_array_size_t>(L_247));
MD4Managed_HH_mC0581C10D440E254F218664593ED5291035038F6(__this, (uint32_t*)(&V_2), L_243, L_244, L_245, L_248, (uint8_t)((int32_t)11), /*hidden argument*/NULL);
uint32_t L_249 = V_2;
uint32_t L_250 = V_3;
uint32_t L_251 = V_0;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_252 = __this->get_x_7();
NullCheck(L_252);
int32_t L_253 = ((int32_t)14);
uint32_t L_254 = (L_252)->GetAt(static_cast<il2cpp_array_size_t>(L_253));
MD4Managed_HH_mC0581C10D440E254F218664593ED5291035038F6(__this, (uint32_t*)(&V_1), L_249, L_250, L_251, L_254, (uint8_t)((int32_t)15), /*hidden argument*/NULL);
uint32_t L_255 = V_1;
uint32_t L_256 = V_2;
uint32_t L_257 = V_3;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_258 = __this->get_x_7();
NullCheck(L_258);
int32_t L_259 = 1;
uint32_t L_260 = (L_258)->GetAt(static_cast<il2cpp_array_size_t>(L_259));
MD4Managed_HH_mC0581C10D440E254F218664593ED5291035038F6(__this, (uint32_t*)(&V_0), L_255, L_256, L_257, L_260, (uint8_t)3, /*hidden argument*/NULL);
uint32_t L_261 = V_0;
uint32_t L_262 = V_1;
uint32_t L_263 = V_2;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_264 = __this->get_x_7();
NullCheck(L_264);
int32_t L_265 = ((int32_t)9);
uint32_t L_266 = (L_264)->GetAt(static_cast<il2cpp_array_size_t>(L_265));
MD4Managed_HH_mC0581C10D440E254F218664593ED5291035038F6(__this, (uint32_t*)(&V_3), L_261, L_262, L_263, L_266, (uint8_t)((int32_t)9), /*hidden argument*/NULL);
uint32_t L_267 = V_3;
uint32_t L_268 = V_0;
uint32_t L_269 = V_1;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_270 = __this->get_x_7();
NullCheck(L_270);
int32_t L_271 = 5;
uint32_t L_272 = (L_270)->GetAt(static_cast<il2cpp_array_size_t>(L_271));
MD4Managed_HH_mC0581C10D440E254F218664593ED5291035038F6(__this, (uint32_t*)(&V_2), L_267, L_268, L_269, L_272, (uint8_t)((int32_t)11), /*hidden argument*/NULL);
uint32_t L_273 = V_2;
uint32_t L_274 = V_3;
uint32_t L_275 = V_0;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_276 = __this->get_x_7();
NullCheck(L_276);
int32_t L_277 = ((int32_t)13);
uint32_t L_278 = (L_276)->GetAt(static_cast<il2cpp_array_size_t>(L_277));
MD4Managed_HH_mC0581C10D440E254F218664593ED5291035038F6(__this, (uint32_t*)(&V_1), L_273, L_274, L_275, L_278, (uint8_t)((int32_t)15), /*hidden argument*/NULL);
uint32_t L_279 = V_1;
uint32_t L_280 = V_2;
uint32_t L_281 = V_3;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_282 = __this->get_x_7();
NullCheck(L_282);
int32_t L_283 = 3;
uint32_t L_284 = (L_282)->GetAt(static_cast<il2cpp_array_size_t>(L_283));
MD4Managed_HH_mC0581C10D440E254F218664593ED5291035038F6(__this, (uint32_t*)(&V_0), L_279, L_280, L_281, L_284, (uint8_t)3, /*hidden argument*/NULL);
uint32_t L_285 = V_0;
uint32_t L_286 = V_1;
uint32_t L_287 = V_2;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_288 = __this->get_x_7();
NullCheck(L_288);
int32_t L_289 = ((int32_t)11);
uint32_t L_290 = (L_288)->GetAt(static_cast<il2cpp_array_size_t>(L_289));
MD4Managed_HH_mC0581C10D440E254F218664593ED5291035038F6(__this, (uint32_t*)(&V_3), L_285, L_286, L_287, L_290, (uint8_t)((int32_t)9), /*hidden argument*/NULL);
uint32_t L_291 = V_3;
uint32_t L_292 = V_0;
uint32_t L_293 = V_1;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_294 = __this->get_x_7();
NullCheck(L_294);
int32_t L_295 = 7;
uint32_t L_296 = (L_294)->GetAt(static_cast<il2cpp_array_size_t>(L_295));
MD4Managed_HH_mC0581C10D440E254F218664593ED5291035038F6(__this, (uint32_t*)(&V_2), L_291, L_292, L_293, L_296, (uint8_t)((int32_t)11), /*hidden argument*/NULL);
uint32_t L_297 = V_2;
uint32_t L_298 = V_3;
uint32_t L_299 = V_0;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_300 = __this->get_x_7();
NullCheck(L_300);
int32_t L_301 = ((int32_t)15);
uint32_t L_302 = (L_300)->GetAt(static_cast<il2cpp_array_size_t>(L_301));
MD4Managed_HH_mC0581C10D440E254F218664593ED5291035038F6(__this, (uint32_t*)(&V_1), L_297, L_298, L_299, L_302, (uint8_t)((int32_t)15), /*hidden argument*/NULL);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_303 = ___state0;
NullCheck(L_303);
uint32_t* L_304 = ((L_303)->GetAddressAt(static_cast<il2cpp_array_size_t>(0)));
int32_t L_305 = *((uint32_t*)L_304);
uint32_t L_306 = V_0;
*((int32_t*)L_304) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_305, (int32_t)L_306));
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_307 = ___state0;
NullCheck(L_307);
uint32_t* L_308 = ((L_307)->GetAddressAt(static_cast<il2cpp_array_size_t>(1)));
int32_t L_309 = *((uint32_t*)L_308);
uint32_t L_310 = V_1;
*((int32_t*)L_308) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_309, (int32_t)L_310));
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_311 = ___state0;
NullCheck(L_311);
uint32_t* L_312 = ((L_311)->GetAddressAt(static_cast<il2cpp_array_size_t>(2)));
int32_t L_313 = *((uint32_t*)L_312);
uint32_t L_314 = V_2;
*((int32_t*)L_312) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_313, (int32_t)L_314));
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_315 = ___state0;
NullCheck(L_315);
uint32_t* L_316 = ((L_315)->GetAddressAt(static_cast<il2cpp_array_size_t>(3)));
int32_t L_317 = *((uint32_t*)L_316);
uint32_t L_318 = V_3;
*((int32_t*)L_316) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_317, (int32_t)L_318));
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Security.Cryptography.HashAlgorithm Mono.Security.Cryptography.PKCS1::CreateFromName(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HashAlgorithm_t65659695B16C0BBF05707BF45191A97DC156D6BA * PKCS1_CreateFromName_mB407B0358BF42A94FAA0A3B7DF68A731827C21BE (String_t* ___name0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PKCS1_CreateFromName_mB407B0358BF42A94FAA0A3B7DF68A731827C21BE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint32_t V_0 = 0;
HashAlgorithm_t65659695B16C0BBF05707BF45191A97DC156D6BA * V_1 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
String_t* L_0 = ___name0;
uint32_t L_1 = U3CPrivateImplementationDetailsU3E_ComputeStringHash_m8375D44A8A75C7D8223EA98CF65C40C0BA8C7BEB(L_0, /*hidden argument*/NULL);
V_0 = L_1;
uint32_t L_2 = V_0;
if ((!(((uint32_t)L_2) <= ((uint32_t)((int32_t)1935726387)))))
{
goto IL_0044;
}
}
{
uint32_t L_3 = V_0;
if ((!(((uint32_t)L_3) <= ((uint32_t)((int32_t)415037492)))))
{
goto IL_002f;
}
}
{
uint32_t L_4 = V_0;
if ((((int32_t)L_4) == ((int32_t)((int32_t)206706215))))
{
goto IL_00e5;
}
}
{
uint32_t L_5 = V_0;
if ((((int32_t)L_5) == ((int32_t)((int32_t)415037492))))
{
goto IL_00a9;
}
}
{
goto IL_0124;
}
IL_002f:
{
uint32_t L_6 = V_0;
if ((((int32_t)L_6) == ((int32_t)((int32_t)1918948768))))
{
goto IL_0088;
}
}
{
uint32_t L_7 = V_0;
if ((((int32_t)L_7) == ((int32_t)((int32_t)1935726387))))
{
goto IL_009a;
}
}
{
goto IL_0124;
}
IL_0044:
{
uint32_t L_8 = V_0;
if ((!(((uint32_t)L_8) <= ((uint32_t)((int32_t)-1330447974)))))
{
goto IL_0061;
}
}
{
uint32_t L_9 = V_0;
if ((((int32_t)L_9) == ((int32_t)((int32_t)2019614482))))
{
goto IL_0076;
}
}
{
uint32_t L_10 = V_0;
if ((((int32_t)L_10) == ((int32_t)((int32_t)-1330447974))))
{
goto IL_00b8;
}
}
{
goto IL_0124;
}
IL_0061:
{
uint32_t L_11 = V_0;
if ((((int32_t)L_11) == ((int32_t)((int32_t)-1267551733))))
{
goto IL_00d6;
}
}
{
uint32_t L_12 = V_0;
if ((((int32_t)L_12) == ((int32_t)((int32_t)-1240198026))))
{
goto IL_00c7;
}
}
{
goto IL_0124;
}
IL_0076:
{
String_t* L_13 = ___name0;
bool L_14 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_13, _stringLiteral83BD2260257D398076A738813A94BD2F37D6F282, /*hidden argument*/NULL);
if (L_14)
{
goto IL_00f4;
}
}
{
goto IL_0124;
}
IL_0088:
{
String_t* L_15 = ___name0;
bool L_16 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_15, _stringLiteral86E9FFF1D00C68995BA96D3B00B707D9685F6995, /*hidden argument*/NULL);
if (L_16)
{
goto IL_00fa;
}
}
{
goto IL_0124;
}
IL_009a:
{
String_t* L_17 = ___name0;
bool L_18 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_17, _stringLiteralB773BED04A48DE200B96981BB79467413A222066, /*hidden argument*/NULL);
if (L_18)
{
goto IL_0100;
}
}
{
goto IL_0124;
}
IL_00a9:
{
String_t* L_19 = ___name0;
bool L_20 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_19, _stringLiteralE1744A525099D9A53C0460EF9CB7AB0E4C4FC939, /*hidden argument*/NULL);
if (L_20)
{
goto IL_0106;
}
}
{
goto IL_0124;
}
IL_00b8:
{
String_t* L_21 = ___name0;
bool L_22 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_21, _stringLiteralB92E713B21B29946A52E5FFE714C82EB670E98F9, /*hidden argument*/NULL);
if (L_22)
{
goto IL_010c;
}
}
{
goto IL_0124;
}
IL_00c7:
{
String_t* L_23 = ___name0;
bool L_24 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_23, _stringLiteral5AB8FB3BA84C84C0B9929FD9B6D13F639D3078BB, /*hidden argument*/NULL);
if (L_24)
{
goto IL_0112;
}
}
{
goto IL_0124;
}
IL_00d6:
{
String_t* L_25 = ___name0;
bool L_26 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_25, _stringLiteral42CC065F07E499226AC12F2671F652ACFDAF3D73, /*hidden argument*/NULL);
if (L_26)
{
goto IL_0118;
}
}
{
goto IL_0124;
}
IL_00e5:
{
String_t* L_27 = ___name0;
bool L_28 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_27, _stringLiteralB40D6CD4CF673AC976ECA2909907795C34BC177E, /*hidden argument*/NULL);
if (L_28)
{
goto IL_011e;
}
}
{
goto IL_0124;
}
IL_00f4:
{
MD2_tCAAEC1A28A3D0B9E8810B27E4840BEA399619442 * L_29 = MD2_Create_mF375441B9B1B701ECE73B9B51AFE4E3ADDE6E02F(/*hidden argument*/NULL);
return L_29;
}
IL_00fa:
{
MD4_t932C1DEA44D4B8650873251E88AA4096164BB380 * L_30 = MD4_Create_m2D436A4CC284704A7DA0EEF4C4D5860F69D0BB93(/*hidden argument*/NULL);
return L_30;
}
IL_0100:
{
MD5_tCED753745572EC20FE5D31D15F132736B5343EE6 * L_31 = MD5_Create_m87EB14601AD6AF168032C29DA938E18454CA05AE(/*hidden argument*/NULL);
return L_31;
}
IL_0106:
{
SHA1_t242C3C0C91D0CC11FA6F3CB0B06B416A550C6EAA * L_32 = SHA1_Create_m5ECE86DE88BB9CDD4674000066642BA7FDF466E4(/*hidden argument*/NULL);
return L_32;
}
IL_010c:
{
SHA256_tF15350D910DF8AC1E6ADDBA904218F95554711BD * L_33 = SHA256_Create_mBB1886B9CB89D706FB87832AB8EC74F3BD835C3F(/*hidden argument*/NULL);
return L_33;
}
IL_0112:
{
SHA384_t73C69FA7FB10EF83355734BE635F079515FF5D37 * L_34 = SHA384_Create_m1DB8E3BCF13E7A7A3903B0609491D6A1170C0695(/*hidden argument*/NULL);
return L_34;
}
IL_0118:
{
SHA512_tA4117C79CCB7ECF8AC39BDBE41A0D0294E9D6936 * L_35 = SHA512_Create_mFAF244BD7F518A7FFCC07C8858EAC625FDA7B25E(/*hidden argument*/NULL);
return L_35;
}
IL_011e:
{
RIPEMD160_t5BF1FB38C534BF0083B35AC6880867E11448EFE9 * L_36 = RIPEMD160_Create_mA05D45DE1F4811F68B3BFE07CE48E025916D93F0(/*hidden argument*/NULL);
return L_36;
}
IL_0124:
{
}
IL_0125:
try
{ // begin try (depth: 1)
String_t* L_37 = ___name0;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_38 = il2cpp_codegen_get_type((Il2CppMethodPointer)&Type_GetType_mCF0A3B28889C9FFB9987C8D30C23DF0912E7C00C, L_37, "Mono.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756");
RuntimeObject * L_39 = Activator_CreateInstance_mD06EE47879F606317C6DA91FB63E678CABAC6A16(L_38, /*hidden argument*/NULL);
V_1 = ((HashAlgorithm_t65659695B16C0BBF05707BF45191A97DC156D6BA *)CastclassClass((RuntimeObject*)L_39, HashAlgorithm_t65659695B16C0BBF05707BF45191A97DC156D6BA_il2cpp_TypeInfo_var));
goto IL_014a;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (RuntimeObject_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0138;
throw e;
}
CATCH_0138:
{ // begin catch(System.Object)
String_t* L_40 = ___name0;
String_t* L_41 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(_stringLiteral605F515DB23E613CEB4831C6EACE4C2B023EAEAB, L_40, /*hidden argument*/NULL);
CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A * L_42 = (CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A *)il2cpp_codegen_object_new(CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A_il2cpp_TypeInfo_var);
CryptographicException__ctor_m0A5D357C12F9A830A9EBC51723094EBA5B854B98(L_42, L_41, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_42, NULL, PKCS1_CreateFromName_mB407B0358BF42A94FAA0A3B7DF68A731827C21BE_RuntimeMethod_var);
} // end catch (depth: 1)
IL_014a:
{
HashAlgorithm_t65659695B16C0BBF05707BF45191A97DC156D6BA * L_43 = V_1;
return L_43;
}
}
// System.Void Mono.Security.Cryptography.PKCS1::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PKCS1__cctor_mA0BF327C9ECE4E5B1AACA740DBF4A61FB4F88825 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PKCS1__cctor_mA0BF327C9ECE4E5B1AACA740DBF4A61FB4F88825_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)((int32_t)20));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = L_0;
RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_2 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_tF21437707AFAA06797AEDEE07C84D4D3CC2837FA____BE1BDEC0AA74B4DCB079943E70528096CCA985F8_20_FieldInfo_var) };
RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_1, L_2, /*hidden argument*/NULL);
((PKCS1_t5ABACACDDA0FE1D9A3D2ECD6BEB8815C8431B222_StaticFields*)il2cpp_codegen_static_fields_for(PKCS1_t5ABACACDDA0FE1D9A3D2ECD6BEB8815C8431B222_il2cpp_TypeInfo_var))->set_emptySHA1_0(L_1);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)((int32_t)32));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = L_3;
RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_5 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_tF21437707AFAA06797AEDEE07C84D4D3CC2837FA____D28E8ABDBD777A482CE0EE5C24814ACAE52AABFE_23_FieldInfo_var) };
RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_4, L_5, /*hidden argument*/NULL);
((PKCS1_t5ABACACDDA0FE1D9A3D2ECD6BEB8815C8431B222_StaticFields*)il2cpp_codegen_static_fields_for(PKCS1_t5ABACACDDA0FE1D9A3D2ECD6BEB8815C8431B222_il2cpp_TypeInfo_var))->set_emptySHA256_1(L_4);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_6 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)((int32_t)48));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_7 = L_6;
RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_8 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_tF21437707AFAA06797AEDEE07C84D4D3CC2837FA____4E3B533C39447AAEB59A8E48FABD7E15B5B5D195_8_FieldInfo_var) };
RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_7, L_8, /*hidden argument*/NULL);
((PKCS1_t5ABACACDDA0FE1D9A3D2ECD6BEB8815C8431B222_StaticFields*)il2cpp_codegen_static_fields_for(PKCS1_t5ABACACDDA0FE1D9A3D2ECD6BEB8815C8431B222_il2cpp_TypeInfo_var))->set_emptySHA384_2(L_7);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_9 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)((int32_t)64));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_10 = L_9;
RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_11 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_tF21437707AFAA06797AEDEE07C84D4D3CC2837FA____E75835D001C843F156FBA01B001DFE1B8029AC17_25_FieldInfo_var) };
RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_10, L_11, /*hidden argument*/NULL);
((PKCS1_t5ABACACDDA0FE1D9A3D2ECD6BEB8815C8431B222_StaticFields*)il2cpp_codegen_static_fields_for(PKCS1_t5ABACACDDA0FE1D9A3D2ECD6BEB8815C8431B222_il2cpp_TypeInfo_var))->set_emptySHA512_3(L_10);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Mono.Security.Cryptography.PKCS8_EncryptedPrivateKeyInfo::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EncryptedPrivateKeyInfo__ctor_m8244581E6D6275989DE1D18E79B663BF62943069 (EncryptedPrivateKeyInfo_tF582FAE09721F4F2BB353D5C2E28682FFB9C303D * __this, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void Mono.Security.Cryptography.PKCS8_EncryptedPrivateKeyInfo::.ctor(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EncryptedPrivateKeyInfo__ctor_mB2FBC3DDB156046CBB737280E490994A3B20362A (EncryptedPrivateKeyInfo_tF582FAE09721F4F2BB353D5C2E28682FFB9C303D * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___data0, const RuntimeMethod* method)
{
{
EncryptedPrivateKeyInfo__ctor_m8244581E6D6275989DE1D18E79B663BF62943069(__this, /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___data0;
EncryptedPrivateKeyInfo_Decode_mC67C5672B7231974FCDF510FD280883B2E5C8639(__this, L_0, /*hidden argument*/NULL);
return;
}
}
// System.String Mono.Security.Cryptography.PKCS8_EncryptedPrivateKeyInfo::get_Algorithm()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* EncryptedPrivateKeyInfo_get_Algorithm_m93A361B3EE1EDF57B8D83ECF187CD75E6B45A9D9 (EncryptedPrivateKeyInfo_tF582FAE09721F4F2BB353D5C2E28682FFB9C303D * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get__algorithm_0();
return L_0;
}
}
// System.Byte[] Mono.Security.Cryptography.PKCS8_EncryptedPrivateKeyInfo::get_EncryptedData()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* EncryptedPrivateKeyInfo_get_EncryptedData_m0EB3C77C669117FCB3E0A5DA1758F9B0A18573D3 (EncryptedPrivateKeyInfo_tF582FAE09721F4F2BB353D5C2E28682FFB9C303D * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EncryptedPrivateKeyInfo_get_EncryptedData_m0EB3C77C669117FCB3E0A5DA1758F9B0A18573D3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = __this->get__data_3();
if (!L_0)
{
goto IL_0019;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = __this->get__data_3();
NullCheck((RuntimeArray *)(RuntimeArray *)L_1);
RuntimeObject * L_2 = Array_Clone_mE8C710213E323617A6F46F2B36DCDDD4C7CF5176((RuntimeArray *)(RuntimeArray *)L_1, /*hidden argument*/NULL);
return ((ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)Castclass((RuntimeObject*)L_2, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var));
}
IL_0019:
{
return (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)NULL;
}
}
// System.Byte[] Mono.Security.Cryptography.PKCS8_EncryptedPrivateKeyInfo::get_Salt()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* EncryptedPrivateKeyInfo_get_Salt_mF231C0F3BC06F402910179312CC9245911450C4B (EncryptedPrivateKeyInfo_tF582FAE09721F4F2BB353D5C2E28682FFB9C303D * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EncryptedPrivateKeyInfo_get_Salt_mF231C0F3BC06F402910179312CC9245911450C4B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = __this->get__salt_1();
if (L_0)
{
goto IL_0024;
}
}
{
RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * L_1 = RandomNumberGenerator_Create_mB84B1BA538B29D0679F310D3B574A7D5BAA890C4(/*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)8);
__this->set__salt_1(L_2);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = __this->get__salt_1();
NullCheck(L_1);
VirtActionInvoker1< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(6 /* System.Void System.Security.Cryptography.RandomNumberGenerator::GetBytes(System.Byte[]) */, L_1, L_3);
}
IL_0024:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = __this->get__salt_1();
NullCheck((RuntimeArray *)(RuntimeArray *)L_4);
RuntimeObject * L_5 = Array_Clone_mE8C710213E323617A6F46F2B36DCDDD4C7CF5176((RuntimeArray *)(RuntimeArray *)L_4, /*hidden argument*/NULL);
return ((ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)Castclass((RuntimeObject*)L_5, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var));
}
}
// System.Int32 Mono.Security.Cryptography.PKCS8_EncryptedPrivateKeyInfo::get_IterationCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EncryptedPrivateKeyInfo_get_IterationCount_m3CD06665FBE6C8B3965AA0D870B702A4E6F833FC (EncryptedPrivateKeyInfo_tF582FAE09721F4F2BB353D5C2E28682FFB9C303D * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get__iterations_2();
return L_0;
}
}
// System.Void Mono.Security.Cryptography.PKCS8_EncryptedPrivateKeyInfo::Decode(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EncryptedPrivateKeyInfo_Decode_mC67C5672B7231974FCDF510FD280883B2E5C8639 (EncryptedPrivateKeyInfo_tF582FAE09721F4F2BB353D5C2E28682FFB9C303D * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___data0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EncryptedPrivateKeyInfo_Decode_mC67C5672B7231974FCDF510FD280883B2E5C8639_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * V_0 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * V_1 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * V_2 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * V_3 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * V_4 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * G_B2_0 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * G_B1_0 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * G_B4_0 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * G_B3_0 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * G_B6_0 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * G_B5_0 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * G_B14_0 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * G_B7_0 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * G_B9_0 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * G_B9_1 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * G_B8_0 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * G_B8_1 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * G_B11_0 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * G_B11_1 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * G_B10_0 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * G_B10_1 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * G_B13_0 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * G_B12_0 = NULL;
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___data0;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_1 = (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E *)il2cpp_codegen_object_new(ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E_il2cpp_TypeInfo_var);
ASN1__ctor_mE005F52336402C3D41EAD9E28A95910B3C0865DA(L_1, L_0, /*hidden argument*/NULL);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_2 = L_1;
NullCheck(L_2);
uint8_t L_3 = ASN1_get_Tag_m1346989AC839D85A9E0A211525A6B551974E4862_inline(L_2, /*hidden argument*/NULL);
G_B1_0 = L_2;
if ((((int32_t)L_3) == ((int32_t)((int32_t)48))))
{
G_B2_0 = L_2;
goto IL_001b;
}
}
{
CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A * L_4 = (CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A *)il2cpp_codegen_object_new(CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A_il2cpp_TypeInfo_var);
CryptographicException__ctor_m0A5D357C12F9A830A9EBC51723094EBA5B854B98(L_4, _stringLiteralDCABF61621CAD370E5A1627F06A24046C669ADF8, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, EncryptedPrivateKeyInfo_Decode_mC67C5672B7231974FCDF510FD280883B2E5C8639_RuntimeMethod_var);
}
IL_001b:
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_5 = G_B2_0;
NullCheck(L_5);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_6 = ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08(L_5, 0, /*hidden argument*/NULL);
V_0 = L_6;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_7 = V_0;
NullCheck(L_7);
uint8_t L_8 = ASN1_get_Tag_m1346989AC839D85A9E0A211525A6B551974E4862_inline(L_7, /*hidden argument*/NULL);
G_B3_0 = L_5;
if ((((int32_t)L_8) == ((int32_t)((int32_t)48))))
{
G_B4_0 = L_5;
goto IL_0038;
}
}
{
CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A * L_9 = (CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A *)il2cpp_codegen_object_new(CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A_il2cpp_TypeInfo_var);
CryptographicException__ctor_m0A5D357C12F9A830A9EBC51723094EBA5B854B98(L_9, _stringLiteralBD9F58A710FAC588AA107D63418A112D1F511D9C, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, EncryptedPrivateKeyInfo_Decode_mC67C5672B7231974FCDF510FD280883B2E5C8639_RuntimeMethod_var);
}
IL_0038:
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_10 = V_0;
NullCheck(L_10);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_11 = ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08(L_10, 0, /*hidden argument*/NULL);
V_1 = L_11;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_12 = V_1;
NullCheck(L_12);
uint8_t L_13 = ASN1_get_Tag_m1346989AC839D85A9E0A211525A6B551974E4862_inline(L_12, /*hidden argument*/NULL);
G_B5_0 = G_B4_0;
if ((((int32_t)L_13) == ((int32_t)6)))
{
G_B6_0 = G_B4_0;
goto IL_0054;
}
}
{
CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A * L_14 = (CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A *)il2cpp_codegen_object_new(CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A_il2cpp_TypeInfo_var);
CryptographicException__ctor_m0A5D357C12F9A830A9EBC51723094EBA5B854B98(L_14, _stringLiteralB6A6783D731A42C54B01BD71A6FD5F120594BE18, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_14, NULL, EncryptedPrivateKeyInfo_Decode_mC67C5672B7231974FCDF510FD280883B2E5C8639_RuntimeMethod_var);
}
IL_0054:
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_15 = V_1;
String_t* L_16 = ASN1Convert_ToOid_mFFA93B4BBEFCA8E4E86DAE87CDB998E78BFB2D5A(L_15, /*hidden argument*/NULL);
__this->set__algorithm_0(L_16);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_17 = V_0;
NullCheck(L_17);
int32_t L_18 = ASN1_get_Count_m5A0E71B4C4A2257C0875AE1041AAA953C5B12A19(L_17, /*hidden argument*/NULL);
G_B7_0 = G_B6_0;
if ((((int32_t)L_18) <= ((int32_t)1)))
{
G_B14_0 = G_B6_0;
goto IL_00d7;
}
}
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_19 = V_0;
NullCheck(L_19);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_20 = ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08(L_19, 1, /*hidden argument*/NULL);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_21 = L_20;
NullCheck(L_21);
uint8_t L_22 = ASN1_get_Tag_m1346989AC839D85A9E0A211525A6B551974E4862_inline(L_21, /*hidden argument*/NULL);
G_B8_0 = L_21;
G_B8_1 = G_B7_0;
if ((((int32_t)L_22) == ((int32_t)((int32_t)48))))
{
G_B9_0 = L_21;
G_B9_1 = G_B7_0;
goto IL_0085;
}
}
{
CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A * L_23 = (CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A *)il2cpp_codegen_object_new(CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A_il2cpp_TypeInfo_var);
CryptographicException__ctor_m0A5D357C12F9A830A9EBC51723094EBA5B854B98(L_23, _stringLiteral613FFB9B58FE9C68FF1D6DE407465C3D9BE81982, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_23, NULL, EncryptedPrivateKeyInfo_Decode_mC67C5672B7231974FCDF510FD280883B2E5C8639_RuntimeMethod_var);
}
IL_0085:
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_24 = G_B9_0;
NullCheck(L_24);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_25 = ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08(L_24, 0, /*hidden argument*/NULL);
V_3 = L_25;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_26 = V_3;
NullCheck(L_26);
uint8_t L_27 = ASN1_get_Tag_m1346989AC839D85A9E0A211525A6B551974E4862_inline(L_26, /*hidden argument*/NULL);
G_B10_0 = L_24;
G_B10_1 = G_B9_1;
if ((((int32_t)L_27) == ((int32_t)4)))
{
G_B11_0 = L_24;
G_B11_1 = G_B9_1;
goto IL_00a1;
}
}
{
CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A * L_28 = (CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A *)il2cpp_codegen_object_new(CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A_il2cpp_TypeInfo_var);
CryptographicException__ctor_m0A5D357C12F9A830A9EBC51723094EBA5B854B98(L_28, _stringLiteralEC870C8EC386B18E4953A9C1A441B73E787FE3E3, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_28, NULL, EncryptedPrivateKeyInfo_Decode_mC67C5672B7231974FCDF510FD280883B2E5C8639_RuntimeMethod_var);
}
IL_00a1:
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_29 = V_3;
NullCheck(L_29);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_30 = ASN1_get_Value_m9BD6239E12A6148AF9507C2F58058C6B8147A079(L_29, /*hidden argument*/NULL);
__this->set__salt_1(L_30);
NullCheck(G_B11_0);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_31 = ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08(G_B11_0, 1, /*hidden argument*/NULL);
V_4 = L_31;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_32 = V_4;
NullCheck(L_32);
uint8_t L_33 = ASN1_get_Tag_m1346989AC839D85A9E0A211525A6B551974E4862_inline(L_32, /*hidden argument*/NULL);
G_B12_0 = G_B11_1;
if ((((int32_t)L_33) == ((int32_t)2)))
{
G_B13_0 = G_B11_1;
goto IL_00ca;
}
}
{
CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A * L_34 = (CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A *)il2cpp_codegen_object_new(CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A_il2cpp_TypeInfo_var);
CryptographicException__ctor_m0A5D357C12F9A830A9EBC51723094EBA5B854B98(L_34, _stringLiteralA28F5F35CE0911B6863CEB2418D166A24D8E77FA, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_34, NULL, EncryptedPrivateKeyInfo_Decode_mC67C5672B7231974FCDF510FD280883B2E5C8639_RuntimeMethod_var);
}
IL_00ca:
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_35 = V_4;
int32_t L_36 = ASN1Convert_ToInt32_mA2A8761F965979408D46FBEB946DB59F36137A5E(L_35, /*hidden argument*/NULL);
__this->set__iterations_2(L_36);
G_B14_0 = G_B13_0;
}
IL_00d7:
{
NullCheck(G_B14_0);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_37 = ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08(G_B14_0, 1, /*hidden argument*/NULL);
V_2 = L_37;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_38 = V_2;
NullCheck(L_38);
uint8_t L_39 = ASN1_get_Tag_m1346989AC839D85A9E0A211525A6B551974E4862_inline(L_38, /*hidden argument*/NULL);
if ((((int32_t)L_39) == ((int32_t)4)))
{
goto IL_00f2;
}
}
{
CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A * L_40 = (CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A *)il2cpp_codegen_object_new(CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A_il2cpp_TypeInfo_var);
CryptographicException__ctor_m0A5D357C12F9A830A9EBC51723094EBA5B854B98(L_40, _stringLiteral8CE5CDE3AE12BB7F114211660525770636C8128A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_40, NULL, EncryptedPrivateKeyInfo_Decode_mC67C5672B7231974FCDF510FD280883B2E5C8639_RuntimeMethod_var);
}
IL_00f2:
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_41 = V_2;
NullCheck(L_41);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_42 = ASN1_get_Value_m9BD6239E12A6148AF9507C2F58058C6B8147A079(L_41, /*hidden argument*/NULL);
__this->set__data_3(L_42);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Mono.Security.Cryptography.PKCS8_PrivateKeyInfo::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PrivateKeyInfo__ctor_m589C6263501E8226678D7B08B7C816E9C9EBD939 (PrivateKeyInfo_t053A73C524EC661748073EC908D290E2856DB5B9 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PrivateKeyInfo__ctor_m589C6263501E8226678D7B08B7C816E9C9EBD939_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
__this->set__version_0(0);
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_0 = (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 *)il2cpp_codegen_object_new(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_il2cpp_TypeInfo_var);
ArrayList__ctor_m481FA7B37620B59B8C0434A764F5705A6ABDEAE6(L_0, /*hidden argument*/NULL);
__this->set__list_3(L_0);
return;
}
}
// System.Void Mono.Security.Cryptography.PKCS8_PrivateKeyInfo::.ctor(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PrivateKeyInfo__ctor_m4FE1CE37466756FCCAD2C7320E6E8E8B0D4D603A (PrivateKeyInfo_t053A73C524EC661748073EC908D290E2856DB5B9 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___data0, const RuntimeMethod* method)
{
{
PrivateKeyInfo__ctor_m589C6263501E8226678D7B08B7C816E9C9EBD939(__this, /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___data0;
PrivateKeyInfo_Decode_mC8128B0803CD098039C8281AF413EEADD82EF13C(__this, L_0, /*hidden argument*/NULL);
return;
}
}
// System.Byte[] Mono.Security.Cryptography.PKCS8_PrivateKeyInfo::get_PrivateKey()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* PrivateKeyInfo_get_PrivateKey_mC390394E64E5FE39B4A833E7D91CF20A899179FA (PrivateKeyInfo_t053A73C524EC661748073EC908D290E2856DB5B9 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PrivateKeyInfo_get_PrivateKey_mC390394E64E5FE39B4A833E7D91CF20A899179FA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = __this->get__key_2();
if (L_0)
{
goto IL_000a;
}
}
{
return (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)NULL;
}
IL_000a:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = __this->get__key_2();
NullCheck((RuntimeArray *)(RuntimeArray *)L_1);
RuntimeObject * L_2 = Array_Clone_mE8C710213E323617A6F46F2B36DCDDD4C7CF5176((RuntimeArray *)(RuntimeArray *)L_1, /*hidden argument*/NULL);
return ((ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)Castclass((RuntimeObject*)L_2, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var));
}
}
// System.Void Mono.Security.Cryptography.PKCS8_PrivateKeyInfo::Decode(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PrivateKeyInfo_Decode_mC8128B0803CD098039C8281AF413EEADD82EF13C (PrivateKeyInfo_t053A73C524EC661748073EC908D290E2856DB5B9 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___data0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PrivateKeyInfo_Decode_mC8128B0803CD098039C8281AF413EEADD82EF13C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * V_0 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * V_1 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * V_2 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * V_3 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * V_4 = NULL;
int32_t V_5 = 0;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * G_B6_0 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * G_B5_0 = NULL;
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___data0;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_1 = (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E *)il2cpp_codegen_object_new(ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E_il2cpp_TypeInfo_var);
ASN1__ctor_mE005F52336402C3D41EAD9E28A95910B3C0865DA(L_1, L_0, /*hidden argument*/NULL);
V_0 = L_1;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_2 = V_0;
NullCheck(L_2);
uint8_t L_3 = ASN1_get_Tag_m1346989AC839D85A9E0A211525A6B551974E4862_inline(L_2, /*hidden argument*/NULL);
if ((((int32_t)L_3) == ((int32_t)((int32_t)48))))
{
goto IL_001c;
}
}
{
CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A * L_4 = (CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A *)il2cpp_codegen_object_new(CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A_il2cpp_TypeInfo_var);
CryptographicException__ctor_m0A5D357C12F9A830A9EBC51723094EBA5B854B98(L_4, _stringLiteral2BBCCAEF340E6A667F3B3DEDEBD6B2545083F4B4, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, PrivateKeyInfo_Decode_mC8128B0803CD098039C8281AF413EEADD82EF13C_RuntimeMethod_var);
}
IL_001c:
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_5 = V_0;
NullCheck(L_5);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_6 = ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08(L_5, 0, /*hidden argument*/NULL);
V_1 = L_6;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_7 = V_1;
NullCheck(L_7);
uint8_t L_8 = ASN1_get_Tag_m1346989AC839D85A9E0A211525A6B551974E4862_inline(L_7, /*hidden argument*/NULL);
if ((((int32_t)L_8) == ((int32_t)2)))
{
goto IL_0038;
}
}
{
CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A * L_9 = (CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A *)il2cpp_codegen_object_new(CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A_il2cpp_TypeInfo_var);
CryptographicException__ctor_m0A5D357C12F9A830A9EBC51723094EBA5B854B98(L_9, _stringLiteralAE01F992CF8E34DD0175C6CC6992DE1FB67CFFCF, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, PrivateKeyInfo_Decode_mC8128B0803CD098039C8281AF413EEADD82EF13C_RuntimeMethod_var);
}
IL_0038:
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_10 = V_1;
NullCheck(L_10);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_11 = ASN1_get_Value_m9BD6239E12A6148AF9507C2F58058C6B8147A079(L_10, /*hidden argument*/NULL);
NullCheck(L_11);
int32_t L_12 = 0;
uint8_t L_13 = (L_11)->GetAt(static_cast<il2cpp_array_size_t>(L_12));
__this->set__version_0(L_13);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_14 = V_0;
NullCheck(L_14);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_15 = ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08(L_14, 1, /*hidden argument*/NULL);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_16 = L_15;
NullCheck(L_16);
uint8_t L_17 = ASN1_get_Tag_m1346989AC839D85A9E0A211525A6B551974E4862_inline(L_16, /*hidden argument*/NULL);
G_B5_0 = L_16;
if ((((int32_t)L_17) == ((int32_t)((int32_t)48))))
{
G_B6_0 = L_16;
goto IL_0062;
}
}
{
CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A * L_18 = (CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A *)il2cpp_codegen_object_new(CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A_il2cpp_TypeInfo_var);
CryptographicException__ctor_m0A5D357C12F9A830A9EBC51723094EBA5B854B98(L_18, _stringLiteralB6A6783D731A42C54B01BD71A6FD5F120594BE18, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_18, NULL, PrivateKeyInfo_Decode_mC8128B0803CD098039C8281AF413EEADD82EF13C_RuntimeMethod_var);
}
IL_0062:
{
NullCheck(G_B6_0);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_19 = ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08(G_B6_0, 0, /*hidden argument*/NULL);
V_2 = L_19;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_20 = V_2;
NullCheck(L_20);
uint8_t L_21 = ASN1_get_Tag_m1346989AC839D85A9E0A211525A6B551974E4862_inline(L_20, /*hidden argument*/NULL);
if ((((int32_t)L_21) == ((int32_t)6)))
{
goto IL_007d;
}
}
{
CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A * L_22 = (CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A *)il2cpp_codegen_object_new(CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A_il2cpp_TypeInfo_var);
CryptographicException__ctor_m0A5D357C12F9A830A9EBC51723094EBA5B854B98(L_22, _stringLiteral84FF1FC8EFD0C9C1C39DF85058324C2B8AAAC64C, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_22, NULL, PrivateKeyInfo_Decode_mC8128B0803CD098039C8281AF413EEADD82EF13C_RuntimeMethod_var);
}
IL_007d:
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_23 = V_2;
String_t* L_24 = ASN1Convert_ToOid_mFFA93B4BBEFCA8E4E86DAE87CDB998E78BFB2D5A(L_23, /*hidden argument*/NULL);
__this->set__algorithm_1(L_24);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_25 = V_0;
NullCheck(L_25);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_26 = ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08(L_25, 2, /*hidden argument*/NULL);
V_3 = L_26;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_27 = V_3;
NullCheck(L_27);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_28 = ASN1_get_Value_m9BD6239E12A6148AF9507C2F58058C6B8147A079(L_27, /*hidden argument*/NULL);
__this->set__key_2(L_28);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_29 = V_0;
NullCheck(L_29);
int32_t L_30 = ASN1_get_Count_m5A0E71B4C4A2257C0875AE1041AAA953C5B12A19(L_29, /*hidden argument*/NULL);
if ((((int32_t)L_30) <= ((int32_t)3)))
{
goto IL_00da;
}
}
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_31 = V_0;
NullCheck(L_31);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_32 = ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08(L_31, 3, /*hidden argument*/NULL);
V_4 = L_32;
V_5 = 0;
goto IL_00cf;
}
IL_00b4:
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_33 = __this->get__list_3();
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_34 = V_4;
int32_t L_35 = V_5;
NullCheck(L_34);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_36 = ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08(L_34, L_35, /*hidden argument*/NULL);
NullCheck(L_33);
VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_33, L_36);
int32_t L_37 = V_5;
V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_37, (int32_t)1));
}
IL_00cf:
{
int32_t L_38 = V_5;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_39 = V_4;
NullCheck(L_39);
int32_t L_40 = ASN1_get_Count_m5A0E71B4C4A2257C0875AE1041AAA953C5B12A19(L_39, /*hidden argument*/NULL);
if ((((int32_t)L_38) < ((int32_t)L_40)))
{
goto IL_00b4;
}
}
IL_00da:
{
return;
}
}
// System.Byte[] Mono.Security.Cryptography.PKCS8_PrivateKeyInfo::RemoveLeadingZero(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* PrivateKeyInfo_RemoveLeadingZero_m674CB83B855FB14F8C49F062C3261D2587596384 (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___bigInt0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PrivateKeyInfo_RemoveLeadingZero_m674CB83B855FB14F8C49F062C3261D2587596384_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_2 = NULL;
{
V_0 = 0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___bigInt0;
NullCheck(L_0);
V_1 = (((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = ___bigInt0;
NullCheck(L_1);
int32_t L_2 = 0;
uint8_t L_3 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
if (L_3)
{
goto IL_0011;
}
}
{
V_0 = 1;
int32_t L_4 = V_1;
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
}
IL_0011:
{
int32_t L_5 = V_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_6 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)L_5);
V_2 = L_6;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_7 = ___bigInt0;
int32_t L_8 = V_0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_9 = V_2;
int32_t L_10 = V_1;
Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353((RuntimeArray *)(RuntimeArray *)L_7, L_8, (RuntimeArray *)(RuntimeArray *)L_9, 0, L_10, /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_11 = V_2;
return L_11;
}
}
// System.Byte[] Mono.Security.Cryptography.PKCS8_PrivateKeyInfo::Normalize(System.Byte[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* PrivateKeyInfo_Normalize_m918031FFC55B1092BD5004D914538F78CE701606 (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___bigInt0, int32_t ___length1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PrivateKeyInfo_Normalize_m918031FFC55B1092BD5004D914538F78CE701606_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_0 = NULL;
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___bigInt0;
NullCheck(L_0);
int32_t L_1 = ___length1;
if ((!(((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length))))) == ((uint32_t)L_1))))
{
goto IL_0008;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = ___bigInt0;
return L_2;
}
IL_0008:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = ___bigInt0;
NullCheck(L_3);
int32_t L_4 = ___length1;
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length))))) <= ((int32_t)L_4)))
{
goto IL_0015;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_5 = ___bigInt0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_6 = PrivateKeyInfo_RemoveLeadingZero_m674CB83B855FB14F8C49F062C3261D2587596384(L_5, /*hidden argument*/NULL);
return L_6;
}
IL_0015:
{
int32_t L_7 = ___length1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_8 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)L_7);
V_0 = L_8;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_9 = ___bigInt0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_10 = V_0;
int32_t L_11 = ___length1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_12 = ___bigInt0;
NullCheck(L_12);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_13 = ___bigInt0;
NullCheck(L_13);
Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353((RuntimeArray *)(RuntimeArray *)L_9, 0, (RuntimeArray *)(RuntimeArray *)L_10, ((int32_t)il2cpp_codegen_subtract((int32_t)L_11, (int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_12)->max_length)))))), (((int32_t)((int32_t)(((RuntimeArray*)L_13)->max_length)))), /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_14 = V_0;
return L_14;
}
}
// System.Security.Cryptography.RSA Mono.Security.Cryptography.PKCS8_PrivateKeyInfo::DecodeRSA(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RSA_tB6C4B434B2AC02E3F8981DB2908C2018E251D145 * PrivateKeyInfo_DecodeRSA_m47EEB9282E7E66ED9256F2097B4E5C757B79B080 (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___keypair0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PrivateKeyInfo_DecodeRSA_m47EEB9282E7E66ED9256F2097B4E5C757B79B080_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * V_0 = NULL;
RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 V_1;
memset((&V_1), 0, sizeof(V_1));
int32_t V_2 = 0;
int32_t V_3 = 0;
RSA_tB6C4B434B2AC02E3F8981DB2908C2018E251D145 * V_4 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___keypair0;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_1 = (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E *)il2cpp_codegen_object_new(ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E_il2cpp_TypeInfo_var);
ASN1__ctor_mE005F52336402C3D41EAD9E28A95910B3C0865DA(L_1, L_0, /*hidden argument*/NULL);
V_0 = L_1;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_2 = V_0;
NullCheck(L_2);
uint8_t L_3 = ASN1_get_Tag_m1346989AC839D85A9E0A211525A6B551974E4862_inline(L_2, /*hidden argument*/NULL);
if ((((int32_t)L_3) == ((int32_t)((int32_t)48))))
{
goto IL_001c;
}
}
{
CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A * L_4 = (CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A *)il2cpp_codegen_object_new(CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A_il2cpp_TypeInfo_var);
CryptographicException__ctor_m0A5D357C12F9A830A9EBC51723094EBA5B854B98(L_4, _stringLiteralB69A13D63C5676008946ACB845A85AF96AEE9389, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, PrivateKeyInfo_DecodeRSA_m47EEB9282E7E66ED9256F2097B4E5C757B79B080_RuntimeMethod_var);
}
IL_001c:
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_5 = V_0;
NullCheck(L_5);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_6 = ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08(L_5, 0, /*hidden argument*/NULL);
NullCheck(L_6);
uint8_t L_7 = ASN1_get_Tag_m1346989AC839D85A9E0A211525A6B551974E4862_inline(L_6, /*hidden argument*/NULL);
if ((((int32_t)L_7) == ((int32_t)2)))
{
goto IL_0036;
}
}
{
CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A * L_8 = (CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A *)il2cpp_codegen_object_new(CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A_il2cpp_TypeInfo_var);
CryptographicException__ctor_m0A5D357C12F9A830A9EBC51723094EBA5B854B98(L_8, _stringLiteral9DB65CFA2237AB1A2FB1D568E668EC18B0803849, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, NULL, PrivateKeyInfo_DecodeRSA_m47EEB9282E7E66ED9256F2097B4E5C757B79B080_RuntimeMethod_var);
}
IL_0036:
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_9 = V_0;
NullCheck(L_9);
int32_t L_10 = ASN1_get_Count_m5A0E71B4C4A2257C0875AE1041AAA953C5B12A19(L_9, /*hidden argument*/NULL);
if ((((int32_t)L_10) >= ((int32_t)((int32_t)9))))
{
goto IL_004b;
}
}
{
CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A * L_11 = (CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A *)il2cpp_codegen_object_new(CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A_il2cpp_TypeInfo_var);
CryptographicException__ctor_m0A5D357C12F9A830A9EBC51723094EBA5B854B98(L_11, _stringLiteral1D9F018C6242ECF50722E7E37BA5BA97733D3906, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, NULL, PrivateKeyInfo_DecodeRSA_m47EEB9282E7E66ED9256F2097B4E5C757B79B080_RuntimeMethod_var);
}
IL_004b:
{
il2cpp_codegen_initobj((&V_1), sizeof(RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 ));
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_12 = V_0;
NullCheck(L_12);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_13 = ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08(L_12, 1, /*hidden argument*/NULL);
NullCheck(L_13);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_14 = ASN1_get_Value_m9BD6239E12A6148AF9507C2F58058C6B8147A079(L_13, /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_15 = PrivateKeyInfo_RemoveLeadingZero_m674CB83B855FB14F8C49F062C3261D2587596384(L_14, /*hidden argument*/NULL);
(&V_1)->set_Modulus_1(L_15);
RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 L_16 = V_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_17 = L_16.get_Modulus_1();
NullCheck(L_17);
V_2 = (((int32_t)((int32_t)(((RuntimeArray*)L_17)->max_length))));
int32_t L_18 = V_2;
V_3 = ((int32_t)((int32_t)L_18>>(int32_t)1));
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_19 = V_0;
NullCheck(L_19);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_20 = ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08(L_19, 3, /*hidden argument*/NULL);
NullCheck(L_20);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_21 = ASN1_get_Value_m9BD6239E12A6148AF9507C2F58058C6B8147A079(L_20, /*hidden argument*/NULL);
int32_t L_22 = V_2;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_23 = PrivateKeyInfo_Normalize_m918031FFC55B1092BD5004D914538F78CE701606(L_21, L_22, /*hidden argument*/NULL);
(&V_1)->set_D_7(L_23);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_24 = V_0;
NullCheck(L_24);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_25 = ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08(L_24, 6, /*hidden argument*/NULL);
NullCheck(L_25);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_26 = ASN1_get_Value_m9BD6239E12A6148AF9507C2F58058C6B8147A079(L_25, /*hidden argument*/NULL);
int32_t L_27 = V_3;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_28 = PrivateKeyInfo_Normalize_m918031FFC55B1092BD5004D914538F78CE701606(L_26, L_27, /*hidden argument*/NULL);
(&V_1)->set_DP_4(L_28);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_29 = V_0;
NullCheck(L_29);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_30 = ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08(L_29, 7, /*hidden argument*/NULL);
NullCheck(L_30);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_31 = ASN1_get_Value_m9BD6239E12A6148AF9507C2F58058C6B8147A079(L_30, /*hidden argument*/NULL);
int32_t L_32 = V_3;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_33 = PrivateKeyInfo_Normalize_m918031FFC55B1092BD5004D914538F78CE701606(L_31, L_32, /*hidden argument*/NULL);
(&V_1)->set_DQ_5(L_33);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_34 = V_0;
NullCheck(L_34);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_35 = ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08(L_34, 2, /*hidden argument*/NULL);
NullCheck(L_35);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_36 = ASN1_get_Value_m9BD6239E12A6148AF9507C2F58058C6B8147A079(L_35, /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_37 = PrivateKeyInfo_RemoveLeadingZero_m674CB83B855FB14F8C49F062C3261D2587596384(L_36, /*hidden argument*/NULL);
(&V_1)->set_Exponent_0(L_37);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_38 = V_0;
NullCheck(L_38);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_39 = ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08(L_38, 8, /*hidden argument*/NULL);
NullCheck(L_39);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_40 = ASN1_get_Value_m9BD6239E12A6148AF9507C2F58058C6B8147A079(L_39, /*hidden argument*/NULL);
int32_t L_41 = V_3;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_42 = PrivateKeyInfo_Normalize_m918031FFC55B1092BD5004D914538F78CE701606(L_40, L_41, /*hidden argument*/NULL);
(&V_1)->set_InverseQ_6(L_42);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_43 = V_0;
NullCheck(L_43);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_44 = ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08(L_43, 4, /*hidden argument*/NULL);
NullCheck(L_44);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_45 = ASN1_get_Value_m9BD6239E12A6148AF9507C2F58058C6B8147A079(L_44, /*hidden argument*/NULL);
int32_t L_46 = V_3;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_47 = PrivateKeyInfo_Normalize_m918031FFC55B1092BD5004D914538F78CE701606(L_45, L_46, /*hidden argument*/NULL);
(&V_1)->set_P_2(L_47);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_48 = V_0;
NullCheck(L_48);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_49 = ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08(L_48, 5, /*hidden argument*/NULL);
NullCheck(L_49);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_50 = ASN1_get_Value_m9BD6239E12A6148AF9507C2F58058C6B8147A079(L_49, /*hidden argument*/NULL);
int32_t L_51 = V_3;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_52 = PrivateKeyInfo_Normalize_m918031FFC55B1092BD5004D914538F78CE701606(L_50, L_51, /*hidden argument*/NULL);
(&V_1)->set_Q_3(L_52);
V_4 = (RSA_tB6C4B434B2AC02E3F8981DB2908C2018E251D145 *)NULL;
}
IL_0129:
try
{ // begin try (depth: 1)
RSA_tB6C4B434B2AC02E3F8981DB2908C2018E251D145 * L_53 = RSA_Create_m1AF30C2FAB458D7291DA15B4D2650AE7507DEDAB(/*hidden argument*/NULL);
V_4 = L_53;
RSA_tB6C4B434B2AC02E3F8981DB2908C2018E251D145 * L_54 = V_4;
RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 L_55 = V_1;
NullCheck(L_54);
VirtActionInvoker1< RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 >::Invoke(11 /* System.Void System.Security.Cryptography.RSA::ImportParameters(System.Security.Cryptography.RSAParameters) */, L_54, L_55);
goto IL_0158;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_013a;
throw e;
}
CATCH_013a:
{ // begin catch(System.Security.Cryptography.CryptographicException)
CspParameters_t7DDB44526A2A9693723C2FA915D9DCF2848998C7 * L_56 = (CspParameters_t7DDB44526A2A9693723C2FA915D9DCF2848998C7 *)il2cpp_codegen_object_new(CspParameters_t7DDB44526A2A9693723C2FA915D9DCF2848998C7_il2cpp_TypeInfo_var);
CspParameters__ctor_m6C7ED4CF3021168DC6CEFB0FECC591547DCE4342(L_56, /*hidden argument*/NULL);
CspParameters_t7DDB44526A2A9693723C2FA915D9DCF2848998C7 * L_57 = L_56;
NullCheck(L_57);
CspParameters_set_Flags_m4982C5960E9DE0BE5FA72E859B5DF0FB803B9E1F(L_57, 1, /*hidden argument*/NULL);
RSACryptoServiceProvider_t6DC0FC3205BA6CDCA4FF2AEEF566D8F0CCE26AD4 * L_58 = (RSACryptoServiceProvider_t6DC0FC3205BA6CDCA4FF2AEEF566D8F0CCE26AD4 *)il2cpp_codegen_object_new(RSACryptoServiceProvider_t6DC0FC3205BA6CDCA4FF2AEEF566D8F0CCE26AD4_il2cpp_TypeInfo_var);
RSACryptoServiceProvider__ctor_m1688FF86ACB164CE19D754507AA1D87535BC2A30(L_58, L_57, /*hidden argument*/NULL);
V_4 = L_58;
RSA_tB6C4B434B2AC02E3F8981DB2908C2018E251D145 * L_59 = V_4;
RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 L_60 = V_1;
NullCheck(L_59);
VirtActionInvoker1< RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 >::Invoke(11 /* System.Void System.Security.Cryptography.RSA::ImportParameters(System.Security.Cryptography.RSAParameters) */, L_59, L_60);
goto IL_0158;
} // end catch (depth: 1)
IL_0158:
{
RSA_tB6C4B434B2AC02E3F8981DB2908C2018E251D145 * L_61 = V_4;
return L_61;
}
}
// System.Byte[] Mono.Security.Cryptography.PKCS8_PrivateKeyInfo::Encode(System.Security.Cryptography.RSA)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* PrivateKeyInfo_Encode_mF1C1E856195368C0FD130E5E8DEFA373C9F4BEA5 (RSA_tB6C4B434B2AC02E3F8981DB2908C2018E251D145 * ___rsa0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PrivateKeyInfo_Encode_mF1C1E856195368C0FD130E5E8DEFA373C9F4BEA5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 V_0;
memset((&V_0), 0, sizeof(V_0));
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * V_1 = NULL;
{
RSA_tB6C4B434B2AC02E3F8981DB2908C2018E251D145 * L_0 = ___rsa0;
NullCheck(L_0);
RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 L_1 = VirtFuncInvoker1< RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 , bool >::Invoke(10 /* System.Security.Cryptography.RSAParameters System.Security.Cryptography.RSA::ExportParameters(System.Boolean) */, L_0, (bool)1);
V_0 = L_1;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_2 = (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E *)il2cpp_codegen_object_new(ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E_il2cpp_TypeInfo_var);
ASN1__ctor_m6DD2E5BD0B12A6BFA95E1822A55B2294B8C237BC(L_2, (uint8_t)((int32_t)48), /*hidden argument*/NULL);
V_1 = L_2;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_3 = V_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)1);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_5 = (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E *)il2cpp_codegen_object_new(ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E_il2cpp_TypeInfo_var);
ASN1__ctor_mAB2593792CB61AD1542F4F9D6FB6E8BB96DE007E(L_5, (uint8_t)2, L_4, /*hidden argument*/NULL);
NullCheck(L_3);
ASN1_Add_mF6ED0416BB021A1C333F99E42F8B17AF8B26639B(L_3, L_5, /*hidden argument*/NULL);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_6 = V_1;
RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 L_7 = V_0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_8 = L_7.get_Modulus_1();
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_9 = ASN1Convert_FromUnsignedBigInteger_mB500398BFB7953610B9218268B91E1960BA2E57A(L_8, /*hidden argument*/NULL);
NullCheck(L_6);
ASN1_Add_mF6ED0416BB021A1C333F99E42F8B17AF8B26639B(L_6, L_9, /*hidden argument*/NULL);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_10 = V_1;
RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 L_11 = V_0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_12 = L_11.get_Exponent_0();
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_13 = ASN1Convert_FromUnsignedBigInteger_mB500398BFB7953610B9218268B91E1960BA2E57A(L_12, /*hidden argument*/NULL);
NullCheck(L_10);
ASN1_Add_mF6ED0416BB021A1C333F99E42F8B17AF8B26639B(L_10, L_13, /*hidden argument*/NULL);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_14 = V_1;
RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 L_15 = V_0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_16 = L_15.get_D_7();
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_17 = ASN1Convert_FromUnsignedBigInteger_mB500398BFB7953610B9218268B91E1960BA2E57A(L_16, /*hidden argument*/NULL);
NullCheck(L_14);
ASN1_Add_mF6ED0416BB021A1C333F99E42F8B17AF8B26639B(L_14, L_17, /*hidden argument*/NULL);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_18 = V_1;
RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 L_19 = V_0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_20 = L_19.get_P_2();
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_21 = ASN1Convert_FromUnsignedBigInteger_mB500398BFB7953610B9218268B91E1960BA2E57A(L_20, /*hidden argument*/NULL);
NullCheck(L_18);
ASN1_Add_mF6ED0416BB021A1C333F99E42F8B17AF8B26639B(L_18, L_21, /*hidden argument*/NULL);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_22 = V_1;
RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 L_23 = V_0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_24 = L_23.get_Q_3();
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_25 = ASN1Convert_FromUnsignedBigInteger_mB500398BFB7953610B9218268B91E1960BA2E57A(L_24, /*hidden argument*/NULL);
NullCheck(L_22);
ASN1_Add_mF6ED0416BB021A1C333F99E42F8B17AF8B26639B(L_22, L_25, /*hidden argument*/NULL);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_26 = V_1;
RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 L_27 = V_0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_28 = L_27.get_DP_4();
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_29 = ASN1Convert_FromUnsignedBigInteger_mB500398BFB7953610B9218268B91E1960BA2E57A(L_28, /*hidden argument*/NULL);
NullCheck(L_26);
ASN1_Add_mF6ED0416BB021A1C333F99E42F8B17AF8B26639B(L_26, L_29, /*hidden argument*/NULL);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_30 = V_1;
RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 L_31 = V_0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_32 = L_31.get_DQ_5();
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_33 = ASN1Convert_FromUnsignedBigInteger_mB500398BFB7953610B9218268B91E1960BA2E57A(L_32, /*hidden argument*/NULL);
NullCheck(L_30);
ASN1_Add_mF6ED0416BB021A1C333F99E42F8B17AF8B26639B(L_30, L_33, /*hidden argument*/NULL);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_34 = V_1;
RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 L_35 = V_0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_36 = L_35.get_InverseQ_6();
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_37 = ASN1Convert_FromUnsignedBigInteger_mB500398BFB7953610B9218268B91E1960BA2E57A(L_36, /*hidden argument*/NULL);
NullCheck(L_34);
ASN1_Add_mF6ED0416BB021A1C333F99E42F8B17AF8B26639B(L_34, L_37, /*hidden argument*/NULL);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_38 = V_1;
NullCheck(L_38);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_39 = VirtFuncInvoker0< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(4 /* System.Byte[] Mono.Security.ASN1::GetBytes() */, L_38);
return L_39;
}
}
// System.Security.Cryptography.DSA Mono.Security.Cryptography.PKCS8_PrivateKeyInfo::DecodeDSA(System.Byte[],System.Security.Cryptography.DSAParameters)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DSA_t932F4A94DD2B782BFFC197544398826E6CDB64CF * PrivateKeyInfo_DecodeDSA_m705D495634A3F9F97D73FA4FC995352DF5A3F5EF (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___privateKey0, DSAParameters_tCA1A96A151F47B1904693C457243E3B919425AC6 ___dsaParameters1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PrivateKeyInfo_DecodeDSA_m705D495634A3F9F97D73FA4FC995352DF5A3F5EF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * V_0 = NULL;
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___privateKey0;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_1 = (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E *)il2cpp_codegen_object_new(ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E_il2cpp_TypeInfo_var);
ASN1__ctor_mE005F52336402C3D41EAD9E28A95910B3C0865DA(L_1, L_0, /*hidden argument*/NULL);
V_0 = L_1;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_2 = V_0;
NullCheck(L_2);
uint8_t L_3 = ASN1_get_Tag_m1346989AC839D85A9E0A211525A6B551974E4862_inline(L_2, /*hidden argument*/NULL);
if ((((int32_t)L_3) == ((int32_t)2)))
{
goto IL_001b;
}
}
{
CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A * L_4 = (CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A *)il2cpp_codegen_object_new(CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A_il2cpp_TypeInfo_var);
CryptographicException__ctor_m0A5D357C12F9A830A9EBC51723094EBA5B854B98(L_4, _stringLiteralB69A13D63C5676008946ACB845A85AF96AEE9389, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, PrivateKeyInfo_DecodeDSA_m705D495634A3F9F97D73FA4FC995352DF5A3F5EF_RuntimeMethod_var);
}
IL_001b:
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_5 = V_0;
NullCheck(L_5);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_6 = ASN1_get_Value_m9BD6239E12A6148AF9507C2F58058C6B8147A079(L_5, /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_7 = PrivateKeyInfo_Normalize_m918031FFC55B1092BD5004D914538F78CE701606(L_6, ((int32_t)20), /*hidden argument*/NULL);
(&___dsaParameters1)->set_X_5(L_7);
DSA_t932F4A94DD2B782BFFC197544398826E6CDB64CF * L_8 = DSA_Create_m727400EBC98FEDC4F43DD568D974EDC1CD2868BA(/*hidden argument*/NULL);
DSA_t932F4A94DD2B782BFFC197544398826E6CDB64CF * L_9 = L_8;
DSAParameters_tCA1A96A151F47B1904693C457243E3B919425AC6 L_10 = ___dsaParameters1;
NullCheck(L_9);
VirtActionInvoker1< DSAParameters_tCA1A96A151F47B1904693C457243E3B919425AC6 >::Invoke(11 /* System.Void System.Security.Cryptography.DSA::ImportParameters(System.Security.Cryptography.DSAParameters) */, L_9, L_10);
return L_9;
}
}
// System.Byte[] Mono.Security.Cryptography.PKCS8_PrivateKeyInfo::Encode(System.Security.Cryptography.DSA)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* PrivateKeyInfo_Encode_m2BD3A752B326B5CE1243BF80896C452F710C8FB8 (DSA_t932F4A94DD2B782BFFC197544398826E6CDB64CF * ___dsa0, const RuntimeMethod* method)
{
{
DSA_t932F4A94DD2B782BFFC197544398826E6CDB64CF * L_0 = ___dsa0;
NullCheck(L_0);
DSAParameters_tCA1A96A151F47B1904693C457243E3B919425AC6 L_1 = VirtFuncInvoker1< DSAParameters_tCA1A96A151F47B1904693C457243E3B919425AC6 , bool >::Invoke(10 /* System.Security.Cryptography.DSAParameters System.Security.Cryptography.DSA::ExportParameters(System.Boolean) */, L_0, (bool)1);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = L_1.get_X_5();
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_3 = ASN1Convert_FromUnsignedBigInteger_mB500398BFB7953610B9218268B91E1960BA2E57A(L_2, /*hidden argument*/NULL);
NullCheck(L_3);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = VirtFuncInvoker0< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(4 /* System.Byte[] Mono.Security.ASN1::GetBytes() */, L_3);
return L_4;
}
}
// System.Byte[] Mono.Security.Cryptography.PKCS8_PrivateKeyInfo::Encode(System.Security.Cryptography.AsymmetricAlgorithm)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* PrivateKeyInfo_Encode_m3D458CE8888E92B151A56A3641E46651DFB05CD8 (AsymmetricAlgorithm_t9F811260245370BD8786A849DBF9F8054F97F4CB * ___aa0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PrivateKeyInfo_Encode_m3D458CE8888E92B151A56A3641E46651DFB05CD8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
AsymmetricAlgorithm_t9F811260245370BD8786A849DBF9F8054F97F4CB * L_0 = ___aa0;
if (!((RSA_tB6C4B434B2AC02E3F8981DB2908C2018E251D145 *)IsInstClass((RuntimeObject*)L_0, RSA_tB6C4B434B2AC02E3F8981DB2908C2018E251D145_il2cpp_TypeInfo_var)))
{
goto IL_0014;
}
}
{
AsymmetricAlgorithm_t9F811260245370BD8786A849DBF9F8054F97F4CB * L_1 = ___aa0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = PrivateKeyInfo_Encode_mF1C1E856195368C0FD130E5E8DEFA373C9F4BEA5(((RSA_tB6C4B434B2AC02E3F8981DB2908C2018E251D145 *)CastclassClass((RuntimeObject*)L_1, RSA_tB6C4B434B2AC02E3F8981DB2908C2018E251D145_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
return L_2;
}
IL_0014:
{
AsymmetricAlgorithm_t9F811260245370BD8786A849DBF9F8054F97F4CB * L_3 = ___aa0;
if (!((DSA_t932F4A94DD2B782BFFC197544398826E6CDB64CF *)IsInstClass((RuntimeObject*)L_3, DSA_t932F4A94DD2B782BFFC197544398826E6CDB64CF_il2cpp_TypeInfo_var)))
{
goto IL_0028;
}
}
{
AsymmetricAlgorithm_t9F811260245370BD8786A849DBF9F8054F97F4CB * L_4 = ___aa0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_5 = PrivateKeyInfo_Encode_m2BD3A752B326B5CE1243BF80896C452F710C8FB8(((DSA_t932F4A94DD2B782BFFC197544398826E6CDB64CF *)CastclassClass((RuntimeObject*)L_4, DSA_t932F4A94DD2B782BFFC197544398826E6CDB64CF_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
return L_5;
}
IL_0028:
{
AsymmetricAlgorithm_t9F811260245370BD8786A849DBF9F8054F97F4CB * L_6 = ___aa0;
NullCheck(L_6);
String_t* L_7 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_6);
CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A * L_8 = (CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A *)il2cpp_codegen_object_new(CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A_il2cpp_TypeInfo_var);
CryptographicException__ctor_mA09CE78A67CC67991C8D2F77FBC4F8029E593195(L_8, _stringLiteral19BEEC1D598AFC7149A3F97203082E708460E075, L_7, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, NULL, PrivateKeyInfo_Encode_m3D458CE8888E92B151A56A3641E46651DFB05CD8_RuntimeMethod_var);
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Mono.Security.Cryptography.RSAManaged::Finalize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RSAManaged_Finalize_m394546493EF1AF7AF4139CF503F361633FD06B12 (RSAManaged_t386184E253177BF2DD9589A7E9C171DA8E718745 * __this, const RuntimeMethod* method)
{
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
IL_0000:
try
{ // begin try (depth: 1)
VirtActionInvoker1< bool >::Invoke(5 /* System.Void System.Security.Cryptography.AsymmetricAlgorithm::Dispose(System.Boolean) */, __this, (bool)0);
IL2CPP_LEAVE(0x10, FINALLY_0009);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0009;
}
FINALLY_0009:
{ // begin finally (depth: 1)
Object_Finalize_m4015B7D3A44DE125C5FE34D7276CD4697C06F380(__this, /*hidden argument*/NULL);
IL2CPP_END_FINALLY(9)
} // end finally (depth: 1)
IL2CPP_CLEANUP(9)
{
IL2CPP_JUMP_TBL(0x10, IL_0010)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0010:
{
return;
}
}
// System.Void Mono.Security.Cryptography.RSAManaged::GenerateKeyPair()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RSAManaged_GenerateKeyPair_m01DBB9859ED6B604FD48A26561F33FC8213A4BE5 (RSAManaged_t386184E253177BF2DD9589A7E9C171DA8E718745 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RSAManaged_GenerateKeyPair_m01DBB9859ED6B604FD48A26561F33FC8213A4BE5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * V_2 = NULL;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * V_3 = NULL;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * V_4 = NULL;
{
int32_t L_0 = VirtFuncInvoker0< int32_t >::Invoke(6 /* System.Int32 System.Security.Cryptography.AsymmetricAlgorithm::get_KeySize() */, __this);
V_0 = ((int32_t)((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)1))>>(int32_t)1));
int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(6 /* System.Int32 System.Security.Cryptography.AsymmetricAlgorithm::get_KeySize() */, __this);
int32_t L_2 = V_0;
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)L_2));
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_3 = BigInteger_op_Implicit_m47A1626222EC6D506611B5776F1506E5ED6F529F(((int32_t)65537), /*hidden argument*/NULL);
__this->set_e_12(L_3);
}
IL_0024:
{
int32_t L_4 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_5 = BigInteger_GeneratePseudoPrime_m40B9FAE1552A9CEF0A39529CF40E2F5C9FD377DE(L_4, /*hidden argument*/NULL);
__this->set_p_6(L_5);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_6 = __this->get_p_6();
uint32_t L_7 = BigInteger_op_Modulus_mEE11685FAA7292E357C36DB794C18EF9E388C876(L_6, ((int32_t)65537), /*hidden argument*/NULL);
if ((((int32_t)L_7) == ((int32_t)1)))
{
goto IL_0024;
}
}
IL_0043:
{
int32_t L_8 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_9 = BigInteger_GeneratePseudoPrime_m40B9FAE1552A9CEF0A39529CF40E2F5C9FD377DE(L_8, /*hidden argument*/NULL);
__this->set_q_7(L_9);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_10 = __this->get_q_7();
uint32_t L_11 = BigInteger_op_Modulus_mEE11685FAA7292E357C36DB794C18EF9E388C876(L_10, ((int32_t)65537), /*hidden argument*/NULL);
if ((((int32_t)L_11) == ((int32_t)1)))
{
goto IL_0043;
}
}
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_12 = __this->get_p_6();
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_13 = __this->get_q_7();
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
bool L_14 = BigInteger_op_Inequality_m0C6217422FC853BD5E26CF9E7995AE95E55668C2(L_12, L_13, /*hidden argument*/NULL);
if (!L_14)
{
goto IL_0043;
}
}
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_15 = __this->get_p_6();
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_16 = __this->get_q_7();
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_17 = BigInteger_op_Multiply_mEA6B6928879EF921641122FA7E597A16A613EDDE(L_15, L_16, /*hidden argument*/NULL);
__this->set_n_11(L_17);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_18 = __this->get_n_11();
NullCheck(L_18);
int32_t L_19 = BigInteger_BitCount_mFEA208FDC3B126E1517F0E5AAB8D1193856F8C76(L_18, /*hidden argument*/NULL);
int32_t L_20 = VirtFuncInvoker0< int32_t >::Invoke(6 /* System.Int32 System.Security.Cryptography.AsymmetricAlgorithm::get_KeySize() */, __this);
if ((((int32_t)L_19) == ((int32_t)L_20)))
{
goto IL_00c0;
}
}
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_21 = __this->get_p_6();
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_22 = __this->get_q_7();
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
bool L_23 = BigInteger_op_LessThan_m3E95747DE75EE020DB45C030FEA87F2785F1F106(L_21, L_22, /*hidden argument*/NULL);
if (!L_23)
{
goto IL_0043;
}
}
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_24 = __this->get_q_7();
__this->set_p_6(L_24);
goto IL_0043;
}
IL_00c0:
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_25 = __this->get_p_6();
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_26 = BigInteger_op_Implicit_m7057639C0ADB9D04334B3DA64237547E293A50EB(1, /*hidden argument*/NULL);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_27 = BigInteger_op_Subtraction_mC72451C0DAE478E11522A2AB99426BEAD4E97792(L_25, L_26, /*hidden argument*/NULL);
V_2 = L_27;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_28 = __this->get_q_7();
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_29 = BigInteger_op_Implicit_m7057639C0ADB9D04334B3DA64237547E293A50EB(1, /*hidden argument*/NULL);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_30 = BigInteger_op_Subtraction_mC72451C0DAE478E11522A2AB99426BEAD4E97792(L_28, L_29, /*hidden argument*/NULL);
V_3 = L_30;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_31 = V_2;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_32 = V_3;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_33 = BigInteger_op_Multiply_mEA6B6928879EF921641122FA7E597A16A613EDDE(L_31, L_32, /*hidden argument*/NULL);
V_4 = L_33;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_34 = __this->get_e_12();
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_35 = V_4;
NullCheck(L_34);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_36 = BigInteger_ModInverse_mBA7BA94A2C0F242844B97B18DAEE368065E59522(L_34, L_35, /*hidden argument*/NULL);
__this->set_d_5(L_36);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_37 = __this->get_d_5();
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_38 = V_2;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_39 = BigInteger_op_Modulus_mAFBC82D374D9E2866AA4958732FA53F7445B122F(L_37, L_38, /*hidden argument*/NULL);
__this->set_dp_8(L_39);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_40 = __this->get_d_5();
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_41 = V_3;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_42 = BigInteger_op_Modulus_mAFBC82D374D9E2866AA4958732FA53F7445B122F(L_40, L_41, /*hidden argument*/NULL);
__this->set_dq_9(L_42);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_43 = __this->get_q_7();
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_44 = __this->get_p_6();
NullCheck(L_43);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_45 = BigInteger_ModInverse_mBA7BA94A2C0F242844B97B18DAEE368065E59522(L_43, L_44, /*hidden argument*/NULL);
__this->set_qInv_10(L_45);
__this->set_keypairGenerated_3((bool)1);
__this->set_isCRTpossible_2((bool)1);
KeyGeneratedEventHandler_t4696955EF1EA571682FB3F21F5A4CA5E5B6737A9 * L_46 = __this->get_KeyGenerated_13();
if (!L_46)
{
goto IL_015e;
}
}
{
KeyGeneratedEventHandler_t4696955EF1EA571682FB3F21F5A4CA5E5B6737A9 * L_47 = __this->get_KeyGenerated_13();
NullCheck(L_47);
KeyGeneratedEventHandler_Invoke_m2544ADEDCC25B2745B8803AC571D74C34459F2F2(L_47, __this, (EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E *)NULL, /*hidden argument*/NULL);
}
IL_015e:
{
return;
}
}
// System.Int32 Mono.Security.Cryptography.RSAManaged::get_KeySize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RSAManaged_get_KeySize_m460D3CD00D5E9DED31348982599FEC360F1FBF37 (RSAManaged_t386184E253177BF2DD9589A7E9C171DA8E718745 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RSAManaged_get_KeySize_m460D3CD00D5E9DED31348982599FEC360F1FBF37_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
bool L_0 = __this->get_m_disposed_4();
if (!L_0)
{
goto IL_0018;
}
}
{
String_t* L_1 = Locale_GetText_m67B66557188C94648AA7A23F6A7501BE7D455ADA(_stringLiteralDDE273A77F7B5FE50165399E85E5C2F0687C548D, /*hidden argument*/NULL);
ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A * L_2 = (ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A *)il2cpp_codegen_object_new(ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A_il2cpp_TypeInfo_var);
ObjectDisposedException__ctor_m8B5D23EA08E42BDE6BC5233CC666295F19BBD2F9(L_2, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, RSAManaged_get_KeySize_m460D3CD00D5E9DED31348982599FEC360F1FBF37_RuntimeMethod_var);
}
IL_0018:
{
bool L_3 = __this->get_keypairGenerated_3();
if (!L_3)
{
goto IL_003b;
}
}
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_4 = __this->get_n_11();
NullCheck(L_4);
int32_t L_5 = BigInteger_BitCount_mFEA208FDC3B126E1517F0E5AAB8D1193856F8C76(L_4, /*hidden argument*/NULL);
V_0 = L_5;
int32_t L_6 = V_0;
if (!((int32_t)((int32_t)L_6&(int32_t)7)))
{
goto IL_0039;
}
}
{
int32_t L_7 = V_0;
int32_t L_8 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)8, (int32_t)((int32_t)((int32_t)L_8&(int32_t)7))))));
}
IL_0039:
{
int32_t L_9 = V_0;
return L_9;
}
IL_003b:
{
int32_t L_10 = AsymmetricAlgorithm_get_KeySize_mE8C6882BD6C01D3721FAE2B622DFACD89072FB50_inline(__this, /*hidden argument*/NULL);
return L_10;
}
}
// System.Boolean Mono.Security.Cryptography.RSAManaged::get_PublicOnly()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RSAManaged_get_PublicOnly_m1D989F2FB76A46F2C7C80F18D5EA820B7EDD60DD (RSAManaged_t386184E253177BF2DD9589A7E9C171DA8E718745 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RSAManaged_get_PublicOnly_m1D989F2FB76A46F2C7C80F18D5EA820B7EDD60DD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
bool L_0 = __this->get_keypairGenerated_3();
if (!L_0)
{
goto IL_0025;
}
}
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_1 = __this->get_d_5();
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
bool L_2 = BigInteger_op_Equality_mF5B5A983065914F1789BB1552A1AA1B589B59C90(L_1, (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)NULL, /*hidden argument*/NULL);
if (L_2)
{
goto IL_0023;
}
}
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_3 = __this->get_n_11();
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
bool L_4 = BigInteger_op_Equality_mF5B5A983065914F1789BB1552A1AA1B589B59C90(L_3, (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)NULL, /*hidden argument*/NULL);
return L_4;
}
IL_0023:
{
return (bool)1;
}
IL_0025:
{
return (bool)0;
}
}
// System.Security.Cryptography.RSAParameters Mono.Security.Cryptography.RSAManaged::ExportParameters(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 RSAManaged_ExportParameters_m8029EBF5FC8B90AF79C6D1469ECB44D28FB101D4 (RSAManaged_t386184E253177BF2DD9589A7E9C171DA8E718745 * __this, bool ___includePrivateParameters0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RSAManaged_ExportParameters_m8029EBF5FC8B90AF79C6D1469ECB44D28FB101D4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 V_0;
memset((&V_0), 0, sizeof(V_0));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_1 = NULL;
int32_t V_2 = 0;
{
bool L_0 = __this->get_m_disposed_4();
if (!L_0)
{
goto IL_0018;
}
}
{
String_t* L_1 = Locale_GetText_m67B66557188C94648AA7A23F6A7501BE7D455ADA(_stringLiteralDDE273A77F7B5FE50165399E85E5C2F0687C548D, /*hidden argument*/NULL);
ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A * L_2 = (ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A *)il2cpp_codegen_object_new(ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A_il2cpp_TypeInfo_var);
ObjectDisposedException__ctor_m8B5D23EA08E42BDE6BC5233CC666295F19BBD2F9(L_2, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, RSAManaged_ExportParameters_m8029EBF5FC8B90AF79C6D1469ECB44D28FB101D4_RuntimeMethod_var);
}
IL_0018:
{
bool L_3 = __this->get_keypairGenerated_3();
if (L_3)
{
goto IL_0026;
}
}
{
RSAManaged_GenerateKeyPair_m01DBB9859ED6B604FD48A26561F33FC8213A4BE5(__this, /*hidden argument*/NULL);
}
IL_0026:
{
il2cpp_codegen_initobj((&V_0), sizeof(RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 ));
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_4 = __this->get_e_12();
NullCheck(L_4);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_5 = BigInteger_GetBytes_m3FA801F9485DE409CF9C9E7F4873694BF642C31C(L_4, /*hidden argument*/NULL);
(&V_0)->set_Exponent_0(L_5);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_6 = __this->get_n_11();
NullCheck(L_6);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_7 = BigInteger_GetBytes_m3FA801F9485DE409CF9C9E7F4873694BF642C31C(L_6, /*hidden argument*/NULL);
(&V_0)->set_Modulus_1(L_7);
bool L_8 = ___includePrivateParameters0;
if (!L_8)
{
goto IL_0188;
}
}
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_9 = __this->get_d_5();
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
bool L_10 = BigInteger_op_Equality_mF5B5A983065914F1789BB1552A1AA1B589B59C90(L_9, (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)NULL, /*hidden argument*/NULL);
if (!L_10)
{
goto IL_0071;
}
}
{
CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A * L_11 = (CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A *)il2cpp_codegen_object_new(CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A_il2cpp_TypeInfo_var);
CryptographicException__ctor_m0A5D357C12F9A830A9EBC51723094EBA5B854B98(L_11, _stringLiteral1B455B5B6120697EB57C6A65C3F3E98FD311227A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, NULL, RSAManaged_ExportParameters_m8029EBF5FC8B90AF79C6D1469ECB44D28FB101D4_RuntimeMethod_var);
}
IL_0071:
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_12 = __this->get_d_5();
NullCheck(L_12);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_13 = BigInteger_GetBytes_m3FA801F9485DE409CF9C9E7F4873694BF642C31C(L_12, /*hidden argument*/NULL);
(&V_0)->set_D_7(L_13);
RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 L_14 = V_0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_15 = L_14.get_D_7();
NullCheck(L_15);
RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 L_16 = V_0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_17 = L_16.get_Modulus_1();
NullCheck(L_17);
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_15)->max_length))))) == ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_17)->max_length)))))))
{
goto IL_00cc;
}
}
{
RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 L_18 = V_0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_19 = L_18.get_Modulus_1();
NullCheck(L_19);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_20 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_19)->max_length)))));
V_1 = L_20;
RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 L_21 = V_0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_22 = L_21.get_D_7();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_23 = V_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_24 = V_1;
NullCheck(L_24);
RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 L_25 = V_0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_26 = L_25.get_D_7();
NullCheck(L_26);
RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 L_27 = V_0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_28 = L_27.get_D_7();
NullCheck(L_28);
Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353((RuntimeArray *)(RuntimeArray *)L_22, 0, (RuntimeArray *)(RuntimeArray *)L_23, ((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_24)->max_length)))), (int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_26)->max_length)))))), (((int32_t)((int32_t)(((RuntimeArray*)L_28)->max_length)))), /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_29 = V_1;
(&V_0)->set_D_7(L_29);
}
IL_00cc:
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_30 = __this->get_p_6();
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
bool L_31 = BigInteger_op_Inequality_m0C6217422FC853BD5E26CF9E7995AE95E55668C2(L_30, (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)NULL, /*hidden argument*/NULL);
if (!L_31)
{
goto IL_0188;
}
}
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_32 = __this->get_q_7();
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
bool L_33 = BigInteger_op_Inequality_m0C6217422FC853BD5E26CF9E7995AE95E55668C2(L_32, (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)NULL, /*hidden argument*/NULL);
if (!L_33)
{
goto IL_0188;
}
}
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_34 = __this->get_dp_8();
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
bool L_35 = BigInteger_op_Inequality_m0C6217422FC853BD5E26CF9E7995AE95E55668C2(L_34, (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)NULL, /*hidden argument*/NULL);
if (!L_35)
{
goto IL_0188;
}
}
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_36 = __this->get_dq_9();
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
bool L_37 = BigInteger_op_Inequality_m0C6217422FC853BD5E26CF9E7995AE95E55668C2(L_36, (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)NULL, /*hidden argument*/NULL);
if (!L_37)
{
goto IL_0188;
}
}
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_38 = __this->get_qInv_10();
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
bool L_39 = BigInteger_op_Inequality_m0C6217422FC853BD5E26CF9E7995AE95E55668C2(L_38, (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)NULL, /*hidden argument*/NULL);
if (!L_39)
{
goto IL_0188;
}
}
{
int32_t L_40 = VirtFuncInvoker0< int32_t >::Invoke(6 /* System.Int32 System.Security.Cryptography.AsymmetricAlgorithm::get_KeySize() */, __this);
V_2 = ((int32_t)((int32_t)L_40>>(int32_t)4));
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_41 = __this->get_p_6();
int32_t L_42 = V_2;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_43 = RSAManaged_GetPaddedValue_m09F304D316894F8620769B764EE99DC5FBF29471(__this, L_41, L_42, /*hidden argument*/NULL);
(&V_0)->set_P_2(L_43);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_44 = __this->get_q_7();
int32_t L_45 = V_2;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_46 = RSAManaged_GetPaddedValue_m09F304D316894F8620769B764EE99DC5FBF29471(__this, L_44, L_45, /*hidden argument*/NULL);
(&V_0)->set_Q_3(L_46);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_47 = __this->get_dp_8();
int32_t L_48 = V_2;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_49 = RSAManaged_GetPaddedValue_m09F304D316894F8620769B764EE99DC5FBF29471(__this, L_47, L_48, /*hidden argument*/NULL);
(&V_0)->set_DP_4(L_49);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_50 = __this->get_dq_9();
int32_t L_51 = V_2;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_52 = RSAManaged_GetPaddedValue_m09F304D316894F8620769B764EE99DC5FBF29471(__this, L_50, L_51, /*hidden argument*/NULL);
(&V_0)->set_DQ_5(L_52);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_53 = __this->get_qInv_10();
int32_t L_54 = V_2;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_55 = RSAManaged_GetPaddedValue_m09F304D316894F8620769B764EE99DC5FBF29471(__this, L_53, L_54, /*hidden argument*/NULL);
(&V_0)->set_InverseQ_6(L_55);
}
IL_0188:
{
RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 L_56 = V_0;
return L_56;
}
}
// System.Void Mono.Security.Cryptography.RSAManaged::ImportParameters(System.Security.Cryptography.RSAParameters)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RSAManaged_ImportParameters_m74BDEF3C147D83EE752B8445A83E1F4B7866717D (RSAManaged_t386184E253177BF2DD9589A7E9C171DA8E718745 * __this, RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 ___parameters0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RSAManaged_ImportParameters_m74BDEF3C147D83EE752B8445A83E1F4B7866717D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
bool V_1 = false;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * V_2 = NULL;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * V_3 = NULL;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * V_4 = NULL;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * V_5 = NULL;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * V_6 = NULL;
int32_t G_B22_0 = 0;
RSAManaged_t386184E253177BF2DD9589A7E9C171DA8E718745 * G_B25_0 = NULL;
RSAManaged_t386184E253177BF2DD9589A7E9C171DA8E718745 * G_B23_0 = NULL;
RSAManaged_t386184E253177BF2DD9589A7E9C171DA8E718745 * G_B24_0 = NULL;
int32_t G_B26_0 = 0;
RSAManaged_t386184E253177BF2DD9589A7E9C171DA8E718745 * G_B26_1 = NULL;
int32_t G_B35_0 = 0;
{
bool L_0 = __this->get_m_disposed_4();
if (!L_0)
{
goto IL_0018;
}
}
{
String_t* L_1 = Locale_GetText_m67B66557188C94648AA7A23F6A7501BE7D455ADA(_stringLiteralDDE273A77F7B5FE50165399E85E5C2F0687C548D, /*hidden argument*/NULL);
ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A * L_2 = (ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A *)il2cpp_codegen_object_new(ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A_il2cpp_TypeInfo_var);
ObjectDisposedException__ctor_m8B5D23EA08E42BDE6BC5233CC666295F19BBD2F9(L_2, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, RSAManaged_ImportParameters_m74BDEF3C147D83EE752B8445A83E1F4B7866717D_RuntimeMethod_var);
}
IL_0018:
{
RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 L_3 = ___parameters0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = L_3.get_Exponent_0();
if (L_4)
{
goto IL_0030;
}
}
{
String_t* L_5 = Locale_GetText_m67B66557188C94648AA7A23F6A7501BE7D455ADA(_stringLiteral1BFBA49274D5FFD04A381E293A69A95116E371E9, /*hidden argument*/NULL);
CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A * L_6 = (CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A *)il2cpp_codegen_object_new(CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A_il2cpp_TypeInfo_var);
CryptographicException__ctor_m0A5D357C12F9A830A9EBC51723094EBA5B854B98(L_6, L_5, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, NULL, RSAManaged_ImportParameters_m74BDEF3C147D83EE752B8445A83E1F4B7866717D_RuntimeMethod_var);
}
IL_0030:
{
RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 L_7 = ___parameters0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_8 = L_7.get_Modulus_1();
if (L_8)
{
goto IL_0048;
}
}
{
String_t* L_9 = Locale_GetText_m67B66557188C94648AA7A23F6A7501BE7D455ADA(_stringLiteralCF8640B2F06532BE2709134CF9028B273081AA99, /*hidden argument*/NULL);
CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A * L_10 = (CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A *)il2cpp_codegen_object_new(CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A_il2cpp_TypeInfo_var);
CryptographicException__ctor_m0A5D357C12F9A830A9EBC51723094EBA5B854B98(L_10, L_9, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, RSAManaged_ImportParameters_m74BDEF3C147D83EE752B8445A83E1F4B7866717D_RuntimeMethod_var);
}
IL_0048:
{
RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 L_11 = ___parameters0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_12 = L_11.get_Exponent_0();
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_13 = (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)il2cpp_codegen_object_new(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
BigInteger__ctor_m12A6762C07A6C1B90E6461D22E25A4DE6D3F1250(L_13, L_12, /*hidden argument*/NULL);
__this->set_e_12(L_13);
RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 L_14 = ___parameters0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_15 = L_14.get_Modulus_1();
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_16 = (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)il2cpp_codegen_object_new(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
BigInteger__ctor_m12A6762C07A6C1B90E6461D22E25A4DE6D3F1250(L_16, L_15, /*hidden argument*/NULL);
__this->set_n_11(L_16);
V_2 = (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)NULL;
__this->set_q_7((BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)NULL);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_17 = V_2;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_18 = L_17;
V_2 = L_18;
__this->set_p_6(L_18);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_19 = V_2;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_20 = L_19;
V_2 = L_20;
__this->set_qInv_10(L_20);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_21 = V_2;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_22 = L_21;
V_2 = L_22;
__this->set_dq_9(L_22);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_23 = V_2;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_24 = L_23;
V_2 = L_24;
__this->set_dp_8(L_24);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_25 = V_2;
__this->set_d_5(L_25);
RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 L_26 = ___parameters0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_27 = L_26.get_D_7();
if (!L_27)
{
goto IL_00b7;
}
}
{
RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 L_28 = ___parameters0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_29 = L_28.get_D_7();
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_30 = (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)il2cpp_codegen_object_new(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
BigInteger__ctor_m12A6762C07A6C1B90E6461D22E25A4DE6D3F1250(L_30, L_29, /*hidden argument*/NULL);
__this->set_d_5(L_30);
}
IL_00b7:
{
RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 L_31 = ___parameters0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_32 = L_31.get_DP_4();
if (!L_32)
{
goto IL_00d0;
}
}
{
RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 L_33 = ___parameters0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_34 = L_33.get_DP_4();
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_35 = (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)il2cpp_codegen_object_new(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
BigInteger__ctor_m12A6762C07A6C1B90E6461D22E25A4DE6D3F1250(L_35, L_34, /*hidden argument*/NULL);
__this->set_dp_8(L_35);
}
IL_00d0:
{
RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 L_36 = ___parameters0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_37 = L_36.get_DQ_5();
if (!L_37)
{
goto IL_00e9;
}
}
{
RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 L_38 = ___parameters0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_39 = L_38.get_DQ_5();
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_40 = (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)il2cpp_codegen_object_new(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
BigInteger__ctor_m12A6762C07A6C1B90E6461D22E25A4DE6D3F1250(L_40, L_39, /*hidden argument*/NULL);
__this->set_dq_9(L_40);
}
IL_00e9:
{
RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 L_41 = ___parameters0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_42 = L_41.get_InverseQ_6();
if (!L_42)
{
goto IL_0102;
}
}
{
RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 L_43 = ___parameters0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_44 = L_43.get_InverseQ_6();
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_45 = (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)il2cpp_codegen_object_new(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
BigInteger__ctor_m12A6762C07A6C1B90E6461D22E25A4DE6D3F1250(L_45, L_44, /*hidden argument*/NULL);
__this->set_qInv_10(L_45);
}
IL_0102:
{
RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 L_46 = ___parameters0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_47 = L_46.get_P_2();
if (!L_47)
{
goto IL_011b;
}
}
{
RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 L_48 = ___parameters0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_49 = L_48.get_P_2();
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_50 = (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)il2cpp_codegen_object_new(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
BigInteger__ctor_m12A6762C07A6C1B90E6461D22E25A4DE6D3F1250(L_50, L_49, /*hidden argument*/NULL);
__this->set_p_6(L_50);
}
IL_011b:
{
RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 L_51 = ___parameters0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_52 = L_51.get_Q_3();
if (!L_52)
{
goto IL_0134;
}
}
{
RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 L_53 = ___parameters0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_54 = L_53.get_Q_3();
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_55 = (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)il2cpp_codegen_object_new(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
BigInteger__ctor_m12A6762C07A6C1B90E6461D22E25A4DE6D3F1250(L_55, L_54, /*hidden argument*/NULL);
__this->set_q_7(L_55);
}
IL_0134:
{
__this->set_keypairGenerated_3((bool)1);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_56 = __this->get_p_6();
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
bool L_57 = BigInteger_op_Inequality_m0C6217422FC853BD5E26CF9E7995AE95E55668C2(L_56, (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)NULL, /*hidden argument*/NULL);
if (!L_57)
{
goto IL_0165;
}
}
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_58 = __this->get_q_7();
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
bool L_59 = BigInteger_op_Inequality_m0C6217422FC853BD5E26CF9E7995AE95E55668C2(L_58, (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)NULL, /*hidden argument*/NULL);
if (!L_59)
{
goto IL_0165;
}
}
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_60 = __this->get_dp_8();
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
bool L_61 = BigInteger_op_Inequality_m0C6217422FC853BD5E26CF9E7995AE95E55668C2(L_60, (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)NULL, /*hidden argument*/NULL);
G_B22_0 = ((int32_t)(L_61));
goto IL_0166;
}
IL_0165:
{
G_B22_0 = 0;
}
IL_0166:
{
V_0 = (bool)G_B22_0;
bool L_62 = V_0;
G_B23_0 = __this;
if (!L_62)
{
G_B25_0 = __this;
goto IL_0187;
}
}
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_63 = __this->get_dq_9();
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
bool L_64 = BigInteger_op_Inequality_m0C6217422FC853BD5E26CF9E7995AE95E55668C2(L_63, (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)NULL, /*hidden argument*/NULL);
G_B24_0 = G_B23_0;
if (!L_64)
{
G_B25_0 = G_B23_0;
goto IL_0187;
}
}
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_65 = __this->get_qInv_10();
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
bool L_66 = BigInteger_op_Inequality_m0C6217422FC853BD5E26CF9E7995AE95E55668C2(L_65, (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)NULL, /*hidden argument*/NULL);
G_B26_0 = ((int32_t)(L_66));
G_B26_1 = G_B24_0;
goto IL_0188;
}
IL_0187:
{
G_B26_0 = 0;
G_B26_1 = G_B25_0;
}
IL_0188:
{
NullCheck(G_B26_1);
G_B26_1->set_isCRTpossible_2((bool)G_B26_0);
bool L_67 = V_0;
if (L_67)
{
goto IL_0191;
}
}
{
return;
}
IL_0191:
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_68 = __this->get_n_11();
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_69 = __this->get_p_6();
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_70 = __this->get_q_7();
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_71 = BigInteger_op_Multiply_mEA6B6928879EF921641122FA7E597A16A613EDDE(L_69, L_70, /*hidden argument*/NULL);
bool L_72 = BigInteger_op_Equality_mF5B5A983065914F1789BB1552A1AA1B589B59C90(L_68, L_71, /*hidden argument*/NULL);
V_1 = L_72;
bool L_73 = V_1;
if (!L_73)
{
goto IL_0256;
}
}
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_74 = __this->get_p_6();
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_75 = BigInteger_op_Implicit_m7057639C0ADB9D04334B3DA64237547E293A50EB(1, /*hidden argument*/NULL);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_76 = BigInteger_op_Subtraction_mC72451C0DAE478E11522A2AB99426BEAD4E97792(L_74, L_75, /*hidden argument*/NULL);
V_3 = L_76;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_77 = __this->get_q_7();
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_78 = BigInteger_op_Implicit_m7057639C0ADB9D04334B3DA64237547E293A50EB(1, /*hidden argument*/NULL);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_79 = BigInteger_op_Subtraction_mC72451C0DAE478E11522A2AB99426BEAD4E97792(L_77, L_78, /*hidden argument*/NULL);
V_4 = L_79;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_80 = V_3;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_81 = V_4;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_82 = BigInteger_op_Multiply_mEA6B6928879EF921641122FA7E597A16A613EDDE(L_80, L_81, /*hidden argument*/NULL);
V_5 = L_82;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_83 = __this->get_e_12();
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_84 = V_5;
NullCheck(L_83);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_85 = BigInteger_ModInverse_mBA7BA94A2C0F242844B97B18DAEE368065E59522(L_83, L_84, /*hidden argument*/NULL);
V_6 = L_85;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_86 = __this->get_d_5();
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_87 = V_6;
bool L_88 = BigInteger_op_Equality_mF5B5A983065914F1789BB1552A1AA1B589B59C90(L_86, L_87, /*hidden argument*/NULL);
V_1 = L_88;
bool L_89 = V_1;
if (L_89)
{
goto IL_0256;
}
}
{
bool L_90 = __this->get_isCRTpossible_2();
if (!L_90)
{
goto IL_0256;
}
}
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_91 = __this->get_dp_8();
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_92 = V_6;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_93 = V_3;
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_94 = BigInteger_op_Modulus_mAFBC82D374D9E2866AA4958732FA53F7445B122F(L_92, L_93, /*hidden argument*/NULL);
bool L_95 = BigInteger_op_Equality_mF5B5A983065914F1789BB1552A1AA1B589B59C90(L_91, L_94, /*hidden argument*/NULL);
if (!L_95)
{
goto IL_0254;
}
}
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_96 = __this->get_dq_9();
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_97 = V_6;
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_98 = V_4;
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_99 = BigInteger_op_Modulus_mAFBC82D374D9E2866AA4958732FA53F7445B122F(L_97, L_98, /*hidden argument*/NULL);
bool L_100 = BigInteger_op_Equality_mF5B5A983065914F1789BB1552A1AA1B589B59C90(L_96, L_99, /*hidden argument*/NULL);
if (!L_100)
{
goto IL_0254;
}
}
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_101 = __this->get_qInv_10();
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_102 = __this->get_q_7();
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_103 = __this->get_p_6();
NullCheck(L_102);
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_104 = BigInteger_ModInverse_mBA7BA94A2C0F242844B97B18DAEE368065E59522(L_102, L_103, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
bool L_105 = BigInteger_op_Equality_mF5B5A983065914F1789BB1552A1AA1B589B59C90(L_101, L_104, /*hidden argument*/NULL);
G_B35_0 = ((int32_t)(L_105));
goto IL_0255;
}
IL_0254:
{
G_B35_0 = 0;
}
IL_0255:
{
V_1 = (bool)G_B35_0;
}
IL_0256:
{
bool L_106 = V_1;
if (L_106)
{
goto IL_0269;
}
}
{
String_t* L_107 = Locale_GetText_m67B66557188C94648AA7A23F6A7501BE7D455ADA(_stringLiteralBA5B3EECE056B8FA19F9675DC6B2C3279F72B203, /*hidden argument*/NULL);
CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A * L_108 = (CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A *)il2cpp_codegen_object_new(CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A_il2cpp_TypeInfo_var);
CryptographicException__ctor_m0A5D357C12F9A830A9EBC51723094EBA5B854B98(L_108, L_107, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_108, NULL, RSAManaged_ImportParameters_m74BDEF3C147D83EE752B8445A83E1F4B7866717D_RuntimeMethod_var);
}
IL_0269:
{
return;
}
}
// System.Void Mono.Security.Cryptography.RSAManaged::Dispose(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RSAManaged_Dispose_m2C1A07BB502FBAB28DBE6675CA0B1D54019C6DFB (RSAManaged_t386184E253177BF2DD9589A7E9C171DA8E718745 * __this, bool ___disposing0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RSAManaged_Dispose_m2C1A07BB502FBAB28DBE6675CA0B1D54019C6DFB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
bool L_0 = __this->get_m_disposed_4();
if (L_0)
{
goto IL_010e;
}
}
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_1 = __this->get_d_5();
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
bool L_2 = BigInteger_op_Inequality_m0C6217422FC853BD5E26CF9E7995AE95E55668C2(L_1, (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)NULL, /*hidden argument*/NULL);
if (!L_2)
{
goto IL_002b;
}
}
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_3 = __this->get_d_5();
NullCheck(L_3);
BigInteger_Clear_m255C25D3F81897E8ACF1B0F1C75E33459E4E9ECD(L_3, /*hidden argument*/NULL);
__this->set_d_5((BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)NULL);
}
IL_002b:
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_4 = __this->get_p_6();
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
bool L_5 = BigInteger_op_Inequality_m0C6217422FC853BD5E26CF9E7995AE95E55668C2(L_4, (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)NULL, /*hidden argument*/NULL);
if (!L_5)
{
goto IL_004b;
}
}
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_6 = __this->get_p_6();
NullCheck(L_6);
BigInteger_Clear_m255C25D3F81897E8ACF1B0F1C75E33459E4E9ECD(L_6, /*hidden argument*/NULL);
__this->set_p_6((BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)NULL);
}
IL_004b:
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_7 = __this->get_q_7();
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
bool L_8 = BigInteger_op_Inequality_m0C6217422FC853BD5E26CF9E7995AE95E55668C2(L_7, (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)NULL, /*hidden argument*/NULL);
if (!L_8)
{
goto IL_006b;
}
}
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_9 = __this->get_q_7();
NullCheck(L_9);
BigInteger_Clear_m255C25D3F81897E8ACF1B0F1C75E33459E4E9ECD(L_9, /*hidden argument*/NULL);
__this->set_q_7((BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)NULL);
}
IL_006b:
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_10 = __this->get_dp_8();
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
bool L_11 = BigInteger_op_Inequality_m0C6217422FC853BD5E26CF9E7995AE95E55668C2(L_10, (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)NULL, /*hidden argument*/NULL);
if (!L_11)
{
goto IL_008b;
}
}
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_12 = __this->get_dp_8();
NullCheck(L_12);
BigInteger_Clear_m255C25D3F81897E8ACF1B0F1C75E33459E4E9ECD(L_12, /*hidden argument*/NULL);
__this->set_dp_8((BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)NULL);
}
IL_008b:
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_13 = __this->get_dq_9();
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
bool L_14 = BigInteger_op_Inequality_m0C6217422FC853BD5E26CF9E7995AE95E55668C2(L_13, (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)NULL, /*hidden argument*/NULL);
if (!L_14)
{
goto IL_00ab;
}
}
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_15 = __this->get_dq_9();
NullCheck(L_15);
BigInteger_Clear_m255C25D3F81897E8ACF1B0F1C75E33459E4E9ECD(L_15, /*hidden argument*/NULL);
__this->set_dq_9((BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)NULL);
}
IL_00ab:
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_16 = __this->get_qInv_10();
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
bool L_17 = BigInteger_op_Inequality_m0C6217422FC853BD5E26CF9E7995AE95E55668C2(L_16, (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)NULL, /*hidden argument*/NULL);
if (!L_17)
{
goto IL_00cb;
}
}
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_18 = __this->get_qInv_10();
NullCheck(L_18);
BigInteger_Clear_m255C25D3F81897E8ACF1B0F1C75E33459E4E9ECD(L_18, /*hidden argument*/NULL);
__this->set_qInv_10((BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)NULL);
}
IL_00cb:
{
bool L_19 = ___disposing0;
if (!L_19)
{
goto IL_010e;
}
}
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_20 = __this->get_e_12();
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
bool L_21 = BigInteger_op_Inequality_m0C6217422FC853BD5E26CF9E7995AE95E55668C2(L_20, (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)NULL, /*hidden argument*/NULL);
if (!L_21)
{
goto IL_00ee;
}
}
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_22 = __this->get_e_12();
NullCheck(L_22);
BigInteger_Clear_m255C25D3F81897E8ACF1B0F1C75E33459E4E9ECD(L_22, /*hidden argument*/NULL);
__this->set_e_12((BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)NULL);
}
IL_00ee:
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_23 = __this->get_n_11();
IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8_il2cpp_TypeInfo_var);
bool L_24 = BigInteger_op_Inequality_m0C6217422FC853BD5E26CF9E7995AE95E55668C2(L_23, (BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)NULL, /*hidden argument*/NULL);
if (!L_24)
{
goto IL_010e;
}
}
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_25 = __this->get_n_11();
NullCheck(L_25);
BigInteger_Clear_m255C25D3F81897E8ACF1B0F1C75E33459E4E9ECD(L_25, /*hidden argument*/NULL);
__this->set_n_11((BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 *)NULL);
}
IL_010e:
{
__this->set_m_disposed_4((bool)1);
return;
}
}
// System.String Mono.Security.Cryptography.RSAManaged::ToXmlString(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* RSAManaged_ToXmlString_m9189B3341B9CAD4722BFF40BB674316DEDFD7EDF (RSAManaged_t386184E253177BF2DD9589A7E9C171DA8E718745 * __this, bool ___includePrivateParameters0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RSAManaged_ToXmlString_m9189B3341B9CAD4722BFF40BB674316DEDFD7EDF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
StringBuilder_t * V_0 = NULL;
RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 V_1;
memset((&V_1), 0, sizeof(V_1));
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
StringBuilder_t * L_0 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
StringBuilder__ctor_mF928376F82E8C8FF3C11842C562DB8CF28B2735E(L_0, /*hidden argument*/NULL);
V_0 = L_0;
bool L_1 = ___includePrivateParameters0;
RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 L_2 = VirtFuncInvoker1< RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 , bool >::Invoke(10 /* System.Security.Cryptography.RSAParameters System.Security.Cryptography.RSA::ExportParameters(System.Boolean) */, __this, L_1);
V_1 = L_2;
}
IL_000e:
try
{ // begin try (depth: 1)
{
StringBuilder_t * L_3 = V_0;
NullCheck(L_3);
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_3, _stringLiteral2573431B92F35769F17226527DDA47049FF4A0DF, /*hidden argument*/NULL);
StringBuilder_t * L_4 = V_0;
NullCheck(L_4);
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_4, _stringLiteral389F2CE8BCC7BBD0A3FF8EEE933CAD8BCD045174, /*hidden argument*/NULL);
StringBuilder_t * L_5 = V_0;
RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 L_6 = V_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_7 = L_6.get_Modulus_1();
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
String_t* L_8 = Convert_ToBase64String_mF201749AD724C437524C8A6108519470A0F65B84(L_7, /*hidden argument*/NULL);
NullCheck(L_5);
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_5, L_8, /*hidden argument*/NULL);
StringBuilder_t * L_9 = V_0;
NullCheck(L_9);
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_9, _stringLiteralE1389F27DE95DF8DE493690AD602D0D9C4B8A064, /*hidden argument*/NULL);
StringBuilder_t * L_10 = V_0;
NullCheck(L_10);
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_10, _stringLiteral3F00283C1F56E677FC4B8300E75C719DD482B456, /*hidden argument*/NULL);
StringBuilder_t * L_11 = V_0;
RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 L_12 = V_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_13 = L_12.get_Exponent_0();
String_t* L_14 = Convert_ToBase64String_mF201749AD724C437524C8A6108519470A0F65B84(L_13, /*hidden argument*/NULL);
NullCheck(L_11);
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_11, L_14, /*hidden argument*/NULL);
StringBuilder_t * L_15 = V_0;
NullCheck(L_15);
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_15, _stringLiteralBDEFEB489575DFA1A3BA1FCA02FEA1FB3C42F6EA, /*hidden argument*/NULL);
bool L_16 = ___includePrivateParameters0;
if (!L_16)
{
goto IL_0198;
}
}
IL_0074:
{
RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 L_17 = V_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_18 = L_17.get_P_2();
if (!L_18)
{
goto IL_00a6;
}
}
IL_007c:
{
StringBuilder_t * L_19 = V_0;
NullCheck(L_19);
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_19, _stringLiteral2CB0A92636DB3A3A9D187F27C6DE24B5B2F91B92, /*hidden argument*/NULL);
StringBuilder_t * L_20 = V_0;
RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 L_21 = V_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_22 = L_21.get_P_2();
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
String_t* L_23 = Convert_ToBase64String_mF201749AD724C437524C8A6108519470A0F65B84(L_22, /*hidden argument*/NULL);
NullCheck(L_20);
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_20, L_23, /*hidden argument*/NULL);
StringBuilder_t * L_24 = V_0;
NullCheck(L_24);
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_24, _stringLiteral2684A7EF111863B200C834E7572390FA05F109E3, /*hidden argument*/NULL);
}
IL_00a6:
{
RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 L_25 = V_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_26 = L_25.get_Q_3();
if (!L_26)
{
goto IL_00d8;
}
}
IL_00ae:
{
StringBuilder_t * L_27 = V_0;
NullCheck(L_27);
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_27, _stringLiteral2D91E9980B38E82DF8F787AB449DF0E2AADFF84A, /*hidden argument*/NULL);
StringBuilder_t * L_28 = V_0;
RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 L_29 = V_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_30 = L_29.get_Q_3();
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
String_t* L_31 = Convert_ToBase64String_mF201749AD724C437524C8A6108519470A0F65B84(L_30, /*hidden argument*/NULL);
NullCheck(L_28);
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_28, L_31, /*hidden argument*/NULL);
StringBuilder_t * L_32 = V_0;
NullCheck(L_32);
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_32, _stringLiteralBC4CD0294E0999F20205970C2B199983C3C0B0A5, /*hidden argument*/NULL);
}
IL_00d8:
{
RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 L_33 = V_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_34 = L_33.get_DP_4();
if (!L_34)
{
goto IL_010a;
}
}
IL_00e0:
{
StringBuilder_t * L_35 = V_0;
NullCheck(L_35);
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_35, _stringLiteralC376AAE863FED7F2100B15B45F998504B3C30559, /*hidden argument*/NULL);
StringBuilder_t * L_36 = V_0;
RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 L_37 = V_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_38 = L_37.get_DP_4();
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
String_t* L_39 = Convert_ToBase64String_mF201749AD724C437524C8A6108519470A0F65B84(L_38, /*hidden argument*/NULL);
NullCheck(L_36);
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_36, L_39, /*hidden argument*/NULL);
StringBuilder_t * L_40 = V_0;
NullCheck(L_40);
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_40, _stringLiteral3F2997F78A546288F461F90F87679397A1E5A51F, /*hidden argument*/NULL);
}
IL_010a:
{
RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 L_41 = V_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_42 = L_41.get_DQ_5();
if (!L_42)
{
goto IL_013c;
}
}
IL_0112:
{
StringBuilder_t * L_43 = V_0;
NullCheck(L_43);
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_43, _stringLiteral669EC1C9F3C16BB6049E4E62DED3D267DB25932E, /*hidden argument*/NULL);
StringBuilder_t * L_44 = V_0;
RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 L_45 = V_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_46 = L_45.get_DQ_5();
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
String_t* L_47 = Convert_ToBase64String_mF201749AD724C437524C8A6108519470A0F65B84(L_46, /*hidden argument*/NULL);
NullCheck(L_44);
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_44, L_47, /*hidden argument*/NULL);
StringBuilder_t * L_48 = V_0;
NullCheck(L_48);
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_48, _stringLiteral9444DC2D03948DE0E3F0FB612AC887006E0DC23E, /*hidden argument*/NULL);
}
IL_013c:
{
RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 L_49 = V_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_50 = L_49.get_InverseQ_6();
if (!L_50)
{
goto IL_016e;
}
}
IL_0144:
{
StringBuilder_t * L_51 = V_0;
NullCheck(L_51);
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_51, _stringLiteral9636E74995FF458A887B597EABB50C7D35056A34, /*hidden argument*/NULL);
StringBuilder_t * L_52 = V_0;
RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 L_53 = V_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_54 = L_53.get_InverseQ_6();
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
String_t* L_55 = Convert_ToBase64String_mF201749AD724C437524C8A6108519470A0F65B84(L_54, /*hidden argument*/NULL);
NullCheck(L_52);
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_52, L_55, /*hidden argument*/NULL);
StringBuilder_t * L_56 = V_0;
NullCheck(L_56);
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_56, _stringLiteral16027BD069AB27D060EBB9DE6EF1E9ECA4BC97E2, /*hidden argument*/NULL);
}
IL_016e:
{
StringBuilder_t * L_57 = V_0;
NullCheck(L_57);
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_57, _stringLiteralA5F656374D7FF6B837776376DF09B2C531805C9E, /*hidden argument*/NULL);
StringBuilder_t * L_58 = V_0;
RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 L_59 = V_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_60 = L_59.get_D_7();
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
String_t* L_61 = Convert_ToBase64String_mF201749AD724C437524C8A6108519470A0F65B84(L_60, /*hidden argument*/NULL);
NullCheck(L_58);
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_58, L_61, /*hidden argument*/NULL);
StringBuilder_t * L_62 = V_0;
NullCheck(L_62);
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_62, _stringLiteral9D47261D808C7285426E7FA767344B13B392D7D2, /*hidden argument*/NULL);
}
IL_0198:
{
StringBuilder_t * L_63 = V_0;
NullCheck(L_63);
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_63, _stringLiteral09AB7D22A03780085A8E13440BC03282C58B11C9, /*hidden argument*/NULL);
goto IL_0254;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (RuntimeObject_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_01a9;
throw e;
}
CATCH_01a9:
{ // begin catch(System.Object)
{
RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 L_64 = V_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_65 = L_64.get_P_2();
if (!L_65)
{
goto IL_01c6;
}
}
IL_01b2:
{
RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 L_66 = V_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_67 = L_66.get_P_2();
RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 L_68 = V_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_69 = L_68.get_P_2();
NullCheck(L_69);
Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E((RuntimeArray *)(RuntimeArray *)L_67, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_69)->max_length)))), /*hidden argument*/NULL);
}
IL_01c6:
{
RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 L_70 = V_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_71 = L_70.get_Q_3();
if (!L_71)
{
goto IL_01e2;
}
}
IL_01ce:
{
RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 L_72 = V_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_73 = L_72.get_Q_3();
RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 L_74 = V_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_75 = L_74.get_Q_3();
NullCheck(L_75);
Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E((RuntimeArray *)(RuntimeArray *)L_73, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_75)->max_length)))), /*hidden argument*/NULL);
}
IL_01e2:
{
RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 L_76 = V_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_77 = L_76.get_DP_4();
if (!L_77)
{
goto IL_01fe;
}
}
IL_01ea:
{
RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 L_78 = V_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_79 = L_78.get_DP_4();
RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 L_80 = V_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_81 = L_80.get_DP_4();
NullCheck(L_81);
Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E((RuntimeArray *)(RuntimeArray *)L_79, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_81)->max_length)))), /*hidden argument*/NULL);
}
IL_01fe:
{
RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 L_82 = V_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_83 = L_82.get_DQ_5();
if (!L_83)
{
goto IL_021a;
}
}
IL_0206:
{
RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 L_84 = V_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_85 = L_84.get_DQ_5();
RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 L_86 = V_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_87 = L_86.get_DQ_5();
NullCheck(L_87);
Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E((RuntimeArray *)(RuntimeArray *)L_85, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_87)->max_length)))), /*hidden argument*/NULL);
}
IL_021a:
{
RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 L_88 = V_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_89 = L_88.get_InverseQ_6();
if (!L_89)
{
goto IL_0236;
}
}
IL_0222:
{
RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 L_90 = V_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_91 = L_90.get_InverseQ_6();
RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 L_92 = V_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_93 = L_92.get_InverseQ_6();
NullCheck(L_93);
Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E((RuntimeArray *)(RuntimeArray *)L_91, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_93)->max_length)))), /*hidden argument*/NULL);
}
IL_0236:
{
RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 L_94 = V_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_95 = L_94.get_D_7();
if (!L_95)
{
goto IL_0252;
}
}
IL_023e:
{
RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 L_96 = V_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_97 = L_96.get_D_7();
RSAParameters_t6A568C1275FA8F8C02615666D998134DCFFB9717 L_98 = V_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_99 = L_98.get_D_7();
NullCheck(L_99);
Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E((RuntimeArray *)(RuntimeArray *)L_97, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_99)->max_length)))), /*hidden argument*/NULL);
}
IL_0252:
{
IL2CPP_RAISE_MANAGED_EXCEPTION(__exception_local, NULL, RSAManaged_ToXmlString_m9189B3341B9CAD4722BFF40BB674316DEDFD7EDF_RuntimeMethod_var);
}
} // end catch (depth: 1)
IL_0254:
{
StringBuilder_t * L_100 = V_0;
NullCheck(L_100);
String_t* L_101 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_100);
return L_101;
}
}
// System.Byte[] Mono.Security.Cryptography.RSAManaged::GetPaddedValue(Mono.Math.BigInteger,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* RSAManaged_GetPaddedValue_m09F304D316894F8620769B764EE99DC5FBF29471 (RSAManaged_t386184E253177BF2DD9589A7E9C171DA8E718745 * __this, BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * ___value0, int32_t ___length1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RSAManaged_GetPaddedValue_m09F304D316894F8620769B764EE99DC5FBF29471_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_0 = NULL;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_1 = NULL;
{
BigInteger_t32A7AEC0FCC286F1F9F33AAE4B6506F69CCC78A8 * L_0 = ___value0;
NullCheck(L_0);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = BigInteger_GetBytes_m3FA801F9485DE409CF9C9E7F4873694BF642C31C(L_0, /*hidden argument*/NULL);
V_0 = L_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = V_0;
NullCheck(L_2);
int32_t L_3 = ___length1;
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length))))) < ((int32_t)L_3)))
{
goto IL_000f;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = V_0;
return L_4;
}
IL_000f:
{
int32_t L_5 = ___length1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_6 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)L_5);
V_1 = L_6;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_7 = V_0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_8 = V_1;
int32_t L_9 = ___length1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_10 = V_0;
NullCheck(L_10);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_11 = V_0;
NullCheck(L_11);
Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353((RuntimeArray *)(RuntimeArray *)L_7, 0, (RuntimeArray *)(RuntimeArray *)L_8, ((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_10)->max_length)))))), (((int32_t)((int32_t)(((RuntimeArray*)L_11)->max_length)))), /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_12 = V_0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_13 = V_0;
NullCheck(L_13);
Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E((RuntimeArray *)(RuntimeArray *)L_12, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_13)->max_length)))), /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_14 = V_1;
return L_14;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Mono.Security.Cryptography.RSAManaged_KeyGeneratedEventHandler::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyGeneratedEventHandler__ctor_mE307EE64ED560979049F75AE82AAB74F33BBFB30 (KeyGeneratedEventHandler_t4696955EF1EA571682FB3F21F5A4CA5E5B6737A9 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Void Mono.Security.Cryptography.RSAManaged_KeyGeneratedEventHandler::Invoke(System.Object,System.EventArgs)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyGeneratedEventHandler_Invoke_m2544ADEDCC25B2745B8803AC571D74C34459F2F2 (KeyGeneratedEventHandler_t4696955EF1EA571682FB3F21F5A4CA5E5B6737A9 * __this, RuntimeObject * ___sender0, EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * ___e1, const RuntimeMethod* method)
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 2)
{
// open
typedef void (*FunctionPointerType) (RuntimeObject *, EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___sender0, ___e1, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, RuntimeObject *, EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___sender0, ___e1, targetMethod);
}
}
else if (___parameterCount != 2)
{
// open
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker1< EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * >::Invoke(targetMethod, ___sender0, ___e1);
else
GenericVirtActionInvoker1< EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * >::Invoke(targetMethod, ___sender0, ___e1);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker1< EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___sender0, ___e1);
else
VirtActionInvoker1< EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___sender0, ___e1);
}
}
else
{
typedef void (*FunctionPointerType) (RuntimeObject *, EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___sender0, ___e1, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef void (*FunctionPointerType) (RuntimeObject *, EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___sender0, ___e1, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker2< RuntimeObject *, EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * >::Invoke(targetMethod, targetThis, ___sender0, ___e1);
else
GenericVirtActionInvoker2< RuntimeObject *, EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * >::Invoke(targetMethod, targetThis, ___sender0, ___e1);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker2< RuntimeObject *, EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___sender0, ___e1);
else
VirtActionInvoker2< RuntimeObject *, EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___sender0, ___e1);
}
}
else
{
typedef void (*FunctionPointerType) (void*, RuntimeObject *, EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___sender0, ___e1, targetMethod);
}
}
}
}
// System.IAsyncResult Mono.Security.Cryptography.RSAManaged_KeyGeneratedEventHandler::BeginInvoke(System.Object,System.EventArgs,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* KeyGeneratedEventHandler_BeginInvoke_m679B8A636D2776A15B77B205E37C2D625BA9BD1A (KeyGeneratedEventHandler_t4696955EF1EA571682FB3F21F5A4CA5E5B6737A9 * __this, RuntimeObject * ___sender0, EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * ___e1, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback2, RuntimeObject * ___object3, const RuntimeMethod* method)
{
void *__d_args[3] = {0};
__d_args[0] = ___sender0;
__d_args[1] = ___e1;
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback2, (RuntimeObject*)___object3);
}
// System.Void Mono.Security.Cryptography.RSAManaged_KeyGeneratedEventHandler::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyGeneratedEventHandler_EndInvoke_m7B2DD30E561E108C5AA15AE1B22CDD4D0940AF78 (KeyGeneratedEventHandler_t4696955EF1EA571682FB3F21F5A4CA5E5B6737A9 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Interface.AlertLevel Mono.Security.Interface.Alert::get_Level()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Alert_get_Level_m4D9BDC77286315A186F6517A3AE514DD7B31FBDC (Alert_tABF269545F2C583CCA47FF574E612DDAF232944E * __this, const RuntimeMethod* method)
{
{
uint8_t L_0 = __this->get_level_0();
return L_0;
}
}
// Mono.Security.Interface.AlertDescription Mono.Security.Interface.Alert::get_Description()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Alert_get_Description_m3FDF20086BFE900B014DB0EA960F27413326A11D (Alert_tABF269545F2C583CCA47FF574E612DDAF232944E * __this, const RuntimeMethod* method)
{
{
uint8_t L_0 = __this->get_description_1();
return L_0;
}
}
// System.Void Mono.Security.Interface.Alert::.ctor(Mono.Security.Interface.AlertDescription)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Alert__ctor_mD0D7AE959A64782F053515E043A70D71E229279B (Alert_tABF269545F2C583CCA47FF574E612DDAF232944E * __this, uint8_t ___description0, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
uint8_t L_0 = ___description0;
__this->set_description_1(L_0);
Alert_inferAlertLevel_m3501288705DB4CCFDCBB9230E4C3F2E819738A9C(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void Mono.Security.Interface.Alert::inferAlertLevel()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Alert_inferAlertLevel_m3501288705DB4CCFDCBB9230E4C3F2E819738A9C (Alert_tABF269545F2C583CCA47FF574E612DDAF232944E * __this, const RuntimeMethod* method)
{
uint8_t V_0 = 0;
{
uint8_t L_0 = __this->get_description_1();
V_0 = L_0;
uint8_t L_1 = V_0;
if ((!(((uint32_t)L_1) <= ((uint32_t)((int32_t)60)))))
{
goto IL_0099;
}
}
{
uint8_t L_2 = V_0;
if ((!(((uint32_t)L_2) <= ((uint32_t)((int32_t)10)))))
{
goto IL_0027;
}
}
{
uint8_t L_3 = V_0;
if (!L_3)
{
goto IL_00bd;
}
}
{
uint8_t L_4 = V_0;
if ((((int32_t)L_4) == ((int32_t)((int32_t)10))))
{
goto IL_00c5;
}
}
{
goto IL_00c5;
}
IL_0027:
{
uint8_t L_5 = V_0;
if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_5, (int32_t)((int32_t)20)))) > ((uint32_t)2))))
{
goto IL_00c5;
}
}
{
uint8_t L_6 = V_0;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)((int32_t)30))))
{
case 0:
{
goto IL_00c5;
}
case 1:
{
goto IL_00c5;
}
case 2:
{
goto IL_00c5;
}
case 3:
{
goto IL_00c5;
}
case 4:
{
goto IL_00c5;
}
case 5:
{
goto IL_00c5;
}
case 6:
{
goto IL_00c5;
}
case 7:
{
goto IL_00c5;
}
case 8:
{
goto IL_00c5;
}
case 9:
{
goto IL_00c5;
}
case 10:
{
goto IL_00c5;
}
case 11:
{
goto IL_00c5;
}
case 12:
{
goto IL_00c5;
}
case 13:
{
goto IL_00c5;
}
case 14:
{
goto IL_00c5;
}
case 15:
{
goto IL_00c5;
}
case 16:
{
goto IL_00c5;
}
case 17:
{
goto IL_00c5;
}
case 18:
{
goto IL_00c5;
}
case 19:
{
goto IL_00c5;
}
case 20:
{
goto IL_00c5;
}
case 21:
{
goto IL_00c5;
}
}
}
{
uint8_t L_7 = V_0;
if ((((int32_t)L_7) == ((int32_t)((int32_t)60))))
{
goto IL_00c5;
}
}
{
goto IL_00c5;
}
IL_0099:
{
uint8_t L_8 = V_0;
if ((!(((uint32_t)L_8) <= ((uint32_t)((int32_t)80)))))
{
goto IL_00ac;
}
}
{
uint8_t L_9 = V_0;
if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)((int32_t)70)))) > ((uint32_t)1))))
{
goto IL_00c5;
}
}
{
uint8_t L_10 = V_0;
if ((((int32_t)L_10) == ((int32_t)((int32_t)80))))
{
goto IL_00c5;
}
}
{
goto IL_00c5;
}
IL_00ac:
{
uint8_t L_11 = V_0;
if ((((int32_t)L_11) == ((int32_t)((int32_t)90))))
{
goto IL_00bd;
}
}
{
uint8_t L_12 = V_0;
if ((((int32_t)L_12) == ((int32_t)((int32_t)100))))
{
goto IL_00bd;
}
}
{
uint8_t L_13 = V_0;
if ((((int32_t)L_13) == ((int32_t)((int32_t)110))))
{
goto IL_00c5;
}
}
{
goto IL_00c5;
}
IL_00bd:
{
__this->set_level_0(1);
return;
}
IL_00c5:
{
__this->set_level_0(2);
return;
}
}
// System.String Mono.Security.Interface.Alert::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Alert_ToString_mF4C26959C923C9C023B6DAD01DFF6F0D2868D167 (Alert_tABF269545F2C583CCA47FF574E612DDAF232944E * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Alert_ToString_mF4C26959C923C9C023B6DAD01DFF6F0D2868D167_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
uint8_t L_0 = Alert_get_Level_m4D9BDC77286315A186F6517A3AE514DD7B31FBDC_inline(__this, /*hidden argument*/NULL);
uint8_t L_1 = L_0;
RuntimeObject * L_2 = Box(AlertLevel_t300CD4F0586BC84361B20C4B26C89EC1ECB3FC34_il2cpp_TypeInfo_var, &L_1);
uint8_t L_3 = Alert_get_Description_m3FDF20086BFE900B014DB0EA960F27413326A11D_inline(__this, /*hidden argument*/NULL);
uint8_t L_4 = L_3;
RuntimeObject * L_5 = Box(AlertDescription_t8D4DE3060801044928816134B2292AFB933D40D6_il2cpp_TypeInfo_var, &L_4);
String_t* L_6 = String_Format_m19325298DBC61AAC016C16F7B3CF97A8A3DEA34A(_stringLiteral8D6BEFF0610975FF4C08174B23C6DE430DB0BB84, L_2, L_5, /*hidden argument*/NULL);
return L_6;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Mono.Security.Interface.CertificateValidationHelper::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CertificateValidationHelper__cctor_m3F448328D24FD04BC74176CE26ACCB2C431E2B24 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CertificateValidationHelper__cctor_m3F448328D24FD04BC74176CE26ACCB2C431E2B24_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
bool L_0 = File_Exists_m6B9BDD8EEB33D744EB0590DD27BC0152FAFBD1FB(_stringLiteral6D4853D9C2696A98DA8096DCE674A11141FD8E3C, /*hidden argument*/NULL);
if (!L_0)
{
goto IL_0019;
}
}
{
((CertificateValidationHelper_t700A78AF16D5DA1698501C49E6894B1B67963F86_StaticFields*)il2cpp_codegen_static_fields_for(CertificateValidationHelper_t700A78AF16D5DA1698501C49E6894B1B67963F86_il2cpp_TypeInfo_var))->set_noX509Chain_0((bool)1);
((CertificateValidationHelper_t700A78AF16D5DA1698501C49E6894B1B67963F86_StaticFields*)il2cpp_codegen_static_fields_for(CertificateValidationHelper_t700A78AF16D5DA1698501C49E6894B1B67963F86_il2cpp_TypeInfo_var))->set_supportsTrustAnchors_1((bool)1);
return;
}
IL_0019:
{
((CertificateValidationHelper_t700A78AF16D5DA1698501C49E6894B1B67963F86_StaticFields*)il2cpp_codegen_static_fields_for(CertificateValidationHelper_t700A78AF16D5DA1698501C49E6894B1B67963F86_il2cpp_TypeInfo_var))->set_noX509Chain_0((bool)0);
((CertificateValidationHelper_t700A78AF16D5DA1698501C49E6894B1B67963F86_StaticFields*)il2cpp_codegen_static_fields_for(CertificateValidationHelper_t700A78AF16D5DA1698501C49E6894B1B67963F86_il2cpp_TypeInfo_var))->set_supportsTrustAnchors_1((bool)0);
return;
}
}
// Mono.Security.Interface.ICertificateValidator2 Mono.Security.Interface.CertificateValidationHelper::GetInternalValidator(Mono.Security.Interface.MonoTlsSettings,Mono.Security.Interface.MonoTlsProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* CertificateValidationHelper_GetInternalValidator_m765EA22BAC020CAA59167E95C1D1A6A652FE1D01 (MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * ___settings0, MonoTlsProvider_tDCD056C5BBBE59ED6BAF63F25952B406C1143C27 * ___provider1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CertificateValidationHelper_GetInternalValidator_m765EA22BAC020CAA59167E95C1D1A6A652FE1D01_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
MonoTlsProvider_tDCD056C5BBBE59ED6BAF63F25952B406C1143C27 * L_0 = ___provider1;
MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * L_1 = ___settings0;
RuntimeObject * L_2 = NoReflectionHelper_GetInternalValidator_m231BC9D1C0A711D48F25B6F0162ACABBA93A0D74(L_0, L_1, /*hidden argument*/NULL);
return ((RuntimeObject*)Castclass((RuntimeObject*)L_2, ICertificateValidator2_t59AEA784559648561EFC807C805B3F3AD216AB18_il2cpp_TypeInfo_var));
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Mono.Security.Interface.MonoLocalCertificateSelectionCallback::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoLocalCertificateSelectionCallback__ctor_m8408C75BD0A84C2E5B7BFED75CAAA62B0FC07F60 (MonoLocalCertificateSelectionCallback_t657381EF916D4EDC456FA5A6AC948EFD7A481F0A * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Security.Cryptography.X509Certificates.X509Certificate Mono.Security.Interface.MonoLocalCertificateSelectionCallback::Invoke(System.String,System.Security.Cryptography.X509Certificates.X509CertificateCollection,System.Security.Cryptography.X509Certificates.X509Certificate,System.String[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509Certificate_t6859B8914E252B6831D6F59A2A720CD23F7FA7B2 * MonoLocalCertificateSelectionCallback_Invoke_mFB921E62D2252D1D50A5FCCFEC1E62BA719A381B (MonoLocalCertificateSelectionCallback_t657381EF916D4EDC456FA5A6AC948EFD7A481F0A * __this, String_t* ___targetHost0, X509CertificateCollection_t824A6C58D0D1B4A7CAE30F26CE8EE4B23A8A1833 * ___localCertificates1, X509Certificate_t6859B8914E252B6831D6F59A2A720CD23F7FA7B2 * ___remoteCertificate2, StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___acceptableIssuers3, const RuntimeMethod* method)
{
X509Certificate_t6859B8914E252B6831D6F59A2A720CD23F7FA7B2 * result = NULL;
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 4)
{
// open
typedef X509Certificate_t6859B8914E252B6831D6F59A2A720CD23F7FA7B2 * (*FunctionPointerType) (String_t*, X509CertificateCollection_t824A6C58D0D1B4A7CAE30F26CE8EE4B23A8A1833 *, X509Certificate_t6859B8914E252B6831D6F59A2A720CD23F7FA7B2 *, StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___targetHost0, ___localCertificates1, ___remoteCertificate2, ___acceptableIssuers3, targetMethod);
}
else
{
// closed
typedef X509Certificate_t6859B8914E252B6831D6F59A2A720CD23F7FA7B2 * (*FunctionPointerType) (void*, String_t*, X509CertificateCollection_t824A6C58D0D1B4A7CAE30F26CE8EE4B23A8A1833 *, X509Certificate_t6859B8914E252B6831D6F59A2A720CD23F7FA7B2 *, StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___targetHost0, ___localCertificates1, ___remoteCertificate2, ___acceptableIssuers3, targetMethod);
}
}
else if (___parameterCount != 4)
{
// open
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker3< X509Certificate_t6859B8914E252B6831D6F59A2A720CD23F7FA7B2 *, X509CertificateCollection_t824A6C58D0D1B4A7CAE30F26CE8EE4B23A8A1833 *, X509Certificate_t6859B8914E252B6831D6F59A2A720CD23F7FA7B2 *, StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* >::Invoke(targetMethod, ___targetHost0, ___localCertificates1, ___remoteCertificate2, ___acceptableIssuers3);
else
result = GenericVirtFuncInvoker3< X509Certificate_t6859B8914E252B6831D6F59A2A720CD23F7FA7B2 *, X509CertificateCollection_t824A6C58D0D1B4A7CAE30F26CE8EE4B23A8A1833 *, X509Certificate_t6859B8914E252B6831D6F59A2A720CD23F7FA7B2 *, StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* >::Invoke(targetMethod, ___targetHost0, ___localCertificates1, ___remoteCertificate2, ___acceptableIssuers3);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker3< X509Certificate_t6859B8914E252B6831D6F59A2A720CD23F7FA7B2 *, X509CertificateCollection_t824A6C58D0D1B4A7CAE30F26CE8EE4B23A8A1833 *, X509Certificate_t6859B8914E252B6831D6F59A2A720CD23F7FA7B2 *, StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___targetHost0, ___localCertificates1, ___remoteCertificate2, ___acceptableIssuers3);
else
result = VirtFuncInvoker3< X509Certificate_t6859B8914E252B6831D6F59A2A720CD23F7FA7B2 *, X509CertificateCollection_t824A6C58D0D1B4A7CAE30F26CE8EE4B23A8A1833 *, X509Certificate_t6859B8914E252B6831D6F59A2A720CD23F7FA7B2 *, StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___targetHost0, ___localCertificates1, ___remoteCertificate2, ___acceptableIssuers3);
}
}
else
{
typedef X509Certificate_t6859B8914E252B6831D6F59A2A720CD23F7FA7B2 * (*FunctionPointerType) (String_t*, X509CertificateCollection_t824A6C58D0D1B4A7CAE30F26CE8EE4B23A8A1833 *, X509Certificate_t6859B8914E252B6831D6F59A2A720CD23F7FA7B2 *, StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___targetHost0, ___localCertificates1, ___remoteCertificate2, ___acceptableIssuers3, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef X509Certificate_t6859B8914E252B6831D6F59A2A720CD23F7FA7B2 * (*FunctionPointerType) (String_t*, X509CertificateCollection_t824A6C58D0D1B4A7CAE30F26CE8EE4B23A8A1833 *, X509Certificate_t6859B8914E252B6831D6F59A2A720CD23F7FA7B2 *, StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___targetHost0, ___localCertificates1, ___remoteCertificate2, ___acceptableIssuers3, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker4< X509Certificate_t6859B8914E252B6831D6F59A2A720CD23F7FA7B2 *, String_t*, X509CertificateCollection_t824A6C58D0D1B4A7CAE30F26CE8EE4B23A8A1833 *, X509Certificate_t6859B8914E252B6831D6F59A2A720CD23F7FA7B2 *, StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* >::Invoke(targetMethod, targetThis, ___targetHost0, ___localCertificates1, ___remoteCertificate2, ___acceptableIssuers3);
else
result = GenericVirtFuncInvoker4< X509Certificate_t6859B8914E252B6831D6F59A2A720CD23F7FA7B2 *, String_t*, X509CertificateCollection_t824A6C58D0D1B4A7CAE30F26CE8EE4B23A8A1833 *, X509Certificate_t6859B8914E252B6831D6F59A2A720CD23F7FA7B2 *, StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* >::Invoke(targetMethod, targetThis, ___targetHost0, ___localCertificates1, ___remoteCertificate2, ___acceptableIssuers3);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker4< X509Certificate_t6859B8914E252B6831D6F59A2A720CD23F7FA7B2 *, String_t*, X509CertificateCollection_t824A6C58D0D1B4A7CAE30F26CE8EE4B23A8A1833 *, X509Certificate_t6859B8914E252B6831D6F59A2A720CD23F7FA7B2 *, StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___targetHost0, ___localCertificates1, ___remoteCertificate2, ___acceptableIssuers3);
else
result = VirtFuncInvoker4< X509Certificate_t6859B8914E252B6831D6F59A2A720CD23F7FA7B2 *, String_t*, X509CertificateCollection_t824A6C58D0D1B4A7CAE30F26CE8EE4B23A8A1833 *, X509Certificate_t6859B8914E252B6831D6F59A2A720CD23F7FA7B2 *, StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___targetHost0, ___localCertificates1, ___remoteCertificate2, ___acceptableIssuers3);
}
}
else
{
typedef X509Certificate_t6859B8914E252B6831D6F59A2A720CD23F7FA7B2 * (*FunctionPointerType) (void*, String_t*, X509CertificateCollection_t824A6C58D0D1B4A7CAE30F26CE8EE4B23A8A1833 *, X509Certificate_t6859B8914E252B6831D6F59A2A720CD23F7FA7B2 *, StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___targetHost0, ___localCertificates1, ___remoteCertificate2, ___acceptableIssuers3, targetMethod);
}
}
}
return result;
}
// System.IAsyncResult Mono.Security.Interface.MonoLocalCertificateSelectionCallback::BeginInvoke(System.String,System.Security.Cryptography.X509Certificates.X509CertificateCollection,System.Security.Cryptography.X509Certificates.X509Certificate,System.String[],System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* MonoLocalCertificateSelectionCallback_BeginInvoke_m860460761E2C341DB4549D1D2A27A72A0E618746 (MonoLocalCertificateSelectionCallback_t657381EF916D4EDC456FA5A6AC948EFD7A481F0A * __this, String_t* ___targetHost0, X509CertificateCollection_t824A6C58D0D1B4A7CAE30F26CE8EE4B23A8A1833 * ___localCertificates1, X509Certificate_t6859B8914E252B6831D6F59A2A720CD23F7FA7B2 * ___remoteCertificate2, StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___acceptableIssuers3, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback4, RuntimeObject * ___object5, const RuntimeMethod* method)
{
void *__d_args[5] = {0};
__d_args[0] = ___targetHost0;
__d_args[1] = ___localCertificates1;
__d_args[2] = ___remoteCertificate2;
__d_args[3] = ___acceptableIssuers3;
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback4, (RuntimeObject*)___object5);
}
// System.Security.Cryptography.X509Certificates.X509Certificate Mono.Security.Interface.MonoLocalCertificateSelectionCallback::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509Certificate_t6859B8914E252B6831D6F59A2A720CD23F7FA7B2 * MonoLocalCertificateSelectionCallback_EndInvoke_m6D484538EE84A8D910EFF7288158979751BDF447 (MonoLocalCertificateSelectionCallback_t657381EF916D4EDC456FA5A6AC948EFD7A481F0A * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return (X509Certificate_t6859B8914E252B6831D6F59A2A720CD23F7FA7B2 *)__result;
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Mono.Security.Interface.MonoRemoteCertificateValidationCallback::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoRemoteCertificateValidationCallback__ctor_mC3C556F0B5102353E3EFCE5098B7338B039819FA (MonoRemoteCertificateValidationCallback_t7A8DAD12B70CE3BB19BAAD04F587D5ED02385CC6 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Boolean Mono.Security.Interface.MonoRemoteCertificateValidationCallback::Invoke(System.String,System.Security.Cryptography.X509Certificates.X509Certificate,System.Security.Cryptography.X509Certificates.X509Chain,Mono.Security.Interface.MonoSslPolicyErrors)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MonoRemoteCertificateValidationCallback_Invoke_m405859123BB9004917076DD131EA8522AA18D990 (MonoRemoteCertificateValidationCallback_t7A8DAD12B70CE3BB19BAAD04F587D5ED02385CC6 * __this, String_t* ___targetHost0, X509Certificate_t6859B8914E252B6831D6F59A2A720CD23F7FA7B2 * ___certificate1, X509Chain_t4A28E9A30CBB331C9B68AE4AFCB30625C6C8B538 * ___chain2, int32_t ___sslPolicyErrors3, const RuntimeMethod* method)
{
bool result = false;
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 4)
{
// open
typedef bool (*FunctionPointerType) (String_t*, X509Certificate_t6859B8914E252B6831D6F59A2A720CD23F7FA7B2 *, X509Chain_t4A28E9A30CBB331C9B68AE4AFCB30625C6C8B538 *, int32_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___targetHost0, ___certificate1, ___chain2, ___sslPolicyErrors3, targetMethod);
}
else
{
// closed
typedef bool (*FunctionPointerType) (void*, String_t*, X509Certificate_t6859B8914E252B6831D6F59A2A720CD23F7FA7B2 *, X509Chain_t4A28E9A30CBB331C9B68AE4AFCB30625C6C8B538 *, int32_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___targetHost0, ___certificate1, ___chain2, ___sslPolicyErrors3, targetMethod);
}
}
else if (___parameterCount != 4)
{
// open
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker3< bool, X509Certificate_t6859B8914E252B6831D6F59A2A720CD23F7FA7B2 *, X509Chain_t4A28E9A30CBB331C9B68AE4AFCB30625C6C8B538 *, int32_t >::Invoke(targetMethod, ___targetHost0, ___certificate1, ___chain2, ___sslPolicyErrors3);
else
result = GenericVirtFuncInvoker3< bool, X509Certificate_t6859B8914E252B6831D6F59A2A720CD23F7FA7B2 *, X509Chain_t4A28E9A30CBB331C9B68AE4AFCB30625C6C8B538 *, int32_t >::Invoke(targetMethod, ___targetHost0, ___certificate1, ___chain2, ___sslPolicyErrors3);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker3< bool, X509Certificate_t6859B8914E252B6831D6F59A2A720CD23F7FA7B2 *, X509Chain_t4A28E9A30CBB331C9B68AE4AFCB30625C6C8B538 *, int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___targetHost0, ___certificate1, ___chain2, ___sslPolicyErrors3);
else
result = VirtFuncInvoker3< bool, X509Certificate_t6859B8914E252B6831D6F59A2A720CD23F7FA7B2 *, X509Chain_t4A28E9A30CBB331C9B68AE4AFCB30625C6C8B538 *, int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___targetHost0, ___certificate1, ___chain2, ___sslPolicyErrors3);
}
}
else
{
typedef bool (*FunctionPointerType) (String_t*, X509Certificate_t6859B8914E252B6831D6F59A2A720CD23F7FA7B2 *, X509Chain_t4A28E9A30CBB331C9B68AE4AFCB30625C6C8B538 *, int32_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___targetHost0, ___certificate1, ___chain2, ___sslPolicyErrors3, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (targetThis == NULL)
{
typedef bool (*FunctionPointerType) (String_t*, X509Certificate_t6859B8914E252B6831D6F59A2A720CD23F7FA7B2 *, X509Chain_t4A28E9A30CBB331C9B68AE4AFCB30625C6C8B538 *, int32_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___targetHost0, ___certificate1, ___chain2, ___sslPolicyErrors3, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker4< bool, String_t*, X509Certificate_t6859B8914E252B6831D6F59A2A720CD23F7FA7B2 *, X509Chain_t4A28E9A30CBB331C9B68AE4AFCB30625C6C8B538 *, int32_t >::Invoke(targetMethod, targetThis, ___targetHost0, ___certificate1, ___chain2, ___sslPolicyErrors3);
else
result = GenericVirtFuncInvoker4< bool, String_t*, X509Certificate_t6859B8914E252B6831D6F59A2A720CD23F7FA7B2 *, X509Chain_t4A28E9A30CBB331C9B68AE4AFCB30625C6C8B538 *, int32_t >::Invoke(targetMethod, targetThis, ___targetHost0, ___certificate1, ___chain2, ___sslPolicyErrors3);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker4< bool, String_t*, X509Certificate_t6859B8914E252B6831D6F59A2A720CD23F7FA7B2 *, X509Chain_t4A28E9A30CBB331C9B68AE4AFCB30625C6C8B538 *, int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___targetHost0, ___certificate1, ___chain2, ___sslPolicyErrors3);
else
result = VirtFuncInvoker4< bool, String_t*, X509Certificate_t6859B8914E252B6831D6F59A2A720CD23F7FA7B2 *, X509Chain_t4A28E9A30CBB331C9B68AE4AFCB30625C6C8B538 *, int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___targetHost0, ___certificate1, ___chain2, ___sslPolicyErrors3);
}
}
else
{
typedef bool (*FunctionPointerType) (void*, String_t*, X509Certificate_t6859B8914E252B6831D6F59A2A720CD23F7FA7B2 *, X509Chain_t4A28E9A30CBB331C9B68AE4AFCB30625C6C8B538 *, int32_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___targetHost0, ___certificate1, ___chain2, ___sslPolicyErrors3, targetMethod);
}
}
}
return result;
}
// System.IAsyncResult Mono.Security.Interface.MonoRemoteCertificateValidationCallback::BeginInvoke(System.String,System.Security.Cryptography.X509Certificates.X509Certificate,System.Security.Cryptography.X509Certificates.X509Chain,Mono.Security.Interface.MonoSslPolicyErrors,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* MonoRemoteCertificateValidationCallback_BeginInvoke_mE8A7228A3C1E37CED0138DA272D8A9A6ED52E2D1 (MonoRemoteCertificateValidationCallback_t7A8DAD12B70CE3BB19BAAD04F587D5ED02385CC6 * __this, String_t* ___targetHost0, X509Certificate_t6859B8914E252B6831D6F59A2A720CD23F7FA7B2 * ___certificate1, X509Chain_t4A28E9A30CBB331C9B68AE4AFCB30625C6C8B538 * ___chain2, int32_t ___sslPolicyErrors3, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback4, RuntimeObject * ___object5, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MonoRemoteCertificateValidationCallback_BeginInvoke_mE8A7228A3C1E37CED0138DA272D8A9A6ED52E2D1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[5] = {0};
__d_args[0] = ___targetHost0;
__d_args[1] = ___certificate1;
__d_args[2] = ___chain2;
__d_args[3] = Box(MonoSslPolicyErrors_t5F32A4E793EAB8B8A8128A6A3E7690D2E1F666C7_il2cpp_TypeInfo_var, &___sslPolicyErrors3);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback4, (RuntimeObject*)___object5);
}
// System.Boolean Mono.Security.Interface.MonoRemoteCertificateValidationCallback::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MonoRemoteCertificateValidationCallback_EndInvoke_m64D2BF4965D6F6274107AD36B0F06ADE8DAF8958 (MonoRemoteCertificateValidationCallback_t7A8DAD12B70CE3BB19BAAD04F587D5ED02385CC6 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(bool*)UnBox ((RuntimeObject*)__result);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Interface.CipherSuiteCode Mono.Security.Interface.MonoTlsConnectionInfo::get_CipherSuiteCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t MonoTlsConnectionInfo_get_CipherSuiteCode_m8C74B9FD02856309D7179AB0BE91B2F3F8BDF951 (MonoTlsConnectionInfo_tE32F709ECF061DD150F45384869CE8431BD7A74D * __this, const RuntimeMethod* method)
{
{
uint16_t L_0 = __this->get_U3CCipherSuiteCodeU3Ek__BackingField_0();
return L_0;
}
}
// System.Void Mono.Security.Interface.MonoTlsConnectionInfo::set_CipherSuiteCode(Mono.Security.Interface.CipherSuiteCode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoTlsConnectionInfo_set_CipherSuiteCode_m653D2CB0EFDC5CC95804705CD809B659261267B2 (MonoTlsConnectionInfo_tE32F709ECF061DD150F45384869CE8431BD7A74D * __this, uint16_t ___value0, const RuntimeMethod* method)
{
{
uint16_t L_0 = ___value0;
__this->set_U3CCipherSuiteCodeU3Ek__BackingField_0(L_0);
return;
}
}
// Mono.Security.Interface.TlsProtocols Mono.Security.Interface.MonoTlsConnectionInfo::get_ProtocolVersion()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MonoTlsConnectionInfo_get_ProtocolVersion_m63DA43DE02158D38E19EB7E5E93DD3E2EA6B87CA (MonoTlsConnectionInfo_tE32F709ECF061DD150F45384869CE8431BD7A74D * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_U3CProtocolVersionU3Ek__BackingField_1();
return L_0;
}
}
// System.Void Mono.Security.Interface.MonoTlsConnectionInfo::set_ProtocolVersion(Mono.Security.Interface.TlsProtocols)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoTlsConnectionInfo_set_ProtocolVersion_m938EBDEECDC61FAB55DB6080006307A02AD0546B (MonoTlsConnectionInfo_tE32F709ECF061DD150F45384869CE8431BD7A74D * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->set_U3CProtocolVersionU3Ek__BackingField_1(L_0);
return;
}
}
// System.Void Mono.Security.Interface.MonoTlsConnectionInfo::set_PeerDomainName(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoTlsConnectionInfo_set_PeerDomainName_m573F0D44AAC8D095FD19686E1263D6847639AC8F (MonoTlsConnectionInfo_tE32F709ECF061DD150F45384869CE8431BD7A74D * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set_U3CPeerDomainNameU3Ek__BackingField_2(L_0);
return;
}
}
// System.String Mono.Security.Interface.MonoTlsConnectionInfo::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MonoTlsConnectionInfo_ToString_m1988B66DE8C065C14AB2ED0DA4DDB84313C05E65 (MonoTlsConnectionInfo_tE32F709ECF061DD150F45384869CE8431BD7A74D * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MonoTlsConnectionInfo_ToString_m1988B66DE8C065C14AB2ED0DA4DDB84313C05E65_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = MonoTlsConnectionInfo_get_ProtocolVersion_m63DA43DE02158D38E19EB7E5E93DD3E2EA6B87CA_inline(__this, /*hidden argument*/NULL);
int32_t L_1 = L_0;
RuntimeObject * L_2 = Box(TlsProtocols_t25D1B0EFE5CC77B30D19258E7AC462AB4D828163_il2cpp_TypeInfo_var, &L_1);
uint16_t L_3 = MonoTlsConnectionInfo_get_CipherSuiteCode_m8C74B9FD02856309D7179AB0BE91B2F3F8BDF951_inline(__this, /*hidden argument*/NULL);
uint16_t L_4 = L_3;
RuntimeObject * L_5 = Box(CipherSuiteCode_t32674B07A5C552605FA138AEACFFA20474A255F1_il2cpp_TypeInfo_var, &L_4);
String_t* L_6 = String_Format_m19325298DBC61AAC016C16F7B3CF97A8A3DEA34A(_stringLiteralAAAA93A1758EE795E9F4F4D7738AA8718321ECAA, L_2, L_5, /*hidden argument*/NULL);
return L_6;
}
}
// System.Void Mono.Security.Interface.MonoTlsConnectionInfo::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoTlsConnectionInfo__ctor_mB397FA297A2578A5B4663DEBA4C2BB5F00632A90 (MonoTlsConnectionInfo_tE32F709ECF061DD150F45384869CE8431BD7A74D * __this, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Mono.Security.Interface.MonoTlsProvider::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoTlsProvider__ctor_m627444C019C32E18FC68ABF1AF33577E54A9705B (MonoTlsProvider_tDCD056C5BBBE59ED6BAF63F25952B406C1143C27 * __this, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Interface.MonoTlsProvider Mono.Security.Interface.MonoTlsProviderFactory::GetProvider()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MonoTlsProvider_tDCD056C5BBBE59ED6BAF63F25952B406C1143C27 * MonoTlsProviderFactory_GetProvider_mB4747BFB69D961C9B18398D60AFC667F9A252245 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MonoTlsProviderFactory_GetProvider_mB4747BFB69D961C9B18398D60AFC667F9A252245_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = NoReflectionHelper_GetProvider_m59893E33828D7422C8A4779F4C608373877FC05A(/*hidden argument*/NULL);
return ((MonoTlsProvider_tDCD056C5BBBE59ED6BAF63F25952B406C1143C27 *)CastclassClass((RuntimeObject*)L_0, MonoTlsProvider_tDCD056C5BBBE59ED6BAF63F25952B406C1143C27_il2cpp_TypeInfo_var));
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Interface.MonoRemoteCertificateValidationCallback Mono.Security.Interface.MonoTlsSettings::get_RemoteCertificateValidationCallback()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MonoRemoteCertificateValidationCallback_t7A8DAD12B70CE3BB19BAAD04F587D5ED02385CC6 * MonoTlsSettings_get_RemoteCertificateValidationCallback_m1718C4B085FE8A31AFC7262616FFC5071072D737 (MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * __this, const RuntimeMethod* method)
{
{
MonoRemoteCertificateValidationCallback_t7A8DAD12B70CE3BB19BAAD04F587D5ED02385CC6 * L_0 = __this->get_U3CRemoteCertificateValidationCallbackU3Ek__BackingField_0();
return L_0;
}
}
// System.Void Mono.Security.Interface.MonoTlsSettings::set_RemoteCertificateValidationCallback(Mono.Security.Interface.MonoRemoteCertificateValidationCallback)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoTlsSettings_set_RemoteCertificateValidationCallback_mC9225CD237B10BBF4813A975D827B822DF970E21 (MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * __this, MonoRemoteCertificateValidationCallback_t7A8DAD12B70CE3BB19BAAD04F587D5ED02385CC6 * ___value0, const RuntimeMethod* method)
{
{
MonoRemoteCertificateValidationCallback_t7A8DAD12B70CE3BB19BAAD04F587D5ED02385CC6 * L_0 = ___value0;
__this->set_U3CRemoteCertificateValidationCallbackU3Ek__BackingField_0(L_0);
return;
}
}
// Mono.Security.Interface.MonoLocalCertificateSelectionCallback Mono.Security.Interface.MonoTlsSettings::get_ClientCertificateSelectionCallback()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MonoLocalCertificateSelectionCallback_t657381EF916D4EDC456FA5A6AC948EFD7A481F0A * MonoTlsSettings_get_ClientCertificateSelectionCallback_mAD91A51A5228D02BF8F2B6F1F49A0646D029E1D0 (MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * __this, const RuntimeMethod* method)
{
{
MonoLocalCertificateSelectionCallback_t657381EF916D4EDC456FA5A6AC948EFD7A481F0A * L_0 = __this->get_U3CClientCertificateSelectionCallbackU3Ek__BackingField_1();
return L_0;
}
}
// System.Void Mono.Security.Interface.MonoTlsSettings::set_ClientCertificateSelectionCallback(Mono.Security.Interface.MonoLocalCertificateSelectionCallback)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoTlsSettings_set_ClientCertificateSelectionCallback_m815474865E0743103BE1BA06CCFC85588BAFBAA4 (MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * __this, MonoLocalCertificateSelectionCallback_t657381EF916D4EDC456FA5A6AC948EFD7A481F0A * ___value0, const RuntimeMethod* method)
{
{
MonoLocalCertificateSelectionCallback_t657381EF916D4EDC456FA5A6AC948EFD7A481F0A * L_0 = ___value0;
__this->set_U3CClientCertificateSelectionCallbackU3Ek__BackingField_1(L_0);
return;
}
}
// System.Nullable`1<System.Boolean> Mono.Security.Interface.MonoTlsSettings::get_UseServicePointManagerCallback()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 MonoTlsSettings_get_UseServicePointManagerCallback_mE0C4C192E0587991C12A79A7CA91C94EA31A2FA3 (MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * __this, const RuntimeMethod* method)
{
{
Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 L_0 = __this->get_useServicePointManagerCallback_12();
return L_0;
}
}
// System.Void Mono.Security.Interface.MonoTlsSettings::set_UseServicePointManagerCallback(System.Nullable`1<System.Boolean>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoTlsSettings_set_UseServicePointManagerCallback_m3982FDDB084256E77E18F9A3E42E91E65F6F699B (MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * __this, Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 ___value0, const RuntimeMethod* method)
{
{
Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 L_0 = ___value0;
__this->set_useServicePointManagerCallback_12(L_0);
return;
}
}
// System.Boolean Mono.Security.Interface.MonoTlsSettings::get_CallbackNeedsCertificateChain()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MonoTlsSettings_get_CallbackNeedsCertificateChain_m4E80A5055E68720FE1F48E9AC3AC9176C76C9C7D (MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_callbackNeedsChain_14();
return L_0;
}
}
// System.Nullable`1<System.DateTime> Mono.Security.Interface.MonoTlsSettings::get_CertificateValidationTime()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_t3290384E361396B3724B88B498CBF637D7E87B78 MonoTlsSettings_get_CertificateValidationTime_m51F473A56D26B7FF38182524C3EF3250653181CD (MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * __this, const RuntimeMethod* method)
{
{
Nullable_1_t3290384E361396B3724B88B498CBF637D7E87B78 L_0 = __this->get_U3CCertificateValidationTimeU3Ek__BackingField_2();
return L_0;
}
}
// System.Void Mono.Security.Interface.MonoTlsSettings::set_CertificateValidationTime(System.Nullable`1<System.DateTime>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoTlsSettings_set_CertificateValidationTime_mD081C06E0CCCCEF4230D2A7A70ED06F7E5D1717D (MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * __this, Nullable_1_t3290384E361396B3724B88B498CBF637D7E87B78 ___value0, const RuntimeMethod* method)
{
{
Nullable_1_t3290384E361396B3724B88B498CBF637D7E87B78 L_0 = ___value0;
__this->set_U3CCertificateValidationTimeU3Ek__BackingField_2(L_0);
return;
}
}
// System.Security.Cryptography.X509Certificates.X509CertificateCollection Mono.Security.Interface.MonoTlsSettings::get_TrustAnchors()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509CertificateCollection_t824A6C58D0D1B4A7CAE30F26CE8EE4B23A8A1833 * MonoTlsSettings_get_TrustAnchors_mD6ADD8546ED8D9C0BA58A25F0ADA0BBB5127F28F (MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * __this, const RuntimeMethod* method)
{
{
X509CertificateCollection_t824A6C58D0D1B4A7CAE30F26CE8EE4B23A8A1833 * L_0 = __this->get_U3CTrustAnchorsU3Ek__BackingField_3();
return L_0;
}
}
// System.Void Mono.Security.Interface.MonoTlsSettings::set_TrustAnchors(System.Security.Cryptography.X509Certificates.X509CertificateCollection)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoTlsSettings_set_TrustAnchors_m96D71EF074D01C5CBF8159B392825679DADD9B2A (MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * __this, X509CertificateCollection_t824A6C58D0D1B4A7CAE30F26CE8EE4B23A8A1833 * ___value0, const RuntimeMethod* method)
{
{
X509CertificateCollection_t824A6C58D0D1B4A7CAE30F26CE8EE4B23A8A1833 * L_0 = ___value0;
__this->set_U3CTrustAnchorsU3Ek__BackingField_3(L_0);
return;
}
}
// System.Object Mono.Security.Interface.MonoTlsSettings::get_UserSettings()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * MonoTlsSettings_get_UserSettings_m31F62282C588A3847737F11AF9158E493CD86E9A (MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = __this->get_U3CUserSettingsU3Ek__BackingField_4();
return L_0;
}
}
// System.Void Mono.Security.Interface.MonoTlsSettings::set_UserSettings(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoTlsSettings_set_UserSettings_mEC113D468C571102A4FF0327E617E7BA30D5D3F8 (MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___value0;
__this->set_U3CUserSettingsU3Ek__BackingField_4(L_0);
return;
}
}
// System.String[] Mono.Security.Interface.MonoTlsSettings::get_CertificateSearchPaths()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* MonoTlsSettings_get_CertificateSearchPaths_mE287996050CC9939D950713EAB5FC382FC64453B (MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * __this, const RuntimeMethod* method)
{
{
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_0 = __this->get_U3CCertificateSearchPathsU3Ek__BackingField_5();
return L_0;
}
}
// System.Void Mono.Security.Interface.MonoTlsSettings::set_CertificateSearchPaths(System.String[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoTlsSettings_set_CertificateSearchPaths_m7A42E0C25B12F9D923BEDE97E270433CD3C8A1D4 (MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * __this, StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___value0, const RuntimeMethod* method)
{
{
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_0 = ___value0;
__this->set_U3CCertificateSearchPathsU3Ek__BackingField_5(L_0);
return;
}
}
// System.Boolean Mono.Security.Interface.MonoTlsSettings::get_SendCloseNotify()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MonoTlsSettings_get_SendCloseNotify_m4E72508568F2055945A21AD19B1129AD2437C92F (MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_U3CSendCloseNotifyU3Ek__BackingField_6();
return L_0;
}
}
// System.Void Mono.Security.Interface.MonoTlsSettings::set_SendCloseNotify(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoTlsSettings_set_SendCloseNotify_m292B72B22AC90DAC052BB0CB28D079F258803521 (MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->set_U3CSendCloseNotifyU3Ek__BackingField_6(L_0);
return;
}
}
// System.Nullable`1<Mono.Security.Interface.TlsProtocols> Mono.Security.Interface.MonoTlsSettings::get_EnabledProtocols()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_t601798BE10C3F3F37B6755E475BB1B3760DCBB10 MonoTlsSettings_get_EnabledProtocols_mB290C2A19B7268559520FDF47925D20A4F9D8106 (MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * __this, const RuntimeMethod* method)
{
{
Nullable_1_t601798BE10C3F3F37B6755E475BB1B3760DCBB10 L_0 = __this->get_U3CEnabledProtocolsU3Ek__BackingField_7();
return L_0;
}
}
// System.Void Mono.Security.Interface.MonoTlsSettings::set_EnabledProtocols(System.Nullable`1<Mono.Security.Interface.TlsProtocols>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoTlsSettings_set_EnabledProtocols_m88B942CBAB596E1F6FC91744D93F845862796A32 (MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * __this, Nullable_1_t601798BE10C3F3F37B6755E475BB1B3760DCBB10 ___value0, const RuntimeMethod* method)
{
{
Nullable_1_t601798BE10C3F3F37B6755E475BB1B3760DCBB10 L_0 = ___value0;
__this->set_U3CEnabledProtocolsU3Ek__BackingField_7(L_0);
return;
}
}
// Mono.Security.Interface.CipherSuiteCode[] Mono.Security.Interface.MonoTlsSettings::get_EnabledCiphers()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CipherSuiteCodeU5BU5D_t0EC37AD4A25BB94BA9AB4A9C0C4802BD79A07CC4* MonoTlsSettings_get_EnabledCiphers_mB3F4FB0A332010BBCDF8EFF2B6B105C0CC92AF1D (MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * __this, const RuntimeMethod* method)
{
{
CipherSuiteCodeU5BU5D_t0EC37AD4A25BB94BA9AB4A9C0C4802BD79A07CC4* L_0 = __this->get_U3CEnabledCiphersU3Ek__BackingField_8();
return L_0;
}
}
// System.Void Mono.Security.Interface.MonoTlsSettings::set_EnabledCiphers(Mono.Security.Interface.CipherSuiteCode[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoTlsSettings_set_EnabledCiphers_m27702EB1FBABCE66F73582F1F3B7DD14B4A95E12 (MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * __this, CipherSuiteCodeU5BU5D_t0EC37AD4A25BB94BA9AB4A9C0C4802BD79A07CC4* ___value0, const RuntimeMethod* method)
{
{
CipherSuiteCodeU5BU5D_t0EC37AD4A25BB94BA9AB4A9C0C4802BD79A07CC4* L_0 = ___value0;
__this->set_U3CEnabledCiphersU3Ek__BackingField_8(L_0);
return;
}
}
// System.Void Mono.Security.Interface.MonoTlsSettings::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoTlsSettings__ctor_m09A7B7F0B1CA2775C8A24B8A6BEC032E6B1C0A72 (MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * __this, const RuntimeMethod* method)
{
{
__this->set_checkCertName_10((bool)1);
__this->set_callbackNeedsChain_14((bool)1);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
return;
}
}
// Mono.Security.Interface.MonoTlsSettings Mono.Security.Interface.MonoTlsSettings::get_DefaultSettings()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * MonoTlsSettings_get_DefaultSettings_m49A7CECC7D687F62790DD374D560278D3916B887 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MonoTlsSettings_get_DefaultSettings_m49A7CECC7D687F62790DD374D560278D3916B887_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * L_0 = ((MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF_StaticFields*)il2cpp_codegen_static_fields_for(MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF_il2cpp_TypeInfo_var))->get_defaultSettings_16();
if (L_0)
{
goto IL_0018;
}
}
{
MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * L_1 = (MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF *)il2cpp_codegen_object_new(MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF_il2cpp_TypeInfo_var);
MonoTlsSettings__ctor_m09A7B7F0B1CA2775C8A24B8A6BEC032E6B1C0A72(L_1, /*hidden argument*/NULL);
InterlockedCompareExchangeImpl<MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF *>((MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF **)(((MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF_StaticFields*)il2cpp_codegen_static_fields_for(MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF_il2cpp_TypeInfo_var))->get_address_of_defaultSettings_16()), L_1, (MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF *)NULL);
}
IL_0018:
{
MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * L_2 = ((MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF_StaticFields*)il2cpp_codegen_static_fields_for(MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF_il2cpp_TypeInfo_var))->get_defaultSettings_16();
return L_2;
}
}
// Mono.Security.Interface.MonoTlsSettings Mono.Security.Interface.MonoTlsSettings::CopyDefaultSettings()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * MonoTlsSettings_CopyDefaultSettings_m4CE2BE44BF064124CFD98CEF44E76FD5D6EA0AD2 (const RuntimeMethod* method)
{
{
MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * L_0 = MonoTlsSettings_get_DefaultSettings_m49A7CECC7D687F62790DD374D560278D3916B887(/*hidden argument*/NULL);
NullCheck(L_0);
MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * L_1 = MonoTlsSettings_Clone_mF28F7F627B12CBD0BD1ABD6F35DD0B4BAD2E3840(L_0, /*hidden argument*/NULL);
return L_1;
}
}
// Mono.Security.Interface.ICertificateValidator Mono.Security.Interface.MonoTlsSettings::get_CertificateValidator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* MonoTlsSettings_get_CertificateValidator_m8AA08A1EAEE520A4FBF9099C311BDF25931FE059 (MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->get_certificateValidator_15();
return L_0;
}
}
// Mono.Security.Interface.MonoTlsSettings Mono.Security.Interface.MonoTlsSettings::CloneWithValidator(Mono.Security.Interface.ICertificateValidator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * MonoTlsSettings_CloneWithValidator_m46363CAC421939D9904660815CF1D8131C8DC3B1 (MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * __this, RuntimeObject* ___validator0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MonoTlsSettings_CloneWithValidator_m46363CAC421939D9904660815CF1D8131C8DC3B1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
bool L_0 = __this->get_cloned_9();
if (!L_0)
{
goto IL_0011;
}
}
{
RuntimeObject* L_1 = ___validator0;
__this->set_certificateValidator_15(L_1);
return __this;
}
IL_0011:
{
MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * L_2 = (MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF *)il2cpp_codegen_object_new(MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF_il2cpp_TypeInfo_var);
MonoTlsSettings__ctor_m3D336E73C9393401BE9BE856B7204BA176F52B17(L_2, __this, /*hidden argument*/NULL);
MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * L_3 = L_2;
RuntimeObject* L_4 = ___validator0;
NullCheck(L_3);
L_3->set_certificateValidator_15(L_4);
return L_3;
}
}
// Mono.Security.Interface.MonoTlsSettings Mono.Security.Interface.MonoTlsSettings::Clone()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * MonoTlsSettings_Clone_mF28F7F627B12CBD0BD1ABD6F35DD0B4BAD2E3840 (MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MonoTlsSettings_Clone_mF28F7F627B12CBD0BD1ABD6F35DD0B4BAD2E3840_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * L_0 = (MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF *)il2cpp_codegen_object_new(MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF_il2cpp_TypeInfo_var);
MonoTlsSettings__ctor_m3D336E73C9393401BE9BE856B7204BA176F52B17(L_0, __this, /*hidden argument*/NULL);
return L_0;
}
}
// System.Void Mono.Security.Interface.MonoTlsSettings::.ctor(Mono.Security.Interface.MonoTlsSettings)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoTlsSettings__ctor_m3D336E73C9393401BE9BE856B7204BA176F52B17 (MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * __this, MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * ___other0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MonoTlsSettings__ctor_m3D336E73C9393401BE9BE856B7204BA176F52B17_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
__this->set_checkCertName_10((bool)1);
__this->set_callbackNeedsChain_14((bool)1);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * L_0 = ___other0;
NullCheck(L_0);
MonoRemoteCertificateValidationCallback_t7A8DAD12B70CE3BB19BAAD04F587D5ED02385CC6 * L_1 = MonoTlsSettings_get_RemoteCertificateValidationCallback_m1718C4B085FE8A31AFC7262616FFC5071072D737_inline(L_0, /*hidden argument*/NULL);
MonoTlsSettings_set_RemoteCertificateValidationCallback_mC9225CD237B10BBF4813A975D827B822DF970E21_inline(__this, L_1, /*hidden argument*/NULL);
MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * L_2 = ___other0;
NullCheck(L_2);
MonoLocalCertificateSelectionCallback_t657381EF916D4EDC456FA5A6AC948EFD7A481F0A * L_3 = MonoTlsSettings_get_ClientCertificateSelectionCallback_mAD91A51A5228D02BF8F2B6F1F49A0646D029E1D0_inline(L_2, /*hidden argument*/NULL);
MonoTlsSettings_set_ClientCertificateSelectionCallback_m815474865E0743103BE1BA06CCFC85588BAFBAA4_inline(__this, L_3, /*hidden argument*/NULL);
MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * L_4 = ___other0;
NullCheck(L_4);
bool L_5 = L_4->get_checkCertName_10();
__this->set_checkCertName_10(L_5);
MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * L_6 = ___other0;
NullCheck(L_6);
bool L_7 = L_6->get_checkCertRevocationStatus_11();
__this->set_checkCertRevocationStatus_11(L_7);
MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * L_8 = ___other0;
NullCheck(L_8);
Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 L_9 = L_8->get_useServicePointManagerCallback_12();
MonoTlsSettings_set_UseServicePointManagerCallback_m3982FDDB084256E77E18F9A3E42E91E65F6F699B_inline(__this, L_9, /*hidden argument*/NULL);
MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * L_10 = ___other0;
NullCheck(L_10);
bool L_11 = L_10->get_skipSystemValidators_13();
__this->set_skipSystemValidators_13(L_11);
MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * L_12 = ___other0;
NullCheck(L_12);
bool L_13 = L_12->get_callbackNeedsChain_14();
__this->set_callbackNeedsChain_14(L_13);
MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * L_14 = ___other0;
NullCheck(L_14);
RuntimeObject * L_15 = MonoTlsSettings_get_UserSettings_m31F62282C588A3847737F11AF9158E493CD86E9A_inline(L_14, /*hidden argument*/NULL);
MonoTlsSettings_set_UserSettings_mEC113D468C571102A4FF0327E617E7BA30D5D3F8_inline(__this, L_15, /*hidden argument*/NULL);
MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * L_16 = ___other0;
NullCheck(L_16);
Nullable_1_t601798BE10C3F3F37B6755E475BB1B3760DCBB10 L_17 = MonoTlsSettings_get_EnabledProtocols_mB290C2A19B7268559520FDF47925D20A4F9D8106_inline(L_16, /*hidden argument*/NULL);
MonoTlsSettings_set_EnabledProtocols_m88B942CBAB596E1F6FC91744D93F845862796A32_inline(__this, L_17, /*hidden argument*/NULL);
MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * L_18 = ___other0;
NullCheck(L_18);
CipherSuiteCodeU5BU5D_t0EC37AD4A25BB94BA9AB4A9C0C4802BD79A07CC4* L_19 = MonoTlsSettings_get_EnabledCiphers_mB3F4FB0A332010BBCDF8EFF2B6B105C0CC92AF1D_inline(L_18, /*hidden argument*/NULL);
MonoTlsSettings_set_EnabledCiphers_m27702EB1FBABCE66F73582F1F3B7DD14B4A95E12_inline(__this, L_19, /*hidden argument*/NULL);
MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * L_20 = ___other0;
NullCheck(L_20);
Nullable_1_t3290384E361396B3724B88B498CBF637D7E87B78 L_21 = MonoTlsSettings_get_CertificateValidationTime_m51F473A56D26B7FF38182524C3EF3250653181CD_inline(L_20, /*hidden argument*/NULL);
MonoTlsSettings_set_CertificateValidationTime_mD081C06E0CCCCEF4230D2A7A70ED06F7E5D1717D_inline(__this, L_21, /*hidden argument*/NULL);
MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * L_22 = ___other0;
NullCheck(L_22);
bool L_23 = MonoTlsSettings_get_SendCloseNotify_m4E72508568F2055945A21AD19B1129AD2437C92F_inline(L_22, /*hidden argument*/NULL);
MonoTlsSettings_set_SendCloseNotify_m292B72B22AC90DAC052BB0CB28D079F258803521_inline(__this, L_23, /*hidden argument*/NULL);
MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * L_24 = ___other0;
NullCheck(L_24);
X509CertificateCollection_t824A6C58D0D1B4A7CAE30F26CE8EE4B23A8A1833 * L_25 = MonoTlsSettings_get_TrustAnchors_mD6ADD8546ED8D9C0BA58A25F0ADA0BBB5127F28F_inline(L_24, /*hidden argument*/NULL);
if (!L_25)
{
goto IL_00bd;
}
}
{
MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * L_26 = ___other0;
NullCheck(L_26);
X509CertificateCollection_t824A6C58D0D1B4A7CAE30F26CE8EE4B23A8A1833 * L_27 = MonoTlsSettings_get_TrustAnchors_mD6ADD8546ED8D9C0BA58A25F0ADA0BBB5127F28F_inline(L_26, /*hidden argument*/NULL);
X509CertificateCollection_t824A6C58D0D1B4A7CAE30F26CE8EE4B23A8A1833 * L_28 = (X509CertificateCollection_t824A6C58D0D1B4A7CAE30F26CE8EE4B23A8A1833 *)il2cpp_codegen_object_new(X509CertificateCollection_t824A6C58D0D1B4A7CAE30F26CE8EE4B23A8A1833_il2cpp_TypeInfo_var);
X509CertificateCollection__ctor_m24BAA500237577256DCA1BD814ED88D163E702E3(L_28, L_27, /*hidden argument*/NULL);
MonoTlsSettings_set_TrustAnchors_m96D71EF074D01C5CBF8159B392825679DADD9B2A_inline(__this, L_28, /*hidden argument*/NULL);
}
IL_00bd:
{
MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * L_29 = ___other0;
NullCheck(L_29);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_30 = MonoTlsSettings_get_CertificateSearchPaths_mE287996050CC9939D950713EAB5FC382FC64453B_inline(L_29, /*hidden argument*/NULL);
if (!L_30)
{
goto IL_00ea;
}
}
{
MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * L_31 = ___other0;
NullCheck(L_31);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_32 = MonoTlsSettings_get_CertificateSearchPaths_mE287996050CC9939D950713EAB5FC382FC64453B_inline(L_31, /*hidden argument*/NULL);
NullCheck(L_32);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_33 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_32)->max_length)))));
MonoTlsSettings_set_CertificateSearchPaths_m7A42E0C25B12F9D923BEDE97E270433CD3C8A1D4_inline(__this, L_33, /*hidden argument*/NULL);
MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * L_34 = ___other0;
NullCheck(L_34);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_35 = MonoTlsSettings_get_CertificateSearchPaths_mE287996050CC9939D950713EAB5FC382FC64453B_inline(L_34, /*hidden argument*/NULL);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_36 = MonoTlsSettings_get_CertificateSearchPaths_mE287996050CC9939D950713EAB5FC382FC64453B_inline(__this, /*hidden argument*/NULL);
NullCheck((RuntimeArray *)(RuntimeArray *)L_35);
Array_CopyTo_m455300D414FFB0EBFE53EA4E8BBD31532006EBB7((RuntimeArray *)(RuntimeArray *)L_35, (RuntimeArray *)(RuntimeArray *)L_36, 0, /*hidden argument*/NULL);
}
IL_00ea:
{
__this->set_cloned_9((bool)1);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Mono.Security.Interface.TlsException::.ctor(Mono.Security.Interface.Alert,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TlsException__ctor_m5B7689890B3AE575E72A71FB19541C2BBAEF2D93 (TlsException_t774465EA64E3ADAAE3DB21835DD9AB8C40247F91 * __this, Alert_tABF269545F2C583CCA47FF574E612DDAF232944E * ___alert0, String_t* ___message1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TlsException__ctor_m5B7689890B3AE575E72A71FB19541C2BBAEF2D93_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___message1;
IL2CPP_RUNTIME_CLASS_INIT(Exception_t_il2cpp_TypeInfo_var);
Exception__ctor_m89BADFF36C3B170013878726E07729D51AA9FBE0(__this, L_0, /*hidden argument*/NULL);
Alert_tABF269545F2C583CCA47FF574E612DDAF232944E * L_1 = ___alert0;
__this->set_alert_17(L_1);
return;
}
}
// System.Void Mono.Security.Interface.TlsException::.ctor(Mono.Security.Interface.AlertDescription,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TlsException__ctor_mCD978D5A0E271F65BF28C40380F65D8E0247FA53 (TlsException_t774465EA64E3ADAAE3DB21835DD9AB8C40247F91 * __this, uint8_t ___description0, String_t* ___message1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TlsException__ctor_mCD978D5A0E271F65BF28C40380F65D8E0247FA53_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
uint8_t L_0 = ___description0;
Alert_tABF269545F2C583CCA47FF574E612DDAF232944E * L_1 = (Alert_tABF269545F2C583CCA47FF574E612DDAF232944E *)il2cpp_codegen_object_new(Alert_tABF269545F2C583CCA47FF574E612DDAF232944E_il2cpp_TypeInfo_var);
Alert__ctor_mD0D7AE959A64782F053515E043A70D71E229279B(L_1, L_0, /*hidden argument*/NULL);
String_t* L_2 = ___message1;
TlsException__ctor_m5B7689890B3AE575E72A71FB19541C2BBAEF2D93(__this, L_1, L_2, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Mono.Security.Interface.ValidationResult::.ctor(System.Boolean,System.Boolean,System.Int32,System.Nullable`1<Mono.Security.Interface.MonoSslPolicyErrors>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidationResult__ctor_mAA70CED6CBDDD7AD7E4E92C3B0132B59B3BE1DCE (ValidationResult_tBBAD776F36C835C8DDB515B1747DEF3A45C058D7 * __this, bool ___trusted0, bool ___user_denied1, int32_t ___error_code2, Nullable_1_t87E3837BC1E3397FF9051586CE8E2328CEA1F1D2 ___policy_errors3, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
bool L_0 = ___trusted0;
__this->set_trusted_0(L_0);
bool L_1 = ___user_denied1;
__this->set_user_denied_1(L_1);
int32_t L_2 = ___error_code2;
__this->set_error_code_2(L_2);
Nullable_1_t87E3837BC1E3397FF9051586CE8E2328CEA1F1D2 L_3 = ___policy_errors3;
__this->set_policy_errors_3(L_3);
return;
}
}
// System.Boolean Mono.Security.Interface.ValidationResult::get_Trusted()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValidationResult_get_Trusted_mE64A5C557FC6AFCF2B71750EFF65E34D29D93D18 (ValidationResult_tBBAD776F36C835C8DDB515B1747DEF3A45C058D7 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_trusted_0();
return L_0;
}
}
// System.Boolean Mono.Security.Interface.ValidationResult::get_UserDenied()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValidationResult_get_UserDenied_m71BED496F80A72CD3EB5DB2B9488433AA9A440C5 (ValidationResult_tBBAD776F36C835C8DDB515B1747DEF3A45C058D7 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_user_denied_1();
return L_0;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Mono.Security.PKCS7_ContentInfo::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContentInfo__ctor_mEE9D9E1E66FBF3DA3414423F0D4216E40C625BFA (ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ContentInfo__ctor_mEE9D9E1E66FBF3DA3414423F0D4216E40C625BFA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_0 = (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E *)il2cpp_codegen_object_new(ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E_il2cpp_TypeInfo_var);
ASN1__ctor_m6DD2E5BD0B12A6BFA95E1822A55B2294B8C237BC(L_0, (uint8_t)((int32_t)160), /*hidden argument*/NULL);
__this->set_content_1(L_0);
return;
}
}
// System.Void Mono.Security.PKCS7_ContentInfo::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContentInfo__ctor_mF21B31604F01A686DB03E30FEAE859A53A0E084A (ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * __this, String_t* ___oid0, const RuntimeMethod* method)
{
{
ContentInfo__ctor_mEE9D9E1E66FBF3DA3414423F0D4216E40C625BFA(__this, /*hidden argument*/NULL);
String_t* L_0 = ___oid0;
__this->set_contentType_0(L_0);
return;
}
}
// System.Void Mono.Security.PKCS7_ContentInfo::.ctor(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContentInfo__ctor_mFFDEEE8545287FC5A22740B7E06F6D64D401E196 (ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___data0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ContentInfo__ctor_mFFDEEE8545287FC5A22740B7E06F6D64D401E196_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___data0;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_1 = (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E *)il2cpp_codegen_object_new(ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E_il2cpp_TypeInfo_var);
ASN1__ctor_mE005F52336402C3D41EAD9E28A95910B3C0865DA(L_1, L_0, /*hidden argument*/NULL);
ContentInfo__ctor_m3AAF5EC77C4891BB1B6AF1F980C8623C0621852D(__this, L_1, /*hidden argument*/NULL);
return;
}
}
// System.Void Mono.Security.PKCS7_ContentInfo::.ctor(Mono.Security.ASN1)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContentInfo__ctor_m3AAF5EC77C4891BB1B6AF1F980C8623C0621852D (ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * __this, ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * ___asn10, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ContentInfo__ctor_m3AAF5EC77C4891BB1B6AF1F980C8623C0621852D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_0 = ___asn10;
NullCheck(L_0);
uint8_t L_1 = ASN1_get_Tag_m1346989AC839D85A9E0A211525A6B551974E4862_inline(L_0, /*hidden argument*/NULL);
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)48)))))
{
goto IL_0022;
}
}
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_2 = ___asn10;
NullCheck(L_2);
int32_t L_3 = ASN1_get_Count_m5A0E71B4C4A2257C0875AE1041AAA953C5B12A19(L_2, /*hidden argument*/NULL);
if ((((int32_t)L_3) >= ((int32_t)1)))
{
goto IL_002d;
}
}
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_4 = ___asn10;
NullCheck(L_4);
int32_t L_5 = ASN1_get_Count_m5A0E71B4C4A2257C0875AE1041AAA953C5B12A19(L_4, /*hidden argument*/NULL);
if ((((int32_t)L_5) <= ((int32_t)2)))
{
goto IL_002d;
}
}
IL_0022:
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_6 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_6, _stringLiteral9FF10F59D606AD213E55A2680D237F4560B5407D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, NULL, ContentInfo__ctor_m3AAF5EC77C4891BB1B6AF1F980C8623C0621852D_RuntimeMethod_var);
}
IL_002d:
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_7 = ___asn10;
NullCheck(L_7);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_8 = ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08(L_7, 0, /*hidden argument*/NULL);
NullCheck(L_8);
uint8_t L_9 = ASN1_get_Tag_m1346989AC839D85A9E0A211525A6B551974E4862_inline(L_8, /*hidden argument*/NULL);
if ((((int32_t)L_9) == ((int32_t)6)))
{
goto IL_0047;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_10 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_10, _stringLiteralF037AEB428D0D727267C01C044FA8D18A1427205, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, ContentInfo__ctor_m3AAF5EC77C4891BB1B6AF1F980C8623C0621852D_RuntimeMethod_var);
}
IL_0047:
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_11 = ___asn10;
NullCheck(L_11);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_12 = ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08(L_11, 0, /*hidden argument*/NULL);
String_t* L_13 = ASN1Convert_ToOid_mFFA93B4BBEFCA8E4E86DAE87CDB998E78BFB2D5A(L_12, /*hidden argument*/NULL);
__this->set_contentType_0(L_13);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_14 = ___asn10;
NullCheck(L_14);
int32_t L_15 = ASN1_get_Count_m5A0E71B4C4A2257C0875AE1041AAA953C5B12A19(L_14, /*hidden argument*/NULL);
if ((((int32_t)L_15) <= ((int32_t)1)))
{
goto IL_008d;
}
}
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_16 = ___asn10;
NullCheck(L_16);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_17 = ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08(L_16, 1, /*hidden argument*/NULL);
NullCheck(L_17);
uint8_t L_18 = ASN1_get_Tag_m1346989AC839D85A9E0A211525A6B551974E4862_inline(L_17, /*hidden argument*/NULL);
if ((((int32_t)L_18) == ((int32_t)((int32_t)160))))
{
goto IL_0080;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_19 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_19, _stringLiteral941EDC1E840EE8A244DED7C91C3A0C73970CBDD9, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_19, NULL, ContentInfo__ctor_m3AAF5EC77C4891BB1B6AF1F980C8623C0621852D_RuntimeMethod_var);
}
IL_0080:
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_20 = ___asn10;
NullCheck(L_20);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_21 = ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08(L_20, 1, /*hidden argument*/NULL);
__this->set_content_1(L_21);
}
IL_008d:
{
return;
}
}
// Mono.Security.ASN1 Mono.Security.PKCS7_ContentInfo::get_ASN1()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * ContentInfo_get_ASN1_mE290789431E97C3AF43911BB56FBE15C6D799411 (ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * __this, const RuntimeMethod* method)
{
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_0 = ContentInfo_GetASN1_m3DF4C4558BE17D650B80B7971158C1B704C7B995(__this, /*hidden argument*/NULL);
return L_0;
}
}
// Mono.Security.ASN1 Mono.Security.PKCS7_ContentInfo::get_Content()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * ContentInfo_get_Content_mCF1CED122282F62BAA3453E585E487D50367289F (ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * __this, const RuntimeMethod* method)
{
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_0 = __this->get_content_1();
return L_0;
}
}
// System.Void Mono.Security.PKCS7_ContentInfo::set_Content(Mono.Security.ASN1)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContentInfo_set_Content_m15B5D9A61236E1C116A9B5A651E80C5D78FB2598 (ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * __this, ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * ___value0, const RuntimeMethod* method)
{
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_0 = ___value0;
__this->set_content_1(L_0);
return;
}
}
// System.String Mono.Security.PKCS7_ContentInfo::get_ContentType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ContentInfo_get_ContentType_m26D6492CA5D227AAC583CFC4A898C056ACEC8196 (ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_contentType_0();
return L_0;
}
}
// System.Void Mono.Security.PKCS7_ContentInfo::set_ContentType(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContentInfo_set_ContentType_m4FEE943D01600FC088408F7E20C5E1667CB5BA21 (ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set_contentType_0(L_0);
return;
}
}
// Mono.Security.ASN1 Mono.Security.PKCS7_ContentInfo::GetASN1()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * ContentInfo_GetASN1_m3DF4C4558BE17D650B80B7971158C1B704C7B995 (ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ContentInfo_GetASN1_m3DF4C4558BE17D650B80B7971158C1B704C7B995_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * V_0 = NULL;
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_0 = (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E *)il2cpp_codegen_object_new(ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E_il2cpp_TypeInfo_var);
ASN1__ctor_m6DD2E5BD0B12A6BFA95E1822A55B2294B8C237BC(L_0, (uint8_t)((int32_t)48), /*hidden argument*/NULL);
V_0 = L_0;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_1 = V_0;
String_t* L_2 = __this->get_contentType_0();
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_3 = ASN1Convert_FromOid_mC178E72357986C1AB75A1FFC9DA7687ECA20E462(L_2, /*hidden argument*/NULL);
NullCheck(L_1);
ASN1_Add_mF6ED0416BB021A1C333F99E42F8B17AF8B26639B(L_1, L_3, /*hidden argument*/NULL);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_4 = __this->get_content_1();
if (!L_4)
{
goto IL_003d;
}
}
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_5 = __this->get_content_1();
NullCheck(L_5);
int32_t L_6 = ASN1_get_Count_m5A0E71B4C4A2257C0875AE1041AAA953C5B12A19(L_5, /*hidden argument*/NULL);
if ((((int32_t)L_6) <= ((int32_t)0)))
{
goto IL_003d;
}
}
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_7 = V_0;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_8 = __this->get_content_1();
NullCheck(L_7);
ASN1_Add_mF6ED0416BB021A1C333F99E42F8B17AF8B26639B(L_7, L_8, /*hidden argument*/NULL);
}
IL_003d:
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_9 = V_0;
return L_9;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Mono.Security.PKCS7_EncryptedData::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EncryptedData__ctor_m960EE725A153200911315F85B009E0D9E99D8114 (EncryptedData_tA100D7E93FCF1B7CBD486522E841F0A980CCE61B * __this, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
__this->set__version_0((uint8_t)0);
return;
}
}
// System.Void Mono.Security.PKCS7_EncryptedData::.ctor(Mono.Security.ASN1)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EncryptedData__ctor_m385361DAE06A76AA773E49EF242400DE7F02A8FD (EncryptedData_tA100D7E93FCF1B7CBD486522E841F0A980CCE61B * __this, ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * ___asn10, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EncryptedData__ctor_m385361DAE06A76AA773E49EF242400DE7F02A8FD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * V_0 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * V_1 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * V_2 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * G_B7_0 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * G_B6_0 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * G_B9_0 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * G_B8_0 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * G_B11_0 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * G_B10_0 = NULL;
{
EncryptedData__ctor_m960EE725A153200911315F85B009E0D9E99D8114(__this, /*hidden argument*/NULL);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_0 = ___asn10;
NullCheck(L_0);
uint8_t L_1 = ASN1_get_Tag_m1346989AC839D85A9E0A211525A6B551974E4862_inline(L_0, /*hidden argument*/NULL);
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)48)))))
{
goto IL_0019;
}
}
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_2 = ___asn10;
NullCheck(L_2);
int32_t L_3 = ASN1_get_Count_m5A0E71B4C4A2257C0875AE1041AAA953C5B12A19(L_2, /*hidden argument*/NULL);
if ((((int32_t)L_3) >= ((int32_t)2)))
{
goto IL_0024;
}
}
IL_0019:
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_4 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_4, _stringLiteralE6FB7942BFCD54B6178ADECE738C3E25D32CF155, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, EncryptedData__ctor_m385361DAE06A76AA773E49EF242400DE7F02A8FD_RuntimeMethod_var);
}
IL_0024:
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_5 = ___asn10;
NullCheck(L_5);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_6 = ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08(L_5, 0, /*hidden argument*/NULL);
NullCheck(L_6);
uint8_t L_7 = ASN1_get_Tag_m1346989AC839D85A9E0A211525A6B551974E4862_inline(L_6, /*hidden argument*/NULL);
if ((((int32_t)L_7) == ((int32_t)2)))
{
goto IL_003e;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_8 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_8, _stringLiteral902E1C9C702765BFD051F2EA2095144DF20BEFF3, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, NULL, EncryptedData__ctor_m385361DAE06A76AA773E49EF242400DE7F02A8FD_RuntimeMethod_var);
}
IL_003e:
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_9 = ___asn10;
NullCheck(L_9);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_10 = ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08(L_9, 0, /*hidden argument*/NULL);
NullCheck(L_10);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_11 = ASN1_get_Value_m9BD6239E12A6148AF9507C2F58058C6B8147A079(L_10, /*hidden argument*/NULL);
NullCheck(L_11);
int32_t L_12 = 0;
uint8_t L_13 = (L_11)->GetAt(static_cast<il2cpp_array_size_t>(L_12));
__this->set__version_0(L_13);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_14 = ___asn10;
NullCheck(L_14);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_15 = ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08(L_14, 1, /*hidden argument*/NULL);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_16 = L_15;
NullCheck(L_16);
uint8_t L_17 = ASN1_get_Tag_m1346989AC839D85A9E0A211525A6B551974E4862_inline(L_16, /*hidden argument*/NULL);
G_B6_0 = L_16;
if ((((int32_t)L_17) == ((int32_t)((int32_t)48))))
{
G_B7_0 = L_16;
goto IL_006e;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_18 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_18, _stringLiteral99DF9DBD518CF90FFF8724227F439A55D615463E, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_18, NULL, EncryptedData__ctor_m385361DAE06A76AA773E49EF242400DE7F02A8FD_RuntimeMethod_var);
}
IL_006e:
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_19 = G_B7_0;
NullCheck(L_19);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_20 = ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08(L_19, 0, /*hidden argument*/NULL);
V_0 = L_20;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_21 = V_0;
NullCheck(L_21);
uint8_t L_22 = ASN1_get_Tag_m1346989AC839D85A9E0A211525A6B551974E4862_inline(L_21, /*hidden argument*/NULL);
G_B8_0 = L_19;
if ((((int32_t)L_22) == ((int32_t)6)))
{
G_B9_0 = L_19;
goto IL_008a;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_23 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_23, _stringLiteral2A29B7FE27DAF69AFEE5861F4F771F3C1333106F, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_23, NULL, EncryptedData__ctor_m385361DAE06A76AA773E49EF242400DE7F02A8FD_RuntimeMethod_var);
}
IL_008a:
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_24 = V_0;
String_t* L_25 = ASN1Convert_ToOid_mFFA93B4BBEFCA8E4E86DAE87CDB998E78BFB2D5A(L_24, /*hidden argument*/NULL);
ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * L_26 = (ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E *)il2cpp_codegen_object_new(ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E_il2cpp_TypeInfo_var);
ContentInfo__ctor_mF21B31604F01A686DB03E30FEAE859A53A0E084A(L_26, L_25, /*hidden argument*/NULL);
__this->set__content_1(L_26);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_27 = G_B9_0;
NullCheck(L_27);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_28 = ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08(L_27, 1, /*hidden argument*/NULL);
V_1 = L_28;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_29 = V_1;
NullCheck(L_29);
uint8_t L_30 = ASN1_get_Tag_m1346989AC839D85A9E0A211525A6B551974E4862_inline(L_29, /*hidden argument*/NULL);
G_B10_0 = L_27;
if ((((int32_t)L_30) == ((int32_t)((int32_t)48))))
{
G_B11_0 = L_27;
goto IL_00b8;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_31 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_31, _stringLiteral80B7C95DB89E34F9F8C13CFECA9C592572CFAD08, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_31, NULL, EncryptedData__ctor_m385361DAE06A76AA773E49EF242400DE7F02A8FD_RuntimeMethod_var);
}
IL_00b8:
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_32 = V_1;
NullCheck(L_32);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_33 = ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08(L_32, 0, /*hidden argument*/NULL);
String_t* L_34 = ASN1Convert_ToOid_mFFA93B4BBEFCA8E4E86DAE87CDB998E78BFB2D5A(L_33, /*hidden argument*/NULL);
ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * L_35 = (ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E *)il2cpp_codegen_object_new(ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E_il2cpp_TypeInfo_var);
ContentInfo__ctor_mF21B31604F01A686DB03E30FEAE859A53A0E084A(L_35, L_34, /*hidden argument*/NULL);
__this->set__encryptionAlgorithm_2(L_35);
ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * L_36 = __this->get__encryptionAlgorithm_2();
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_37 = V_1;
NullCheck(L_37);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_38 = ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08(L_37, 1, /*hidden argument*/NULL);
NullCheck(L_36);
ContentInfo_set_Content_m15B5D9A61236E1C116A9B5A651E80C5D78FB2598_inline(L_36, L_38, /*hidden argument*/NULL);
NullCheck(G_B11_0);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_39 = ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08(G_B11_0, 2, /*hidden argument*/NULL);
V_2 = L_39;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_40 = V_2;
NullCheck(L_40);
uint8_t L_41 = ASN1_get_Tag_m1346989AC839D85A9E0A211525A6B551974E4862_inline(L_40, /*hidden argument*/NULL);
if ((((int32_t)L_41) == ((int32_t)((int32_t)128))))
{
goto IL_0100;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_42 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_42, _stringLiteralD964E4390D86936E2472E05166BCAA08DD191882, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_42, NULL, EncryptedData__ctor_m385361DAE06A76AA773E49EF242400DE7F02A8FD_RuntimeMethod_var);
}
IL_0100:
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_43 = V_2;
NullCheck(L_43);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_44 = ASN1_get_Value_m9BD6239E12A6148AF9507C2F58058C6B8147A079(L_43, /*hidden argument*/NULL);
__this->set__encrypted_3(L_44);
return;
}
}
// Mono.Security.PKCS7_ContentInfo Mono.Security.PKCS7_EncryptedData::get_EncryptionAlgorithm()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * EncryptedData_get_EncryptionAlgorithm_m06B627AA11F08C1515676B6E58DEDDD43B4F380F (EncryptedData_tA100D7E93FCF1B7CBD486522E841F0A980CCE61B * __this, const RuntimeMethod* method)
{
{
ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * L_0 = __this->get__encryptionAlgorithm_2();
return L_0;
}
}
// System.Byte[] Mono.Security.PKCS7_EncryptedData::get_EncryptedContent()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* EncryptedData_get_EncryptedContent_m3C19AF07E7124131F08D7223E7B955AE67896BB8 (EncryptedData_tA100D7E93FCF1B7CBD486522E841F0A980CCE61B * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EncryptedData_get_EncryptedContent_m3C19AF07E7124131F08D7223E7B955AE67896BB8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = __this->get__encrypted_3();
if (L_0)
{
goto IL_000a;
}
}
{
return (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)NULL;
}
IL_000a:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = __this->get__encrypted_3();
NullCheck((RuntimeArray *)(RuntimeArray *)L_1);
RuntimeObject * L_2 = Array_Clone_mE8C710213E323617A6F46F2B36DCDDD4C7CF5176((RuntimeArray *)(RuntimeArray *)L_1, /*hidden argument*/NULL);
return ((ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)Castclass((RuntimeObject*)L_2, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var));
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Mono.Security.Protocol.Ntlm.ChallengeResponse::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ChallengeResponse__ctor_m1E0300839CAF582A720DB0F4F9E425B6EE12B258 (ChallengeResponse_t2A954E3C6AB2D638ECA50E1B8ACB99E8F28A048B * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ChallengeResponse__ctor_m1E0300839CAF582A720DB0F4F9E425B6EE12B258_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
__this->set__disposed_2((bool)0);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)((int32_t)21));
__this->set__lmpwd_4(L_0);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)((int32_t)21));
__this->set__ntpwd_5(L_1);
return;
}
}
// System.Void Mono.Security.Protocol.Ntlm.ChallengeResponse::.ctor(System.String,System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ChallengeResponse__ctor_mF80EAE315F35264F1DA0167B3ED7A8CD8E2D1FFA (ChallengeResponse_t2A954E3C6AB2D638ECA50E1B8ACB99E8F28A048B * __this, String_t* ___password0, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___challenge1, const RuntimeMethod* method)
{
{
ChallengeResponse__ctor_m1E0300839CAF582A720DB0F4F9E425B6EE12B258(__this, /*hidden argument*/NULL);
String_t* L_0 = ___password0;
ChallengeResponse_set_Password_m530EB94179C374BED9B9AAE4BB30AB3FF14F07E2(__this, L_0, /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = ___challenge1;
ChallengeResponse_set_Challenge_mD747C1A002528A6E9AFDE848AA257FD7B1B85E6F(__this, L_1, /*hidden argument*/NULL);
return;
}
}
// System.Void Mono.Security.Protocol.Ntlm.ChallengeResponse::Finalize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ChallengeResponse_Finalize_m358598D53FC1FDD2180BBF5877FEAAE3C8606118 (ChallengeResponse_t2A954E3C6AB2D638ECA50E1B8ACB99E8F28A048B * __this, const RuntimeMethod* method)
{
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
IL_0000:
try
{ // begin try (depth: 1)
{
bool L_0 = __this->get__disposed_2();
if (L_0)
{
goto IL_000e;
}
}
IL_0008:
{
ChallengeResponse_Dispose_mD6C08D1EDA541DC5A9B287744FB18E3149627434(__this, /*hidden argument*/NULL);
}
IL_000e:
{
IL2CPP_LEAVE(0x17, FINALLY_0010);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0010;
}
FINALLY_0010:
{ // begin finally (depth: 1)
Object_Finalize_m4015B7D3A44DE125C5FE34D7276CD4697C06F380(__this, /*hidden argument*/NULL);
IL2CPP_END_FINALLY(16)
} // end finally (depth: 1)
IL2CPP_CLEANUP(16)
{
IL2CPP_JUMP_TBL(0x17, IL_0017)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0017:
{
return;
}
}
// System.Void Mono.Security.Protocol.Ntlm.ChallengeResponse::set_Password(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ChallengeResponse_set_Password_m530EB94179C374BED9B9AAE4BB30AB3FF14F07E2 (ChallengeResponse_t2A954E3C6AB2D638ECA50E1B8ACB99E8F28A048B * __this, String_t* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ChallengeResponse_set_Password_m530EB94179C374BED9B9AAE4BB30AB3FF14F07E2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
DES_tFB993FE8AF9722A555B0737FE730332CCD86F6F0 * V_0 = NULL;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_1 = NULL;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_2 = NULL;
MD4_t932C1DEA44D4B8650873251E88AA4096164BB380 * G_B12_0 = NULL;
MD4_t932C1DEA44D4B8650873251E88AA4096164BB380 * G_B11_0 = NULL;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* G_B13_0 = NULL;
MD4_t932C1DEA44D4B8650873251E88AA4096164BB380 * G_B13_1 = NULL;
{
bool L_0 = __this->get__disposed_2();
if (!L_0)
{
goto IL_0013;
}
}
{
ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A * L_1 = (ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A *)il2cpp_codegen_object_new(ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A_il2cpp_TypeInfo_var);
ObjectDisposedException__ctor_m8B5D23EA08E42BDE6BC5233CC666295F19BBD2F9(L_1, _stringLiteral42BBEE886171CED8B81918E0F830F24966193E05, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, ChallengeResponse_set_Password_m530EB94179C374BED9B9AAE4BB30AB3FF14F07E2_RuntimeMethod_var);
}
IL_0013:
{
IL2CPP_RUNTIME_CLASS_INIT(DES_tFB993FE8AF9722A555B0737FE730332CCD86F6F0_il2cpp_TypeInfo_var);
DES_tFB993FE8AF9722A555B0737FE730332CCD86F6F0 * L_2 = DES_Create_m5EE267FBCD5AA18E04C29247C796430D12247CC5(/*hidden argument*/NULL);
V_0 = L_2;
DES_tFB993FE8AF9722A555B0737FE730332CCD86F6F0 * L_3 = V_0;
NullCheck(L_3);
VirtActionInvoker1< int32_t >::Invoke(17 /* System.Void System.Security.Cryptography.SymmetricAlgorithm::set_Mode(System.Security.Cryptography.CipherMode) */, L_3, 2);
String_t* L_4 = ___value0;
if (!L_4)
{
goto IL_002c;
}
}
{
String_t* L_5 = ___value0;
NullCheck(L_5);
int32_t L_6 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_5, /*hidden argument*/NULL);
if ((((int32_t)L_6) >= ((int32_t)1)))
{
goto IL_0041;
}
}
IL_002c:
{
IL2CPP_RUNTIME_CLASS_INIT(ChallengeResponse_t2A954E3C6AB2D638ECA50E1B8ACB99E8F28A048B_il2cpp_TypeInfo_var);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_7 = ((ChallengeResponse_t2A954E3C6AB2D638ECA50E1B8ACB99E8F28A048B_StaticFields*)il2cpp_codegen_static_fields_for(ChallengeResponse_t2A954E3C6AB2D638ECA50E1B8ACB99E8F28A048B_il2cpp_TypeInfo_var))->get_nullEncMagic_1();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_8 = __this->get__lmpwd_4();
Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353((RuntimeArray *)(RuntimeArray *)L_7, 0, (RuntimeArray *)(RuntimeArray *)L_8, 0, 8, /*hidden argument*/NULL);
goto IL_0069;
}
IL_0041:
{
DES_tFB993FE8AF9722A555B0737FE730332CCD86F6F0 * L_9 = V_0;
String_t* L_10 = ___value0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_11 = ChallengeResponse_PasswordToKey_m522B84CA0312284486A2C4E10FEE2D74BF4FF163(__this, L_10, 0, /*hidden argument*/NULL);
NullCheck(L_9);
VirtActionInvoker1< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(12 /* System.Void System.Security.Cryptography.SymmetricAlgorithm::set_Key(System.Byte[]) */, L_9, L_11);
DES_tFB993FE8AF9722A555B0737FE730332CCD86F6F0 * L_12 = V_0;
NullCheck(L_12);
RuntimeObject* L_13 = VirtFuncInvoker0< RuntimeObject* >::Invoke(20 /* System.Security.Cryptography.ICryptoTransform System.Security.Cryptography.SymmetricAlgorithm::CreateEncryptor() */, L_12);
IL2CPP_RUNTIME_CLASS_INIT(ChallengeResponse_t2A954E3C6AB2D638ECA50E1B8ACB99E8F28A048B_il2cpp_TypeInfo_var);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_14 = ((ChallengeResponse_t2A954E3C6AB2D638ECA50E1B8ACB99E8F28A048B_StaticFields*)il2cpp_codegen_static_fields_for(ChallengeResponse_t2A954E3C6AB2D638ECA50E1B8ACB99E8F28A048B_il2cpp_TypeInfo_var))->get_magic_0();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_15 = __this->get__lmpwd_4();
NullCheck(L_13);
InterfaceFuncInvoker5< int32_t, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t >::Invoke(3 /* System.Int32 System.Security.Cryptography.ICryptoTransform::TransformBlock(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32) */, ICryptoTransform_t43C29A7F3A8C2DDAC9F3BF9BF739B03E4D5DE9A9_il2cpp_TypeInfo_var, L_13, L_14, 0, 8, L_15, 0);
}
IL_0069:
{
String_t* L_16 = ___value0;
if (!L_16)
{
goto IL_0075;
}
}
{
String_t* L_17 = ___value0;
NullCheck(L_17);
int32_t L_18 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_17, /*hidden argument*/NULL);
if ((((int32_t)L_18) >= ((int32_t)8)))
{
goto IL_008a;
}
}
IL_0075:
{
IL2CPP_RUNTIME_CLASS_INIT(ChallengeResponse_t2A954E3C6AB2D638ECA50E1B8ACB99E8F28A048B_il2cpp_TypeInfo_var);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_19 = ((ChallengeResponse_t2A954E3C6AB2D638ECA50E1B8ACB99E8F28A048B_StaticFields*)il2cpp_codegen_static_fields_for(ChallengeResponse_t2A954E3C6AB2D638ECA50E1B8ACB99E8F28A048B_il2cpp_TypeInfo_var))->get_nullEncMagic_1();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_20 = __this->get__lmpwd_4();
Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353((RuntimeArray *)(RuntimeArray *)L_19, 0, (RuntimeArray *)(RuntimeArray *)L_20, 8, 8, /*hidden argument*/NULL);
goto IL_00b2;
}
IL_008a:
{
DES_tFB993FE8AF9722A555B0737FE730332CCD86F6F0 * L_21 = V_0;
String_t* L_22 = ___value0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_23 = ChallengeResponse_PasswordToKey_m522B84CA0312284486A2C4E10FEE2D74BF4FF163(__this, L_22, 7, /*hidden argument*/NULL);
NullCheck(L_21);
VirtActionInvoker1< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(12 /* System.Void System.Security.Cryptography.SymmetricAlgorithm::set_Key(System.Byte[]) */, L_21, L_23);
DES_tFB993FE8AF9722A555B0737FE730332CCD86F6F0 * L_24 = V_0;
NullCheck(L_24);
RuntimeObject* L_25 = VirtFuncInvoker0< RuntimeObject* >::Invoke(20 /* System.Security.Cryptography.ICryptoTransform System.Security.Cryptography.SymmetricAlgorithm::CreateEncryptor() */, L_24);
IL2CPP_RUNTIME_CLASS_INIT(ChallengeResponse_t2A954E3C6AB2D638ECA50E1B8ACB99E8F28A048B_il2cpp_TypeInfo_var);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_26 = ((ChallengeResponse_t2A954E3C6AB2D638ECA50E1B8ACB99E8F28A048B_StaticFields*)il2cpp_codegen_static_fields_for(ChallengeResponse_t2A954E3C6AB2D638ECA50E1B8ACB99E8F28A048B_il2cpp_TypeInfo_var))->get_magic_0();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_27 = __this->get__lmpwd_4();
NullCheck(L_25);
InterfaceFuncInvoker5< int32_t, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t >::Invoke(3 /* System.Int32 System.Security.Cryptography.ICryptoTransform::TransformBlock(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32) */, ICryptoTransform_t43C29A7F3A8C2DDAC9F3BF9BF739B03E4D5DE9A9_il2cpp_TypeInfo_var, L_25, L_26, 0, 8, L_27, 8);
}
IL_00b2:
{
MD4_t932C1DEA44D4B8650873251E88AA4096164BB380 * L_28 = MD4_Create_m2D436A4CC284704A7DA0EEF4C4D5860F69D0BB93(/*hidden argument*/NULL);
String_t* L_29 = ___value0;
G_B11_0 = L_28;
if (!L_29)
{
G_B12_0 = L_28;
goto IL_00c7;
}
}
{
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_30 = Encoding_get_Unicode_m86CC470F70F9BB52DDB26721F0C0D6EDAFC318AA(/*hidden argument*/NULL);
String_t* L_31 = ___value0;
NullCheck(L_30);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_32 = VirtFuncInvoker1< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, String_t* >::Invoke(18 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_30, L_31);
G_B13_0 = L_32;
G_B13_1 = G_B11_0;
goto IL_00cd;
}
IL_00c7:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_33 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)0);
G_B13_0 = L_33;
G_B13_1 = G_B12_0;
}
IL_00cd:
{
V_1 = G_B13_0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_34 = V_1;
NullCheck(G_B13_1);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_35 = HashAlgorithm_ComputeHash_m18501D3068AEBEB5FA83EA72BE780E371DB0C122(G_B13_1, L_34, /*hidden argument*/NULL);
V_2 = L_35;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_36 = V_2;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_37 = __this->get__ntpwd_5();
Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353((RuntimeArray *)(RuntimeArray *)L_36, 0, (RuntimeArray *)(RuntimeArray *)L_37, 0, ((int32_t)16), /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_38 = V_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_39 = V_1;
NullCheck(L_39);
Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E((RuntimeArray *)(RuntimeArray *)L_38, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_39)->max_length)))), /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_40 = V_2;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_41 = V_2;
NullCheck(L_41);
Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E((RuntimeArray *)(RuntimeArray *)L_40, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_41)->max_length)))), /*hidden argument*/NULL);
DES_tFB993FE8AF9722A555B0737FE730332CCD86F6F0 * L_42 = V_0;
NullCheck(L_42);
SymmetricAlgorithm_Clear_m8487379B135918E72684597CFE388EF7FCA733D2(L_42, /*hidden argument*/NULL);
return;
}
}
// System.Void Mono.Security.Protocol.Ntlm.ChallengeResponse::set_Challenge(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ChallengeResponse_set_Challenge_mD747C1A002528A6E9AFDE848AA257FD7B1B85E6F (ChallengeResponse_t2A954E3C6AB2D638ECA50E1B8ACB99E8F28A048B * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ChallengeResponse_set_Challenge_mD747C1A002528A6E9AFDE848AA257FD7B1B85E6F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___value0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteralBB9D653F4E12DEED891E16FF7E7D9376E13F075D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, ChallengeResponse_set_Challenge_mD747C1A002528A6E9AFDE848AA257FD7B1B85E6F_RuntimeMethod_var);
}
IL_000e:
{
bool L_2 = __this->get__disposed_2();
if (!L_2)
{
goto IL_0021;
}
}
{
ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A * L_3 = (ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A *)il2cpp_codegen_object_new(ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A_il2cpp_TypeInfo_var);
ObjectDisposedException__ctor_m8B5D23EA08E42BDE6BC5233CC666295F19BBD2F9(L_3, _stringLiteral42BBEE886171CED8B81918E0F830F24966193E05, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, ChallengeResponse_set_Challenge_mD747C1A002528A6E9AFDE848AA257FD7B1B85E6F_RuntimeMethod_var);
}
IL_0021:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = ___value0;
NullCheck((RuntimeArray *)(RuntimeArray *)L_4);
RuntimeObject * L_5 = Array_Clone_mE8C710213E323617A6F46F2B36DCDDD4C7CF5176((RuntimeArray *)(RuntimeArray *)L_4, /*hidden argument*/NULL);
__this->set__challenge_3(((ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)Castclass((RuntimeObject*)L_5, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var)));
return;
}
}
// System.Byte[] Mono.Security.Protocol.Ntlm.ChallengeResponse::get_LM()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ChallengeResponse_get_LM_m3916048E028CFCA867E801A83FEB949F7C089263 (ChallengeResponse_t2A954E3C6AB2D638ECA50E1B8ACB99E8F28A048B * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ChallengeResponse_get_LM_m3916048E028CFCA867E801A83FEB949F7C089263_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
bool L_0 = __this->get__disposed_2();
if (!L_0)
{
goto IL_0013;
}
}
{
ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A * L_1 = (ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A *)il2cpp_codegen_object_new(ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A_il2cpp_TypeInfo_var);
ObjectDisposedException__ctor_m8B5D23EA08E42BDE6BC5233CC666295F19BBD2F9(L_1, _stringLiteral42BBEE886171CED8B81918E0F830F24966193E05, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, ChallengeResponse_get_LM_m3916048E028CFCA867E801A83FEB949F7C089263_RuntimeMethod_var);
}
IL_0013:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = __this->get__lmpwd_4();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = ChallengeResponse_GetResponse_m526E49021AB29DD12995CF8BB12DC9F03F2A583F(__this, L_2, /*hidden argument*/NULL);
return L_3;
}
}
// System.Byte[] Mono.Security.Protocol.Ntlm.ChallengeResponse::get_NT()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ChallengeResponse_get_NT_mEC9F2FDFDB8FADF415D4BA8A1564A23024FC3437 (ChallengeResponse_t2A954E3C6AB2D638ECA50E1B8ACB99E8F28A048B * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ChallengeResponse_get_NT_mEC9F2FDFDB8FADF415D4BA8A1564A23024FC3437_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
bool L_0 = __this->get__disposed_2();
if (!L_0)
{
goto IL_0013;
}
}
{
ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A * L_1 = (ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A *)il2cpp_codegen_object_new(ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A_il2cpp_TypeInfo_var);
ObjectDisposedException__ctor_m8B5D23EA08E42BDE6BC5233CC666295F19BBD2F9(L_1, _stringLiteral42BBEE886171CED8B81918E0F830F24966193E05, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, ChallengeResponse_get_NT_mEC9F2FDFDB8FADF415D4BA8A1564A23024FC3437_RuntimeMethod_var);
}
IL_0013:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = __this->get__ntpwd_5();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = ChallengeResponse_GetResponse_m526E49021AB29DD12995CF8BB12DC9F03F2A583F(__this, L_2, /*hidden argument*/NULL);
return L_3;
}
}
// System.Void Mono.Security.Protocol.Ntlm.ChallengeResponse::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ChallengeResponse_Dispose_mD6C08D1EDA541DC5A9B287744FB18E3149627434 (ChallengeResponse_t2A954E3C6AB2D638ECA50E1B8ACB99E8F28A048B * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ChallengeResponse_Dispose_mD6C08D1EDA541DC5A9B287744FB18E3149627434_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ChallengeResponse_Dispose_mF3B015B967C89BE1E139EFA40740208B10441AED(__this, (bool)1, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(GC_tC1D7BD74E8F44ECCEF5CD2B5D84BFF9AAE02D01D_il2cpp_TypeInfo_var);
GC_SuppressFinalize_m037319A9B95A5BA437E806DE592802225EE5B425(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void Mono.Security.Protocol.Ntlm.ChallengeResponse::Dispose(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ChallengeResponse_Dispose_mF3B015B967C89BE1E139EFA40740208B10441AED (ChallengeResponse_t2A954E3C6AB2D638ECA50E1B8ACB99E8F28A048B * __this, bool ___disposing0, const RuntimeMethod* method)
{
{
bool L_0 = __this->get__disposed_2();
if (L_0)
{
goto IL_0053;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = __this->get__lmpwd_4();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = __this->get__lmpwd_4();
NullCheck(L_2);
Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E((RuntimeArray *)(RuntimeArray *)L_1, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length)))), /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = __this->get__ntpwd_5();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = __this->get__ntpwd_5();
NullCheck(L_4);
Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E((RuntimeArray *)(RuntimeArray *)L_3, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))), /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_5 = __this->get__challenge_3();
if (!L_5)
{
goto IL_004c;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_6 = __this->get__challenge_3();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_7 = __this->get__challenge_3();
NullCheck(L_7);
Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E((RuntimeArray *)(RuntimeArray *)L_6, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_7)->max_length)))), /*hidden argument*/NULL);
}
IL_004c:
{
__this->set__disposed_2((bool)1);
}
IL_0053:
{
return;
}
}
// System.Byte[] Mono.Security.Protocol.Ntlm.ChallengeResponse::GetResponse(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ChallengeResponse_GetResponse_m526E49021AB29DD12995CF8BB12DC9F03F2A583F (ChallengeResponse_t2A954E3C6AB2D638ECA50E1B8ACB99E8F28A048B * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___pwd0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ChallengeResponse_GetResponse_m526E49021AB29DD12995CF8BB12DC9F03F2A583F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_0 = NULL;
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)((int32_t)24));
V_0 = L_0;
IL2CPP_RUNTIME_CLASS_INIT(DES_tFB993FE8AF9722A555B0737FE730332CCD86F6F0_il2cpp_TypeInfo_var);
DES_tFB993FE8AF9722A555B0737FE730332CCD86F6F0 * L_1 = DES_Create_m5EE267FBCD5AA18E04C29247C796430D12247CC5(/*hidden argument*/NULL);
DES_tFB993FE8AF9722A555B0737FE730332CCD86F6F0 * L_2 = L_1;
NullCheck(L_2);
VirtActionInvoker1< int32_t >::Invoke(17 /* System.Void System.Security.Cryptography.SymmetricAlgorithm::set_Mode(System.Security.Cryptography.CipherMode) */, L_2, 2);
DES_tFB993FE8AF9722A555B0737FE730332CCD86F6F0 * L_3 = L_2;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = ___pwd0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_5 = ChallengeResponse_PrepareDESKey_m32B2174E0B63E959CE08204F3C39AAA01799A3B3(__this, L_4, 0, /*hidden argument*/NULL);
NullCheck(L_3);
VirtActionInvoker1< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(12 /* System.Void System.Security.Cryptography.SymmetricAlgorithm::set_Key(System.Byte[]) */, L_3, L_5);
DES_tFB993FE8AF9722A555B0737FE730332CCD86F6F0 * L_6 = L_3;
NullCheck(L_6);
RuntimeObject* L_7 = VirtFuncInvoker0< RuntimeObject* >::Invoke(20 /* System.Security.Cryptography.ICryptoTransform System.Security.Cryptography.SymmetricAlgorithm::CreateEncryptor() */, L_6);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_8 = __this->get__challenge_3();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_9 = V_0;
NullCheck(L_7);
InterfaceFuncInvoker5< int32_t, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t >::Invoke(3 /* System.Int32 System.Security.Cryptography.ICryptoTransform::TransformBlock(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32) */, ICryptoTransform_t43C29A7F3A8C2DDAC9F3BF9BF739B03E4D5DE9A9_il2cpp_TypeInfo_var, L_7, L_8, 0, 8, L_9, 0);
DES_tFB993FE8AF9722A555B0737FE730332CCD86F6F0 * L_10 = L_6;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_11 = ___pwd0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_12 = ChallengeResponse_PrepareDESKey_m32B2174E0B63E959CE08204F3C39AAA01799A3B3(__this, L_11, 7, /*hidden argument*/NULL);
NullCheck(L_10);
VirtActionInvoker1< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(12 /* System.Void System.Security.Cryptography.SymmetricAlgorithm::set_Key(System.Byte[]) */, L_10, L_12);
DES_tFB993FE8AF9722A555B0737FE730332CCD86F6F0 * L_13 = L_10;
NullCheck(L_13);
RuntimeObject* L_14 = VirtFuncInvoker0< RuntimeObject* >::Invoke(20 /* System.Security.Cryptography.ICryptoTransform System.Security.Cryptography.SymmetricAlgorithm::CreateEncryptor() */, L_13);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_15 = __this->get__challenge_3();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_16 = V_0;
NullCheck(L_14);
InterfaceFuncInvoker5< int32_t, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t >::Invoke(3 /* System.Int32 System.Security.Cryptography.ICryptoTransform::TransformBlock(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32) */, ICryptoTransform_t43C29A7F3A8C2DDAC9F3BF9BF739B03E4D5DE9A9_il2cpp_TypeInfo_var, L_14, L_15, 0, 8, L_16, 8);
DES_tFB993FE8AF9722A555B0737FE730332CCD86F6F0 * L_17 = L_13;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_18 = ___pwd0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_19 = ChallengeResponse_PrepareDESKey_m32B2174E0B63E959CE08204F3C39AAA01799A3B3(__this, L_18, ((int32_t)14), /*hidden argument*/NULL);
NullCheck(L_17);
VirtActionInvoker1< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(12 /* System.Void System.Security.Cryptography.SymmetricAlgorithm::set_Key(System.Byte[]) */, L_17, L_19);
NullCheck(L_17);
RuntimeObject* L_20 = VirtFuncInvoker0< RuntimeObject* >::Invoke(20 /* System.Security.Cryptography.ICryptoTransform System.Security.Cryptography.SymmetricAlgorithm::CreateEncryptor() */, L_17);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_21 = __this->get__challenge_3();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_22 = V_0;
NullCheck(L_20);
InterfaceFuncInvoker5< int32_t, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t >::Invoke(3 /* System.Int32 System.Security.Cryptography.ICryptoTransform::TransformBlock(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32) */, ICryptoTransform_t43C29A7F3A8C2DDAC9F3BF9BF739B03E4D5DE9A9_il2cpp_TypeInfo_var, L_20, L_21, 0, 8, L_22, ((int32_t)16));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_23 = V_0;
return L_23;
}
}
// System.Byte[] Mono.Security.Protocol.Ntlm.ChallengeResponse::PrepareDESKey(System.Byte[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ChallengeResponse_PrepareDESKey_m32B2174E0B63E959CE08204F3C39AAA01799A3B3 (ChallengeResponse_t2A954E3C6AB2D638ECA50E1B8ACB99E8F28A048B * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___key56bits0, int32_t ___position1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ChallengeResponse_PrepareDESKey_m32B2174E0B63E959CE08204F3C39AAA01799A3B3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)8);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = L_0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = ___key56bits0;
int32_t L_3 = ___position1;
NullCheck(L_2);
int32_t L_4 = L_3;
uint8_t L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
NullCheck(L_1);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (uint8_t)L_5);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_6 = L_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_7 = ___key56bits0;
int32_t L_8 = ___position1;
NullCheck(L_7);
int32_t L_9 = L_8;
uint8_t L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_11 = ___key56bits0;
int32_t L_12 = ___position1;
NullCheck(L_11);
int32_t L_13 = ((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1));
uint8_t L_14 = (L_11)->GetAt(static_cast<il2cpp_array_size_t>(L_13));
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(1), (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)((int32_t)((int32_t)L_10<<(int32_t)7))|(int32_t)((int32_t)((int32_t)L_14>>(int32_t)1))))))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_15 = L_6;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_16 = ___key56bits0;
int32_t L_17 = ___position1;
NullCheck(L_16);
int32_t L_18 = ((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1));
uint8_t L_19 = (L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_18));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_20 = ___key56bits0;
int32_t L_21 = ___position1;
NullCheck(L_20);
int32_t L_22 = ((int32_t)il2cpp_codegen_add((int32_t)L_21, (int32_t)2));
uint8_t L_23 = (L_20)->GetAt(static_cast<il2cpp_array_size_t>(L_22));
NullCheck(L_15);
(L_15)->SetAt(static_cast<il2cpp_array_size_t>(2), (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)((int32_t)((int32_t)L_19<<(int32_t)6))|(int32_t)((int32_t)((int32_t)L_23>>(int32_t)2))))))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_24 = L_15;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_25 = ___key56bits0;
int32_t L_26 = ___position1;
NullCheck(L_25);
int32_t L_27 = ((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)2));
uint8_t L_28 = (L_25)->GetAt(static_cast<il2cpp_array_size_t>(L_27));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_29 = ___key56bits0;
int32_t L_30 = ___position1;
NullCheck(L_29);
int32_t L_31 = ((int32_t)il2cpp_codegen_add((int32_t)L_30, (int32_t)3));
uint8_t L_32 = (L_29)->GetAt(static_cast<il2cpp_array_size_t>(L_31));
NullCheck(L_24);
(L_24)->SetAt(static_cast<il2cpp_array_size_t>(3), (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)((int32_t)((int32_t)L_28<<(int32_t)5))|(int32_t)((int32_t)((int32_t)L_32>>(int32_t)3))))))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_33 = L_24;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_34 = ___key56bits0;
int32_t L_35 = ___position1;
NullCheck(L_34);
int32_t L_36 = ((int32_t)il2cpp_codegen_add((int32_t)L_35, (int32_t)3));
uint8_t L_37 = (L_34)->GetAt(static_cast<il2cpp_array_size_t>(L_36));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_38 = ___key56bits0;
int32_t L_39 = ___position1;
NullCheck(L_38);
int32_t L_40 = ((int32_t)il2cpp_codegen_add((int32_t)L_39, (int32_t)4));
uint8_t L_41 = (L_38)->GetAt(static_cast<il2cpp_array_size_t>(L_40));
NullCheck(L_33);
(L_33)->SetAt(static_cast<il2cpp_array_size_t>(4), (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)((int32_t)((int32_t)L_37<<(int32_t)4))|(int32_t)((int32_t)((int32_t)L_41>>(int32_t)4))))))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_42 = L_33;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_43 = ___key56bits0;
int32_t L_44 = ___position1;
NullCheck(L_43);
int32_t L_45 = ((int32_t)il2cpp_codegen_add((int32_t)L_44, (int32_t)4));
uint8_t L_46 = (L_43)->GetAt(static_cast<il2cpp_array_size_t>(L_45));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_47 = ___key56bits0;
int32_t L_48 = ___position1;
NullCheck(L_47);
int32_t L_49 = ((int32_t)il2cpp_codegen_add((int32_t)L_48, (int32_t)5));
uint8_t L_50 = (L_47)->GetAt(static_cast<il2cpp_array_size_t>(L_49));
NullCheck(L_42);
(L_42)->SetAt(static_cast<il2cpp_array_size_t>(5), (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)((int32_t)((int32_t)L_46<<(int32_t)3))|(int32_t)((int32_t)((int32_t)L_50>>(int32_t)5))))))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_51 = L_42;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_52 = ___key56bits0;
int32_t L_53 = ___position1;
NullCheck(L_52);
int32_t L_54 = ((int32_t)il2cpp_codegen_add((int32_t)L_53, (int32_t)5));
uint8_t L_55 = (L_52)->GetAt(static_cast<il2cpp_array_size_t>(L_54));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_56 = ___key56bits0;
int32_t L_57 = ___position1;
NullCheck(L_56);
int32_t L_58 = ((int32_t)il2cpp_codegen_add((int32_t)L_57, (int32_t)6));
uint8_t L_59 = (L_56)->GetAt(static_cast<il2cpp_array_size_t>(L_58));
NullCheck(L_51);
(L_51)->SetAt(static_cast<il2cpp_array_size_t>(6), (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)((int32_t)((int32_t)L_55<<(int32_t)2))|(int32_t)((int32_t)((int32_t)L_59>>(int32_t)6))))))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_60 = L_51;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_61 = ___key56bits0;
int32_t L_62 = ___position1;
NullCheck(L_61);
int32_t L_63 = ((int32_t)il2cpp_codegen_add((int32_t)L_62, (int32_t)6));
uint8_t L_64 = (L_61)->GetAt(static_cast<il2cpp_array_size_t>(L_63));
NullCheck(L_60);
(L_60)->SetAt(static_cast<il2cpp_array_size_t>(7), (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)L_64<<(int32_t)1))))));
return L_60;
}
}
// System.Byte[] Mono.Security.Protocol.Ntlm.ChallengeResponse::PasswordToKey(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ChallengeResponse_PasswordToKey_m522B84CA0312284486A2C4E10FEE2D74BF4FF163 (ChallengeResponse_t2A954E3C6AB2D638ECA50E1B8ACB99E8F28A048B * __this, String_t* ___password0, int32_t ___position1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ChallengeResponse_PasswordToKey_m522B84CA0312284486A2C4E10FEE2D74BF4FF163_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_0 = NULL;
int32_t V_1 = 0;
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)7);
V_0 = L_0;
String_t* L_1 = ___password0;
NullCheck(L_1);
int32_t L_2 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_1, /*hidden argument*/NULL);
int32_t L_3 = ___position1;
IL2CPP_RUNTIME_CLASS_INIT(Math_tFB388E53C7FDC6FCCF9A19ABF5A4E521FBD52E19_il2cpp_TypeInfo_var);
int32_t L_4 = Math_Min_mC950438198519FB2B0260FCB91220847EE4BB525(((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)L_3)), 7, /*hidden argument*/NULL);
V_1 = L_4;
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_5 = Encoding_get_ASCII_m9B673AE3152AB04D07CADE6E5E142C785B5BC94E(/*hidden argument*/NULL);
String_t* L_6 = ___password0;
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_7 = CultureInfo_get_CurrentCulture_mD86F3D8E5D332FB304F80D9B9CA4DE849C2A6831(/*hidden argument*/NULL);
NullCheck(L_6);
String_t* L_8 = String_ToUpper_m8C69D974350ABA8BA0BC3A66996004CCEFD64293(L_6, L_7, /*hidden argument*/NULL);
int32_t L_9 = ___position1;
int32_t L_10 = V_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_11 = V_0;
NullCheck(L_5);
VirtFuncInvoker5< int32_t, String_t*, int32_t, int32_t, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t >::Invoke(19 /* System.Int32 System.Text.Encoding::GetBytes(System.String,System.Int32,System.Int32,System.Byte[],System.Int32) */, L_5, L_8, L_9, L_10, L_11, 0);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_12 = V_0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_13 = ChallengeResponse_PrepareDESKey_m32B2174E0B63E959CE08204F3C39AAA01799A3B3(__this, L_12, 0, /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_14 = V_0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_15 = V_0;
NullCheck(L_15);
Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E((RuntimeArray *)(RuntimeArray *)L_14, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_15)->max_length)))), /*hidden argument*/NULL);
return L_13;
}
}
// System.Void Mono.Security.Protocol.Ntlm.ChallengeResponse::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ChallengeResponse__cctor_m069BF87DE471BEDD893664B52BBD066119DCD55C (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ChallengeResponse__cctor_m069BF87DE471BEDD893664B52BBD066119DCD55C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)8);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = L_0;
RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_2 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_tF21437707AFAA06797AEDEE07C84D4D3CC2837FA____AEA5F1CC5CFE1660539EDD691FE017F775F63A0D_19_FieldInfo_var) };
RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_1, L_2, /*hidden argument*/NULL);
((ChallengeResponse_t2A954E3C6AB2D638ECA50E1B8ACB99E8F28A048B_StaticFields*)il2cpp_codegen_static_fields_for(ChallengeResponse_t2A954E3C6AB2D638ECA50E1B8ACB99E8F28A048B_il2cpp_TypeInfo_var))->set_magic_0(L_1);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)8);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = L_3;
RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_5 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_tF21437707AFAA06797AEDEE07C84D4D3CC2837FA____16968835DEF6DD3BB86EABA9DEC53BF41851CD6D_2_FieldInfo_var) };
RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_4, L_5, /*hidden argument*/NULL);
((ChallengeResponse_t2A954E3C6AB2D638ECA50E1B8ACB99E8F28A048B_StaticFields*)il2cpp_codegen_static_fields_for(ChallengeResponse_t2A954E3C6AB2D638ECA50E1B8ACB99E8F28A048B_il2cpp_TypeInfo_var))->set_nullEncMagic_1(L_4);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Byte[] Mono.Security.Protocol.Ntlm.ChallengeResponse2::Compute_LM(System.String,System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ChallengeResponse2_Compute_LM_m3A1F9371E4F1E41B044787FFB3BE985E92A3AC22 (String_t* ___password0, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___challenge1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ChallengeResponse2_Compute_LM_m3A1F9371E4F1E41B044787FFB3BE985E92A3AC22_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_0 = NULL;
DES_tFB993FE8AF9722A555B0737FE730332CCD86F6F0 * V_1 = NULL;
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)((int32_t)21));
V_0 = L_0;
IL2CPP_RUNTIME_CLASS_INIT(DES_tFB993FE8AF9722A555B0737FE730332CCD86F6F0_il2cpp_TypeInfo_var);
DES_tFB993FE8AF9722A555B0737FE730332CCD86F6F0 * L_1 = DES_Create_m5EE267FBCD5AA18E04C29247C796430D12247CC5(/*hidden argument*/NULL);
V_1 = L_1;
DES_tFB993FE8AF9722A555B0737FE730332CCD86F6F0 * L_2 = V_1;
NullCheck(L_2);
VirtActionInvoker1< int32_t >::Invoke(17 /* System.Void System.Security.Cryptography.SymmetricAlgorithm::set_Mode(System.Security.Cryptography.CipherMode) */, L_2, 2);
String_t* L_3 = ___password0;
if (!L_3)
{
goto IL_0021;
}
}
{
String_t* L_4 = ___password0;
NullCheck(L_4);
int32_t L_5 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_4, /*hidden argument*/NULL);
if ((((int32_t)L_5) >= ((int32_t)1)))
{
goto IL_0031;
}
}
IL_0021:
{
IL2CPP_RUNTIME_CLASS_INIT(ChallengeResponse2_t2F5817D7717011A7F4C0DE0015D144A2292CAD77_il2cpp_TypeInfo_var);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_6 = ((ChallengeResponse2_t2F5817D7717011A7F4C0DE0015D144A2292CAD77_StaticFields*)il2cpp_codegen_static_fields_for(ChallengeResponse2_t2F5817D7717011A7F4C0DE0015D144A2292CAD77_il2cpp_TypeInfo_var))->get_nullEncMagic_1();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_7 = V_0;
Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353((RuntimeArray *)(RuntimeArray *)L_6, 0, (RuntimeArray *)(RuntimeArray *)L_7, 0, 8, /*hidden argument*/NULL);
goto IL_0053;
}
IL_0031:
{
DES_tFB993FE8AF9722A555B0737FE730332CCD86F6F0 * L_8 = V_1;
String_t* L_9 = ___password0;
IL2CPP_RUNTIME_CLASS_INIT(ChallengeResponse2_t2F5817D7717011A7F4C0DE0015D144A2292CAD77_il2cpp_TypeInfo_var);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_10 = ChallengeResponse2_PasswordToKey_m2871E605818DF2DE4BC5B1B163831BA8F64006D8(L_9, 0, /*hidden argument*/NULL);
NullCheck(L_8);
VirtActionInvoker1< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(12 /* System.Void System.Security.Cryptography.SymmetricAlgorithm::set_Key(System.Byte[]) */, L_8, L_10);
DES_tFB993FE8AF9722A555B0737FE730332CCD86F6F0 * L_11 = V_1;
NullCheck(L_11);
RuntimeObject* L_12 = VirtFuncInvoker0< RuntimeObject* >::Invoke(20 /* System.Security.Cryptography.ICryptoTransform System.Security.Cryptography.SymmetricAlgorithm::CreateEncryptor() */, L_11);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_13 = ((ChallengeResponse2_t2F5817D7717011A7F4C0DE0015D144A2292CAD77_StaticFields*)il2cpp_codegen_static_fields_for(ChallengeResponse2_t2F5817D7717011A7F4C0DE0015D144A2292CAD77_il2cpp_TypeInfo_var))->get_magic_0();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_14 = V_0;
NullCheck(L_12);
InterfaceFuncInvoker5< int32_t, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t >::Invoke(3 /* System.Int32 System.Security.Cryptography.ICryptoTransform::TransformBlock(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32) */, ICryptoTransform_t43C29A7F3A8C2DDAC9F3BF9BF739B03E4D5DE9A9_il2cpp_TypeInfo_var, L_12, L_13, 0, 8, L_14, 0);
}
IL_0053:
{
String_t* L_15 = ___password0;
if (!L_15)
{
goto IL_005f;
}
}
{
String_t* L_16 = ___password0;
NullCheck(L_16);
int32_t L_17 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_16, /*hidden argument*/NULL);
if ((((int32_t)L_17) >= ((int32_t)8)))
{
goto IL_006f;
}
}
IL_005f:
{
IL2CPP_RUNTIME_CLASS_INIT(ChallengeResponse2_t2F5817D7717011A7F4C0DE0015D144A2292CAD77_il2cpp_TypeInfo_var);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_18 = ((ChallengeResponse2_t2F5817D7717011A7F4C0DE0015D144A2292CAD77_StaticFields*)il2cpp_codegen_static_fields_for(ChallengeResponse2_t2F5817D7717011A7F4C0DE0015D144A2292CAD77_il2cpp_TypeInfo_var))->get_nullEncMagic_1();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_19 = V_0;
Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353((RuntimeArray *)(RuntimeArray *)L_18, 0, (RuntimeArray *)(RuntimeArray *)L_19, 8, 8, /*hidden argument*/NULL);
goto IL_0091;
}
IL_006f:
{
DES_tFB993FE8AF9722A555B0737FE730332CCD86F6F0 * L_20 = V_1;
String_t* L_21 = ___password0;
IL2CPP_RUNTIME_CLASS_INIT(ChallengeResponse2_t2F5817D7717011A7F4C0DE0015D144A2292CAD77_il2cpp_TypeInfo_var);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_22 = ChallengeResponse2_PasswordToKey_m2871E605818DF2DE4BC5B1B163831BA8F64006D8(L_21, 7, /*hidden argument*/NULL);
NullCheck(L_20);
VirtActionInvoker1< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(12 /* System.Void System.Security.Cryptography.SymmetricAlgorithm::set_Key(System.Byte[]) */, L_20, L_22);
DES_tFB993FE8AF9722A555B0737FE730332CCD86F6F0 * L_23 = V_1;
NullCheck(L_23);
RuntimeObject* L_24 = VirtFuncInvoker0< RuntimeObject* >::Invoke(20 /* System.Security.Cryptography.ICryptoTransform System.Security.Cryptography.SymmetricAlgorithm::CreateEncryptor() */, L_23);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_25 = ((ChallengeResponse2_t2F5817D7717011A7F4C0DE0015D144A2292CAD77_StaticFields*)il2cpp_codegen_static_fields_for(ChallengeResponse2_t2F5817D7717011A7F4C0DE0015D144A2292CAD77_il2cpp_TypeInfo_var))->get_magic_0();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_26 = V_0;
NullCheck(L_24);
InterfaceFuncInvoker5< int32_t, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t >::Invoke(3 /* System.Int32 System.Security.Cryptography.ICryptoTransform::TransformBlock(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32) */, ICryptoTransform_t43C29A7F3A8C2DDAC9F3BF9BF739B03E4D5DE9A9_il2cpp_TypeInfo_var, L_24, L_25, 0, 8, L_26, 8);
}
IL_0091:
{
DES_tFB993FE8AF9722A555B0737FE730332CCD86F6F0 * L_27 = V_1;
NullCheck(L_27);
SymmetricAlgorithm_Clear_m8487379B135918E72684597CFE388EF7FCA733D2(L_27, /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_28 = ___challenge1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_29 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(ChallengeResponse2_t2F5817D7717011A7F4C0DE0015D144A2292CAD77_il2cpp_TypeInfo_var);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_30 = ChallengeResponse2_GetResponse_mE39699CD2453921E373BF9768180993EDCD810E7(L_28, L_29, /*hidden argument*/NULL);
return L_30;
}
}
// System.Byte[] Mono.Security.Protocol.Ntlm.ChallengeResponse2::Compute_NTLM_Password(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ChallengeResponse2_Compute_NTLM_Password_mD27D4A18DBD712B0E80B0F2A1CB296B353312C41 (String_t* ___password0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ChallengeResponse2_Compute_NTLM_Password_mD27D4A18DBD712B0E80B0F2A1CB296B353312C41_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_0 = NULL;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_1 = NULL;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_2 = NULL;
MD4_t932C1DEA44D4B8650873251E88AA4096164BB380 * G_B2_0 = NULL;
MD4_t932C1DEA44D4B8650873251E88AA4096164BB380 * G_B1_0 = NULL;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* G_B3_0 = NULL;
MD4_t932C1DEA44D4B8650873251E88AA4096164BB380 * G_B3_1 = NULL;
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)((int32_t)21));
V_0 = L_0;
MD4_t932C1DEA44D4B8650873251E88AA4096164BB380 * L_1 = MD4_Create_m2D436A4CC284704A7DA0EEF4C4D5860F69D0BB93(/*hidden argument*/NULL);
String_t* L_2 = ___password0;
G_B1_0 = L_1;
if (!L_2)
{
G_B2_0 = L_1;
goto IL_001d;
}
}
{
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_3 = Encoding_get_Unicode_m86CC470F70F9BB52DDB26721F0C0D6EDAFC318AA(/*hidden argument*/NULL);
String_t* L_4 = ___password0;
NullCheck(L_3);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_5 = VirtFuncInvoker1< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, String_t* >::Invoke(18 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_3, L_4);
G_B3_0 = L_5;
G_B3_1 = G_B1_0;
goto IL_0023;
}
IL_001d:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_6 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)0);
G_B3_0 = L_6;
G_B3_1 = G_B2_0;
}
IL_0023:
{
V_1 = G_B3_0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_7 = V_1;
NullCheck(G_B3_1);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_8 = HashAlgorithm_ComputeHash_m18501D3068AEBEB5FA83EA72BE780E371DB0C122(G_B3_1, L_7, /*hidden argument*/NULL);
V_2 = L_8;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_9 = V_2;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_10 = V_0;
Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353((RuntimeArray *)(RuntimeArray *)L_9, 0, (RuntimeArray *)(RuntimeArray *)L_10, 0, ((int32_t)16), /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_11 = V_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_12 = V_1;
NullCheck(L_12);
Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E((RuntimeArray *)(RuntimeArray *)L_11, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_12)->max_length)))), /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_13 = V_2;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_14 = V_2;
NullCheck(L_14);
Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E((RuntimeArray *)(RuntimeArray *)L_13, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_14)->max_length)))), /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_15 = V_0;
return L_15;
}
}
// System.Byte[] Mono.Security.Protocol.Ntlm.ChallengeResponse2::Compute_NTLM(System.String,System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ChallengeResponse2_Compute_NTLM_mA1DCA878A3A7A5517DB8BB0F2BEDD29353573976 (String_t* ___password0, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___challenge1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ChallengeResponse2_Compute_NTLM_mA1DCA878A3A7A5517DB8BB0F2BEDD29353573976_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_0 = NULL;
{
String_t* L_0 = ___password0;
IL2CPP_RUNTIME_CLASS_INIT(ChallengeResponse2_t2F5817D7717011A7F4C0DE0015D144A2292CAD77_il2cpp_TypeInfo_var);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = ChallengeResponse2_Compute_NTLM_Password_mD27D4A18DBD712B0E80B0F2A1CB296B353312C41(L_0, /*hidden argument*/NULL);
V_0 = L_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = ___challenge1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = V_0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = ChallengeResponse2_GetResponse_mE39699CD2453921E373BF9768180993EDCD810E7(L_2, L_3, /*hidden argument*/NULL);
return L_4;
}
}
// System.Void Mono.Security.Protocol.Ntlm.ChallengeResponse2::Compute_NTLMv2_Session(System.String,System.Byte[],System.Byte[]&,System.Byte[]&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ChallengeResponse2_Compute_NTLMv2_Session_mFB6537BF7FC8D9D7CCE55BFCDF6A7C371460E296 (String_t* ___password0, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___challenge1, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** ___lm2, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** ___ntlm3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ChallengeResponse2_Compute_NTLMv2_Session_mFB6537BF7FC8D9D7CCE55BFCDF6A7C371460E296_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_0 = NULL;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_1 = NULL;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_2 = NULL;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_3 = NULL;
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)8);
V_0 = L_0;
RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * L_1 = RandomNumberGenerator_Create_mB84B1BA538B29D0679F310D3B574A7D5BAA890C4(/*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = V_0;
NullCheck(L_1);
VirtActionInvoker1< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(6 /* System.Void System.Security.Cryptography.RandomNumberGenerator::GetBytes(System.Byte[]) */, L_1, L_2);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = ___challenge1;
NullCheck(L_3);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_add((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length)))), (int32_t)8)));
V_1 = L_4;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_5 = ___challenge1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_6 = V_1;
NullCheck((RuntimeArray *)(RuntimeArray *)L_5);
Array_CopyTo_m455300D414FFB0EBFE53EA4E8BBD31532006EBB7((RuntimeArray *)(RuntimeArray *)L_5, (RuntimeArray *)(RuntimeArray *)L_6, 0, /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_7 = V_0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_8 = V_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_9 = ___challenge1;
NullCheck(L_9);
NullCheck((RuntimeArray *)(RuntimeArray *)L_7);
Array_CopyTo_m455300D414FFB0EBFE53EA4E8BBD31532006EBB7((RuntimeArray *)(RuntimeArray *)L_7, (RuntimeArray *)(RuntimeArray *)L_8, (((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length)))), /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** L_10 = ___lm2;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_11 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)((int32_t)24));
*((RuntimeObject **)L_10) = (RuntimeObject *)L_11;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_10, (void*)(RuntimeObject *)L_11);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_12 = V_0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** L_13 = ___lm2;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_14 = *((ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821**)L_13);
NullCheck((RuntimeArray *)(RuntimeArray *)L_12);
Array_CopyTo_m455300D414FFB0EBFE53EA4E8BBD31532006EBB7((RuntimeArray *)(RuntimeArray *)L_12, (RuntimeArray *)(RuntimeArray *)L_14, 0, /*hidden argument*/NULL);
MD5_tCED753745572EC20FE5D31D15F132736B5343EE6 * L_15 = MD5_Create_m87EB14601AD6AF168032C29DA938E18454CA05AE(/*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_16 = V_1;
NullCheck(L_15);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_17 = HashAlgorithm_ComputeHash_m18501D3068AEBEB5FA83EA72BE780E371DB0C122(L_15, L_16, /*hidden argument*/NULL);
V_2 = L_17;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_18 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)8);
V_3 = L_18;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_19 = V_2;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_20 = V_3;
Array_Copy_m2D96731C600DE8A167348CA8BA796344E64F7434((RuntimeArray *)(RuntimeArray *)L_19, (RuntimeArray *)(RuntimeArray *)L_20, 8, /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** L_21 = ___ntlm3;
String_t* L_22 = ___password0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_23 = V_3;
IL2CPP_RUNTIME_CLASS_INIT(ChallengeResponse2_t2F5817D7717011A7F4C0DE0015D144A2292CAD77_il2cpp_TypeInfo_var);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_24 = ChallengeResponse2_Compute_NTLM_mA1DCA878A3A7A5517DB8BB0F2BEDD29353573976(L_22, L_23, /*hidden argument*/NULL);
*((RuntimeObject **)L_21) = (RuntimeObject *)L_24;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_21, (void*)(RuntimeObject *)L_24);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_25 = V_0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_26 = V_0;
NullCheck(L_26);
Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E((RuntimeArray *)(RuntimeArray *)L_25, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_26)->max_length)))), /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_27 = V_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_28 = V_1;
NullCheck(L_28);
Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E((RuntimeArray *)(RuntimeArray *)L_27, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_28)->max_length)))), /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_29 = V_3;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_30 = V_3;
NullCheck(L_30);
Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E((RuntimeArray *)(RuntimeArray *)L_29, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_30)->max_length)))), /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_31 = V_2;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_32 = V_2;
NullCheck(L_32);
Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E((RuntimeArray *)(RuntimeArray *)L_31, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_32)->max_length)))), /*hidden argument*/NULL);
return;
}
}
// System.Byte[] Mono.Security.Protocol.Ntlm.ChallengeResponse2::Compute_NTLMv2(Mono.Security.Protocol.Ntlm.Type2Message,System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ChallengeResponse2_Compute_NTLMv2_mBCFF2DF7375AD035B98FC84253201D269201CE43 (Type2Message_t990283F48D41AECF1FFBDAA3A194CDE9C9078398 * ___type20, String_t* ___username1, String_t* ___password2, String_t* ___domain3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ChallengeResponse2_Compute_NTLMv2_mBCFF2DF7375AD035B98FC84253201D269201CE43_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_0 = NULL;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_1 = NULL;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_2 = NULL;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_3 = NULL;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_4 = NULL;
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 V_5;
memset((&V_5), 0, sizeof(V_5));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_6 = NULL;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_7 = NULL;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_8 = NULL;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_9 = NULL;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_10 = NULL;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_11 = NULL;
{
String_t* L_0 = ___password2;
IL2CPP_RUNTIME_CLASS_INIT(ChallengeResponse2_t2F5817D7717011A7F4C0DE0015D144A2292CAD77_il2cpp_TypeInfo_var);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = ChallengeResponse2_Compute_NTLM_Password_mD27D4A18DBD712B0E80B0F2A1CB296B353312C41(L_0, /*hidden argument*/NULL);
V_0 = L_1;
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_2 = Encoding_get_Unicode_m86CC470F70F9BB52DDB26721F0C0D6EDAFC318AA(/*hidden argument*/NULL);
String_t* L_3 = ___username1;
NullCheck(L_3);
String_t* L_4 = String_ToUpperInvariant_m0AA42416F4CACA4D0E3B89D97E534D88AB136338(L_3, /*hidden argument*/NULL);
NullCheck(L_2);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_5 = VirtFuncInvoker1< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, String_t* >::Invoke(18 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_2, L_4);
V_1 = L_5;
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_6 = Encoding_get_Unicode_m86CC470F70F9BB52DDB26721F0C0D6EDAFC318AA(/*hidden argument*/NULL);
String_t* L_7 = ___domain3;
NullCheck(L_6);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_8 = VirtFuncInvoker1< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, String_t* >::Invoke(18 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_6, L_7);
V_2 = L_8;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_9 = V_1;
NullCheck(L_9);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_10 = V_2;
NullCheck(L_10);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_11 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_add((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length)))), (int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_10)->max_length)))))));
V_3 = L_11;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_12 = V_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_13 = V_3;
NullCheck((RuntimeArray *)(RuntimeArray *)L_12);
Array_CopyTo_m455300D414FFB0EBFE53EA4E8BBD31532006EBB7((RuntimeArray *)(RuntimeArray *)L_12, (RuntimeArray *)(RuntimeArray *)L_13, 0, /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_14 = V_2;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_15 = V_3;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_16 = V_1;
NullCheck(L_16);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_17 = V_2;
NullCheck(L_17);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_14, 0, (RuntimeArray *)(RuntimeArray *)L_15, (((int32_t)((int32_t)(((RuntimeArray*)L_16)->max_length)))), (((int32_t)((int32_t)(((RuntimeArray*)L_17)->max_length)))), /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_18 = V_0;
HMACMD5_t8C6693E41EEA9BF26BBAF880B405CC170C43F11B * L_19 = (HMACMD5_t8C6693E41EEA9BF26BBAF880B405CC170C43F11B *)il2cpp_codegen_object_new(HMACMD5_t8C6693E41EEA9BF26BBAF880B405CC170C43F11B_il2cpp_TypeInfo_var);
HMACMD5__ctor_m246E639FCF66A7C0A443CF06F461A3C5C26EB6F9(L_19, L_18, /*hidden argument*/NULL);
HMACMD5_t8C6693E41EEA9BF26BBAF880B405CC170C43F11B * L_20 = L_19;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_21 = V_3;
NullCheck(L_20);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_22 = HashAlgorithm_ComputeHash_m18501D3068AEBEB5FA83EA72BE780E371DB0C122(L_20, L_21, /*hidden argument*/NULL);
V_4 = L_22;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_23 = V_0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_24 = V_0;
NullCheck(L_24);
Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E((RuntimeArray *)(RuntimeArray *)L_23, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_24)->max_length)))), /*hidden argument*/NULL);
NullCheck(L_20);
HashAlgorithm_Clear_m2E975EB7B42C1E241B24578CDF15AD41F35A5A8D(L_20, /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_25 = V_4;
HMACMD5_t8C6693E41EEA9BF26BBAF880B405CC170C43F11B * L_26 = (HMACMD5_t8C6693E41EEA9BF26BBAF880B405CC170C43F11B *)il2cpp_codegen_object_new(HMACMD5_t8C6693E41EEA9BF26BBAF880B405CC170C43F11B_il2cpp_TypeInfo_var);
HMACMD5__ctor_m246E639FCF66A7C0A443CF06F461A3C5C26EB6F9(L_26, L_25, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var);
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_27 = DateTime_get_Now_mB464D30F15C97069F92C1F910DCDDC3DFCC7F7D2(/*hidden argument*/NULL);
V_5 = L_27;
int64_t L_28 = DateTime_get_Ticks_mBCB529E43D065E498EAF08971D2EB49D5CB59D60((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_5), /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_29 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)8);
V_6 = L_29;
RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * L_30 = RandomNumberGenerator_Create_mB84B1BA538B29D0679F310D3B574A7D5BAA890C4(/*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_31 = V_6;
NullCheck(L_30);
VirtActionInvoker1< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(6 /* System.Void System.Security.Cryptography.RandomNumberGenerator::GetBytes(System.Byte[]) */, L_30, L_31);
Type2Message_t990283F48D41AECF1FFBDAA3A194CDE9C9078398 * L_32 = ___type20;
NullCheck(L_32);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_33 = Type2Message_get_TargetInfo_m5E0F0E5A6B32B7512393EDC2DFE9E8A6D79DB485(L_32, /*hidden argument*/NULL);
NullCheck(L_33);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_34 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)28), (int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_33)->max_length)))))));
V_7 = L_34;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_35 = V_7;
NullCheck(L_35);
(L_35)->SetAt(static_cast<il2cpp_array_size_t>(0), (uint8_t)1);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_36 = V_7;
NullCheck(L_36);
(L_36)->SetAt(static_cast<il2cpp_array_size_t>(1), (uint8_t)1);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_37 = BitConverterLE_GetBytes_m8B2BFEBCB4830C010E4572C925AE3C3A3CC14031(((int64_t)il2cpp_codegen_subtract((int64_t)L_28, (int64_t)((int64_t)504911232000000000LL))), /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_38 = V_7;
Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353((RuntimeArray *)(RuntimeArray *)L_37, 0, (RuntimeArray *)(RuntimeArray *)L_38, 8, 8, /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_39 = V_6;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_40 = V_7;
Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353((RuntimeArray *)(RuntimeArray *)L_39, 0, (RuntimeArray *)(RuntimeArray *)L_40, ((int32_t)16), 8, /*hidden argument*/NULL);
Type2Message_t990283F48D41AECF1FFBDAA3A194CDE9C9078398 * L_41 = ___type20;
NullCheck(L_41);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_42 = Type2Message_get_TargetInfo_m5E0F0E5A6B32B7512393EDC2DFE9E8A6D79DB485(L_41, /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_43 = V_7;
Type2Message_t990283F48D41AECF1FFBDAA3A194CDE9C9078398 * L_44 = ___type20;
NullCheck(L_44);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_45 = Type2Message_get_TargetInfo_m5E0F0E5A6B32B7512393EDC2DFE9E8A6D79DB485(L_44, /*hidden argument*/NULL);
NullCheck(L_45);
Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353((RuntimeArray *)(RuntimeArray *)L_42, 0, (RuntimeArray *)(RuntimeArray *)L_43, ((int32_t)28), (((int32_t)((int32_t)(((RuntimeArray*)L_45)->max_length)))), /*hidden argument*/NULL);
Type2Message_t990283F48D41AECF1FFBDAA3A194CDE9C9078398 * L_46 = ___type20;
NullCheck(L_46);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_47 = Type2Message_get_Nonce_mEE9D40B2B299766F6B789195174BC580BDAEB4E1(L_46, /*hidden argument*/NULL);
V_8 = L_47;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_48 = V_8;
NullCheck(L_48);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_49 = V_7;
NullCheck(L_49);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_50 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_add((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_48)->max_length)))), (int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_49)->max_length)))))));
V_9 = L_50;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_51 = V_8;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_52 = V_9;
NullCheck((RuntimeArray *)(RuntimeArray *)L_51);
Array_CopyTo_m455300D414FFB0EBFE53EA4E8BBD31532006EBB7((RuntimeArray *)(RuntimeArray *)L_51, (RuntimeArray *)(RuntimeArray *)L_52, 0, /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_53 = V_7;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_54 = V_9;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_55 = V_8;
NullCheck(L_55);
NullCheck((RuntimeArray *)(RuntimeArray *)L_53);
Array_CopyTo_m455300D414FFB0EBFE53EA4E8BBD31532006EBB7((RuntimeArray *)(RuntimeArray *)L_53, (RuntimeArray *)(RuntimeArray *)L_54, (((int32_t)((int32_t)(((RuntimeArray*)L_55)->max_length)))), /*hidden argument*/NULL);
HMACMD5_t8C6693E41EEA9BF26BBAF880B405CC170C43F11B * L_56 = L_26;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_57 = V_9;
NullCheck(L_56);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_58 = HashAlgorithm_ComputeHash_m18501D3068AEBEB5FA83EA72BE780E371DB0C122(L_56, L_57, /*hidden argument*/NULL);
V_10 = L_58;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_59 = V_7;
NullCheck(L_59);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_60 = V_10;
NullCheck(L_60);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_61 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_add((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_59)->max_length)))), (int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_60)->max_length)))))));
V_11 = L_61;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_62 = V_10;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_63 = V_11;
NullCheck((RuntimeArray *)(RuntimeArray *)L_62);
Array_CopyTo_m455300D414FFB0EBFE53EA4E8BBD31532006EBB7((RuntimeArray *)(RuntimeArray *)L_62, (RuntimeArray *)(RuntimeArray *)L_63, 0, /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_64 = V_7;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_65 = V_11;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_66 = V_10;
NullCheck(L_66);
NullCheck((RuntimeArray *)(RuntimeArray *)L_64);
Array_CopyTo_m455300D414FFB0EBFE53EA4E8BBD31532006EBB7((RuntimeArray *)(RuntimeArray *)L_64, (RuntimeArray *)(RuntimeArray *)L_65, (((int32_t)((int32_t)(((RuntimeArray*)L_66)->max_length)))), /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_67 = V_4;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_68 = V_4;
NullCheck(L_68);
Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E((RuntimeArray *)(RuntimeArray *)L_67, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_68)->max_length)))), /*hidden argument*/NULL);
NullCheck(L_56);
HashAlgorithm_Clear_m2E975EB7B42C1E241B24578CDF15AD41F35A5A8D(L_56, /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_69 = V_6;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_70 = V_6;
NullCheck(L_70);
Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E((RuntimeArray *)(RuntimeArray *)L_69, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_70)->max_length)))), /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_71 = V_7;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_72 = V_7;
NullCheck(L_72);
Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E((RuntimeArray *)(RuntimeArray *)L_71, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_72)->max_length)))), /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_73 = V_9;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_74 = V_9;
NullCheck(L_74);
Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E((RuntimeArray *)(RuntimeArray *)L_73, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_74)->max_length)))), /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_75 = V_10;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_76 = V_10;
NullCheck(L_76);
Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E((RuntimeArray *)(RuntimeArray *)L_75, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_76)->max_length)))), /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_77 = V_11;
return L_77;
}
}
// System.Void Mono.Security.Protocol.Ntlm.ChallengeResponse2::Compute(Mono.Security.Protocol.Ntlm.Type2Message,Mono.Security.Protocol.Ntlm.NtlmAuthLevel,System.String,System.String,System.String,System.Byte[]&,System.Byte[]&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ChallengeResponse2_Compute_mAA312CA925226C75A829516B6BDC2089840D389D (Type2Message_t990283F48D41AECF1FFBDAA3A194CDE9C9078398 * ___type20, int32_t ___level1, String_t* ___username2, String_t* ___password3, String_t* ___domain4, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** ___lm5, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** ___ntlm6, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ChallengeResponse2_Compute_mAA312CA925226C75A829516B6BDC2089840D389D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** L_0 = ___lm5;
*((RuntimeObject **)L_0) = (RuntimeObject *)NULL;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_0, (void*)(RuntimeObject *)NULL);
int32_t L_1 = ___level1;
switch (L_1)
{
case 0:
{
goto IL_001c;
}
case 1:
{
goto IL_003b;
}
case 2:
{
goto IL_005a;
}
case 3:
{
goto IL_0089;
}
}
}
{
goto IL_0097;
}
IL_001c:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** L_2 = ___lm5;
String_t* L_3 = ___password3;
Type2Message_t990283F48D41AECF1FFBDAA3A194CDE9C9078398 * L_4 = ___type20;
NullCheck(L_4);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_5 = Type2Message_get_Nonce_mEE9D40B2B299766F6B789195174BC580BDAEB4E1(L_4, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(ChallengeResponse2_t2F5817D7717011A7F4C0DE0015D144A2292CAD77_il2cpp_TypeInfo_var);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_6 = ChallengeResponse2_Compute_LM_m3A1F9371E4F1E41B044787FFB3BE985E92A3AC22(L_3, L_5, /*hidden argument*/NULL);
*((RuntimeObject **)L_2) = (RuntimeObject *)L_6;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_2, (void*)(RuntimeObject *)L_6);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** L_7 = ___ntlm6;
String_t* L_8 = ___password3;
Type2Message_t990283F48D41AECF1FFBDAA3A194CDE9C9078398 * L_9 = ___type20;
NullCheck(L_9);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_10 = Type2Message_get_Nonce_mEE9D40B2B299766F6B789195174BC580BDAEB4E1(L_9, /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_11 = ChallengeResponse2_Compute_NTLM_mA1DCA878A3A7A5517DB8BB0F2BEDD29353573976(L_8, L_10, /*hidden argument*/NULL);
*((RuntimeObject **)L_7) = (RuntimeObject *)L_11;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_7, (void*)(RuntimeObject *)L_11);
return;
}
IL_003b:
{
Type2Message_t990283F48D41AECF1FFBDAA3A194CDE9C9078398 * L_12 = ___type20;
NullCheck(L_12);
int32_t L_13 = MessageBase_get_Flags_m226EB26B3AB8C91ADA936E7B45CC8968D0F4CA9E_inline(L_12, /*hidden argument*/NULL);
if (!((int32_t)((int32_t)L_13&(int32_t)((int32_t)524288))))
{
goto IL_001c;
}
}
{
String_t* L_14 = ___password3;
Type2Message_t990283F48D41AECF1FFBDAA3A194CDE9C9078398 * L_15 = ___type20;
NullCheck(L_15);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_16 = Type2Message_get_Nonce_mEE9D40B2B299766F6B789195174BC580BDAEB4E1(L_15, /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** L_17 = ___lm5;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** L_18 = ___ntlm6;
IL2CPP_RUNTIME_CLASS_INIT(ChallengeResponse2_t2F5817D7717011A7F4C0DE0015D144A2292CAD77_il2cpp_TypeInfo_var);
ChallengeResponse2_Compute_NTLMv2_Session_mFB6537BF7FC8D9D7CCE55BFCDF6A7C371460E296(L_14, L_16, (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821**)L_17, (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821**)L_18, /*hidden argument*/NULL);
return;
}
IL_005a:
{
Type2Message_t990283F48D41AECF1FFBDAA3A194CDE9C9078398 * L_19 = ___type20;
NullCheck(L_19);
int32_t L_20 = MessageBase_get_Flags_m226EB26B3AB8C91ADA936E7B45CC8968D0F4CA9E_inline(L_19, /*hidden argument*/NULL);
if (!((int32_t)((int32_t)L_20&(int32_t)((int32_t)524288))))
{
goto IL_0079;
}
}
{
String_t* L_21 = ___password3;
Type2Message_t990283F48D41AECF1FFBDAA3A194CDE9C9078398 * L_22 = ___type20;
NullCheck(L_22);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_23 = Type2Message_get_Nonce_mEE9D40B2B299766F6B789195174BC580BDAEB4E1(L_22, /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** L_24 = ___lm5;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** L_25 = ___ntlm6;
IL2CPP_RUNTIME_CLASS_INIT(ChallengeResponse2_t2F5817D7717011A7F4C0DE0015D144A2292CAD77_il2cpp_TypeInfo_var);
ChallengeResponse2_Compute_NTLMv2_Session_mFB6537BF7FC8D9D7CCE55BFCDF6A7C371460E296(L_21, L_23, (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821**)L_24, (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821**)L_25, /*hidden argument*/NULL);
return;
}
IL_0079:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** L_26 = ___ntlm6;
String_t* L_27 = ___password3;
Type2Message_t990283F48D41AECF1FFBDAA3A194CDE9C9078398 * L_28 = ___type20;
NullCheck(L_28);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_29 = Type2Message_get_Nonce_mEE9D40B2B299766F6B789195174BC580BDAEB4E1(L_28, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(ChallengeResponse2_t2F5817D7717011A7F4C0DE0015D144A2292CAD77_il2cpp_TypeInfo_var);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_30 = ChallengeResponse2_Compute_NTLM_mA1DCA878A3A7A5517DB8BB0F2BEDD29353573976(L_27, L_29, /*hidden argument*/NULL);
*((RuntimeObject **)L_26) = (RuntimeObject *)L_30;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_26, (void*)(RuntimeObject *)L_30);
return;
}
IL_0089:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** L_31 = ___ntlm6;
Type2Message_t990283F48D41AECF1FFBDAA3A194CDE9C9078398 * L_32 = ___type20;
String_t* L_33 = ___username2;
String_t* L_34 = ___password3;
String_t* L_35 = ___domain4;
IL2CPP_RUNTIME_CLASS_INIT(ChallengeResponse2_t2F5817D7717011A7F4C0DE0015D144A2292CAD77_il2cpp_TypeInfo_var);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_36 = ChallengeResponse2_Compute_NTLMv2_mBCFF2DF7375AD035B98FC84253201D269201CE43(L_32, L_33, L_34, L_35, /*hidden argument*/NULL);
*((RuntimeObject **)L_31) = (RuntimeObject *)L_36;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_31, (void*)(RuntimeObject *)L_36);
return;
}
IL_0097:
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_37 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m1F94EA1226068BD1B7EAA1B836A59C99979F579E(L_37, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_37, NULL, ChallengeResponse2_Compute_mAA312CA925226C75A829516B6BDC2089840D389D_RuntimeMethod_var);
}
}
// System.Byte[] Mono.Security.Protocol.Ntlm.ChallengeResponse2::GetResponse(System.Byte[],System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ChallengeResponse2_GetResponse_mE39699CD2453921E373BF9768180993EDCD810E7 (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___challenge0, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___pwd1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ChallengeResponse2_GetResponse_mE39699CD2453921E373BF9768180993EDCD810E7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_0 = NULL;
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)((int32_t)24));
V_0 = L_0;
IL2CPP_RUNTIME_CLASS_INIT(DES_tFB993FE8AF9722A555B0737FE730332CCD86F6F0_il2cpp_TypeInfo_var);
DES_tFB993FE8AF9722A555B0737FE730332CCD86F6F0 * L_1 = DES_Create_m5EE267FBCD5AA18E04C29247C796430D12247CC5(/*hidden argument*/NULL);
DES_tFB993FE8AF9722A555B0737FE730332CCD86F6F0 * L_2 = L_1;
NullCheck(L_2);
VirtActionInvoker1< int32_t >::Invoke(17 /* System.Void System.Security.Cryptography.SymmetricAlgorithm::set_Mode(System.Security.Cryptography.CipherMode) */, L_2, 2);
DES_tFB993FE8AF9722A555B0737FE730332CCD86F6F0 * L_3 = L_2;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = ___pwd1;
IL2CPP_RUNTIME_CLASS_INIT(ChallengeResponse2_t2F5817D7717011A7F4C0DE0015D144A2292CAD77_il2cpp_TypeInfo_var);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_5 = ChallengeResponse2_PrepareDESKey_m428EF8F37B18E0B4FC5895BFF02A681740CF7608(L_4, 0, /*hidden argument*/NULL);
NullCheck(L_3);
VirtActionInvoker1< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(12 /* System.Void System.Security.Cryptography.SymmetricAlgorithm::set_Key(System.Byte[]) */, L_3, L_5);
DES_tFB993FE8AF9722A555B0737FE730332CCD86F6F0 * L_6 = L_3;
NullCheck(L_6);
RuntimeObject* L_7 = VirtFuncInvoker0< RuntimeObject* >::Invoke(20 /* System.Security.Cryptography.ICryptoTransform System.Security.Cryptography.SymmetricAlgorithm::CreateEncryptor() */, L_6);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_8 = ___challenge0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_9 = V_0;
NullCheck(L_7);
InterfaceFuncInvoker5< int32_t, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t >::Invoke(3 /* System.Int32 System.Security.Cryptography.ICryptoTransform::TransformBlock(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32) */, ICryptoTransform_t43C29A7F3A8C2DDAC9F3BF9BF739B03E4D5DE9A9_il2cpp_TypeInfo_var, L_7, L_8, 0, 8, L_9, 0);
DES_tFB993FE8AF9722A555B0737FE730332CCD86F6F0 * L_10 = L_6;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_11 = ___pwd1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_12 = ChallengeResponse2_PrepareDESKey_m428EF8F37B18E0B4FC5895BFF02A681740CF7608(L_11, 7, /*hidden argument*/NULL);
NullCheck(L_10);
VirtActionInvoker1< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(12 /* System.Void System.Security.Cryptography.SymmetricAlgorithm::set_Key(System.Byte[]) */, L_10, L_12);
DES_tFB993FE8AF9722A555B0737FE730332CCD86F6F0 * L_13 = L_10;
NullCheck(L_13);
RuntimeObject* L_14 = VirtFuncInvoker0< RuntimeObject* >::Invoke(20 /* System.Security.Cryptography.ICryptoTransform System.Security.Cryptography.SymmetricAlgorithm::CreateEncryptor() */, L_13);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_15 = ___challenge0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_16 = V_0;
NullCheck(L_14);
InterfaceFuncInvoker5< int32_t, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t >::Invoke(3 /* System.Int32 System.Security.Cryptography.ICryptoTransform::TransformBlock(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32) */, ICryptoTransform_t43C29A7F3A8C2DDAC9F3BF9BF739B03E4D5DE9A9_il2cpp_TypeInfo_var, L_14, L_15, 0, 8, L_16, 8);
DES_tFB993FE8AF9722A555B0737FE730332CCD86F6F0 * L_17 = L_13;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_18 = ___pwd1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_19 = ChallengeResponse2_PrepareDESKey_m428EF8F37B18E0B4FC5895BFF02A681740CF7608(L_18, ((int32_t)14), /*hidden argument*/NULL);
NullCheck(L_17);
VirtActionInvoker1< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(12 /* System.Void System.Security.Cryptography.SymmetricAlgorithm::set_Key(System.Byte[]) */, L_17, L_19);
NullCheck(L_17);
RuntimeObject* L_20 = VirtFuncInvoker0< RuntimeObject* >::Invoke(20 /* System.Security.Cryptography.ICryptoTransform System.Security.Cryptography.SymmetricAlgorithm::CreateEncryptor() */, L_17);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_21 = ___challenge0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_22 = V_0;
NullCheck(L_20);
InterfaceFuncInvoker5< int32_t, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t >::Invoke(3 /* System.Int32 System.Security.Cryptography.ICryptoTransform::TransformBlock(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32) */, ICryptoTransform_t43C29A7F3A8C2DDAC9F3BF9BF739B03E4D5DE9A9_il2cpp_TypeInfo_var, L_20, L_21, 0, 8, L_22, ((int32_t)16));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_23 = V_0;
return L_23;
}
}
// System.Byte[] Mono.Security.Protocol.Ntlm.ChallengeResponse2::PrepareDESKey(System.Byte[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ChallengeResponse2_PrepareDESKey_m428EF8F37B18E0B4FC5895BFF02A681740CF7608 (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___key56bits0, int32_t ___position1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ChallengeResponse2_PrepareDESKey_m428EF8F37B18E0B4FC5895BFF02A681740CF7608_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)8);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = L_0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = ___key56bits0;
int32_t L_3 = ___position1;
NullCheck(L_2);
int32_t L_4 = L_3;
uint8_t L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
NullCheck(L_1);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (uint8_t)L_5);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_6 = L_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_7 = ___key56bits0;
int32_t L_8 = ___position1;
NullCheck(L_7);
int32_t L_9 = L_8;
uint8_t L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_11 = ___key56bits0;
int32_t L_12 = ___position1;
NullCheck(L_11);
int32_t L_13 = ((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1));
uint8_t L_14 = (L_11)->GetAt(static_cast<il2cpp_array_size_t>(L_13));
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(1), (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)((int32_t)((int32_t)L_10<<(int32_t)7))|(int32_t)((int32_t)((int32_t)L_14>>(int32_t)1))))))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_15 = L_6;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_16 = ___key56bits0;
int32_t L_17 = ___position1;
NullCheck(L_16);
int32_t L_18 = ((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1));
uint8_t L_19 = (L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_18));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_20 = ___key56bits0;
int32_t L_21 = ___position1;
NullCheck(L_20);
int32_t L_22 = ((int32_t)il2cpp_codegen_add((int32_t)L_21, (int32_t)2));
uint8_t L_23 = (L_20)->GetAt(static_cast<il2cpp_array_size_t>(L_22));
NullCheck(L_15);
(L_15)->SetAt(static_cast<il2cpp_array_size_t>(2), (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)((int32_t)((int32_t)L_19<<(int32_t)6))|(int32_t)((int32_t)((int32_t)L_23>>(int32_t)2))))))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_24 = L_15;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_25 = ___key56bits0;
int32_t L_26 = ___position1;
NullCheck(L_25);
int32_t L_27 = ((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)2));
uint8_t L_28 = (L_25)->GetAt(static_cast<il2cpp_array_size_t>(L_27));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_29 = ___key56bits0;
int32_t L_30 = ___position1;
NullCheck(L_29);
int32_t L_31 = ((int32_t)il2cpp_codegen_add((int32_t)L_30, (int32_t)3));
uint8_t L_32 = (L_29)->GetAt(static_cast<il2cpp_array_size_t>(L_31));
NullCheck(L_24);
(L_24)->SetAt(static_cast<il2cpp_array_size_t>(3), (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)((int32_t)((int32_t)L_28<<(int32_t)5))|(int32_t)((int32_t)((int32_t)L_32>>(int32_t)3))))))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_33 = L_24;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_34 = ___key56bits0;
int32_t L_35 = ___position1;
NullCheck(L_34);
int32_t L_36 = ((int32_t)il2cpp_codegen_add((int32_t)L_35, (int32_t)3));
uint8_t L_37 = (L_34)->GetAt(static_cast<il2cpp_array_size_t>(L_36));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_38 = ___key56bits0;
int32_t L_39 = ___position1;
NullCheck(L_38);
int32_t L_40 = ((int32_t)il2cpp_codegen_add((int32_t)L_39, (int32_t)4));
uint8_t L_41 = (L_38)->GetAt(static_cast<il2cpp_array_size_t>(L_40));
NullCheck(L_33);
(L_33)->SetAt(static_cast<il2cpp_array_size_t>(4), (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)((int32_t)((int32_t)L_37<<(int32_t)4))|(int32_t)((int32_t)((int32_t)L_41>>(int32_t)4))))))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_42 = L_33;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_43 = ___key56bits0;
int32_t L_44 = ___position1;
NullCheck(L_43);
int32_t L_45 = ((int32_t)il2cpp_codegen_add((int32_t)L_44, (int32_t)4));
uint8_t L_46 = (L_43)->GetAt(static_cast<il2cpp_array_size_t>(L_45));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_47 = ___key56bits0;
int32_t L_48 = ___position1;
NullCheck(L_47);
int32_t L_49 = ((int32_t)il2cpp_codegen_add((int32_t)L_48, (int32_t)5));
uint8_t L_50 = (L_47)->GetAt(static_cast<il2cpp_array_size_t>(L_49));
NullCheck(L_42);
(L_42)->SetAt(static_cast<il2cpp_array_size_t>(5), (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)((int32_t)((int32_t)L_46<<(int32_t)3))|(int32_t)((int32_t)((int32_t)L_50>>(int32_t)5))))))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_51 = L_42;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_52 = ___key56bits0;
int32_t L_53 = ___position1;
NullCheck(L_52);
int32_t L_54 = ((int32_t)il2cpp_codegen_add((int32_t)L_53, (int32_t)5));
uint8_t L_55 = (L_52)->GetAt(static_cast<il2cpp_array_size_t>(L_54));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_56 = ___key56bits0;
int32_t L_57 = ___position1;
NullCheck(L_56);
int32_t L_58 = ((int32_t)il2cpp_codegen_add((int32_t)L_57, (int32_t)6));
uint8_t L_59 = (L_56)->GetAt(static_cast<il2cpp_array_size_t>(L_58));
NullCheck(L_51);
(L_51)->SetAt(static_cast<il2cpp_array_size_t>(6), (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)((int32_t)((int32_t)L_55<<(int32_t)2))|(int32_t)((int32_t)((int32_t)L_59>>(int32_t)6))))))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_60 = L_51;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_61 = ___key56bits0;
int32_t L_62 = ___position1;
NullCheck(L_61);
int32_t L_63 = ((int32_t)il2cpp_codegen_add((int32_t)L_62, (int32_t)6));
uint8_t L_64 = (L_61)->GetAt(static_cast<il2cpp_array_size_t>(L_63));
NullCheck(L_60);
(L_60)->SetAt(static_cast<il2cpp_array_size_t>(7), (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)L_64<<(int32_t)1))))));
return L_60;
}
}
// System.Byte[] Mono.Security.Protocol.Ntlm.ChallengeResponse2::PasswordToKey(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ChallengeResponse2_PasswordToKey_m2871E605818DF2DE4BC5B1B163831BA8F64006D8 (String_t* ___password0, int32_t ___position1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ChallengeResponse2_PasswordToKey_m2871E605818DF2DE4BC5B1B163831BA8F64006D8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_0 = NULL;
int32_t V_1 = 0;
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)7);
V_0 = L_0;
String_t* L_1 = ___password0;
NullCheck(L_1);
int32_t L_2 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_1, /*hidden argument*/NULL);
int32_t L_3 = ___position1;
IL2CPP_RUNTIME_CLASS_INIT(Math_tFB388E53C7FDC6FCCF9A19ABF5A4E521FBD52E19_il2cpp_TypeInfo_var);
int32_t L_4 = Math_Min_mC950438198519FB2B0260FCB91220847EE4BB525(((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)L_3)), 7, /*hidden argument*/NULL);
V_1 = L_4;
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_5 = Encoding_get_ASCII_m9B673AE3152AB04D07CADE6E5E142C785B5BC94E(/*hidden argument*/NULL);
String_t* L_6 = ___password0;
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_7 = CultureInfo_get_CurrentCulture_mD86F3D8E5D332FB304F80D9B9CA4DE849C2A6831(/*hidden argument*/NULL);
NullCheck(L_6);
String_t* L_8 = String_ToUpper_m8C69D974350ABA8BA0BC3A66996004CCEFD64293(L_6, L_7, /*hidden argument*/NULL);
int32_t L_9 = ___position1;
int32_t L_10 = V_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_11 = V_0;
NullCheck(L_5);
VirtFuncInvoker5< int32_t, String_t*, int32_t, int32_t, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t >::Invoke(19 /* System.Int32 System.Text.Encoding::GetBytes(System.String,System.Int32,System.Int32,System.Byte[],System.Int32) */, L_5, L_8, L_9, L_10, L_11, 0);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_12 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(ChallengeResponse2_t2F5817D7717011A7F4C0DE0015D144A2292CAD77_il2cpp_TypeInfo_var);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_13 = ChallengeResponse2_PrepareDESKey_m428EF8F37B18E0B4FC5895BFF02A681740CF7608(L_12, 0, /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_14 = V_0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_15 = V_0;
NullCheck(L_15);
Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E((RuntimeArray *)(RuntimeArray *)L_14, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_15)->max_length)))), /*hidden argument*/NULL);
return L_13;
}
}
// System.Void Mono.Security.Protocol.Ntlm.ChallengeResponse2::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ChallengeResponse2__cctor_mCF5C3FE5989C7BB7777C3BAADD67E9F8576A8C23 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ChallengeResponse2__cctor_mCF5C3FE5989C7BB7777C3BAADD67E9F8576A8C23_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)8);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = L_0;
RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_2 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_tF21437707AFAA06797AEDEE07C84D4D3CC2837FA____AEA5F1CC5CFE1660539EDD691FE017F775F63A0D_19_FieldInfo_var) };
RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_1, L_2, /*hidden argument*/NULL);
((ChallengeResponse2_t2F5817D7717011A7F4C0DE0015D144A2292CAD77_StaticFields*)il2cpp_codegen_static_fields_for(ChallengeResponse2_t2F5817D7717011A7F4C0DE0015D144A2292CAD77_il2cpp_TypeInfo_var))->set_magic_0(L_1);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)8);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = L_3;
RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_5 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_tF21437707AFAA06797AEDEE07C84D4D3CC2837FA____16968835DEF6DD3BB86EABA9DEC53BF41851CD6D_2_FieldInfo_var) };
RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_4, L_5, /*hidden argument*/NULL);
((ChallengeResponse2_t2F5817D7717011A7F4C0DE0015D144A2292CAD77_StaticFields*)il2cpp_codegen_static_fields_for(ChallengeResponse2_t2F5817D7717011A7F4C0DE0015D144A2292CAD77_il2cpp_TypeInfo_var))->set_nullEncMagic_1(L_4);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Mono.Security.Protocol.Ntlm.MessageBase::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MessageBase__ctor_m32BA1280CB1020E88C6EF6DFA9C3ABABF3B36E59 (MessageBase_t504D166CC4021DEB56DED308D5E82C67F47F26C0 * __this, int32_t ___messageType0, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
int32_t L_0 = ___messageType0;
__this->set__type_1(L_0);
return;
}
}
// Mono.Security.Protocol.Ntlm.NtlmFlags Mono.Security.Protocol.Ntlm.MessageBase::get_Flags()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MessageBase_get_Flags_m226EB26B3AB8C91ADA936E7B45CC8968D0F4CA9E (MessageBase_t504D166CC4021DEB56DED308D5E82C67F47F26C0 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get__flags_2();
return L_0;
}
}
// System.Void Mono.Security.Protocol.Ntlm.MessageBase::set_Flags(Mono.Security.Protocol.Ntlm.NtlmFlags)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MessageBase_set_Flags_m0E8B48A02DB678CB59A3D3274AE51418732C864C (MessageBase_t504D166CC4021DEB56DED308D5E82C67F47F26C0 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->set__flags_2(L_0);
return;
}
}
// System.Int32 Mono.Security.Protocol.Ntlm.MessageBase::get_Type()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MessageBase_get_Type_m0BE9BCC1FCC0E8DFF588F7F3A54AEDA76360C67C (MessageBase_t504D166CC4021DEB56DED308D5E82C67F47F26C0 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get__type_1();
return L_0;
}
}
// System.Byte[] Mono.Security.Protocol.Ntlm.MessageBase::PrepareMessage(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* MessageBase_PrepareMessage_m6B0C0C463C16D086924EC49DB07C3ADE95C11958 (MessageBase_t504D166CC4021DEB56DED308D5E82C67F47F26C0 * __this, int32_t ___messageSize0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MessageBase_PrepareMessage_m6B0C0C463C16D086924EC49DB07C3ADE95C11958_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_0 = NULL;
{
int32_t L_0 = ___messageSize0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)L_0);
V_0 = L_1;
IL2CPP_RUNTIME_CLASS_INIT(MessageBase_t504D166CC4021DEB56DED308D5E82C67F47F26C0_il2cpp_TypeInfo_var);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = ((MessageBase_t504D166CC4021DEB56DED308D5E82C67F47F26C0_StaticFields*)il2cpp_codegen_static_fields_for(MessageBase_t504D166CC4021DEB56DED308D5E82C67F47F26C0_il2cpp_TypeInfo_var))->get_header_0();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = V_0;
Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353((RuntimeArray *)(RuntimeArray *)L_2, 0, (RuntimeArray *)(RuntimeArray *)L_3, 0, 8, /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = V_0;
int32_t L_5 = __this->get__type_1();
NullCheck(L_4);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(8), (uint8_t)(((int32_t)((uint8_t)L_5))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_6 = V_0;
int32_t L_7 = __this->get__type_1();
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)9)), (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)L_7>>(int32_t)8))))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_8 = V_0;
int32_t L_9 = __this->get__type_1();
NullCheck(L_8);
(L_8)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)10)), (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)L_9>>(int32_t)((int32_t)16)))))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_10 = V_0;
int32_t L_11 = __this->get__type_1();
NullCheck(L_10);
(L_10)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)11)), (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)L_11>>(int32_t)((int32_t)24)))))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_12 = V_0;
return L_12;
}
}
// System.Void Mono.Security.Protocol.Ntlm.MessageBase::Decode(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MessageBase_Decode_m0994F2111010F3E105B94A83439BDBADA2E46537 (MessageBase_t504D166CC4021DEB56DED308D5E82C67F47F26C0 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___message0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MessageBase_Decode_m0994F2111010F3E105B94A83439BDBADA2E46537_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___message0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral6F9B9AF3CD6E8B8A73C2CDCED37FE9F59226E27D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, MessageBase_Decode_m0994F2111010F3E105B94A83439BDBADA2E46537_RuntimeMethod_var);
}
IL_000e:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = ___message0;
NullCheck(L_2);
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length))))) >= ((int32_t)((int32_t)12))))
{
goto IL_0034;
}
}
{
String_t* L_3 = Locale_GetText_m67B66557188C94648AA7A23F6A7501BE7D455ADA(_stringLiteral43C5083891C69B860FC78499995E820029745FE8, /*hidden argument*/NULL);
V_0 = L_3;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = ___message0;
NullCheck(L_4);
int32_t L_5 = (((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))));
RuntimeObject * L_6 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_5);
String_t* L_7 = V_0;
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_8 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m755B01B4B4595B447596E3281F22FD7CE6DAE378(L_8, _stringLiteral6F9B9AF3CD6E8B8A73C2CDCED37FE9F59226E27D, L_6, L_7, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, NULL, MessageBase_Decode_m0994F2111010F3E105B94A83439BDBADA2E46537_RuntimeMethod_var);
}
IL_0034:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_9 = ___message0;
bool L_10 = MessageBase_CheckHeader_m427014E264FA451B68062CFF8A1939DC3A04FB5A(__this, L_9, /*hidden argument*/NULL);
if (L_10)
{
goto IL_0062;
}
}
{
String_t* L_11 = Locale_GetText_m67B66557188C94648AA7A23F6A7501BE7D455ADA(_stringLiteralB8B0EDE7ABBF3F7F6738DC0C3F6D05656BAD431B, /*hidden argument*/NULL);
int32_t L_12 = __this->get__type_1();
int32_t L_13 = L_12;
RuntimeObject * L_14 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_13);
String_t* L_15 = String_Format_m0ACDD8B34764E4040AED0B3EEB753567E4576BFA(L_11, L_14, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_16 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_16, L_15, _stringLiteral6F9B9AF3CD6E8B8A73C2CDCED37FE9F59226E27D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_16, NULL, MessageBase_Decode_m0994F2111010F3E105B94A83439BDBADA2E46537_RuntimeMethod_var);
}
IL_0062:
{
return;
}
}
// System.Boolean Mono.Security.Protocol.Ntlm.MessageBase::CheckHeader(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MessageBase_CheckHeader_m427014E264FA451B68062CFF8A1939DC3A04FB5A (MessageBase_t504D166CC4021DEB56DED308D5E82C67F47F26C0 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___message0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MessageBase_CheckHeader_m427014E264FA451B68062CFF8A1939DC3A04FB5A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
V_0 = 0;
goto IL_0016;
}
IL_0004:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___message0;
int32_t L_1 = V_0;
NullCheck(L_0);
int32_t L_2 = L_1;
uint8_t L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
IL2CPP_RUNTIME_CLASS_INIT(MessageBase_t504D166CC4021DEB56DED308D5E82C67F47F26C0_il2cpp_TypeInfo_var);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = ((MessageBase_t504D166CC4021DEB56DED308D5E82C67F47F26C0_StaticFields*)il2cpp_codegen_static_fields_for(MessageBase_t504D166CC4021DEB56DED308D5E82C67F47F26C0_il2cpp_TypeInfo_var))->get_header_0();
int32_t L_5 = V_0;
NullCheck(L_4);
int32_t L_6 = L_5;
uint8_t L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
if ((((int32_t)L_3) == ((int32_t)L_7)))
{
goto IL_0012;
}
}
{
return (bool)0;
}
IL_0012:
{
int32_t L_8 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1));
}
IL_0016:
{
int32_t L_9 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(MessageBase_t504D166CC4021DEB56DED308D5E82C67F47F26C0_il2cpp_TypeInfo_var);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_10 = ((MessageBase_t504D166CC4021DEB56DED308D5E82C67F47F26C0_StaticFields*)il2cpp_codegen_static_fields_for(MessageBase_t504D166CC4021DEB56DED308D5E82C67F47F26C0_il2cpp_TypeInfo_var))->get_header_0();
NullCheck(L_10);
if ((((int32_t)L_9) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_10)->max_length)))))))
{
goto IL_0004;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_11 = ___message0;
uint32_t L_12 = BitConverterLE_ToUInt32_m898E287439DDB0A31E4E39FF83DD032B1C43FA26(L_11, 8, /*hidden argument*/NULL);
int32_t L_13 = __this->get__type_1();
return (bool)((((int64_t)(((int64_t)((uint64_t)L_12)))) == ((int64_t)(((int64_t)((int64_t)L_13)))))? 1 : 0);
}
}
// System.Void Mono.Security.Protocol.Ntlm.MessageBase::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MessageBase__cctor_m4DF505F352AB2529D7E6EE09E6B096C076663B0F (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MessageBase__cctor_m4DF505F352AB2529D7E6EE09E6B096C076663B0F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)8);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = L_0;
RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_2 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_tF21437707AFAA06797AEDEE07C84D4D3CC2837FA____6FA00AC9FFFD87F82A38A7F9ECC8134F4A7052AF_12_FieldInfo_var) };
RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_1, L_2, /*hidden argument*/NULL);
((MessageBase_t504D166CC4021DEB56DED308D5E82C67F47F26C0_StaticFields*)il2cpp_codegen_static_fields_for(MessageBase_t504D166CC4021DEB56DED308D5E82C67F47F26C0_il2cpp_TypeInfo_var))->set_header_0(L_1);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Protocol.Ntlm.NtlmAuthLevel Mono.Security.Protocol.Ntlm.NtlmSettings::get_DefaultAuthLevel()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NtlmSettings_get_DefaultAuthLevel_m98EDE4292136121773A45127209BD926E1CF141A (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NtlmSettings_get_DefaultAuthLevel_m98EDE4292136121773A45127209BD926E1CF141A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(NtlmSettings_tC673E811873A17EA73FCA0EFD6D33839B5036009_il2cpp_TypeInfo_var);
int32_t L_0 = ((NtlmSettings_tC673E811873A17EA73FCA0EFD6D33839B5036009_StaticFields*)il2cpp_codegen_static_fields_for(NtlmSettings_tC673E811873A17EA73FCA0EFD6D33839B5036009_il2cpp_TypeInfo_var))->get_defaultAuthLevel_0();
return L_0;
}
}
// System.Void Mono.Security.Protocol.Ntlm.NtlmSettings::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NtlmSettings__cctor_mCE3B588B6BFFB63D73ECA11941E875814A5CE9BB (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NtlmSettings__cctor_mCE3B588B6BFFB63D73ECA11941E875814A5CE9BB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
((NtlmSettings_tC673E811873A17EA73FCA0EFD6D33839B5036009_StaticFields*)il2cpp_codegen_static_fields_for(NtlmSettings_tC673E811873A17EA73FCA0EFD6D33839B5036009_il2cpp_TypeInfo_var))->set_defaultAuthLevel_0(1);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Mono.Security.Protocol.Ntlm.Type1Message::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Type1Message__ctor_mF11CFA44C4BF05765612B0D3CCBB4EBB433D7B23 (Type1Message_tF2DA0014BB300ABA864D84752FFA278EC6E6519C * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Type1Message__ctor_mF11CFA44C4BF05765612B0D3CCBB4EBB433D7B23_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(MessageBase_t504D166CC4021DEB56DED308D5E82C67F47F26C0_il2cpp_TypeInfo_var);
MessageBase__ctor_m32BA1280CB1020E88C6EF6DFA9C3ABABF3B36E59(__this, 1, /*hidden argument*/NULL);
String_t* L_0 = Environment_get_UserDomainName_mC55D253D7319CBE9030836E420FF9518921C3A52(/*hidden argument*/NULL);
__this->set__domain_4(L_0);
String_t* L_1 = Environment_get_MachineName_m0300D26C1A5348D90800793717D33B1F629AF10D(/*hidden argument*/NULL);
__this->set__host_3(L_1);
MessageBase_set_Flags_m0E8B48A02DB678CB59A3D3274AE51418732C864C_inline(__this, ((int32_t)45575), /*hidden argument*/NULL);
return;
}
}
// System.Void Mono.Security.Protocol.Ntlm.Type1Message::set_Domain(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Type1Message_set_Domain_m14675CA2220D6338E39DA862B822553AE6DCFD12 (Type1Message_tF2DA0014BB300ABA864D84752FFA278EC6E6519C * __this, String_t* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Type1Message_set_Domain_m14675CA2220D6338E39DA862B822553AE6DCFD12_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___value0;
if (L_0)
{
goto IL_000a;
}
}
{
___value0 = _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
}
IL_000a:
{
String_t* L_1 = ___value0;
bool L_2 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_1, _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709, /*hidden argument*/NULL);
if (!L_2)
{
goto IL_002b;
}
}
{
int32_t L_3 = MessageBase_get_Flags_m226EB26B3AB8C91ADA936E7B45CC8968D0F4CA9E_inline(__this, /*hidden argument*/NULL);
MessageBase_set_Flags_m0E8B48A02DB678CB59A3D3274AE51418732C864C_inline(__this, ((int32_t)((int32_t)L_3&(int32_t)((int32_t)-4097))), /*hidden argument*/NULL);
goto IL_003d;
}
IL_002b:
{
int32_t L_4 = MessageBase_get_Flags_m226EB26B3AB8C91ADA936E7B45CC8968D0F4CA9E_inline(__this, /*hidden argument*/NULL);
MessageBase_set_Flags_m0E8B48A02DB678CB59A3D3274AE51418732C864C_inline(__this, ((int32_t)((int32_t)L_4|(int32_t)((int32_t)4096))), /*hidden argument*/NULL);
}
IL_003d:
{
String_t* L_5 = ___value0;
__this->set__domain_4(L_5);
return;
}
}
// System.Void Mono.Security.Protocol.Ntlm.Type1Message::set_Host(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Type1Message_set_Host_mC0ADD586CC5A1F9FD5489AF1D8F14DF9AA4F2D68 (Type1Message_tF2DA0014BB300ABA864D84752FFA278EC6E6519C * __this, String_t* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Type1Message_set_Host_mC0ADD586CC5A1F9FD5489AF1D8F14DF9AA4F2D68_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___value0;
if (L_0)
{
goto IL_000a;
}
}
{
___value0 = _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
}
IL_000a:
{
String_t* L_1 = ___value0;
bool L_2 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_1, _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709, /*hidden argument*/NULL);
if (!L_2)
{
goto IL_002b;
}
}
{
int32_t L_3 = MessageBase_get_Flags_m226EB26B3AB8C91ADA936E7B45CC8968D0F4CA9E_inline(__this, /*hidden argument*/NULL);
MessageBase_set_Flags_m0E8B48A02DB678CB59A3D3274AE51418732C864C_inline(__this, ((int32_t)((int32_t)L_3&(int32_t)((int32_t)-8193))), /*hidden argument*/NULL);
goto IL_003d;
}
IL_002b:
{
int32_t L_4 = MessageBase_get_Flags_m226EB26B3AB8C91ADA936E7B45CC8968D0F4CA9E_inline(__this, /*hidden argument*/NULL);
MessageBase_set_Flags_m0E8B48A02DB678CB59A3D3274AE51418732C864C_inline(__this, ((int32_t)((int32_t)L_4|(int32_t)((int32_t)8192))), /*hidden argument*/NULL);
}
IL_003d:
{
String_t* L_5 = ___value0;
__this->set__host_3(L_5);
return;
}
}
// System.Void Mono.Security.Protocol.Ntlm.Type1Message::Decode(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Type1Message_Decode_mBDBDE9E060DFA07CC9A93D2491446B9411E5D2EC (Type1Message_tF2DA0014BB300ABA864D84752FFA278EC6E6519C * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___message0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___message0;
MessageBase_Decode_m0994F2111010F3E105B94A83439BDBADA2E46537(__this, L_0, /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = ___message0;
uint32_t L_2 = BitConverterLE_ToUInt32_m898E287439DDB0A31E4E39FF83DD032B1C43FA26(L_1, ((int32_t)12), /*hidden argument*/NULL);
MessageBase_set_Flags_m0E8B48A02DB678CB59A3D3274AE51418732C864C_inline(__this, L_2, /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = ___message0;
uint16_t L_4 = BitConverterLE_ToUInt16_mFC8811706681807666F91EE89A28ADF75DF6EFCC(L_3, ((int32_t)16), /*hidden argument*/NULL);
V_0 = L_4;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_5 = ___message0;
uint16_t L_6 = BitConverterLE_ToUInt16_mFC8811706681807666F91EE89A28ADF75DF6EFCC(L_5, ((int32_t)20), /*hidden argument*/NULL);
V_1 = L_6;
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_7 = Encoding_get_ASCII_m9B673AE3152AB04D07CADE6E5E142C785B5BC94E(/*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_8 = ___message0;
int32_t L_9 = V_1;
int32_t L_10 = V_0;
NullCheck(L_7);
String_t* L_11 = VirtFuncInvoker3< String_t*, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(35 /* System.String System.Text.Encoding::GetString(System.Byte[],System.Int32,System.Int32) */, L_7, L_8, L_9, L_10);
__this->set__domain_4(L_11);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_12 = ___message0;
uint16_t L_13 = BitConverterLE_ToUInt16_mFC8811706681807666F91EE89A28ADF75DF6EFCC(L_12, ((int32_t)24), /*hidden argument*/NULL);
V_2 = L_13;
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_14 = Encoding_get_ASCII_m9B673AE3152AB04D07CADE6E5E142C785B5BC94E(/*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_15 = ___message0;
int32_t L_16 = V_2;
NullCheck(L_14);
String_t* L_17 = VirtFuncInvoker3< String_t*, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(35 /* System.String System.Text.Encoding::GetString(System.Byte[],System.Int32,System.Int32) */, L_14, L_15, ((int32_t)32), L_16);
__this->set__host_3(L_17);
return;
}
}
// System.Byte[] Mono.Security.Protocol.Ntlm.Type1Message::GetBytes()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* Type1Message_GetBytes_m5705CD87750C73B44B8700A02FF0E4C2DE294C9E (Type1Message_tF2DA0014BB300ABA864D84752FFA278EC6E6519C * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Type1Message_GetBytes_m5705CD87750C73B44B8700A02FF0E4C2DE294C9E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int16_t V_0 = 0;
int16_t V_1 = 0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_2 = NULL;
int16_t V_3 = 0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_4 = NULL;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_5 = NULL;
{
String_t* L_0 = __this->get__domain_4();
NullCheck(L_0);
int32_t L_1 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_0, /*hidden argument*/NULL);
V_0 = (((int16_t)((int16_t)L_1)));
String_t* L_2 = __this->get__host_3();
NullCheck(L_2);
int32_t L_3 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_2, /*hidden argument*/NULL);
V_1 = (((int16_t)((int16_t)L_3)));
int16_t L_4 = V_0;
int16_t L_5 = V_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_6 = MessageBase_PrepareMessage_m6B0C0C463C16D086924EC49DB07C3ADE95C11958(__this, ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)32), (int32_t)L_4)), (int32_t)L_5)), /*hidden argument*/NULL);
V_2 = L_6;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_7 = V_2;
int32_t L_8 = MessageBase_get_Flags_m226EB26B3AB8C91ADA936E7B45CC8968D0F4CA9E_inline(__this, /*hidden argument*/NULL);
NullCheck(L_7);
(L_7)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)12)), (uint8_t)(((int32_t)((uint8_t)L_8))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_9 = V_2;
int32_t L_10 = MessageBase_get_Flags_m226EB26B3AB8C91ADA936E7B45CC8968D0F4CA9E_inline(__this, /*hidden argument*/NULL);
NullCheck(L_9);
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)13)), (uint8_t)(((int32_t)((uint8_t)((int32_t)((uint32_t)L_10>>8))))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_11 = V_2;
int32_t L_12 = MessageBase_get_Flags_m226EB26B3AB8C91ADA936E7B45CC8968D0F4CA9E_inline(__this, /*hidden argument*/NULL);
NullCheck(L_11);
(L_11)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)14)), (uint8_t)(((int32_t)((uint8_t)((int32_t)((uint32_t)L_12>>((int32_t)16)))))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_13 = V_2;
int32_t L_14 = MessageBase_get_Flags_m226EB26B3AB8C91ADA936E7B45CC8968D0F4CA9E_inline(__this, /*hidden argument*/NULL);
NullCheck(L_13);
(L_13)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)15)), (uint8_t)(((int32_t)((uint8_t)((int32_t)((uint32_t)L_14>>((int32_t)24)))))));
int16_t L_15 = V_1;
V_3 = (((int16_t)((int16_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)32), (int32_t)L_15)))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_16 = V_2;
int16_t L_17 = V_0;
NullCheck(L_16);
(L_16)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)16)), (uint8_t)(((int32_t)((uint8_t)L_17))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_18 = V_2;
int16_t L_19 = V_0;
NullCheck(L_18);
(L_18)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)17)), (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)L_19>>(int32_t)8))))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_20 = V_2;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_21 = V_2;
NullCheck(L_21);
int32_t L_22 = ((int32_t)16);
uint8_t L_23 = (L_21)->GetAt(static_cast<il2cpp_array_size_t>(L_22));
NullCheck(L_20);
(L_20)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)18)), (uint8_t)L_23);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_24 = V_2;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_25 = V_2;
NullCheck(L_25);
int32_t L_26 = ((int32_t)17);
uint8_t L_27 = (L_25)->GetAt(static_cast<il2cpp_array_size_t>(L_26));
NullCheck(L_24);
(L_24)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)19)), (uint8_t)L_27);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_28 = V_2;
int16_t L_29 = V_3;
NullCheck(L_28);
(L_28)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)20)), (uint8_t)(((int32_t)((uint8_t)L_29))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_30 = V_2;
int16_t L_31 = V_3;
NullCheck(L_30);
(L_30)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)21)), (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)L_31>>(int32_t)8))))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_32 = V_2;
int16_t L_33 = V_1;
NullCheck(L_32);
(L_32)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)24)), (uint8_t)(((int32_t)((uint8_t)L_33))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_34 = V_2;
int16_t L_35 = V_1;
NullCheck(L_34);
(L_34)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)25)), (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)L_35>>(int32_t)8))))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_36 = V_2;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_37 = V_2;
NullCheck(L_37);
int32_t L_38 = ((int32_t)24);
uint8_t L_39 = (L_37)->GetAt(static_cast<il2cpp_array_size_t>(L_38));
NullCheck(L_36);
(L_36)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)26)), (uint8_t)L_39);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_40 = V_2;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_41 = V_2;
NullCheck(L_41);
int32_t L_42 = ((int32_t)25);
uint8_t L_43 = (L_41)->GetAt(static_cast<il2cpp_array_size_t>(L_42));
NullCheck(L_40);
(L_40)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)27)), (uint8_t)L_43);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_44 = V_2;
NullCheck(L_44);
(L_44)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)28)), (uint8_t)((int32_t)32));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_45 = V_2;
NullCheck(L_45);
(L_45)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)29)), (uint8_t)0);
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_46 = Encoding_get_ASCII_m9B673AE3152AB04D07CADE6E5E142C785B5BC94E(/*hidden argument*/NULL);
String_t* L_47 = __this->get__host_3();
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_48 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
NullCheck(L_47);
String_t* L_49 = String_ToUpper_m8C69D974350ABA8BA0BC3A66996004CCEFD64293(L_47, L_48, /*hidden argument*/NULL);
NullCheck(L_46);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_50 = VirtFuncInvoker1< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, String_t* >::Invoke(18 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_46, L_49);
V_4 = L_50;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_51 = V_4;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_52 = V_2;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_53 = V_4;
NullCheck(L_53);
Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353((RuntimeArray *)(RuntimeArray *)L_51, 0, (RuntimeArray *)(RuntimeArray *)L_52, ((int32_t)32), (((int32_t)((int32_t)(((RuntimeArray*)L_53)->max_length)))), /*hidden argument*/NULL);
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_54 = Encoding_get_ASCII_m9B673AE3152AB04D07CADE6E5E142C785B5BC94E(/*hidden argument*/NULL);
String_t* L_55 = __this->get__domain_4();
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_56 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
NullCheck(L_55);
String_t* L_57 = String_ToUpper_m8C69D974350ABA8BA0BC3A66996004CCEFD64293(L_55, L_56, /*hidden argument*/NULL);
NullCheck(L_54);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_58 = VirtFuncInvoker1< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, String_t* >::Invoke(18 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_54, L_57);
V_5 = L_58;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_59 = V_5;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_60 = V_2;
int16_t L_61 = V_3;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_62 = V_5;
NullCheck(L_62);
Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353((RuntimeArray *)(RuntimeArray *)L_59, 0, (RuntimeArray *)(RuntimeArray *)L_60, L_61, (((int32_t)((int32_t)(((RuntimeArray*)L_62)->max_length)))), /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_63 = V_2;
return L_63;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Mono.Security.Protocol.Ntlm.Type2Message::.ctor(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Type2Message__ctor_m85E73F15F691FC25B93503B84B24D25805B5FBD9 (Type2Message_t990283F48D41AECF1FFBDAA3A194CDE9C9078398 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___message0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Type2Message__ctor_m85E73F15F691FC25B93503B84B24D25805B5FBD9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(MessageBase_t504D166CC4021DEB56DED308D5E82C67F47F26C0_il2cpp_TypeInfo_var);
MessageBase__ctor_m32BA1280CB1020E88C6EF6DFA9C3ABABF3B36E59(__this, 2, /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)8);
__this->set__nonce_3(L_0);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = ___message0;
VirtActionInvoker1< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(4 /* System.Void Mono.Security.Protocol.Ntlm.MessageBase::Decode(System.Byte[]) */, __this, L_1);
return;
}
}
// System.Void Mono.Security.Protocol.Ntlm.Type2Message::Finalize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Type2Message_Finalize_mD48F7AD79A227C07BA7A47B4056D0BA1FD785CAA (Type2Message_t990283F48D41AECF1FFBDAA3A194CDE9C9078398 * __this, const RuntimeMethod* method)
{
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
IL_0000:
try
{ // begin try (depth: 1)
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = __this->get__nonce_3();
if (!L_0)
{
goto IL_001c;
}
}
IL_0008:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = __this->get__nonce_3();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = __this->get__nonce_3();
NullCheck(L_2);
Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E((RuntimeArray *)(RuntimeArray *)L_1, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length)))), /*hidden argument*/NULL);
}
IL_001c:
{
IL2CPP_LEAVE(0x25, FINALLY_001e);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_001e;
}
FINALLY_001e:
{ // begin finally (depth: 1)
Object_Finalize_m4015B7D3A44DE125C5FE34D7276CD4697C06F380(__this, /*hidden argument*/NULL);
IL2CPP_END_FINALLY(30)
} // end finally (depth: 1)
IL2CPP_CLEANUP(30)
{
IL2CPP_JUMP_TBL(0x25, IL_0025)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0025:
{
return;
}
}
// System.Byte[] Mono.Security.Protocol.Ntlm.Type2Message::get_Nonce()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* Type2Message_get_Nonce_mEE9D40B2B299766F6B789195174BC580BDAEB4E1 (Type2Message_t990283F48D41AECF1FFBDAA3A194CDE9C9078398 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Type2Message_get_Nonce_mEE9D40B2B299766F6B789195174BC580BDAEB4E1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = __this->get__nonce_3();
NullCheck((RuntimeArray *)(RuntimeArray *)L_0);
RuntimeObject * L_1 = Array_Clone_mE8C710213E323617A6F46F2B36DCDDD4C7CF5176((RuntimeArray *)(RuntimeArray *)L_0, /*hidden argument*/NULL);
return ((ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)Castclass((RuntimeObject*)L_1, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var));
}
}
// System.String Mono.Security.Protocol.Ntlm.Type2Message::get_TargetName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Type2Message_get_TargetName_m3B65DC156E863BC78E674D0D1BEF653B25F53B7D (Type2Message_t990283F48D41AECF1FFBDAA3A194CDE9C9078398 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get__targetName_4();
return L_0;
}
}
// System.Byte[] Mono.Security.Protocol.Ntlm.Type2Message::get_TargetInfo()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* Type2Message_get_TargetInfo_m5E0F0E5A6B32B7512393EDC2DFE9E8A6D79DB485 (Type2Message_t990283F48D41AECF1FFBDAA3A194CDE9C9078398 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Type2Message_get_TargetInfo_m5E0F0E5A6B32B7512393EDC2DFE9E8A6D79DB485_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = __this->get__targetInfo_5();
NullCheck((RuntimeArray *)(RuntimeArray *)L_0);
RuntimeObject * L_1 = Array_Clone_mE8C710213E323617A6F46F2B36DCDDD4C7CF5176((RuntimeArray *)(RuntimeArray *)L_0, /*hidden argument*/NULL);
return ((ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)Castclass((RuntimeObject*)L_1, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var));
}
}
// System.Void Mono.Security.Protocol.Ntlm.Type2Message::Decode(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Type2Message_Decode_m480774BBEA24F18E5C8765273C8DD6A641D9E441 (Type2Message_t990283F48D41AECF1FFBDAA3A194CDE9C9078398 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___message0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Type2Message_Decode_m480774BBEA24F18E5C8765273C8DD6A641D9E441_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint16_t V_0 = 0;
uint16_t V_1 = 0;
uint16_t V_2 = 0;
uint16_t V_3 = 0;
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___message0;
MessageBase_Decode_m0994F2111010F3E105B94A83439BDBADA2E46537(__this, L_0, /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = ___message0;
uint32_t L_2 = BitConverterLE_ToUInt32_m898E287439DDB0A31E4E39FF83DD032B1C43FA26(L_1, ((int32_t)20), /*hidden argument*/NULL);
MessageBase_set_Flags_m0E8B48A02DB678CB59A3D3274AE51418732C864C_inline(__this, L_2, /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = ___message0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = __this->get__nonce_3();
Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353((RuntimeArray *)(RuntimeArray *)L_3, ((int32_t)24), (RuntimeArray *)(RuntimeArray *)L_4, 0, 8, /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_5 = ___message0;
uint16_t L_6 = BitConverterLE_ToUInt16_mFC8811706681807666F91EE89A28ADF75DF6EFCC(L_5, ((int32_t)12), /*hidden argument*/NULL);
V_0 = L_6;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_7 = ___message0;
uint16_t L_8 = BitConverterLE_ToUInt16_mFC8811706681807666F91EE89A28ADF75DF6EFCC(L_7, ((int32_t)16), /*hidden argument*/NULL);
V_1 = L_8;
uint16_t L_9 = V_0;
if ((((int32_t)L_9) <= ((int32_t)0)))
{
goto IL_006d;
}
}
{
int32_t L_10 = MessageBase_get_Flags_m226EB26B3AB8C91ADA936E7B45CC8968D0F4CA9E_inline(__this, /*hidden argument*/NULL);
if (!((int32_t)((int32_t)L_10&(int32_t)2)))
{
goto IL_005a;
}
}
{
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_11 = Encoding_get_ASCII_m9B673AE3152AB04D07CADE6E5E142C785B5BC94E(/*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_12 = ___message0;
uint16_t L_13 = V_1;
uint16_t L_14 = V_0;
NullCheck(L_11);
String_t* L_15 = VirtFuncInvoker3< String_t*, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(35 /* System.String System.Text.Encoding::GetString(System.Byte[],System.Int32,System.Int32) */, L_11, L_12, L_13, L_14);
__this->set__targetName_4(L_15);
goto IL_006d;
}
IL_005a:
{
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_16 = Encoding_get_Unicode_m86CC470F70F9BB52DDB26721F0C0D6EDAFC318AA(/*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_17 = ___message0;
uint16_t L_18 = V_1;
uint16_t L_19 = V_0;
NullCheck(L_16);
String_t* L_20 = VirtFuncInvoker3< String_t*, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(35 /* System.String System.Text.Encoding::GetString(System.Byte[],System.Int32,System.Int32) */, L_16, L_17, L_18, L_19);
__this->set__targetName_4(L_20);
}
IL_006d:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_21 = ___message0;
NullCheck(L_21);
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_21)->max_length))))) < ((int32_t)((int32_t)48))))
{
goto IL_00a5;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_22 = ___message0;
uint16_t L_23 = BitConverterLE_ToUInt16_mFC8811706681807666F91EE89A28ADF75DF6EFCC(L_22, ((int32_t)40), /*hidden argument*/NULL);
V_2 = L_23;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_24 = ___message0;
uint16_t L_25 = BitConverterLE_ToUInt16_mFC8811706681807666F91EE89A28ADF75DF6EFCC(L_24, ((int32_t)44), /*hidden argument*/NULL);
V_3 = L_25;
uint16_t L_26 = V_2;
if ((((int32_t)L_26) <= ((int32_t)0)))
{
goto IL_00a5;
}
}
{
uint16_t L_27 = V_2;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_28 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)L_27);
__this->set__targetInfo_5(L_28);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_29 = ___message0;
uint16_t L_30 = V_3;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_31 = __this->get__targetInfo_5();
uint16_t L_32 = V_2;
Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353((RuntimeArray *)(RuntimeArray *)L_29, L_30, (RuntimeArray *)(RuntimeArray *)L_31, 0, L_32, /*hidden argument*/NULL);
}
IL_00a5:
{
return;
}
}
// System.Byte[] Mono.Security.Protocol.Ntlm.Type2Message::GetBytes()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* Type2Message_GetBytes_m91FFB26859C2D17A9D3830FF05458729F8B1AF63 (Type2Message_t990283F48D41AECF1FFBDAA3A194CDE9C9078398 * __this, const RuntimeMethod* method)
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_0 = NULL;
int16_t V_1 = 0;
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = MessageBase_PrepareMessage_m6B0C0C463C16D086924EC49DB07C3ADE95C11958(__this, ((int32_t)40), /*hidden argument*/NULL);
V_0 = L_0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = V_0;
NullCheck(L_1);
V_1 = (((int16_t)((int16_t)(((int32_t)((int32_t)(((RuntimeArray*)L_1)->max_length)))))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = V_0;
int16_t L_3 = V_1;
NullCheck(L_2);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)16)), (uint8_t)(((int32_t)((uint8_t)L_3))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = V_0;
int16_t L_5 = V_1;
NullCheck(L_4);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)17)), (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)L_5>>(int32_t)8))))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_6 = V_0;
int32_t L_7 = MessageBase_get_Flags_m226EB26B3AB8C91ADA936E7B45CC8968D0F4CA9E_inline(__this, /*hidden argument*/NULL);
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)20)), (uint8_t)(((int32_t)((uint8_t)L_7))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_8 = V_0;
int32_t L_9 = MessageBase_get_Flags_m226EB26B3AB8C91ADA936E7B45CC8968D0F4CA9E_inline(__this, /*hidden argument*/NULL);
NullCheck(L_8);
(L_8)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)21)), (uint8_t)(((int32_t)((uint8_t)((int32_t)((uint32_t)L_9>>8))))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_10 = V_0;
int32_t L_11 = MessageBase_get_Flags_m226EB26B3AB8C91ADA936E7B45CC8968D0F4CA9E_inline(__this, /*hidden argument*/NULL);
NullCheck(L_10);
(L_10)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)22)), (uint8_t)(((int32_t)((uint8_t)((int32_t)((uint32_t)L_11>>((int32_t)16)))))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_12 = V_0;
int32_t L_13 = MessageBase_get_Flags_m226EB26B3AB8C91ADA936E7B45CC8968D0F4CA9E_inline(__this, /*hidden argument*/NULL);
NullCheck(L_12);
(L_12)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)23)), (uint8_t)(((int32_t)((uint8_t)((int32_t)((uint32_t)L_13>>((int32_t)24)))))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_14 = __this->get__nonce_3();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_15 = V_0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_16 = __this->get__nonce_3();
NullCheck(L_16);
Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353((RuntimeArray *)(RuntimeArray *)L_14, 0, (RuntimeArray *)(RuntimeArray *)L_15, ((int32_t)24), (((int32_t)((int32_t)(((RuntimeArray*)L_16)->max_length)))), /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_17 = V_0;
return L_17;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Mono.Security.Protocol.Ntlm.Type3Message::.ctor(Mono.Security.Protocol.Ntlm.Type2Message)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Type3Message__ctor_mBA583598EA5F842A0076F882C4A3205B919419D6 (Type3Message_t6D21CF9E3D56192F8D9B6E2B29474773E838846C * __this, Type2Message_t990283F48D41AECF1FFBDAA3A194CDE9C9078398 * ___type20, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Type3Message__ctor_mBA583598EA5F842A0076F882C4A3205B919419D6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(MessageBase_t504D166CC4021DEB56DED308D5E82C67F47F26C0_il2cpp_TypeInfo_var);
MessageBase__ctor_m32BA1280CB1020E88C6EF6DFA9C3ABABF3B36E59(__this, 3, /*hidden argument*/NULL);
Type2Message_t990283F48D41AECF1FFBDAA3A194CDE9C9078398 * L_0 = ___type20;
__this->set__type2_9(L_0);
IL2CPP_RUNTIME_CLASS_INIT(NtlmSettings_tC673E811873A17EA73FCA0EFD6D33839B5036009_il2cpp_TypeInfo_var);
int32_t L_1 = NtlmSettings_get_DefaultAuthLevel_m98EDE4292136121773A45127209BD926E1CF141A_inline(/*hidden argument*/NULL);
__this->set__level_3(L_1);
Type2Message_t990283F48D41AECF1FFBDAA3A194CDE9C9078398 * L_2 = ___type20;
NullCheck(L_2);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = Type2Message_get_Nonce_mEE9D40B2B299766F6B789195174BC580BDAEB4E1(L_2, /*hidden argument*/NULL);
NullCheck((RuntimeArray *)(RuntimeArray *)L_3);
RuntimeObject * L_4 = Array_Clone_mE8C710213E323617A6F46F2B36DCDDD4C7CF5176((RuntimeArray *)(RuntimeArray *)L_3, /*hidden argument*/NULL);
__this->set__challenge_4(((ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)Castclass((RuntimeObject*)L_4, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var)));
Type2Message_t990283F48D41AECF1FFBDAA3A194CDE9C9078398 * L_5 = ___type20;
NullCheck(L_5);
String_t* L_6 = Type2Message_get_TargetName_m3B65DC156E863BC78E674D0D1BEF653B25F53B7D_inline(L_5, /*hidden argument*/NULL);
__this->set__domain_6(L_6);
String_t* L_7 = Environment_get_MachineName_m0300D26C1A5348D90800793717D33B1F629AF10D(/*hidden argument*/NULL);
__this->set__host_5(L_7);
String_t* L_8 = Environment_get_UserName_m089F0073984A6341BC214F4EB3DE42ACD19D067B(/*hidden argument*/NULL);
__this->set__username_7(L_8);
MessageBase_set_Flags_m0E8B48A02DB678CB59A3D3274AE51418732C864C_inline(__this, ((int32_t)33280), /*hidden argument*/NULL);
Type2Message_t990283F48D41AECF1FFBDAA3A194CDE9C9078398 * L_9 = ___type20;
NullCheck(L_9);
int32_t L_10 = MessageBase_get_Flags_m226EB26B3AB8C91ADA936E7B45CC8968D0F4CA9E_inline(L_9, /*hidden argument*/NULL);
if (!((int32_t)((int32_t)L_10&(int32_t)1)))
{
goto IL_0076;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(MessageBase_t504D166CC4021DEB56DED308D5E82C67F47F26C0_il2cpp_TypeInfo_var);
int32_t L_11 = MessageBase_get_Flags_m226EB26B3AB8C91ADA936E7B45CC8968D0F4CA9E_inline(__this, /*hidden argument*/NULL);
MessageBase_set_Flags_m0E8B48A02DB678CB59A3D3274AE51418732C864C_inline(__this, ((int32_t)((int32_t)L_11|(int32_t)1)), /*hidden argument*/NULL);
goto IL_0084;
}
IL_0076:
{
IL2CPP_RUNTIME_CLASS_INIT(MessageBase_t504D166CC4021DEB56DED308D5E82C67F47F26C0_il2cpp_TypeInfo_var);
int32_t L_12 = MessageBase_get_Flags_m226EB26B3AB8C91ADA936E7B45CC8968D0F4CA9E_inline(__this, /*hidden argument*/NULL);
MessageBase_set_Flags_m0E8B48A02DB678CB59A3D3274AE51418732C864C_inline(__this, ((int32_t)((int32_t)L_12|(int32_t)2)), /*hidden argument*/NULL);
}
IL_0084:
{
Type2Message_t990283F48D41AECF1FFBDAA3A194CDE9C9078398 * L_13 = ___type20;
NullCheck(L_13);
IL2CPP_RUNTIME_CLASS_INIT(MessageBase_t504D166CC4021DEB56DED308D5E82C67F47F26C0_il2cpp_TypeInfo_var);
int32_t L_14 = MessageBase_get_Flags_m226EB26B3AB8C91ADA936E7B45CC8968D0F4CA9E_inline(L_13, /*hidden argument*/NULL);
if (!((int32_t)((int32_t)L_14&(int32_t)((int32_t)524288))))
{
goto IL_00a4;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(MessageBase_t504D166CC4021DEB56DED308D5E82C67F47F26C0_il2cpp_TypeInfo_var);
int32_t L_15 = MessageBase_get_Flags_m226EB26B3AB8C91ADA936E7B45CC8968D0F4CA9E_inline(__this, /*hidden argument*/NULL);
MessageBase_set_Flags_m0E8B48A02DB678CB59A3D3274AE51418732C864C_inline(__this, ((int32_t)((int32_t)L_15|(int32_t)((int32_t)524288))), /*hidden argument*/NULL);
}
IL_00a4:
{
return;
}
}
// System.Void Mono.Security.Protocol.Ntlm.Type3Message::Finalize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Type3Message_Finalize_m3881D11D8E2CD25BE7DC27D8DE14B8824E9C5EE6 (Type3Message_t6D21CF9E3D56192F8D9B6E2B29474773E838846C * __this, const RuntimeMethod* method)
{
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
IL_0000:
try
{ // begin try (depth: 1)
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = __this->get__challenge_4();
if (!L_0)
{
goto IL_001c;
}
}
IL_0008:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = __this->get__challenge_4();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = __this->get__challenge_4();
NullCheck(L_2);
Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E((RuntimeArray *)(RuntimeArray *)L_1, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length)))), /*hidden argument*/NULL);
}
IL_001c:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = __this->get__lm_10();
if (!L_3)
{
goto IL_0038;
}
}
IL_0024:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = __this->get__lm_10();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_5 = __this->get__lm_10();
NullCheck(L_5);
Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E((RuntimeArray *)(RuntimeArray *)L_4, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_5)->max_length)))), /*hidden argument*/NULL);
}
IL_0038:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_6 = __this->get__nt_11();
if (!L_6)
{
goto IL_0054;
}
}
IL_0040:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_7 = __this->get__nt_11();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_8 = __this->get__nt_11();
NullCheck(L_8);
Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E((RuntimeArray *)(RuntimeArray *)L_7, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length)))), /*hidden argument*/NULL);
}
IL_0054:
{
IL2CPP_LEAVE(0x5D, FINALLY_0056);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0056;
}
FINALLY_0056:
{ // begin finally (depth: 1)
Object_Finalize_m4015B7D3A44DE125C5FE34D7276CD4697C06F380(__this, /*hidden argument*/NULL);
IL2CPP_END_FINALLY(86)
} // end finally (depth: 1)
IL2CPP_CLEANUP(86)
{
IL2CPP_JUMP_TBL(0x5D, IL_005d)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_005d:
{
return;
}
}
// System.Void Mono.Security.Protocol.Ntlm.Type3Message::set_Domain(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Type3Message_set_Domain_m04440D54FDAA49E5C82380E22C46DBF09C22DBF5 (Type3Message_t6D21CF9E3D56192F8D9B6E2B29474773E838846C * __this, String_t* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Type3Message_set_Domain_m04440D54FDAA49E5C82380E22C46DBF09C22DBF5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___value0;
if (L_0)
{
goto IL_000a;
}
}
{
___value0 = _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
}
IL_000a:
{
String_t* L_1 = ___value0;
bool L_2 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_1, _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709, /*hidden argument*/NULL);
if (!L_2)
{
goto IL_002b;
}
}
{
int32_t L_3 = MessageBase_get_Flags_m226EB26B3AB8C91ADA936E7B45CC8968D0F4CA9E_inline(__this, /*hidden argument*/NULL);
MessageBase_set_Flags_m0E8B48A02DB678CB59A3D3274AE51418732C864C_inline(__this, ((int32_t)((int32_t)L_3&(int32_t)((int32_t)-4097))), /*hidden argument*/NULL);
goto IL_003d;
}
IL_002b:
{
int32_t L_4 = MessageBase_get_Flags_m226EB26B3AB8C91ADA936E7B45CC8968D0F4CA9E_inline(__this, /*hidden argument*/NULL);
MessageBase_set_Flags_m0E8B48A02DB678CB59A3D3274AE51418732C864C_inline(__this, ((int32_t)((int32_t)L_4|(int32_t)((int32_t)4096))), /*hidden argument*/NULL);
}
IL_003d:
{
String_t* L_5 = ___value0;
__this->set__domain_6(L_5);
return;
}
}
// System.Void Mono.Security.Protocol.Ntlm.Type3Message::set_Password(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Type3Message_set_Password_m5D12ECA751E4BFB7C0CA25963FE20235C6951ED2 (Type3Message_t6D21CF9E3D56192F8D9B6E2B29474773E838846C * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set__password_8(L_0);
return;
}
}
// System.Void Mono.Security.Protocol.Ntlm.Type3Message::set_Username(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Type3Message_set_Username_m8FAFEC42286D8EEA3B826437340EA233EEB96D13 (Type3Message_t6D21CF9E3D56192F8D9B6E2B29474773E838846C * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set__username_7(L_0);
return;
}
}
// System.Void Mono.Security.Protocol.Ntlm.Type3Message::Decode(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Type3Message_Decode_m4624A3F2775E1E590627C69F188816C994270B6D (Type3Message_t6D21CF9E3D56192F8D9B6E2B29474773E838846C * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___message0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Type3Message_Decode_m4624A3F2775E1E590627C69F188816C994270B6D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
int32_t V_3 = 0;
int32_t V_4 = 0;
int32_t V_5 = 0;
int32_t V_6 = 0;
int32_t V_7 = 0;
int32_t V_8 = 0;
int32_t V_9 = 0;
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___message0;
MessageBase_Decode_m0994F2111010F3E105B94A83439BDBADA2E46537(__this, L_0, /*hidden argument*/NULL);
__this->set__password_8((String_t*)NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = ___message0;
NullCheck(L_1);
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_1)->max_length))))) < ((int32_t)((int32_t)64))))
{
goto IL_0025;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = ___message0;
uint32_t L_3 = BitConverterLE_ToUInt32_m898E287439DDB0A31E4E39FF83DD032B1C43FA26(L_2, ((int32_t)60), /*hidden argument*/NULL);
MessageBase_set_Flags_m0E8B48A02DB678CB59A3D3274AE51418732C864C_inline(__this, L_3, /*hidden argument*/NULL);
goto IL_0030;
}
IL_0025:
{
MessageBase_set_Flags_m0E8B48A02DB678CB59A3D3274AE51418732C864C_inline(__this, ((int32_t)33281), /*hidden argument*/NULL);
}
IL_0030:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = ___message0;
uint16_t L_5 = BitConverterLE_ToUInt16_mFC8811706681807666F91EE89A28ADF75DF6EFCC(L_4, ((int32_t)12), /*hidden argument*/NULL);
V_0 = L_5;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_6 = ___message0;
uint16_t L_7 = BitConverterLE_ToUInt16_mFC8811706681807666F91EE89A28ADF75DF6EFCC(L_6, ((int32_t)16), /*hidden argument*/NULL);
V_1 = L_7;
int32_t L_8 = V_0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_9 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)L_8);
__this->set__lm_10(L_9);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_10 = ___message0;
int32_t L_11 = V_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_12 = __this->get__lm_10();
int32_t L_13 = V_0;
Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353((RuntimeArray *)(RuntimeArray *)L_10, L_11, (RuntimeArray *)(RuntimeArray *)L_12, 0, L_13, /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_14 = ___message0;
uint16_t L_15 = BitConverterLE_ToUInt16_mFC8811706681807666F91EE89A28ADF75DF6EFCC(L_14, ((int32_t)20), /*hidden argument*/NULL);
V_2 = L_15;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_16 = ___message0;
uint16_t L_17 = BitConverterLE_ToUInt16_mFC8811706681807666F91EE89A28ADF75DF6EFCC(L_16, ((int32_t)24), /*hidden argument*/NULL);
V_3 = L_17;
int32_t L_18 = V_2;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_19 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)L_18);
__this->set__nt_11(L_19);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_20 = ___message0;
int32_t L_21 = V_3;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_22 = __this->get__nt_11();
int32_t L_23 = V_2;
Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353((RuntimeArray *)(RuntimeArray *)L_20, L_21, (RuntimeArray *)(RuntimeArray *)L_22, 0, L_23, /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_24 = ___message0;
uint16_t L_25 = BitConverterLE_ToUInt16_mFC8811706681807666F91EE89A28ADF75DF6EFCC(L_24, ((int32_t)28), /*hidden argument*/NULL);
V_4 = L_25;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_26 = ___message0;
uint16_t L_27 = BitConverterLE_ToUInt16_mFC8811706681807666F91EE89A28ADF75DF6EFCC(L_26, ((int32_t)32), /*hidden argument*/NULL);
V_5 = L_27;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_28 = ___message0;
int32_t L_29 = V_5;
int32_t L_30 = V_4;
String_t* L_31 = Type3Message_DecodeString_mCB1797B1FA97CD96E788DCE096FDBC275685C42F(__this, L_28, L_29, L_30, /*hidden argument*/NULL);
__this->set__domain_6(L_31);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_32 = ___message0;
uint16_t L_33 = BitConverterLE_ToUInt16_mFC8811706681807666F91EE89A28ADF75DF6EFCC(L_32, ((int32_t)36), /*hidden argument*/NULL);
V_6 = L_33;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_34 = ___message0;
uint16_t L_35 = BitConverterLE_ToUInt16_mFC8811706681807666F91EE89A28ADF75DF6EFCC(L_34, ((int32_t)40), /*hidden argument*/NULL);
V_7 = L_35;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_36 = ___message0;
int32_t L_37 = V_7;
int32_t L_38 = V_6;
String_t* L_39 = Type3Message_DecodeString_mCB1797B1FA97CD96E788DCE096FDBC275685C42F(__this, L_36, L_37, L_38, /*hidden argument*/NULL);
__this->set__username_7(L_39);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_40 = ___message0;
uint16_t L_41 = BitConverterLE_ToUInt16_mFC8811706681807666F91EE89A28ADF75DF6EFCC(L_40, ((int32_t)44), /*hidden argument*/NULL);
V_8 = L_41;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_42 = ___message0;
uint16_t L_43 = BitConverterLE_ToUInt16_mFC8811706681807666F91EE89A28ADF75DF6EFCC(L_42, ((int32_t)48), /*hidden argument*/NULL);
V_9 = L_43;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_44 = ___message0;
int32_t L_45 = V_9;
int32_t L_46 = V_8;
String_t* L_47 = Type3Message_DecodeString_mCB1797B1FA97CD96E788DCE096FDBC275685C42F(__this, L_44, L_45, L_46, /*hidden argument*/NULL);
__this->set__host_5(L_47);
return;
}
}
// System.String Mono.Security.Protocol.Ntlm.Type3Message::DecodeString(System.Byte[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Type3Message_DecodeString_mCB1797B1FA97CD96E788DCE096FDBC275685C42F (Type3Message_t6D21CF9E3D56192F8D9B6E2B29474773E838846C * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer0, int32_t ___offset1, int32_t ___len2, const RuntimeMethod* method)
{
{
int32_t L_0 = MessageBase_get_Flags_m226EB26B3AB8C91ADA936E7B45CC8968D0F4CA9E_inline(__this, /*hidden argument*/NULL);
if (!((int32_t)((int32_t)L_0&(int32_t)1)))
{
goto IL_0018;
}
}
{
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_1 = Encoding_get_Unicode_m86CC470F70F9BB52DDB26721F0C0D6EDAFC318AA(/*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = ___buffer0;
int32_t L_3 = ___offset1;
int32_t L_4 = ___len2;
NullCheck(L_1);
String_t* L_5 = VirtFuncInvoker3< String_t*, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(35 /* System.String System.Text.Encoding::GetString(System.Byte[],System.Int32,System.Int32) */, L_1, L_2, L_3, L_4);
return L_5;
}
IL_0018:
{
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_6 = Encoding_get_ASCII_m9B673AE3152AB04D07CADE6E5E142C785B5BC94E(/*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_7 = ___buffer0;
int32_t L_8 = ___offset1;
int32_t L_9 = ___len2;
NullCheck(L_6);
String_t* L_10 = VirtFuncInvoker3< String_t*, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(35 /* System.String System.Text.Encoding::GetString(System.Byte[],System.Int32,System.Int32) */, L_6, L_7, L_8, L_9);
return L_10;
}
}
// System.Byte[] Mono.Security.Protocol.Ntlm.Type3Message::EncodeString(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* Type3Message_EncodeString_m431F1D808D738A2C9CE57DE1084F9A42C036AA5A (Type3Message_t6D21CF9E3D56192F8D9B6E2B29474773E838846C * __this, String_t* ___text0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Type3Message_EncodeString_m431F1D808D738A2C9CE57DE1084F9A42C036AA5A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___text0;
if (L_0)
{
goto IL_000a;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)0);
return L_1;
}
IL_000a:
{
int32_t L_2 = MessageBase_get_Flags_m226EB26B3AB8C91ADA936E7B45CC8968D0F4CA9E_inline(__this, /*hidden argument*/NULL);
if (!((int32_t)((int32_t)L_2&(int32_t)1)))
{
goto IL_0020;
}
}
{
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_3 = Encoding_get_Unicode_m86CC470F70F9BB52DDB26721F0C0D6EDAFC318AA(/*hidden argument*/NULL);
String_t* L_4 = ___text0;
NullCheck(L_3);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_5 = VirtFuncInvoker1< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, String_t* >::Invoke(18 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_3, L_4);
return L_5;
}
IL_0020:
{
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_6 = Encoding_get_ASCII_m9B673AE3152AB04D07CADE6E5E142C785B5BC94E(/*hidden argument*/NULL);
String_t* L_7 = ___text0;
NullCheck(L_6);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_8 = VirtFuncInvoker1< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, String_t* >::Invoke(18 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_6, L_7);
return L_8;
}
}
// System.Byte[] Mono.Security.Protocol.Ntlm.Type3Message::GetBytes()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* Type3Message_GetBytes_m9C22065DB20CD016FCA226AA2A78952E111CF118 (Type3Message_t6D21CF9E3D56192F8D9B6E2B29474773E838846C * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Type3Message_GetBytes_m9C22065DB20CD016FCA226AA2A78952E111CF118_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_0 = NULL;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_1 = NULL;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_2 = NULL;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_3 = NULL;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_4 = NULL;
int32_t V_5 = 0;
int32_t V_6 = 0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_7 = NULL;
int16_t V_8 = 0;
int16_t V_9 = 0;
int16_t V_10 = 0;
int16_t V_11 = 0;
int16_t V_12 = 0;
int16_t V_13 = 0;
int16_t V_14 = 0;
int16_t V_15 = 0;
int16_t V_16 = 0;
int32_t V_17 = 0;
ChallengeResponse_t2A954E3C6AB2D638ECA50E1B8ACB99E8F28A048B * V_18 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
int32_t G_B12_0 = 0;
int32_t G_B15_0 = 0;
{
String_t* L_0 = __this->get__domain_6();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = Type3Message_EncodeString_m431F1D808D738A2C9CE57DE1084F9A42C036AA5A(__this, L_0, /*hidden argument*/NULL);
V_0 = L_1;
String_t* L_2 = __this->get__username_7();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = Type3Message_EncodeString_m431F1D808D738A2C9CE57DE1084F9A42C036AA5A(__this, L_2, /*hidden argument*/NULL);
V_1 = L_3;
String_t* L_4 = __this->get__host_5();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_5 = Type3Message_EncodeString_m431F1D808D738A2C9CE57DE1084F9A42C036AA5A(__this, L_4, /*hidden argument*/NULL);
V_2 = L_5;
Type2Message_t990283F48D41AECF1FFBDAA3A194CDE9C9078398 * L_6 = __this->get__type2_9();
if (L_6)
{
goto IL_0074;
}
}
{
int32_t L_7 = __this->get__level_3();
if (!L_7)
{
goto IL_0042;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_8 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_8, _stringLiteral636C307C2499B64E58C024BD8EC39A968AF2D4A9, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, NULL, Type3Message_GetBytes_m9C22065DB20CD016FCA226AA2A78952E111CF118_RuntimeMethod_var);
}
IL_0042:
{
String_t* L_9 = __this->get__password_8();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_10 = __this->get__challenge_4();
ChallengeResponse_t2A954E3C6AB2D638ECA50E1B8ACB99E8F28A048B * L_11 = (ChallengeResponse_t2A954E3C6AB2D638ECA50E1B8ACB99E8F28A048B *)il2cpp_codegen_object_new(ChallengeResponse_t2A954E3C6AB2D638ECA50E1B8ACB99E8F28A048B_il2cpp_TypeInfo_var);
ChallengeResponse__ctor_mF80EAE315F35264F1DA0167B3ED7A8CD8E2D1FFA(L_11, L_9, L_10, /*hidden argument*/NULL);
V_18 = L_11;
}
IL_0055:
try
{ // begin try (depth: 1)
ChallengeResponse_t2A954E3C6AB2D638ECA50E1B8ACB99E8F28A048B * L_12 = V_18;
NullCheck(L_12);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_13 = ChallengeResponse_get_LM_m3916048E028CFCA867E801A83FEB949F7C089263(L_12, /*hidden argument*/NULL);
V_3 = L_13;
ChallengeResponse_t2A954E3C6AB2D638ECA50E1B8ACB99E8F28A048B * L_14 = V_18;
NullCheck(L_14);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_15 = ChallengeResponse_get_NT_mEC9F2FDFDB8FADF415D4BA8A1564A23024FC3437(L_14, /*hidden argument*/NULL);
V_4 = L_15;
IL2CPP_LEAVE(0x9B, FINALLY_0068);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0068;
}
FINALLY_0068:
{ // begin finally (depth: 1)
{
ChallengeResponse_t2A954E3C6AB2D638ECA50E1B8ACB99E8F28A048B * L_16 = V_18;
if (!L_16)
{
goto IL_0073;
}
}
IL_006c:
{
ChallengeResponse_t2A954E3C6AB2D638ECA50E1B8ACB99E8F28A048B * L_17 = V_18;
NullCheck(L_17);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_17);
}
IL_0073:
{
IL2CPP_END_FINALLY(104)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(104)
{
IL2CPP_JUMP_TBL(0x9B, IL_009b)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0074:
{
Type2Message_t990283F48D41AECF1FFBDAA3A194CDE9C9078398 * L_18 = __this->get__type2_9();
int32_t L_19 = __this->get__level_3();
String_t* L_20 = __this->get__username_7();
String_t* L_21 = __this->get__password_8();
String_t* L_22 = __this->get__domain_6();
IL2CPP_RUNTIME_CLASS_INIT(ChallengeResponse2_t2F5817D7717011A7F4C0DE0015D144A2292CAD77_il2cpp_TypeInfo_var);
ChallengeResponse2_Compute_mAA312CA925226C75A829516B6BDC2089840D389D(L_18, L_19, L_20, L_21, L_22, (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821**)(&V_3), (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821**)(&V_4), /*hidden argument*/NULL);
}
IL_009b:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_23 = V_3;
if (L_23)
{
goto IL_00a1;
}
}
{
G_B12_0 = 0;
goto IL_00a4;
}
IL_00a1:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_24 = V_3;
NullCheck(L_24);
G_B12_0 = (((int32_t)((int32_t)(((RuntimeArray*)L_24)->max_length))));
}
IL_00a4:
{
V_5 = G_B12_0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_25 = V_4;
if (L_25)
{
goto IL_00ad;
}
}
{
G_B15_0 = 0;
goto IL_00b1;
}
IL_00ad:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_26 = V_4;
NullCheck(L_26);
G_B15_0 = (((int32_t)((int32_t)(((RuntimeArray*)L_26)->max_length))));
}
IL_00b1:
{
V_6 = G_B15_0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_27 = V_0;
NullCheck(L_27);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_28 = V_1;
NullCheck(L_28);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_29 = V_2;
NullCheck(L_29);
int32_t L_30 = V_5;
int32_t L_31 = V_6;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_32 = MessageBase_PrepareMessage_m6B0C0C463C16D086924EC49DB07C3ADE95C11958(__this, ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)64), (int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_27)->max_length)))))), (int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_28)->max_length)))))), (int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_29)->max_length)))))), (int32_t)L_30)), (int32_t)L_31)), /*hidden argument*/NULL);
V_7 = L_32;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_33 = V_0;
NullCheck(L_33);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_34 = V_1;
NullCheck(L_34);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_35 = V_2;
NullCheck(L_35);
V_8 = (((int16_t)((int16_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)64), (int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_33)->max_length)))))), (int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_34)->max_length)))))), (int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_35)->max_length)))))))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_36 = V_7;
int32_t L_37 = V_5;
NullCheck(L_36);
(L_36)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)12)), (uint8_t)(((int32_t)((uint8_t)L_37))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_38 = V_7;
NullCheck(L_38);
(L_38)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)13)), (uint8_t)0);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_39 = V_7;
int32_t L_40 = V_5;
NullCheck(L_39);
(L_39)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)14)), (uint8_t)(((int32_t)((uint8_t)L_40))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_41 = V_7;
NullCheck(L_41);
(L_41)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)15)), (uint8_t)0);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_42 = V_7;
int16_t L_43 = V_8;
NullCheck(L_42);
(L_42)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)16)), (uint8_t)(((int32_t)((uint8_t)L_43))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_44 = V_7;
int16_t L_45 = V_8;
NullCheck(L_44);
(L_44)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)17)), (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)L_45>>(int32_t)8))))));
int16_t L_46 = V_8;
int32_t L_47 = V_5;
V_9 = (((int16_t)((int16_t)((int32_t)il2cpp_codegen_add((int32_t)L_46, (int32_t)L_47)))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_48 = V_7;
int32_t L_49 = V_6;
NullCheck(L_48);
(L_48)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)20)), (uint8_t)(((int32_t)((uint8_t)L_49))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_50 = V_7;
int32_t L_51 = V_6;
NullCheck(L_50);
(L_50)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)21)), (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)L_51>>(int32_t)8))))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_52 = V_7;
int32_t L_53 = V_6;
NullCheck(L_52);
(L_52)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)22)), (uint8_t)(((int32_t)((uint8_t)L_53))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_54 = V_7;
int32_t L_55 = V_6;
NullCheck(L_54);
(L_54)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)23)), (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)L_55>>(int32_t)8))))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_56 = V_7;
int16_t L_57 = V_9;
NullCheck(L_56);
(L_56)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)24)), (uint8_t)(((int32_t)((uint8_t)L_57))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_58 = V_7;
int16_t L_59 = V_9;
NullCheck(L_58);
(L_58)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)25)), (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)L_59>>(int32_t)8))))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_60 = V_0;
NullCheck(L_60);
V_10 = (((int16_t)((int16_t)(((int32_t)((int32_t)(((RuntimeArray*)L_60)->max_length)))))));
V_11 = (int16_t)((int32_t)64);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_61 = V_7;
int16_t L_62 = V_10;
NullCheck(L_61);
(L_61)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)28)), (uint8_t)(((int32_t)((uint8_t)L_62))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_63 = V_7;
int16_t L_64 = V_10;
NullCheck(L_63);
(L_63)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)29)), (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)L_64>>(int32_t)8))))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_65 = V_7;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_66 = V_7;
NullCheck(L_66);
int32_t L_67 = ((int32_t)28);
uint8_t L_68 = (L_66)->GetAt(static_cast<il2cpp_array_size_t>(L_67));
NullCheck(L_65);
(L_65)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)30)), (uint8_t)L_68);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_69 = V_7;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_70 = V_7;
NullCheck(L_70);
int32_t L_71 = ((int32_t)29);
uint8_t L_72 = (L_70)->GetAt(static_cast<il2cpp_array_size_t>(L_71));
NullCheck(L_69);
(L_69)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)31)), (uint8_t)L_72);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_73 = V_7;
int16_t L_74 = V_11;
NullCheck(L_73);
(L_73)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)32)), (uint8_t)(((int32_t)((uint8_t)L_74))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_75 = V_7;
int16_t L_76 = V_11;
NullCheck(L_75);
(L_75)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)33)), (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)L_76>>(int32_t)8))))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_77 = V_1;
NullCheck(L_77);
V_12 = (((int16_t)((int16_t)(((int32_t)((int32_t)(((RuntimeArray*)L_77)->max_length)))))));
int16_t L_78 = V_11;
int16_t L_79 = V_10;
V_13 = (((int16_t)((int16_t)((int32_t)il2cpp_codegen_add((int32_t)L_78, (int32_t)L_79)))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_80 = V_7;
int16_t L_81 = V_12;
NullCheck(L_80);
(L_80)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)36)), (uint8_t)(((int32_t)((uint8_t)L_81))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_82 = V_7;
int16_t L_83 = V_12;
NullCheck(L_82);
(L_82)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)37)), (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)L_83>>(int32_t)8))))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_84 = V_7;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_85 = V_7;
NullCheck(L_85);
int32_t L_86 = ((int32_t)36);
uint8_t L_87 = (L_85)->GetAt(static_cast<il2cpp_array_size_t>(L_86));
NullCheck(L_84);
(L_84)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)38)), (uint8_t)L_87);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_88 = V_7;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_89 = V_7;
NullCheck(L_89);
int32_t L_90 = ((int32_t)37);
uint8_t L_91 = (L_89)->GetAt(static_cast<il2cpp_array_size_t>(L_90));
NullCheck(L_88);
(L_88)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)39)), (uint8_t)L_91);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_92 = V_7;
int16_t L_93 = V_13;
NullCheck(L_92);
(L_92)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)40)), (uint8_t)(((int32_t)((uint8_t)L_93))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_94 = V_7;
int16_t L_95 = V_13;
NullCheck(L_94);
(L_94)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)41)), (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)L_95>>(int32_t)8))))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_96 = V_2;
NullCheck(L_96);
V_14 = (((int16_t)((int16_t)(((int32_t)((int32_t)(((RuntimeArray*)L_96)->max_length)))))));
int16_t L_97 = V_13;
int16_t L_98 = V_12;
V_15 = (((int16_t)((int16_t)((int32_t)il2cpp_codegen_add((int32_t)L_97, (int32_t)L_98)))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_99 = V_7;
int16_t L_100 = V_14;
NullCheck(L_99);
(L_99)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)44)), (uint8_t)(((int32_t)((uint8_t)L_100))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_101 = V_7;
int16_t L_102 = V_14;
NullCheck(L_101);
(L_101)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)45)), (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)L_102>>(int32_t)8))))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_103 = V_7;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_104 = V_7;
NullCheck(L_104);
int32_t L_105 = ((int32_t)44);
uint8_t L_106 = (L_104)->GetAt(static_cast<il2cpp_array_size_t>(L_105));
NullCheck(L_103);
(L_103)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)46)), (uint8_t)L_106);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_107 = V_7;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_108 = V_7;
NullCheck(L_108);
int32_t L_109 = ((int32_t)45);
uint8_t L_110 = (L_108)->GetAt(static_cast<il2cpp_array_size_t>(L_109));
NullCheck(L_107);
(L_107)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)47)), (uint8_t)L_110);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_111 = V_7;
int16_t L_112 = V_15;
NullCheck(L_111);
(L_111)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)48)), (uint8_t)(((int32_t)((uint8_t)L_112))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_113 = V_7;
int16_t L_114 = V_15;
NullCheck(L_113);
(L_113)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)49)), (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)L_114>>(int32_t)8))))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_115 = V_7;
NullCheck(L_115);
V_16 = (((int16_t)((int16_t)(((int32_t)((int32_t)(((RuntimeArray*)L_115)->max_length)))))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_116 = V_7;
int16_t L_117 = V_16;
NullCheck(L_116);
(L_116)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)56)), (uint8_t)(((int32_t)((uint8_t)L_117))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_118 = V_7;
int16_t L_119 = V_16;
NullCheck(L_118);
(L_118)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)57)), (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)L_119>>(int32_t)8))))));
int32_t L_120 = MessageBase_get_Flags_m226EB26B3AB8C91ADA936E7B45CC8968D0F4CA9E_inline(__this, /*hidden argument*/NULL);
V_17 = L_120;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_121 = V_7;
int32_t L_122 = V_17;
NullCheck(L_121);
(L_121)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)60)), (uint8_t)(((int32_t)((uint8_t)L_122))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_123 = V_7;
int32_t L_124 = V_17;
NullCheck(L_123);
(L_123)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)61)), (uint8_t)(((int32_t)((uint8_t)((int32_t)((uint32_t)L_124>>8))))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_125 = V_7;
int32_t L_126 = V_17;
NullCheck(L_125);
(L_125)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)62)), (uint8_t)(((int32_t)((uint8_t)((int32_t)((uint32_t)L_126>>((int32_t)16)))))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_127 = V_7;
int32_t L_128 = V_17;
NullCheck(L_127);
(L_127)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)63)), (uint8_t)(((int32_t)((uint8_t)((int32_t)((uint32_t)L_128>>((int32_t)24)))))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_129 = V_0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_130 = V_7;
int16_t L_131 = V_11;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_132 = V_0;
NullCheck(L_132);
Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353((RuntimeArray *)(RuntimeArray *)L_129, 0, (RuntimeArray *)(RuntimeArray *)L_130, L_131, (((int32_t)((int32_t)(((RuntimeArray*)L_132)->max_length)))), /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_133 = V_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_134 = V_7;
int16_t L_135 = V_13;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_136 = V_1;
NullCheck(L_136);
Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353((RuntimeArray *)(RuntimeArray *)L_133, 0, (RuntimeArray *)(RuntimeArray *)L_134, L_135, (((int32_t)((int32_t)(((RuntimeArray*)L_136)->max_length)))), /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_137 = V_2;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_138 = V_7;
int16_t L_139 = V_15;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_140 = V_2;
NullCheck(L_140);
Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353((RuntimeArray *)(RuntimeArray *)L_137, 0, (RuntimeArray *)(RuntimeArray *)L_138, L_139, (((int32_t)((int32_t)(((RuntimeArray*)L_140)->max_length)))), /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_141 = V_3;
if (!L_141)
{
goto IL_02a8;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_142 = V_3;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_143 = V_7;
int16_t L_144 = V_8;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_145 = V_3;
NullCheck(L_145);
Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353((RuntimeArray *)(RuntimeArray *)L_142, 0, (RuntimeArray *)(RuntimeArray *)L_143, L_144, (((int32_t)((int32_t)(((RuntimeArray*)L_145)->max_length)))), /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_146 = V_3;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_147 = V_3;
NullCheck(L_147);
Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E((RuntimeArray *)(RuntimeArray *)L_146, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_147)->max_length)))), /*hidden argument*/NULL);
}
IL_02a8:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_148 = V_4;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_149 = V_7;
int16_t L_150 = V_9;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_151 = V_4;
NullCheck(L_151);
Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353((RuntimeArray *)(RuntimeArray *)L_148, 0, (RuntimeArray *)(RuntimeArray *)L_149, L_150, (((int32_t)((int32_t)(((RuntimeArray*)L_151)->max_length)))), /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_152 = V_4;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_153 = V_4;
NullCheck(L_153);
Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E((RuntimeArray *)(RuntimeArray *)L_152, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_153)->max_length)))), /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_154 = V_7;
return L_154;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Mono.Security.X509.PKCS12::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PKCS12__ctor_mB6E3957A0DB6D7E17808EB1141909F9D1AEC162F (PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PKCS12__ctor_mB6E3957A0DB6D7E17808EB1141909F9D1AEC162F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
__this->set__iterations_7(((int32_t)2000));
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_0 = (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 *)il2cpp_codegen_object_new(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_il2cpp_TypeInfo_var);
ArrayList__ctor_m481FA7B37620B59B8C0434A764F5705A6ABDEAE6(L_0, /*hidden argument*/NULL);
__this->set__keyBags_1(L_0);
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_1 = (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 *)il2cpp_codegen_object_new(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_il2cpp_TypeInfo_var);
ArrayList__ctor_m481FA7B37620B59B8C0434A764F5705A6ABDEAE6(L_1, /*hidden argument*/NULL);
__this->set__secretBags_2(L_1);
X509CertificateCollection_t423BA1B9FAA983BA745023994C648C6DAC3E5A1A * L_2 = (X509CertificateCollection_t423BA1B9FAA983BA745023994C648C6DAC3E5A1A *)il2cpp_codegen_object_new(X509CertificateCollection_t423BA1B9FAA983BA745023994C648C6DAC3E5A1A_il2cpp_TypeInfo_var);
X509CertificateCollection__ctor_mC7C07103044E3520FC785CD5BF0018F27C3132EE(L_2, /*hidden argument*/NULL);
__this->set__certs_3(L_2);
__this->set__keyBagsChanged_4((bool)0);
__this->set__secretBagsChanged_5((bool)0);
__this->set__certsChanged_6((bool)0);
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_3 = (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 *)il2cpp_codegen_object_new(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_il2cpp_TypeInfo_var);
ArrayList__ctor_m481FA7B37620B59B8C0434A764F5705A6ABDEAE6(L_3, /*hidden argument*/NULL);
__this->set__safeBags_8(L_3);
return;
}
}
// System.Void Mono.Security.X509.PKCS12::.ctor(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PKCS12__ctor_mBE0BDBA0DD4C15F304D04F31E028CFFB31D7B8AB (PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___data0, const RuntimeMethod* method)
{
{
PKCS12__ctor_mB6E3957A0DB6D7E17808EB1141909F9D1AEC162F(__this, /*hidden argument*/NULL);
PKCS12_set_Password_mE1814AD9981817AEB8B4DAD7AED8DEA6A17F1DB0(__this, (String_t*)NULL, /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___data0;
PKCS12_Decode_m99D1E85A60263825BD361CFA623B088DE44FD2B7(__this, L_0, /*hidden argument*/NULL);
return;
}
}
// System.Void Mono.Security.X509.PKCS12::.ctor(System.Byte[],System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PKCS12__ctor_m35A8D4C261B2A0B4B7BC677160AB1DF90B04B229 (PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___data0, String_t* ___password1, const RuntimeMethod* method)
{
{
PKCS12__ctor_mB6E3957A0DB6D7E17808EB1141909F9D1AEC162F(__this, /*hidden argument*/NULL);
String_t* L_0 = ___password1;
PKCS12_set_Password_mE1814AD9981817AEB8B4DAD7AED8DEA6A17F1DB0(__this, L_0, /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = ___data0;
PKCS12_Decode_m99D1E85A60263825BD361CFA623B088DE44FD2B7(__this, L_1, /*hidden argument*/NULL);
return;
}
}
// System.Void Mono.Security.X509.PKCS12::Decode(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PKCS12_Decode_m99D1E85A60263825BD361CFA623B088DE44FD2B7 (PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___data0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PKCS12_Decode_m99D1E85A60263825BD361CFA623B088DE44FD2B7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * V_0 = NULL;
ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * V_1 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * V_2 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * V_3 = NULL;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_4 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * V_5 = NULL;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_6 = NULL;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_7 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * V_8 = NULL;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_9 = NULL;
int32_t V_10 = 0;
ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * V_11 = NULL;
String_t* V_12 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * V_13 = NULL;
EncryptedData_tA100D7E93FCF1B7CBD486522E841F0A980CCE61B * V_14 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * V_15 = NULL;
int32_t V_16 = 0;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * V_17 = NULL;
int32_t V_18 = 0;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * V_19 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * G_B11_0 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * G_B10_0 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * G_B13_0 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * G_B12_0 = NULL;
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___data0;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_1 = (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E *)il2cpp_codegen_object_new(ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E_il2cpp_TypeInfo_var);
ASN1__ctor_mE005F52336402C3D41EAD9E28A95910B3C0865DA(L_1, L_0, /*hidden argument*/NULL);
V_0 = L_1;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_2 = V_0;
NullCheck(L_2);
uint8_t L_3 = ASN1_get_Tag_m1346989AC839D85A9E0A211525A6B551974E4862_inline(L_2, /*hidden argument*/NULL);
if ((((int32_t)L_3) == ((int32_t)((int32_t)48))))
{
goto IL_001c;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_4 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_4, _stringLiteral88AF471A23DFDC103E67752DD56128AE77B8DEBE, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, PKCS12_Decode_m99D1E85A60263825BD361CFA623B088DE44FD2B7_RuntimeMethod_var);
}
IL_001c:
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_5 = V_0;
NullCheck(L_5);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_6 = ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08(L_5, 0, /*hidden argument*/NULL);
NullCheck(L_6);
uint8_t L_7 = ASN1_get_Tag_m1346989AC839D85A9E0A211525A6B551974E4862_inline(L_6, /*hidden argument*/NULL);
if ((((int32_t)L_7) == ((int32_t)2)))
{
goto IL_0036;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_8 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_8, _stringLiteral099D7F4DF2D04C9F091C29CF417AB4B2A1888D38, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, NULL, PKCS12_Decode_m99D1E85A60263825BD361CFA623B088DE44FD2B7_RuntimeMethod_var);
}
IL_0036:
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_9 = V_0;
NullCheck(L_9);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_10 = ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08(L_9, 1, /*hidden argument*/NULL);
ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * L_11 = (ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E *)il2cpp_codegen_object_new(ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E_il2cpp_TypeInfo_var);
ContentInfo__ctor_m3AAF5EC77C4891BB1B6AF1F980C8623C0621852D(L_11, L_10, /*hidden argument*/NULL);
V_1 = L_11;
ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * L_12 = V_1;
NullCheck(L_12);
String_t* L_13 = ContentInfo_get_ContentType_m26D6492CA5D227AAC583CFC4A898C056ACEC8196_inline(L_12, /*hidden argument*/NULL);
bool L_14 = String_op_Inequality_m0BD184A74F453A72376E81CC6CAEE2556B80493E(L_13, _stringLiteral929E64373A1A3A451EAF8698A1D26A5C989E42EA, /*hidden argument*/NULL);
if (!L_14)
{
goto IL_0060;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_15 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_15, _stringLiteral19D0B27B43EDD3905D1094D123383F92AE318631, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, NULL, PKCS12_Decode_m99D1E85A60263825BD361CFA623B088DE44FD2B7_RuntimeMethod_var);
}
IL_0060:
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_16 = V_0;
NullCheck(L_16);
int32_t L_17 = ASN1_get_Count_m5A0E71B4C4A2257C0875AE1041AAA953C5B12A19(L_16, /*hidden argument*/NULL);
if ((((int32_t)L_17) <= ((int32_t)2)))
{
goto IL_01b0;
}
}
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_18 = V_0;
NullCheck(L_18);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_19 = ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08(L_18, 2, /*hidden argument*/NULL);
V_3 = L_19;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_20 = V_3;
NullCheck(L_20);
uint8_t L_21 = ASN1_get_Tag_m1346989AC839D85A9E0A211525A6B551974E4862_inline(L_20, /*hidden argument*/NULL);
if ((((int32_t)L_21) == ((int32_t)((int32_t)48))))
{
goto IL_0089;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_22 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_22, _stringLiteral287560723F8A1FBF90A40EFAD7B0419130008627, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_22, NULL, PKCS12_Decode_m99D1E85A60263825BD361CFA623B088DE44FD2B7_RuntimeMethod_var);
}
IL_0089:
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_23 = V_3;
NullCheck(L_23);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_24 = ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08(L_23, 0, /*hidden argument*/NULL);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_25 = L_24;
NullCheck(L_25);
uint8_t L_26 = ASN1_get_Tag_m1346989AC839D85A9E0A211525A6B551974E4862_inline(L_25, /*hidden argument*/NULL);
G_B10_0 = L_25;
if ((((int32_t)L_26) == ((int32_t)((int32_t)48))))
{
G_B11_0 = L_25;
goto IL_00a5;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_27 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_27, _stringLiteral287560723F8A1FBF90A40EFAD7B0419130008627, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_27, NULL, PKCS12_Decode_m99D1E85A60263825BD361CFA623B088DE44FD2B7_RuntimeMethod_var);
}
IL_00a5:
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_28 = G_B11_0;
NullCheck(L_28);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_29 = ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08(L_28, 0, /*hidden argument*/NULL);
NullCheck(L_29);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_30 = ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08(L_29, 0, /*hidden argument*/NULL);
String_t* L_31 = ASN1Convert_ToOid_mFFA93B4BBEFCA8E4E86DAE87CDB998E78BFB2D5A(L_30, /*hidden argument*/NULL);
bool L_32 = String_op_Inequality_m0BD184A74F453A72376E81CC6CAEE2556B80493E(L_31, _stringLiteralA12083BADD146F221E05419C3C15DC0CB7D1A0F6, /*hidden argument*/NULL);
G_B12_0 = L_28;
if (!L_32)
{
G_B13_0 = L_28;
goto IL_00ce;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_33 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_33, _stringLiteral44C55C338925A7EF2FA7FA48B516C92EF8DB9745, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_33, NULL, PKCS12_Decode_m99D1E85A60263825BD361CFA623B088DE44FD2B7_RuntimeMethod_var);
}
IL_00ce:
{
NullCheck(G_B13_0);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_34 = ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08(G_B13_0, 1, /*hidden argument*/NULL);
NullCheck(L_34);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_35 = ASN1_get_Value_m9BD6239E12A6148AF9507C2F58058C6B8147A079(L_34, /*hidden argument*/NULL);
V_4 = L_35;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_36 = V_3;
NullCheck(L_36);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_37 = ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08(L_36, 1, /*hidden argument*/NULL);
V_5 = L_37;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_38 = V_5;
NullCheck(L_38);
uint8_t L_39 = ASN1_get_Tag_m1346989AC839D85A9E0A211525A6B551974E4862_inline(L_38, /*hidden argument*/NULL);
if ((((int32_t)L_39) == ((int32_t)4)))
{
goto IL_00f9;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_40 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_40, _stringLiteral6DEA0A0DA8A093EC1AAF0430ED587E9E19F55290, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_40, NULL, PKCS12_Decode_m99D1E85A60263825BD361CFA623B088DE44FD2B7_RuntimeMethod_var);
}
IL_00f9:
{
__this->set__iterations_7(1);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_41 = V_3;
NullCheck(L_41);
int32_t L_42 = ASN1_get_Count_m5A0E71B4C4A2257C0875AE1041AAA953C5B12A19(L_41, /*hidden argument*/NULL);
if ((((int32_t)L_42) <= ((int32_t)2)))
{
goto IL_0134;
}
}
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_43 = V_3;
NullCheck(L_43);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_44 = ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08(L_43, 2, /*hidden argument*/NULL);
V_8 = L_44;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_45 = V_8;
NullCheck(L_45);
uint8_t L_46 = ASN1_get_Tag_m1346989AC839D85A9E0A211525A6B551974E4862_inline(L_45, /*hidden argument*/NULL);
if ((((int32_t)L_46) == ((int32_t)2)))
{
goto IL_0127;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_47 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_47, _stringLiteral25D33207529D684D63435567C0BEAFD4F02CCF74, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_47, NULL, PKCS12_Decode_m99D1E85A60263825BD361CFA623B088DE44FD2B7_RuntimeMethod_var);
}
IL_0127:
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_48 = V_8;
int32_t L_49 = ASN1Convert_ToInt32_mA2A8761F965979408D46FBEB946DB59F36137A5E(L_48, /*hidden argument*/NULL);
__this->set__iterations_7(L_49);
}
IL_0134:
{
ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * L_50 = V_1;
NullCheck(L_50);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_51 = ContentInfo_get_Content_mCF1CED122282F62BAA3453E585E487D50367289F_inline(L_50, /*hidden argument*/NULL);
NullCheck(L_51);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_52 = ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08(L_51, 0, /*hidden argument*/NULL);
NullCheck(L_52);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_53 = ASN1_get_Value_m9BD6239E12A6148AF9507C2F58058C6B8147A079(L_52, /*hidden argument*/NULL);
V_6 = L_53;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_54 = __this->get__password_0();
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_55 = V_5;
NullCheck(L_55);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_56 = ASN1_get_Value_m9BD6239E12A6148AF9507C2F58058C6B8147A079(L_55, /*hidden argument*/NULL);
int32_t L_57 = __this->get__iterations_7();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_58 = V_6;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_59 = PKCS12_MAC_mA1250320B5F0B5C94D8532296AB59CC32B7A7E78(__this, L_54, L_56, L_57, L_58, /*hidden argument*/NULL);
V_7 = L_59;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_60 = V_4;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_61 = V_7;
bool L_62 = PKCS12_Compare_m12F289CEDEFD3FCB171A1D84CFC3B38657041FDC(__this, L_60, L_61, /*hidden argument*/NULL);
if (L_62)
{
goto IL_01b0;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_63 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)2);
V_9 = L_63;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_64 = V_9;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_65 = V_5;
NullCheck(L_65);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_66 = ASN1_get_Value_m9BD6239E12A6148AF9507C2F58058C6B8147A079(L_65, /*hidden argument*/NULL);
int32_t L_67 = __this->get__iterations_7();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_68 = V_6;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_69 = PKCS12_MAC_mA1250320B5F0B5C94D8532296AB59CC32B7A7E78(__this, L_64, L_66, L_67, L_68, /*hidden argument*/NULL);
V_7 = L_69;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_70 = V_4;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_71 = V_7;
bool L_72 = PKCS12_Compare_m12F289CEDEFD3FCB171A1D84CFC3B38657041FDC(__this, L_70, L_71, /*hidden argument*/NULL);
if (L_72)
{
goto IL_01a8;
}
}
{
CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A * L_73 = (CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A *)il2cpp_codegen_object_new(CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A_il2cpp_TypeInfo_var);
CryptographicException__ctor_m0A5D357C12F9A830A9EBC51723094EBA5B854B98(L_73, _stringLiteral3115DAFC73A9DE6DB80C4AC21E701A8A1C100369, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_73, NULL, PKCS12_Decode_m99D1E85A60263825BD361CFA623B088DE44FD2B7_RuntimeMethod_var);
}
IL_01a8:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_74 = V_9;
__this->set__password_0(L_74);
}
IL_01b0:
{
ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * L_75 = V_1;
NullCheck(L_75);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_76 = ContentInfo_get_Content_mCF1CED122282F62BAA3453E585E487D50367289F_inline(L_75, /*hidden argument*/NULL);
NullCheck(L_76);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_77 = ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08(L_76, 0, /*hidden argument*/NULL);
NullCheck(L_77);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_78 = ASN1_get_Value_m9BD6239E12A6148AF9507C2F58058C6B8147A079(L_77, /*hidden argument*/NULL);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_79 = (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E *)il2cpp_codegen_object_new(ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E_il2cpp_TypeInfo_var);
ASN1__ctor_mE005F52336402C3D41EAD9E28A95910B3C0865DA(L_79, L_78, /*hidden argument*/NULL);
V_2 = L_79;
V_10 = 0;
goto IL_02c7;
}
IL_01cf:
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_80 = V_2;
int32_t L_81 = V_10;
NullCheck(L_80);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_82 = ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08(L_80, L_81, /*hidden argument*/NULL);
ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * L_83 = (ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E *)il2cpp_codegen_object_new(ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E_il2cpp_TypeInfo_var);
ContentInfo__ctor_m3AAF5EC77C4891BB1B6AF1F980C8623C0621852D(L_83, L_82, /*hidden argument*/NULL);
V_11 = L_83;
ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * L_84 = V_11;
NullCheck(L_84);
String_t* L_85 = ContentInfo_get_ContentType_m26D6492CA5D227AAC583CFC4A898C056ACEC8196_inline(L_84, /*hidden argument*/NULL);
V_12 = L_85;
String_t* L_86 = V_12;
bool L_87 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_86, _stringLiteral929E64373A1A3A451EAF8698A1D26A5C989E42EA, /*hidden argument*/NULL);
if (L_87)
{
goto IL_0219;
}
}
{
String_t* L_88 = V_12;
bool L_89 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_88, _stringLiteral796CC3E6D06777F1C198837519479B1D2F0024AD, /*hidden argument*/NULL);
if (L_89)
{
goto IL_025d;
}
}
{
String_t* L_90 = V_12;
bool L_91 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_90, _stringLiteralA475B0456F9E29FC0A863EA86E627DE0D6273626, /*hidden argument*/NULL);
if (L_91)
{
goto IL_02ab;
}
}
{
goto IL_02b6;
}
IL_0219:
{
ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * L_92 = V_11;
NullCheck(L_92);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_93 = ContentInfo_get_Content_mCF1CED122282F62BAA3453E585E487D50367289F_inline(L_92, /*hidden argument*/NULL);
NullCheck(L_93);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_94 = ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08(L_93, 0, /*hidden argument*/NULL);
NullCheck(L_94);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_95 = ASN1_get_Value_m9BD6239E12A6148AF9507C2F58058C6B8147A079(L_94, /*hidden argument*/NULL);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_96 = (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E *)il2cpp_codegen_object_new(ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E_il2cpp_TypeInfo_var);
ASN1__ctor_mE005F52336402C3D41EAD9E28A95910B3C0865DA(L_96, L_95, /*hidden argument*/NULL);
V_13 = L_96;
V_16 = 0;
goto IL_0250;
}
IL_0237:
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_97 = V_13;
int32_t L_98 = V_16;
NullCheck(L_97);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_99 = ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08(L_97, L_98, /*hidden argument*/NULL);
V_17 = L_99;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_100 = V_17;
PKCS12_ReadSafeBag_m054D3F397B2D07EBD0ECDA6575D16EAA5AAE1B7B(__this, L_100, /*hidden argument*/NULL);
int32_t L_101 = V_16;
V_16 = ((int32_t)il2cpp_codegen_add((int32_t)L_101, (int32_t)1));
}
IL_0250:
{
int32_t L_102 = V_16;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_103 = V_13;
NullCheck(L_103);
int32_t L_104 = ASN1_get_Count_m5A0E71B4C4A2257C0875AE1041AAA953C5B12A19(L_103, /*hidden argument*/NULL);
if ((((int32_t)L_102) < ((int32_t)L_104)))
{
goto IL_0237;
}
}
{
goto IL_02c1;
}
IL_025d:
{
ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * L_105 = V_11;
NullCheck(L_105);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_106 = ContentInfo_get_Content_mCF1CED122282F62BAA3453E585E487D50367289F_inline(L_105, /*hidden argument*/NULL);
NullCheck(L_106);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_107 = ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08(L_106, 0, /*hidden argument*/NULL);
EncryptedData_tA100D7E93FCF1B7CBD486522E841F0A980CCE61B * L_108 = (EncryptedData_tA100D7E93FCF1B7CBD486522E841F0A980CCE61B *)il2cpp_codegen_object_new(EncryptedData_tA100D7E93FCF1B7CBD486522E841F0A980CCE61B_il2cpp_TypeInfo_var);
EncryptedData__ctor_m385361DAE06A76AA773E49EF242400DE7F02A8FD(L_108, L_107, /*hidden argument*/NULL);
V_14 = L_108;
EncryptedData_tA100D7E93FCF1B7CBD486522E841F0A980CCE61B * L_109 = V_14;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_110 = PKCS12_Decrypt_mBEC36809198C23CF1A3DDBABEC167DAF259763AC(__this, L_109, /*hidden argument*/NULL);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_111 = (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E *)il2cpp_codegen_object_new(ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E_il2cpp_TypeInfo_var);
ASN1__ctor_mE005F52336402C3D41EAD9E28A95910B3C0865DA(L_111, L_110, /*hidden argument*/NULL);
V_15 = L_111;
V_18 = 0;
goto IL_029e;
}
IL_0285:
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_112 = V_15;
int32_t L_113 = V_18;
NullCheck(L_112);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_114 = ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08(L_112, L_113, /*hidden argument*/NULL);
V_19 = L_114;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_115 = V_19;
PKCS12_ReadSafeBag_m054D3F397B2D07EBD0ECDA6575D16EAA5AAE1B7B(__this, L_115, /*hidden argument*/NULL);
int32_t L_116 = V_18;
V_18 = ((int32_t)il2cpp_codegen_add((int32_t)L_116, (int32_t)1));
}
IL_029e:
{
int32_t L_117 = V_18;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_118 = V_15;
NullCheck(L_118);
int32_t L_119 = ASN1_get_Count_m5A0E71B4C4A2257C0875AE1041AAA953C5B12A19(L_118, /*hidden argument*/NULL);
if ((((int32_t)L_117) < ((int32_t)L_119)))
{
goto IL_0285;
}
}
{
goto IL_02c1;
}
IL_02ab:
{
NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4 * L_120 = (NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4 *)il2cpp_codegen_object_new(NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4_il2cpp_TypeInfo_var);
NotImplementedException__ctor_mEBAED0FCA8B8CCE7E96492474350BA35D14CF59C(L_120, _stringLiteral8979F67C086DEAF5044AC5C8AA93642B1431C146, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_120, NULL, PKCS12_Decode_m99D1E85A60263825BD361CFA623B088DE44FD2B7_RuntimeMethod_var);
}
IL_02b6:
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_121 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_121, _stringLiteralB3C4276351B5F9013DC3E70B3FBC9174A0379575, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_121, NULL, PKCS12_Decode_m99D1E85A60263825BD361CFA623B088DE44FD2B7_RuntimeMethod_var);
}
IL_02c1:
{
int32_t L_122 = V_10;
V_10 = ((int32_t)il2cpp_codegen_add((int32_t)L_122, (int32_t)1));
}
IL_02c7:
{
int32_t L_123 = V_10;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_124 = V_2;
NullCheck(L_124);
int32_t L_125 = ASN1_get_Count_m5A0E71B4C4A2257C0875AE1041AAA953C5B12A19(L_124, /*hidden argument*/NULL);
if ((((int32_t)L_123) < ((int32_t)L_125)))
{
goto IL_01cf;
}
}
{
return;
}
}
// System.Void Mono.Security.X509.PKCS12::Finalize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PKCS12_Finalize_m7D328ECDF5448A300EC39922C23A7004AD9CE4D4 (PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C * __this, const RuntimeMethod* method)
{
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
IL_0000:
try
{ // begin try (depth: 1)
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = __this->get__password_0();
if (!L_0)
{
goto IL_001c;
}
}
IL_0008:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = __this->get__password_0();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = __this->get__password_0();
NullCheck(L_2);
Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E((RuntimeArray *)(RuntimeArray *)L_1, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length)))), /*hidden argument*/NULL);
}
IL_001c:
{
__this->set__password_0((ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)NULL);
IL2CPP_LEAVE(0x2C, FINALLY_0025);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0025;
}
FINALLY_0025:
{ // begin finally (depth: 1)
Object_Finalize_m4015B7D3A44DE125C5FE34D7276CD4697C06F380(__this, /*hidden argument*/NULL);
IL2CPP_END_FINALLY(37)
} // end finally (depth: 1)
IL2CPP_CLEANUP(37)
{
IL2CPP_JUMP_TBL(0x2C, IL_002c)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_002c:
{
return;
}
}
// System.Void Mono.Security.X509.PKCS12::set_Password(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PKCS12_set_Password_mE1814AD9981817AEB8B4DAD7AED8DEA6A17F1DB0 (PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C * __this, String_t* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PKCS12_set_Password_mE1814AD9981817AEB8B4DAD7AED8DEA6A17F1DB0_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = __this->get__password_0();
if (!L_0)
{
goto IL_001c;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = __this->get__password_0();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = __this->get__password_0();
NullCheck(L_2);
Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E((RuntimeArray *)(RuntimeArray *)L_1, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length)))), /*hidden argument*/NULL);
}
IL_001c:
{
__this->set__password_0((ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)NULL);
String_t* L_3 = ___value0;
if (!L_3)
{
goto IL_0087;
}
}
{
String_t* L_4 = ___value0;
NullCheck(L_4);
int32_t L_5 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_4, /*hidden argument*/NULL);
if ((((int32_t)L_5) <= ((int32_t)0)))
{
goto IL_007b;
}
}
{
String_t* L_6 = ___value0;
NullCheck(L_6);
int32_t L_7 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_6, /*hidden argument*/NULL);
V_0 = L_7;
V_1 = 0;
int32_t L_8 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C_il2cpp_TypeInfo_var);
int32_t L_9 = PKCS12_get_MaximumPasswordLength_m456895C0914C8E686BC0548D036FAF11EB2AD266_inline(/*hidden argument*/NULL);
if ((((int32_t)L_8) >= ((int32_t)L_9)))
{
goto IL_004f;
}
}
{
String_t* L_10 = ___value0;
int32_t L_11 = V_0;
NullCheck(L_10);
Il2CppChar L_12 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_10, ((int32_t)il2cpp_codegen_subtract((int32_t)L_11, (int32_t)1)), /*hidden argument*/NULL);
if (!L_12)
{
goto IL_0055;
}
}
{
V_1 = 1;
goto IL_0055;
}
IL_004f:
{
IL2CPP_RUNTIME_CLASS_INIT(PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C_il2cpp_TypeInfo_var);
int32_t L_13 = PKCS12_get_MaximumPasswordLength_m456895C0914C8E686BC0548D036FAF11EB2AD266_inline(/*hidden argument*/NULL);
V_0 = L_13;
}
IL_0055:
{
int32_t L_14 = V_0;
int32_t L_15 = V_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_16 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15))<<(int32_t)1)));
__this->set__password_0(L_16);
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_17 = Encoding_get_BigEndianUnicode_m6CC17642A36943FE038F54729446D7E30D582BDD(/*hidden argument*/NULL);
String_t* L_18 = ___value0;
int32_t L_19 = V_0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_20 = __this->get__password_0();
NullCheck(L_17);
VirtFuncInvoker5< int32_t, String_t*, int32_t, int32_t, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t >::Invoke(19 /* System.Int32 System.Text.Encoding::GetBytes(System.String,System.Int32,System.Int32,System.Byte[],System.Int32) */, L_17, L_18, 0, L_19, L_20, 0);
return;
}
IL_007b:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_21 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)2);
__this->set__password_0(L_21);
}
IL_0087:
{
return;
}
}
// System.Int32 Mono.Security.X509.PKCS12::get_IterationCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PKCS12_get_IterationCount_m85A4D92CA6130D1BC6818CA8C434C9A8CFD120EC (PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get__iterations_7();
return L_0;
}
}
// System.Void Mono.Security.X509.PKCS12::set_IterationCount(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PKCS12_set_IterationCount_m95AA7918C2940DFAA9AD540AEE484DD8E9A0DA43 (PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->set__iterations_7(L_0);
return;
}
}
// System.Collections.ArrayList Mono.Security.X509.PKCS12::get_Keys()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * PKCS12_get_Keys_mAAA961BD9580ED8EE3B394B702945FCB820E34AE (PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PKCS12_get_Keys_mAAA961BD9580ED8EE3B394B702945FCB820E34AE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
SafeBag_t46FE0281DC1D6CAB5FD08FCDB3E57C2EA1859726 * V_1 = NULL;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_2 = NULL;
uint8_t V_3 = 0x0;
DSAParameters_tCA1A96A151F47B1904693C457243E3B919425AC6 V_4;
memset((&V_4), 0, sizeof(V_4));
EncryptedPrivateKeyInfo_tF582FAE09721F4F2BB353D5C2E28682FFB9C303D * V_5 = NULL;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_6 = NULL;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_7 = NULL;
DSAParameters_tCA1A96A151F47B1904693C457243E3B919425AC6 V_8;
memset((&V_8), 0, sizeof(V_8));
RuntimeObject* V_9 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
bool L_0 = __this->get__keyBagsChanged_4();
if (!L_0)
{
goto IL_0190;
}
}
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_1 = __this->get__keyBags_1();
NullCheck(L_1);
VirtActionInvoker0::Invoke(31 /* System.Void System.Collections.ArrayList::Clear() */, L_1);
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_2 = __this->get__safeBags_8();
NullCheck(L_2);
RuntimeObject* L_3 = VirtFuncInvoker0< RuntimeObject* >::Invoke(37 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_2);
V_0 = L_3;
}
IL_0022:
try
{ // begin try (depth: 1)
{
goto IL_0168;
}
IL_0027:
{
RuntimeObject* L_4 = V_0;
NullCheck(L_4);
RuntimeObject * L_5 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_4);
V_1 = ((SafeBag_t46FE0281DC1D6CAB5FD08FCDB3E57C2EA1859726 *)CastclassClass((RuntimeObject*)L_5, SafeBag_t46FE0281DC1D6CAB5FD08FCDB3E57C2EA1859726_il2cpp_TypeInfo_var));
SafeBag_t46FE0281DC1D6CAB5FD08FCDB3E57C2EA1859726 * L_6 = V_1;
NullCheck(L_6);
String_t* L_7 = SafeBag_get_BagOID_m111CD6142B7D3C61FB45932B8EF9A635D80244B5_inline(L_6, /*hidden argument*/NULL);
NullCheck(L_7);
bool L_8 = String_Equals_m9C4D78DFA0979504FE31429B64A4C26DF48020D1(L_7, _stringLiteral2F280ADB68040B360D7B03B819A13379B799EFAB, /*hidden argument*/NULL);
if (!L_8)
{
goto IL_00af;
}
}
IL_0045:
{
SafeBag_t46FE0281DC1D6CAB5FD08FCDB3E57C2EA1859726 * L_9 = V_1;
NullCheck(L_9);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_10 = SafeBag_get_ASN1_m77708924A6B21495CB27668AB3CDCC844724AAD1_inline(L_9, /*hidden argument*/NULL);
NullCheck(L_10);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_11 = ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08(L_10, 1, /*hidden argument*/NULL);
NullCheck(L_11);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_12 = ASN1_get_Value_m9BD6239E12A6148AF9507C2F58058C6B8147A079(L_11, /*hidden argument*/NULL);
PrivateKeyInfo_t053A73C524EC661748073EC908D290E2856DB5B9 * L_13 = (PrivateKeyInfo_t053A73C524EC661748073EC908D290E2856DB5B9 *)il2cpp_codegen_object_new(PrivateKeyInfo_t053A73C524EC661748073EC908D290E2856DB5B9_il2cpp_TypeInfo_var);
PrivateKeyInfo__ctor_m4FE1CE37466756FCCAD2C7320E6E8E8B0D4D603A(L_13, L_12, /*hidden argument*/NULL);
NullCheck(L_13);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_14 = PrivateKeyInfo_get_PrivateKey_mC390394E64E5FE39B4A833E7D91CF20A899179FA(L_13, /*hidden argument*/NULL);
V_2 = L_14;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_15 = V_2;
NullCheck(L_15);
int32_t L_16 = 0;
uint8_t L_17 = (L_15)->GetAt(static_cast<il2cpp_array_size_t>(L_16));
V_3 = L_17;
uint8_t L_18 = V_3;
if ((((int32_t)L_18) == ((int32_t)2)))
{
goto IL_0070;
}
}
IL_0069:
{
uint8_t L_19 = V_3;
if ((((int32_t)L_19) == ((int32_t)((int32_t)48))))
{
goto IL_008e;
}
}
IL_006e:
{
goto IL_00a0;
}
IL_0070:
{
il2cpp_codegen_initobj((&V_4), sizeof(DSAParameters_tCA1A96A151F47B1904693C457243E3B919425AC6 ));
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_20 = __this->get__keyBags_1();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_21 = V_2;
DSAParameters_tCA1A96A151F47B1904693C457243E3B919425AC6 L_22 = V_4;
DSA_t932F4A94DD2B782BFFC197544398826E6CDB64CF * L_23 = PrivateKeyInfo_DecodeDSA_m705D495634A3F9F97D73FA4FC995352DF5A3F5EF(L_21, L_22, /*hidden argument*/NULL);
NullCheck(L_20);
VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_20, L_23);
goto IL_00a0;
}
IL_008e:
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_24 = __this->get__keyBags_1();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_25 = V_2;
RSA_tB6C4B434B2AC02E3F8981DB2908C2018E251D145 * L_26 = PrivateKeyInfo_DecodeRSA_m47EEB9282E7E66ED9256F2097B4E5C757B79B080(L_25, /*hidden argument*/NULL);
NullCheck(L_24);
VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_24, L_26);
}
IL_00a0:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_27 = V_2;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_28 = V_2;
NullCheck(L_28);
Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E((RuntimeArray *)(RuntimeArray *)L_27, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_28)->max_length)))), /*hidden argument*/NULL);
goto IL_0168;
}
IL_00af:
{
SafeBag_t46FE0281DC1D6CAB5FD08FCDB3E57C2EA1859726 * L_29 = V_1;
NullCheck(L_29);
String_t* L_30 = SafeBag_get_BagOID_m111CD6142B7D3C61FB45932B8EF9A635D80244B5_inline(L_29, /*hidden argument*/NULL);
NullCheck(L_30);
bool L_31 = String_Equals_m9C4D78DFA0979504FE31429B64A4C26DF48020D1(L_30, _stringLiteral3F556C2B89C9D40F8FCB8B45DB88D9BA3BDB25A7, /*hidden argument*/NULL);
if (!L_31)
{
goto IL_0168;
}
}
IL_00c4:
{
SafeBag_t46FE0281DC1D6CAB5FD08FCDB3E57C2EA1859726 * L_32 = V_1;
NullCheck(L_32);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_33 = SafeBag_get_ASN1_m77708924A6B21495CB27668AB3CDCC844724AAD1_inline(L_32, /*hidden argument*/NULL);
NullCheck(L_33);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_34 = ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08(L_33, 1, /*hidden argument*/NULL);
NullCheck(L_34);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_35 = ASN1_get_Value_m9BD6239E12A6148AF9507C2F58058C6B8147A079(L_34, /*hidden argument*/NULL);
EncryptedPrivateKeyInfo_tF582FAE09721F4F2BB353D5C2E28682FFB9C303D * L_36 = (EncryptedPrivateKeyInfo_tF582FAE09721F4F2BB353D5C2E28682FFB9C303D *)il2cpp_codegen_object_new(EncryptedPrivateKeyInfo_tF582FAE09721F4F2BB353D5C2E28682FFB9C303D_il2cpp_TypeInfo_var);
EncryptedPrivateKeyInfo__ctor_mB2FBC3DDB156046CBB737280E490994A3B20362A(L_36, L_35, /*hidden argument*/NULL);
V_5 = L_36;
EncryptedPrivateKeyInfo_tF582FAE09721F4F2BB353D5C2E28682FFB9C303D * L_37 = V_5;
NullCheck(L_37);
String_t* L_38 = EncryptedPrivateKeyInfo_get_Algorithm_m93A361B3EE1EDF57B8D83ECF187CD75E6B45A9D9_inline(L_37, /*hidden argument*/NULL);
EncryptedPrivateKeyInfo_tF582FAE09721F4F2BB353D5C2E28682FFB9C303D * L_39 = V_5;
NullCheck(L_39);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_40 = EncryptedPrivateKeyInfo_get_Salt_mF231C0F3BC06F402910179312CC9245911450C4B(L_39, /*hidden argument*/NULL);
EncryptedPrivateKeyInfo_tF582FAE09721F4F2BB353D5C2E28682FFB9C303D * L_41 = V_5;
NullCheck(L_41);
int32_t L_42 = EncryptedPrivateKeyInfo_get_IterationCount_m3CD06665FBE6C8B3965AA0D870B702A4E6F833FC_inline(L_41, /*hidden argument*/NULL);
EncryptedPrivateKeyInfo_tF582FAE09721F4F2BB353D5C2E28682FFB9C303D * L_43 = V_5;
NullCheck(L_43);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_44 = EncryptedPrivateKeyInfo_get_EncryptedData_m0EB3C77C669117FCB3E0A5DA1758F9B0A18573D3(L_43, /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_45 = PKCS12_Decrypt_m31927063D7A8B21C5E2B81F0879117F269B2F340(__this, L_38, L_40, L_42, L_44, /*hidden argument*/NULL);
V_6 = L_45;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_46 = V_6;
PrivateKeyInfo_t053A73C524EC661748073EC908D290E2856DB5B9 * L_47 = (PrivateKeyInfo_t053A73C524EC661748073EC908D290E2856DB5B9 *)il2cpp_codegen_object_new(PrivateKeyInfo_t053A73C524EC661748073EC908D290E2856DB5B9_il2cpp_TypeInfo_var);
PrivateKeyInfo__ctor_m4FE1CE37466756FCCAD2C7320E6E8E8B0D4D603A(L_47, L_46, /*hidden argument*/NULL);
NullCheck(L_47);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_48 = PrivateKeyInfo_get_PrivateKey_mC390394E64E5FE39B4A833E7D91CF20A899179FA(L_47, /*hidden argument*/NULL);
V_7 = L_48;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_49 = V_7;
NullCheck(L_49);
int32_t L_50 = 0;
uint8_t L_51 = (L_49)->GetAt(static_cast<il2cpp_array_size_t>(L_50));
V_3 = L_51;
uint8_t L_52 = V_3;
if ((((int32_t)L_52) == ((int32_t)2)))
{
goto IL_011e;
}
}
IL_0117:
{
uint8_t L_53 = V_3;
if ((((int32_t)L_53) == ((int32_t)((int32_t)48))))
{
goto IL_013d;
}
}
IL_011c:
{
goto IL_0150;
}
IL_011e:
{
il2cpp_codegen_initobj((&V_8), sizeof(DSAParameters_tCA1A96A151F47B1904693C457243E3B919425AC6 ));
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_54 = __this->get__keyBags_1();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_55 = V_7;
DSAParameters_tCA1A96A151F47B1904693C457243E3B919425AC6 L_56 = V_8;
DSA_t932F4A94DD2B782BFFC197544398826E6CDB64CF * L_57 = PrivateKeyInfo_DecodeDSA_m705D495634A3F9F97D73FA4FC995352DF5A3F5EF(L_55, L_56, /*hidden argument*/NULL);
NullCheck(L_54);
VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_54, L_57);
goto IL_0150;
}
IL_013d:
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_58 = __this->get__keyBags_1();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_59 = V_7;
RSA_tB6C4B434B2AC02E3F8981DB2908C2018E251D145 * L_60 = PrivateKeyInfo_DecodeRSA_m47EEB9282E7E66ED9256F2097B4E5C757B79B080(L_59, /*hidden argument*/NULL);
NullCheck(L_58);
VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_58, L_60);
}
IL_0150:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_61 = V_7;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_62 = V_7;
NullCheck(L_62);
Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E((RuntimeArray *)(RuntimeArray *)L_61, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_62)->max_length)))), /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_63 = V_6;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_64 = V_6;
NullCheck(L_64);
Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E((RuntimeArray *)(RuntimeArray *)L_63, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_64)->max_length)))), /*hidden argument*/NULL);
}
IL_0168:
{
RuntimeObject* L_65 = V_0;
NullCheck(L_65);
bool L_66 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_65);
if (L_66)
{
goto IL_0027;
}
}
IL_0173:
{
IL2CPP_LEAVE(0x189, FINALLY_0175);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0175;
}
FINALLY_0175:
{ // begin finally (depth: 1)
{
RuntimeObject* L_67 = V_0;
V_9 = ((RuntimeObject*)IsInst((RuntimeObject*)L_67, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var));
RuntimeObject* L_68 = V_9;
if (!L_68)
{
goto IL_0188;
}
}
IL_0181:
{
RuntimeObject* L_69 = V_9;
NullCheck(L_69);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_69);
}
IL_0188:
{
IL2CPP_END_FINALLY(373)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(373)
{
IL2CPP_JUMP_TBL(0x189, IL_0189)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0189:
{
__this->set__keyBagsChanged_4((bool)0);
}
IL_0190:
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_70 = __this->get__keyBags_1();
IL2CPP_RUNTIME_CLASS_INIT(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_il2cpp_TypeInfo_var);
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_71 = ArrayList_ReadOnly_m15C79B069370829463875D47C52859A0F539F90F(L_70, /*hidden argument*/NULL);
return L_71;
}
}
// Mono.Security.X509.X509CertificateCollection Mono.Security.X509.PKCS12::get_Certificates()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509CertificateCollection_t423BA1B9FAA983BA745023994C648C6DAC3E5A1A * PKCS12_get_Certificates_mB8B81E86E481809CAB88C4657FDFCA67FE5190F4 (PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PKCS12_get_Certificates_mB8B81E86E481809CAB88C4657FDFCA67FE5190F4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
SafeBag_t46FE0281DC1D6CAB5FD08FCDB3E57C2EA1859726 * V_1 = NULL;
ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * 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);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
bool L_0 = __this->get__certsChanged_6();
if (!L_0)
{
goto IL_009d;
}
}
{
X509CertificateCollection_t423BA1B9FAA983BA745023994C648C6DAC3E5A1A * L_1 = __this->get__certs_3();
NullCheck(L_1);
CollectionBase_Clear_m532DA443B53F9D48FAC7184B5C405D8E725E554A(L_1, /*hidden argument*/NULL);
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_2 = __this->get__safeBags_8();
NullCheck(L_2);
RuntimeObject* L_3 = VirtFuncInvoker0< RuntimeObject* >::Invoke(37 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_2);
V_0 = L_3;
}
IL_0022:
try
{ // begin try (depth: 1)
{
goto IL_007b;
}
IL_0024:
{
RuntimeObject* L_4 = V_0;
NullCheck(L_4);
RuntimeObject * L_5 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_4);
V_1 = ((SafeBag_t46FE0281DC1D6CAB5FD08FCDB3E57C2EA1859726 *)CastclassClass((RuntimeObject*)L_5, SafeBag_t46FE0281DC1D6CAB5FD08FCDB3E57C2EA1859726_il2cpp_TypeInfo_var));
SafeBag_t46FE0281DC1D6CAB5FD08FCDB3E57C2EA1859726 * L_6 = V_1;
NullCheck(L_6);
String_t* L_7 = SafeBag_get_BagOID_m111CD6142B7D3C61FB45932B8EF9A635D80244B5_inline(L_6, /*hidden argument*/NULL);
NullCheck(L_7);
bool L_8 = String_Equals_m9C4D78DFA0979504FE31429B64A4C26DF48020D1(L_7, _stringLiteralF02768AE02EDF48DA977F708A0513A95FDC0F733, /*hidden argument*/NULL);
if (!L_8)
{
goto IL_007b;
}
}
IL_0042:
{
SafeBag_t46FE0281DC1D6CAB5FD08FCDB3E57C2EA1859726 * L_9 = V_1;
NullCheck(L_9);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_10 = SafeBag_get_ASN1_m77708924A6B21495CB27668AB3CDCC844724AAD1_inline(L_9, /*hidden argument*/NULL);
NullCheck(L_10);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_11 = ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08(L_10, 1, /*hidden argument*/NULL);
NullCheck(L_11);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_12 = ASN1_get_Value_m9BD6239E12A6148AF9507C2F58058C6B8147A079(L_11, /*hidden argument*/NULL);
ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * L_13 = (ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E *)il2cpp_codegen_object_new(ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E_il2cpp_TypeInfo_var);
ContentInfo__ctor_mFFDEEE8545287FC5A22740B7E06F6D64D401E196(L_13, L_12, /*hidden argument*/NULL);
V_2 = L_13;
X509CertificateCollection_t423BA1B9FAA983BA745023994C648C6DAC3E5A1A * L_14 = __this->get__certs_3();
ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * L_15 = V_2;
NullCheck(L_15);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_16 = ContentInfo_get_Content_mCF1CED122282F62BAA3453E585E487D50367289F_inline(L_15, /*hidden argument*/NULL);
NullCheck(L_16);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_17 = ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08(L_16, 0, /*hidden argument*/NULL);
NullCheck(L_17);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_18 = ASN1_get_Value_m9BD6239E12A6148AF9507C2F58058C6B8147A079(L_17, /*hidden argument*/NULL);
X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B * L_19 = (X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B *)il2cpp_codegen_object_new(X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B_il2cpp_TypeInfo_var);
X509Certificate__ctor_mE2BC6649D450A36E902A2D6BEB50C49130411129(L_19, L_18, /*hidden argument*/NULL);
NullCheck(L_14);
X509CertificateCollection_Add_mC060190867D9C5D182236A313FE912DFCCE1F785(L_14, L_19, /*hidden argument*/NULL);
}
IL_007b:
{
RuntimeObject* L_20 = V_0;
NullCheck(L_20);
bool L_21 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_20);
if (L_21)
{
goto IL_0024;
}
}
IL_0083:
{
IL2CPP_LEAVE(0x96, FINALLY_0085);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0085;
}
FINALLY_0085:
{ // begin finally (depth: 1)
{
RuntimeObject* L_22 = V_0;
V_3 = ((RuntimeObject*)IsInst((RuntimeObject*)L_22, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var));
RuntimeObject* L_23 = V_3;
if (!L_23)
{
goto IL_0095;
}
}
IL_008f:
{
RuntimeObject* L_24 = V_3;
NullCheck(L_24);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_24);
}
IL_0095:
{
IL2CPP_END_FINALLY(133)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(133)
{
IL2CPP_JUMP_TBL(0x96, IL_0096)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0096:
{
__this->set__certsChanged_6((bool)0);
}
IL_009d:
{
X509CertificateCollection_t423BA1B9FAA983BA745023994C648C6DAC3E5A1A * L_25 = __this->get__certs_3();
return L_25;
}
}
// System.Security.Cryptography.RandomNumberGenerator Mono.Security.X509.PKCS12::get_RNG()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * PKCS12_get_RNG_m41E242AD5803360A10A8084A081F54F6D3402736 (PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C * __this, const RuntimeMethod* method)
{
{
RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * L_0 = __this->get__rng_9();
if (L_0)
{
goto IL_0013;
}
}
{
RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * L_1 = RandomNumberGenerator_Create_mB84B1BA538B29D0679F310D3B574A7D5BAA890C4(/*hidden argument*/NULL);
__this->set__rng_9(L_1);
}
IL_0013:
{
RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * L_2 = __this->get__rng_9();
return L_2;
}
}
// System.Boolean Mono.Security.X509.PKCS12::Compare(System.Byte[],System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PKCS12_Compare_m12F289CEDEFD3FCB171A1D84CFC3B38657041FDC (PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___expected0, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___actual1, const RuntimeMethod* method)
{
bool V_0 = false;
int32_t V_1 = 0;
{
V_0 = (bool)0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___expected0;
NullCheck(L_0);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = ___actual1;
NullCheck(L_1);
if ((!(((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length))))) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_1)->max_length))))))))
{
goto IL_0024;
}
}
{
V_1 = 0;
goto IL_001c;
}
IL_000e:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = ___expected0;
int32_t L_3 = V_1;
NullCheck(L_2);
int32_t L_4 = L_3;
uint8_t L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_6 = ___actual1;
int32_t L_7 = V_1;
NullCheck(L_6);
int32_t L_8 = L_7;
uint8_t L_9 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_8));
if ((((int32_t)L_5) == ((int32_t)L_9)))
{
goto IL_0018;
}
}
{
return (bool)0;
}
IL_0018:
{
int32_t L_10 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1));
}
IL_001c:
{
int32_t L_11 = V_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_12 = ___expected0;
NullCheck(L_12);
if ((((int32_t)L_11) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_12)->max_length)))))))
{
goto IL_000e;
}
}
{
V_0 = (bool)1;
}
IL_0024:
{
bool L_13 = V_0;
return L_13;
}
}
// System.Security.Cryptography.SymmetricAlgorithm Mono.Security.X509.PKCS12::GetSymmetricAlgorithm(System.String,System.Byte[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SymmetricAlgorithm_t0A2EC7E7AD8B8976832B4F0AC432B691F862E789 * PKCS12_GetSymmetricAlgorithm_mD3F3C0B83D3F2F2F384895C287C95AEACC9D237B (PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C * __this, String_t* ___algorithmOid0, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___salt1, int32_t ___iterationCount2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PKCS12_GetSymmetricAlgorithm_mD3F3C0B83D3F2F2F384895C287C95AEACC9D237B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
int32_t V_1 = 0;
int32_t V_2 = 0;
DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D * V_3 = NULL;
SymmetricAlgorithm_t0A2EC7E7AD8B8976832B4F0AC432B691F862E789 * V_4 = NULL;
uint32_t V_5 = 0;
{
V_0 = (String_t*)NULL;
V_1 = 8;
V_2 = 8;
DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D * L_0 = (DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D *)il2cpp_codegen_object_new(DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D_il2cpp_TypeInfo_var);
DeriveBytes__ctor_mCF98BD3EFADD4D2F34101977C2B49258932F19C2(L_0, /*hidden argument*/NULL);
V_3 = L_0;
DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D * L_1 = V_3;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = __this->get__password_0();
NullCheck(L_1);
DeriveBytes_set_Password_m01796801BB8FD1E5F9D62F48A057F936CE0D0E4D(L_1, L_2, /*hidden argument*/NULL);
DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D * L_3 = V_3;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = ___salt1;
NullCheck(L_3);
DeriveBytes_set_Salt_m259A4E6B31DF7C039E776B473B4C5208890E8C5E(L_3, L_4, /*hidden argument*/NULL);
DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D * L_5 = V_3;
int32_t L_6 = ___iterationCount2;
NullCheck(L_5);
DeriveBytes_set_IterationCount_mFE67702E80E2748EA2B61D15E2E58CB9A4173143_inline(L_5, L_6, /*hidden argument*/NULL);
String_t* L_7 = ___algorithmOid0;
uint32_t L_8 = U3CPrivateImplementationDetailsU3E_ComputeStringHash_m8375D44A8A75C7D8223EA98CF65C40C0BA8C7BEB(L_7, /*hidden argument*/NULL);
V_5 = L_8;
uint32_t L_9 = V_5;
if ((!(((uint32_t)L_9) <= ((uint32_t)((int32_t)-1345144596)))))
{
goto IL_0092;
}
}
{
uint32_t L_10 = V_5;
if ((!(((uint32_t)L_10) <= ((uint32_t)((int32_t)-1412255072)))))
{
goto IL_0069;
}
}
{
uint32_t L_11 = V_5;
if ((((int32_t)L_11) == ((int32_t)((int32_t)1314512600))))
{
goto IL_0135;
}
}
{
uint32_t L_12 = V_5;
if ((((int32_t)L_12) == ((int32_t)((int32_t)1331290219))))
{
goto IL_014a;
}
}
{
uint32_t L_13 = V_5;
if ((((int32_t)L_13) == ((int32_t)((int32_t)-1412255072))))
{
goto IL_01c8;
}
}
{
goto IL_02ed;
}
IL_0069:
{
uint32_t L_14 = V_5;
if ((((int32_t)L_14) == ((int32_t)((int32_t)-1378699834))))
{
goto IL_019e;
}
}
{
uint32_t L_15 = V_5;
if ((((int32_t)L_15) == ((int32_t)((int32_t)-1361922215))))
{
goto IL_01b3;
}
}
{
uint32_t L_16 = V_5;
if ((((int32_t)L_16) == ((int32_t)((int32_t)-1345144596))))
{
goto IL_0174;
}
}
{
goto IL_02ed;
}
IL_0092:
{
uint32_t L_17 = V_5;
if ((!(((uint32_t)L_17) <= ((uint32_t)((int32_t)-751088392)))))
{
goto IL_00c1;
}
}
{
uint32_t L_18 = V_5;
if ((((int32_t)L_18) == ((int32_t)((int32_t)-1328366977))))
{
goto IL_0189;
}
}
{
uint32_t L_19 = V_5;
if ((((int32_t)L_19) == ((int32_t)((int32_t)-1294811739))))
{
goto IL_015f;
}
}
{
uint32_t L_20 = V_5;
if ((((int32_t)L_20) == ((int32_t)((int32_t)-751088392))))
{
goto IL_00e1;
}
}
{
goto IL_02ed;
}
IL_00c1:
{
uint32_t L_21 = V_5;
if ((((int32_t)L_21) == ((int32_t)((int32_t)-717533154))))
{
goto IL_00f6;
}
}
{
uint32_t L_22 = V_5;
if ((((int32_t)L_22) == ((int32_t)((int32_t)-667200297))))
{
goto IL_010b;
}
}
{
uint32_t L_23 = V_5;
if ((((int32_t)L_23) == ((int32_t)((int32_t)-633645059))))
{
goto IL_0120;
}
}
{
goto IL_02ed;
}
IL_00e1:
{
String_t* L_24 = ___algorithmOid0;
bool L_25 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_24, _stringLiteral0425D7D3778CCF20AE9594EC58FAE88CACC94F5E, /*hidden argument*/NULL);
if (L_25)
{
goto IL_01dd;
}
}
{
goto IL_02ed;
}
IL_00f6:
{
String_t* L_26 = ___algorithmOid0;
bool L_27 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_26, _stringLiteralC438BA3DF76E517ADEB7757B01B707A8FD7C53B9, /*hidden argument*/NULL);
if (L_27)
{
goto IL_01f3;
}
}
{
goto IL_02ed;
}
IL_010b:
{
String_t* L_28 = ___algorithmOid0;
bool L_29 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_28, _stringLiteralDC7A4E51273DD99D30CC77D766CCBD48170C6CAC, /*hidden argument*/NULL);
if (L_29)
{
goto IL_0209;
}
}
{
goto IL_02ed;
}
IL_0120:
{
String_t* L_30 = ___algorithmOid0;
bool L_31 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_30, _stringLiteralA6D742824424B5CC45A579F1CBB3776F08DDB783, /*hidden argument*/NULL);
if (L_31)
{
goto IL_0221;
}
}
{
goto IL_02ed;
}
IL_0135:
{
String_t* L_32 = ___algorithmOid0;
bool L_33 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_32, _stringLiteral3B8985A7F6F3523C5194B27380C8B9A09D4E7286, /*hidden argument*/NULL);
if (L_33)
{
goto IL_0239;
}
}
{
goto IL_02ed;
}
IL_014a:
{
String_t* L_34 = ___algorithmOid0;
bool L_35 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_34, _stringLiteral4E803123E3F3ACF68327B5004FFBFE1BEA455372, /*hidden argument*/NULL);
if (L_35)
{
goto IL_024f;
}
}
{
goto IL_02ed;
}
IL_015f:
{
String_t* L_36 = ___algorithmOid0;
bool L_37 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_36, _stringLiteralE2A4A83E97480FEE533C17B7E9E66E07F7D508D4, /*hidden argument*/NULL);
if (L_37)
{
goto IL_0267;
}
}
{
goto IL_02ed;
}
IL_0174:
{
String_t* L_38 = ___algorithmOid0;
bool L_39 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_38, _stringLiteralC7B28B0B9455757301EFBE14A68ACEFE87C35B48, /*hidden argument*/NULL);
if (L_39)
{
goto IL_027f;
}
}
{
goto IL_02ed;
}
IL_0189:
{
String_t* L_40 = ___algorithmOid0;
bool L_41 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_40, _stringLiteral8123C11021D033CA8E67AEF3CA8B6BC4D85B977C, /*hidden argument*/NULL);
if (L_41)
{
goto IL_0296;
}
}
{
goto IL_02ed;
}
IL_019e:
{
String_t* L_42 = ___algorithmOid0;
bool L_43 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_42, _stringLiteral8E0BFE8117E07EBEF6C2CD100E3BCC63032D3607, /*hidden argument*/NULL);
if (L_43)
{
goto IL_02ac;
}
}
{
goto IL_02ed;
}
IL_01b3:
{
String_t* L_44 = ___algorithmOid0;
bool L_45 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_44, _stringLiteralD1CEA7B241EAF16F5C4A6E380E2B3624E7A80287, /*hidden argument*/NULL);
if (L_45)
{
goto IL_02c2;
}
}
{
goto IL_02ed;
}
IL_01c8:
{
String_t* L_46 = ___algorithmOid0;
bool L_47 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_46, _stringLiteralDC62B38EEB716E83A2EF7B3E3983DFF61AAFA8F1, /*hidden argument*/NULL);
if (L_47)
{
goto IL_02d8;
}
}
{
goto IL_02ed;
}
IL_01dd:
{
DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D * L_48 = V_3;
NullCheck(L_48);
DeriveBytes_set_HashName_mBDFF79A4AAA347FC742CF1E25214854EF200DA72_inline(L_48, _stringLiteral83BD2260257D398076A738813A94BD2F37D6F282, /*hidden argument*/NULL);
V_0 = _stringLiteral26DB4ADFD18BEF9CD0D83082F02FA1E98DDA8B4D;
goto IL_02fe;
}
IL_01f3:
{
DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D * L_49 = V_3;
NullCheck(L_49);
DeriveBytes_set_HashName_mBDFF79A4AAA347FC742CF1E25214854EF200DA72_inline(L_49, _stringLiteralB773BED04A48DE200B96981BB79467413A222066, /*hidden argument*/NULL);
V_0 = _stringLiteral26DB4ADFD18BEF9CD0D83082F02FA1E98DDA8B4D;
goto IL_02fe;
}
IL_0209:
{
DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D * L_50 = V_3;
NullCheck(L_50);
DeriveBytes_set_HashName_mBDFF79A4AAA347FC742CF1E25214854EF200DA72_inline(L_50, _stringLiteral83BD2260257D398076A738813A94BD2F37D6F282, /*hidden argument*/NULL);
V_0 = _stringLiteral2B69EA076BD364D53AD2617C3A0BF3387013220C;
V_1 = 4;
goto IL_02fe;
}
IL_0221:
{
DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D * L_51 = V_3;
NullCheck(L_51);
DeriveBytes_set_HashName_mBDFF79A4AAA347FC742CF1E25214854EF200DA72_inline(L_51, _stringLiteralB773BED04A48DE200B96981BB79467413A222066, /*hidden argument*/NULL);
V_0 = _stringLiteral2B69EA076BD364D53AD2617C3A0BF3387013220C;
V_1 = 4;
goto IL_02fe;
}
IL_0239:
{
DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D * L_52 = V_3;
NullCheck(L_52);
DeriveBytes_set_HashName_mBDFF79A4AAA347FC742CF1E25214854EF200DA72_inline(L_52, _stringLiteralE1744A525099D9A53C0460EF9CB7AB0E4C4FC939, /*hidden argument*/NULL);
V_0 = _stringLiteral26DB4ADFD18BEF9CD0D83082F02FA1E98DDA8B4D;
goto IL_02fe;
}
IL_024f:
{
DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D * L_53 = V_3;
NullCheck(L_53);
DeriveBytes_set_HashName_mBDFF79A4AAA347FC742CF1E25214854EF200DA72_inline(L_53, _stringLiteralE1744A525099D9A53C0460EF9CB7AB0E4C4FC939, /*hidden argument*/NULL);
V_0 = _stringLiteral2B69EA076BD364D53AD2617C3A0BF3387013220C;
V_1 = 4;
goto IL_02fe;
}
IL_0267:
{
DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D * L_54 = V_3;
NullCheck(L_54);
DeriveBytes_set_HashName_mBDFF79A4AAA347FC742CF1E25214854EF200DA72_inline(L_54, _stringLiteralE1744A525099D9A53C0460EF9CB7AB0E4C4FC939, /*hidden argument*/NULL);
V_0 = _stringLiteral80C050AFCE55BDA39642CED27679D2CBB619663F;
V_1 = ((int32_t)16);
V_2 = 0;
goto IL_02fe;
}
IL_027f:
{
DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D * L_55 = V_3;
NullCheck(L_55);
DeriveBytes_set_HashName_mBDFF79A4AAA347FC742CF1E25214854EF200DA72_inline(L_55, _stringLiteralE1744A525099D9A53C0460EF9CB7AB0E4C4FC939, /*hidden argument*/NULL);
V_0 = _stringLiteral80C050AFCE55BDA39642CED27679D2CBB619663F;
V_1 = 5;
V_2 = 0;
goto IL_02fe;
}
IL_0296:
{
DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D * L_56 = V_3;
NullCheck(L_56);
DeriveBytes_set_HashName_mBDFF79A4AAA347FC742CF1E25214854EF200DA72_inline(L_56, _stringLiteralE1744A525099D9A53C0460EF9CB7AB0E4C4FC939, /*hidden argument*/NULL);
V_0 = _stringLiteral2113842AE751CFD206BA143B55BA46A421A7E07F;
V_1 = ((int32_t)24);
goto IL_02fe;
}
IL_02ac:
{
DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D * L_57 = V_3;
NullCheck(L_57);
DeriveBytes_set_HashName_mBDFF79A4AAA347FC742CF1E25214854EF200DA72_inline(L_57, _stringLiteralE1744A525099D9A53C0460EF9CB7AB0E4C4FC939, /*hidden argument*/NULL);
V_0 = _stringLiteral2113842AE751CFD206BA143B55BA46A421A7E07F;
V_1 = ((int32_t)16);
goto IL_02fe;
}
IL_02c2:
{
DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D * L_58 = V_3;
NullCheck(L_58);
DeriveBytes_set_HashName_mBDFF79A4AAA347FC742CF1E25214854EF200DA72_inline(L_58, _stringLiteralE1744A525099D9A53C0460EF9CB7AB0E4C4FC939, /*hidden argument*/NULL);
V_0 = _stringLiteral2B69EA076BD364D53AD2617C3A0BF3387013220C;
V_1 = ((int32_t)16);
goto IL_02fe;
}
IL_02d8:
{
DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D * L_59 = V_3;
NullCheck(L_59);
DeriveBytes_set_HashName_mBDFF79A4AAA347FC742CF1E25214854EF200DA72_inline(L_59, _stringLiteralE1744A525099D9A53C0460EF9CB7AB0E4C4FC939, /*hidden argument*/NULL);
V_0 = _stringLiteral2B69EA076BD364D53AD2617C3A0BF3387013220C;
V_1 = 5;
goto IL_02fe;
}
IL_02ed:
{
String_t* L_60 = V_0;
String_t* L_61 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(_stringLiteral7CB21E3398253A9FD01555A78CDD038F46778484, L_60, /*hidden argument*/NULL);
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_62 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_62, L_61, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_62, NULL, PKCS12_GetSymmetricAlgorithm_mD3F3C0B83D3F2F2F384895C287C95AEACC9D237B_RuntimeMethod_var);
}
IL_02fe:
{
V_4 = (SymmetricAlgorithm_t0A2EC7E7AD8B8976832B4F0AC432B691F862E789 *)NULL;
String_t* L_63 = V_0;
SymmetricAlgorithm_t0A2EC7E7AD8B8976832B4F0AC432B691F862E789 * L_64 = SymmetricAlgorithm_Create_m09E1B072260AEBCFF0850A7F4C129F529CC7D8A5(L_63, /*hidden argument*/NULL);
V_4 = L_64;
SymmetricAlgorithm_t0A2EC7E7AD8B8976832B4F0AC432B691F862E789 * L_65 = V_4;
DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D * L_66 = V_3;
int32_t L_67 = V_1;
NullCheck(L_66);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_68 = DeriveBytes_DeriveKey_mDF33F048359AB75CC3F1F634A67EB4EDEF02E796(L_66, L_67, /*hidden argument*/NULL);
NullCheck(L_65);
VirtActionInvoker1< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(12 /* System.Void System.Security.Cryptography.SymmetricAlgorithm::set_Key(System.Byte[]) */, L_65, L_68);
int32_t L_69 = V_2;
if ((((int32_t)L_69) <= ((int32_t)0)))
{
goto IL_0331;
}
}
{
SymmetricAlgorithm_t0A2EC7E7AD8B8976832B4F0AC432B691F862E789 * L_70 = V_4;
DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D * L_71 = V_3;
int32_t L_72 = V_2;
NullCheck(L_71);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_73 = DeriveBytes_DeriveIV_mEBA107DC29EA28DF2575F45EF7A0C55840BD8F03(L_71, L_72, /*hidden argument*/NULL);
NullCheck(L_70);
VirtActionInvoker1< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(10 /* System.Void System.Security.Cryptography.SymmetricAlgorithm::set_IV(System.Byte[]) */, L_70, L_73);
SymmetricAlgorithm_t0A2EC7E7AD8B8976832B4F0AC432B691F862E789 * L_74 = V_4;
NullCheck(L_74);
VirtActionInvoker1< int32_t >::Invoke(17 /* System.Void System.Security.Cryptography.SymmetricAlgorithm::set_Mode(System.Security.Cryptography.CipherMode) */, L_74, 1);
}
IL_0331:
{
SymmetricAlgorithm_t0A2EC7E7AD8B8976832B4F0AC432B691F862E789 * L_75 = V_4;
return L_75;
}
}
// System.Byte[] Mono.Security.X509.PKCS12::Decrypt(System.String,System.Byte[],System.Int32,System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* PKCS12_Decrypt_m31927063D7A8B21C5E2B81F0879117F269B2F340 (PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C * __this, String_t* ___algorithmOid0, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___salt1, int32_t ___iterationCount2, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___encryptedData3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PKCS12_Decrypt_m31927063D7A8B21C5E2B81F0879117F269B2F340_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
SymmetricAlgorithm_t0A2EC7E7AD8B8976832B4F0AC432B691F862E789 * V_0 = NULL;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_1 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
V_0 = (SymmetricAlgorithm_t0A2EC7E7AD8B8976832B4F0AC432B691F862E789 *)NULL;
V_1 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)NULL;
}
IL_0004:
try
{ // begin try (depth: 1)
String_t* L_0 = ___algorithmOid0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = ___salt1;
int32_t L_2 = ___iterationCount2;
SymmetricAlgorithm_t0A2EC7E7AD8B8976832B4F0AC432B691F862E789 * L_3 = PKCS12_GetSymmetricAlgorithm_mD3F3C0B83D3F2F2F384895C287C95AEACC9D237B(__this, L_0, L_1, L_2, /*hidden argument*/NULL);
V_0 = L_3;
SymmetricAlgorithm_t0A2EC7E7AD8B8976832B4F0AC432B691F862E789 * L_4 = V_0;
NullCheck(L_4);
RuntimeObject* L_5 = VirtFuncInvoker0< RuntimeObject* >::Invoke(22 /* System.Security.Cryptography.ICryptoTransform System.Security.Cryptography.SymmetricAlgorithm::CreateDecryptor() */, L_4);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_6 = ___encryptedData3;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_7 = ___encryptedData3;
NullCheck(L_7);
NullCheck(L_5);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_8 = InterfaceFuncInvoker3< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(4 /* System.Byte[] System.Security.Cryptography.ICryptoTransform::TransformFinalBlock(System.Byte[],System.Int32,System.Int32) */, ICryptoTransform_t43C29A7F3A8C2DDAC9F3BF9BF739B03E4D5DE9A9_il2cpp_TypeInfo_var, L_5, L_6, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_7)->max_length)))));
V_1 = L_8;
IL2CPP_LEAVE(0x2D, FINALLY_0023);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0023;
}
FINALLY_0023:
{ // begin finally (depth: 1)
{
SymmetricAlgorithm_t0A2EC7E7AD8B8976832B4F0AC432B691F862E789 * L_9 = V_0;
if (!L_9)
{
goto IL_002c;
}
}
IL_0026:
{
SymmetricAlgorithm_t0A2EC7E7AD8B8976832B4F0AC432B691F862E789 * L_10 = V_0;
NullCheck(L_10);
SymmetricAlgorithm_Clear_m8487379B135918E72684597CFE388EF7FCA733D2(L_10, /*hidden argument*/NULL);
}
IL_002c:
{
IL2CPP_END_FINALLY(35)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(35)
{
IL2CPP_JUMP_TBL(0x2D, IL_002d)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_002d:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_11 = V_1;
return L_11;
}
}
// System.Byte[] Mono.Security.X509.PKCS12::Decrypt(Mono.Security.PKCS7_EncryptedData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* PKCS12_Decrypt_mBEC36809198C23CF1A3DDBABEC167DAF259763AC (PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C * __this, EncryptedData_tA100D7E93FCF1B7CBD486522E841F0A980CCE61B * ___ed0, const RuntimeMethod* method)
{
{
EncryptedData_tA100D7E93FCF1B7CBD486522E841F0A980CCE61B * L_0 = ___ed0;
NullCheck(L_0);
ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * L_1 = EncryptedData_get_EncryptionAlgorithm_m06B627AA11F08C1515676B6E58DEDDD43B4F380F_inline(L_0, /*hidden argument*/NULL);
NullCheck(L_1);
String_t* L_2 = ContentInfo_get_ContentType_m26D6492CA5D227AAC583CFC4A898C056ACEC8196_inline(L_1, /*hidden argument*/NULL);
EncryptedData_tA100D7E93FCF1B7CBD486522E841F0A980CCE61B * L_3 = ___ed0;
NullCheck(L_3);
ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * L_4 = EncryptedData_get_EncryptionAlgorithm_m06B627AA11F08C1515676B6E58DEDDD43B4F380F_inline(L_3, /*hidden argument*/NULL);
NullCheck(L_4);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_5 = ContentInfo_get_Content_mCF1CED122282F62BAA3453E585E487D50367289F_inline(L_4, /*hidden argument*/NULL);
NullCheck(L_5);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_6 = ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08(L_5, 0, /*hidden argument*/NULL);
NullCheck(L_6);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_7 = ASN1_get_Value_m9BD6239E12A6148AF9507C2F58058C6B8147A079(L_6, /*hidden argument*/NULL);
EncryptedData_tA100D7E93FCF1B7CBD486522E841F0A980CCE61B * L_8 = ___ed0;
NullCheck(L_8);
ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * L_9 = EncryptedData_get_EncryptionAlgorithm_m06B627AA11F08C1515676B6E58DEDDD43B4F380F_inline(L_8, /*hidden argument*/NULL);
NullCheck(L_9);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_10 = ContentInfo_get_Content_mCF1CED122282F62BAA3453E585E487D50367289F_inline(L_9, /*hidden argument*/NULL);
NullCheck(L_10);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_11 = ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08(L_10, 1, /*hidden argument*/NULL);
int32_t L_12 = ASN1Convert_ToInt32_mA2A8761F965979408D46FBEB946DB59F36137A5E(L_11, /*hidden argument*/NULL);
EncryptedData_tA100D7E93FCF1B7CBD486522E841F0A980CCE61B * L_13 = ___ed0;
NullCheck(L_13);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_14 = EncryptedData_get_EncryptedContent_m3C19AF07E7124131F08D7223E7B955AE67896BB8(L_13, /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_15 = PKCS12_Decrypt_m31927063D7A8B21C5E2B81F0879117F269B2F340(__this, L_2, L_7, L_12, L_14, /*hidden argument*/NULL);
return L_15;
}
}
// System.Byte[] Mono.Security.X509.PKCS12::Encrypt(System.String,System.Byte[],System.Int32,System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* PKCS12_Encrypt_m46E5121EFD2B8D707F1028204C59EE95955FA992 (PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C * __this, String_t* ___algorithmOid0, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___salt1, int32_t ___iterationCount2, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___data3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PKCS12_Encrypt_m46E5121EFD2B8D707F1028204C59EE95955FA992_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_0 = NULL;
SymmetricAlgorithm_t0A2EC7E7AD8B8976832B4F0AC432B691F862E789 * V_1 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
V_0 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)NULL;
String_t* L_0 = ___algorithmOid0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = ___salt1;
int32_t L_2 = ___iterationCount2;
SymmetricAlgorithm_t0A2EC7E7AD8B8976832B4F0AC432B691F862E789 * L_3 = PKCS12_GetSymmetricAlgorithm_mD3F3C0B83D3F2F2F384895C287C95AEACC9D237B(__this, L_0, L_1, L_2, /*hidden argument*/NULL);
V_1 = L_3;
}
IL_000c:
try
{ // begin try (depth: 1)
SymmetricAlgorithm_t0A2EC7E7AD8B8976832B4F0AC432B691F862E789 * L_4 = V_1;
NullCheck(L_4);
RuntimeObject* L_5 = VirtFuncInvoker0< RuntimeObject* >::Invoke(20 /* System.Security.Cryptography.ICryptoTransform System.Security.Cryptography.SymmetricAlgorithm::CreateEncryptor() */, L_4);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_6 = ___data3;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_7 = ___data3;
NullCheck(L_7);
NullCheck(L_5);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_8 = InterfaceFuncInvoker3< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(4 /* System.Byte[] System.Security.Cryptography.ICryptoTransform::TransformFinalBlock(System.Byte[],System.Int32,System.Int32) */, ICryptoTransform_t43C29A7F3A8C2DDAC9F3BF9BF739B03E4D5DE9A9_il2cpp_TypeInfo_var, L_5, L_6, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_7)->max_length)))));
V_0 = L_8;
IL2CPP_LEAVE(0x2B, FINALLY_0021);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0021;
}
FINALLY_0021:
{ // begin finally (depth: 1)
{
SymmetricAlgorithm_t0A2EC7E7AD8B8976832B4F0AC432B691F862E789 * L_9 = V_1;
if (!L_9)
{
goto IL_002a;
}
}
IL_0024:
{
SymmetricAlgorithm_t0A2EC7E7AD8B8976832B4F0AC432B691F862E789 * L_10 = V_1;
NullCheck(L_10);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_10);
}
IL_002a:
{
IL2CPP_END_FINALLY(33)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(33)
{
IL2CPP_JUMP_TBL(0x2B, IL_002b)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_002b:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_11 = V_0;
return L_11;
}
}
// System.Security.Cryptography.DSAParameters Mono.Security.X509.PKCS12::GetExistingParameters(System.Boolean&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DSAParameters_tCA1A96A151F47B1904693C457243E3B919425AC6 PKCS12_GetExistingParameters_mA087BFAB5B05292523844A22873E72CAEBF5500F (PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C * __this, bool* ___found0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PKCS12_GetExistingParameters_mA087BFAB5B05292523844A22873E72CAEBF5500F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
X509CertificateEnumerator_t1CBC050F10F4BE1E2A8552A1F22E705013EBF505 * V_0 = NULL;
X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B * V_1 = NULL;
DSA_t932F4A94DD2B782BFFC197544398826E6CDB64CF * V_2 = NULL;
DSAParameters_tCA1A96A151F47B1904693C457243E3B919425AC6 V_3;
memset((&V_3), 0, sizeof(V_3));
RuntimeObject* V_4 = NULL;
DSAParameters_tCA1A96A151F47B1904693C457243E3B919425AC6 V_5;
memset((&V_5), 0, sizeof(V_5));
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
X509CertificateCollection_t423BA1B9FAA983BA745023994C648C6DAC3E5A1A * L_0 = PKCS12_get_Certificates_mB8B81E86E481809CAB88C4657FDFCA67FE5190F4(__this, /*hidden argument*/NULL);
NullCheck(L_0);
X509CertificateEnumerator_t1CBC050F10F4BE1E2A8552A1F22E705013EBF505 * L_1 = X509CertificateCollection_GetEnumerator_mE786AA0C41503620161D81E4D9172932564BAB4C(L_0, /*hidden argument*/NULL);
V_0 = L_1;
}
IL_000c:
try
{ // begin try (depth: 1)
{
goto IL_0034;
}
IL_000e:
{
X509CertificateEnumerator_t1CBC050F10F4BE1E2A8552A1F22E705013EBF505 * L_2 = V_0;
NullCheck(L_2);
X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B * L_3 = X509CertificateEnumerator_get_Current_m68306EF52C95B315E36054119C0422ACAF95C09F(L_2, /*hidden argument*/NULL);
V_1 = L_3;
X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B * L_4 = V_1;
NullCheck(L_4);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_5 = VirtFuncInvoker0< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(7 /* System.Byte[] Mono.Security.X509.X509Certificate::get_KeyAlgorithmParameters() */, L_4);
if (!L_5)
{
goto IL_0034;
}
}
IL_001d:
{
X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B * L_6 = V_1;
NullCheck(L_6);
DSA_t932F4A94DD2B782BFFC197544398826E6CDB64CF * L_7 = X509Certificate_get_DSA_m7C3868DFAC7C067D09A324C348D7461D70E10F7F(L_6, /*hidden argument*/NULL);
V_2 = L_7;
DSA_t932F4A94DD2B782BFFC197544398826E6CDB64CF * L_8 = V_2;
if (!L_8)
{
goto IL_0034;
}
}
IL_0027:
{
bool* L_9 = ___found0;
*((int8_t*)L_9) = (int8_t)1;
DSA_t932F4A94DD2B782BFFC197544398826E6CDB64CF * L_10 = V_2;
NullCheck(L_10);
DSAParameters_tCA1A96A151F47B1904693C457243E3B919425AC6 L_11 = VirtFuncInvoker1< DSAParameters_tCA1A96A151F47B1904693C457243E3B919425AC6 , bool >::Invoke(10 /* System.Security.Cryptography.DSAParameters System.Security.Cryptography.DSA::ExportParameters(System.Boolean) */, L_10, (bool)0);
V_3 = L_11;
IL2CPP_LEAVE(0x60, FINALLY_003e);
}
IL_0034:
{
X509CertificateEnumerator_t1CBC050F10F4BE1E2A8552A1F22E705013EBF505 * L_12 = V_0;
NullCheck(L_12);
bool L_13 = X509CertificateEnumerator_MoveNext_m9E88A7C9685146F7E558267D7D828711C5E898F4(L_12, /*hidden argument*/NULL);
if (L_13)
{
goto IL_000e;
}
}
IL_003c:
{
IL2CPP_LEAVE(0x52, FINALLY_003e);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_003e;
}
FINALLY_003e:
{ // begin finally (depth: 1)
{
X509CertificateEnumerator_t1CBC050F10F4BE1E2A8552A1F22E705013EBF505 * L_14 = V_0;
V_4 = ((RuntimeObject*)IsInst((RuntimeObject*)L_14, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var));
RuntimeObject* L_15 = V_4;
if (!L_15)
{
goto IL_0051;
}
}
IL_004a:
{
RuntimeObject* L_16 = V_4;
NullCheck(L_16);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_16);
}
IL_0051:
{
IL2CPP_END_FINALLY(62)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(62)
{
IL2CPP_JUMP_TBL(0x60, IL_0060)
IL2CPP_JUMP_TBL(0x52, IL_0052)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0052:
{
bool* L_17 = ___found0;
*((int8_t*)L_17) = (int8_t)0;
il2cpp_codegen_initobj((&V_5), sizeof(DSAParameters_tCA1A96A151F47B1904693C457243E3B919425AC6 ));
DSAParameters_tCA1A96A151F47B1904693C457243E3B919425AC6 L_18 = V_5;
return L_18;
}
IL_0060:
{
DSAParameters_tCA1A96A151F47B1904693C457243E3B919425AC6 L_19 = V_3;
return L_19;
}
}
// System.Void Mono.Security.X509.PKCS12::AddPrivateKey(Mono.Security.Cryptography.PKCS8_PrivateKeyInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PKCS12_AddPrivateKey_m1197B452390B9CF1EB0E9F091AB0757EBF5A2697 (PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C * __this, PrivateKeyInfo_t053A73C524EC661748073EC908D290E2856DB5B9 * ___pki0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PKCS12_AddPrivateKey_m1197B452390B9CF1EB0E9F091AB0757EBF5A2697_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_0 = NULL;
uint8_t V_1 = 0x0;
bool V_2 = false;
DSAParameters_tCA1A96A151F47B1904693C457243E3B919425AC6 V_3;
memset((&V_3), 0, sizeof(V_3));
{
PrivateKeyInfo_t053A73C524EC661748073EC908D290E2856DB5B9 * L_0 = ___pki0;
NullCheck(L_0);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = PrivateKeyInfo_get_PrivateKey_mC390394E64E5FE39B4A833E7D91CF20A899179FA(L_0, /*hidden argument*/NULL);
V_0 = L_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = V_0;
NullCheck(L_2);
int32_t L_3 = 0;
uint8_t L_4 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
V_1 = L_4;
uint8_t L_5 = V_1;
if ((((int32_t)L_5) == ((int32_t)2)))
{
goto IL_0016;
}
}
{
uint8_t L_6 = V_1;
if ((((int32_t)L_6) == ((int32_t)((int32_t)48))))
{
goto IL_0037;
}
}
{
goto IL_004b;
}
IL_0016:
{
DSAParameters_tCA1A96A151F47B1904693C457243E3B919425AC6 L_7 = PKCS12_GetExistingParameters_mA087BFAB5B05292523844A22873E72CAEBF5500F(__this, (bool*)(&V_2), /*hidden argument*/NULL);
V_3 = L_7;
bool L_8 = V_2;
if (!L_8)
{
goto IL_0060;
}
}
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_9 = __this->get__keyBags_1();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_10 = V_0;
DSAParameters_tCA1A96A151F47B1904693C457243E3B919425AC6 L_11 = V_3;
DSA_t932F4A94DD2B782BFFC197544398826E6CDB64CF * L_12 = PrivateKeyInfo_DecodeDSA_m705D495634A3F9F97D73FA4FC995352DF5A3F5EF(L_10, L_11, /*hidden argument*/NULL);
NullCheck(L_9);
VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_9, L_12);
goto IL_0060;
}
IL_0037:
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_13 = __this->get__keyBags_1();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_14 = V_0;
RSA_tB6C4B434B2AC02E3F8981DB2908C2018E251D145 * L_15 = PrivateKeyInfo_DecodeRSA_m47EEB9282E7E66ED9256F2097B4E5C757B79B080(L_14, /*hidden argument*/NULL);
NullCheck(L_13);
VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_13, L_15);
goto IL_0060;
}
IL_004b:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_16 = V_0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_17 = V_0;
NullCheck(L_17);
Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E((RuntimeArray *)(RuntimeArray *)L_16, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_17)->max_length)))), /*hidden argument*/NULL);
CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A * L_18 = (CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A *)il2cpp_codegen_object_new(CryptographicException_t67ABE4FAB48298C9DF4C5E37E4C8F20AA601F15A_il2cpp_TypeInfo_var);
CryptographicException__ctor_m0A5D357C12F9A830A9EBC51723094EBA5B854B98(L_18, _stringLiteral5946ACD155491E90D92E508F3BC09953839635A6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_18, NULL, PKCS12_AddPrivateKey_m1197B452390B9CF1EB0E9F091AB0757EBF5A2697_RuntimeMethod_var);
}
IL_0060:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_19 = V_0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_20 = V_0;
NullCheck(L_20);
Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E((RuntimeArray *)(RuntimeArray *)L_19, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_20)->max_length)))), /*hidden argument*/NULL);
return;
}
}
// System.Void Mono.Security.X509.PKCS12::ReadSafeBag(Mono.Security.ASN1)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PKCS12_ReadSafeBag_m054D3F397B2D07EBD0ECDA6575D16EAA5AAE1B7B (PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C * __this, ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * ___safeBag0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PKCS12_ReadSafeBag_m054D3F397B2D07EBD0ECDA6575D16EAA5AAE1B7B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * V_0 = NULL;
String_t* V_1 = NULL;
EncryptedPrivateKeyInfo_tF582FAE09721F4F2BB353D5C2E28682FFB9C303D * V_2 = NULL;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_3 = NULL;
X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B * V_4 = NULL;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_5 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * V_6 = NULL;
int32_t V_7 = 0;
String_t* V_8 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * V_9 = NULL;
int32_t V_10 = 0;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * V_11 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * G_B4_0 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * G_B3_0 = NULL;
ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * G_B15_0 = NULL;
ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * G_B14_0 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * G_B24_0 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * G_B23_0 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * G_B26_0 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * G_B26_1 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * G_B25_0 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * G_B25_1 = NULL;
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_0 = ___safeBag0;
NullCheck(L_0);
uint8_t L_1 = ASN1_get_Tag_m1346989AC839D85A9E0A211525A6B551974E4862_inline(L_0, /*hidden argument*/NULL);
if ((((int32_t)L_1) == ((int32_t)((int32_t)48))))
{
goto IL_0015;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_2 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_2, _stringLiteral2148F912D5521151B4B4FCF9E3FA7841DB561995, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, PKCS12_ReadSafeBag_m054D3F397B2D07EBD0ECDA6575D16EAA5AAE1B7B_RuntimeMethod_var);
}
IL_0015:
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_3 = ___safeBag0;
NullCheck(L_3);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_4 = ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08(L_3, 0, /*hidden argument*/NULL);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_5 = L_4;
NullCheck(L_5);
uint8_t L_6 = ASN1_get_Tag_m1346989AC839D85A9E0A211525A6B551974E4862_inline(L_5, /*hidden argument*/NULL);
G_B3_0 = L_5;
if ((((int32_t)L_6) == ((int32_t)6)))
{
G_B4_0 = L_5;
goto IL_0030;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_7 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_7, _stringLiteral43CE8C8760C0F57C8E735CF657FC12BA30A8B65B, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, NULL, PKCS12_ReadSafeBag_m054D3F397B2D07EBD0ECDA6575D16EAA5AAE1B7B_RuntimeMethod_var);
}
IL_0030:
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_8 = ___safeBag0;
NullCheck(L_8);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_9 = ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08(L_8, 1, /*hidden argument*/NULL);
V_0 = L_9;
String_t* L_10 = ASN1Convert_ToOid_mFFA93B4BBEFCA8E4E86DAE87CDB998E78BFB2D5A(G_B4_0, /*hidden argument*/NULL);
V_1 = L_10;
String_t* L_11 = V_1;
bool L_12 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_11, _stringLiteral2F280ADB68040B360D7B03B819A13379B799EFAB, /*hidden argument*/NULL);
if (L_12)
{
goto IL_009d;
}
}
{
String_t* L_13 = V_1;
bool L_14 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_13, _stringLiteral3F556C2B89C9D40F8FCB8B45DB88D9BA3BDB25A7, /*hidden argument*/NULL);
if (L_14)
{
goto IL_00b3;
}
}
{
String_t* L_15 = V_1;
bool L_16 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_15, _stringLiteralF02768AE02EDF48DA977F708A0513A95FDC0F733, /*hidden argument*/NULL);
if (L_16)
{
goto IL_00f6;
}
}
{
String_t* L_17 = V_1;
bool L_18 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_17, _stringLiteral2585FC37E8BD5E0ABA0AA8CAD9C47283C578EBD3, /*hidden argument*/NULL);
if (L_18)
{
goto IL_0168;
}
}
{
String_t* L_19 = V_1;
bool L_20 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_19, _stringLiteralD9D28254BE2512FBA8D1D209322E0B1B22D90CEE, /*hidden argument*/NULL);
if (L_20)
{
goto IL_0145;
}
}
{
String_t* L_21 = V_1;
bool L_22 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_21, _stringLiteralC2FFDAF1F4D54001A31179F5FE1D57F557C4FBDC, /*hidden argument*/NULL);
if (L_22)
{
goto IL_0168;
}
}
{
goto IL_015d;
}
IL_009d:
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_23 = V_0;
NullCheck(L_23);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_24 = ASN1_get_Value_m9BD6239E12A6148AF9507C2F58058C6B8147A079(L_23, /*hidden argument*/NULL);
PrivateKeyInfo_t053A73C524EC661748073EC908D290E2856DB5B9 * L_25 = (PrivateKeyInfo_t053A73C524EC661748073EC908D290E2856DB5B9 *)il2cpp_codegen_object_new(PrivateKeyInfo_t053A73C524EC661748073EC908D290E2856DB5B9_il2cpp_TypeInfo_var);
PrivateKeyInfo__ctor_m4FE1CE37466756FCCAD2C7320E6E8E8B0D4D603A(L_25, L_24, /*hidden argument*/NULL);
PKCS12_AddPrivateKey_m1197B452390B9CF1EB0E9F091AB0757EBF5A2697(__this, L_25, /*hidden argument*/NULL);
goto IL_0168;
}
IL_00b3:
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_26 = V_0;
NullCheck(L_26);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_27 = ASN1_get_Value_m9BD6239E12A6148AF9507C2F58058C6B8147A079(L_26, /*hidden argument*/NULL);
EncryptedPrivateKeyInfo_tF582FAE09721F4F2BB353D5C2E28682FFB9C303D * L_28 = (EncryptedPrivateKeyInfo_tF582FAE09721F4F2BB353D5C2E28682FFB9C303D *)il2cpp_codegen_object_new(EncryptedPrivateKeyInfo_tF582FAE09721F4F2BB353D5C2E28682FFB9C303D_il2cpp_TypeInfo_var);
EncryptedPrivateKeyInfo__ctor_mB2FBC3DDB156046CBB737280E490994A3B20362A(L_28, L_27, /*hidden argument*/NULL);
V_2 = L_28;
EncryptedPrivateKeyInfo_tF582FAE09721F4F2BB353D5C2E28682FFB9C303D * L_29 = V_2;
NullCheck(L_29);
String_t* L_30 = EncryptedPrivateKeyInfo_get_Algorithm_m93A361B3EE1EDF57B8D83ECF187CD75E6B45A9D9_inline(L_29, /*hidden argument*/NULL);
EncryptedPrivateKeyInfo_tF582FAE09721F4F2BB353D5C2E28682FFB9C303D * L_31 = V_2;
NullCheck(L_31);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_32 = EncryptedPrivateKeyInfo_get_Salt_mF231C0F3BC06F402910179312CC9245911450C4B(L_31, /*hidden argument*/NULL);
EncryptedPrivateKeyInfo_tF582FAE09721F4F2BB353D5C2E28682FFB9C303D * L_33 = V_2;
NullCheck(L_33);
int32_t L_34 = EncryptedPrivateKeyInfo_get_IterationCount_m3CD06665FBE6C8B3965AA0D870B702A4E6F833FC_inline(L_33, /*hidden argument*/NULL);
EncryptedPrivateKeyInfo_tF582FAE09721F4F2BB353D5C2E28682FFB9C303D * L_35 = V_2;
NullCheck(L_35);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_36 = EncryptedPrivateKeyInfo_get_EncryptedData_m0EB3C77C669117FCB3E0A5DA1758F9B0A18573D3(L_35, /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_37 = PKCS12_Decrypt_m31927063D7A8B21C5E2B81F0879117F269B2F340(__this, L_30, L_32, L_34, L_36, /*hidden argument*/NULL);
V_3 = L_37;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_38 = V_3;
PrivateKeyInfo_t053A73C524EC661748073EC908D290E2856DB5B9 * L_39 = (PrivateKeyInfo_t053A73C524EC661748073EC908D290E2856DB5B9 *)il2cpp_codegen_object_new(PrivateKeyInfo_t053A73C524EC661748073EC908D290E2856DB5B9_il2cpp_TypeInfo_var);
PrivateKeyInfo__ctor_m4FE1CE37466756FCCAD2C7320E6E8E8B0D4D603A(L_39, L_38, /*hidden argument*/NULL);
PKCS12_AddPrivateKey_m1197B452390B9CF1EB0E9F091AB0757EBF5A2697(__this, L_39, /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_40 = V_3;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_41 = V_3;
NullCheck(L_41);
Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E((RuntimeArray *)(RuntimeArray *)L_40, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_41)->max_length)))), /*hidden argument*/NULL);
goto IL_0168;
}
IL_00f6:
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_42 = V_0;
NullCheck(L_42);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_43 = ASN1_get_Value_m9BD6239E12A6148AF9507C2F58058C6B8147A079(L_42, /*hidden argument*/NULL);
ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * L_44 = (ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E *)il2cpp_codegen_object_new(ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E_il2cpp_TypeInfo_var);
ContentInfo__ctor_mFFDEEE8545287FC5A22740B7E06F6D64D401E196(L_44, L_43, /*hidden argument*/NULL);
ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * L_45 = L_44;
NullCheck(L_45);
String_t* L_46 = ContentInfo_get_ContentType_m26D6492CA5D227AAC583CFC4A898C056ACEC8196_inline(L_45, /*hidden argument*/NULL);
bool L_47 = String_op_Inequality_m0BD184A74F453A72376E81CC6CAEE2556B80493E(L_46, _stringLiteralC99B45DFFF89CE2609C9C3C74B70826509B7E817, /*hidden argument*/NULL);
G_B14_0 = L_45;
if (!L_47)
{
G_B15_0 = L_45;
goto IL_011e;
}
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_48 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_48, _stringLiteral2CFD4072F8990E79EAEA6A6C2045E74F87B56352, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_48, NULL, PKCS12_ReadSafeBag_m054D3F397B2D07EBD0ECDA6575D16EAA5AAE1B7B_RuntimeMethod_var);
}
IL_011e:
{
NullCheck(G_B15_0);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_49 = ContentInfo_get_Content_mCF1CED122282F62BAA3453E585E487D50367289F_inline(G_B15_0, /*hidden argument*/NULL);
NullCheck(L_49);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_50 = ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08(L_49, 0, /*hidden argument*/NULL);
NullCheck(L_50);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_51 = ASN1_get_Value_m9BD6239E12A6148AF9507C2F58058C6B8147A079(L_50, /*hidden argument*/NULL);
X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B * L_52 = (X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B *)il2cpp_codegen_object_new(X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B_il2cpp_TypeInfo_var);
X509Certificate__ctor_mE2BC6649D450A36E902A2D6BEB50C49130411129(L_52, L_51, /*hidden argument*/NULL);
V_4 = L_52;
X509CertificateCollection_t423BA1B9FAA983BA745023994C648C6DAC3E5A1A * L_53 = __this->get__certs_3();
X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B * L_54 = V_4;
NullCheck(L_53);
X509CertificateCollection_Add_mC060190867D9C5D182236A313FE912DFCCE1F785(L_53, L_54, /*hidden argument*/NULL);
goto IL_0168;
}
IL_0145:
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_55 = V_0;
NullCheck(L_55);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_56 = ASN1_get_Value_m9BD6239E12A6148AF9507C2F58058C6B8147A079(L_55, /*hidden argument*/NULL);
V_5 = L_56;
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_57 = __this->get__secretBags_2();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_58 = V_5;
NullCheck(L_57);
VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_57, (RuntimeObject *)(RuntimeObject *)L_58);
goto IL_0168;
}
IL_015d:
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_59 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_59, _stringLiteralAC52213E99AFDA01D46868C80010237AC135927B, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_59, NULL, PKCS12_ReadSafeBag_m054D3F397B2D07EBD0ECDA6575D16EAA5AAE1B7B_RuntimeMethod_var);
}
IL_0168:
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_60 = ___safeBag0;
NullCheck(L_60);
int32_t L_61 = ASN1_get_Count_m5A0E71B4C4A2257C0875AE1041AAA953C5B12A19(L_60, /*hidden argument*/NULL);
if ((((int32_t)L_61) <= ((int32_t)2)))
{
goto IL_0261;
}
}
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_62 = ___safeBag0;
NullCheck(L_62);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_63 = ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08(L_62, 2, /*hidden argument*/NULL);
V_6 = L_63;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_64 = V_6;
NullCheck(L_64);
uint8_t L_65 = ASN1_get_Tag_m1346989AC839D85A9E0A211525A6B551974E4862_inline(L_64, /*hidden argument*/NULL);
if ((((int32_t)L_65) == ((int32_t)((int32_t)49))))
{
goto IL_0193;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_66 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_66, _stringLiteral85C0C834CC0B9B381C0FF7F8BBAC9285AF308AB0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_66, NULL, PKCS12_ReadSafeBag_m054D3F397B2D07EBD0ECDA6575D16EAA5AAE1B7B_RuntimeMethod_var);
}
IL_0193:
{
V_7 = 0;
goto IL_0253;
}
IL_019b:
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_67 = V_6;
int32_t L_68 = V_7;
NullCheck(L_67);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_69 = ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08(L_67, L_68, /*hidden argument*/NULL);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_70 = L_69;
NullCheck(L_70);
uint8_t L_71 = ASN1_get_Tag_m1346989AC839D85A9E0A211525A6B551974E4862_inline(L_70, /*hidden argument*/NULL);
G_B23_0 = L_70;
if ((((int32_t)L_71) == ((int32_t)((int32_t)48))))
{
G_B24_0 = L_70;
goto IL_01b9;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_72 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_72, _stringLiteral471DB6AD83C76628B068C830D0269B041596AEAA, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_72, NULL, PKCS12_ReadSafeBag_m054D3F397B2D07EBD0ECDA6575D16EAA5AAE1B7B_RuntimeMethod_var);
}
IL_01b9:
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_73 = G_B24_0;
NullCheck(L_73);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_74 = ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08(L_73, 0, /*hidden argument*/NULL);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_75 = L_74;
NullCheck(L_75);
uint8_t L_76 = ASN1_get_Tag_m1346989AC839D85A9E0A211525A6B551974E4862_inline(L_75, /*hidden argument*/NULL);
G_B25_0 = L_75;
G_B25_1 = L_73;
if ((((int32_t)L_76) == ((int32_t)6)))
{
G_B26_0 = L_75;
G_B26_1 = L_73;
goto IL_01d4;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_77 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_77, _stringLiteral44E5C4B7066508335FF9B48BB0D5A05575F2001B, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_77, NULL, PKCS12_ReadSafeBag_m054D3F397B2D07EBD0ECDA6575D16EAA5AAE1B7B_RuntimeMethod_var);
}
IL_01d4:
{
String_t* L_78 = ASN1Convert_ToOid_mFFA93B4BBEFCA8E4E86DAE87CDB998E78BFB2D5A(G_B26_0, /*hidden argument*/NULL);
V_8 = L_78;
NullCheck(G_B26_1);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_79 = ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08(G_B26_1, 1, /*hidden argument*/NULL);
V_9 = L_79;
V_10 = 0;
goto IL_0242;
}
IL_01e8:
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_80 = V_9;
int32_t L_81 = V_10;
NullCheck(L_80);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_82 = ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08(L_80, L_81, /*hidden argument*/NULL);
V_11 = L_82;
String_t* L_83 = V_8;
bool L_84 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_83, _stringLiteral475F6403296A11AD7C5C0A2C315474FAE9953448, /*hidden argument*/NULL);
if (L_84)
{
goto IL_0211;
}
}
{
String_t* L_85 = V_8;
bool L_86 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_85, _stringLiteral6CB177B80C57F442434FADF5878CCBB93AE352D6, /*hidden argument*/NULL);
if (L_86)
{
goto IL_0227;
}
}
{
goto IL_023c;
}
IL_0211:
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_87 = V_11;
NullCheck(L_87);
uint8_t L_88 = ASN1_get_Tag_m1346989AC839D85A9E0A211525A6B551974E4862_inline(L_87, /*hidden argument*/NULL);
if ((((int32_t)L_88) == ((int32_t)((int32_t)30))))
{
goto IL_023c;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_89 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_89, _stringLiteral16B16DE39EAF0CBCF65105A574643EF876F34376, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_89, NULL, PKCS12_ReadSafeBag_m054D3F397B2D07EBD0ECDA6575D16EAA5AAE1B7B_RuntimeMethod_var);
}
IL_0227:
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_90 = V_11;
NullCheck(L_90);
uint8_t L_91 = ASN1_get_Tag_m1346989AC839D85A9E0A211525A6B551974E4862_inline(L_90, /*hidden argument*/NULL);
if ((((int32_t)L_91) == ((int32_t)4)))
{
goto IL_023c;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_92 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_92, _stringLiteral16B16DE39EAF0CBCF65105A574643EF876F34376, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_92, NULL, PKCS12_ReadSafeBag_m054D3F397B2D07EBD0ECDA6575D16EAA5AAE1B7B_RuntimeMethod_var);
}
IL_023c:
{
int32_t L_93 = V_10;
V_10 = ((int32_t)il2cpp_codegen_add((int32_t)L_93, (int32_t)1));
}
IL_0242:
{
int32_t L_94 = V_10;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_95 = V_9;
NullCheck(L_95);
int32_t L_96 = ASN1_get_Count_m5A0E71B4C4A2257C0875AE1041AAA953C5B12A19(L_95, /*hidden argument*/NULL);
if ((((int32_t)L_94) < ((int32_t)L_96)))
{
goto IL_01e8;
}
}
{
int32_t L_97 = V_7;
V_7 = ((int32_t)il2cpp_codegen_add((int32_t)L_97, (int32_t)1));
}
IL_0253:
{
int32_t L_98 = V_7;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_99 = V_6;
NullCheck(L_99);
int32_t L_100 = ASN1_get_Count_m5A0E71B4C4A2257C0875AE1041AAA953C5B12A19(L_99, /*hidden argument*/NULL);
if ((((int32_t)L_98) < ((int32_t)L_100)))
{
goto IL_019b;
}
}
IL_0261:
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_101 = __this->get__safeBags_8();
String_t* L_102 = V_1;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_103 = ___safeBag0;
SafeBag_t46FE0281DC1D6CAB5FD08FCDB3E57C2EA1859726 * L_104 = (SafeBag_t46FE0281DC1D6CAB5FD08FCDB3E57C2EA1859726 *)il2cpp_codegen_object_new(SafeBag_t46FE0281DC1D6CAB5FD08FCDB3E57C2EA1859726_il2cpp_TypeInfo_var);
SafeBag__ctor_mA72466DEC40046A944E2120A27BEFD3D2EAD57B7(L_104, L_102, L_103, /*hidden argument*/NULL);
NullCheck(L_101);
VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_101, L_104);
return;
}
}
// Mono.Security.ASN1 Mono.Security.X509.PKCS12::CertificateSafeBag(Mono.Security.X509.X509Certificate,System.Collections.IDictionary)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * PKCS12_CertificateSafeBag_mD0DD83647F65C3ABAE16740304102EFD7495FB73 (PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C * __this, X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B * ___x5090, RuntimeObject* ___attributes1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PKCS12_CertificateSafeBag_mD0DD83647F65C3ABAE16740304102EFD7495FB73_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * V_0 = NULL;
ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * V_1 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * V_2 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * V_3 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * V_4 = NULL;
RuntimeObject* V_5 = NULL;
String_t* V_6 = NULL;
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * V_7 = NULL;
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * V_8 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * V_9 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * V_10 = NULL;
RuntimeObject* V_11 = NULL;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_12 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * V_13 = NULL;
RuntimeObject* V_14 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * V_15 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * V_16 = NULL;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_17 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * V_18 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B * L_0 = ___x5090;
NullCheck(L_0);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = VirtFuncInvoker0< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(11 /* System.Byte[] Mono.Security.X509.X509Certificate::get_RawData() */, L_0);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_2 = (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E *)il2cpp_codegen_object_new(ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E_il2cpp_TypeInfo_var);
ASN1__ctor_mAB2593792CB61AD1542F4F9D6FB6E8BB96DE007E(L_2, (uint8_t)4, L_1, /*hidden argument*/NULL);
V_0 = L_2;
ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * L_3 = (ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E *)il2cpp_codegen_object_new(ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E_il2cpp_TypeInfo_var);
ContentInfo__ctor_mEE9D9E1E66FBF3DA3414423F0D4216E40C625BFA(L_3, /*hidden argument*/NULL);
V_1 = L_3;
ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * L_4 = V_1;
NullCheck(L_4);
ContentInfo_set_ContentType_m4FEE943D01600FC088408F7E20C5E1667CB5BA21_inline(L_4, _stringLiteralC99B45DFFF89CE2609C9C3C74B70826509B7E817, /*hidden argument*/NULL);
ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * L_5 = V_1;
NullCheck(L_5);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_6 = ContentInfo_get_Content_mCF1CED122282F62BAA3453E585E487D50367289F_inline(L_5, /*hidden argument*/NULL);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_7 = V_0;
NullCheck(L_6);
ASN1_Add_mF6ED0416BB021A1C333F99E42F8B17AF8B26639B(L_6, L_7, /*hidden argument*/NULL);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_8 = (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E *)il2cpp_codegen_object_new(ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E_il2cpp_TypeInfo_var);
ASN1__ctor_m6DD2E5BD0B12A6BFA95E1822A55B2294B8C237BC(L_8, (uint8_t)((int32_t)160), /*hidden argument*/NULL);
V_2 = L_8;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_9 = V_2;
ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * L_10 = V_1;
NullCheck(L_10);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_11 = ContentInfo_get_ASN1_mE290789431E97C3AF43911BB56FBE15C6D799411(L_10, /*hidden argument*/NULL);
NullCheck(L_9);
ASN1_Add_mF6ED0416BB021A1C333F99E42F8B17AF8B26639B(L_9, L_11, /*hidden argument*/NULL);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_12 = (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E *)il2cpp_codegen_object_new(ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E_il2cpp_TypeInfo_var);
ASN1__ctor_m6DD2E5BD0B12A6BFA95E1822A55B2294B8C237BC(L_12, (uint8_t)((int32_t)48), /*hidden argument*/NULL);
V_3 = L_12;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_13 = V_3;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_14 = ASN1Convert_FromOid_mC178E72357986C1AB75A1FFC9DA7687ECA20E462(_stringLiteralF02768AE02EDF48DA977F708A0513A95FDC0F733, /*hidden argument*/NULL);
NullCheck(L_13);
ASN1_Add_mF6ED0416BB021A1C333F99E42F8B17AF8B26639B(L_13, L_14, /*hidden argument*/NULL);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_15 = V_3;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_16 = V_2;
NullCheck(L_15);
ASN1_Add_mF6ED0416BB021A1C333F99E42F8B17AF8B26639B(L_15, L_16, /*hidden argument*/NULL);
RuntimeObject* L_17 = ___attributes1;
if (!L_17)
{
goto IL_0225;
}
}
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_18 = (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E *)il2cpp_codegen_object_new(ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E_il2cpp_TypeInfo_var);
ASN1__ctor_m6DD2E5BD0B12A6BFA95E1822A55B2294B8C237BC(L_18, (uint8_t)((int32_t)49), /*hidden argument*/NULL);
V_4 = L_18;
RuntimeObject* L_19 = ___attributes1;
NullCheck(L_19);
RuntimeObject* L_20 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(9 /* System.Collections.IDictionaryEnumerator System.Collections.IDictionary::GetEnumerator() */, IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7_il2cpp_TypeInfo_var, L_19);
V_5 = L_20;
goto IL_0206;
}
IL_0080:
{
RuntimeObject* L_21 = V_5;
NullCheck(L_21);
RuntimeObject * L_22 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* System.Object System.Collections.IDictionaryEnumerator::get_Key() */, IDictionaryEnumerator_t456EB67407D2045A257B66A3A25A825E883FD027_il2cpp_TypeInfo_var, L_21);
V_6 = ((String_t*)CastclassSealed((RuntimeObject*)L_22, String_t_il2cpp_TypeInfo_var));
String_t* L_23 = V_6;
bool L_24 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_23, _stringLiteral475F6403296A11AD7C5C0A2C315474FAE9953448, /*hidden argument*/NULL);
if (L_24)
{
goto IL_00b2;
}
}
{
String_t* L_25 = V_6;
bool L_26 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_25, _stringLiteral6CB177B80C57F442434FADF5878CCBB93AE352D6, /*hidden argument*/NULL);
if (L_26)
{
goto IL_015f;
}
}
{
goto IL_0206;
}
IL_00b2:
{
RuntimeObject* L_27 = V_5;
NullCheck(L_27);
RuntimeObject * L_28 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IDictionaryEnumerator::get_Value() */, IDictionaryEnumerator_t456EB67407D2045A257B66A3A25A825E883FD027_il2cpp_TypeInfo_var, L_27);
V_7 = ((ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 *)CastclassClass((RuntimeObject*)L_28, ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_il2cpp_TypeInfo_var));
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_29 = V_7;
NullCheck(L_29);
int32_t L_30 = VirtFuncInvoker0< int32_t >::Invoke(22 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_29);
if ((((int32_t)L_30) <= ((int32_t)0)))
{
goto IL_0206;
}
}
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_31 = (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E *)il2cpp_codegen_object_new(ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E_il2cpp_TypeInfo_var);
ASN1__ctor_m6DD2E5BD0B12A6BFA95E1822A55B2294B8C237BC(L_31, (uint8_t)((int32_t)48), /*hidden argument*/NULL);
V_9 = L_31;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_32 = V_9;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_33 = ASN1Convert_FromOid_mC178E72357986C1AB75A1FFC9DA7687ECA20E462(_stringLiteral475F6403296A11AD7C5C0A2C315474FAE9953448, /*hidden argument*/NULL);
NullCheck(L_32);
ASN1_Add_mF6ED0416BB021A1C333F99E42F8B17AF8B26639B(L_32, L_33, /*hidden argument*/NULL);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_34 = (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E *)il2cpp_codegen_object_new(ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E_il2cpp_TypeInfo_var);
ASN1__ctor_m6DD2E5BD0B12A6BFA95E1822A55B2294B8C237BC(L_34, (uint8_t)((int32_t)49), /*hidden argument*/NULL);
V_10 = L_34;
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_35 = V_7;
NullCheck(L_35);
RuntimeObject* L_36 = VirtFuncInvoker0< RuntimeObject* >::Invoke(37 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_35);
V_11 = L_36;
}
IL_00fa:
try
{ // begin try (depth: 1)
{
goto IL_0126;
}
IL_00fc:
{
RuntimeObject* L_37 = V_11;
NullCheck(L_37);
RuntimeObject * L_38 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_37);
V_12 = ((ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)Castclass((RuntimeObject*)L_38, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var));
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_39 = (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E *)il2cpp_codegen_object_new(ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E_il2cpp_TypeInfo_var);
ASN1__ctor_m6DD2E5BD0B12A6BFA95E1822A55B2294B8C237BC(L_39, (uint8_t)((int32_t)30), /*hidden argument*/NULL);
V_13 = L_39;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_40 = V_13;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_41 = V_12;
NullCheck(L_40);
ASN1_set_Value_m225FF9AC03EA872809C7742070A34A264C58588E(L_40, L_41, /*hidden argument*/NULL);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_42 = V_10;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_43 = V_13;
NullCheck(L_42);
ASN1_Add_mF6ED0416BB021A1C333F99E42F8B17AF8B26639B(L_42, L_43, /*hidden argument*/NULL);
}
IL_0126:
{
RuntimeObject* L_44 = V_11;
NullCheck(L_44);
bool L_45 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_44);
if (L_45)
{
goto IL_00fc;
}
}
IL_012f:
{
IL2CPP_LEAVE(0x146, FINALLY_0131);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0131;
}
FINALLY_0131:
{ // begin finally (depth: 1)
{
RuntimeObject* L_46 = V_11;
V_14 = ((RuntimeObject*)IsInst((RuntimeObject*)L_46, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var));
RuntimeObject* L_47 = V_14;
if (!L_47)
{
goto IL_0145;
}
}
IL_013e:
{
RuntimeObject* L_48 = V_14;
NullCheck(L_48);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_48);
}
IL_0145:
{
IL2CPP_END_FINALLY(305)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(305)
{
IL2CPP_JUMP_TBL(0x146, IL_0146)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0146:
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_49 = V_9;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_50 = V_10;
NullCheck(L_49);
ASN1_Add_mF6ED0416BB021A1C333F99E42F8B17AF8B26639B(L_49, L_50, /*hidden argument*/NULL);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_51 = V_4;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_52 = V_9;
NullCheck(L_51);
ASN1_Add_mF6ED0416BB021A1C333F99E42F8B17AF8B26639B(L_51, L_52, /*hidden argument*/NULL);
goto IL_0206;
}
IL_015f:
{
RuntimeObject* L_53 = V_5;
NullCheck(L_53);
RuntimeObject * L_54 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IDictionaryEnumerator::get_Value() */, IDictionaryEnumerator_t456EB67407D2045A257B66A3A25A825E883FD027_il2cpp_TypeInfo_var, L_53);
V_8 = ((ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 *)CastclassClass((RuntimeObject*)L_54, ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_il2cpp_TypeInfo_var));
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_55 = V_8;
NullCheck(L_55);
int32_t L_56 = VirtFuncInvoker0< int32_t >::Invoke(22 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_55);
if ((((int32_t)L_56) <= ((int32_t)0)))
{
goto IL_0206;
}
}
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_57 = (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E *)il2cpp_codegen_object_new(ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E_il2cpp_TypeInfo_var);
ASN1__ctor_m6DD2E5BD0B12A6BFA95E1822A55B2294B8C237BC(L_57, (uint8_t)((int32_t)48), /*hidden argument*/NULL);
V_15 = L_57;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_58 = V_15;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_59 = ASN1Convert_FromOid_mC178E72357986C1AB75A1FFC9DA7687ECA20E462(_stringLiteral6CB177B80C57F442434FADF5878CCBB93AE352D6, /*hidden argument*/NULL);
NullCheck(L_58);
ASN1_Add_mF6ED0416BB021A1C333F99E42F8B17AF8B26639B(L_58, L_59, /*hidden argument*/NULL);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_60 = (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E *)il2cpp_codegen_object_new(ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E_il2cpp_TypeInfo_var);
ASN1__ctor_m6DD2E5BD0B12A6BFA95E1822A55B2294B8C237BC(L_60, (uint8_t)((int32_t)49), /*hidden argument*/NULL);
V_16 = L_60;
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_61 = V_8;
NullCheck(L_61);
RuntimeObject* L_62 = VirtFuncInvoker0< RuntimeObject* >::Invoke(37 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_61);
V_11 = L_62;
}
IL_01a7:
try
{ // begin try (depth: 1)
{
goto IL_01d2;
}
IL_01a9:
{
RuntimeObject* L_63 = V_11;
NullCheck(L_63);
RuntimeObject * L_64 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_63);
V_17 = ((ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)Castclass((RuntimeObject*)L_64, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var));
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_65 = (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E *)il2cpp_codegen_object_new(ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E_il2cpp_TypeInfo_var);
ASN1__ctor_m6DD2E5BD0B12A6BFA95E1822A55B2294B8C237BC(L_65, (uint8_t)4, /*hidden argument*/NULL);
V_18 = L_65;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_66 = V_18;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_67 = V_17;
NullCheck(L_66);
ASN1_set_Value_m225FF9AC03EA872809C7742070A34A264C58588E(L_66, L_67, /*hidden argument*/NULL);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_68 = V_16;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_69 = V_18;
NullCheck(L_68);
ASN1_Add_mF6ED0416BB021A1C333F99E42F8B17AF8B26639B(L_68, L_69, /*hidden argument*/NULL);
}
IL_01d2:
{
RuntimeObject* L_70 = V_11;
NullCheck(L_70);
bool L_71 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_70);
if (L_71)
{
goto IL_01a9;
}
}
IL_01db:
{
IL2CPP_LEAVE(0x1F2, FINALLY_01dd);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_01dd;
}
FINALLY_01dd:
{ // begin finally (depth: 1)
{
RuntimeObject* L_72 = V_11;
V_14 = ((RuntimeObject*)IsInst((RuntimeObject*)L_72, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var));
RuntimeObject* L_73 = V_14;
if (!L_73)
{
goto IL_01f1;
}
}
IL_01ea:
{
RuntimeObject* L_74 = V_14;
NullCheck(L_74);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_74);
}
IL_01f1:
{
IL2CPP_END_FINALLY(477)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(477)
{
IL2CPP_JUMP_TBL(0x1F2, IL_01f2)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_01f2:
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_75 = V_15;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_76 = V_16;
NullCheck(L_75);
ASN1_Add_mF6ED0416BB021A1C333F99E42F8B17AF8B26639B(L_75, L_76, /*hidden argument*/NULL);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_77 = V_4;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_78 = V_15;
NullCheck(L_77);
ASN1_Add_mF6ED0416BB021A1C333F99E42F8B17AF8B26639B(L_77, L_78, /*hidden argument*/NULL);
}
IL_0206:
{
RuntimeObject* L_79 = V_5;
NullCheck(L_79);
bool L_80 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_79);
if (L_80)
{
goto IL_0080;
}
}
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_81 = V_4;
NullCheck(L_81);
int32_t L_82 = ASN1_get_Count_m5A0E71B4C4A2257C0875AE1041AAA953C5B12A19(L_81, /*hidden argument*/NULL);
if ((((int32_t)L_82) <= ((int32_t)0)))
{
goto IL_0225;
}
}
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_83 = V_3;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_84 = V_4;
NullCheck(L_83);
ASN1_Add_mF6ED0416BB021A1C333F99E42F8B17AF8B26639B(L_83, L_84, /*hidden argument*/NULL);
}
IL_0225:
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_85 = V_3;
return L_85;
}
}
// System.Byte[] Mono.Security.X509.PKCS12::MAC(System.Byte[],System.Byte[],System.Int32,System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* PKCS12_MAC_mA1250320B5F0B5C94D8532296AB59CC32B7A7E78 (PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___password0, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___salt1, int32_t ___iterations2, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___data3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PKCS12_MAC_mA1250320B5F0B5C94D8532296AB59CC32B7A7E78_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D * V_0 = NULL;
{
DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D * L_0 = (DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D *)il2cpp_codegen_object_new(DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D_il2cpp_TypeInfo_var);
DeriveBytes__ctor_mCF98BD3EFADD4D2F34101977C2B49258932F19C2(L_0, /*hidden argument*/NULL);
V_0 = L_0;
DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D * L_1 = V_0;
NullCheck(L_1);
DeriveBytes_set_HashName_mBDFF79A4AAA347FC742CF1E25214854EF200DA72_inline(L_1, _stringLiteralE1744A525099D9A53C0460EF9CB7AB0E4C4FC939, /*hidden argument*/NULL);
DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D * L_2 = V_0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = ___password0;
NullCheck(L_2);
DeriveBytes_set_Password_m01796801BB8FD1E5F9D62F48A057F936CE0D0E4D(L_2, L_3, /*hidden argument*/NULL);
DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D * L_4 = V_0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_5 = ___salt1;
NullCheck(L_4);
DeriveBytes_set_Salt_m259A4E6B31DF7C039E776B473B4C5208890E8C5E(L_4, L_5, /*hidden argument*/NULL);
DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D * L_6 = V_0;
int32_t L_7 = ___iterations2;
NullCheck(L_6);
DeriveBytes_set_IterationCount_mFE67702E80E2748EA2B61D15E2E58CB9A4173143_inline(L_6, L_7, /*hidden argument*/NULL);
HMAC_t85BE56AD7946F3A3D42B52448301D8995DEB7C90 * L_8 = HMAC_Create_m865273728E60831137927C36E23E6F584383FD2B(/*hidden argument*/NULL);
HMACSHA1_t4E10C259BBC525A8E0ABEAE9EF01C8589F51FEE5 * L_9 = ((HMACSHA1_t4E10C259BBC525A8E0ABEAE9EF01C8589F51FEE5 *)CastclassClass((RuntimeObject*)L_8, HMACSHA1_t4E10C259BBC525A8E0ABEAE9EF01C8589F51FEE5_il2cpp_TypeInfo_var));
DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D * L_10 = V_0;
NullCheck(L_10);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_11 = DeriveBytes_DeriveMAC_mD54FB1F61CFC13258B46861CCE527A85CC62652D(L_10, ((int32_t)20), /*hidden argument*/NULL);
NullCheck(L_9);
VirtActionInvoker1< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(20 /* System.Void System.Security.Cryptography.KeyedHashAlgorithm::set_Key(System.Byte[]) */, L_9, L_11);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_12 = ___data3;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_13 = ___data3;
NullCheck(L_13);
NullCheck(L_9);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_14 = HashAlgorithm_ComputeHash_m944CD5B5BF66F170C9ACD2674E258E62ED297819(L_9, L_12, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_13)->max_length)))), /*hidden argument*/NULL);
return L_14;
}
}
// System.Byte[] Mono.Security.X509.PKCS12::GetBytes()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* PKCS12_GetBytes_m8621373F343293D4A64DED97DA2610BE6B6D7D73 (PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PKCS12_GetBytes_m8621373F343293D4A64DED97DA2610BE6B6D7D73_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * V_0 = NULL;
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * V_1 = NULL;
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * V_2 = NULL;
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * V_3 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * V_4 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * V_5 = NULL;
ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * V_6 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * V_7 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * V_8 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * V_9 = NULL;
RuntimeObject* V_10 = NULL;
SafeBag_t46FE0281DC1D6CAB5FD08FCDB3E57C2EA1859726 * V_11 = NULL;
ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * V_12 = NULL;
RuntimeObject* V_13 = NULL;
X509CertificateEnumerator_t1CBC050F10F4BE1E2A8552A1F22E705013EBF505 * V_14 = NULL;
X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B * V_15 = NULL;
bool V_16 = false;
X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B * V_17 = NULL;
X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B * V_18 = NULL;
bool V_19 = false;
X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B * V_20 = NULL;
X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B * V_21 = NULL;
X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B * V_22 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * V_23 = NULL;
SafeBag_t46FE0281DC1D6CAB5FD08FCDB3E57C2EA1859726 * V_24 = NULL;
ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * V_25 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * V_26 = NULL;
SafeBag_t46FE0281DC1D6CAB5FD08FCDB3E57C2EA1859726 * V_27 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * V_28 = NULL;
ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * V_29 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * V_30 = NULL;
SafeBag_t46FE0281DC1D6CAB5FD08FCDB3E57C2EA1859726 * V_31 = NULL;
ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * V_32 = NULL;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_33 = NULL;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_34 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * V_35 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * V_36 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 10);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_0 = (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E *)il2cpp_codegen_object_new(ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E_il2cpp_TypeInfo_var);
ASN1__ctor_m6DD2E5BD0B12A6BFA95E1822A55B2294B8C237BC(L_0, (uint8_t)((int32_t)48), /*hidden argument*/NULL);
V_0 = L_0;
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_1 = (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 *)il2cpp_codegen_object_new(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_il2cpp_TypeInfo_var);
ArrayList__ctor_m481FA7B37620B59B8C0434A764F5705A6ABDEAE6(L_1, /*hidden argument*/NULL);
V_1 = L_1;
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_2 = __this->get__safeBags_8();
NullCheck(L_2);
RuntimeObject* L_3 = VirtFuncInvoker0< RuntimeObject* >::Invoke(37 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_2);
V_10 = L_3;
}
IL_001b:
try
{ // begin try (depth: 1)
{
goto IL_0075;
}
IL_001d:
{
RuntimeObject* L_4 = V_10;
NullCheck(L_4);
RuntimeObject * L_5 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_4);
V_11 = ((SafeBag_t46FE0281DC1D6CAB5FD08FCDB3E57C2EA1859726 *)CastclassClass((RuntimeObject*)L_5, SafeBag_t46FE0281DC1D6CAB5FD08FCDB3E57C2EA1859726_il2cpp_TypeInfo_var));
SafeBag_t46FE0281DC1D6CAB5FD08FCDB3E57C2EA1859726 * L_6 = V_11;
NullCheck(L_6);
String_t* L_7 = SafeBag_get_BagOID_m111CD6142B7D3C61FB45932B8EF9A635D80244B5_inline(L_6, /*hidden argument*/NULL);
NullCheck(L_7);
bool L_8 = String_Equals_m9C4D78DFA0979504FE31429B64A4C26DF48020D1(L_7, _stringLiteralF02768AE02EDF48DA977F708A0513A95FDC0F733, /*hidden argument*/NULL);
if (!L_8)
{
goto IL_0075;
}
}
IL_003e:
{
SafeBag_t46FE0281DC1D6CAB5FD08FCDB3E57C2EA1859726 * L_9 = V_11;
NullCheck(L_9);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_10 = SafeBag_get_ASN1_m77708924A6B21495CB27668AB3CDCC844724AAD1_inline(L_9, /*hidden argument*/NULL);
NullCheck(L_10);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_11 = ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08(L_10, 1, /*hidden argument*/NULL);
NullCheck(L_11);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_12 = ASN1_get_Value_m9BD6239E12A6148AF9507C2F58058C6B8147A079(L_11, /*hidden argument*/NULL);
ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * L_13 = (ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E *)il2cpp_codegen_object_new(ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E_il2cpp_TypeInfo_var);
ContentInfo__ctor_mFFDEEE8545287FC5A22740B7E06F6D64D401E196(L_13, L_12, /*hidden argument*/NULL);
V_12 = L_13;
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_14 = V_1;
ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * L_15 = V_12;
NullCheck(L_15);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_16 = ContentInfo_get_Content_mCF1CED122282F62BAA3453E585E487D50367289F_inline(L_15, /*hidden argument*/NULL);
NullCheck(L_16);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_17 = ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08(L_16, 0, /*hidden argument*/NULL);
NullCheck(L_17);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_18 = ASN1_get_Value_m9BD6239E12A6148AF9507C2F58058C6B8147A079(L_17, /*hidden argument*/NULL);
X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B * L_19 = (X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B *)il2cpp_codegen_object_new(X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B_il2cpp_TypeInfo_var);
X509Certificate__ctor_mE2BC6649D450A36E902A2D6BEB50C49130411129(L_19, L_18, /*hidden argument*/NULL);
NullCheck(L_14);
VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_14, L_19);
}
IL_0075:
{
RuntimeObject* L_20 = V_10;
NullCheck(L_20);
bool L_21 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_20);
if (L_21)
{
goto IL_001d;
}
}
IL_007e:
{
IL2CPP_LEAVE(0x95, FINALLY_0080);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0080;
}
FINALLY_0080:
{ // begin finally (depth: 1)
{
RuntimeObject* L_22 = V_10;
V_13 = ((RuntimeObject*)IsInst((RuntimeObject*)L_22, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var));
RuntimeObject* L_23 = V_13;
if (!L_23)
{
goto IL_0094;
}
}
IL_008d:
{
RuntimeObject* L_24 = V_13;
NullCheck(L_24);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_24);
}
IL_0094:
{
IL2CPP_END_FINALLY(128)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(128)
{
IL2CPP_JUMP_TBL(0x95, IL_0095)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0095:
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_25 = (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 *)il2cpp_codegen_object_new(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_il2cpp_TypeInfo_var);
ArrayList__ctor_m481FA7B37620B59B8C0434A764F5705A6ABDEAE6(L_25, /*hidden argument*/NULL);
V_2 = L_25;
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_26 = (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 *)il2cpp_codegen_object_new(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_il2cpp_TypeInfo_var);
ArrayList__ctor_m481FA7B37620B59B8C0434A764F5705A6ABDEAE6(L_26, /*hidden argument*/NULL);
V_3 = L_26;
X509CertificateCollection_t423BA1B9FAA983BA745023994C648C6DAC3E5A1A * L_27 = PKCS12_get_Certificates_mB8B81E86E481809CAB88C4657FDFCA67FE5190F4(__this, /*hidden argument*/NULL);
NullCheck(L_27);
X509CertificateEnumerator_t1CBC050F10F4BE1E2A8552A1F22E705013EBF505 * L_28 = X509CertificateCollection_GetEnumerator_mE786AA0C41503620161D81E4D9172932564BAB4C(L_27, /*hidden argument*/NULL);
V_14 = L_28;
}
IL_00ae:
try
{ // begin try (depth: 1)
{
goto IL_011a;
}
IL_00b0:
{
X509CertificateEnumerator_t1CBC050F10F4BE1E2A8552A1F22E705013EBF505 * L_29 = V_14;
NullCheck(L_29);
X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B * L_30 = X509CertificateEnumerator_get_Current_m68306EF52C95B315E36054119C0422ACAF95C09F(L_29, /*hidden argument*/NULL);
V_15 = L_30;
V_16 = (bool)0;
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_31 = V_1;
NullCheck(L_31);
RuntimeObject* L_32 = VirtFuncInvoker0< RuntimeObject* >::Invoke(37 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_31);
V_10 = L_32;
}
IL_00c4:
try
{ // begin try (depth: 2)
{
goto IL_00ed;
}
IL_00c6:
{
RuntimeObject* L_33 = V_10;
NullCheck(L_33);
RuntimeObject * L_34 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_33);
V_17 = ((X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B *)CastclassClass((RuntimeObject*)L_34, X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B_il2cpp_TypeInfo_var));
X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B * L_35 = V_15;
NullCheck(L_35);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_36 = VirtFuncInvoker0< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(11 /* System.Byte[] Mono.Security.X509.X509Certificate::get_RawData() */, L_35);
X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B * L_37 = V_17;
NullCheck(L_37);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_38 = VirtFuncInvoker0< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(11 /* System.Byte[] Mono.Security.X509.X509Certificate::get_RawData() */, L_37);
bool L_39 = PKCS12_Compare_m12F289CEDEFD3FCB171A1D84CFC3B38657041FDC(__this, L_36, L_38, /*hidden argument*/NULL);
if (!L_39)
{
goto IL_00ed;
}
}
IL_00ea:
{
V_16 = (bool)1;
}
IL_00ed:
{
RuntimeObject* L_40 = V_10;
NullCheck(L_40);
bool L_41 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_40);
if (L_41)
{
goto IL_00c6;
}
}
IL_00f6:
{
IL2CPP_LEAVE(0x10D, FINALLY_00f8);
}
} // end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_00f8;
}
FINALLY_00f8:
{ // begin finally (depth: 2)
{
RuntimeObject* L_42 = V_10;
V_13 = ((RuntimeObject*)IsInst((RuntimeObject*)L_42, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var));
RuntimeObject* L_43 = V_13;
if (!L_43)
{
goto IL_010c;
}
}
IL_0105:
{
RuntimeObject* L_44 = V_13;
NullCheck(L_44);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_44);
}
IL_010c:
{
IL2CPP_END_FINALLY(248)
}
} // end finally (depth: 2)
IL2CPP_CLEANUP(248)
{
IL2CPP_JUMP_TBL(0x10D, IL_010d)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_010d:
{
bool L_45 = V_16;
if (L_45)
{
goto IL_011a;
}
}
IL_0111:
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_46 = V_2;
X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B * L_47 = V_15;
NullCheck(L_46);
VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_46, L_47);
}
IL_011a:
{
X509CertificateEnumerator_t1CBC050F10F4BE1E2A8552A1F22E705013EBF505 * L_48 = V_14;
NullCheck(L_48);
bool L_49 = X509CertificateEnumerator_MoveNext_m9E88A7C9685146F7E558267D7D828711C5E898F4(L_48, /*hidden argument*/NULL);
if (L_49)
{
goto IL_00b0;
}
}
IL_0123:
{
IL2CPP_LEAVE(0x13A, FINALLY_0125);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0125;
}
FINALLY_0125:
{ // begin finally (depth: 1)
{
X509CertificateEnumerator_t1CBC050F10F4BE1E2A8552A1F22E705013EBF505 * L_50 = V_14;
V_13 = ((RuntimeObject*)IsInst((RuntimeObject*)L_50, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var));
RuntimeObject* L_51 = V_13;
if (!L_51)
{
goto IL_0139;
}
}
IL_0132:
{
RuntimeObject* L_52 = V_13;
NullCheck(L_52);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_52);
}
IL_0139:
{
IL2CPP_END_FINALLY(293)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(293)
{
IL2CPP_JUMP_TBL(0x13A, IL_013a)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_013a:
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_53 = V_1;
NullCheck(L_53);
RuntimeObject* L_54 = VirtFuncInvoker0< RuntimeObject* >::Invoke(37 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_53);
V_10 = L_54;
}
IL_0142:
try
{ // begin try (depth: 1)
{
goto IL_01b3;
}
IL_0144:
{
RuntimeObject* L_55 = V_10;
NullCheck(L_55);
RuntimeObject * L_56 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_55);
V_18 = ((X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B *)CastclassClass((RuntimeObject*)L_56, X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B_il2cpp_TypeInfo_var));
V_19 = (bool)0;
X509CertificateCollection_t423BA1B9FAA983BA745023994C648C6DAC3E5A1A * L_57 = PKCS12_get_Certificates_mB8B81E86E481809CAB88C4657FDFCA67FE5190F4(__this, /*hidden argument*/NULL);
NullCheck(L_57);
X509CertificateEnumerator_t1CBC050F10F4BE1E2A8552A1F22E705013EBF505 * L_58 = X509CertificateCollection_GetEnumerator_mE786AA0C41503620161D81E4D9172932564BAB4C(L_57, /*hidden argument*/NULL);
V_14 = L_58;
}
IL_0162:
try
{ // begin try (depth: 2)
{
goto IL_0186;
}
IL_0164:
{
X509CertificateEnumerator_t1CBC050F10F4BE1E2A8552A1F22E705013EBF505 * L_59 = V_14;
NullCheck(L_59);
X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B * L_60 = X509CertificateEnumerator_get_Current_m68306EF52C95B315E36054119C0422ACAF95C09F(L_59, /*hidden argument*/NULL);
V_20 = L_60;
X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B * L_61 = V_18;
NullCheck(L_61);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_62 = VirtFuncInvoker0< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(11 /* System.Byte[] Mono.Security.X509.X509Certificate::get_RawData() */, L_61);
X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B * L_63 = V_20;
NullCheck(L_63);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_64 = VirtFuncInvoker0< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(11 /* System.Byte[] Mono.Security.X509.X509Certificate::get_RawData() */, L_63);
bool L_65 = PKCS12_Compare_m12F289CEDEFD3FCB171A1D84CFC3B38657041FDC(__this, L_62, L_64, /*hidden argument*/NULL);
if (!L_65)
{
goto IL_0186;
}
}
IL_0183:
{
V_19 = (bool)1;
}
IL_0186:
{
X509CertificateEnumerator_t1CBC050F10F4BE1E2A8552A1F22E705013EBF505 * L_66 = V_14;
NullCheck(L_66);
bool L_67 = X509CertificateEnumerator_MoveNext_m9E88A7C9685146F7E558267D7D828711C5E898F4(L_66, /*hidden argument*/NULL);
if (L_67)
{
goto IL_0164;
}
}
IL_018f:
{
IL2CPP_LEAVE(0x1A6, FINALLY_0191);
}
} // end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0191;
}
FINALLY_0191:
{ // begin finally (depth: 2)
{
X509CertificateEnumerator_t1CBC050F10F4BE1E2A8552A1F22E705013EBF505 * L_68 = V_14;
V_13 = ((RuntimeObject*)IsInst((RuntimeObject*)L_68, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var));
RuntimeObject* L_69 = V_13;
if (!L_69)
{
goto IL_01a5;
}
}
IL_019e:
{
RuntimeObject* L_70 = V_13;
NullCheck(L_70);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_70);
}
IL_01a5:
{
IL2CPP_END_FINALLY(401)
}
} // end finally (depth: 2)
IL2CPP_CLEANUP(401)
{
IL2CPP_JUMP_TBL(0x1A6, IL_01a6)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_01a6:
{
bool L_71 = V_19;
if (L_71)
{
goto IL_01b3;
}
}
IL_01aa:
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_72 = V_3;
X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B * L_73 = V_18;
NullCheck(L_72);
VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_72, L_73);
}
IL_01b3:
{
RuntimeObject* L_74 = V_10;
NullCheck(L_74);
bool L_75 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_74);
if (L_75)
{
goto IL_0144;
}
}
IL_01bc:
{
IL2CPP_LEAVE(0x1D3, FINALLY_01be);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_01be;
}
FINALLY_01be:
{ // begin finally (depth: 1)
{
RuntimeObject* L_76 = V_10;
V_13 = ((RuntimeObject*)IsInst((RuntimeObject*)L_76, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var));
RuntimeObject* L_77 = V_13;
if (!L_77)
{
goto IL_01d2;
}
}
IL_01cb:
{
RuntimeObject* L_78 = V_13;
NullCheck(L_78);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_78);
}
IL_01d2:
{
IL2CPP_END_FINALLY(446)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(446)
{
IL2CPP_JUMP_TBL(0x1D3, IL_01d3)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_01d3:
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_79 = V_3;
NullCheck(L_79);
RuntimeObject* L_80 = VirtFuncInvoker0< RuntimeObject* >::Invoke(37 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_79);
V_10 = L_80;
}
IL_01db:
try
{ // begin try (depth: 1)
{
goto IL_01f3;
}
IL_01dd:
{
RuntimeObject* L_81 = V_10;
NullCheck(L_81);
RuntimeObject * L_82 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_81);
V_21 = ((X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B *)CastclassClass((RuntimeObject*)L_82, X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B_il2cpp_TypeInfo_var));
X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B * L_83 = V_21;
PKCS12_RemoveCertificate_mE3594A106A1E0771DF835725966BC529F738DFCE(__this, L_83, /*hidden argument*/NULL);
}
IL_01f3:
{
RuntimeObject* L_84 = V_10;
NullCheck(L_84);
bool L_85 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_84);
if (L_85)
{
goto IL_01dd;
}
}
IL_01fc:
{
IL2CPP_LEAVE(0x213, FINALLY_01fe);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_01fe;
}
FINALLY_01fe:
{ // begin finally (depth: 1)
{
RuntimeObject* L_86 = V_10;
V_13 = ((RuntimeObject*)IsInst((RuntimeObject*)L_86, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var));
RuntimeObject* L_87 = V_13;
if (!L_87)
{
goto IL_0212;
}
}
IL_020b:
{
RuntimeObject* L_88 = V_13;
NullCheck(L_88);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_88);
}
IL_0212:
{
IL2CPP_END_FINALLY(510)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(510)
{
IL2CPP_JUMP_TBL(0x213, IL_0213)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0213:
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_89 = V_2;
NullCheck(L_89);
RuntimeObject* L_90 = VirtFuncInvoker0< RuntimeObject* >::Invoke(37 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_89);
V_10 = L_90;
}
IL_021b:
try
{ // begin try (depth: 1)
{
goto IL_0233;
}
IL_021d:
{
RuntimeObject* L_91 = V_10;
NullCheck(L_91);
RuntimeObject * L_92 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_91);
V_22 = ((X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B *)CastclassClass((RuntimeObject*)L_92, X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B_il2cpp_TypeInfo_var));
X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B * L_93 = V_22;
PKCS12_AddCertificate_m9D6DE2BF285B6BFCE1F8314438969020F5C3005D(__this, L_93, /*hidden argument*/NULL);
}
IL_0233:
{
RuntimeObject* L_94 = V_10;
NullCheck(L_94);
bool L_95 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_94);
if (L_95)
{
goto IL_021d;
}
}
IL_023c:
{
IL2CPP_LEAVE(0x253, FINALLY_023e);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_023e;
}
FINALLY_023e:
{ // begin finally (depth: 1)
{
RuntimeObject* L_96 = V_10;
V_13 = ((RuntimeObject*)IsInst((RuntimeObject*)L_96, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var));
RuntimeObject* L_97 = V_13;
if (!L_97)
{
goto IL_0252;
}
}
IL_024b:
{
RuntimeObject* L_98 = V_13;
NullCheck(L_98);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_98);
}
IL_0252:
{
IL2CPP_END_FINALLY(574)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(574)
{
IL2CPP_JUMP_TBL(0x253, IL_0253)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0253:
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_99 = __this->get__safeBags_8();
NullCheck(L_99);
int32_t L_100 = VirtFuncInvoker0< int32_t >::Invoke(22 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_99);
if ((((int32_t)L_100) <= ((int32_t)0)))
{
goto IL_02f3;
}
}
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_101 = (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E *)il2cpp_codegen_object_new(ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E_il2cpp_TypeInfo_var);
ASN1__ctor_m6DD2E5BD0B12A6BFA95E1822A55B2294B8C237BC(L_101, (uint8_t)((int32_t)48), /*hidden argument*/NULL);
V_23 = L_101;
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_102 = __this->get__safeBags_8();
NullCheck(L_102);
RuntimeObject* L_103 = VirtFuncInvoker0< RuntimeObject* >::Invoke(37 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_102);
V_10 = L_103;
}
IL_027a:
try
{ // begin try (depth: 1)
{
goto IL_02ac;
}
IL_027c:
{
RuntimeObject* L_104 = V_10;
NullCheck(L_104);
RuntimeObject * L_105 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_104);
V_24 = ((SafeBag_t46FE0281DC1D6CAB5FD08FCDB3E57C2EA1859726 *)CastclassClass((RuntimeObject*)L_105, SafeBag_t46FE0281DC1D6CAB5FD08FCDB3E57C2EA1859726_il2cpp_TypeInfo_var));
SafeBag_t46FE0281DC1D6CAB5FD08FCDB3E57C2EA1859726 * L_106 = V_24;
NullCheck(L_106);
String_t* L_107 = SafeBag_get_BagOID_m111CD6142B7D3C61FB45932B8EF9A635D80244B5_inline(L_106, /*hidden argument*/NULL);
NullCheck(L_107);
bool L_108 = String_Equals_m9C4D78DFA0979504FE31429B64A4C26DF48020D1(L_107, _stringLiteralF02768AE02EDF48DA977F708A0513A95FDC0F733, /*hidden argument*/NULL);
if (!L_108)
{
goto IL_02ac;
}
}
IL_029d:
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_109 = V_23;
SafeBag_t46FE0281DC1D6CAB5FD08FCDB3E57C2EA1859726 * L_110 = V_24;
NullCheck(L_110);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_111 = SafeBag_get_ASN1_m77708924A6B21495CB27668AB3CDCC844724AAD1_inline(L_110, /*hidden argument*/NULL);
NullCheck(L_109);
ASN1_Add_mF6ED0416BB021A1C333F99E42F8B17AF8B26639B(L_109, L_111, /*hidden argument*/NULL);
}
IL_02ac:
{
RuntimeObject* L_112 = V_10;
NullCheck(L_112);
bool L_113 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_112);
if (L_113)
{
goto IL_027c;
}
}
IL_02b5:
{
IL2CPP_LEAVE(0x2CC, FINALLY_02b7);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_02b7;
}
FINALLY_02b7:
{ // begin finally (depth: 1)
{
RuntimeObject* L_114 = V_10;
V_13 = ((RuntimeObject*)IsInst((RuntimeObject*)L_114, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var));
RuntimeObject* L_115 = V_13;
if (!L_115)
{
goto IL_02cb;
}
}
IL_02c4:
{
RuntimeObject* L_116 = V_13;
NullCheck(L_116);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_116);
}
IL_02cb:
{
IL2CPP_END_FINALLY(695)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(695)
{
IL2CPP_JUMP_TBL(0x2CC, IL_02cc)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_02cc:
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_117 = V_23;
NullCheck(L_117);
int32_t L_118 = ASN1_get_Count_m5A0E71B4C4A2257C0875AE1041AAA953C5B12A19(L_117, /*hidden argument*/NULL);
if ((((int32_t)L_118) <= ((int32_t)0)))
{
goto IL_02f3;
}
}
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_119 = V_23;
ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * L_120 = PKCS12_EncryptedContentInfo_m1E71931C47F151A7B5AC985929B78FAED83C5E89(__this, L_119, _stringLiteral8123C11021D033CA8E67AEF3CA8B6BC4D85B977C, /*hidden argument*/NULL);
V_25 = L_120;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_121 = V_0;
ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * L_122 = V_25;
NullCheck(L_122);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_123 = ContentInfo_get_ASN1_mE290789431E97C3AF43911BB56FBE15C6D799411(L_122, /*hidden argument*/NULL);
NullCheck(L_121);
ASN1_Add_mF6ED0416BB021A1C333F99E42F8B17AF8B26639B(L_121, L_123, /*hidden argument*/NULL);
}
IL_02f3:
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_124 = __this->get__safeBags_8();
NullCheck(L_124);
int32_t L_125 = VirtFuncInvoker0< int32_t >::Invoke(22 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_124);
if ((((int32_t)L_125) <= ((int32_t)0)))
{
goto IL_03cd;
}
}
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_126 = (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E *)il2cpp_codegen_object_new(ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E_il2cpp_TypeInfo_var);
ASN1__ctor_m6DD2E5BD0B12A6BFA95E1822A55B2294B8C237BC(L_126, (uint8_t)((int32_t)48), /*hidden argument*/NULL);
V_26 = L_126;
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_127 = __this->get__safeBags_8();
NullCheck(L_127);
RuntimeObject* L_128 = VirtFuncInvoker0< RuntimeObject* >::Invoke(37 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_127);
V_10 = L_128;
}
IL_031a:
try
{ // begin try (depth: 1)
{
goto IL_035f;
}
IL_031c:
{
RuntimeObject* L_129 = V_10;
NullCheck(L_129);
RuntimeObject * L_130 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_129);
V_27 = ((SafeBag_t46FE0281DC1D6CAB5FD08FCDB3E57C2EA1859726 *)CastclassClass((RuntimeObject*)L_130, SafeBag_t46FE0281DC1D6CAB5FD08FCDB3E57C2EA1859726_il2cpp_TypeInfo_var));
SafeBag_t46FE0281DC1D6CAB5FD08FCDB3E57C2EA1859726 * L_131 = V_27;
NullCheck(L_131);
String_t* L_132 = SafeBag_get_BagOID_m111CD6142B7D3C61FB45932B8EF9A635D80244B5_inline(L_131, /*hidden argument*/NULL);
NullCheck(L_132);
bool L_133 = String_Equals_m9C4D78DFA0979504FE31429B64A4C26DF48020D1(L_132, _stringLiteral2F280ADB68040B360D7B03B819A13379B799EFAB, /*hidden argument*/NULL);
if (L_133)
{
goto IL_0350;
}
}
IL_033d:
{
SafeBag_t46FE0281DC1D6CAB5FD08FCDB3E57C2EA1859726 * L_134 = V_27;
NullCheck(L_134);
String_t* L_135 = SafeBag_get_BagOID_m111CD6142B7D3C61FB45932B8EF9A635D80244B5_inline(L_134, /*hidden argument*/NULL);
NullCheck(L_135);
bool L_136 = String_Equals_m9C4D78DFA0979504FE31429B64A4C26DF48020D1(L_135, _stringLiteral3F556C2B89C9D40F8FCB8B45DB88D9BA3BDB25A7, /*hidden argument*/NULL);
if (!L_136)
{
goto IL_035f;
}
}
IL_0350:
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_137 = V_26;
SafeBag_t46FE0281DC1D6CAB5FD08FCDB3E57C2EA1859726 * L_138 = V_27;
NullCheck(L_138);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_139 = SafeBag_get_ASN1_m77708924A6B21495CB27668AB3CDCC844724AAD1_inline(L_138, /*hidden argument*/NULL);
NullCheck(L_137);
ASN1_Add_mF6ED0416BB021A1C333F99E42F8B17AF8B26639B(L_137, L_139, /*hidden argument*/NULL);
}
IL_035f:
{
RuntimeObject* L_140 = V_10;
NullCheck(L_140);
bool L_141 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_140);
if (L_141)
{
goto IL_031c;
}
}
IL_0368:
{
IL2CPP_LEAVE(0x37F, FINALLY_036a);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_036a;
}
FINALLY_036a:
{ // begin finally (depth: 1)
{
RuntimeObject* L_142 = V_10;
V_13 = ((RuntimeObject*)IsInst((RuntimeObject*)L_142, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var));
RuntimeObject* L_143 = V_13;
if (!L_143)
{
goto IL_037e;
}
}
IL_0377:
{
RuntimeObject* L_144 = V_13;
NullCheck(L_144);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_144);
}
IL_037e:
{
IL2CPP_END_FINALLY(874)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(874)
{
IL2CPP_JUMP_TBL(0x37F, IL_037f)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_037f:
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_145 = V_26;
NullCheck(L_145);
int32_t L_146 = ASN1_get_Count_m5A0E71B4C4A2257C0875AE1041AAA953C5B12A19(L_145, /*hidden argument*/NULL);
if ((((int32_t)L_146) <= ((int32_t)0)))
{
goto IL_03cd;
}
}
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_147 = (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E *)il2cpp_codegen_object_new(ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E_il2cpp_TypeInfo_var);
ASN1__ctor_m6DD2E5BD0B12A6BFA95E1822A55B2294B8C237BC(L_147, (uint8_t)((int32_t)160), /*hidden argument*/NULL);
V_28 = L_147;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_148 = V_28;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_149 = V_26;
NullCheck(L_149);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_150 = VirtFuncInvoker0< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(4 /* System.Byte[] Mono.Security.ASN1::GetBytes() */, L_149);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_151 = (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E *)il2cpp_codegen_object_new(ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E_il2cpp_TypeInfo_var);
ASN1__ctor_mAB2593792CB61AD1542F4F9D6FB6E8BB96DE007E(L_151, (uint8_t)4, L_150, /*hidden argument*/NULL);
NullCheck(L_148);
ASN1_Add_mF6ED0416BB021A1C333F99E42F8B17AF8B26639B(L_148, L_151, /*hidden argument*/NULL);
ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * L_152 = (ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E *)il2cpp_codegen_object_new(ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E_il2cpp_TypeInfo_var);
ContentInfo__ctor_mF21B31604F01A686DB03E30FEAE859A53A0E084A(L_152, _stringLiteral929E64373A1A3A451EAF8698A1D26A5C989E42EA, /*hidden argument*/NULL);
V_29 = L_152;
ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * L_153 = V_29;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_154 = V_28;
NullCheck(L_153);
ContentInfo_set_Content_m15B5D9A61236E1C116A9B5A651E80C5D78FB2598_inline(L_153, L_154, /*hidden argument*/NULL);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_155 = V_0;
ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * L_156 = V_29;
NullCheck(L_156);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_157 = ContentInfo_get_ASN1_mE290789431E97C3AF43911BB56FBE15C6D799411(L_156, /*hidden argument*/NULL);
NullCheck(L_155);
ASN1_Add_mF6ED0416BB021A1C333F99E42F8B17AF8B26639B(L_155, L_157, /*hidden argument*/NULL);
}
IL_03cd:
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_158 = __this->get__safeBags_8();
NullCheck(L_158);
int32_t L_159 = VirtFuncInvoker0< int32_t >::Invoke(22 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_158);
if ((((int32_t)L_159) <= ((int32_t)0)))
{
goto IL_046d;
}
}
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_160 = (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E *)il2cpp_codegen_object_new(ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E_il2cpp_TypeInfo_var);
ASN1__ctor_m6DD2E5BD0B12A6BFA95E1822A55B2294B8C237BC(L_160, (uint8_t)((int32_t)48), /*hidden argument*/NULL);
V_30 = L_160;
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_161 = __this->get__safeBags_8();
NullCheck(L_161);
RuntimeObject* L_162 = VirtFuncInvoker0< RuntimeObject* >::Invoke(37 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_161);
V_10 = L_162;
}
IL_03f4:
try
{ // begin try (depth: 1)
{
goto IL_0426;
}
IL_03f6:
{
RuntimeObject* L_163 = V_10;
NullCheck(L_163);
RuntimeObject * L_164 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_163);
V_31 = ((SafeBag_t46FE0281DC1D6CAB5FD08FCDB3E57C2EA1859726 *)CastclassClass((RuntimeObject*)L_164, SafeBag_t46FE0281DC1D6CAB5FD08FCDB3E57C2EA1859726_il2cpp_TypeInfo_var));
SafeBag_t46FE0281DC1D6CAB5FD08FCDB3E57C2EA1859726 * L_165 = V_31;
NullCheck(L_165);
String_t* L_166 = SafeBag_get_BagOID_m111CD6142B7D3C61FB45932B8EF9A635D80244B5_inline(L_165, /*hidden argument*/NULL);
NullCheck(L_166);
bool L_167 = String_Equals_m9C4D78DFA0979504FE31429B64A4C26DF48020D1(L_166, _stringLiteralD9D28254BE2512FBA8D1D209322E0B1B22D90CEE, /*hidden argument*/NULL);
if (!L_167)
{
goto IL_0426;
}
}
IL_0417:
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_168 = V_30;
SafeBag_t46FE0281DC1D6CAB5FD08FCDB3E57C2EA1859726 * L_169 = V_31;
NullCheck(L_169);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_170 = SafeBag_get_ASN1_m77708924A6B21495CB27668AB3CDCC844724AAD1_inline(L_169, /*hidden argument*/NULL);
NullCheck(L_168);
ASN1_Add_mF6ED0416BB021A1C333F99E42F8B17AF8B26639B(L_168, L_170, /*hidden argument*/NULL);
}
IL_0426:
{
RuntimeObject* L_171 = V_10;
NullCheck(L_171);
bool L_172 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_171);
if (L_172)
{
goto IL_03f6;
}
}
IL_042f:
{
IL2CPP_LEAVE(0x446, FINALLY_0431);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0431;
}
FINALLY_0431:
{ // begin finally (depth: 1)
{
RuntimeObject* L_173 = V_10;
V_13 = ((RuntimeObject*)IsInst((RuntimeObject*)L_173, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var));
RuntimeObject* L_174 = V_13;
if (!L_174)
{
goto IL_0445;
}
}
IL_043e:
{
RuntimeObject* L_175 = V_13;
NullCheck(L_175);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_175);
}
IL_0445:
{
IL2CPP_END_FINALLY(1073)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(1073)
{
IL2CPP_JUMP_TBL(0x446, IL_0446)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0446:
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_176 = V_30;
NullCheck(L_176);
int32_t L_177 = ASN1_get_Count_m5A0E71B4C4A2257C0875AE1041AAA953C5B12A19(L_176, /*hidden argument*/NULL);
if ((((int32_t)L_177) <= ((int32_t)0)))
{
goto IL_046d;
}
}
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_178 = V_30;
ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * L_179 = PKCS12_EncryptedContentInfo_m1E71931C47F151A7B5AC985929B78FAED83C5E89(__this, L_178, _stringLiteral8123C11021D033CA8E67AEF3CA8B6BC4D85B977C, /*hidden argument*/NULL);
V_32 = L_179;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_180 = V_0;
ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * L_181 = V_32;
NullCheck(L_181);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_182 = ContentInfo_get_ASN1_mE290789431E97C3AF43911BB56FBE15C6D799411(L_181, /*hidden argument*/NULL);
NullCheck(L_180);
ASN1_Add_mF6ED0416BB021A1C333F99E42F8B17AF8B26639B(L_180, L_182, /*hidden argument*/NULL);
}
IL_046d:
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_183 = V_0;
NullCheck(L_183);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_184 = VirtFuncInvoker0< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(4 /* System.Byte[] Mono.Security.ASN1::GetBytes() */, L_183);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_185 = (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E *)il2cpp_codegen_object_new(ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E_il2cpp_TypeInfo_var);
ASN1__ctor_mAB2593792CB61AD1542F4F9D6FB6E8BB96DE007E(L_185, (uint8_t)4, L_184, /*hidden argument*/NULL);
V_4 = L_185;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_186 = (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E *)il2cpp_codegen_object_new(ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E_il2cpp_TypeInfo_var);
ASN1__ctor_m6DD2E5BD0B12A6BFA95E1822A55B2294B8C237BC(L_186, (uint8_t)((int32_t)160), /*hidden argument*/NULL);
V_5 = L_186;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_187 = V_5;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_188 = V_4;
NullCheck(L_187);
ASN1_Add_mF6ED0416BB021A1C333F99E42F8B17AF8B26639B(L_187, L_188, /*hidden argument*/NULL);
ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * L_189 = (ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E *)il2cpp_codegen_object_new(ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E_il2cpp_TypeInfo_var);
ContentInfo__ctor_mF21B31604F01A686DB03E30FEAE859A53A0E084A(L_189, _stringLiteral929E64373A1A3A451EAF8698A1D26A5C989E42EA, /*hidden argument*/NULL);
V_6 = L_189;
ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * L_190 = V_6;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_191 = V_5;
NullCheck(L_190);
ContentInfo_set_Content_m15B5D9A61236E1C116A9B5A651E80C5D78FB2598_inline(L_190, L_191, /*hidden argument*/NULL);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_192 = (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E *)il2cpp_codegen_object_new(ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E_il2cpp_TypeInfo_var);
ASN1__ctor_m6DD2E5BD0B12A6BFA95E1822A55B2294B8C237BC(L_192, (uint8_t)((int32_t)48), /*hidden argument*/NULL);
V_7 = L_192;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_193 = __this->get__password_0();
if (!L_193)
{
goto IL_0571;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_194 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)((int32_t)20));
V_33 = L_194;
RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * L_195 = PKCS12_get_RNG_m41E242AD5803360A10A8084A081F54F6D3402736(__this, /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_196 = V_33;
NullCheck(L_195);
VirtActionInvoker1< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(6 /* System.Void System.Security.Cryptography.RandomNumberGenerator::GetBytes(System.Byte[]) */, L_195, L_196);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_197 = __this->get__password_0();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_198 = V_33;
int32_t L_199 = __this->get__iterations_7();
ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * L_200 = V_6;
NullCheck(L_200);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_201 = ContentInfo_get_Content_mCF1CED122282F62BAA3453E585E487D50367289F_inline(L_200, /*hidden argument*/NULL);
NullCheck(L_201);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_202 = ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08(L_201, 0, /*hidden argument*/NULL);
NullCheck(L_202);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_203 = ASN1_get_Value_m9BD6239E12A6148AF9507C2F58058C6B8147A079(L_202, /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_204 = PKCS12_MAC_mA1250320B5F0B5C94D8532296AB59CC32B7A7E78(__this, L_197, L_198, L_199, L_203, /*hidden argument*/NULL);
V_34 = L_204;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_205 = (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E *)il2cpp_codegen_object_new(ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E_il2cpp_TypeInfo_var);
ASN1__ctor_m6DD2E5BD0B12A6BFA95E1822A55B2294B8C237BC(L_205, (uint8_t)((int32_t)48), /*hidden argument*/NULL);
V_35 = L_205;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_206 = V_35;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_207 = ASN1Convert_FromOid_mC178E72357986C1AB75A1FFC9DA7687ECA20E462(_stringLiteralA12083BADD146F221E05419C3C15DC0CB7D1A0F6, /*hidden argument*/NULL);
NullCheck(L_206);
ASN1_Add_mF6ED0416BB021A1C333F99E42F8B17AF8B26639B(L_206, L_207, /*hidden argument*/NULL);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_208 = V_35;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_209 = (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E *)il2cpp_codegen_object_new(ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E_il2cpp_TypeInfo_var);
ASN1__ctor_m6DD2E5BD0B12A6BFA95E1822A55B2294B8C237BC(L_209, (uint8_t)5, /*hidden argument*/NULL);
NullCheck(L_208);
ASN1_Add_mF6ED0416BB021A1C333F99E42F8B17AF8B26639B(L_208, L_209, /*hidden argument*/NULL);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_210 = (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E *)il2cpp_codegen_object_new(ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E_il2cpp_TypeInfo_var);
ASN1__ctor_m6DD2E5BD0B12A6BFA95E1822A55B2294B8C237BC(L_210, (uint8_t)((int32_t)48), /*hidden argument*/NULL);
V_36 = L_210;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_211 = V_36;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_212 = V_35;
NullCheck(L_211);
ASN1_Add_mF6ED0416BB021A1C333F99E42F8B17AF8B26639B(L_211, L_212, /*hidden argument*/NULL);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_213 = V_36;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_214 = V_34;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_215 = (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E *)il2cpp_codegen_object_new(ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E_il2cpp_TypeInfo_var);
ASN1__ctor_mAB2593792CB61AD1542F4F9D6FB6E8BB96DE007E(L_215, (uint8_t)4, L_214, /*hidden argument*/NULL);
NullCheck(L_213);
ASN1_Add_mF6ED0416BB021A1C333F99E42F8B17AF8B26639B(L_213, L_215, /*hidden argument*/NULL);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_216 = V_7;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_217 = V_36;
NullCheck(L_216);
ASN1_Add_mF6ED0416BB021A1C333F99E42F8B17AF8B26639B(L_216, L_217, /*hidden argument*/NULL);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_218 = V_7;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_219 = V_33;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_220 = (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E *)il2cpp_codegen_object_new(ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E_il2cpp_TypeInfo_var);
ASN1__ctor_mAB2593792CB61AD1542F4F9D6FB6E8BB96DE007E(L_220, (uint8_t)4, L_219, /*hidden argument*/NULL);
NullCheck(L_218);
ASN1_Add_mF6ED0416BB021A1C333F99E42F8B17AF8B26639B(L_218, L_220, /*hidden argument*/NULL);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_221 = V_7;
int32_t L_222 = __this->get__iterations_7();
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_223 = ASN1Convert_FromInt32_m59FF0922659B0A323026CCC0876BC33020C4FC9A(L_222, /*hidden argument*/NULL);
NullCheck(L_221);
ASN1_Add_mF6ED0416BB021A1C333F99E42F8B17AF8B26639B(L_221, L_223, /*hidden argument*/NULL);
}
IL_0571:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_224 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)1);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_225 = L_224;
NullCheck(L_225);
(L_225)->SetAt(static_cast<il2cpp_array_size_t>(0), (uint8_t)3);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_226 = (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E *)il2cpp_codegen_object_new(ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E_il2cpp_TypeInfo_var);
ASN1__ctor_mAB2593792CB61AD1542F4F9D6FB6E8BB96DE007E(L_226, (uint8_t)2, L_225, /*hidden argument*/NULL);
V_8 = L_226;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_227 = (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E *)il2cpp_codegen_object_new(ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E_il2cpp_TypeInfo_var);
ASN1__ctor_m6DD2E5BD0B12A6BFA95E1822A55B2294B8C237BC(L_227, (uint8_t)((int32_t)48), /*hidden argument*/NULL);
V_9 = L_227;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_228 = V_9;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_229 = V_8;
NullCheck(L_228);
ASN1_Add_mF6ED0416BB021A1C333F99E42F8B17AF8B26639B(L_228, L_229, /*hidden argument*/NULL);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_230 = V_9;
ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * L_231 = V_6;
NullCheck(L_231);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_232 = ContentInfo_get_ASN1_mE290789431E97C3AF43911BB56FBE15C6D799411(L_231, /*hidden argument*/NULL);
NullCheck(L_230);
ASN1_Add_mF6ED0416BB021A1C333F99E42F8B17AF8B26639B(L_230, L_232, /*hidden argument*/NULL);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_233 = V_7;
NullCheck(L_233);
int32_t L_234 = ASN1_get_Count_m5A0E71B4C4A2257C0875AE1041AAA953C5B12A19(L_233, /*hidden argument*/NULL);
if ((((int32_t)L_234) <= ((int32_t)0)))
{
goto IL_05b9;
}
}
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_235 = V_9;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_236 = V_7;
NullCheck(L_235);
ASN1_Add_mF6ED0416BB021A1C333F99E42F8B17AF8B26639B(L_235, L_236, /*hidden argument*/NULL);
}
IL_05b9:
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_237 = V_9;
NullCheck(L_237);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_238 = VirtFuncInvoker0< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(4 /* System.Byte[] Mono.Security.ASN1::GetBytes() */, L_237);
return L_238;
}
}
// Mono.Security.PKCS7_ContentInfo Mono.Security.X509.PKCS12::EncryptedContentInfo(Mono.Security.ASN1,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * PKCS12_EncryptedContentInfo_m1E71931C47F151A7B5AC985929B78FAED83C5E89 (PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C * __this, ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * ___safeBags0, String_t* ___algorithmOid1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PKCS12_EncryptedContentInfo_m1E71931C47F151A7B5AC985929B78FAED83C5E89_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_0 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * V_1 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * V_2 = NULL;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_3 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * V_4 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * V_5 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * V_6 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * V_7 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * V_8 = NULL;
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)8);
V_0 = L_0;
RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * L_1 = PKCS12_get_RNG_m41E242AD5803360A10A8084A081F54F6D3402736(__this, /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = V_0;
NullCheck(L_1);
VirtActionInvoker1< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(6 /* System.Void System.Security.Cryptography.RandomNumberGenerator::GetBytes(System.Byte[]) */, L_1, L_2);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_3 = (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E *)il2cpp_codegen_object_new(ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E_il2cpp_TypeInfo_var);
ASN1__ctor_m6DD2E5BD0B12A6BFA95E1822A55B2294B8C237BC(L_3, (uint8_t)((int32_t)48), /*hidden argument*/NULL);
V_1 = L_3;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_4 = V_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_5 = V_0;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_6 = (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E *)il2cpp_codegen_object_new(ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E_il2cpp_TypeInfo_var);
ASN1__ctor_mAB2593792CB61AD1542F4F9D6FB6E8BB96DE007E(L_6, (uint8_t)4, L_5, /*hidden argument*/NULL);
NullCheck(L_4);
ASN1_Add_mF6ED0416BB021A1C333F99E42F8B17AF8B26639B(L_4, L_6, /*hidden argument*/NULL);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_7 = V_1;
int32_t L_8 = __this->get__iterations_7();
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_9 = ASN1Convert_FromInt32_m59FF0922659B0A323026CCC0876BC33020C4FC9A(L_8, /*hidden argument*/NULL);
NullCheck(L_7);
ASN1_Add_mF6ED0416BB021A1C333F99E42F8B17AF8B26639B(L_7, L_9, /*hidden argument*/NULL);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_10 = (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E *)il2cpp_codegen_object_new(ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E_il2cpp_TypeInfo_var);
ASN1__ctor_m6DD2E5BD0B12A6BFA95E1822A55B2294B8C237BC(L_10, (uint8_t)((int32_t)48), /*hidden argument*/NULL);
V_2 = L_10;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_11 = V_2;
String_t* L_12 = ___algorithmOid1;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_13 = ASN1Convert_FromOid_mC178E72357986C1AB75A1FFC9DA7687ECA20E462(L_12, /*hidden argument*/NULL);
NullCheck(L_11);
ASN1_Add_mF6ED0416BB021A1C333F99E42F8B17AF8B26639B(L_11, L_13, /*hidden argument*/NULL);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_14 = V_2;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_15 = V_1;
NullCheck(L_14);
ASN1_Add_mF6ED0416BB021A1C333F99E42F8B17AF8B26639B(L_14, L_15, /*hidden argument*/NULL);
String_t* L_16 = ___algorithmOid1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_17 = V_0;
int32_t L_18 = __this->get__iterations_7();
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_19 = ___safeBags0;
NullCheck(L_19);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_20 = VirtFuncInvoker0< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(4 /* System.Byte[] Mono.Security.ASN1::GetBytes() */, L_19);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_21 = PKCS12_Encrypt_m46E5121EFD2B8D707F1028204C59EE95955FA992(__this, L_16, L_17, L_18, L_20, /*hidden argument*/NULL);
V_3 = L_21;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_22 = V_3;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_23 = (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E *)il2cpp_codegen_object_new(ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E_il2cpp_TypeInfo_var);
ASN1__ctor_mAB2593792CB61AD1542F4F9D6FB6E8BB96DE007E(L_23, (uint8_t)((int32_t)128), L_22, /*hidden argument*/NULL);
V_4 = L_23;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_24 = (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E *)il2cpp_codegen_object_new(ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E_il2cpp_TypeInfo_var);
ASN1__ctor_m6DD2E5BD0B12A6BFA95E1822A55B2294B8C237BC(L_24, (uint8_t)((int32_t)48), /*hidden argument*/NULL);
V_5 = L_24;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_25 = V_5;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_26 = ASN1Convert_FromOid_mC178E72357986C1AB75A1FFC9DA7687ECA20E462(_stringLiteral929E64373A1A3A451EAF8698A1D26A5C989E42EA, /*hidden argument*/NULL);
NullCheck(L_25);
ASN1_Add_mF6ED0416BB021A1C333F99E42F8B17AF8B26639B(L_25, L_26, /*hidden argument*/NULL);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_27 = V_5;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_28 = V_2;
NullCheck(L_27);
ASN1_Add_mF6ED0416BB021A1C333F99E42F8B17AF8B26639B(L_27, L_28, /*hidden argument*/NULL);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_29 = V_5;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_30 = V_4;
NullCheck(L_29);
ASN1_Add_mF6ED0416BB021A1C333F99E42F8B17AF8B26639B(L_29, L_30, /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_31 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)1);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_32 = (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E *)il2cpp_codegen_object_new(ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E_il2cpp_TypeInfo_var);
ASN1__ctor_mAB2593792CB61AD1542F4F9D6FB6E8BB96DE007E(L_32, (uint8_t)2, L_31, /*hidden argument*/NULL);
V_6 = L_32;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_33 = (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E *)il2cpp_codegen_object_new(ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E_il2cpp_TypeInfo_var);
ASN1__ctor_m6DD2E5BD0B12A6BFA95E1822A55B2294B8C237BC(L_33, (uint8_t)((int32_t)48), /*hidden argument*/NULL);
V_7 = L_33;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_34 = V_7;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_35 = V_6;
NullCheck(L_34);
ASN1_Add_mF6ED0416BB021A1C333F99E42F8B17AF8B26639B(L_34, L_35, /*hidden argument*/NULL);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_36 = V_7;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_37 = V_5;
NullCheck(L_36);
ASN1_Add_mF6ED0416BB021A1C333F99E42F8B17AF8B26639B(L_36, L_37, /*hidden argument*/NULL);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_38 = (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E *)il2cpp_codegen_object_new(ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E_il2cpp_TypeInfo_var);
ASN1__ctor_m6DD2E5BD0B12A6BFA95E1822A55B2294B8C237BC(L_38, (uint8_t)((int32_t)160), /*hidden argument*/NULL);
V_8 = L_38;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_39 = V_8;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_40 = V_7;
NullCheck(L_39);
ASN1_Add_mF6ED0416BB021A1C333F99E42F8B17AF8B26639B(L_39, L_40, /*hidden argument*/NULL);
ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * L_41 = (ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E *)il2cpp_codegen_object_new(ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E_il2cpp_TypeInfo_var);
ContentInfo__ctor_mF21B31604F01A686DB03E30FEAE859A53A0E084A(L_41, _stringLiteral796CC3E6D06777F1C198837519479B1D2F0024AD, /*hidden argument*/NULL);
ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * L_42 = L_41;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_43 = V_8;
NullCheck(L_42);
ContentInfo_set_Content_m15B5D9A61236E1C116A9B5A651E80C5D78FB2598_inline(L_42, L_43, /*hidden argument*/NULL);
return L_42;
}
}
// System.Void Mono.Security.X509.PKCS12::AddCertificate(Mono.Security.X509.X509Certificate)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PKCS12_AddCertificate_m9D6DE2BF285B6BFCE1F8314438969020F5C3005D (PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C * __this, X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B * ___cert0, const RuntimeMethod* method)
{
{
X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B * L_0 = ___cert0;
PKCS12_AddCertificate_m17964E654DA9F739484806557EBD8CFE5331A198(__this, L_0, (RuntimeObject*)NULL, /*hidden argument*/NULL);
return;
}
}
// System.Void Mono.Security.X509.PKCS12::AddCertificate(Mono.Security.X509.X509Certificate,System.Collections.IDictionary)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PKCS12_AddCertificate_m17964E654DA9F739484806557EBD8CFE5331A198 (PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C * __this, X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B * ___cert0, RuntimeObject* ___attributes1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PKCS12_AddCertificate_m17964E654DA9F739484806557EBD8CFE5331A198_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
int32_t V_1 = 0;
SafeBag_t46FE0281DC1D6CAB5FD08FCDB3E57C2EA1859726 * V_2 = NULL;
X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B * V_3 = NULL;
{
V_0 = (bool)0;
V_1 = 0;
goto IL_0070;
}
IL_0006:
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_0 = __this->get__safeBags_8();
int32_t L_1 = V_1;
NullCheck(L_0);
RuntimeObject * L_2 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(27 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_0, L_1);
V_2 = ((SafeBag_t46FE0281DC1D6CAB5FD08FCDB3E57C2EA1859726 *)CastclassClass((RuntimeObject*)L_2, SafeBag_t46FE0281DC1D6CAB5FD08FCDB3E57C2EA1859726_il2cpp_TypeInfo_var));
SafeBag_t46FE0281DC1D6CAB5FD08FCDB3E57C2EA1859726 * L_3 = V_2;
NullCheck(L_3);
String_t* L_4 = SafeBag_get_BagOID_m111CD6142B7D3C61FB45932B8EF9A635D80244B5_inline(L_3, /*hidden argument*/NULL);
NullCheck(L_4);
bool L_5 = String_Equals_m9C4D78DFA0979504FE31429B64A4C26DF48020D1(L_4, _stringLiteralF02768AE02EDF48DA977F708A0513A95FDC0F733, /*hidden argument*/NULL);
if (!L_5)
{
goto IL_006c;
}
}
{
SafeBag_t46FE0281DC1D6CAB5FD08FCDB3E57C2EA1859726 * L_6 = V_2;
NullCheck(L_6);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_7 = SafeBag_get_ASN1_m77708924A6B21495CB27668AB3CDCC844724AAD1_inline(L_6, /*hidden argument*/NULL);
NullCheck(L_7);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_8 = ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08(L_7, 1, /*hidden argument*/NULL);
NullCheck(L_8);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_9 = ASN1_get_Value_m9BD6239E12A6148AF9507C2F58058C6B8147A079(L_8, /*hidden argument*/NULL);
ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * L_10 = (ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E *)il2cpp_codegen_object_new(ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E_il2cpp_TypeInfo_var);
ContentInfo__ctor_mFFDEEE8545287FC5A22740B7E06F6D64D401E196(L_10, L_9, /*hidden argument*/NULL);
NullCheck(L_10);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_11 = ContentInfo_get_Content_mCF1CED122282F62BAA3453E585E487D50367289F_inline(L_10, /*hidden argument*/NULL);
NullCheck(L_11);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_12 = ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08(L_11, 0, /*hidden argument*/NULL);
NullCheck(L_12);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_13 = ASN1_get_Value_m9BD6239E12A6148AF9507C2F58058C6B8147A079(L_12, /*hidden argument*/NULL);
X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B * L_14 = (X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B *)il2cpp_codegen_object_new(X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B_il2cpp_TypeInfo_var);
X509Certificate__ctor_mE2BC6649D450A36E902A2D6BEB50C49130411129(L_14, L_13, /*hidden argument*/NULL);
V_3 = L_14;
X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B * L_15 = ___cert0;
NullCheck(L_15);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_16 = VirtFuncInvoker0< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(11 /* System.Byte[] Mono.Security.X509.X509Certificate::get_RawData() */, L_15);
X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B * L_17 = V_3;
NullCheck(L_17);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_18 = VirtFuncInvoker0< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(11 /* System.Byte[] Mono.Security.X509.X509Certificate::get_RawData() */, L_17);
bool L_19 = PKCS12_Compare_m12F289CEDEFD3FCB171A1D84CFC3B38657041FDC(__this, L_16, L_18, /*hidden argument*/NULL);
if (!L_19)
{
goto IL_006c;
}
}
{
V_0 = (bool)1;
}
IL_006c:
{
int32_t L_20 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1));
}
IL_0070:
{
bool L_21 = V_0;
if (L_21)
{
goto IL_0081;
}
}
{
int32_t L_22 = V_1;
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_23 = __this->get__safeBags_8();
NullCheck(L_23);
int32_t L_24 = VirtFuncInvoker0< int32_t >::Invoke(22 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_23);
if ((((int32_t)L_22) < ((int32_t)L_24)))
{
goto IL_0006;
}
}
IL_0081:
{
bool L_25 = V_0;
if (L_25)
{
goto IL_00a9;
}
}
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_26 = __this->get__safeBags_8();
X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B * L_27 = ___cert0;
RuntimeObject* L_28 = ___attributes1;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_29 = PKCS12_CertificateSafeBag_mD0DD83647F65C3ABAE16740304102EFD7495FB73(__this, L_27, L_28, /*hidden argument*/NULL);
SafeBag_t46FE0281DC1D6CAB5FD08FCDB3E57C2EA1859726 * L_30 = (SafeBag_t46FE0281DC1D6CAB5FD08FCDB3E57C2EA1859726 *)il2cpp_codegen_object_new(SafeBag_t46FE0281DC1D6CAB5FD08FCDB3E57C2EA1859726_il2cpp_TypeInfo_var);
SafeBag__ctor_mA72466DEC40046A944E2120A27BEFD3D2EAD57B7(L_30, _stringLiteralF02768AE02EDF48DA977F708A0513A95FDC0F733, L_29, /*hidden argument*/NULL);
NullCheck(L_26);
VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_26, L_30);
__this->set__certsChanged_6((bool)1);
}
IL_00a9:
{
return;
}
}
// System.Void Mono.Security.X509.PKCS12::RemoveCertificate(Mono.Security.X509.X509Certificate)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PKCS12_RemoveCertificate_mE3594A106A1E0771DF835725966BC529F738DFCE (PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C * __this, X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B * ___cert0, const RuntimeMethod* method)
{
{
X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B * L_0 = ___cert0;
PKCS12_RemoveCertificate_mFD3A6ECA0F182AC1C74E2E7A56D4F6E3D4D300D2(__this, L_0, (RuntimeObject*)NULL, /*hidden argument*/NULL);
return;
}
}
// System.Void Mono.Security.X509.PKCS12::RemoveCertificate(Mono.Security.X509.X509Certificate,System.Collections.IDictionary)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PKCS12_RemoveCertificate_mFD3A6ECA0F182AC1C74E2E7A56D4F6E3D4D300D2 (PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C * __this, X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B * ___cert0, RuntimeObject* ___attrs1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PKCS12_RemoveCertificate_mFD3A6ECA0F182AC1C74E2E7A56D4F6E3D4D300D2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
SafeBag_t46FE0281DC1D6CAB5FD08FCDB3E57C2EA1859726 * V_2 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * V_3 = NULL;
X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B * V_4 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * V_5 = NULL;
int32_t V_6 = 0;
int32_t V_7 = 0;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * V_8 = NULL;
String_t* V_9 = NULL;
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * V_10 = NULL;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * V_11 = NULL;
int32_t V_12 = 0;
int32_t V_13 = 0;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * V_14 = NULL;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_15 = NULL;
{
V_0 = (-1);
V_1 = 0;
goto IL_0169;
}
IL_0009:
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_0 = __this->get__safeBags_8();
int32_t L_1 = V_1;
NullCheck(L_0);
RuntimeObject * L_2 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(27 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_0, L_1);
V_2 = ((SafeBag_t46FE0281DC1D6CAB5FD08FCDB3E57C2EA1859726 *)CastclassClass((RuntimeObject*)L_2, SafeBag_t46FE0281DC1D6CAB5FD08FCDB3E57C2EA1859726_il2cpp_TypeInfo_var));
SafeBag_t46FE0281DC1D6CAB5FD08FCDB3E57C2EA1859726 * L_3 = V_2;
NullCheck(L_3);
String_t* L_4 = SafeBag_get_BagOID_m111CD6142B7D3C61FB45932B8EF9A635D80244B5_inline(L_3, /*hidden argument*/NULL);
NullCheck(L_4);
bool L_5 = String_Equals_m9C4D78DFA0979504FE31429B64A4C26DF48020D1(L_4, _stringLiteralF02768AE02EDF48DA977F708A0513A95FDC0F733, /*hidden argument*/NULL);
if (!L_5)
{
goto IL_0165;
}
}
{
SafeBag_t46FE0281DC1D6CAB5FD08FCDB3E57C2EA1859726 * L_6 = V_2;
NullCheck(L_6);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_7 = SafeBag_get_ASN1_m77708924A6B21495CB27668AB3CDCC844724AAD1_inline(L_6, /*hidden argument*/NULL);
V_3 = L_7;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_8 = V_3;
NullCheck(L_8);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_9 = ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08(L_8, 1, /*hidden argument*/NULL);
NullCheck(L_9);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_10 = ASN1_get_Value_m9BD6239E12A6148AF9507C2F58058C6B8147A079(L_9, /*hidden argument*/NULL);
ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * L_11 = (ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E *)il2cpp_codegen_object_new(ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E_il2cpp_TypeInfo_var);
ContentInfo__ctor_mFFDEEE8545287FC5A22740B7E06F6D64D401E196(L_11, L_10, /*hidden argument*/NULL);
NullCheck(L_11);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_12 = ContentInfo_get_Content_mCF1CED122282F62BAA3453E585E487D50367289F_inline(L_11, /*hidden argument*/NULL);
NullCheck(L_12);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_13 = ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08(L_12, 0, /*hidden argument*/NULL);
NullCheck(L_13);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_14 = ASN1_get_Value_m9BD6239E12A6148AF9507C2F58058C6B8147A079(L_13, /*hidden argument*/NULL);
X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B * L_15 = (X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B *)il2cpp_codegen_object_new(X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B_il2cpp_TypeInfo_var);
X509Certificate__ctor_mE2BC6649D450A36E902A2D6BEB50C49130411129(L_15, L_14, /*hidden argument*/NULL);
V_4 = L_15;
X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B * L_16 = ___cert0;
NullCheck(L_16);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_17 = VirtFuncInvoker0< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(11 /* System.Byte[] Mono.Security.X509.X509Certificate::get_RawData() */, L_16);
X509Certificate_t592E2574612B2C554C7B707754AEC3B66A4B476B * L_18 = V_4;
NullCheck(L_18);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_19 = VirtFuncInvoker0< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(11 /* System.Byte[] Mono.Security.X509.X509Certificate::get_RawData() */, L_18);
bool L_20 = PKCS12_Compare_m12F289CEDEFD3FCB171A1D84CFC3B38657041FDC(__this, L_17, L_19, /*hidden argument*/NULL);
if (!L_20)
{
goto IL_0165;
}
}
{
RuntimeObject* L_21 = ___attrs1;
if (!L_21)
{
goto IL_0163;
}
}
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_22 = V_3;
NullCheck(L_22);
int32_t L_23 = ASN1_get_Count_m5A0E71B4C4A2257C0875AE1041AAA953C5B12A19(L_22, /*hidden argument*/NULL);
if ((!(((uint32_t)L_23) == ((uint32_t)3))))
{
goto IL_0165;
}
}
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_24 = V_3;
NullCheck(L_24);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_25 = ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08(L_24, 2, /*hidden argument*/NULL);
V_5 = L_25;
V_6 = 0;
V_7 = 0;
goto IL_0146;
}
IL_009d:
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_26 = V_5;
int32_t L_27 = V_7;
NullCheck(L_26);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_28 = ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08(L_26, L_27, /*hidden argument*/NULL);
V_8 = L_28;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_29 = V_8;
NullCheck(L_29);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_30 = ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08(L_29, 0, /*hidden argument*/NULL);
String_t* L_31 = ASN1Convert_ToOid_mFFA93B4BBEFCA8E4E86DAE87CDB998E78BFB2D5A(L_30, /*hidden argument*/NULL);
V_9 = L_31;
RuntimeObject* L_32 = ___attrs1;
String_t* L_33 = V_9;
NullCheck(L_32);
RuntimeObject * L_34 = InterfaceFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Object System.Collections.IDictionary::get_Item(System.Object) */, IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7_il2cpp_TypeInfo_var, L_32, L_33);
V_10 = ((ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 *)CastclassClass((RuntimeObject*)L_34, ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_il2cpp_TypeInfo_var));
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_35 = V_10;
if (!L_35)
{
goto IL_0140;
}
}
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_36 = V_8;
NullCheck(L_36);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_37 = ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08(L_36, 1, /*hidden argument*/NULL);
V_11 = L_37;
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_38 = V_10;
NullCheck(L_38);
int32_t L_39 = VirtFuncInvoker0< int32_t >::Invoke(22 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_38);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_40 = V_11;
NullCheck(L_40);
int32_t L_41 = ASN1_get_Count_m5A0E71B4C4A2257C0875AE1041AAA953C5B12A19(L_40, /*hidden argument*/NULL);
if ((!(((uint32_t)L_39) == ((uint32_t)L_41))))
{
goto IL_0140;
}
}
{
V_12 = 0;
V_13 = 0;
goto IL_0124;
}
IL_00ec:
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_42 = V_11;
int32_t L_43 = V_13;
NullCheck(L_42);
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_44 = ASN1_get_Item_m88B75C57A7E130A02A709AE8FFD2E0972E71FC08(L_42, L_43, /*hidden argument*/NULL);
V_14 = L_44;
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_45 = V_10;
int32_t L_46 = V_13;
NullCheck(L_45);
RuntimeObject * L_47 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(27 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_45, L_46);
V_15 = ((ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)Castclass((RuntimeObject*)L_47, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_48 = V_15;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_49 = V_14;
NullCheck(L_49);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_50 = ASN1_get_Value_m9BD6239E12A6148AF9507C2F58058C6B8147A079(L_49, /*hidden argument*/NULL);
bool L_51 = PKCS12_Compare_m12F289CEDEFD3FCB171A1D84CFC3B38657041FDC(__this, L_48, L_50, /*hidden argument*/NULL);
if (!L_51)
{
goto IL_011e;
}
}
{
int32_t L_52 = V_12;
V_12 = ((int32_t)il2cpp_codegen_add((int32_t)L_52, (int32_t)1));
}
IL_011e:
{
int32_t L_53 = V_13;
V_13 = ((int32_t)il2cpp_codegen_add((int32_t)L_53, (int32_t)1));
}
IL_0124:
{
int32_t L_54 = V_13;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_55 = V_11;
NullCheck(L_55);
int32_t L_56 = ASN1_get_Count_m5A0E71B4C4A2257C0875AE1041AAA953C5B12A19(L_55, /*hidden argument*/NULL);
if ((((int32_t)L_54) < ((int32_t)L_56)))
{
goto IL_00ec;
}
}
{
int32_t L_57 = V_12;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_58 = V_11;
NullCheck(L_58);
int32_t L_59 = ASN1_get_Count_m5A0E71B4C4A2257C0875AE1041AAA953C5B12A19(L_58, /*hidden argument*/NULL);
if ((!(((uint32_t)L_57) == ((uint32_t)L_59))))
{
goto IL_0140;
}
}
{
int32_t L_60 = V_6;
V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_60, (int32_t)1));
}
IL_0140:
{
int32_t L_61 = V_7;
V_7 = ((int32_t)il2cpp_codegen_add((int32_t)L_61, (int32_t)1));
}
IL_0146:
{
int32_t L_62 = V_7;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_63 = V_5;
NullCheck(L_63);
int32_t L_64 = ASN1_get_Count_m5A0E71B4C4A2257C0875AE1041AAA953C5B12A19(L_63, /*hidden argument*/NULL);
if ((((int32_t)L_62) < ((int32_t)L_64)))
{
goto IL_009d;
}
}
{
int32_t L_65 = V_6;
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_66 = V_5;
NullCheck(L_66);
int32_t L_67 = ASN1_get_Count_m5A0E71B4C4A2257C0875AE1041AAA953C5B12A19(L_66, /*hidden argument*/NULL);
if ((!(((uint32_t)L_65) == ((uint32_t)L_67))))
{
goto IL_0165;
}
}
{
int32_t L_68 = V_1;
V_0 = L_68;
goto IL_0165;
}
IL_0163:
{
int32_t L_69 = V_1;
V_0 = L_69;
}
IL_0165:
{
int32_t L_70 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_70, (int32_t)1));
}
IL_0169:
{
int32_t L_71 = V_0;
if ((!(((uint32_t)L_71) == ((uint32_t)(-1)))))
{
goto IL_017e;
}
}
{
int32_t L_72 = V_1;
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_73 = __this->get__safeBags_8();
NullCheck(L_73);
int32_t L_74 = VirtFuncInvoker0< int32_t >::Invoke(22 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_73);
if ((((int32_t)L_72) < ((int32_t)L_74)))
{
goto IL_0009;
}
}
IL_017e:
{
int32_t L_75 = V_0;
if ((((int32_t)L_75) == ((int32_t)(-1))))
{
goto IL_0195;
}
}
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_76 = __this->get__safeBags_8();
int32_t L_77 = V_0;
NullCheck(L_76);
VirtActionInvoker1< int32_t >::Invoke(42 /* System.Void System.Collections.ArrayList::RemoveAt(System.Int32) */, L_76, L_77);
__this->set__certsChanged_6((bool)1);
}
IL_0195:
{
return;
}
}
// System.Object Mono.Security.X509.PKCS12::Clone()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * PKCS12_Clone_mCFFD83941C1E56BEFEFDF4CF4E04601B37564432 (PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PKCS12_Clone_mCFFD83941C1E56BEFEFDF4CF4E04601B37564432_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C * V_0 = NULL;
{
V_0 = (PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C *)NULL;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = __this->get__password_0();
if (!L_0)
{
goto IL_0028;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = PKCS12_GetBytes_m8621373F343293D4A64DED97DA2610BE6B6D7D73(__this, /*hidden argument*/NULL);
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_2 = Encoding_get_BigEndianUnicode_m6CC17642A36943FE038F54729446D7E30D582BDD(/*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = __this->get__password_0();
NullCheck(L_2);
String_t* L_4 = VirtFuncInvoker1< String_t*, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(34 /* System.String System.Text.Encoding::GetString(System.Byte[]) */, L_2, L_3);
PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C * L_5 = (PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C *)il2cpp_codegen_object_new(PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C_il2cpp_TypeInfo_var);
PKCS12__ctor_m35A8D4C261B2A0B4B7BC677160AB1DF90B04B229(L_5, L_1, L_4, /*hidden argument*/NULL);
V_0 = L_5;
goto IL_0034;
}
IL_0028:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_6 = PKCS12_GetBytes_m8621373F343293D4A64DED97DA2610BE6B6D7D73(__this, /*hidden argument*/NULL);
PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C * L_7 = (PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C *)il2cpp_codegen_object_new(PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C_il2cpp_TypeInfo_var);
PKCS12__ctor_mBE0BDBA0DD4C15F304D04F31E028CFFB31D7B8AB(L_7, L_6, /*hidden argument*/NULL);
V_0 = L_7;
}
IL_0034:
{
PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C * L_8 = V_0;
int32_t L_9 = PKCS12_get_IterationCount_m85A4D92CA6130D1BC6818CA8C434C9A8CFD120EC_inline(__this, /*hidden argument*/NULL);
NullCheck(L_8);
PKCS12_set_IterationCount_m95AA7918C2940DFAA9AD540AEE484DD8E9A0DA43_inline(L_8, L_9, /*hidden argument*/NULL);
PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C * L_10 = V_0;
return L_10;
}
}
// System.Int32 Mono.Security.X509.PKCS12::get_MaximumPasswordLength()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PKCS12_get_MaximumPasswordLength_m456895C0914C8E686BC0548D036FAF11EB2AD266 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PKCS12_get_MaximumPasswordLength_m456895C0914C8E686BC0548D036FAF11EB2AD266_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C_il2cpp_TypeInfo_var);
int32_t L_0 = ((PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C_StaticFields*)il2cpp_codegen_static_fields_for(PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C_il2cpp_TypeInfo_var))->get_password_max_length_10();
return L_0;
}
}
// System.Void Mono.Security.X509.PKCS12::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PKCS12__cctor_m6147652F39C9E084AC465598F872099A0E0B9CAB (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PKCS12__cctor_m6147652F39C9E084AC465598F872099A0E0B9CAB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
((PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C_StaticFields*)il2cpp_codegen_static_fields_for(PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C_il2cpp_TypeInfo_var))->set_password_max_length_10(((int32_t)2147483647LL));
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Mono.Security.X509.PKCS12_DeriveBytes::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DeriveBytes__ctor_mCF98BD3EFADD4D2F34101977C2B49258932F19C2 (DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D * __this, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void Mono.Security.X509.PKCS12_DeriveBytes::set_HashName(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DeriveBytes_set_HashName_mBDFF79A4AAA347FC742CF1E25214854EF200DA72 (DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set__hashName_3(L_0);
return;
}
}
// System.Void Mono.Security.X509.PKCS12_DeriveBytes::set_IterationCount(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DeriveBytes_set_IterationCount_mFE67702E80E2748EA2B61D15E2E58CB9A4173143 (DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->set__iterations_4(L_0);
return;
}
}
// System.Void Mono.Security.X509.PKCS12_DeriveBytes::set_Password(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DeriveBytes_set_Password_m01796801BB8FD1E5F9D62F48A057F936CE0D0E4D (DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DeriveBytes_set_Password_m01796801BB8FD1E5F9D62F48A057F936CE0D0E4D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___value0;
if (L_0)
{
goto IL_0010;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)0);
__this->set__password_5(L_1);
return;
}
IL_0010:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = ___value0;
NullCheck((RuntimeArray *)(RuntimeArray *)L_2);
RuntimeObject * L_3 = Array_Clone_mE8C710213E323617A6F46F2B36DCDDD4C7CF5176((RuntimeArray *)(RuntimeArray *)L_2, /*hidden argument*/NULL);
__this->set__password_5(((ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)Castclass((RuntimeObject*)L_3, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var)));
return;
}
}
// System.Void Mono.Security.X509.PKCS12_DeriveBytes::set_Salt(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DeriveBytes_set_Salt_m259A4E6B31DF7C039E776B473B4C5208890E8C5E (DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DeriveBytes_set_Salt_m259A4E6B31DF7C039E776B473B4C5208890E8C5E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___value0;
if (!L_0)
{
goto IL_0015;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = ___value0;
NullCheck((RuntimeArray *)(RuntimeArray *)L_1);
RuntimeObject * L_2 = Array_Clone_mE8C710213E323617A6F46F2B36DCDDD4C7CF5176((RuntimeArray *)(RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set__salt_6(((ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)Castclass((RuntimeObject*)L_2, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var)));
return;
}
IL_0015:
{
__this->set__salt_6((ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)NULL);
return;
}
}
// System.Void Mono.Security.X509.PKCS12_DeriveBytes::Adjust(System.Byte[],System.Int32,System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DeriveBytes_Adjust_m62C31A3D1780C7E6278429908FAA52AC2280668F (DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___a0, int32_t ___aOff1, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___b2, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___b2;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = ___b2;
NullCheck(L_1);
NullCheck(L_0);
int32_t L_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_1)->max_length)))), (int32_t)1));
uint8_t L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = ___a0;
int32_t L_5 = ___aOff1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_6 = ___b2;
NullCheck(L_6);
NullCheck(L_4);
int32_t L_7 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))))), (int32_t)1));
uint8_t L_8 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)((int32_t)L_3&(int32_t)((int32_t)255))), (int32_t)((int32_t)((int32_t)L_8&(int32_t)((int32_t)255))))), (int32_t)1));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_9 = ___a0;
int32_t L_10 = ___aOff1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_11 = ___b2;
NullCheck(L_11);
int32_t L_12 = V_0;
NullCheck(L_9);
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_11)->max_length)))))), (int32_t)1))), (uint8_t)(((int32_t)((uint8_t)L_12))));
int32_t L_13 = V_0;
V_0 = ((int32_t)((int32_t)L_13>>(int32_t)8));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_14 = ___b2;
NullCheck(L_14);
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_14)->max_length)))), (int32_t)2));
goto IL_005e;
}
IL_0037:
{
int32_t L_15 = V_0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_16 = ___b2;
int32_t L_17 = V_1;
NullCheck(L_16);
int32_t L_18 = L_17;
uint8_t L_19 = (L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_18));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_20 = ___a0;
int32_t L_21 = ___aOff1;
int32_t L_22 = V_1;
NullCheck(L_20);
int32_t L_23 = ((int32_t)il2cpp_codegen_add((int32_t)L_21, (int32_t)L_22));
uint8_t L_24 = (L_20)->GetAt(static_cast<il2cpp_array_size_t>(L_23));
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)((int32_t)L_19&(int32_t)((int32_t)255))), (int32_t)((int32_t)((int32_t)L_24&(int32_t)((int32_t)255)))))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_25 = ___a0;
int32_t L_26 = ___aOff1;
int32_t L_27 = V_1;
int32_t L_28 = V_0;
NullCheck(L_25);
(L_25)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)L_27))), (uint8_t)(((int32_t)((uint8_t)L_28))));
int32_t L_29 = V_0;
V_0 = ((int32_t)((int32_t)L_29>>(int32_t)8));
int32_t L_30 = V_1;
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_30, (int32_t)1));
}
IL_005e:
{
int32_t L_31 = V_1;
if ((((int32_t)L_31) >= ((int32_t)0)))
{
goto IL_0037;
}
}
{
return;
}
}
// System.Byte[] Mono.Security.X509.PKCS12_DeriveBytes::Derive(System.Byte[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* DeriveBytes_Derive_m77A53485FBE468A4F9698AEC0B36415699A9D72E (DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___diversifier0, int32_t ___n1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DeriveBytes_Derive_m77A53485FBE468A4F9698AEC0B36415699A9D72E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
HashAlgorithm_t65659695B16C0BBF05707BF45191A97DC156D6BA * V_0 = NULL;
int32_t V_1 = 0;
int32_t V_2 = 0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_3 = NULL;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_4 = NULL;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_5 = NULL;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_6 = NULL;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_7 = NULL;
int32_t V_8 = 0;
int32_t V_9 = 0;
int32_t V_10 = 0;
int32_t V_11 = 0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_12 = NULL;
int32_t V_13 = 0;
int32_t V_14 = 0;
int32_t V_15 = 0;
{
String_t* L_0 = __this->get__hashName_3();
IL2CPP_RUNTIME_CLASS_INIT(PKCS1_t5ABACACDDA0FE1D9A3D2ECD6BEB8815C8431B222_il2cpp_TypeInfo_var);
HashAlgorithm_t65659695B16C0BBF05707BF45191A97DC156D6BA * L_1 = PKCS1_CreateFromName_mB407B0358BF42A94FAA0A3B7DF68A731827C21BE(L_0, /*hidden argument*/NULL);
V_0 = L_1;
HashAlgorithm_t65659695B16C0BBF05707BF45191A97DC156D6BA * L_2 = V_0;
NullCheck(L_2);
int32_t L_3 = VirtFuncInvoker0< int32_t >::Invoke(10 /* System.Int32 System.Security.Cryptography.HashAlgorithm::get_HashSize() */, L_2);
V_1 = ((int32_t)((int32_t)L_3>>(int32_t)3));
V_2 = ((int32_t)64);
int32_t L_4 = ___n1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_5 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)L_4);
V_3 = L_5;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_6 = __this->get__salt_6();
if (!L_6)
{
goto IL_0073;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_7 = __this->get__salt_6();
NullCheck(L_7);
if (!(((RuntimeArray*)L_7)->max_length))
{
goto IL_0073;
}
}
{
int32_t L_8 = V_2;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_9 = __this->get__salt_6();
NullCheck(L_9);
int32_t L_10 = V_2;
int32_t L_11 = V_2;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_12 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_8, (int32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length)))), (int32_t)L_10)), (int32_t)1))/(int32_t)L_11)))));
V_4 = L_12;
V_9 = 0;
goto IL_0069;
}
IL_004c:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_13 = V_4;
int32_t L_14 = V_9;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_15 = __this->get__salt_6();
int32_t L_16 = V_9;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_17 = __this->get__salt_6();
NullCheck(L_17);
NullCheck(L_15);
int32_t L_18 = ((int32_t)((int32_t)L_16%(int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_17)->max_length))))));
uint8_t L_19 = (L_15)->GetAt(static_cast<il2cpp_array_size_t>(L_18));
NullCheck(L_13);
(L_13)->SetAt(static_cast<il2cpp_array_size_t>(L_14), (uint8_t)L_19);
int32_t L_20 = V_9;
V_9 = ((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1));
}
IL_0069:
{
int32_t L_21 = V_9;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_22 = V_4;
NullCheck(L_22);
if ((!(((uint32_t)L_21) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_22)->max_length))))))))
{
goto IL_004c;
}
}
{
goto IL_007b;
}
IL_0073:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_23 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)0);
V_4 = L_23;
}
IL_007b:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_24 = __this->get__password_5();
if (!L_24)
{
goto IL_00cf;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_25 = __this->get__password_5();
NullCheck(L_25);
if (!(((RuntimeArray*)L_25)->max_length))
{
goto IL_00cf;
}
}
{
int32_t L_26 = V_2;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_27 = __this->get__password_5();
NullCheck(L_27);
int32_t L_28 = V_2;
int32_t L_29 = V_2;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_30 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_26, (int32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_27)->max_length)))), (int32_t)L_28)), (int32_t)1))/(int32_t)L_29)))));
V_5 = L_30;
V_10 = 0;
goto IL_00c5;
}
IL_00a8:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_31 = V_5;
int32_t L_32 = V_10;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_33 = __this->get__password_5();
int32_t L_34 = V_10;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_35 = __this->get__password_5();
NullCheck(L_35);
NullCheck(L_33);
int32_t L_36 = ((int32_t)((int32_t)L_34%(int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_35)->max_length))))));
uint8_t L_37 = (L_33)->GetAt(static_cast<il2cpp_array_size_t>(L_36));
NullCheck(L_31);
(L_31)->SetAt(static_cast<il2cpp_array_size_t>(L_32), (uint8_t)L_37);
int32_t L_38 = V_10;
V_10 = ((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)1));
}
IL_00c5:
{
int32_t L_39 = V_10;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_40 = V_5;
NullCheck(L_40);
if ((!(((uint32_t)L_39) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_40)->max_length))))))))
{
goto IL_00a8;
}
}
{
goto IL_00d7;
}
IL_00cf:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_41 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)0);
V_5 = L_41;
}
IL_00d7:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_42 = V_4;
NullCheck(L_42);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_43 = V_5;
NullCheck(L_43);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_44 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_add((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_42)->max_length)))), (int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_43)->max_length)))))));
V_6 = L_44;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_45 = V_4;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_46 = V_6;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_47 = V_4;
NullCheck(L_47);
Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353((RuntimeArray *)(RuntimeArray *)L_45, 0, (RuntimeArray *)(RuntimeArray *)L_46, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_47)->max_length)))), /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_48 = V_5;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_49 = V_6;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_50 = V_4;
NullCheck(L_50);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_51 = V_5;
NullCheck(L_51);
Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353((RuntimeArray *)(RuntimeArray *)L_48, 0, (RuntimeArray *)(RuntimeArray *)L_49, (((int32_t)((int32_t)(((RuntimeArray*)L_50)->max_length)))), (((int32_t)((int32_t)(((RuntimeArray*)L_51)->max_length)))), /*hidden argument*/NULL);
int32_t L_52 = V_2;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_53 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)L_52);
V_7 = L_53;
int32_t L_54 = ___n1;
int32_t L_55 = V_1;
int32_t L_56 = V_1;
V_8 = ((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_54, (int32_t)L_55)), (int32_t)1))/(int32_t)L_56));
V_11 = 1;
goto IL_01ee;
}
IL_0121:
{
HashAlgorithm_t65659695B16C0BBF05707BF45191A97DC156D6BA * L_57 = V_0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_58 = ___diversifier0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_59 = ___diversifier0;
NullCheck(L_59);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_60 = ___diversifier0;
NullCheck(L_57);
HashAlgorithm_TransformBlock_m500873E221BF1E4278C23D3DD113FA36711CBE22(L_57, L_58, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_59)->max_length)))), L_60, 0, /*hidden argument*/NULL);
HashAlgorithm_t65659695B16C0BBF05707BF45191A97DC156D6BA * L_61 = V_0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_62 = V_6;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_63 = V_6;
NullCheck(L_63);
NullCheck(L_61);
HashAlgorithm_TransformFinalBlock_mC9CB1BD6A8E410BE986650C1478A93378F138177(L_61, L_62, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_63)->max_length)))), /*hidden argument*/NULL);
HashAlgorithm_t65659695B16C0BBF05707BF45191A97DC156D6BA * L_64 = V_0;
NullCheck(L_64);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_65 = VirtFuncInvoker0< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(11 /* System.Byte[] System.Security.Cryptography.HashAlgorithm::get_Hash() */, L_64);
V_12 = L_65;
HashAlgorithm_t65659695B16C0BBF05707BF45191A97DC156D6BA * L_66 = V_0;
NullCheck(L_66);
VirtActionInvoker0::Invoke(16 /* System.Void System.Security.Cryptography.HashAlgorithm::Initialize() */, L_66);
V_13 = 1;
goto IL_0165;
}
IL_0150:
{
HashAlgorithm_t65659695B16C0BBF05707BF45191A97DC156D6BA * L_67 = V_0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_68 = V_12;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_69 = V_12;
NullCheck(L_69);
NullCheck(L_67);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_70 = HashAlgorithm_ComputeHash_m944CD5B5BF66F170C9ACD2674E258E62ED297819(L_67, L_68, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_69)->max_length)))), /*hidden argument*/NULL);
V_12 = L_70;
int32_t L_71 = V_13;
V_13 = ((int32_t)il2cpp_codegen_add((int32_t)L_71, (int32_t)1));
}
IL_0165:
{
int32_t L_72 = V_13;
int32_t L_73 = __this->get__iterations_4();
if ((!(((uint32_t)L_72) == ((uint32_t)L_73))))
{
goto IL_0150;
}
}
{
V_14 = 0;
goto IL_0189;
}
IL_0174:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_74 = V_7;
int32_t L_75 = V_14;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_76 = V_12;
int32_t L_77 = V_14;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_78 = V_12;
NullCheck(L_78);
NullCheck(L_76);
int32_t L_79 = ((int32_t)((int32_t)L_77%(int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_78)->max_length))))));
uint8_t L_80 = (L_76)->GetAt(static_cast<il2cpp_array_size_t>(L_79));
NullCheck(L_74);
(L_74)->SetAt(static_cast<il2cpp_array_size_t>(L_75), (uint8_t)L_80);
int32_t L_81 = V_14;
V_14 = ((int32_t)il2cpp_codegen_add((int32_t)L_81, (int32_t)1));
}
IL_0189:
{
int32_t L_82 = V_14;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_83 = V_7;
NullCheck(L_83);
if ((!(((uint32_t)L_82) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_83)->max_length))))))))
{
goto IL_0174;
}
}
{
V_15 = 0;
goto IL_01aa;
}
IL_0196:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_84 = V_6;
int32_t L_85 = V_15;
int32_t L_86 = V_2;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_87 = V_7;
DeriveBytes_Adjust_m62C31A3D1780C7E6278429908FAA52AC2280668F(__this, L_84, ((int32_t)il2cpp_codegen_multiply((int32_t)L_85, (int32_t)L_86)), L_87, /*hidden argument*/NULL);
int32_t L_88 = V_15;
V_15 = ((int32_t)il2cpp_codegen_add((int32_t)L_88, (int32_t)1));
}
IL_01aa:
{
int32_t L_89 = V_15;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_90 = V_6;
NullCheck(L_90);
int32_t L_91 = V_2;
if ((!(((uint32_t)L_89) == ((uint32_t)((int32_t)((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_90)->max_length))))/(int32_t)L_91))))))
{
goto IL_0196;
}
}
{
int32_t L_92 = V_11;
int32_t L_93 = V_8;
if ((!(((uint32_t)L_92) == ((uint32_t)L_93))))
{
goto IL_01d5;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_94 = V_12;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_95 = V_3;
int32_t L_96 = V_11;
int32_t L_97 = V_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_98 = V_3;
NullCheck(L_98);
int32_t L_99 = V_11;
int32_t L_100 = V_1;
Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353((RuntimeArray *)(RuntimeArray *)L_94, 0, (RuntimeArray *)(RuntimeArray *)L_95, ((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_96, (int32_t)1)), (int32_t)L_97)), ((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_98)->max_length)))), (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_99, (int32_t)1)), (int32_t)L_100)))), /*hidden argument*/NULL);
goto IL_01e8;
}
IL_01d5:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_101 = V_12;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_102 = V_3;
int32_t L_103 = V_11;
int32_t L_104 = V_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_105 = V_12;
NullCheck(L_105);
Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353((RuntimeArray *)(RuntimeArray *)L_101, 0, (RuntimeArray *)(RuntimeArray *)L_102, ((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_103, (int32_t)1)), (int32_t)L_104)), (((int32_t)((int32_t)(((RuntimeArray*)L_105)->max_length)))), /*hidden argument*/NULL);
}
IL_01e8:
{
int32_t L_106 = V_11;
V_11 = ((int32_t)il2cpp_codegen_add((int32_t)L_106, (int32_t)1));
}
IL_01ee:
{
int32_t L_107 = V_11;
int32_t L_108 = V_8;
if ((((int32_t)L_107) <= ((int32_t)L_108)))
{
goto IL_0121;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_109 = V_3;
return L_109;
}
}
// System.Byte[] Mono.Security.X509.PKCS12_DeriveBytes::DeriveKey(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* DeriveBytes_DeriveKey_mDF33F048359AB75CC3F1F634A67EB4EDEF02E796 (DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D * __this, int32_t ___size0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DeriveBytes_DeriveKey_mDF33F048359AB75CC3F1F634A67EB4EDEF02E796_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D_il2cpp_TypeInfo_var);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ((DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D_StaticFields*)il2cpp_codegen_static_fields_for(DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D_il2cpp_TypeInfo_var))->get_keyDiversifier_0();
int32_t L_1 = ___size0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = DeriveBytes_Derive_m77A53485FBE468A4F9698AEC0B36415699A9D72E(__this, L_0, L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.Byte[] Mono.Security.X509.PKCS12_DeriveBytes::DeriveIV(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* DeriveBytes_DeriveIV_mEBA107DC29EA28DF2575F45EF7A0C55840BD8F03 (DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D * __this, int32_t ___size0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DeriveBytes_DeriveIV_mEBA107DC29EA28DF2575F45EF7A0C55840BD8F03_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D_il2cpp_TypeInfo_var);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ((DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D_StaticFields*)il2cpp_codegen_static_fields_for(DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D_il2cpp_TypeInfo_var))->get_ivDiversifier_1();
int32_t L_1 = ___size0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = DeriveBytes_Derive_m77A53485FBE468A4F9698AEC0B36415699A9D72E(__this, L_0, L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.Byte[] Mono.Security.X509.PKCS12_DeriveBytes::DeriveMAC(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* DeriveBytes_DeriveMAC_mD54FB1F61CFC13258B46861CCE527A85CC62652D (DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D * __this, int32_t ___size0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DeriveBytes_DeriveMAC_mD54FB1F61CFC13258B46861CCE527A85CC62652D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D_il2cpp_TypeInfo_var);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ((DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D_StaticFields*)il2cpp_codegen_static_fields_for(DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D_il2cpp_TypeInfo_var))->get_macDiversifier_2();
int32_t L_1 = ___size0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = DeriveBytes_Derive_m77A53485FBE468A4F9698AEC0B36415699A9D72E(__this, L_0, L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.Void Mono.Security.X509.PKCS12_DeriveBytes::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DeriveBytes__cctor_m9599099DAB452D213B5F996953DB05E43CBDD41B (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DeriveBytes__cctor_m9599099DAB452D213B5F996953DB05E43CBDD41B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)((int32_t)64));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = L_0;
RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_2 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_tF21437707AFAA06797AEDEE07C84D4D3CC2837FA____320B018758ECE3752FFEDBAEB1A6DB67C80B9359_6_FieldInfo_var) };
RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_1, L_2, /*hidden argument*/NULL);
((DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D_StaticFields*)il2cpp_codegen_static_fields_for(DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D_il2cpp_TypeInfo_var))->set_keyDiversifier_0(L_1);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)((int32_t)64));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = L_3;
RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_5 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_tF21437707AFAA06797AEDEE07C84D4D3CC2837FA____CF0B42666EF5E37EDEA0AB8E173E42C196D03814_22_FieldInfo_var) };
RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_4, L_5, /*hidden argument*/NULL);
((DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D_StaticFields*)il2cpp_codegen_static_fields_for(DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D_il2cpp_TypeInfo_var))->set_ivDiversifier_1(L_4);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_6 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)((int32_t)64));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_7 = L_6;
RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_8 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_tF21437707AFAA06797AEDEE07C84D4D3CC2837FA____9A9C3962CD4753376E3507C8CB5FD8FCC4B4EDB5_16_FieldInfo_var) };
RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_7, L_8, /*hidden argument*/NULL);
((DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D_StaticFields*)il2cpp_codegen_static_fields_for(DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D_il2cpp_TypeInfo_var))->set_macDiversifier_2(L_7);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline (String_t* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_m_stringLength_0();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR uint8_t ASN1_get_Tag_m1346989AC839D85A9E0A211525A6B551974E4862_inline (ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * __this, const RuntimeMethod* method)
{
{
uint8_t L_0 = __this->get_m_nTag_0();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t AsymmetricAlgorithm_get_KeySize_mE8C6882BD6C01D3721FAE2B622DFACD89072FB50_inline (AsymmetricAlgorithm_t9F811260245370BD8786A849DBF9F8054F97F4CB * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_KeySizeValue_0();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR uint8_t Alert_get_Level_m4D9BDC77286315A186F6517A3AE514DD7B31FBDC_inline (Alert_tABF269545F2C583CCA47FF574E612DDAF232944E * __this, const RuntimeMethod* method)
{
{
uint8_t L_0 = __this->get_level_0();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR uint8_t Alert_get_Description_m3FDF20086BFE900B014DB0EA960F27413326A11D_inline (Alert_tABF269545F2C583CCA47FF574E612DDAF232944E * __this, const RuntimeMethod* method)
{
{
uint8_t L_0 = __this->get_description_1();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t MonoTlsConnectionInfo_get_ProtocolVersion_m63DA43DE02158D38E19EB7E5E93DD3E2EA6B87CA_inline (MonoTlsConnectionInfo_tE32F709ECF061DD150F45384869CE8431BD7A74D * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_U3CProtocolVersionU3Ek__BackingField_1();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR uint16_t MonoTlsConnectionInfo_get_CipherSuiteCode_m8C74B9FD02856309D7179AB0BE91B2F3F8BDF951_inline (MonoTlsConnectionInfo_tE32F709ECF061DD150F45384869CE8431BD7A74D * __this, const RuntimeMethod* method)
{
{
uint16_t L_0 = __this->get_U3CCipherSuiteCodeU3Ek__BackingField_0();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR MonoRemoteCertificateValidationCallback_t7A8DAD12B70CE3BB19BAAD04F587D5ED02385CC6 * MonoTlsSettings_get_RemoteCertificateValidationCallback_m1718C4B085FE8A31AFC7262616FFC5071072D737_inline (MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * __this, const RuntimeMethod* method)
{
{
MonoRemoteCertificateValidationCallback_t7A8DAD12B70CE3BB19BAAD04F587D5ED02385CC6 * L_0 = __this->get_U3CRemoteCertificateValidationCallbackU3Ek__BackingField_0();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void MonoTlsSettings_set_RemoteCertificateValidationCallback_mC9225CD237B10BBF4813A975D827B822DF970E21_inline (MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * __this, MonoRemoteCertificateValidationCallback_t7A8DAD12B70CE3BB19BAAD04F587D5ED02385CC6 * ___value0, const RuntimeMethod* method)
{
{
MonoRemoteCertificateValidationCallback_t7A8DAD12B70CE3BB19BAAD04F587D5ED02385CC6 * L_0 = ___value0;
__this->set_U3CRemoteCertificateValidationCallbackU3Ek__BackingField_0(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR MonoLocalCertificateSelectionCallback_t657381EF916D4EDC456FA5A6AC948EFD7A481F0A * MonoTlsSettings_get_ClientCertificateSelectionCallback_mAD91A51A5228D02BF8F2B6F1F49A0646D029E1D0_inline (MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * __this, const RuntimeMethod* method)
{
{
MonoLocalCertificateSelectionCallback_t657381EF916D4EDC456FA5A6AC948EFD7A481F0A * L_0 = __this->get_U3CClientCertificateSelectionCallbackU3Ek__BackingField_1();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void MonoTlsSettings_set_ClientCertificateSelectionCallback_m815474865E0743103BE1BA06CCFC85588BAFBAA4_inline (MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * __this, MonoLocalCertificateSelectionCallback_t657381EF916D4EDC456FA5A6AC948EFD7A481F0A * ___value0, const RuntimeMethod* method)
{
{
MonoLocalCertificateSelectionCallback_t657381EF916D4EDC456FA5A6AC948EFD7A481F0A * L_0 = ___value0;
__this->set_U3CClientCertificateSelectionCallbackU3Ek__BackingField_1(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void MonoTlsSettings_set_UseServicePointManagerCallback_m3982FDDB084256E77E18F9A3E42E91E65F6F699B_inline (MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * __this, Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 ___value0, const RuntimeMethod* method)
{
{
Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 L_0 = ___value0;
__this->set_useServicePointManagerCallback_12(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * MonoTlsSettings_get_UserSettings_m31F62282C588A3847737F11AF9158E493CD86E9A_inline (MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = __this->get_U3CUserSettingsU3Ek__BackingField_4();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void MonoTlsSettings_set_UserSettings_mEC113D468C571102A4FF0327E617E7BA30D5D3F8_inline (MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___value0;
__this->set_U3CUserSettingsU3Ek__BackingField_4(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Nullable_1_t601798BE10C3F3F37B6755E475BB1B3760DCBB10 MonoTlsSettings_get_EnabledProtocols_mB290C2A19B7268559520FDF47925D20A4F9D8106_inline (MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * __this, const RuntimeMethod* method)
{
{
Nullable_1_t601798BE10C3F3F37B6755E475BB1B3760DCBB10 L_0 = __this->get_U3CEnabledProtocolsU3Ek__BackingField_7();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void MonoTlsSettings_set_EnabledProtocols_m88B942CBAB596E1F6FC91744D93F845862796A32_inline (MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * __this, Nullable_1_t601798BE10C3F3F37B6755E475BB1B3760DCBB10 ___value0, const RuntimeMethod* method)
{
{
Nullable_1_t601798BE10C3F3F37B6755E475BB1B3760DCBB10 L_0 = ___value0;
__this->set_U3CEnabledProtocolsU3Ek__BackingField_7(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR CipherSuiteCodeU5BU5D_t0EC37AD4A25BB94BA9AB4A9C0C4802BD79A07CC4* MonoTlsSettings_get_EnabledCiphers_mB3F4FB0A332010BBCDF8EFF2B6B105C0CC92AF1D_inline (MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * __this, const RuntimeMethod* method)
{
{
CipherSuiteCodeU5BU5D_t0EC37AD4A25BB94BA9AB4A9C0C4802BD79A07CC4* L_0 = __this->get_U3CEnabledCiphersU3Ek__BackingField_8();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void MonoTlsSettings_set_EnabledCiphers_m27702EB1FBABCE66F73582F1F3B7DD14B4A95E12_inline (MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * __this, CipherSuiteCodeU5BU5D_t0EC37AD4A25BB94BA9AB4A9C0C4802BD79A07CC4* ___value0, const RuntimeMethod* method)
{
{
CipherSuiteCodeU5BU5D_t0EC37AD4A25BB94BA9AB4A9C0C4802BD79A07CC4* L_0 = ___value0;
__this->set_U3CEnabledCiphersU3Ek__BackingField_8(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Nullable_1_t3290384E361396B3724B88B498CBF637D7E87B78 MonoTlsSettings_get_CertificateValidationTime_m51F473A56D26B7FF38182524C3EF3250653181CD_inline (MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * __this, const RuntimeMethod* method)
{
{
Nullable_1_t3290384E361396B3724B88B498CBF637D7E87B78 L_0 = __this->get_U3CCertificateValidationTimeU3Ek__BackingField_2();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void MonoTlsSettings_set_CertificateValidationTime_mD081C06E0CCCCEF4230D2A7A70ED06F7E5D1717D_inline (MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * __this, Nullable_1_t3290384E361396B3724B88B498CBF637D7E87B78 ___value0, const RuntimeMethod* method)
{
{
Nullable_1_t3290384E361396B3724B88B498CBF637D7E87B78 L_0 = ___value0;
__this->set_U3CCertificateValidationTimeU3Ek__BackingField_2(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool MonoTlsSettings_get_SendCloseNotify_m4E72508568F2055945A21AD19B1129AD2437C92F_inline (MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_U3CSendCloseNotifyU3Ek__BackingField_6();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void MonoTlsSettings_set_SendCloseNotify_m292B72B22AC90DAC052BB0CB28D079F258803521_inline (MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->set_U3CSendCloseNotifyU3Ek__BackingField_6(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR X509CertificateCollection_t824A6C58D0D1B4A7CAE30F26CE8EE4B23A8A1833 * MonoTlsSettings_get_TrustAnchors_mD6ADD8546ED8D9C0BA58A25F0ADA0BBB5127F28F_inline (MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * __this, const RuntimeMethod* method)
{
{
X509CertificateCollection_t824A6C58D0D1B4A7CAE30F26CE8EE4B23A8A1833 * L_0 = __this->get_U3CTrustAnchorsU3Ek__BackingField_3();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void MonoTlsSettings_set_TrustAnchors_m96D71EF074D01C5CBF8159B392825679DADD9B2A_inline (MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * __this, X509CertificateCollection_t824A6C58D0D1B4A7CAE30F26CE8EE4B23A8A1833 * ___value0, const RuntimeMethod* method)
{
{
X509CertificateCollection_t824A6C58D0D1B4A7CAE30F26CE8EE4B23A8A1833 * L_0 = ___value0;
__this->set_U3CTrustAnchorsU3Ek__BackingField_3(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* MonoTlsSettings_get_CertificateSearchPaths_mE287996050CC9939D950713EAB5FC382FC64453B_inline (MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * __this, const RuntimeMethod* method)
{
{
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_0 = __this->get_U3CCertificateSearchPathsU3Ek__BackingField_5();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void MonoTlsSettings_set_CertificateSearchPaths_m7A42E0C25B12F9D923BEDE97E270433CD3C8A1D4_inline (MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * __this, StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___value0, const RuntimeMethod* method)
{
{
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_0 = ___value0;
__this->set_U3CCertificateSearchPathsU3Ek__BackingField_5(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void ContentInfo_set_Content_m15B5D9A61236E1C116A9B5A651E80C5D78FB2598_inline (ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * __this, ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * ___value0, const RuntimeMethod* method)
{
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_0 = ___value0;
__this->set_content_1(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t MessageBase_get_Flags_m226EB26B3AB8C91ADA936E7B45CC8968D0F4CA9E_inline (MessageBase_t504D166CC4021DEB56DED308D5E82C67F47F26C0 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get__flags_2();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void MessageBase_set_Flags_m0E8B48A02DB678CB59A3D3274AE51418732C864C_inline (MessageBase_t504D166CC4021DEB56DED308D5E82C67F47F26C0 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->set__flags_2(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t NtlmSettings_get_DefaultAuthLevel_m98EDE4292136121773A45127209BD926E1CF141A_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NtlmSettings_get_DefaultAuthLevel_m98EDE4292136121773A45127209BD926E1CF141AMono_Security_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(NtlmSettings_tC673E811873A17EA73FCA0EFD6D33839B5036009_il2cpp_TypeInfo_var);
int32_t L_0 = ((NtlmSettings_tC673E811873A17EA73FCA0EFD6D33839B5036009_StaticFields*)il2cpp_codegen_static_fields_for(NtlmSettings_tC673E811873A17EA73FCA0EFD6D33839B5036009_il2cpp_TypeInfo_var))->get_defaultAuthLevel_0();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* Type2Message_get_TargetName_m3B65DC156E863BC78E674D0D1BEF653B25F53B7D_inline (Type2Message_t990283F48D41AECF1FFBDAA3A194CDE9C9078398 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get__targetName_4();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* ContentInfo_get_ContentType_m26D6492CA5D227AAC583CFC4A898C056ACEC8196_inline (ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_contentType_0();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * ContentInfo_get_Content_mCF1CED122282F62BAA3453E585E487D50367289F_inline (ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * __this, const RuntimeMethod* method)
{
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_0 = __this->get_content_1();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t PKCS12_get_MaximumPasswordLength_m456895C0914C8E686BC0548D036FAF11EB2AD266_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PKCS12_get_MaximumPasswordLength_m456895C0914C8E686BC0548D036FAF11EB2AD266Mono_Security_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C_il2cpp_TypeInfo_var);
int32_t L_0 = ((PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C_StaticFields*)il2cpp_codegen_static_fields_for(PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C_il2cpp_TypeInfo_var))->get_password_max_length_10();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* SafeBag_get_BagOID_m111CD6142B7D3C61FB45932B8EF9A635D80244B5_inline (SafeBag_t46FE0281DC1D6CAB5FD08FCDB3E57C2EA1859726 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get__bagOID_0();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * SafeBag_get_ASN1_m77708924A6B21495CB27668AB3CDCC844724AAD1_inline (SafeBag_t46FE0281DC1D6CAB5FD08FCDB3E57C2EA1859726 * __this, const RuntimeMethod* method)
{
{
ASN1_t2B883D12D3493F8395B31D1F0ABD93F43948B27E * L_0 = __this->get__asn1_1();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* EncryptedPrivateKeyInfo_get_Algorithm_m93A361B3EE1EDF57B8D83ECF187CD75E6B45A9D9_inline (EncryptedPrivateKeyInfo_tF582FAE09721F4F2BB353D5C2E28682FFB9C303D * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get__algorithm_0();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t EncryptedPrivateKeyInfo_get_IterationCount_m3CD06665FBE6C8B3965AA0D870B702A4E6F833FC_inline (EncryptedPrivateKeyInfo_tF582FAE09721F4F2BB353D5C2E28682FFB9C303D * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get__iterations_2();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void DeriveBytes_set_IterationCount_mFE67702E80E2748EA2B61D15E2E58CB9A4173143_inline (DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->set__iterations_4(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void DeriveBytes_set_HashName_mBDFF79A4AAA347FC742CF1E25214854EF200DA72_inline (DeriveBytes_t0598E9AC1C9605E9316F9484BDC7B0CA00C2E84D * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set__hashName_3(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * EncryptedData_get_EncryptionAlgorithm_m06B627AA11F08C1515676B6E58DEDDD43B4F380F_inline (EncryptedData_tA100D7E93FCF1B7CBD486522E841F0A980CCE61B * __this, const RuntimeMethod* method)
{
{
ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * L_0 = __this->get__encryptionAlgorithm_2();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void ContentInfo_set_ContentType_m4FEE943D01600FC088408F7E20C5E1667CB5BA21_inline (ContentInfo_tA525061F73A00511E65350B7CCF8B08BFFAE746E * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set_contentType_0(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t PKCS12_get_IterationCount_m85A4D92CA6130D1BC6818CA8C434C9A8CFD120EC_inline (PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get__iterations_7();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void PKCS12_set_IterationCount_m95AA7918C2940DFAA9AD540AEE484DD8E9A0DA43_inline (PKCS12_t98C7F0D647A3E34B93987FC7923DAA27A1AF576C * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->set__iterations_7(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* Array_Empty_TisRuntimeObject_m9CF99326FAC8A01A4A25C90AA97F0799BA35ECAB_gshared_inline (const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = ((EmptyArray_1_tCF137C88A5824F413EFB5A2F31664D8207E61D26_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0();
return L_0;
}
}
| [
"noreply@github.com"
] | noreply@github.com |
927572ccb42c228df894e4b9a8ffe92e78ee4446 | ccb6d2726b7522af43004875e2e233bc1088774a | /carma/ui/rtd/windows/compositeFolders.h | 953b87bc405560312d32ddbf6deddf0ca693fdf7 | [
"FSFUL"
] | permissive | mpound/carma | a9ab28ed45b3114972d3f72bcc522c0010e80b42 | 9e317271eec071c1a53dca8b11af31320f69417b | refs/heads/master | 2020-06-01T11:43:47.397953 | 2019-06-07T15:05:57 | 2019-06-07T15:05:57 | 190,763,870 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,018 | h | #ifndef CARMA_UI_RTD_WINDOWS_COMPOSITEFOLDERS_H
#define CARMA_UI_RTD_WINDOWS_COMPOSITEFOLDERS_H
#include <vector>
#include <boost/shared_ptr.hpp>
namespace carma {
namespace ui {
namespace rtd {
class RtFolder;
class RtObject;
class RtBox;
class RtHBox;
class RtVBox;
class CompositeSubarrayDisplay;
class SubarrayStatus;
typedef boost::shared_ptr<RtFolder> RtFolderPtr;
typedef boost::shared_ptr<RtHBox> RtHBoxPtr;
typedef boost::shared_ptr<RtBox> RtBoxPtr;
RtFolderPtr
makeFolderForSubarray(const int saNo,
CompositeSubarrayDisplay * display,
const SubarrayStatus * saStatus);
RtHBoxPtr
makeSourceInfoBox ( const int saNo,
CompositeSubarrayDisplay * display,
const SubarrayStatus * saStatus);
RtBoxPtr
makeAntTableBox(const int saNo,
CompositeSubarrayDisplay * display,
const SubarrayStatus * saStatus);
} // namespace carma::ui::rtd
} // namespace carma::ui
} // namespace carma
#endif
| [
"22331890+mpound@users.noreply.github.com"
] | 22331890+mpound@users.noreply.github.com |
c9c523be7692a46b6a22b7d1d0f57b5b95aa15a4 | 9da899bf6541c6a0514219377fea97df9907f0ae | /Editor/EditorFramework/Public/UnrealWidgetFwd.h | 8f351fdff28735f709bf8afb4a59c6a790c21544 | [] | no_license | peichangliang123/UE4 | 1aa4df3418c077dd8f82439ecc808cd2e6de4551 | 20e38f42edc251ee96905ed8e96e1be667bc14a5 | refs/heads/master | 2023-08-17T11:31:53.304431 | 2021-09-15T00:31:03 | 2021-09-15T00:31:03 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 364 | h | // Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
class FWidget;
/** Coordinate system identifiers. */
enum ECoordSystem
{
COORD_None = -1,
COORD_World,
COORD_Local,
COORD_Max,
};
namespace UE {
namespace Widget {
enum EWidgetMode
{
WM_None = -1,
WM_Translate,
WM_TranslateRotateZ,
WM_2D,
WM_Rotate,
WM_Scale,
WM_Max,
};
}
}
| [
"ouczbs@qq.com"
] | ouczbs@qq.com |
d72362ab31bbc7ab7c92398af95317ed334d1660 | 68dbd93da0d6d1890d6a04663b84798d51282570 | /src/DockApp.h | 22ab6ddb4a48fc5460a29fa71655424874cef3b2 | [] | no_license | wishstudio/KDock | cfb0f1334371806368b9779ffa65582d497080eb | c0b5fa8523db3d19f1b13ecd12536be87f05de3f | refs/heads/master | 2020-06-04T04:56:30.082976 | 2013-12-17T06:02:17 | 2013-12-17T06:02:17 | 2,754,698 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,935 | h | /*
* Copyright (C) 2011 by Xiangyan Sun <wishstudio@gmail.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 3, 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.
*/
#ifndef DOCKAPP_H
#define DOCKAPP_H
#include <QObject>
#include <KWindowInfo>
namespace TaskManager
{
class Task;
}
class DockApp: public QObject
{
Q_OBJECT
public:
DockApp(QString desktop_file, bool isLauncher);
DockApp(QString executable, QString icon, QString name, QString startup_wm_class);
void launchApp();
void toggleLauncher();
bool runnable();
static bool validQList(const QList<QString> &values);
static DockApp *fromQList(const QList<QString> &values);
QList<QString> toQList();
bool isLauncher();
QString desktop_file();
QString executable();
QString icon();
QString name();
QString command();
QString wm_class();
QList< ::TaskManager::Task *> tasks();
void clearTasks();
int countTasks();
void addTask(::TaskManager::Task *task);
void removeTask(::TaskManager::Task *task);
void closeTasks();
public slots:
void taskActivated();
void taskDeactivated();
private:
bool m_isLauncher;
QString m_executable, m_icon, m_name, m_command, m_wm_class;
QList< ::TaskManager::Task *> m_tasks;
signals:
void appChanged();
void appActivated();
void appDeactivated();
};
#endif
| [
"wishstudio@gmail.com"
] | wishstudio@gmail.com |
7ff6ee8ba3075a2a100cd724b64011830b237788 | 667e348060a53b5d59b60608b5cd9c8e54ad02e4 | /FRICP.h | 4bf6c350243c2b378403ba0b9564fd83b4fb36e7 | [
"MIT"
] | permissive | TTFF322/Fast-Robust-ICP | edcc839f3937cc70e13259823e41ff74e2a47828 | 90da35f625b9b90f40a39a04e810c3a0f43e2d9a | refs/heads/master | 2023-07-10T08:40:37.414694 | 2021-07-23T09:01:51 | 2021-07-23T09:01:51 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 35,195 | h | #ifndef FRICP_H
#define FRICP_H
#include "ICP.h"
#include <AndersonAcceleration.h>
#include <eigen/unsupported/Eigen/MatrixFunctions>
#include "median.h"
#include <limits>
#define SAME_THRESHOLD 1e-6
#include <type_traits>
template<class T>
typename std::enable_if<!std::numeric_limits<T>::is_integer, bool>::type
almost_equal(T x, T y, int ulp)
{
// the machine epsilon has to be scaled to the magnitude of the values used
// and multiplied by the desired precision in ULPs (units in the last place)
return std::fabs(x-y) <= std::numeric_limits<T>::epsilon() * std::fabs(x+y) * ulp
// unless the result is subnormal
|| std::fabs(x-y) < std::numeric_limits<T>::min();
}
template<int N>
class FRICP
{
public:
typedef double Scalar;
typedef Eigen::Matrix<Scalar, N, Eigen::Dynamic> MatrixNX;
typedef Eigen::Matrix<Scalar, N, N> MatrixNN;
typedef Eigen::Matrix<Scalar, N+1, N+1> AffineMatrixN;
typedef Eigen::Transform<Scalar, N, Eigen::Affine> AffineNd;
typedef Eigen::Matrix<Scalar, N, 1> VectorN;
typedef nanoflann::KDTreeAdaptor<MatrixNX, N, nanoflann::metric_L2_Simple> KDtree;
typedef Eigen::Matrix<Scalar, 6, 1> Vector6;
double test_total_construct_time=.0;
double test_total_solve_time=.0;
int test_total_iters=0;
FRICP(){};
~FRICP(){};
private:
AffineMatrixN LogMatrix(const AffineMatrixN& T)
{
Eigen::RealSchur<AffineMatrixN> schur(T);
AffineMatrixN U = schur.matrixU();
AffineMatrixN R = schur.matrixT();
std::vector<bool> selected(N, true);
MatrixNN mat_B = MatrixNN::Zero(N, N);
MatrixNN mat_V = MatrixNN::Identity(N, N);
for (int i = 0; i < N; i++)
{
if (selected[i] && fabs(R(i, i) - 1)> SAME_THRESHOLD)
{
int pair_second = -1;
for (int j = i + 1; j <N; j++)
{
if (fabs(R(j, j) - R(i, i)) < SAME_THRESHOLD)
{
pair_second = j;
selected[j] = false;
break;
}
}
if (pair_second > 0)
{
selected[i] = false;
R(i, i) = R(i, i) < -1 ? -1 : R(i, i);
double theta = acos(R(i, i));
if (R(i, pair_second) < 0)
{
theta = -theta;
}
mat_B(i, pair_second) += theta;
mat_B(pair_second, i) += -theta;
mat_V(i, pair_second) += -theta / 2;
mat_V(pair_second, i) += theta / 2;
double coeff = 1 - (theta * R(i, pair_second)) / (2 * (1 - R(i, i)));
mat_V(i, i) += -coeff;
mat_V(pair_second, pair_second) += -coeff;
}
}
}
AffineMatrixN LogTrim = AffineMatrixN::Zero();
LogTrim.block(0, 0, N, N) = mat_B;
LogTrim.block(0, N, N, 1) = mat_V * R.block(0, N, N, 1);
AffineMatrixN res = U * LogTrim * U.transpose();
return res;
}
inline Vector6 RotToEuler(const AffineNd& T)
{
Vector6 res;
res.head(3) = T.rotation().eulerAngles(0,1,2);
res.tail(3) = T.translation();
return res;
}
inline AffineMatrixN EulerToRot(const Vector6& v)
{
MatrixNN s (Eigen::AngleAxis<Scalar>(v(0), Vector3::UnitX())
* Eigen::AngleAxis<Scalar>(v(1), Vector3::UnitY())
* Eigen::AngleAxis<Scalar>(v(2), Vector3::UnitZ()));
AffineMatrixN m = AffineMatrixN::Zero();
m.block(0,0,3,3) = s;
m(3,3) = 1;
m.col(3).head(3) = v.tail(3);
return m;
}
inline Vector6 LogToVec(const Eigen::Matrix4d& LogT)
{
Vector6 res;
res[0] = -LogT(1, 2);
res[1] = LogT(0, 2);
res[2] = -LogT(0, 1);
res[3] = LogT(0, 3);
res[4] = LogT(1, 3);
res[5] = LogT(2, 3);
return res;
}
inline AffineMatrixN VecToLog(const Vector6& v)
{
AffineMatrixN m = AffineMatrixN::Zero();
m << 0, -v[2], v[1], v[3],
v[2], 0, -v[0], v[4],
-v[1], v[0], 0, v[5],
0, 0, 0, 0;
return m;
}
double FindKnearestMed(const KDtree& kdtree,
const MatrixNX& X, int nk)
{
Eigen::VectorXd X_nearest(X.cols());
#pragma omp parallel for
for(int i = 0; i<X.cols(); i++)
{
int* id = new int[nk];
double *dist = new double[nk];
kdtree.query(X.col(i).data(), nk, id, dist);
Eigen::VectorXd k_dist = Eigen::Map<Eigen::VectorXd>(dist, nk);
igl::median(k_dist.tail(nk-1), X_nearest[i]);
delete[]id;
delete[]dist;
}
double med;
igl::median(X_nearest, med);
return sqrt(med);
}
/// Find self normal edge median of point cloud
double FindKnearestNormMed(const KDtree& kdtree, const Eigen::Matrix3Xd & X, int nk, const Eigen::Matrix3Xd & norm_x)
{
Eigen::VectorXd X_nearest(X.cols());
#pragma omp parallel for
for(int i = 0; i<X.cols(); i++)
{
int* id = new int[nk];
double *dist = new double[nk];
kdtree.query(X.col(i).data(), nk, id, dist);
Eigen::VectorXd k_dist = Eigen::Map<Eigen::VectorXd>(dist, nk);
for(int s = 1; s<nk; s++)
{
k_dist[s] = std::abs((X.col(id[s]) - X.col(id[0])).dot(norm_x.col(id[0])));
}
igl::median(k_dist.tail(nk-1), X_nearest[i]);
delete[]id;
delete[]dist;
}
double med;
igl::median(X_nearest, med);
return med;
}
template <typename Derived1, typename Derived2, typename Derived3>
AffineNd point_to_point(Eigen::MatrixBase<Derived1>& X,
Eigen::MatrixBase<Derived2>& Y,
const Eigen::MatrixBase<Derived3>& w) {
int dim = X.rows();
/// Normalize weight vector
Eigen::VectorXd w_normalized = w / w.sum();
/// De-mean
Eigen::VectorXd X_mean(dim), Y_mean(dim);
for (int i = 0; i<dim; ++i) {
X_mean(i) = (X.row(i).array()*w_normalized.transpose().array()).sum();
Y_mean(i) = (Y.row(i).array()*w_normalized.transpose().array()).sum();
}
X.colwise() -= X_mean;
Y.colwise() -= Y_mean;
/// Compute transformation
AffineNd transformation;
MatrixXX sigma = X * w_normalized.asDiagonal() * Y.transpose();
Eigen::JacobiSVD<MatrixXX> svd(sigma, Eigen::ComputeFullU | Eigen::ComputeFullV);
if (svd.matrixU().determinant()*svd.matrixV().determinant() < 0.0) {
VectorN S = VectorN::Ones(dim); S(dim-1) = -1.0;
transformation.linear() = svd.matrixV()*S.asDiagonal()*svd.matrixU().transpose();
}
else {
transformation.linear() = svd.matrixV()*svd.matrixU().transpose();
}
transformation.translation() = Y_mean - transformation.linear()*X_mean;
/// Re-apply mean
X.colwise() += X_mean;
Y.colwise() += Y_mean;
/// Return transformation
return transformation;
}
template <typename Derived1, typename Derived2, typename Derived3, typename Derived4, typename Derived5>
Eigen::Affine3d point_to_plane(Eigen::MatrixBase<Derived1>& X,
Eigen::MatrixBase<Derived2>& Y,
const Eigen::MatrixBase<Derived3>& Norm,
const Eigen::MatrixBase<Derived4>& w,
const Eigen::MatrixBase<Derived5>& u) {
typedef Eigen::Matrix<double, 6, 6> Matrix66;
typedef Eigen::Matrix<double, 6, 1> Vector6;
typedef Eigen::Block<Matrix66, 3, 3> Block33;
/// Normalize weight vector
Eigen::VectorXd w_normalized = w / w.sum();
/// De-mean
Eigen::Vector3d X_mean;
for (int i = 0; i<3; ++i)
X_mean(i) = (X.row(i).array()*w_normalized.transpose().array()).sum();
X.colwise() -= X_mean;
Y.colwise() -= X_mean;
/// Prepare LHS and RHS
Matrix66 LHS = Matrix66::Zero();
Vector6 RHS = Vector6::Zero();
Block33 TL = LHS.topLeftCorner<3, 3>();
Block33 TR = LHS.topRightCorner<3, 3>();
Block33 BR = LHS.bottomRightCorner<3, 3>();
Eigen::MatrixXd C = Eigen::MatrixXd::Zero(3, X.cols());
#pragma omp parallel
{
#pragma omp for
for (int i = 0; i<X.cols(); i++) {
C.col(i) = X.col(i).cross(Norm.col(i));
}
#pragma omp sections nowait
{
#pragma omp section
for (int i = 0; i<X.cols(); i++) TL.selfadjointView<Eigen::Upper>().rankUpdate(C.col(i), w(i));
#pragma omp section
for (int i = 0; i<X.cols(); i++) TR += (C.col(i)*Norm.col(i).transpose())*w(i);
#pragma omp section
for (int i = 0; i<X.cols(); i++) BR.selfadjointView<Eigen::Upper>().rankUpdate(Norm.col(i), w(i));
#pragma omp section
for (int i = 0; i<C.cols(); i++) {
double dist_to_plane = -((X.col(i) - Y.col(i)).dot(Norm.col(i)) - u(i))*w(i);
RHS.head<3>() += C.col(i)*dist_to_plane;
RHS.tail<3>() += Norm.col(i)*dist_to_plane;
}
}
}
LHS = LHS.selfadjointView<Eigen::Upper>();
/// Compute transformation
Eigen::Affine3d transformation;
Eigen::LDLT<Matrix66> ldlt(LHS);
RHS = ldlt.solve(RHS);
transformation = Eigen::AngleAxisd(RHS(0), Eigen::Vector3d::UnitX()) *
Eigen::AngleAxisd(RHS(1), Eigen::Vector3d::UnitY()) *
Eigen::AngleAxisd(RHS(2), Eigen::Vector3d::UnitZ());
transformation.translation() = RHS.tail<3>();
/// Apply transformation
/// Re-apply mean
X.colwise() += X_mean;
Y.colwise() += X_mean;
transformation.translation() += X_mean - transformation.linear()*X_mean;
/// Return transformation
return transformation;
}
template <typename Derived1, typename Derived2, typename Derived3, typename Derived4>
double point_to_plane_gaussnewton(const Eigen::MatrixBase<Derived1>& X,
const Eigen::MatrixBase<Derived2>& Y,
const Eigen::MatrixBase<Derived3>& norm_y,
const Eigen::MatrixBase<Derived4>& w,
Matrix44 Tk, Vector6& dir) {
typedef Eigen::Matrix<double, 6, 6> Matrix66;
typedef Eigen::Matrix<double, 12, 6> Matrix126;
typedef Eigen::Matrix<double, 9, 3> Matrix93;
typedef Eigen::Block<Matrix126, 9, 3> Block93;
typedef Eigen::Block<Matrix126, 3, 3> Block33;
typedef Eigen::Matrix<double, 12, 1> Vector12;
typedef Eigen::Matrix<double, 9, 1> Vector9;
typedef Eigen::Matrix<double, 4, 2> Matrix42;
/// Normalize weight vector
Eigen::VectorXd w_normalized = w / w.sum();
/// Prepare LHS and RHS
Matrix66 LHS = Matrix66::Zero();
Vector6 RHS = Vector6::Zero();
Vector6 log_T = LogToVec(LogMatrix(Tk));
Matrix33 B = VecToLog(log_T).block(0, 0, 3, 3);
double a = log_T[0];
double b = log_T[1];
double c = log_T[2];
Matrix33 R = Tk.block(0, 0, 3, 3);
Vector3 t = Tk.block(0, 3, 3, 1);
Vector3 u = log_T.tail(3);
Matrix93 dbdw = Matrix93::Zero();
dbdw(1, 2) = dbdw(5, 0) = dbdw(6, 1) = -1;
dbdw(2, 1) = dbdw(3, 2) = dbdw(7, 0) = 1;
Matrix93 db2dw = Matrix93::Zero();
db2dw(3, 1) = db2dw(4, 0) = db2dw(6, 2) = db2dw(8, 0) = a;
db2dw(0, 1) = db2dw(1, 0) = db2dw(7, 2) = db2dw(8, 1) = b;
db2dw(0, 2) = db2dw(2, 0) = db2dw(4, 2) = db2dw(5, 1) = c;
db2dw(1, 1) = db2dw(2, 2) = -2 * a;
db2dw(3, 0) = db2dw(5, 2) = -2 * b;
db2dw(6, 0) = db2dw(7, 1) = -2 * c;
double theta = std::sqrt(a*a + b*b + c*c);
double st = sin(theta), ct = cos(theta);
Matrix42 coeff = Matrix42::Zero();
if (theta>SAME_THRESHOLD)
{
coeff << st / theta, (1 - ct) / (theta*theta),
(theta*ct - st) / (theta*theta*theta), (theta*st - 2 * (1 - ct)) / pow(theta, 4),
(1 - ct) / (theta*theta), (theta - st) / pow(theta, 3),
(theta*st - 2 * (1 - ct)) / pow(theta, 4), (theta*(1 - ct) - 3 * (theta - st)) / pow(theta, 5);
}
else
coeff(0, 0) = 1;
Matrix93 tempB3;
tempB3.block<3, 3>(0, 0) = a*B;
tempB3.block<3, 3>(3, 0) = b*B;
tempB3.block<3, 3>(6, 0) = c*B;
Matrix33 B2 = B*B;
Matrix93 temp2B3;
temp2B3.block<3, 3>(0, 0) = a*B2;
temp2B3.block<3, 3>(3, 0) = b*B2;
temp2B3.block<3, 3>(6, 0) = c*B2;
Matrix93 dRdw = coeff(0, 0)*dbdw + coeff(1, 0)*tempB3
+ coeff(2, 0)*db2dw + coeff(3, 0)*temp2B3;
Vector9 dtdw = coeff(0, 1) * dbdw*u + coeff(1, 1) * tempB3*u
+ coeff(2, 1) * db2dw*u + coeff(3, 1)*temp2B3*u;
Matrix33 dtdu = Matrix33::Identity() + coeff(2, 0)*B + coeff(2, 1) * B2;
Eigen::VectorXd rk(X.cols());
Eigen::MatrixXd Jk(X.cols(), 6);
#pragma omp for
for (int i = 0; i < X.cols(); i++)
{
Vector3 xi = X.col(i);
Vector3 yi = Y.col(i);
Vector3 ni = norm_y.col(i);
double wi = sqrt(w_normalized[i]);
Matrix33 dedR = wi*ni * xi.transpose();
Vector3 dedt = wi*ni;
Vector6 dedx;
dedx(0) = (dedR.cwiseProduct(dRdw.block(0, 0, 3, 3))).sum()
+ dedt.dot(dtdw.head<3>());
dedx(1) = (dedR.cwiseProduct(dRdw.block(3, 0, 3, 3))).sum()
+ dedt.dot(dtdw.segment<3>(3));
dedx(2) = (dedR.cwiseProduct(dRdw.block(6, 0, 3, 3))).sum()
+ dedt.dot(dtdw.tail<3>());
dedx(3) = dedt.dot(dtdu.col(0));
dedx(4) = dedt.dot(dtdu.col(1));
dedx(5) = dedt.dot(dtdu.col(2));
Jk.row(i) = dedx.transpose();
rk[i] = wi * ni.dot(R*xi-yi+t);
}
LHS = Jk.transpose() * Jk;
RHS = -Jk.transpose() * rk;
Eigen::CompleteOrthogonalDecomposition<Matrix66> cod_(LHS);
dir = cod_.solve(RHS);
double gTd = -RHS.dot(dir);
return gTd;
}
public:
void point_to_point(MatrixNX& X, MatrixNX& Y, VectorN& source_mean,
VectorN& target_mean, ICP::Parameters& par){
/// Build kd-tree
KDtree kdtree(Y);
/// Buffers
MatrixNX Q = MatrixNX::Zero(N, X.cols());
VectorX W = VectorX::Zero(X.cols());
AffineNd T;
if (par.use_init) T.matrix() = par.init_trans;
else T = AffineNd::Identity();
MatrixXX To1 = T.matrix();
MatrixXX To2 = T.matrix();
int nPoints = X.cols();
//Anderson Acc para
AndersonAcceleration accelerator_;
AffineNd SVD_T = T;
double energy = .0, last_energy = std::numeric_limits<double>::max();
//ground truth point clouds
MatrixNX X_gt = X;
if(par.has_groundtruth)
{
VectorN temp_trans = par.gt_trans.col(N).head(N);
X_gt.colwise() += source_mean;
X_gt = par.gt_trans.block(0, 0, N, N) * X_gt;
X_gt.colwise() += temp_trans - target_mean;
}
//output para
std::string file_out = par.out_path;
std::vector<double> times, energys, gt_mses;
double begin_time, end_time, run_time;
double gt_mse = 0.0;
// dynamic welsch paras
double nu1 = 1, nu2 = 1;
double begin_init = omp_get_wtime();
//Find initial closest point
#pragma omp parallel for
for (int i = 0; i<nPoints; ++i) {
VectorN cur_p = T * X.col(i);
Q.col(i) = Y.col(kdtree.closest(cur_p.data()));
W[i] = (cur_p - Q.col(i)).norm();
}
if(par.f == ICP::WELSCH)
{
//dynamic welsch, calc k-nearest points with itself;
nu2 = par.nu_end_k * FindKnearestMed(kdtree, Y, 7);
double med1;
igl::median(W, med1);
nu1 = par.nu_begin_k * med1;
nu1 = nu1>nu2? nu1:nu2;
}
double end_init = omp_get_wtime();
double init_time = end_init - begin_init;
//AA init
accelerator_.init(par.anderson_m, (N + 1) * (N + 1), LogMatrix(T.matrix()).data());
begin_time = omp_get_wtime();
bool stop1 = false;
while(!stop1)
{
/// run ICP
int icp = 0;
for (; icp<par.max_icp; ++icp)
{
bool accept_aa = false;
energy = get_energy(par.f, W, nu1);
if (par.use_AA)
{
if (energy < last_energy) {
last_energy = energy;
accept_aa = true;
}
else{
accelerator_.replace(LogMatrix(SVD_T.matrix()).data());
//Re-find the closest point
#pragma omp parallel for
for (int i = 0; i<nPoints; ++i) {
VectorN cur_p = SVD_T * X.col(i);
Q.col(i) = Y.col(kdtree.closest(cur_p.data()));
W[i] = (cur_p - Q.col(i)).norm();
}
last_energy = get_energy(par.f, W, nu1);
}
}
else
last_energy = energy;
end_time = omp_get_wtime();
run_time = end_time - begin_time;
if(par.has_groundtruth)
{
gt_mse = (T*X - X_gt).squaredNorm()/nPoints;
}
// save results
energys.push_back(last_energy);
times.push_back(run_time);
gt_mses.push_back(gt_mse);
if (par.print_energy)
std::cout << "icp iter = " << icp << ", Energy = " << last_energy
<< ", time = " << run_time << std::endl;
robust_weight(par.f, W, nu1);
// Rotation and translation update
T = point_to_point(X, Q, W);
//Anderson Acc
SVD_T = T;
if (par.use_AA)
{
AffineMatrixN Trans = (Eigen::Map<const AffineMatrixN>(accelerator_.compute(LogMatrix(T.matrix()).data()).data(), N+1, N+1)).exp();
T.linear() = Trans.block(0,0,N,N);
T.translation() = Trans.block(0,N,N,1);
}
// Find closest point
#pragma omp parallel for
for (int i = 0; i<nPoints; ++i) {
VectorN cur_p = T * X.col(i) ;
Q.col(i) = Y.col(kdtree.closest(cur_p.data()));
W[i] = (cur_p - Q.col(i)).norm();
}
/// Stopping criteria
double stop2 = (T.matrix() - To2).norm();
To2 = T.matrix();
if(stop2 < par.stop)
{
break;
}
}
if(par.f!= ICP::WELSCH)
stop1 = true;
else
{
stop1 = fabs(nu1 - nu2)<SAME_THRESHOLD? true: false;
nu1 = nu1*par.nu_alpha > nu2? nu1*par.nu_alpha : nu2;
if(par.use_AA)
{
accelerator_.reset(LogMatrix(T.matrix()).data());
last_energy = std::numeric_limits<double>::max();
}
}
}
///calc convergence energy
last_energy = get_energy(par.f, W, nu1);
X = T * X;
gt_mse = (X-X_gt).squaredNorm()/nPoints;
T.translation() += - T.rotation() * source_mean + target_mean;
X.colwise() += target_mean;
///save convergence result
par.convergence_energy = last_energy;
par.convergence_gt_mse = gt_mse;
par.res_trans = T.matrix();
///output
if (par.print_output)
{
std::ofstream out_res(par.out_path);
if (!out_res.is_open())
{
std::cout << "Can't open out file " << par.out_path << std::endl;
}
//output time and energy
out_res.precision(16);
for (int i = 0; i<times.size(); i++)
{
out_res << times[i] << " "<< energys[i] << " " << gt_mses[i] << std::endl;
}
out_res.close();
std::cout << " write res to " << par.out_path << std::endl;
}
}
/// Reweighted ICP with point to plane
/// @param Source (one 3D point per column)
/// @param Target (one 3D point per column)
/// @param Target normals (one 3D normal per column)
/// @param Parameters
// template <typename Derived1, typename Derived2, typename Derived3>
void point_to_plane(Eigen::Matrix3Xd& X,
Eigen::Matrix3Xd& Y, Eigen::Matrix3Xd& norm_x, Eigen::Matrix3Xd& norm_y,
Eigen::Vector3d& source_mean, Eigen::Vector3d& target_mean,
ICP::Parameters &par) {
/// Build kd-tree
KDtree kdtree(Y);
/// Buffers
Eigen::Matrix3Xd Qp = Eigen::Matrix3Xd::Zero(3, X.cols());
Eigen::Matrix3Xd Qn = Eigen::Matrix3Xd::Zero(3, X.cols());
Eigen::VectorXd W = Eigen::VectorXd::Zero(X.cols());
Eigen::Matrix3Xd ori_X = X;
AffineNd T;
if (par.use_init) T.matrix() = par.init_trans;
else T = AffineNd::Identity();
AffineMatrixN To1 = T.matrix();
X = T*X;
Eigen::Matrix3Xd X_gt = X;
if(par.has_groundtruth)
{
Eigen::Vector3d temp_trans = par.gt_trans.block(0, 3, 3, 1);
X_gt = ori_X;
X_gt.colwise() += source_mean;
X_gt = par.gt_trans.block(0, 0, 3, 3) * X_gt;
X_gt.colwise() += temp_trans - target_mean;
}
std::vector<double> times, energys, gt_mses;
double begin_time, end_time, run_time;
double gt_mse = 0.0;
///dynamic welsch, calc k-nearest points with itself;
double begin_init = omp_get_wtime();
//Anderson Acc para
AndersonAcceleration accelerator_;
AffineNd LG_T = T;
double energy = 0.0, prev_res = std::numeric_limits<double>::max(), res = 0.0;
// Find closest point
#pragma omp parallel for
for (int i = 0; i<X.cols(); ++i) {
int id = kdtree.closest(X.col(i).data());
Qp.col(i) = Y.col(id);
Qn.col(i) = norm_y.col(id);
W[i] = std::abs(Qn.col(i).transpose() * (X.col(i) - Qp.col(i)));
}
double end_init = omp_get_wtime();
double init_time = end_init - begin_init;
begin_time = omp_get_wtime();
int total_iter = 0;
double test_total_time = 0.0;
bool stop1 = false;
while(!stop1)
{
/// ICP
for(int icp=0; icp<par.max_icp; ++icp) {
total_iter++;
bool accept_aa = false;
energy = get_energy(par.f, W, par.p);
end_time = omp_get_wtime();
run_time = end_time - begin_time;
energys.push_back(energy);
times.push_back(run_time);
Eigen::VectorXd test_w = (X-Qp).colwise().norm();
if(par.has_groundtruth)
{
gt_mse = (X - X_gt).squaredNorm()/X.cols();
}
gt_mses.push_back(gt_mse);
/// Compute weights
robust_weight(par.f, W, par.p);
/// Rotation and translation update
T = point_to_plane(X, Qp, Qn, W, Eigen::VectorXd::Zero(X.cols()))*T;
/// Find closest point
#pragma omp parallel for
for(int i=0; i<X.cols(); i++) {
X.col(i) = T * ori_X.col(i);
int id = kdtree.closest(X.col(i).data());
Qp.col(i) = Y.col(id);
Qn.col(i) = norm_y.col(id);
W[i] = std::abs(Qn.col(i).transpose() * (X.col(i) - Qp.col(i)));
}
if(par.print_energy)
std::cout << "icp iter = " << total_iter << ", gt_mse = " << gt_mse
<< ", energy = " << energy << std::endl;
/// Stopping criteria
double stop2 = (T.matrix() - To1).norm();
To1 = T.matrix();
if(stop2 < par.stop) break;
}
stop1 = true;
}
par.res_trans = T.matrix();
///calc convergence energy
W = (Qn.array()*(X - Qp).array()).colwise().sum().abs().transpose();
energy = get_energy(par.f, W, par.p);
gt_mse = (X - X_gt).squaredNorm() / X.cols();
T.translation().noalias() += -T.rotation()*source_mean + target_mean;
X.colwise() += target_mean;
norm_x = T.rotation()*norm_x;
///save convergence result
par.convergence_energy = energy;
par.convergence_gt_mse = gt_mse;
par.res_trans = T.matrix();
///output
if (par.print_output)
{
std::ofstream out_res(par.out_path);
if (!out_res.is_open())
{
std::cout << "Can't open out file " << par.out_path << std::endl;
}
///output time and energy
out_res.precision(16);
for (int i = 0; i<total_iter; i++)
{
out_res << times[i] << " "<< energys[i] << " " << gt_mses[i] << std::endl;
}
out_res.close();
std::cout << " write res to " << par.out_path << std::endl;
}
}
/// Reweighted ICP with point to plane
/// @param Source (one 3D point per column)
/// @param Target (one 3D point per column)
/// @param Target normals (one 3D normal per column)
/// @param Parameters
// template <typename Derived1, typename Derived2, typename Derived3>
void point_to_plane_GN(Eigen::Matrix3Xd& X,
Eigen::Matrix3Xd& Y, Eigen::Matrix3Xd& norm_x, Eigen::Matrix3Xd& norm_y,
Eigen::Vector3d& source_mean, Eigen::Vector3d& target_mean,
ICP::Parameters &par) {
/// Build kd-tree
KDtree kdtree(Y);
/// Buffers
Eigen::Matrix3Xd Qp = Eigen::Matrix3Xd::Zero(3, X.cols());
Eigen::Matrix3Xd Qn = Eigen::Matrix3Xd::Zero(3, X.cols());
Eigen::VectorXd W = Eigen::VectorXd::Zero(X.cols());
Eigen::Matrix3Xd ori_X = X;
AffineNd T;
if (par.use_init) T.matrix() = par.init_trans;
else T = AffineNd::Identity();
AffineMatrixN To1 = T.matrix();
X = T*X;
Eigen::Matrix3Xd X_gt = X;
if(par.has_groundtruth)
{
Eigen::Vector3d temp_trans = par.gt_trans.block(0, 3, 3, 1);
X_gt = ori_X;
X_gt.colwise() += source_mean;
X_gt = par.gt_trans.block(0, 0, 3, 3) * X_gt;
X_gt.colwise() += temp_trans - target_mean;
}
std::vector<double> times, energys, gt_mses;
double begin_time, end_time, run_time;
double gt_mse;
///dynamic welsch, calc k-nearest points with itself;
double nu1 = 1, nu2 = 1;
double begin_init = omp_get_wtime();
//Anderson Acc para
AndersonAcceleration accelerator_;
Vector6 LG_T;
Vector6 Dir;
//add time test
double energy = 0.0, prev_energy = std::numeric_limits<double>::max();
if(par.use_AA)
{
Eigen::Matrix4d log_T = LogMatrix(T.matrix());
LG_T = LogToVec(log_T);
accelerator_.init(par.anderson_m, 6, LG_T.data());
}
// Find closest point
#pragma omp parallel for
for (int i = 0; i<X.cols(); ++i) {
int id = kdtree.closest(X.col(i).data());
Qp.col(i) = Y.col(id);
Qn.col(i) = norm_y.col(id);
W[i] = std::abs(Qn.col(i).transpose() * (X.col(i) - Qp.col(i)));
}
if(par.f == ICP::WELSCH)
{
double med1;
igl::median(W, med1);
nu1 =par.nu_begin_k * med1;
nu2 = par.nu_end_k * FindKnearestNormMed(kdtree, Y, 7, norm_y);
nu1 = nu1>nu2? nu1:nu2;
}
double end_init = omp_get_wtime();
double init_time = end_init - begin_init;
begin_time = omp_get_wtime();
int total_iter = 0;
double test_total_time = 0.0;
bool stop1 = false;
par.max_icp = 6;
while(!stop1)
{
par.max_icp = std::min(par.max_icp+1, 10);
/// ICP
for(int icp=0; icp<par.max_icp; ++icp) {
total_iter++;
int n_linsearch = 0;
energy = get_energy(par.f, W, nu1);
if(par.use_AA)
{
if(energy < prev_energy)
{
prev_energy = energy;
}
else
{
// line search
double alpha = 0.0;
Vector6 new_t = LG_T;
Eigen::VectorXd lowest_W = W;
Eigen::Matrix3Xd lowest_Qp = Qp;
Eigen::Matrix3Xd lowest_Qn = Qn;
Eigen::Affine3d lowest_T = T;
n_linsearch++;
alpha = 1;
new_t = LG_T + alpha * Dir;
T.matrix() = VecToLog(new_t).exp();
/// Find closest point
#pragma omp parallel for
for(int i=0; i<X.cols(); i++) {
X.col(i) = T * ori_X.col(i);
int id = kdtree.closest(X.col(i).data());
Qp.col(i) = Y.col(id);
Qn.col(i) = norm_y.col(id);
W[i] = std::abs(Qn.col(i).transpose() * (X.col(i) - Qp.col(i)));
}
double test_energy = get_energy(par.f, W, nu1);
if(test_energy < energy)
{
accelerator_.reset(new_t.data());
energy = test_energy;
}
else
{
Qp = lowest_Qp;
Qn = lowest_Qn;
W = lowest_W;
T = lowest_T;
}
prev_energy = energy;
}
}
else
{
prev_energy = energy;
}
end_time = omp_get_wtime();
run_time = end_time - begin_time;
energys.push_back(prev_energy);
times.push_back(run_time);
if(par.has_groundtruth)
{
gt_mse = (X - X_gt).squaredNorm()/X.cols();
}
gt_mses.push_back(gt_mse);
/// Compute weights
robust_weight(par.f, W, nu1);
/// Rotation and translation update
point_to_plane_gaussnewton(ori_X, Qp, Qn, W, T.matrix(), Dir);
LG_T = LogToVec(LogMatrix(T.matrix()));
LG_T += Dir;
T.matrix() = VecToLog(LG_T).exp();
// Anderson acc
if(par.use_AA)
{
Vector6 AA_t;
AA_t = accelerator_.compute(LG_T.data());
T.matrix() = VecToLog(AA_t).exp();
}
if(par.print_energy)
std::cout << "icp iter = " << total_iter << ", gt_mse = " << gt_mse
<< ", nu1 = " << nu1 << ", acept_aa= " << n_linsearch
<< ", energy = " << prev_energy << std::endl;
/// Find closest point
#pragma omp parallel for
for(int i=0; i<X.cols(); i++) {
X.col(i) = T * ori_X.col(i);
int id = kdtree.closest(X.col(i).data());
Qp.col(i) = Y.col(id);
Qn.col(i) = norm_y.col(id);
W[i] = std::abs(Qn.col(i).transpose() * (X.col(i) - Qp.col(i)));
}
/// Stopping criteria
double stop2 = (T.matrix() - To1).norm();
To1 = T.matrix();
if(stop2 < par.stop) break;
}
if(par.f == ICP::WELSCH)
{
stop1 = fabs(nu1 - nu2)<SAME_THRESHOLD? true: false;
nu1 = nu1*par.nu_alpha > nu2 ? nu1*par.nu_alpha : nu2;
if(par.use_AA)
{
accelerator_.reset(LogToVec(LogMatrix(T.matrix())).data());
prev_energy = std::numeric_limits<double>::max();
}
}
else
stop1 = true;
}
par.res_trans = T.matrix();
///calc convergence energy
W = (Qn.array()*(X - Qp).array()).colwise().sum().abs().transpose();
energy = get_energy(par.f, W, nu1);
gt_mse = (X - X_gt).squaredNorm() / X.cols();
T.translation().noalias() += -T.rotation()*source_mean + target_mean;
X.colwise() += target_mean;
norm_x = T.rotation()*norm_x;
///save convergence result
par.convergence_energy = energy;
par.convergence_gt_mse = gt_mse;
par.res_trans = T.matrix();
///output
if (par.print_output)
{
std::ofstream out_res(par.out_path);
if (!out_res.is_open())
{
std::cout << "Can't open out file " << par.out_path << std::endl;
}
///output time and energy
out_res.precision(16);
for (int i = 0; i<total_iter; i++)
{
out_res << times[i] << " "<< energys[i] << " " << gt_mses[i] << std::endl;
}
out_res.close();
std::cout << " write res to " << par.out_path << std::endl;
}
}
};
#endif
| [
"yaoyuxin1@126.com"
] | yaoyuxin1@126.com |
8e6cd1ed4436b5543f2696ccef049f3ce0f886d5 | 795f2e45d07bc26252d82d68a3be9ba9541a1dda | /src/core_io.h | 8f73f6db82505d884fb2efeb118cc42a5614da99 | [
"MIT"
] | permissive | Basethics/Valideum | 47d3707d089647a1288282a957504efa5cc7d6d1 | 021e07c220e26a9ebaf6db36f427857804f4f926 | refs/heads/master | 2020-04-26T22:19:13.067095 | 2019-05-23T07:35:38 | 2019-05-23T07:35:38 | 173,869,300 | 0 | 2 | MIT | 2019-05-13T07:06:34 | 2019-03-05T03:51:55 | C++ | UTF-8 | C++ | false | false | 1,251 | h | // Copyright (c) 2009-2014 The Bitcoin developers
// Copyright (c) 2017 The PIVX developers
// Copyright (c) 2018-2019 The VALIDEUM developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef BITCOIN_CORE_IO_H
#define BITCOIN_CORE_IO_H
#include <string>
#include <vector>
class CBlock;
class CScript;
class CTransaction;
class uint256;
class UniValue;
// core_read.cpp
extern CScript ParseScript(std::string s);
extern bool DecodeHexTx(CTransaction& tx, const std::string& strHexTx);
extern bool DecodeHexBlk(CBlock&, const std::string& strHexBlk);
extern uint256 ParseHashUV(const UniValue& v, const std::string& strName);
extern uint256 ParseHashStr(const std::string&, const std::string& strName);
extern std::vector<unsigned char> ParseHexUV(const UniValue& v, const std::string& strName);
// core_write.cpp
extern std::string FormatScript(const CScript& script);
extern std::string EncodeHexTx(const CTransaction& tx);
extern void ScriptPubKeyToUniv(const CScript& scriptPubKey,
UniValue& out,
bool fIncludeHex);
extern void TxToUniv(const CTransaction& tx, const uint256& hashBlock, UniValue& entry);
#endif // BITCOIN_CORE_IO_H
| [
"mdfkbtc@gmail.com"
] | mdfkbtc@gmail.com |
46758c96b21b47a6062d15003c7e8303e16586f6 | 060591cee2eca06aaef4e05dd8476d3692160d54 | /src/xrEngine/xrGame/object_factory.h | 776b1960d9dd36c97e89dcffa5f30ef156fb7442 | [
"LicenseRef-scancode-warranty-disclaimer",
"BSD-2-Clause"
] | permissive | Georgiy-Timoshin/X-Ray | 7c96c494803edbe4c9e03d4e3b8ebb46c02ff35e | 51dc8ddcfdde3167f3a025022d8420a94c5c1c43 | refs/heads/main | 2023-04-29T18:35:06.229863 | 2021-05-14T02:13:00 | 2021-05-14T02:13:00 | 367,538,251 | 0 | 2 | NOASSERTION | 2021-05-15T04:48:44 | 2021-05-15T04:23:35 | null | UTF-8 | C++ | false | false | 3,440 | h | ////////////////////////////////////////////////////////////////////////////
// Module : object_factory.h
// Created : 27.05.2004
// Modified : 27.05.2004
// Author : Dmitriy Iassenev
// Description : Object factory
////////////////////////////////////////////////////////////////////////////
#ifndef object_factoryH
#define object_factoryH
#pragma once
#include "script_export_space.h"
#include "object_item_abstract.h"
#include "xrServer_Objects.h"
class CObjectFactory {
public:
#ifndef NO_XR_GAME
typedef ObjectFactory::CLIENT_BASE_CLASS CLIENT_BASE_CLASS;
#endif
typedef ObjectFactory::SERVER_BASE_CLASS SERVER_BASE_CLASS;
#ifndef NO_XR_GAME
typedef ObjectFactory::CLIENT_SCRIPT_BASE_CLASS CLIENT_SCRIPT_BASE_CLASS;
#endif
typedef ObjectFactory::SERVER_SCRIPT_BASE_CLASS SERVER_SCRIPT_BASE_CLASS;
protected:
struct CObjectItemPredicate {
IC bool operator() (const CObjectItemAbstract *item1, const CObjectItemAbstract *item2) const;
IC bool operator() (const CObjectItemAbstract *item, const CLASS_ID &clsid) const;
};
struct CObjectItemPredicateCLSID {
CLASS_ID m_clsid;
IC CObjectItemPredicateCLSID (const CLASS_ID &clsid);
IC bool operator() (const CObjectItemAbstract *item) const;
};
struct CObjectItemPredicateScript {
shared_str m_script_clsid_name;
IC CObjectItemPredicateScript (const shared_str &script_clsid_name);
IC bool operator() (const CObjectItemAbstract *item) const;
};
public:
typedef xr_vector<CObjectItemAbstract*> OBJECT_ITEM_STORAGE;
typedef OBJECT_ITEM_STORAGE::iterator iterator;
typedef OBJECT_ITEM_STORAGE::const_iterator const_iterator;
protected:
mutable OBJECT_ITEM_STORAGE m_clsids;
mutable bool m_actual;
protected:
void register_classes ();
IC void add (CObjectItemAbstract *item);
IC const OBJECT_ITEM_STORAGE &clsids () const;
IC void actualize () const;
template <typename _unknown_type>
IC void add (const CLASS_ID &clsid, LPCSTR script_clsid);
#ifndef NO_XR_GAME
template <typename _client_type, typename _server_type>
IC void add (const CLASS_ID &clsid, LPCSTR script_clsid);
IC const CObjectItemAbstract &item (const CLASS_ID &clsid) const;
#else
IC const CObjectItemAbstract *item (const CLASS_ID &clsid, bool no_assert) const;
#endif
public:
CObjectFactory ();
virtual ~CObjectFactory ();
void init ();
#ifndef NO_XR_GAME
IC CLIENT_BASE_CLASS *client_object (const CLASS_ID &clsid) const;
IC SERVER_BASE_CLASS *server_object (const CLASS_ID &clsid, LPCSTR section) const;
#else
IC SERVER_BASE_CLASS *server_object (const CLASS_ID &clsid, LPCSTR section) const;
#endif
IC int script_clsid (const CLASS_ID &clsid) const;
void register_script () const;
void register_script_class (LPCSTR client_class, LPCSTR server_class, LPCSTR clsid, LPCSTR script_clsid);
void register_script_class (LPCSTR unknown_class, LPCSTR clsid, LPCSTR script_clsid);
void register_script_classes ();
DECLARE_SCRIPT_REGISTER_FUNCTION
};
add_to_type_list(CObjectFactory)
#undef script_type_list
#define script_type_list save_type_list(CObjectFactory)
extern CObjectFactory *g_object_factory;
IC const CObjectFactory &object_factory();
#include "object_factory_inline.h"
#endif | [
"53347567+xrModder@users.noreply.github.com"
] | 53347567+xrModder@users.noreply.github.com |
c50fd6038efadeeb67d788d9318fa9908d7a3813 | 0c09aab4a5258bc0643a71250b5b26bfe092647f | /my_classes/notUsing/MY_NS/MyClassVertex.h | a51af3968a18221c6db68ff1971414bba0a9392e | [] | no_license | apany15/Pull-Pusher | 3c19ba25a4819c070a3b3a474ec12421ba5dc92b | 92b4adec4b271d59b1aea59e3ce66a9368823967 | refs/heads/master | 2021-01-21T17:46:19.110611 | 2013-08-01T13:15:49 | 2013-08-01T13:15:49 | null | 0 | 0 | null | null | null | null | WINDOWS-1251 | C++ | false | false | 1,561 | h | #pragma once
#include"MyClassNormal.h"
#include "MyClassMessageSender.h"
namespace MY_NS_MODEL
{
class MyClassVertex: public MyClassMessageSender
{
protected:
MyClassNormal normal;
float coord[3];
float texCoord[3];
public:
unsigned int numGroupInGroup;
MyClassVertex(const float * _coord=0, const MyClassNormal *_MyClassNormalObj=0, const float * _texCoord=0);
MyClassVertex(float _coordX, float _coordY, float _coordZ);
//конструктор копирования
MyClassVertex(const MyClassVertex & _MyClassVertexObj);
//оператор присвоения
const MyClassVertex & operator =(const MyClassVertex & _MyClassVertexObj);
void SetNormal(const MyClassNormal * _MyClassNormalObj);
void SetNormal(const MyClassNormal & _MyClassNormalObj);
void SetNormal(float _coordX, float _coordY, float _coordZ);
const MyClassNormal * GetNormal() const;
MyClassNormal * GetNormal();
void SetCoord(const float * _coord);
void SetCoord(float _coordX, float _coordY, float _coordZ);
const float * GetCoord() const;
void SetTexCoord(const float * _texCoord);
void SetTexCoord(float _texCoordX, float _texCoordY, float _texCoordZ);
const float * GetTexCoord() const;
//operator float *();
//operator const float *() const;
bool EquialCoord(const MyClassVertex & _MyClassVertexObj)const;
bool EquialCoordNormal(const MyClassVertex & _MyClassVertexObj)const;
bool EquialCoordNormalTexCoord(const MyClassVertex & _MyClassVertexObj)const;
~MyClassVertex();
};
}
| [
"a.panasovskiy@luckyware-pro.com"
] | a.panasovskiy@luckyware-pro.com |
ade76d339e9efcdc04e55ffe85ecc77cdfd6e724 | 130311cf53bbdf099c79976fe7efe51adfd5f4be | /src/sw9-source/on_the_fly_benchmark.cpp | 5062cb33d5ed5998dbc277cdf86df812972aaf27 | [
"MIT"
] | permissive | looopTools/sw9-source | 9db0f09bbd1adfef72d551ae96fe4e96b4e9a0e7 | a2910ced89d26253c2df4e05d907a69823ed5e45 | refs/heads/master | 2021-01-23T05:04:31.465334 | 2018-01-18T18:29:46 | 2018-01-18T18:29:46 | 102,457,054 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,516 | cpp | // On the fly benchmark
#include <chrono>
#include <algorithm>
#include <cassert>
#include <cstdint>
#include <ctime>
#include <iostream>
#include <vector>
#include <storage/storage.hpp>
#include <fifi/fifi_utils.hpp>
#include <kodo_rlnc/on_the_fly_codes.hpp>
#include <kodo_core/set_trace_stdout.hpp>
int main()
{
srand(static_cast<uint32_t>(time(0)));
using field_type = fifi::binary8;
const uint32_t generation_size = 42;
const uint32_t symbol_size = 160;
using rlnc_encoder = kodo_rlnc::on_the_fly_encoder<field_type>;
rlnc_encoder::factory factory(generation_size, symbol_size);
auto encoder = factory.build();
std::vector<std::vector<uint8_t>> payloads(2 * generation_size,
std::vector<uint8_t>(
encoder->payload_size()));
std::vector<uint8_t> data(encoder->block_size());
std::cout << encoder->block_size() << std::endl; // 6720
std::generate(data.begin(), data.end(), rand);
encoder->set_const_symbols(storage::storage(data));
auto start = std::chrono::high_resolution_clock::now();
for (auto& payload : payloads)
{
encoder->write_payload(payload.data());
}
auto end = std::chrono::high_resolution_clock::now();
auto diff =
std::chrono::duration_cast<std::chrono::nanoseconds>(end - start);
std::cout << "Differens " << diff.count() << std::endl;
std::cout << "HELLO" << std::endl;
return 0;
}
| [
"lnc13.lars@gmail.com"
] | lnc13.lars@gmail.com |
1a6904a3d53427a71014494ce24045864f61911c | 078d085396dccf697c4ebb81afe33c101ca42b6b | /kdx/kdx/src/dxbase.cpp | e841c4b0ec820279338f4650987e20845423f962 | [] | no_license | jhk2/dxsandbox | 9da7e89c02f577d142f60a93e2ec3542d47744d6 | 67b2505ff618771e19c5474ee668120c4fd5953f | refs/heads/master | 2021-01-20T10:32:53.598984 | 2014-07-30T01:25:20 | 2014-07-30T01:25:20 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 13,493 | cpp | #include "dxbase.h"
#include <tchar.h>
DxBase::DxBase(HINSTANCE hInstance, unsigned int width, unsigned int height) : hInstance_(hInstance), width_(width), height_(height)
{
hInstance_ = hInstance;
holdcursor_ = false;
frontKeyBuffer_ = 0;
// clear key and mouse buffers
memset(keys_[0], 0, sizeof(bool)*256);
memset(keys_[1], 0, sizeof(bool)*256);
memset(mouse_buttons_[0], 0, sizeof(bool)*3);
memset(mouse_buttons_[1], 0, sizeof(bool)*3);
addMessageHandler(WM_CLOSE, OnClose);
addMessageHandler(WM_DESTROY, OnDestroy);
addMessageHandler(WM_SIZE, OnResize);
addMessageHandler(WM_KEYDOWN, OnKeyDown);
addMessageHandler(WM_KEYUP, OnKeyUp);
addMessageHandler(WM_LBUTTONDOWN, OnMouseDownL);
addMessageHandler(WM_LBUTTONUP, OnMouseUpL);
addMessageHandler(WM_MBUTTONDOWN, OnMouseDownM);
addMessageHandler(WM_MBUTTONUP, OnMouseUpM);
addMessageHandler(WM_RBUTTONDOWN, OnMouseDownR);
addMessageHandler(WM_RBUTTONUP, OnMouseUpR);
init();
initD3D();
}
DxBase::~DxBase()
{
finishD3D();
}
/*static*/ void DxBase::ThrowError(const LPCWSTR &message)
{
MessageBox(NULL, message, L"Error", MB_ICONEXCLAMATION | MB_OK);
}
void DxBase::update()
{
handleMessages();
updatedt();
// calculate mouse motion
POINT pt;
GetCursorPos(&pt);
ScreenToClient(hwnd_, &pt);
mouse_dxdy_.x = pt.x - mouse_pos_.x;
mouse_dxdy_.y = pt.y - mouse_pos_.y;
mouse_pos_.x = pt.x;
mouse_pos_.y = pt.y;
// if hold cursor is on, recenter
if(holdcursor_) {
pt.x = hold_pos_.x;
pt.y = hold_pos_.y;
ClientToScreen(hwnd_, &pt);
SetCursorPos(pt.x, pt.y);
mouse_pos_ = hold_pos_;
}
}
/*static*/ LRESULT CALLBACK DxBase::RouteMessage(HWND hwnd, UINT message, WPARAM wparam, LPARAM lparam)
{
DxBase *wnd = 0;
if(message == WM_NCCREATE) {
// when the window is created, we want to save its unique ID to GWL_USERDATA so we can retreive this particular window
// in a static context later when more messages come in
// get the individual window instance from Windows
wnd = reinterpret_cast<DxBase *>(((LPCREATESTRUCT) lparam)->lpCreateParams);
SetWindowLong(hwnd, GWL_USERDATA, reinterpret_cast<long>(wnd));
// save the hwnd
printf("got nccreate, set hwnd to %x\n", hwnd);
wnd->setHwnd(hwnd);
} else {
// get the individual window from GWL_USERDATA
wnd = reinterpret_cast<DxBase *>(GetWindowLong(hwnd, GWL_USERDATA));
}
if(wnd) {
DxBase::MessageIterator it;
// get the message handler from our window's message map
bool found = wnd->getMessageHandler(message, it);
if(found) {
// call the function that the message map points to
return (it->second)((*wnd), hwnd, wparam, lparam);
}
}
// otherwise return the default window proc
return DefWindowProc(hwnd, message, wparam, lparam);
}
void DxBase::handleMessages()
{
MSG msg;
if (!hwnd_) ThrowError(L"handle messages called on null hwnd");
while(PeekMessage(&msg, NULL, 0, 0, PM_NOREMOVE)) {
int temp = GetMessage(&msg, NULL, 0, 0);
if(temp > 0) {
TranslateMessage(&msg);
DispatchMessage(&msg);
} else {
//throwError("getmessage returned nonpositive"); not an error if it's a quit
running_ = false;
exitCode_ = (long) msg.lParam;
break;
}
}
}
DxBase::MessageHandler DxBase::addMessageHandler(long message, MessageHandler handler)
{
// insert the message handler into the map and return the old one that was replaced, if it exists
MessageHandler m = NULL;
MessageIterator it = messagemap_.find(message);
if(it != messagemap_.end())
m = it->second;
// insert doesn't replace if element already exists
//messagemap_.insert(std::pair<long, MessageHandler>(message, handler));
messagemap_[message] = handler;
return m;
}
bool DxBase::getMessageHandler(long message, DxBase::MessageIterator &it)
{
// look in the message map for the handler
DxBase::MessageIterator findit = messagemap_.find(message);
if(findit == messagemap_.end())
return false;
it = findit;
return true;
}
const LPCTSTR g_windowClass = L"DxBaseWindowClass";
bool DxBase::init()
{
WNDCLASSEX wc;
HWND hwnd;
ZeroMemory(&wc, sizeof(WNDCLASSEX));
// register window class with default settings
wc.cbSize = sizeof(WNDCLASSEX);
wc.style = CS_HREDRAW | CS_VREDRAW;
wc.lpfnWndProc = RouteMessage;
wc.hInstance = hInstance_;
wc.hCursor = LoadCursor(NULL, IDC_ARROW);
wc.hIcon = LoadIcon(NULL, IDI_WINLOGO);
wc.hbrBackground = (HBRUSH)COLOR_WINDOW; // tutorial has (HBRUSH)GetStockObject(BLACK_BRUSH);
wc.lpszClassName = g_windowClass;
if(!RegisterClassEx(&wc)) {
ThrowError(L"Window Registration Failed");
return false;
}
// adjust window size to account for bars and borders
RECT windowRect = { 0, 0, width_, height_ };
AdjustWindowRect(&windowRect, WS_OVERLAPPEDWINDOW, FALSE);
// create window
hwnd = CreateWindowEx(
WS_EX_APPWINDOW | WS_EX_WINDOWEDGE,
g_windowClass,
L"Title Window",
WS_OVERLAPPEDWINDOW,
CW_USEDEFAULT, CW_USEDEFAULT,
windowRect.right - windowRect.left, windowRect.bottom - windowRect.top,
NULL, NULL, hInstance_, this);
//
hwnd_ = hwnd;
hdc_ = GetDC(hwnd);
running_ = true;
return true;
}
void DxBase::showWindow(int nCmdShow)
{
ShowWindow(hwnd_, nCmdShow);
SetForegroundWindow(hwnd_);
SetFocus(hwnd_);
UpdateWindow(hwnd_);
// set initial mouse position
POINT p;
if (GetCursorPos(&p)) {
if (ScreenToClient(hwnd_, &p)) {
}
}
}
long double DxBase::currentMillis()
{
LARGE_INTEGER freq; // ticks of performance counter per second (2862568 on my machine)
BOOL use_qpc = QueryPerformanceFrequency(&freq);
if (use_qpc) {
LARGE_INTEGER ticks;
QueryPerformanceCounter(&ticks);
current_ticks_ = ticks.QuadPart;
return (1000.0L * current_ticks_) / freq.QuadPart;
} else {
return static_cast<long double>(GetTickCount());
}
}
void DxBase::updatedt()
{
LARGE_INTEGER freq; // ticks of performance counter per second (2862568 on my machine)
BOOL use_qpc = QueryPerformanceFrequency(&freq);
if (use_qpc) {
LARGE_INTEGER ticks;
QueryPerformanceCounter(&ticks);
unsigned long long newticks = ticks.QuadPart;
unsigned long long dticks = newticks - current_ticks_;
current_ticks_ = newticks;
dt_ = (1000.0L * dticks) / freq.QuadPart; // ticks / (ticks/sec) = seconds * 1000 = milliseconds
current_millis_ = (1000.L * current_ticks_) / freq.QuadPart;
} else {
long double newt = static_cast<long double>(GetTickCount());
dt_ = newt - current_millis_;
current_millis_ = newt;
}
}
void DxBase::resize(unsigned int width, unsigned int height)
{
width_ = width;
height_ = height;
resizeD3D();
}
void DxBase::swapBuffers()
{
swapchain_->Present(0,0);
}
void DxBase::setHwnd(HWND hwnd)
{
hwnd_ = hwnd;
}
void DxBase::close()
{
SendMessage(hwnd_, WM_CLOSE, 0, 0);
}
// IO stuff
bool DxBase::isKeyDown(const unsigned int code)
{
return keys_[frontKeyBuffer_][code];
}
bool DxBase::isKeyPress(const unsigned int code)
{
return keys_[frontKeyBuffer_][code] && !keys_[1-frontKeyBuffer_][code];
}
bool DxBase::isKeyRelease(const unsigned int code)
{
return !keys_[frontKeyBuffer_][code] && keys_[1-frontKeyBuffer_][code];
}
bool DxBase::isMouseDown(const MOUSE_BUTTON code)
{
return mouse_buttons_[frontKeyBuffer_][code];
}
bool DxBase::isMousePress(const MOUSE_BUTTON code)
{
return mouse_buttons_[frontKeyBuffer_][code] && !mouse_buttons_[1-frontKeyBuffer_][code];
}
bool DxBase::isMouseRelease(const MOUSE_BUTTON code)
{
return !mouse_buttons_[frontKeyBuffer_][code] && mouse_buttons_[1-frontKeyBuffer_][code];
}
void DxBase::swapIODeviceBuffers()
{
frontKeyBuffer_ = 1 - frontKeyBuffer_;
memcpy(&keys_[frontKeyBuffer_][0], &keys_[1-frontKeyBuffer_][0], sizeof(keys_[0]));
memcpy(&mouse_buttons_[frontKeyBuffer_][0], &mouse_buttons_[1-frontKeyBuffer_][0], sizeof(mouse_buttons_[0]));
}
int2 DxBase::getMousePixelPos()
{
return mouse_pos_;
}
int2 DxBase::getMousePixel_dxdy()
{
return mouse_dxdy_;
}
fl2 DxBase::getMouseNormPos()
{
return fl2(((float) mouse_pos_.x) / width_, ((float) mouse_pos_.y) / height_);
}
fl2 DxBase::getMouseNorm_dxdy()
{
return fl2(((float) mouse_dxdy_.x) / width_, ((float) mouse_dxdy_.y) / height_);
}
void DxBase::showCursor()
{
ShowCursor(true);
}
void DxBase::hideCursor()
{
ShowCursor(false);
}
void DxBase::holdCursor(const bool setting)
{
holdcursor_ = setting;
if(holdcursor_) {
hold_pos_ = mouse_pos_;
}
}
float DxBase::getdtBetweenUpdates()
{
return static_cast<float>(dt_);
}
// default message handler for closing
long DxBase::OnClose(DxBase &wnd, HWND hwnd, WPARAM wparam, LPARAM lparam)
{
DestroyWindow(hwnd);
return 0;
}
// default message handler for destroy
long DxBase::OnDestroy(DxBase &wnd, HWND hwnd, WPARAM wparam, LPARAM lparam)
{
PostQuitMessage(0);
return 0;
}
// default message handler for resize (will probably be replaced by app)
long DxBase::OnResize(DxBase &wnd, HWND hwnd, WPARAM wparam, LPARAM lparam)
{
wnd.resize(LOWORD(lparam), HIWORD(lparam));
return 0;
}
long DxBase::OnKeyDown(DxBase &wnd, HWND hwnd, WPARAM wparam, LPARAM lparam)
{
wnd.keys_[wnd.frontKeyBuffer_][wparam] = true;
return true;
}
long DxBase::OnKeyUp(DxBase &wnd, HWND hwnd, WPARAM wparam, LPARAM lparam)
{
wnd.keys_[wnd.frontKeyBuffer_][wparam] = false;
return false;
}
long DxBase::OnMouseDownL(DxBase &wnd, HWND hwnd, WPARAM wparam, LPARAM lparam)
{
wnd.mouse_buttons_[wnd.frontKeyBuffer_][0] = true;
return true;
}
long DxBase::OnMouseUpL(DxBase &wnd, HWND hwnd, WPARAM wparam, LPARAM lparam)
{
wnd.mouse_buttons_[wnd.frontKeyBuffer_][0] = false;
return true;
}
long DxBase::OnMouseDownM(DxBase &wnd, HWND hwnd, WPARAM wparam, LPARAM lparam)
{
wnd.mouse_buttons_[wnd.frontKeyBuffer_][1] = true;
return true;
}
long DxBase::OnMouseUpM(DxBase &wnd, HWND hwnd, WPARAM wparam, LPARAM lparam)
{
wnd.mouse_buttons_[wnd.frontKeyBuffer_][1] = false;
return true;
}
long DxBase::OnMouseDownR(DxBase &wnd, HWND hwnd, WPARAM wparam, LPARAM lparam)
{
wnd.mouse_buttons_[wnd.frontKeyBuffer_][2] = true;
return true;
}
long DxBase::OnMouseUpR(DxBase &wnd, HWND hwnd, WPARAM wparam, LPARAM lparam)
{
wnd.mouse_buttons_[wnd.frontKeyBuffer_][2] = false;
return true;
}
void DxBase::useDefaultFramebuffer()
{
devicecontext_->OMSetRenderTargets(1, &backbuffer_, depthbuffer_);
}
void DxBase::createRenderTargets()
{
// assuming that swap chain is properly initialized, create the color and depth render targets
// get the address of the texture
swapchain_->GetBuffer(0, __uuidof(ID3D11Texture2D), (LPVOID *) &backbuffertex_);
// use the address to make the render target object
device_->CreateRenderTargetView(backbuffertex_, NULL, &backbuffer_);
// create depth target
D3D11_TEXTURE2D_DESC depthDesc;
ZeroMemory(&depthDesc, sizeof(D3D11_TEXTURE2D_DESC));
depthDesc.Width = width_;
depthDesc.Height = height_;
depthDesc.MipLevels = 1;
depthDesc.ArraySize = 1;
depthDesc.Format = DXGI_FORMAT_D16_UNORM;
depthDesc.SampleDesc.Count = 1;
depthDesc.SampleDesc.Quality = 0;
depthDesc.Usage = D3D11_USAGE_DEFAULT;
depthDesc.BindFlags = D3D11_BIND_DEPTH_STENCIL;
depthDesc.CPUAccessFlags = 0;
depthDesc.MiscFlags = 0;
device_->CreateTexture2D(&depthDesc, NULL, &depthbuffertex_);
// WORKNOTE: look into depth/stencil state for more complex usage
device_->CreateDepthStencilView(depthbuffertex_, NULL, &depthbuffer_);
// for now, just permanently bind this default depth buffer to output merger
// set this render target as the back buffer
useDefaultFramebuffer();
}
void DxBase::initD3D()
{
DXGI_SWAP_CHAIN_DESC swapChainDesc;
ZeroMemory(&swapChainDesc, sizeof(DXGI_SWAP_CHAIN_DESC));
swapChainDesc.BufferCount = 1;
swapChainDesc.BufferDesc.Format = DXGI_FORMAT_R8G8B8A8_UNORM;
swapChainDesc.BufferUsage = DXGI_USAGE_RENDER_TARGET_OUTPUT;
swapChainDesc.OutputWindow = hwnd_;
swapChainDesc.SampleDesc.Count = 1;
swapChainDesc.Windowed = TRUE;
// create the device, context, and swap chain with this struct data
HRESULT result = D3D11CreateDeviceAndSwapChain(NULL,
D3D_DRIVER_TYPE_HARDWARE,
NULL, NULL, // this can be D3D11_CREATE_DEVICE_DEBUG, but debugging needs to be installed properly
NULL, NULL,
D3D11_SDK_VERSION,
&swapChainDesc,
&swapchain_,
&device_,
NULL,
&devicecontext_);
createRenderTargets();
}
void DxBase::resizeD3D()
{
// release all existing buffers in the swap chain + the depth buffer
// TODO: resizing is messing up the depth buffer
devicecontext_->OMSetRenderTargets(0, 0, 0);
backbuffer_->Release();
backbuffertex_->Release();
depthbuffer_->Release();
depthbuffertex_->Release();
// resize the buffers
swapchain_->ResizeBuffers(0, width_, height_, DXGI_FORMAT_UNKNOWN, 0); // just resizes and keeps all else the same
// get the handles to the buffers again
createRenderTargets();
}
void DxBase::finishD3D()
{
swapchain_->Release();
backbuffer_->Release();
backbuffertex_->Release();
depthbuffer_->Release();
depthbuffertex_->Release();
device_->Release();
devicecontext_->Release();
} | [
"krazyklutzykorean@gmail.com"
] | krazyklutzykorean@gmail.com |
f3885546f8447a4d2b9992ae841f8a8dd079ac05 | 44884709500205c213b20afee91775656b1b56cf | /src/SharpLang.Runtime/coreclr/pal/src/thread/process.cpp | 6a2ee9ad8ceea4855916764552d56c0f77dd5b1c | [
"BSD-2-Clause",
"BSD-2-Clause-Views"
] | permissive | xen2/SharpLang | 37299f94b71278766a0261b62021a85951cb5543 | 07902915970ace70c4ee0430a672d25187a75d3a | refs/heads/coreclr | 2022-09-01T12:11:24.459301 | 2015-11-20T00:34:57 | 2015-11-20T00:34:57 | 20,264,525 | 294 | 47 | null | 2015-04-26T05:54:46 | 2014-05-28T16:29:11 | C# | UTF-8 | C++ | false | false | 97,880 | cpp | //
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
//
/*++
Module Name:
process.cpp
Abstract:
Implementation of process object and functions related to processes.
--*/
#include "pal/procobj.hpp"
#include "pal/thread.hpp"
#include "pal/file.hpp"
#include "pal/handlemgr.hpp"
#include "procprivate.hpp"
#include "pal/palinternal.h"
#include "pal/process.h"
#include "pal/init.h"
#include "pal/critsect.h"
#include "pal/dbgmsg.h"
#include "pal/utils.h"
#include "pal/misc.h"
#include <errno.h>
#if HAVE_POLL
#include <poll.h>
#else
#include "pal/fakepoll.h"
#endif // HAVE_POLL
#include <sys/types.h>
#include <signal.h>
#include <sys/wait.h>
#include <sys/time.h>
#include <sys/resource.h>
using namespace CorUnix;
SET_DEFAULT_DEBUG_CHANNEL(THREAD);
void
ProcessCleanupRoutine(
CPalThread *pThread,
IPalObject *pObjectToCleanup,
bool fShutdown,
bool fCleanupSharedState
);
PAL_ERROR
ProcessInitializationRoutine(
CPalThread *pThread,
CObjectType *pObjectType,
void *pImmutableData,
void *pSharedData,
void *pProcessLocalData
);
CObjectType CorUnix::otProcess(
otiProcess,
ProcessCleanupRoutine,
ProcessInitializationRoutine,
0,
sizeof(CProcProcessLocalData),
sizeof(CProcSharedData),
PROCESS_ALL_ACCESS,
CObjectType::SecuritySupported,
CObjectType::SecurityInfoNotPersisted,
CObjectType::UnnamedObject,
CObjectType::CrossProcessDuplicationAllowed,
CObjectType::WaitableObject,
CObjectType::SingleTransitionObject,
CObjectType::ThreadReleaseHasNoSideEffects,
CObjectType::NoOwner
);
CAllowedObjectTypes aotProcess(otiProcess);
//
// The representative IPalObject for this process
//
IPalObject* CorUnix::g_pobjProcess;
//
// Critical section that protects process data (e.g., the
// list of active threads)/
//
CRITICAL_SECTION g_csProcess;
//
// List and count of active threads
//
CPalThread* CorUnix::pGThreadList;
DWORD g_dwThreadCount;
//
// The command line for the process
//
LPWSTR g_lpwstrCmdLine;
/* Thread ID of thread that has started the ExitProcess process */
Volatile<LONG> terminator = 0;
// Process ID of this process.
DWORD gPID = (DWORD) -1;
LPWSTR pAppDir;
//
// Key used for associating CPalThread's with the underlying pthread
// (through pthread_setspecific)
//
pthread_key_t CorUnix::thObjKey;
#define PROCESS_PELOADER_FILENAME "clix"
static WCHAR W16_WHITESPACE[]= {0x0020, 0x0009, 0x000D, 0};
static WCHAR W16_WHITESPACE_DQUOTE[]= {0x0020, 0x0009, 0x000D, '"', 0};
enum FILETYPE
{
FILE_ERROR,/*ERROR*/
FILE_PE, /*PE/COFF file*/
FILE_UNIX, /*Unix Executable*/
FILE_DIR /*Directory*/
};
PAL_ERROR
PROCGetProcessStatus(
CPalThread *pThread,
HANDLE hProcess,
PROCESS_STATE *pps,
DWORD *pdwExitCode
);
static BOOL getFileName(LPCWSTR lpApplicationName, LPWSTR lpCommandLine,
char *lpFileName);
static char ** buildArgv(LPCWSTR lpCommandLine, LPSTR lpAppPath,
UINT *pnArg, BOOL prependLoader);
static BOOL getPath(LPCSTR lpFileName, UINT iLen, LPSTR lpPathFileName);
static int checkFileType(char *lpFileName);
static BOOL PROCEndProcess(HANDLE hProcess, UINT uExitCode,
BOOL bTerminateUnconditionally);
/*++
Function:
GetCurrentProcessId
See MSDN doc.
--*/
DWORD
PALAPI
GetCurrentProcessId(
VOID)
{
PERF_ENTRY(GetCurrentProcessId);
ENTRY("GetCurrentProcessId()\n" );
LOGEXIT("GetCurrentProcessId returns DWORD %#x\n", gPID);
PERF_EXIT(GetCurrentProcessId);
return gPID;
}
/*++
Function:
GetCurrentProcess
See MSDN doc.
--*/
HANDLE
PALAPI
GetCurrentProcess(
VOID)
{
PERF_ENTRY(GetCurrentProcess);
ENTRY("GetCurrentProcess()\n" );
LOGEXIT("GetCurrentProcess returns HANDLE %p\n", hPseudoCurrentProcess);
PERF_EXIT(GetCurrentProcess);
/* return a pseudo handle */
return hPseudoCurrentProcess;
}
/*++
Function:
CreateProcessA
Note:
Only Standard handles need to be inherited.
Security attributes parameters are not used.
See MSDN doc.
--*/
BOOL
PALAPI
CreateProcessA(
IN LPCSTR lpApplicationName,
IN LPSTR lpCommandLine,
IN LPSECURITY_ATTRIBUTES lpProcessAttributes,
IN LPSECURITY_ATTRIBUTES lpThreadAttributes,
IN BOOL bInheritHandles,
IN DWORD dwCreationFlags,
IN LPVOID lpEnvironment,
IN LPCSTR lpCurrentDirectory,
IN LPSTARTUPINFOA lpStartupInfo,
OUT LPPROCESS_INFORMATION lpProcessInformation)
{
PAL_ERROR palError = NO_ERROR;
CPalThread *pThread;
STARTUPINFOW StartupInfoW;
LPWSTR CommandLineW = NULL;
LPWSTR ApplicationNameW = NULL;
LPWSTR CurrentDirectoryW = NULL;
int n;
PERF_ENTRY(CreateProcessA);
ENTRY("CreateProcessA(lpAppName=%p (%s), lpCmdLine=%p (%s), lpProcessAttr=%p, "
"lpThreadAttr=%p, bInherit=%d, dwFlags=%#x, lpEnv=%p, "
"lpCurrentDir=%p (%s), lpStartupInfo=%p, lpProcessInfo=%p)\n",
lpApplicationName?lpApplicationName:"NULL",
lpApplicationName?lpApplicationName:"NULL",
lpCommandLine?lpCommandLine:"NULL",
lpCommandLine?lpCommandLine:"NULL",
lpProcessAttributes, lpThreadAttributes, bInheritHandles,
dwCreationFlags, lpEnvironment,
lpCurrentDirectory?lpCurrentDirectory:"NULL",
lpCurrentDirectory?lpCurrentDirectory:"NULL",
lpStartupInfo, lpProcessInformation);
pThread = InternalGetCurrentThread();
if(lpStartupInfo == NULL)
{
ASSERT("lpStartupInfo is NULL!\n");
palError = ERROR_INVALID_PARAMETER;
goto done;
}
/* convert parameters to Unicode */
if(lpApplicationName)
{
n = MultiByteToWideChar(CP_ACP, 0, lpApplicationName, -1, NULL, 0);
if(0 == n)
{
ASSERT("MultiByteToWideChar failed!\n");
palError = ERROR_INTERNAL_ERROR;
goto done;
}
ApplicationNameW = (LPWSTR)InternalMalloc(pThread, sizeof(WCHAR)*n);
if(!ApplicationNameW)
{
ERROR("malloc() failed!\n");
palError = ERROR_NOT_ENOUGH_MEMORY;
goto done;
}
MultiByteToWideChar(CP_ACP, 0, lpApplicationName, -1, ApplicationNameW,
n);
}
if(lpCommandLine)
{
n = MultiByteToWideChar(CP_ACP, 0, lpCommandLine, -1, NULL, 0);
if(0 == n)
{
ASSERT("MultiByteToWideChar failed!\n");
palError = ERROR_INTERNAL_ERROR;
goto done;
}
CommandLineW = (LPWSTR)InternalMalloc(pThread, sizeof(WCHAR)*n);
if(!CommandLineW)
{
ERROR("malloc() failed!\n");
palError = ERROR_NOT_ENOUGH_MEMORY;
goto done;
}
MultiByteToWideChar(CP_ACP, 0, lpCommandLine, -1, CommandLineW, n);
}
if(lpCurrentDirectory)
{
n = MultiByteToWideChar(CP_ACP, 0, lpCurrentDirectory, -1, NULL, 0);
if(0 == n)
{
ASSERT("MultiByteToWideChar failed!\n");
palError = ERROR_INTERNAL_ERROR;
goto done;
}
CurrentDirectoryW = (LPWSTR)InternalMalloc(pThread, sizeof(WCHAR)*n);
if(!CurrentDirectoryW)
{
ERROR("malloc() failed!\n");
palError = ERROR_NOT_ENOUGH_MEMORY;
goto done;
}
MultiByteToWideChar(CP_ACP, 0, lpCurrentDirectory, -1,
CurrentDirectoryW, n);
}
// lpEnvironment should remain ansi on the call to CreateProcessW
StartupInfoW.cb = sizeof StartupInfoW;
StartupInfoW.dwFlags = lpStartupInfo->dwFlags;
StartupInfoW.hStdError = lpStartupInfo->hStdError;
StartupInfoW.hStdInput = lpStartupInfo->hStdInput;
StartupInfoW.hStdOutput = lpStartupInfo->hStdOutput;
/* all other members are PAL_Undefined, we can ignore them */
palError = InternalCreateProcess(
pThread,
ApplicationNameW,
CommandLineW,
lpProcessAttributes,
lpThreadAttributes,
bInheritHandles,
dwCreationFlags,
lpEnvironment,
CurrentDirectoryW,
&StartupInfoW,
lpProcessInformation
);
done:
InternalFree(pThread, ApplicationNameW);
InternalFree(pThread, CommandLineW);
InternalFree(pThread, CurrentDirectoryW);
if (NO_ERROR != palError)
{
pThread->SetLastError(palError);
}
LOGEXIT("CreateProcessA returns BOOL %d\n", NO_ERROR == palError);
PERF_EXIT(CreateProcessA);
return NO_ERROR == palError;
}
/*++
Function:
CreateProcessW
Note:
Only Standard handles need to be inherited.
Security attributes parameters are not used.
See MSDN doc.
--*/
BOOL
PALAPI
CreateProcessW(
IN LPCWSTR lpApplicationName,
IN LPWSTR lpCommandLine,
IN LPSECURITY_ATTRIBUTES lpProcessAttributes,
IN LPSECURITY_ATTRIBUTES lpThreadAttributes,
IN BOOL bInheritHandles,
IN DWORD dwCreationFlags,
IN LPVOID lpEnvironment,
IN LPCWSTR lpCurrentDirectory,
IN LPSTARTUPINFOW lpStartupInfo,
OUT LPPROCESS_INFORMATION lpProcessInformation)
{
PAL_ERROR palError = NO_ERROR;
CPalThread *pThread;
PERF_ENTRY(CreateProcessW);
ENTRY("CreateProcessW(lpAppName=%p (%S), lpCmdLine=%p (%S), lpProcessAttr=%p,"
"lpThreadAttr=%p, bInherit=%d, dwFlags=%#x, lpEnv=%p,"
"lpCurrentDir=%p (%S), lpStartupInfo=%p, lpProcessInfo=%p)\n",
lpApplicationName?lpApplicationName:W16_NULLSTRING,
lpApplicationName?lpApplicationName:W16_NULLSTRING,
lpCommandLine?lpCommandLine:W16_NULLSTRING,
lpCommandLine?lpCommandLine:W16_NULLSTRING,lpProcessAttributes,
lpThreadAttributes, bInheritHandles, dwCreationFlags,lpEnvironment,
lpCurrentDirectory?lpCurrentDirectory:W16_NULLSTRING,
lpCurrentDirectory?lpCurrentDirectory:W16_NULLSTRING,
lpStartupInfo, lpProcessInformation);
pThread = InternalGetCurrentThread();
palError = InternalCreateProcess(
pThread,
lpApplicationName,
lpCommandLine,
lpProcessAttributes,
lpThreadAttributes,
bInheritHandles,
dwCreationFlags,
lpEnvironment,
lpCurrentDirectory,
lpStartupInfo,
lpProcessInformation
);
if (NO_ERROR != palError)
{
pThread->SetLastError(palError);
}
LOGEXIT("CreateProcessW returns BOOL %d\n", NO_ERROR == palError);
PERF_EXIT(CreateProcessW);
return NO_ERROR == palError;
}
PAL_ERROR
PrepareStandardHandle(
CPalThread *pThread,
HANDLE hFile,
IPalObject **ppobjFile,
int *piFd
)
{
PAL_ERROR palError = NO_ERROR;
IPalObject *pobjFile = NULL;
IDataLock *pDataLock = NULL;
CFileProcessLocalData *pLocalData = NULL;
int iError = 0;
palError = g_pObjectManager->ReferenceObjectByHandle(
pThread,
hFile,
&aotFile,
0,
&pobjFile
);
if (NO_ERROR != palError)
{
ERROR("Bad handle passed through CreateProcess\n");
goto PrepareStandardHandleExit;
}
palError = pobjFile->GetProcessLocalData(
pThread,
ReadLock,
&pDataLock,
reinterpret_cast<void **>(&pLocalData)
);
if (NO_ERROR != palError)
{
ASSERT("Unable to access file data\n");
goto PrepareStandardHandleExit;
}
//
// The passed in file needs to be inheritable
//
if (!pLocalData->inheritable)
{
ERROR("Non-inheritable handle passed through CreateProcess\n");
palError = ERROR_INVALID_HANDLE;
goto PrepareStandardHandleExit;
}
iError = fcntl(pLocalData->unix_fd, F_SETFD, 0);
if (-1 == iError)
{
ERROR("Unable to remove close-on-exec for file (errno %i)\n", errno);
palError = ERROR_INVALID_HANDLE;
goto PrepareStandardHandleExit;
}
*piFd = pLocalData->unix_fd;
pDataLock->ReleaseLock(pThread, FALSE);
pDataLock = NULL;
//
// Transfer pobjFile reference to out parameter
//
*ppobjFile = pobjFile;
pobjFile = NULL;
PrepareStandardHandleExit:
if (NULL != pDataLock)
{
pDataLock->ReleaseLock(pThread, FALSE);
}
if (NULL != pobjFile)
{
pobjFile->ReleaseReference(pThread);
}
return palError;
}
PAL_ERROR
CorUnix::InternalCreateProcess(
CPalThread *pThread,
LPCWSTR lpApplicationName,
LPWSTR lpCommandLine,
LPSECURITY_ATTRIBUTES lpProcessAttributes,
LPSECURITY_ATTRIBUTES lpThreadAttributes,
BOOL bInheritHandles,
DWORD dwCreationFlags,
LPVOID lpEnvironment,
LPCWSTR lpCurrentDirectory,
LPSTARTUPINFOW lpStartupInfo,
LPPROCESS_INFORMATION lpProcessInformation
)
{
PAL_ERROR palError = NO_ERROR;
IPalObject *pobjProcess = NULL;
IPalObject *pobjProcessRegistered = NULL;
IDataLock *pLocalDataLock = NULL;
CProcProcessLocalData *pLocalData;
IDataLock *pSharedDataLock = NULL;
CProcSharedData *pSharedData;
CPalThread *pDummyThread = NULL;
HANDLE hDummyThread = NULL;
HANDLE hProcess = NULL;
CObjectAttributes oa(NULL, lpProcessAttributes);
IPalObject *pobjFileIn = NULL;
int iFdIn = -1;
IPalObject *pobjFileOut = NULL;
int iFdOut = -1;
IPalObject *pobjFileErr = NULL;
int iFdErr = -1;
pid_t processId;
char lpFileName[MAX_PATH] ;
char **lppArgv = NULL;
UINT nArg;
int iRet;
char **EnvironmentArray=NULL;
int child_blocking_pipe = -1;
int parent_blocking_pipe = -1;
/* Validate parameters */
/* note : specs indicate lpApplicationName should always
be NULL; however support for it is already implemented. Leaving the code
in, specs can change; but rejecting non-NULL for now to conform to the
spec. */
if( NULL != lpApplicationName )
{
ASSERT("lpApplicationName should be NULL, but is %S instead\n",
lpApplicationName);
palError = ERROR_INVALID_PARAMETER;
goto InternalCreateProcessExit;
}
if (0 != (dwCreationFlags & ~(CREATE_SUSPENDED|CREATE_NEW_CONSOLE)))
{
ASSERT("Unexpected creation flags (%#x)\n", dwCreationFlags);
palError = ERROR_INVALID_PARAMETER;
goto InternalCreateProcessExit;
}
/* Security attributes parameters are ignored */
if (lpProcessAttributes != NULL &&
(lpProcessAttributes->lpSecurityDescriptor != NULL ||
lpProcessAttributes->bInheritHandle != TRUE))
{
ASSERT("lpProcessAttributes is invalid, parameter ignored (%p)\n",
lpProcessAttributes);
palError = ERROR_INVALID_PARAMETER;
goto InternalCreateProcessExit;
}
if (lpThreadAttributes != NULL)
{
ASSERT("lpThreadAttributes parameter must be NULL (%p)\n",
lpThreadAttributes);
palError = ERROR_INVALID_PARAMETER;
goto InternalCreateProcessExit;
}
/* note : Win32 crashes in this case */
if(NULL == lpStartupInfo)
{
ERROR("lpStartupInfo is NULL\n");
palError = ERROR_INVALID_PARAMETER;
goto InternalCreateProcessExit;
}
/* Validate lpStartupInfo.cb field */
if (lpStartupInfo->cb < sizeof(STARTUPINFOW))
{
ASSERT("lpStartupInfo parameter structure size is invalid (%u)\n",
lpStartupInfo->cb);
palError = ERROR_INVALID_PARAMETER;
goto InternalCreateProcessExit;
}
/* lpStartupInfo should be either zero or STARTF_USESTDHANDLES */
if (lpStartupInfo->dwFlags & ~STARTF_USESTDHANDLES)
{
ASSERT("lpStartupInfo parameter invalid flags (%#x)\n",
lpStartupInfo->dwFlags);
palError = ERROR_INVALID_PARAMETER;
goto InternalCreateProcessExit;
}
/* validate given standard handles if we have any */
if (lpStartupInfo->dwFlags & STARTF_USESTDHANDLES)
{
palError = PrepareStandardHandle(
pThread,
lpStartupInfo->hStdInput,
&pobjFileIn,
&iFdIn
);
if (NO_ERROR != palError)
{
goto InternalCreateProcessExit;
}
palError = PrepareStandardHandle(
pThread,
lpStartupInfo->hStdOutput,
&pobjFileOut,
&iFdOut
);
if (NO_ERROR != palError)
{
goto InternalCreateProcessExit;
}
palError = PrepareStandardHandle(
pThread,
lpStartupInfo->hStdError,
&pobjFileErr,
&iFdErr
);
if (NO_ERROR != palError)
{
goto InternalCreateProcessExit;
}
}
if (!getFileName(lpApplicationName, lpCommandLine, lpFileName))
{
ERROR("Can't find executable!\n");
palError = ERROR_FILE_NOT_FOUND;
goto InternalCreateProcessExit;
}
/* check type of file */
iRet = checkFileType(lpFileName);
switch (iRet)
{
case FILE_ERROR: /* file not found, or not an executable */
WARN ("File is not valid (%s)", lpFileName);
palError = ERROR_FILE_NOT_FOUND;
goto InternalCreateProcessExit;
case FILE_PE: /* PE/COFF file */
/*Get the path name where the PAL DLL was loaded from
* I am using MAX_PATH - (strlen(PROCESS_PELOADER_FILENAME)+1)
* as the length as I have to append the file name at the end */
if ( PAL_GetPALDirectoryA( lpFileName,
(MAX_PATH - (strlen(PROCESS_PELOADER_FILENAME)+1))))
{
if ((strcat_s(lpFileName, sizeof(lpFileName), "/") != SAFECRT_SUCCESS) ||
(strcat_s(lpFileName, sizeof(lpFileName), PROCESS_PELOADER_FILENAME) != SAFECRT_SUCCESS))
{
ERROR("strcpy_s/strcat_s failed!\n");
palError = ERROR_INTERNAL_ERROR;
goto InternalCreateProcessExit;
}
}
else
{
ASSERT("PAL_GetPALDirectoryA failed to return the"
"pal installation directory \n");
palError = ERROR_INTERNAL_ERROR;
goto InternalCreateProcessExit;
}
break;
case FILE_UNIX: /* Unix binary file */
break; /* nothing to do */
case FILE_DIR:/*Directory*/
WARN ("File is a Directory (%s)", lpFileName);
palError = ERROR_ACCESS_DENIED;
goto InternalCreateProcessExit;
break;
default: /* not supposed to get here */
ASSERT ("Invalid return type from checkFileType");
palError = ERROR_FILE_NOT_FOUND;
goto InternalCreateProcessExit;
}
/* build Argument list, lppArgv is allocated in buildArgv function and
requires to be freed */
lppArgv = buildArgv(lpCommandLine, lpFileName, &nArg, iRet==1);
/* set the Environment variable */
if (lpEnvironment != NULL)
{
unsigned i;
// Since CREATE_UNICODE_ENVIRONMENT isn't supported we know the string is ansi
unsigned EnvironmentEntries = 0;
// Convert the environment block to array of strings
// Count the number of entries
// Is it a string that contains null terminated string, the end is delimited
// by two null in a row.
for (i = 0; ((char *)lpEnvironment)[i]!='\0'; i++)
{
EnvironmentEntries ++;
for (;((char *)lpEnvironment)[i]!='\0'; i++)
{
}
}
EnvironmentEntries++;
EnvironmentArray = (char **)InternalMalloc(pThread, EnvironmentEntries * sizeof(char *));
EnvironmentEntries = 0;
// Convert the environment block to array of strings
// Count the number of entries
// Is it a string that contains null terminated string, the end is delimited
// by two null in a row.
for (i = 0; ((char *)lpEnvironment)[i]!='\0'; i++)
{
EnvironmentArray[EnvironmentEntries] = &((char *)lpEnvironment)[i];
EnvironmentEntries ++;
for (;((char *)lpEnvironment)[i]!='\0'; i++)
{
}
}
EnvironmentArray[EnvironmentEntries] = NULL;
}
//
// Allocate and register the process object for the new process
//
palError = g_pObjectManager->AllocateObject(
pThread,
&otProcess,
&oa,
&pobjProcess
);
if (NO_ERROR != palError)
{
ERROR("Unable to allocate object for new proccess\n");
goto InternalCreateProcessExit;
}
palError = g_pObjectManager->RegisterObject(
pThread,
pobjProcess,
&aotProcess,
PROCESS_ALL_ACCESS,
&hProcess,
&pobjProcessRegistered
);
//
// pobjProcess is invalidated by the above call, so
// NULL it out here
//
pobjProcess = NULL;
if (NO_ERROR != palError)
{
ERROR("Unable to register new process object\n");
goto InternalCreateProcessExit;
}
//
// Create a new "dummy" thread object
//
palError = InternalCreateDummyThread(
pThread,
lpThreadAttributes,
&pDummyThread,
&hDummyThread
);
if(dwCreationFlags & CREATE_SUSPENDED)
{
int pipe_descs[2];
if(-1 == pipe(pipe_descs))
{
ERROR("pipe() failed! error is %d (%s)\n", errno, strerror(errno));
palError = ERROR_NOT_ENOUGH_MEMORY;
goto InternalCreateProcessExit;
}
/* [0] is read end, [1] is write end */
pDummyThread->suspensionInfo.SetBlockingPipe(pipe_descs[1]);
parent_blocking_pipe = pipe_descs[1];
child_blocking_pipe = pipe_descs[0];
}
//
// Get the data pointers for the new process object
//
palError = pobjProcessRegistered->GetSharedData(
pThread,
WriteLock,
&pSharedDataLock,
reinterpret_cast<void **>(&pSharedData)
);
if (NO_ERROR != palError)
{
ASSERT("Unable to obtain shared data for new process object\n");
goto InternalCreateProcessExit;
}
palError = pobjProcessRegistered->GetProcessLocalData(
pThread,
WriteLock,
&pLocalDataLock,
reinterpret_cast<void **>(&pLocalData)
);
if (NO_ERROR != palError)
{
ASSERT("Unable to obtain local data for new process object\n");
goto InternalCreateProcessExit;
}
/* fork the new process */
#if HAVE_SOLARIS_THREADS
/* On Solaris, we use fork1 so that only the calling thread (LWP) is duplicated */
processId = fork1();
#else
processId = fork();
#endif
if (processId == -1)
{
ASSERT("unable to create a new process with fork()\n");
if(-1 != child_blocking_pipe)
{
close(child_blocking_pipe);
}
palError = ERROR_INTERNAL_ERROR;
goto InternalCreateProcessExit;
}
/* From the time the child process begins running, to when it reaches execve,
the child process is not a real PAL process and does not own any PAL
resources, although it has access to the PAL resources of its parent process.
Thus, while the child process is in this window, it is dangerous for it to affect
its parent's PAL resources. As a consequence, no PAL code should be used
in this window; all code should make unix calls. Note the use of _exit
instead of exit to avoid calling PAL_Terminate and the lack of TRACE's and
ASSERT's. */
if (processId == 0) /* child process */
{
// At this point, the PAL should be considered uninitialized for this child process.
// Don't want to enter the init_critsec here since we're trying to avoid
// calling PAL functions. Furthermore, nothing should be changing
// the init_count in the child process at this point since this is the only
// thread executing.
init_count = 0;
sigset_t sm;
//
// Clear out the signal mask for the new process.
//
sigemptyset(&sm);
iRet = sigprocmask(SIG_SETMASK, &sm, NULL);
if (iRet != 0)
{
_exit(EXIT_FAILURE);
}
if(dwCreationFlags & CREATE_SUSPENDED)
{
BYTE resume_code = 0;
ssize_t read_ret;
/* close the write end of the pipe, the child doesn't need it */
close(parent_blocking_pipe);
read_again:
/* block until ResumeThread writes something to the pipe */
read_ret = read(child_blocking_pipe, &resume_code, sizeof(resume_code));
if(sizeof(resume_code) != read_ret)
{
if (read_ret == -1 && EINTR == errno)
{
goto read_again;
}
else
{
/* note : read might return 0 (and return EAGAIN) if the other
end of the pipe gets closed - for example because the parent
process dies (very) abruptly */
_exit(EXIT_FAILURE);
}
}
if (WAKEUPCODE != resume_code)
{
// resume_code should always equal WAKEUPCODE.
_exit(EXIT_FAILURE);
}
close(child_blocking_pipe);
}
/* Set the current directory */
if (lpCurrentDirectory)
{
SetCurrentDirectoryW(lpCurrentDirectory);
}
/* Set the standard handles to the incoming values */
if (lpStartupInfo->dwFlags & STARTF_USESTDHANDLES)
{
/* For each handle, we need to duplicate the incoming unix
fd to the corresponding standard one. The API that I use,
dup2, will copy the source to the destination, automatically
closing the existing destination, in an atomic way */
if (dup2(iFdIn, STDIN_FILENO) == -1)
{
// Didn't duplicate standard in.
_exit(EXIT_FAILURE);
}
if (dup2(iFdOut, STDOUT_FILENO) == -1)
{
// Didn't duplicate standard out.
_exit(EXIT_FAILURE);
}
if (dup2(iFdErr, STDERR_FILENO) == -1)
{
// Didn't duplicate standard error.
_exit(EXIT_FAILURE);
}
/* now close the original FDs, we don't need them anymore */
close(iFdIn);
close(iFdOut);
close(iFdErr);
}
/* execute the new process */
if (EnvironmentArray)
{
execve(lpFileName, lppArgv, EnvironmentArray);
}
else
{
execve(lpFileName, lppArgv, palEnvironment);
}
/* if we get here, it means the execve function call failed so just exit */
_exit(EXIT_FAILURE);
}
/* parent process */
/* close the read end of the pipe, the parent doesn't need it */
close(child_blocking_pipe);
/* Set the process ID */
pLocalData->dwProcessId = processId;
pLocalDataLock->ReleaseLock(pThread, TRUE);
pLocalDataLock = NULL;
pSharedData->dwProcessId = processId;
pSharedDataLock->ReleaseLock(pThread, TRUE);
pSharedDataLock = NULL;
//
// Release file handle info; we don't need them anymore. Note that
// this must happen after we've released the data locks, as
// otherwise a deadlock could result.
//
if (lpStartupInfo->dwFlags & STARTF_USESTDHANDLES)
{
pobjFileIn->ReleaseReference(pThread);
pobjFileIn = NULL;
pobjFileOut->ReleaseReference(pThread);
pobjFileOut = NULL;
pobjFileErr->ReleaseReference(pThread);
pobjFileErr = NULL;
}
/* fill PROCESS_INFORMATION strucutre */
lpProcessInformation->hProcess = hProcess;
lpProcessInformation->hThread = hDummyThread;
lpProcessInformation->dwProcessId = processId;
lpProcessInformation->dwThreadId_PAL_Undefined = 0;
TRACE("New process created: id=%#x\n", processId);
InternalCreateProcessExit:
if (NULL != pLocalDataLock)
{
pLocalDataLock->ReleaseLock(pThread, FALSE);
}
if (NULL != pSharedDataLock)
{
pSharedDataLock->ReleaseLock(pThread, FALSE);
}
if (NULL != pobjProcess)
{
pobjProcess->ReleaseReference(pThread);
}
if (NULL != pobjProcessRegistered)
{
pobjProcessRegistered->ReleaseReference(pThread);
}
if (NO_ERROR != palError)
{
if (NULL != hProcess)
{
g_pObjectManager->RevokeHandle(pThread, hProcess);
}
if (NULL != hDummyThread)
{
g_pObjectManager->RevokeHandle(pThread, hDummyThread);
}
}
if (EnvironmentArray)
{
InternalFree(pThread, EnvironmentArray);
}
/* if we still have the file structures at this point, it means we
encountered an error sometime between when we acquired them and when we
fork()ed. We not only have to release them, we have to give them back
their close-on-exec flag */
if (NULL != pobjFileIn)
{
if(-1 == fcntl(iFdIn, F_SETFD, 1))
{
WARN("couldn't restore close-on-exec flag to stdin descriptor! "
"errno is %d (%s)\n", errno, strerror(errno));
}
pobjFileIn->ReleaseReference(pThread);
}
if (NULL != pobjFileOut)
{
if(-1 == fcntl(iFdOut, F_SETFD, 1))
{
WARN("couldn't restore close-on-exec flag to stdout descriptor! "
"errno is %d (%s)\n", errno, strerror(errno));
}
pobjFileOut->ReleaseReference(pThread);
}
if (NULL != pobjFileErr)
{
if(-1 == fcntl(iFdErr, F_SETFD, 1))
{
WARN("couldn't restore close-on-exec flag to stderr descriptor! "
"errno is %d (%s)\n", errno, strerror(errno));
}
pobjFileErr->ReleaseReference(pThread);
}
/* free allocated memory */
if (lppArgv)
{
InternalFree (pThread, *lppArgv);
InternalFree (pThread, lppArgv);
}
return palError;
}
/*++
Function:
GetExitCodeProcess
See MSDN doc.
--*/
BOOL
PALAPI
GetExitCodeProcess(
IN HANDLE hProcess,
IN LPDWORD lpExitCode)
{
CPalThread *pThread;
PAL_ERROR palError = NO_ERROR;
DWORD dwExitCode;
PROCESS_STATE ps;
PERF_ENTRY(GetExitCodeProcess);
ENTRY("GetExitCodeProcess(hProcess = %p, lpExitCode = %p)\n",
hProcess, lpExitCode);
pThread = InternalGetCurrentThread();
if(NULL == lpExitCode)
{
WARN("Got NULL lpExitCode\n");
palError = ERROR_INVALID_PARAMETER;
goto done;
}
palError = PROCGetProcessStatus(
pThread,
hProcess,
&ps,
&dwExitCode
);
if (NO_ERROR != palError)
{
ASSERT("Couldn't get process status information!\n");
goto done;
}
if( PS_DONE == ps )
{
*lpExitCode = dwExitCode;
}
else
{
*lpExitCode = STILL_ACTIVE;
}
done:
if (NO_ERROR != palError)
{
pThread->SetLastError(palError);
}
LOGEXIT("GetExitCodeProcess returns BOOL %d\n", NO_ERROR == palError);
PERF_EXIT(GetExitCodeProcess);
return NO_ERROR == palError;
}
/*++
Function:
ExitProcess
See MSDN doc.
--*/
PAL_NORETURN
VOID
PALAPI
ExitProcess(
IN UINT uExitCode)
{
DWORD old_terminator;
PERF_ENTRY_ONLY(ExitProcess);
ENTRY("ExitProcess(uExitCode=0x%x)\n", uExitCode );
old_terminator = InterlockedCompareExchange(&terminator,
GetCurrentThreadId(),0);
if(GetCurrentThreadId() == old_terminator)
{
// This thread has already initiated termination. This can happen
// in two ways:
// 1) DllMain(DLL_PROCESS_DETACH) triggers a call to ExitProcess.
// 2) PAL_exit() is called after the last PALTerminate().
// If the PAL is still initialized, we go straight through to
// PROCEndProcess. If it isn't, we simply exit.
if (!PALIsInitialized())
{
exit(uExitCode);
ASSERT("exit has returned\n");
}
else
{
WARN("thread re-called ExitProcess\n");
PROCEndProcess(GetCurrentProcess(), uExitCode, FALSE);
}
}
else if(0 != old_terminator)
{
/* another thread has already initiated the termination process. we
could just block on the PALInitLock critical section, but then
PROCSuspendOtherThreads would hang... so sleep forever here, we're
terminating anyway */
WARN("termination already started from another thread; blocking.\n");
poll(NULL,0,INFTIM);
}
/* ExitProcess may be called even if PAL is not initialized.
Verify if process structure exist
*/
if ( PALInitLock() && PALIsInitialized() )
{
PROCEndProcess(GetCurrentProcess(), uExitCode, FALSE);
/* Should not get here, because we terminate the current process */
ASSERT("PROCEndProcess has returned\n");
}
else
{
exit(uExitCode);
/* Should not get here, because we terminate the current process */
ASSERT("exit has returned\n");
}
/* this should never get executed */
ASSERT("ExitProcess should not return!\n");
for (;;);
}
/*++
Function:
TerminateProcess
Note:
hProcess is a handle on the current process.
See MSDN doc.
--*/
BOOL
PALAPI
TerminateProcess(
IN HANDLE hProcess,
IN UINT uExitCode)
{
BOOL ret;
PERF_ENTRY(TerminateProcess);
ENTRY("TerminateProcess(hProcess=%p, uExitCode=%u)\n",hProcess, uExitCode );
ret = PROCEndProcess(hProcess, uExitCode, TRUE);
LOGEXIT("TerminateProcess returns BOOL %d\n", ret);
PERF_EXIT(TerminateProcess);
return ret;
}
/*++
Function:
PROCEndProcess
Called from TerminateProcess and ExitProcess. This does the work of
TerminateProcess, but also takes a flag that determines whether we
shut down unconditionally. If the flag is set, the PAL will do very
little extra work before exiting. Most importantly, it won't shut
down any DLLs that are loaded.
--*/
static BOOL PROCEndProcess(HANDLE hProcess, UINT uExitCode,
BOOL bTerminateUnconditionally)
{
DWORD dwProcessId;
BOOL ret = FALSE;
dwProcessId = PROCGetProcessIDFromHandle(hProcess);
if (dwProcessId == 0)
{
SetLastError(ERROR_INVALID_HANDLE);
}
else if(dwProcessId != GetCurrentProcessId())
{
if (uExitCode != 0)
WARN("exit code 0x%x ignored for external process.\n", uExitCode);
if (kill(dwProcessId, SIGKILL) == 0)
{
ret = TRUE;
}
else
{
switch (errno) {
case ESRCH:
SetLastError(ERROR_INVALID_HANDLE);
break;
case EPERM:
SetLastError(ERROR_ACCESS_DENIED);
break;
default:
// Unexpected failure.
ASSERT(FALSE);
SetLastError(ERROR_INTERNAL_ERROR);
break;
}
}
}
else
{
// WARN/ERROR before starting the termination process and/or leaving the PAL.
if (bTerminateUnconditionally)
{
WARN("exit code 0x%x ignored for terminate.\n", uExitCode);
}
else if ((uExitCode & 0xff) != uExitCode)
{
// TODO: Convert uExitCodes into sysexits(3)?
ERROR("exit() only supports the lower 8-bits of an exit code. "
"status will only see error 0x%x instead of 0x%x.\n", uExitCode & 0xff, uExitCode);
}
TerminateCurrentProcessNoExit(bTerminateUnconditionally);
LOGEXIT("PROCEndProcess will not return\n");
// exit() runs atexit handlers possibly registered by foreign code.
// The right thing to do here is to leave the PAL. If our client
// registered our own PAL_Terminate with atexit(), the latter will
// explicitly re-enter us.
PAL_Leave(PAL_BoundaryBottom);
if (bTerminateUnconditionally)
{
// abort() has the semantics that
// (1) it doesn't run atexit handlers
// (2) can invoke CrashReporter or produce a coredump,
// which is appropriate for TerminateProcess calls
// If this turns out to be inappropriate for some case, where we
// call TerminateProcess vs. ExitProcess, then there needs to be
// a CLR wrapper for TerminateProcess and some exposure for PAL_abort()
// to selectively use that in all but those cases.
abort();
}
else
exit(uExitCode);
ASSERT(FALSE); // we shouldn't get here
}
return ret;
}
/*++
Function:
PROCCleanupProcess
Do all cleanup work for TerminateProcess, but don't terminate the process.
If bTerminateUnconditionally is TRUE, we exit as quickly as possible.
(no return value)
--*/
void PROCCleanupProcess(BOOL bTerminateUnconditionally)
{
/* Declare the beginning of shutdown */
PALSetShutdownIntent();
PALCommonCleanup(PALCLEANUP_STEP_ONE, FALSE);
/* This must be called after PALCommonCleanup(PALCLEANUP_STEP_ONE, ...)
*/
PALShutdown();
}
/*++
Function:
GetProcessTimes
See MSDN doc.
--*/
BOOL
PALAPI
GetProcessTimes(
IN HANDLE hProcess,
OUT LPFILETIME lpCreationTime,
OUT LPFILETIME lpExitTime,
OUT LPFILETIME lpKernelTime,
OUT LPFILETIME lpUserTime)
{
BOOL retval = FALSE;
struct rusage resUsage;
__int64 calcTime;
const __int64 SECS_TO_NS = 1000000000; /* 10^9 */
const __int64 USECS_TO_NS = 1000; /* 10^3 */
PERF_ENTRY(GetProcessTimes);
ENTRY("GetProcessTimes(hProcess=%p, lpExitTime=%p, lpKernelTime=%p,"
"lpUserTime=%p)\n",
hProcess, lpCreationTime, lpExitTime, lpKernelTime, lpUserTime );
/* Make sure hProcess is the current process, this is the only supported
case */
if(PROCGetProcessIDFromHandle(hProcess)!=GetCurrentProcessId())
{
ASSERT("GetProcessTimes() does not work on a process other than the "
"current process.\n");
SetLastError(ERROR_INVALID_HANDLE);
goto GetProcessTimesExit;
}
/* First, we need to actually retrieve the relevant statistics from the
OS */
if (getrusage (RUSAGE_SELF, &resUsage) == -1)
{
ASSERT("Unable to get resource usage information for the current "
"process\n");
SetLastError(ERROR_INTERNAL_ERROR);
goto GetProcessTimesExit;
}
TRACE ("getrusage User: %ld sec,%ld microsec. Kernel: %ld sec,%ld"
" microsec\n",
resUsage.ru_utime.tv_sec, resUsage.ru_utime.tv_usec,
resUsage.ru_stime.tv_sec, resUsage.ru_stime.tv_usec);
if (lpUserTime)
{
/* Get the time of user mode execution, in 100s of nanoseconds */
calcTime = (__int64)resUsage.ru_utime.tv_sec * SECS_TO_NS;
calcTime += (__int64)resUsage.ru_utime.tv_usec * USECS_TO_NS;
calcTime /= 100; /* Produce the time in 100s of ns */
/* Assign the time into lpUserTime */
lpUserTime->dwLowDateTime = (DWORD)calcTime;
lpUserTime->dwHighDateTime = (DWORD)(calcTime >> 32);
}
if (lpKernelTime)
{
/* Get the time of kernel mode execution, in 100s of nanoseconds */
calcTime = (__int64)resUsage.ru_stime.tv_sec * SECS_TO_NS;
calcTime += (__int64)resUsage.ru_stime.tv_usec * USECS_TO_NS;
calcTime /= 100; /* Produce the time in 100s of ns */
/* Assign the time into lpUserTime */
lpKernelTime->dwLowDateTime = (DWORD)calcTime;
lpKernelTime->dwHighDateTime = (DWORD)(calcTime >> 32);
}
retval = TRUE;
GetProcessTimesExit:
LOGEXIT("GetProcessTimes returns BOOL %d\n", retval);
PERF_EXIT(GetProcessTimes);
return (retval);
}
#define FILETIME_TO_ULONGLONG(f) \
(((ULONGLONG)(f).dwHighDateTime << 32) | ((ULONGLONG)(f).dwLowDateTime))
/*++
Function:
PAL_GetCPUBusyTime
The main purpose of this function is to compute the overall CPU utilization
for the CLR thread pool to regulate the number of I/O completion port
worker threads.
Since there is no consistent API on Unix to get the CPU utilization
from a user process, getrusage and gettimeofday are used to
compute the current process's CPU utilization instead.
This function emulates the ThreadpoolMgr::GetCPUBusyTime_NT function in
win32threadpool.cpp of the CLR.
See MSDN doc for GetSystemTimes.
--*/
INT
PALAPI
PAL_GetCPUBusyTime(
IN OUT PAL_IOCP_CPU_INFORMATION *lpPrevCPUInfo)
{
ULONGLONG nLastRecordedCurrentTime = 0;
ULONGLONG nLastRecordedUserTime = 0;
ULONGLONG nLastRecordedKernelTime = 0;
ULONGLONG nKernelTime = 0;
ULONGLONG nUserTime = 0;
ULONGLONG nCurrentTime = 0;
ULONGLONG nCpuBusyTime = 0;
ULONGLONG nCpuTotalTime = 0;
DWORD nReading = 0;
struct rusage resUsage;
struct timeval tv;
static DWORD dwNumberOfProcessors = 0;
if (dwNumberOfProcessors <= 0)
{
SYSTEM_INFO SystemInfo;
GetSystemInfo(&SystemInfo);
dwNumberOfProcessors = SystemInfo.dwNumberOfProcessors;
if (dwNumberOfProcessors <= 0)
{
return 0;
}
}
if (getrusage(RUSAGE_SELF, &resUsage) == -1)
{
ASSERT("getrusage() failed; errno is %d (%s)\n", errno, strerror(errno));
return 0;
}
else
{
nKernelTime = (ULONGLONG)resUsage.ru_stime.tv_sec*tccSecondsTo100NanoSeconds +
resUsage.ru_stime.tv_usec*tccMicroSecondsTo100NanoSeconds;
nUserTime = (ULONGLONG)resUsage.ru_utime.tv_sec*tccSecondsTo100NanoSeconds +
resUsage.ru_utime.tv_usec*tccMicroSecondsTo100NanoSeconds;
}
if (gettimeofday(&tv, NULL) == -1)
{
ASSERT("gettimeofday() failed; errno is %d (%s)\n", errno, strerror(errno));
return 0;
}
else
{
nCurrentTime = (ULONGLONG)tv.tv_sec*tccSecondsTo100NanoSeconds +
tv.tv_usec*tccMicroSecondsTo100NanoSeconds;
}
nLastRecordedCurrentTime = FILETIME_TO_ULONGLONG(lpPrevCPUInfo->LastRecordedTime.ftLastRecordedCurrentTime);
nLastRecordedUserTime = FILETIME_TO_ULONGLONG(lpPrevCPUInfo->ftLastRecordedUserTime);
nLastRecordedKernelTime = FILETIME_TO_ULONGLONG(lpPrevCPUInfo->ftLastRecordedKernelTime);
if (nCurrentTime > nLastRecordedCurrentTime)
{
nCpuTotalTime = (nCurrentTime - nLastRecordedCurrentTime);
#if HAVE_SOLARIS_THREADS || HAVE_THREAD_SELF || HAVE__LWP_SELF || HAVE_VM_READ
// For systems that run multiple threads of a process on multiple processors,
// the accumulated userTime and kernelTime of this process may exceed
// the elapsed time. In this case, the cpuTotalTime needs to be adjusted
// according to number of processors so that the cpu utilization
// will not be greater than 100.
nCpuTotalTime *= dwNumberOfProcessors;
#endif // HAVE_SOLARIS_THREADS || HAVE_THREAD_SELF || HAVE__LWP_SELF || HAVE_VM_READ
}
if (nUserTime >= nLastRecordedUserTime &&
nKernelTime >= nLastRecordedKernelTime)
{
nCpuBusyTime =
(nUserTime - nLastRecordedUserTime)+
(nKernelTime - nLastRecordedKernelTime);
}
if (nCpuTotalTime > 0 && nCpuBusyTime > 0)
{
nReading = (DWORD)((nCpuBusyTime*100)/nCpuTotalTime);
TRACE("PAL_GetCPUBusyTime: nCurrentTime=%lld, nKernelTime=%lld, nUserTime=%lld, nReading=%d\n",
nCurrentTime, nKernelTime, nUserTime, nReading);
}
if (nReading > 100)
{
ERROR("cpu utilization(%d) > 100\n", nReading);
}
lpPrevCPUInfo->LastRecordedTime.ftLastRecordedCurrentTime.dwLowDateTime = (DWORD)nCurrentTime;
lpPrevCPUInfo->LastRecordedTime.ftLastRecordedCurrentTime.dwHighDateTime = (DWORD)(nCurrentTime >> 32);
lpPrevCPUInfo->ftLastRecordedUserTime.dwLowDateTime = (DWORD)nUserTime;
lpPrevCPUInfo->ftLastRecordedUserTime.dwHighDateTime = (DWORD)(nUserTime >> 32);
lpPrevCPUInfo->ftLastRecordedKernelTime.dwLowDateTime = (DWORD)nKernelTime;
lpPrevCPUInfo->ftLastRecordedKernelTime.dwHighDateTime = (DWORD)(nKernelTime >> 32);
return (DWORD)nReading;
}
/*++
Function:
GetCommandLineW
See MSDN doc.
--*/
LPWSTR
PALAPI
GetCommandLineW(
VOID)
{
PERF_ENTRY(GetCommandLineW);
ENTRY("GetCommandLineW()\n");
LOGEXIT("GetCommandLineW returns LPWSTR %p (%S)\n",
g_lpwstrCmdLine,
g_lpwstrCmdLine);
PERF_EXIT(GetCommandLineW);
return g_lpwstrCmdLine;
}
/*++
Function:
OpenProcess
See MSDN doc.
Notes :
dwDesiredAccess is ignored (all supported operations will be allowed)
bInheritHandle is ignored (no inheritance)
--*/
HANDLE
PALAPI
OpenProcess(
DWORD dwDesiredAccess,
BOOL bInheritHandle,
DWORD dwProcessId)
{
PAL_ERROR palError;
CPalThread *pThread;
IPalObject *pobjProcess = NULL;
IPalObject *pobjProcessRegistered = NULL;
IDataLock *pDataLock;
CProcProcessLocalData *pLocalData;
CProcSharedData *pSharedData;
CObjectAttributes oa;
HANDLE hProcess = NULL;
PERF_ENTRY(OpenProcess);
ENTRY("OpenProcess(dwDesiredAccess=0x%08x, bInheritHandle=%d, "
"dwProcessId = 0x%08x)\n",
dwDesiredAccess, bInheritHandle, dwProcessId );
pThread = InternalGetCurrentThread();
if (0 == dwProcessId)
{
palError = ERROR_INVALID_PARAMETER;
goto OpenProcessExit;
}
palError = g_pObjectManager->AllocateObject(
pThread,
&otProcess,
&oa,
&pobjProcess
);
if (NO_ERROR != palError)
{
goto OpenProcessExit;
}
palError = pobjProcess->GetProcessLocalData(
pThread,
WriteLock,
&pDataLock,
reinterpret_cast<void **>(&pLocalData)
);
if (NO_ERROR != palError)
{
goto OpenProcessExit;
}
pLocalData->dwProcessId = dwProcessId;
pDataLock->ReleaseLock(pThread, TRUE);
palError = pobjProcess->GetSharedData(
pThread,
WriteLock,
&pDataLock,
reinterpret_cast<void **>(&pSharedData)
);
if (NO_ERROR != palError)
{
goto OpenProcessExit;
}
pSharedData->dwProcessId = dwProcessId;
pDataLock->ReleaseLock(pThread, TRUE);
palError = g_pObjectManager->RegisterObject(
pThread,
pobjProcess,
&aotProcess,
dwDesiredAccess,
&hProcess,
&pobjProcessRegistered
);
//
// pobjProcess was invalidated by the above call, so NULL
// it out here
//
pobjProcess = NULL;
//
// TODO: check to see if the process actually exists?
//
OpenProcessExit:
if (NULL != pobjProcess)
{
pobjProcess->ReleaseReference(pThread);
}
if (NULL != pobjProcessRegistered)
{
pobjProcessRegistered->ReleaseReference(pThread);
}
if (NO_ERROR != palError)
{
pThread->SetLastError(palError);
}
LOGEXIT("OpenProcess returns HANDLE %p\n", hProcess);
PERF_EXIT(OpenProcess);
return hProcess;
}
/*++
Function:
FlushProcessWriteBuffers
See MSDN doc.
--*/
VOID
PALAPI
FlushProcessWriteBuffers()
{
// UNIXTODO: Implement this. There seems to be no equivalent on Linux
// that could be used in user mode code.
}
/*++
Function:
PROCGetProcessIDFromHandle
Abstract
Return the process ID from a process handle
Parameter
hProcess: process handle
Return
Return the process ID, or 0 if it's not a valid handle
--*/
DWORD
PROCGetProcessIDFromHandle(
HANDLE hProcess)
{
PAL_ERROR palError;
IPalObject *pobjProcess = NULL;
CPalThread *pThread = InternalGetCurrentThread();
DWORD dwProcessId = 0;
if (hPseudoCurrentProcess == hProcess)
{
dwProcessId = gPID;
goto PROCGetProcessIDFromHandleExit;
}
palError = g_pObjectManager->ReferenceObjectByHandle(
pThread,
hProcess,
&aotProcess,
0,
&pobjProcess
);
if (NO_ERROR == palError)
{
IDataLock *pDataLock;
CProcProcessLocalData *pLocalData;
palError = pobjProcess->GetProcessLocalData(
pThread,
ReadLock,
&pDataLock,
reinterpret_cast<void **>(&pLocalData)
);
if (NO_ERROR == palError)
{
dwProcessId = pLocalData->dwProcessId;
pDataLock->ReleaseLock(pThread, FALSE);
}
pobjProcess->ReleaseReference(pThread);
}
PROCGetProcessIDFromHandleExit:
return dwProcessId;
}
PAL_ERROR
CorUnix::InitializeProcessData(
void
)
{
PAL_ERROR palError = NO_ERROR;
bool fLockInitialized = FALSE;
pGThreadList = NULL;
g_dwThreadCount = 0;
InternalInitializeCriticalSection(&g_csProcess);
fLockInitialized = TRUE;
if (NO_ERROR != palError)
{
if (fLockInitialized)
{
InternalDeleteCriticalSection(&g_csProcess);
}
}
return palError;
}
/*++
Function:
CreateInitialProcessAndThreadObjects
Abstract
Creates the IPalObjects that represent the current process
and the initial thread
Parameter
pThread - the initial thread
lpwstrCmdLine
lpwstrFullPath
Return
PAL_ERROR
Notes :
This function takes ownership of lpwstrCmdLine, but not of lpwstrFullPath
--*/
PAL_ERROR
CorUnix::CreateInitialProcessAndThreadObjects(
CPalThread *pThread,
LPWSTR lpwstrCmdLine,
LPWSTR lpwstrFullPath
)
{
PAL_ERROR palError = NO_ERROR;
HANDLE hThread;
IPalObject *pobjProcess = NULL;
IDataLock *pDataLock;
CProcProcessLocalData *pLocalData;
CProcSharedData *pSharedData;
CObjectAttributes oa;
HANDLE hProcess;
INT n;
LPWSTR lpwstr = NULL;
LPWSTR initial_dir = NULL;
//
// Save the command line and initial directory
//
g_lpwstrCmdLine = lpwstrCmdLine;
lpwstr=PAL_wcsrchr(lpwstrFullPath,'/');
lpwstr[0]='\0';
n=lstrlenW(lpwstrFullPath)+1;
int iLen = n;
initial_dir = reinterpret_cast<LPWSTR>(InternalMalloc(pThread, iLen*sizeof(WCHAR)));
if (NULL == initial_dir)
{
ERROR("malloc() failed! (initial_dir) \n");
goto CreateInitialProcessAndThreadObjectsExit;
}
if (wcscpy_s(initial_dir, iLen, lpwstrFullPath) != SAFECRT_SUCCESS)
{
ERROR("wcscpy_s failed!\n");
palError = ERROR_INTERNAL_ERROR;
goto CreateInitialProcessAndThreadObjectsExit;
}
lpwstr[0]='/';
pAppDir = initial_dir;
//
// Create initial thread object
//
palError = CreateThreadObject(pThread, pThread, &hThread);
if (NO_ERROR != palError)
{
goto CreateInitialProcessAndThreadObjectsExit;
}
//
// This handle isn't needed
//
(void) g_pObjectManager->RevokeHandle(pThread, hThread);
//
// Create and initialize process object
//
palError = g_pObjectManager->AllocateObject(
pThread,
&otProcess,
&oa,
&pobjProcess
);
if (NO_ERROR != palError)
{
ERROR("Unable to allocate process object");
goto CreateInitialProcessAndThreadObjectsExit;
}
palError = pobjProcess->GetProcessLocalData(
pThread,
WriteLock,
&pDataLock,
reinterpret_cast<void **>(&pLocalData)
);
if (NO_ERROR != palError)
{
ASSERT("Unable to access local data");
goto CreateInitialProcessAndThreadObjectsExit;
}
pLocalData->dwProcessId = gPID;
pLocalData->ps = PS_RUNNING;
pDataLock->ReleaseLock(pThread, TRUE);
palError = pobjProcess->GetSharedData(
pThread,
WriteLock,
&pDataLock,
reinterpret_cast<void **>(&pSharedData)
);
if (NO_ERROR != palError)
{
ASSERT("Unable to access shared data");
goto CreateInitialProcessAndThreadObjectsExit;
}
pSharedData->dwProcessId = gPID;
pDataLock->ReleaseLock(pThread, TRUE);
palError = g_pObjectManager->RegisterObject(
pThread,
pobjProcess,
&aotProcess,
PROCESS_ALL_ACCESS,
&hProcess,
&g_pobjProcess
);
//
// pobjProcess is invalidated by the call to RegisterObject, so
// NULL it out here to prevent it from being released later
//
pobjProcess = NULL;
if (NO_ERROR != palError)
{
ASSERT("Failure registering process object");
goto CreateInitialProcessAndThreadObjectsExit;
}
//
// There's no need to keep this handle around, so revoke
// it now
//
g_pObjectManager->RevokeHandle(pThread, hProcess);
CreateInitialProcessAndThreadObjectsExit:
if (NULL != pobjProcess)
{
pobjProcess->ReleaseReference(pThread);
}
if (NO_ERROR != palError)
{
if (NULL != initial_dir)
{
InternalFree(pThread, initial_dir);
}
}
return palError;
}
/*++
Function:
PROCCleanupInitialProcess
Abstract
Cleanup all the structures for the initial process.
Parameter
VOID
Return
VOID
--*/
VOID
PROCCleanupInitialProcess(VOID)
{
CPalThread *pThread = InternalGetCurrentThread();
LPWSTR lpwstr;
InternalEnterCriticalSection(pThread, &g_csProcess);
/* Free the application directory */
lpwstr=pAppDir;
InternalFree (pThread, lpwstr);
/* Free the stored command line */
InternalFree (pThread, g_lpwstrCmdLine);
InternalLeaveCriticalSection(pThread, &g_csProcess);
//
// Object manager shutdown will handle freeing the underlying
// thread and process data
//
}
/*++
Function:
PROCAddThread
Abstract
Add a thread to the thread list of the current process
Parameter
pThread: Thread object
--*/
void
CorUnix::PROCAddThread(
CPalThread *pCurrentThread,
CPalThread *pTargetThread
)
{
/* protect the access of the thread list with critical section for
mutithreading access */
InternalEnterCriticalSection(pCurrentThread, &g_csProcess);
pTargetThread->SetNext(pGThreadList);
pGThreadList = pTargetThread;
g_dwThreadCount += 1;
TRACE("Thread 0x%p (id %#x) added to the process thread list\n",
pTargetThread, pTargetThread->GetThreadId());
InternalLeaveCriticalSection(pCurrentThread, &g_csProcess);
}
/*++
Function:
PROCRemoveThread
Abstract
Remove a thread form the thread list of the current process
Parameter
CPalThread *pThread : thread object to remove
(no return value)
--*/
void
CorUnix::PROCRemoveThread(
CPalThread *pCurrentThread,
CPalThread *pTargetThread
)
{
CPalThread *curThread, *prevThread;
/* protect the access of the thread list with critical section for
mutithreading access */
InternalEnterCriticalSection(pCurrentThread, &g_csProcess);
curThread = pGThreadList;
/* if thread list is empty */
if (curThread == NULL)
{
ASSERT("Thread list is empty.\n");
goto EXIT;
}
/* do we remove the first thread? */
if (curThread == pTargetThread)
{
pGThreadList = curThread->GetNext();
TRACE("Thread 0x%p (id %#x) removed from the process thread list\n",
pTargetThread, pTargetThread->GetThreadId());
goto EXIT;
}
prevThread = curThread;
curThread = curThread->GetNext();
/* find the thread to remove */
while (curThread != NULL)
{
if (curThread == pTargetThread)
{
/* found, fix the chain list */
prevThread->SetNext(curThread->GetNext());
g_dwThreadCount -= 1;
TRACE("Thread %p removed from the process thread list\n", pTargetThread);
goto EXIT;
}
prevThread = curThread;
curThread = curThread->GetNext();
}
WARN("Thread %p not removed (it wasn't found in the list)\n", pTargetThread);
EXIT:
InternalLeaveCriticalSection(pCurrentThread, &g_csProcess);
}
/*++
Function:
PROCGetNumberOfThreads
Abstract
Return the number of threads in the thread list.
Parameter
void
Return
the number of threads.
--*/
INT
CorUnix::PROCGetNumberOfThreads(
void)
{
return g_dwThreadCount;
}
/*++
Function:
PROCProcessLock
Abstract
Enter the critical section associated to the current process
Parameter
void
Return
void
--*/
VOID
PROCProcessLock(
VOID)
{
CPalThread * pThread =
(PALIsThreadDataInitialized() ? InternalGetCurrentThread() : NULL);
InternalEnterCriticalSection(pThread, &g_csProcess);
}
/*++
Function:
PROCProcessUnlock
Abstract
Leave the critical section associated to the current process
Parameter
void
Return
void
--*/
VOID
PROCProcessUnlock(
VOID)
{
CPalThread * pThread =
(PALIsThreadDataInitialized() ? InternalGetCurrentThread() : NULL);
InternalLeaveCriticalSection(pThread, &g_csProcess);
}
#if USE_SYSV_SEMAPHORES
/*++
Function:
PROCCleanupThreadSemIds
Abstract
Cleanup SysV semaphore ids for all threads
(no parameters, no return value)
--*/
VOID
PROCCleanupThreadSemIds(void)
{
//
// When using SysV semaphores, the semaphore ids used by PAL threads must be removed
// so they can be used again.
//
PROCProcessLock();
CPalThread *pTargetThread = pGThreadList;
while (NULL != pTargetThread)
{
pTargetThread->suspensionInfo.DestroySemaphoreIds();
pTargetThread = pTargetThread->GetNext();
}
PROCProcessUnlock();
}
#endif // USE_SYSV_SEMAPHORES
/*++
Function:
PROCSuspendOtherThreads
Calls SuspendThread on all threads in the process, except the current
thread. Used by PAL_Terminate.
(no parameters, no return value)
--*/
void PROCSuspendOtherThreads(void)
{
PAL_ERROR palError = NO_ERROR;
CPalThread *pThread;
CPalThread *pTargetThread;
DWORD dwThreadId = 0;
DWORD dwLwpId = 0;
DWORD dwUnusedSuspendCount = 0;
TRACE("Terminating all threads except this one...\n");
pThread = InternalGetCurrentThread();
while (TRUE)
{
PROCProcessLock();
pTargetThread = pGThreadList;
while (NULL != pTargetThread)
{
/* skip the current thread */
if (pTargetThread->GetThreadId() != pThread->GetThreadId())
{
/* skip already-suspended threads */
if (!pTargetThread->suspensionInfo.GetSuspendedForShutdown() && pTargetThread->GetThreadType() != SignalHandlerThread)
{
pTargetThread->suspensionInfo.SetSuspendedForShutdown(TRUE);
//
// Add a reference to the thread data to keep
// it valid after we release the process lock
//
pTargetThread->AddThreadReference();
break;
}
}
pTargetThread = pTargetThread->GetNext();
}
/* unlock the process, we must not hold any critical sections when we
suspend the thread */
if (pTargetThread)
{
dwThreadId = pTargetThread->GetThreadId();
dwLwpId = pTargetThread->GetLwpId();
}
PROCProcessUnlock();
if(NULL == pTargetThread)
{
/* reached end of the list : all other threads have been suspended or have died. */
break;
}
TRACE("Suspending thread {tid=%u lwpid=%u pThread=%p} ...\n",
(unsigned int)dwThreadId, (unsigned int)dwLwpId, pTargetThread);
palError = pThread->suspensionInfo.InternalSuspendThreadFromData(
pThread,
pTargetThread,
&dwUnusedSuspendCount
);
if (NO_ERROR != palError)
{
_ASSERT_MSG(pTargetThread->synchronizationInfo.GetThreadState() == TS_DONE,
"Failed to suspend thread {tid=%u lwpid=%u pThread=%p} with error %d\n",
(unsigned int)dwThreadId, (unsigned int)dwLwpId, pTargetThread, palError);
}
//
// Release our reference on the target thread data
//
pTargetThread->ReleaseThreadReference();
}
/* wait for threads that are exiting, and thus couldn't be suspended, to
actually die before proceeding with cleanup. */
WaitForEndingThreads();
TRACE("All threads except this one are now suspended or have died.\n");
#if USE_SYSV_SEMAPHORES
PROCCleanupThreadSemIds();
#endif
}
/*++
Function:
PROCCondemnOtherThreads
Instruct the synchronization manager to abandon any objects owned
by threads in this process (including the calling thread).
(no parameters, no return value)
--*/
void PROCCondemnOtherThreads(void)
{
CPalThread *pThread;
CPalThread *pTargetThread;
pThread = InternalGetCurrentThread();
TRACE("Marking all other threads as suspended...\n");
PROCProcessLock();
pTargetThread = pGThreadList;
while (NULL != pTargetThread)
{
g_pSynchronizationManager->AbandonObjectsOwnedByThread(
pThread,
pTargetThread
);
pTargetThread = pTargetThread->GetNext();
}
PROCProcessUnlock();
TRACE("All threads except this one are now condemned\n");
}
/*++
Function:
TerminateCurrentProcessNoExit
Abstract:
Terminate current Process, but leave the caller alive
Parameters:
BOOL bTerminateUnconditionally - If this is set, the PAL will exit as
quickly as possible. In particular, it will not unload DLLs.
Return value :
No return
Note:
This function is used in ExitThread and TerminateProcess
--*/
void
CorUnix::TerminateCurrentProcessNoExit(BOOL bTerminateUnconditionally)
{
BOOL locked;
DWORD old_terminator;
old_terminator = InterlockedCompareExchange(&terminator,
GetCurrentThreadId(),0);
if(0 != old_terminator && GetCurrentThreadId() != old_terminator)
{
/* another thread has already initiated the termination process. we
could just block on the PALInitLock critical section, but then
PROCSuspendOtherThreads would hang... so sleep forever here, we're
terminating anyway */
/* note that if *this* thread has already started the termination
process, we want to proceed. the only way this can happen is if a
call to DllMain (from ExitProcess) brought us here (because DllMain
called ExitProcess, or TerminateProcess, or ExitThread);
TerminateProcess won't call DllMain, so there's no danger to get
caught in an infinite loop */
WARN("termination already started from another thread; blocking.\n");
poll(NULL,0,INFTIM);
}
/* Try to lock the initialization count to prevent multiple threads from
terminating/initializing the PAL simultaneously */
/* note : it's also important to take this lock before the process lock,
because Init/Shutdown take the init lock, and the functions they call
may take the process lock. We must do it in the same order to avoid
deadlocks */
locked = PALInitLock();
if(locked && PALIsInitialized())
{
PROCCleanupProcess(bTerminateUnconditionally);
}
}
/*++
Function:
PROCGetProcessStatus
Abstract:
Retrieve process state information (state & exit code).
Parameters:
DWORD process_id : PID of process to retrieve state for
PROCESS_STATE *state : state of process (starting, running, done)
DWORD *exit_code : exit code of process (from ExitProcess, etc.)
Return value :
TRUE on success
--*/
PAL_ERROR
PROCGetProcessStatus(
CPalThread *pThread,
HANDLE hProcess,
PROCESS_STATE *pps,
DWORD *pdwExitCode
)
{
PAL_ERROR palError = NO_ERROR;
IPalObject *pobjProcess = NULL;
IDataLock *pDataLock;
CProcProcessLocalData *pLocalData;
pid_t wait_retval;
int status;
//
// First, check if we already know the status of this process. This will be
// the case if this function has already been called for the same process.
//
palError = g_pObjectManager->ReferenceObjectByHandle(
pThread,
hProcess,
&aotProcess,
0,
&pobjProcess
);
if (NO_ERROR != palError)
{
goto PROCGetProcessStatusExit;
}
palError = pobjProcess->GetProcessLocalData(
pThread,
WriteLock,
&pDataLock,
reinterpret_cast<void **>(&pLocalData)
);
if (PS_DONE == pLocalData->ps)
{
TRACE("We already called waitpid() on process ID %#x; process has "
"terminated, exit code is %d\n",
pLocalData->dwProcessId, pLocalData->dwExitCode);
*pps = pLocalData->ps;
*pdwExitCode = pLocalData->dwExitCode;
pDataLock->ReleaseLock(pThread, FALSE);
goto PROCGetProcessStatusExit;
}
/* By using waitpid(), we can even retrieve the exit code of a non-PAL
process. However, note that waitpid() can only provide the low 8 bits
of the exit code. This is all that is required for the PAL spec. */
TRACE("Looking for status of process; trying wait()");
while(1)
{
/* try to get state of process, using non-blocking call */
wait_retval = waitpid(pLocalData->dwProcessId, &status, WNOHANG);
if ( wait_retval == (pid_t) pLocalData->dwProcessId )
{
/* success; get the exit code */
if ( WIFEXITED( status ) )
{
*pdwExitCode = WEXITSTATUS(status);
TRACE("Exit code was %d\n", *pdwExitCode);
}
else
{
WARN("process terminated without exiting; can't get exit "
"code. faking it.\n");
*pdwExitCode = EXIT_FAILURE;
}
*pps = PS_DONE;
}
else if (0 == wait_retval)
{
// The process is still running.
TRACE("Process %#x is still active.\n", pLocalData->dwProcessId);
*pps = PS_RUNNING;
*pdwExitCode = 0;
}
else if (-1 == wait_retval)
{
// This might happen if waitpid() had already been called, but
// this shouldn't happen - we call waitpid once, store the
// result, and use that afterwards.
// One legitimate cause of failure is EINTR; if this happens we
// have to try again. A second legitimate cause is ECHILD, which
// happens if we're trying to retrieve the status of a currently-
// running process that isn't a child of this process.
if(EINTR == errno)
{
TRACE("waitpid() failed with EINTR; re-waiting");
continue;
}
else if (ECHILD == errno)
{
TRACE("waitpid() failed with ECHILD; calling kill instead");
if (kill(pLocalData->dwProcessId, 0) != 0)
{
if(ESRCH == errno)
{
WARN("kill() failed with ESRCH, i.e. target "
"process exited and it wasn't a child, "
"so can't get the exit code, assuming "
"it was 0.\n");
*pdwExitCode = 0;
}
else
{
ERROR("kill(pid, 0) failed; errno is %d (%s)\n",
errno, strerror(errno));
*pdwExitCode = EXIT_FAILURE;
}
*pps = PS_DONE;
}
else
{
*pps = PS_RUNNING;
*pdwExitCode = 0;
}
}
else
{
// Ignoring unexpected waitpid errno and assuming that
// the process is still running
ERROR("waitpid(pid=%u) failed with unexpected errno=%d (%s)\n",
pLocalData->dwProcessId, errno, strerror(errno));
*pps = PS_RUNNING;
*pdwExitCode = 0;
}
}
else
{
ASSERT("waitpid returned unexpected value %d\n",wait_retval);
*pdwExitCode = EXIT_FAILURE;
*pps = PS_DONE;
}
// Break out of the loop in all cases except EINTR.
break;
}
// Save the exit code for future reference (waitpid will only work once).
if(PS_DONE == *pps)
{
pLocalData->ps = PS_DONE;
pLocalData->dwExitCode = *pdwExitCode;
}
TRACE( "State of process 0x%08x : %d (exit code %d)\n",
pLocalData->dwProcessId, *pps, *pdwExitCode );
pDataLock->ReleaseLock(pThread, TRUE);
PROCGetProcessStatusExit:
if (NULL != pobjProcess)
{
pobjProcess->ReleaseReference(pThread);
}
return palError;
}
void
ProcessCleanupRoutine(
CPalThread *pThread,
IPalObject *pObjectToCleanup,
bool fShutdown,
bool fCleanupSharedState
)
{
//
// Nothing to do -- no allocated data
//
}
PAL_ERROR
ProcessInitializationRoutine(
CPalThread *pThread,
CObjectType *pObjectType,
void *pImmutableData,
void *pSharedData,
void *pProcessLocalData
)
{
PAL_ERROR palError = NO_ERROR;
CProcProcessLocalData *pProcLocalData =
reinterpret_cast<CProcProcessLocalData*>(pProcessLocalData);
CProcSharedData *pProcSharedData =
reinterpret_cast<CProcSharedData*>(pSharedData);
pProcLocalData->dwProcessId = pProcSharedData->dwProcessId;
return palError;
}
#ifdef _DEBUG
void PROCDumpThreadList()
{
CPalThread *pThread;
PROCProcessLock();
TRACE ("Threads:{\n");
pThread = pGThreadList;
while (NULL != pThread)
{
TRACE (" {pThr=0x%p tid=%#x lwpid=%#x state=%d finsusp=%d}\n",
pThread, (int)pThread->GetThreadId(), (int)pThread->GetLwpId(),
(int)pThread->synchronizationInfo.GetThreadState(),
(int)pThread->suspensionInfo.GetSuspendedForShutdown());
pThread = pThread->GetNext();
}
TRACE ("Threads:}\n");
PROCProcessUnlock();
}
#endif
/* Internal function definitions **********************************************/
/*++
Function:
getFileName
Abstract:
Helper function for CreateProcessW, it retrieves the executable filename
from the application name, and the command line.
Parameters:
IN lpApplicationName: first parameter from CreateProcessW (an unicode string)
IN lpCommandLine: second parameter from CreateProcessW (an unicode string)
OUT lpFileName: file to be executed (the new process)
Return:
TRUE: if the file name is retrieved
FALSE: otherwise
--*/
static
BOOL
getFileName(
LPCWSTR lpApplicationName,
LPWSTR lpCommandLine,
char *lpPathFileName)
{
LPWSTR lpEnd;
WCHAR wcEnd;
char lpFileName[MAX_PATH];
char *lpTemp;
if (lpApplicationName)
{
int path_size = MAX_PATH;
lpTemp = lpPathFileName;
/* if only a file name is specified, prefix it with "./" */
if ((*lpApplicationName != '.') && (*lpApplicationName != '/') &&
(*lpApplicationName != '\\'))
{
if (strcpy_s(lpPathFileName, MAX_PATH, "./") != SAFECRT_SUCCESS)
{
ERROR("strcpy_s failed!\n");
return FALSE;
}
lpTemp+=2;
path_size -= 2;
}
/* Convert to ASCII */
if (!WideCharToMultiByte(CP_ACP, 0, lpApplicationName, -1,
lpTemp, path_size, NULL, NULL))
{
ASSERT("WideCharToMultiByte failure\n");
return FALSE;
}
/* Replace '\' by '/' */
FILEDosToUnixPathA(lpPathFileName);
return TRUE;
}
else
{
/* use the Command line */
/* filename should be the first token of the command line */
/* first skip all leading whitespace */
lpCommandLine = UTIL_inverse_wcspbrk(lpCommandLine,W16_WHITESPACE);
if(NULL == lpCommandLine)
{
ERROR("CommandLine contains only whitespace!\n");
return FALSE;
}
/* check if it is starting with a quote (") character */
if (*lpCommandLine == 0x0022)
{
lpCommandLine++; /* skip the quote */
/* file name ends with another quote */
lpEnd = PAL_wcschr(lpCommandLine+1, 0x0022);
/* if no quotes found, set lpEnd to the end of the Command line */
if (lpEnd == NULL)
lpEnd = lpCommandLine + PAL_wcslen(lpCommandLine);
}
else
{
/* filename is end out by a whitespace */
lpEnd = PAL_wcspbrk(lpCommandLine, W16_WHITESPACE);
/* if no whitespace found, set lpEnd to end of the Command line */
if (lpEnd == NULL)
{
lpEnd = lpCommandLine + PAL_wcslen(lpCommandLine);
}
}
if (lpEnd == lpCommandLine)
{
ERROR("application name and command line are both empty!\n");
return FALSE;
}
/* replace the last character by a null */
wcEnd = *lpEnd;
*lpEnd = 0x0000;
/* Convert to ASCII */
if (!WideCharToMultiByte(CP_ACP, 0, lpCommandLine, -1,
lpFileName, MAX_PATH, NULL, NULL))
{
ASSERT("WideCharToMultiByte failure\n");
return FALSE;
}
/* restore last character */
*lpEnd = wcEnd;
/* Replace '\' by '/' */
FILEDosToUnixPathA(lpFileName);
if (!getPath(lpFileName, MAX_PATH, lpPathFileName))
{
/* file is not in the path */
return FALSE;
}
}
return TRUE;
}
/*++
Functions: VAL16 & VAL32
Byte swapping functions for reading in little endian format files
--*/
#ifdef BIGENDIAN
static inline USHORT VAL16(USHORT x)
{
return ( ((x & 0xFF00) >> 8) | ((x & 0x00FF) << 8) );
}
static inline ULONG VAL32(DWORD x)
{
return( ((x & 0xFF000000L) >> 24) |
((x & 0x00FF0000L) >> 8) |
((x & 0x0000FF00L) << 8) |
((x & 0x000000FFL) << 24) );
}
#else // BIGENDIAN
// For little-endian machines, do nothing
static __inline USHORT VAL16(unsigned short x) { return x; }
static __inline DWORD VAL32(DWORD x){ return x; }
#endif // BIGENDIAN
static const DWORD IMAGE_DOS_SIGNATURE = 0x5A4D;
static const DWORD IMAGE_NT_SIGNATURE = 0x00004550;
static const DWORD IMAGE_SIZEOF_NT_OPTIONAL32_HEADER = 224;
static const DWORD IMAGE_NT_OPTIONAL_HDR32_MAGIC = 0x10b;
static const DWORD IMAGE_DIRECTORY_ENTRY_COM_DESCRIPTOR = 14;
typedef struct _IMAGE_DATA_DIRECTORY {
DWORD VirtualAddress;
DWORD Size;
} IMAGE_DATA_DIRECTORY, *PIMAGE_DATA_DIRECTORY;
typedef struct _IMAGE_OPTIONAL_HEADER {
//
// Standard fields.
//
WORD Magic;
BYTE MajorLinkerVersion;
BYTE MinorLinkerVersion;
DWORD SizeOfCode;
DWORD SizeOfInitializedData;
DWORD SizeOfUninitializedData;
DWORD AddressOfEntryPoint;
DWORD BaseOfCode;
DWORD BaseOfData;
//
// NT additional fields.
//
DWORD ImageBase;
DWORD SectionAlignment;
DWORD FileAlignment;
WORD MajorOperatingSystemVersion;
WORD MinorOperatingSystemVersion;
WORD MajorImageVersion;
WORD MinorImageVersion;
WORD MajorSubsystemVersion;
WORD MinorSubsystemVersion;
DWORD Win32VersionValue;
DWORD SizeOfImage;
DWORD SizeOfHeaders;
DWORD CheckSum;
WORD Subsystem;
WORD DllCharacteristics;
DWORD SizeOfStackReserve;
DWORD SizeOfStackCommit;
DWORD SizeOfHeapReserve;
DWORD SizeOfHeapCommit;
DWORD LoaderFlags;
DWORD NumberOfRvaAndSizes;
IMAGE_DATA_DIRECTORY DataDirectory[16];
} IMAGE_OPTIONAL_HEADER32, *PIMAGE_OPTIONAL_HEADER32;
typedef struct _IMAGE_FILE_HEADER {
WORD Machine;
WORD NumberOfSections;
DWORD TimeDateStamp;
DWORD PointerToSymbolTable;
DWORD NumberOfSymbols;
WORD SizeOfOptionalHeader;
WORD Characteristics;
} IMAGE_FILE_HEADER, *PIMAGE_FILE_HEADER;
typedef struct _IMAGE_NT_HEADERS {
DWORD Signature;
IMAGE_FILE_HEADER FileHeader;
IMAGE_OPTIONAL_HEADER32 OptionalHeader;
} IMAGE_NT_HEADERS32, *PIMAGE_NT_HEADERS32;
typedef struct _IMAGE_DOS_HEADER { /* DOS .EXE header*/
WORD e_magic; /* Magic number*/
WORD e_cblp; /* Bytes on last page of file*/
WORD e_cp; /* Pages in file*/
WORD e_crlc; /* Relocations*/
WORD e_cparhdr; /* Size of header in paragraphs*/
WORD e_minalloc; /* Minimum extra paragraphs needed*/
WORD e_maxalloc; /* Maximum extra paragraphs needed*/
WORD e_ss; /* Initial (relative) SS value*/
WORD e_sp; /* Initial SP value*/
WORD e_csum; /* Checksum*/
WORD e_ip; /* Initial IP value*/
WORD e_cs; /* Initial (relative) CS value*/
WORD e_lfarlc; /* File address of relocation table*/
WORD e_ovno; /* Overlay number*/
WORD e_res[4]; /* Reserved words*/
WORD e_oemid; /* OEM identifier (for e_oeminfo)*/
WORD e_oeminfo; /* OEM information; e_oemid specific*/
WORD e_res2[10]; /* Reserved words*/
LONG e_lfanew; /* File address of new exe header*/
} IMAGE_DOS_HEADER, *PIMAGE_DOS_HEADER;
/*++
Function:
isManagedExecutable
Determines if the passed in file is a managed executable
--*/
static
int
isManagedExecutable(LPSTR lpFileName)
{
HANDLE hFile = INVALID_HANDLE_VALUE;
DWORD cbRead;
IMAGE_DOS_HEADER dosheader;
IMAGE_NT_HEADERS32 NtHeaders;
BOOL ret = 0;
/* then check if it is a PE/COFF file */
if((hFile = CreateFileA(lpFileName, GENERIC_READ, FILE_SHARE_READ, NULL,
OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL | FILE_FLAG_SEQUENTIAL_SCAN,
NULL)) == INVALID_HANDLE_VALUE)
{
goto isManagedExecutableExit;
}
/* Open the file and read the IMAGE_DOS_HEADER structure */
if(!ReadFile(hFile, &dosheader, sizeof(IMAGE_DOS_HEADER), &cbRead, NULL) || cbRead != sizeof(IMAGE_DOS_HEADER) )
goto isManagedExecutableExit;
/* check the DOS headers */
if ( (dosheader.e_magic != VAL16(IMAGE_DOS_SIGNATURE)) || (VAL32(dosheader.e_lfanew) <= 0) )
goto isManagedExecutableExit;
/* Advance the file pointer to File address of new exe header */
if( SetFilePointer(hFile, VAL32(dosheader.e_lfanew), NULL, FILE_BEGIN) == 0xffffffff)
goto isManagedExecutableExit;
if( !ReadFile(hFile, &NtHeaders , sizeof(IMAGE_NT_HEADERS32), &cbRead, NULL) || cbRead != sizeof(IMAGE_NT_HEADERS32) )
goto isManagedExecutableExit;
/* check the NT headers */
if ((NtHeaders.Signature != VAL32(IMAGE_NT_SIGNATURE)) ||
(NtHeaders.FileHeader.SizeOfOptionalHeader != VAL16(IMAGE_SIZEOF_NT_OPTIONAL32_HEADER)) ||
(NtHeaders.OptionalHeader.Magic != VAL16(IMAGE_NT_OPTIONAL_HDR32_MAGIC)))
goto isManagedExecutableExit;
/* Check that the virtual address of IMAGE_DIRECTORY_ENTRY_COMHEADER is non-null */
if ( NtHeaders.OptionalHeader.DataDirectory[IMAGE_DIRECTORY_ENTRY_COM_DESCRIPTOR].VirtualAddress == 0 )
goto isManagedExecutableExit;
/* The file is a managed executable */
ret = 1;
isManagedExecutableExit:
/* Close the file handle if we opened it */
if ( hFile != INVALID_HANDLE_VALUE )
CloseHandle(hFile);
return ret;
}
/*++
Function:
checkFileType
Abstract:
Return the type of the file.
Parameters:
IN lpFileName: file name
Return:
FILE_DIR: Directory
FILE_UNIX: Unix executable file
FILE_PE: managed PE/COFF file
FILE_ERROR: Error
--*/
static
int
checkFileType( char *lpFileName)
{
struct stat stat_data;
/* check if the file exist */
if ( access(lpFileName, F_OK) != 0 )
{
return FILE_ERROR;
}
if( isManagedExecutable(lpFileName) )
{
return FILE_PE;
}
/* if it's not a PE/COFF file, check if it is executable */
if ( -1 != stat( lpFileName, &stat_data ) )
{
if((stat_data.st_mode & S_IFMT) == S_IFDIR )
{
/*The given file is a directory*/
return FILE_DIR;
}
if ( UTIL_IsExecuteBitsSet( &stat_data ) )
{
return FILE_UNIX;
}
else
{
return FILE_ERROR;
}
}
return FILE_ERROR;
}
/*++
Function:
buildArgv
Abstract:
Helper function for CreateProcessW, it builds the array of argument in
a format than can be passed to execve function.lppArgv is allocated
in this function and must be freed by the caller.
Parameters:
IN lpCommandLine: second parameter from CreateProcessW (an unicode string)
IN lpAppPath: cannonical name of the application to launched
OUT lppArgv: array of arguments to be passed to the new process
IN prependLoader: If True first argument should be the PE loader
Return:
the number of arguments
note: this doesn't yet match precisely the behavior of Windows, but should be
sufficient.
what's here:
1) stripping nonquoted whitespace
2) handling of quoted parameters and quoted "parts" of parameters, removal of
doublequotes (<aaaa"b bbb b"ccc> becomes <aaaab bbb bccc>)
3) \" as an escaped doublequote, both within doublequoted sequences and out
what's known missing :
1) \\ as an escaped backslash, but only if the string of '\'
is followed by a " (escaped or not)
2) "alternate" escape sequence : double-doublequote within a double-quoted
argument (<"aaa a""aa aaa">) expands to a single-doublequote(<aaa a"aa aaa>)
note that there may be other special cases
--*/
static
char **
buildArgv(
LPCWSTR lpCommandLine,
LPSTR lpAppPath,
UINT *pnArg,
BOOL prependLoader)
{
CPalThread *pThread = NULL;
UINT iWlen;
char *lpAsciiCmdLine;
char *pChar;
char **lppArgv;
char **lppTemp;
UINT i,j;
*pnArg = 0;
iWlen = WideCharToMultiByte(CP_ACP,0,lpCommandLine,-1,NULL,0,NULL,NULL);
if(0 == iWlen)
{
ASSERT("Can't determine length of command line\n");
return NULL;
}
pThread = InternalGetCurrentThread();
/* make sure to allocate enough space, up for the worst case scenario */
int iLength = (iWlen + strlen(PROCESS_PELOADER_FILENAME) + strlen(lpAppPath) + 2);
lpAsciiCmdLine = (char *) InternalMalloc(pThread, iLength);
if (lpAsciiCmdLine == NULL)
{
ERROR("Unable to allocate memory\n");
return NULL;
}
pChar = lpAsciiCmdLine;
/* Prepend the PE loader, if it's required */
if (prependLoader)
{
if ((strcpy_s(lpAsciiCmdLine, iLength, PROCESS_PELOADER_FILENAME) != SAFECRT_SUCCESS) ||
(strcat_s(lpAsciiCmdLine, iLength, " ") != SAFECRT_SUCCESS))
{
ERROR("strcpy_s/strcat_s failed!\n");
return NULL;
}
pChar = lpAsciiCmdLine + strlen (lpAsciiCmdLine);
}
else
{
/* put the cannonical name of the application as the first parameter */
if ((strcpy_s(lpAsciiCmdLine, iLength, "\"") != SAFECRT_SUCCESS) ||
(strcat_s(lpAsciiCmdLine, iLength, lpAppPath) != SAFECRT_SUCCESS) ||
(strcat_s(lpAsciiCmdLine, iLength, "\"") != SAFECRT_SUCCESS) ||
(strcat_s(lpAsciiCmdLine, iLength, " ") != SAFECRT_SUCCESS))
{
ERROR("strcpy_s/strcat_s failed!\n");
return NULL;
}
pChar = lpAsciiCmdLine + strlen (lpAsciiCmdLine);
/* let's skip the first argument in the command line */
/* strip leading whitespace; function returns NULL if there's only
whitespace, so the if statement below will work correctly */
lpCommandLine = UTIL_inverse_wcspbrk((LPWSTR)lpCommandLine, W16_WHITESPACE);
if (lpCommandLine)
{
LPCWSTR stringstart = lpCommandLine;
do
{
/* find first whitespace or dquote character */
lpCommandLine = PAL_wcspbrk(lpCommandLine,W16_WHITESPACE_DQUOTE);
if(NULL == lpCommandLine)
{
/* no whitespace or dquote found : first arg is only arg */
break;
}
else if('"' == *lpCommandLine)
{
/* got a dquote; skip over it if it's escaped; make sure we
don't try to look before the first character in the
string */
if(lpCommandLine > stringstart && '\\' == lpCommandLine[-1])
{
lpCommandLine++;
continue;
}
/* found beginning of dquoted sequence, run to the end */
/* don't stop if we hit an escaped dquote */
lpCommandLine++;
while( *lpCommandLine )
{
lpCommandLine = PAL_wcschr(lpCommandLine, '"');
if(NULL == lpCommandLine)
{
/* no ending dquote, arg runs to end of string */
break;
}
if('\\' != lpCommandLine[-1])
{
/* dquote is not escaped, dquoted sequence is over*/
break;
}
lpCommandLine++;
}
if(NULL == lpCommandLine || '\0' == *lpCommandLine)
{
/* no terminating dquote */
break;
}
/* step over dquote, keep looking for end of arg */
lpCommandLine++;
}
else
{
/* found whitespace : end of arg. */
lpCommandLine++;
break;
}
}while(lpCommandLine);
}
}
/* Convert to ASCII */
if (lpCommandLine)
{
if (!WideCharToMultiByte(CP_ACP, 0, lpCommandLine, -1,
pChar, iWlen+1, NULL, NULL))
{
ASSERT("Unable to convert to a multibyte string\n");
InternalFree (pThread, lpAsciiCmdLine);
return NULL;
}
}
pChar = lpAsciiCmdLine;
/* loops through all the arguments, to find out how many arguments there
are; while looping replace whitespace by \0 */
/* skip leading whitespace (and replace by '\0') */
/* note : there shouldn't be any, command starts either with PE loader name
or computed application path, but this won't hurt */
while (*pChar)
{
if (!isspace((unsigned char) *pChar))
{
break;
}
WARN("unexpected whitespace in command line!\n");
*pChar++ = '\0';
}
while (*pChar)
{
(*pnArg)++;
/* find end of current arg */
while(*pChar && !isspace((unsigned char) *pChar))
{
if('"' == *pChar)
{
/* skip over dquote if it's escaped; make sure we don't try to
look before the start of the string for the \ */
if(pChar > lpAsciiCmdLine && '\\' == pChar[-1])
{
pChar++;
continue;
}
/* found leading dquote : look for ending dquote */
pChar++;
while (*pChar)
{
pChar = strchr(pChar,'"');
if(NULL == pChar)
{
/* no ending dquote found : argument extends to the end
of the string*/
break;
}
if('\\' != pChar[-1])
{
/* found a dquote, and it's not escaped : quoted
sequence is over*/
break;
}
/* found a dquote, but it was escaped : skip over it, keep
looking */
pChar++;
}
if(NULL == pChar || '\0' == *pChar)
{
/* reached the end of the string : we're done */
break;
}
}
pChar++;
}
if(NULL == pChar)
{
/* reached the end of the string : we're done */
break;
}
/* reached end of arg; replace trailing whitespace by '\0', to split
arguments into separate strings */
while (isspace((unsigned char) *pChar))
{
*pChar++ = '\0';
}
}
/* allocate lppargv according to the number of arguments
in the command line */
lppArgv = (char **) InternalMalloc (pThread, (((*pnArg)+1) * sizeof(char *)));
if (lppArgv == NULL)
{
InternalFree (pThread, lpAsciiCmdLine);
return NULL;
}
lppTemp = lppArgv;
/* at this point all parameters are separated by NULL
we need to fill the array of arguments; we must also remove all dquotes
from arguments (new process shouldn't see them) */
for (i = *pnArg, pChar = lpAsciiCmdLine; i; i--)
{
/* skip NULLs */
while (!*pChar)
{
pChar++;
}
*lppTemp = pChar;
/* go to the next parameter, removing dquotes as we go along */
j = 0;
while (*pChar)
{
/* copy character if it's not a dquote */
if('"' != *pChar)
{
/* if it's the \ of an escaped dquote, skip over it, we'll
copy the " instead */
if( '\\' == pChar[0] && '"' == pChar[1] )
{
pChar++;
}
(*lppTemp)[j++] = *pChar;
}
pChar++;
}
/* re-NULL terminate the argument */
(*lppTemp)[j] = '\0';
lppTemp++;
}
*lppTemp = NULL;
return lppArgv;
}
/*++
Function:
getPath
Abstract:
Helper function for CreateProcessW, it looks in the path environment
variable to find where the process to executed is.
Parameters:
IN lpFileName: file name to search in the path
IN iLen: length of lpPathFileName buffer
OUT lpPathFileName: returned string containing the path and the filename
Return:
TRUE if found
FALSE otherwise
--*/
static
BOOL
getPath(
LPCSTR lpFileName,
UINT iLen,
LPSTR lpPathFileName)
{
LPSTR lpPath;
LPSTR lpNext;
LPSTR lpCurrent;
LPWSTR lpwstr;
INT n;
INT nextLen;
INT slashLen;
CPalThread *pThread = NULL;
/* if a path is specified, only look there */
if(strchr(lpFileName, '/'))
{
if (access (lpFileName, F_OK) == 0)
{
if (strcpy_s(lpPathFileName, iLen, lpFileName) != SAFECRT_SUCCESS)
{
TRACE("strcpy_s failed!\n");
return FALSE;
}
TRACE("file %s exists\n", lpFileName);
return TRUE;
}
else
{
TRACE("file %s doesn't exist.\n", lpFileName);
return FALSE;
}
}
/* first look in directory from which the application loaded */
lpwstr=pAppDir;
/* convert path to multibyte, check buffer size */
n = WideCharToMultiByte(CP_ACP, 0, lpwstr, -1, lpPathFileName, iLen,
NULL, NULL);
if(n == 0)
{
ASSERT("WideCharToMultiByte failure!\n");
return FALSE;
}
n += strlen(lpFileName) + 2;
if( n > (INT) iLen )
{
ERROR("Buffer too small for full path!\n");
return FALSE;
}
if ((strcat_s(lpPathFileName, iLen, "/") != SAFECRT_SUCCESS) ||
(strcat_s(lpPathFileName, iLen, lpFileName) != SAFECRT_SUCCESS))
{
ERROR("strcat_s failed!\n");
return FALSE;
}
if(access(lpPathFileName, F_OK) == 0)
{
TRACE("found %s in application directory (%s)\n", lpFileName, lpPathFileName);
return TRUE;
}
/* then try the current directory */
if ((strcpy_s(lpPathFileName, iLen, "./") != SAFECRT_SUCCESS) ||
(strcat_s(lpPathFileName, iLen, lpFileName) != SAFECRT_SUCCESS))
{
ERROR("strcpy_s/strcat_s failed!\n");
return FALSE;
}
if (access (lpPathFileName, R_OK) == 0)
{
TRACE("found %s in current directory.\n", lpFileName);
return TRUE;
}
pThread = InternalGetCurrentThread();
/* Then try to look in the path */
int iLen2 = strlen(MiscGetenv("PATH"))+1;
lpPath = (LPSTR) InternalMalloc(pThread, iLen2);
if (!lpPath)
{
ERROR("couldn't allocate memory for $PATH\n");
return FALSE;
}
if (strcpy_s(lpPath, iLen2, MiscGetenv("PATH")) != SAFECRT_SUCCESS)
{
ERROR("strcpy_s failed!");
return FALSE;
}
lpNext = lpPath;
/* search in every path directory */
TRACE("looking for file %s in $PATH (%s)\n", lpFileName, lpPath);
while (lpNext)
{
/* skip all leading ':' */
while(*lpNext==':')
{
lpNext++;
}
/* search for ':' */
lpCurrent = strchr(lpNext, ':');
if (lpCurrent)
{
*lpCurrent++ = '\0';
}
nextLen = strlen(lpNext);
slashLen = (lpNext[nextLen-1] == '/') ? 0:1;
/* verify if the path fit in the OUT parameter */
if (slashLen + nextLen + strlen (lpFileName) >= iLen)
{
InternalFree (pThread, lpPath);
ERROR("buffer too small for full path\n");
return FALSE;
}
strcpy_s (lpPathFileName, iLen, lpNext);
/* append a '/' if there's no '/' at the end of the path */
if ( slashLen == 1 )
{
strcat_s (lpPathFileName, iLen, "/");
}
strcat_s (lpPathFileName, iLen, lpFileName);
if (access (lpPathFileName, F_OK) == 0)
{
TRACE("Found %s in $PATH element %s\n", lpFileName, lpNext);
InternalFree(pThread, lpPath);
return TRUE;
}
lpNext = lpCurrent; /* search in the next directory */
}
InternalFree (pThread, lpPath);
TRACE("File %s not found in $PATH\n", lpFileName);
return FALSE;
}
#if HAVE_MACH_EXCEPTIONS
/*++
Function:
PROCThreadFromMachPort
Given a Mach thread port, return the CPalThread associated with it.
Return
CPalThread*
--*/
CorUnix::CPalThread *PROCThreadFromMachPort(mach_port_t hTargetThread)
{
CorUnix::CPalThread *pThread;
PROCProcessLock();
pThread = pGThreadList;
while (pThread)
{
pthread_t pPThread = (pthread_t)pThread->GetThreadId();
mach_port_t hThread = pthread_mach_thread_np(pPThread);
if (hThread == hTargetThread)
break;
pThread = pThread->GetNext();
}
PROCProcessUnlock();
return pThread;
}
#endif // HAVE_MACH_EXCEPTIONS
| [
"virgile.bello@gmail.com"
] | virgile.bello@gmail.com |
fba41bb7a4109d3b6875f182c3c883c581781207 | c6874b1f518fa926eaa82a0b2ead2bdd9fb2d7fa | /NewDarkTimes-master/Bloque.h | 2d191da932cff445acb3414ba05b413c5a699598 | [] | no_license | luisfe12/Proyecto | 5bd563e8de001346972f002a681773a18721e32f | 30f70131c8e06f1778cedb894d350984d7ab11f2 | refs/heads/master | 2020-03-26T22:41:55.958309 | 2019-12-15T23:01:02 | 2019-12-15T23:01:02 | 145,480,479 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 705 | h | #ifndef Bloque_H
#define Bloque_H
#include <SFML/Graphics.hpp>
#include <string>
class Bloque
{
float tam; //Tamaño del bloque
float posx,posy;
sf::Texture* textura;
bool booltexture=0;//dato temporal hasta mejorar codigo
sf::RectangleShape shape;
unsigned int x,y;
friend class Mapa;
friend class Area;
public:
Bloque();
Bloque(const Bloque &);//constructor copia
Bloque(float,float,int,sf::Texture);
void setTexture(sf::Texture);
void setColorBloque(int,int,int); //test
void setTam(float);
void setPosx(float);
void setPosy(float);
void setPosx_y(float,float);
int getTam();
float getPosx();
float getPosy();
};
#endif
| [
"noreply@github.com"
] | noreply@github.com |
84e66584dc2e60823ce48324680dc2db2e4202b6 | f1d64c5e154bf8b1b65f9032dc5b9ec26b4bc9f1 | /Source/InjectLanding.cpp | e80a2d4676cb9cb16b3dec88509d41268c136627 | [
"BSD-3-Clause"
] | permissive | fcccode/Hookshot | 5e74e361923a581a931fce15a7176817a0e1871e | 69410a7da7190152fbded028f78e6cf30b043045 | refs/heads/master | 2022-04-22T13:47:59.992014 | 2020-04-24T04:34:25 | 2020-04-24T04:34:25 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,453 | cpp | /******************************************************************************
* Hookshot
* General-purpose library for injecting DLLs and hooking function calls.
******************************************************************************
* Authored by Samuel Grossman
* Copyright (c) 2019-2020
**************************************************************************//**
* @file InjectLanding.cpp
* Partial landing code implementation.
* Receives control from injection code, cleans up, and runs the program.
*****************************************************************************/
#include "DependencyProtect.h"
#include "Globals.h"
#include "Inject.h"
#include "LibraryInterface.h"
#include "Message.h"
#include "Strings.h"
#include "TemporaryBuffer.h"
#include <cstddef>
#include <psapi.h>
using namespace Hookshot;
// -------- FUNCTIONS ------------------------------------------------------ //
// See "InjectLanding.h" for documentation.
extern "C" void __fastcall InjectLandingCleanup(const SInjectData* const injectData)
{
// Before cleaning up, set aside the array of addresses to free.
// This is needed because freeing any one of these could invalidate the injectData pointer.
void* cleanupBaseAddress[_countof(injectData->cleanupBaseAddress)];
memcpy((void*)cleanupBaseAddress, (void*)injectData->cleanupBaseAddress, sizeof(cleanupBaseAddress));
for (size_t i = 0; i < _countof(cleanupBaseAddress); ++i)
{
if (nullptr != cleanupBaseAddress[i])
Protected::Windows_VirtualFree(cleanupBaseAddress[i], 0, MEM_RELEASE);
}
}
// --------
extern "C" void __fastcall InjectLandingLoadHookModules(const SInjectData* const injectData)
{
if ((0 != injectData->enableDebugFeatures) && (0 == Protected::Windows_IsDebuggerPresent()))
Message::OutputFormatted(Message::ESeverity::ForcedInteractiveInfo, L"Attach to \"%s\" (PID %d) to continue debugging.", Strings::kStrExecutableBaseName.data(), Globals::GetCurrentProcessId());
const int numHookModulesLoaded = LibraryInterface::LoadHookModules();
const int numInjectOnlyLibrariesLoaded = LibraryInterface::LoadInjectOnlyLibraries();
Message::OutputFormatted(Message::ESeverity::Info, L"Loaded %d hook module%s and %d injection-only librar%s.", numHookModulesLoaded, (1 == numHookModulesLoaded ? L"" : L"s"), numInjectOnlyLibrariesLoaded, (1 == numInjectOnlyLibrariesLoaded ? L"y" : L"ies"));
}
| [
"samuelgr@users.noreply.github.com"
] | samuelgr@users.noreply.github.com |
285b88fa28fe63a13041001503538a0484261523 | d9c62de55641ed224dd340b0010885e8163cbdbd | /Laborator5/Laborator5.h | 86bf005b779fda9f17a146b7a9dee8369fe819a4 | [] | no_license | albertchirila/EGC | f866d1f65b4202b5608fe8f24dffb60fcefcd202 | 3458201ec116fc07acd492acb5e2cf1c6c8da112 | refs/heads/main | 2023-02-16T04:18:55.682467 | 2021-01-14T14:32:28 | 2021-01-14T14:32:28 | 329,639,760 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,169 | h | #pragma once
#include <Component/SimpleScene.h>
#include "LabCamera.h"
#define Z_FAR (200.f)
#define Z_NEAR (.01f)
class Laborator5 : public SimpleScene
{
public:
Laborator5();
~Laborator5();
void Init() override;
private:
void FrameStart() override;
void Update(float deltaTimeSeconds) override;
void FrameEnd() override;
void RenderMesh(Mesh * mesh, Shader * shader, const glm::mat4 & modelMatrix) override;
void OnInputUpdate(float deltaTime, int mods) override;
void OnKeyPress(int key, int mods) override;
void OnKeyRelease(int key, int mods) override;
void OnMouseMove(int mouseX, int mouseY, int deltaX, int deltaY) override;
void OnMouseBtnPress(int mouseX, int mouseY, int button, int mods) override;
void OnMouseBtnRelease(int mouseX, int mouseY, int button, int mods) override;
void OnMouseScroll(int mouseX, int mouseY, int offsetX, int offsetY) override;
void OnWindowResize(int width, int height) override;
protected:
Laborator::Camera *camera;
glm::mat4 projectionMatrix;
bool renderCameraTarget;
bool projectionType;
GLfloat right;
GLfloat left;
GLfloat bottom;
GLfloat top;
GLfloat fov;
};
| [
"albertchirila99@yahoo.com"
] | albertchirila99@yahoo.com |
f77041c22226a50195c9768040a164c2476ff02a | 5ce9c4ddc52f4659fc45a32f472b85bdb40decf4 | /src/yanze_straight_hamiltonian.cpp | 4c42889870ed0dbb055bcf9514399fc5274dd5c5 | [] | no_license | Eplistical/FSSHND | e9c98455976a948b013284e9a3ee56ec148ffffe | 70e47204dee9e4732896738b575d0722d77b50e9 | refs/heads/master | 2021-02-03T23:50:19.861679 | 2020-05-20T20:32:19 | 2020-05-20T20:32:19 | 243,578,817 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,704 | cpp | #include <iostream>
#include <vector>
#include <complex>
#include <cmath>
#include "misc/matrixop.hpp"
#include "misc/vector.hpp"
#include "yanze_straight_hamiltonian.hpp"
#include "misc/crasher.hpp"
namespace mqc {
// --- ctor/dtor/operator= --- //
Yanze_Straight_Hamiltonian::Yanze_Straight_Hamiltonian()
: Hamiltonian(2) {
m_doc =
"# Yanze Straight Hamiltoinan \n"
"# H_{00} = A * (1 + tanh(E*y))\n"
"# H_{11} = A * (1 - tanh(E*y))\n"
"# H_{01} = C * exp(-E^2 * y^2) * exp(i * W * phi)\n"
"# H_{10} = conj(H_{01}) \n"
"# phi = x"
"# paramters: "
"# { A, C, E, W } \n"
;
m_params["A"] = 0.02;
m_params["C"] = 0.005;
m_params["E"] = 1.0;
m_params["W"] = 0.2;
}
// --- utils --- //
double Yanze_Straight_Hamiltonian::cal_phi(const std::vector<double>& r) const {
return m_params.at("W") * r.at(0);
}
std::vector<double> Yanze_Straight_Hamiltonian::cal_nabla_phi(const std::vector<double>& r) const {
return std::vector<double> { m_params.at("W"), 0.0 };
}
// --- interfaces --- //
std::vector<std::complex<double>> Yanze_Straight_Hamiltonian::cal_H(const std::vector<double>& r) const {
/**
* input : r
* output : H(r)
*/
// check
misc::confirm(r.size() == 2, "Yanze_Straight_Hamiltonian: nuclear dim must be 2.");
// params
const double A = m_params.at("A");
const double C = m_params.at("C");
const double E = m_params.at("E");
const double x = r.at(0);
const double y = r.at(1);
const std::complex<double> eip = std::exp(matrixop::IMAGIZ * cal_phi(r));
std::vector<std::complex<double>> H(m_dim * m_dim, matrixop::ZEROZ);
H.at(0+0*m_dim) = A * (1.0 + std::tanh(E*y));
H.at(1+1*m_dim) = A * (1.0 - std::tanh(E*y));
H.at(0+1*m_dim) = C * std::exp(-std::pow(E*y, 2)) * eip;
H.at(1+0*m_dim) = std::conj(H.at(0+1*m_dim));
return H;
}
std::vector<std::vector<std::complex<double>>> Yanze_Straight_Hamiltonian::cal_nablaH(const std::vector<double>& r) const {
/**
* input : r
* output : nablaH(r)
*/
// check
misc::confirm(r.size() == 2, "Yanze_Straight_Hamiltonian: nuclear dim must be 2.");
// params
const double A = m_params.at("A");
const double C = m_params.at("C");
const double E = m_params.at("E");
const double x = r.at(0);
const double y = r.at(1);
const std::vector<double> nabla_phi = cal_nabla_phi(r);
const std::complex<double> eip = std::exp(matrixop::IMAGIZ * cal_phi(r));
std::vector<std::vector<std::complex<double>>> nablaH(r.size());
// dH/dx
std::vector<std::complex<double>>& nablaHx = nablaH.at(0);
nablaHx.resize(m_dim * m_dim);
nablaHx.at(0+0*m_dim) = 0.0;
nablaHx.at(1+1*m_dim) = 0.0;
nablaHx.at(0+1*m_dim) = C * std::exp(-std::pow(E*y, 2)) * eip * matrixop::IMAGIZ * nabla_phi.at(0);
nablaHx.at(1+0*m_dim) = nablaHx.at(0+1*m_dim);
// dH/dy
std::vector<std::complex<double>>& nablaHy = nablaH.at(1);
nablaHy.resize(m_dim * m_dim);
nablaHy.at(0+0*m_dim) = A * (1.0 - std::pow(std::tanh(E*y), 2)) * E;
nablaHy.at(1+1*m_dim) = -A * (1.0 - std::pow(std::tanh(E*y), 2)) * E;
nablaHy.at(0+1*m_dim) = C * std::exp(-std::pow(E*y, 2)) * eip * (-2.0 * std::pow(E, 2) * y + matrixop::IMAGIZ * nabla_phi.at(1));
nablaHy.at(1+0*m_dim) = std::conj(nablaHy.at(0+1*m_dim));
return nablaH;
}
};
| [
"gaohan@sas.upenn.edu"
] | gaohan@sas.upenn.edu |
575d9c725a7d2abb41f8d8a9f37d70ebfaed286d | f0ba9db32f36c5aba864e5978872b2e8ad10aa40 | /tests/is_nothrow_assignable/overview.cpp | 34c7eda932c8dd8b76c095285c9d36115fed686e | [
"MIT"
] | permissive | Bareflank/bsl | fb325084b19cd48e03197f4265049f9c8d008c9f | 6509cfff948fa34b98585512d7be33a36e2f9522 | refs/heads/master | 2021-12-25T11:19:43.743888 | 2021-10-21T14:47:58 | 2021-10-21T14:47:58 | 216,364,945 | 77 | 5 | NOASSERTION | 2021-10-21T02:24:26 | 2019-10-20T13:18:28 | C++ | UTF-8 | C++ | false | false | 9,563 | cpp | /// @copyright
/// Copyright (C) 2020 Assured Information Security, Inc.
///
/// @copyright
/// 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:
///
/// @copyright
/// The above copyright notice and this permission notice shall be included in
/// all copies or substantial portions of the Software.
///
/// @copyright
/// 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 <bsl/is_nothrow_assignable.hpp>
#include <bsl/ut.hpp>
/// <!-- description -->
/// @brief Main function for this unit test. If a call to bsl::ut_check() fails
/// the application will fast fail. If all calls to bsl::ut_check() pass, this
/// function will successfully return with bsl::exit_success.
///
/// <!-- inputs/outputs -->
/// @return Always returns bsl::exit_success.
///
[[nodiscard]] auto
main() noexcept -> bsl::exit_code
{
static_assert(!bsl::is_nothrow_assignable<bool, bool>::value);
static_assert(!bsl::is_nothrow_assignable<bool, bool const>::value);
static_assert(!bsl::is_nothrow_assignable<bool, bool &>::value);
static_assert(!bsl::is_nothrow_assignable<bool, bool &&>::value);
static_assert(!bsl::is_nothrow_assignable<bool, bool const &>::value);
static_assert(!bsl::is_nothrow_assignable<bool, bool const &&>::value);
static_assert(!bsl::is_nothrow_assignable<bool, bool *>::value);
static_assert(!bsl::is_nothrow_assignable<bool, bool const *>::value);
static_assert(!bsl::is_nothrow_assignable<bool, bool *const>::value);
static_assert(!bsl::is_nothrow_assignable<bool, bool const *const>::value);
static_assert(!bsl::is_nothrow_assignable<bool const, bool>::value);
static_assert(!bsl::is_nothrow_assignable<bool const, bool const>::value);
static_assert(!bsl::is_nothrow_assignable<bool const, bool &>::value);
static_assert(!bsl::is_nothrow_assignable<bool const, bool &&>::value);
static_assert(!bsl::is_nothrow_assignable<bool const, bool const &>::value);
static_assert(!bsl::is_nothrow_assignable<bool const, bool const &&>::value);
static_assert(!bsl::is_nothrow_assignable<bool const, bool *>::value);
static_assert(!bsl::is_nothrow_assignable<bool const, bool const *>::value);
static_assert(!bsl::is_nothrow_assignable<bool const, bool *const>::value);
static_assert(!bsl::is_nothrow_assignable<bool const, bool const *const>::value);
static_assert(bsl::is_nothrow_assignable<bool &, bool>::value);
static_assert(bsl::is_nothrow_assignable<bool &, bool const>::value);
static_assert(bsl::is_nothrow_assignable<bool &, bool &>::value);
static_assert(bsl::is_nothrow_assignable<bool &, bool &&>::value);
static_assert(bsl::is_nothrow_assignable<bool &, bool const &>::value);
static_assert(bsl::is_nothrow_assignable<bool &, bool const &&>::value);
static_assert(bsl::is_nothrow_assignable<bool &, bool *>::value);
static_assert(bsl::is_nothrow_assignable<bool &, bool const *>::value);
static_assert(bsl::is_nothrow_assignable<bool &, bool *const>::value);
static_assert(bsl::is_nothrow_assignable<bool &, bool const *const>::value);
static_assert(!bsl::is_nothrow_assignable<bool &&, bool>::value);
static_assert(!bsl::is_nothrow_assignable<bool &&, bool const>::value);
static_assert(!bsl::is_nothrow_assignable<bool &&, bool &>::value);
static_assert(!bsl::is_nothrow_assignable<bool &&, bool &&>::value);
static_assert(!bsl::is_nothrow_assignable<bool &&, bool const &>::value);
static_assert(!bsl::is_nothrow_assignable<bool &&, bool const &&>::value);
static_assert(!bsl::is_nothrow_assignable<bool &&, bool *>::value);
static_assert(!bsl::is_nothrow_assignable<bool &&, bool const *>::value);
static_assert(!bsl::is_nothrow_assignable<bool &&, bool *const>::value);
static_assert(!bsl::is_nothrow_assignable<bool &&, bool const *const>::value);
static_assert(!bsl::is_nothrow_assignable<bool const &, bool>::value);
static_assert(!bsl::is_nothrow_assignable<bool const &, bool const>::value);
static_assert(!bsl::is_nothrow_assignable<bool const &, bool &>::value);
static_assert(!bsl::is_nothrow_assignable<bool const &, bool &&>::value);
static_assert(!bsl::is_nothrow_assignable<bool const &, bool const &>::value);
static_assert(!bsl::is_nothrow_assignable<bool const &, bool const &&>::value);
static_assert(!bsl::is_nothrow_assignable<bool const &, bool *>::value);
static_assert(!bsl::is_nothrow_assignable<bool const &, bool const *>::value);
static_assert(!bsl::is_nothrow_assignable<bool const &, bool *const>::value);
static_assert(!bsl::is_nothrow_assignable<bool const &, bool const *const>::value);
static_assert(!bsl::is_nothrow_assignable<bool const &&, bool>::value);
static_assert(!bsl::is_nothrow_assignable<bool const &&, bool const>::value);
static_assert(!bsl::is_nothrow_assignable<bool const &&, bool &>::value);
static_assert(!bsl::is_nothrow_assignable<bool const &&, bool &&>::value);
static_assert(!bsl::is_nothrow_assignable<bool const &&, bool const &>::value);
static_assert(!bsl::is_nothrow_assignable<bool const &&, bool const &&>::value);
static_assert(!bsl::is_nothrow_assignable<bool const &&, bool *>::value);
static_assert(!bsl::is_nothrow_assignable<bool const &&, bool const *>::value);
static_assert(!bsl::is_nothrow_assignable<bool const &&, bool *const>::value);
static_assert(!bsl::is_nothrow_assignable<bool const &&, bool const *const>::value);
static_assert(!bsl::is_nothrow_assignable<bool *, bool>::value);
static_assert(!bsl::is_nothrow_assignable<bool *, bool const>::value);
static_assert(!bsl::is_nothrow_assignable<bool *, bool &>::value);
static_assert(!bsl::is_nothrow_assignable<bool *, bool &&>::value);
static_assert(!bsl::is_nothrow_assignable<bool *, bool const &>::value);
static_assert(!bsl::is_nothrow_assignable<bool *, bool const &&>::value);
static_assert(!bsl::is_nothrow_assignable<bool *, bool *>::value);
static_assert(!bsl::is_nothrow_assignable<bool *, bool const *>::value);
static_assert(!bsl::is_nothrow_assignable<bool *, bool *const>::value);
static_assert(!bsl::is_nothrow_assignable<bool *, bool const *const>::value);
static_assert(!bsl::is_nothrow_assignable<bool const *, bool>::value);
static_assert(!bsl::is_nothrow_assignable<bool const *, bool const>::value);
static_assert(!bsl::is_nothrow_assignable<bool const *, bool &>::value);
static_assert(!bsl::is_nothrow_assignable<bool const *, bool &&>::value);
static_assert(!bsl::is_nothrow_assignable<bool const *, bool const &>::value);
static_assert(!bsl::is_nothrow_assignable<bool const *, bool const &&>::value);
static_assert(!bsl::is_nothrow_assignable<bool const *, bool *>::value);
static_assert(!bsl::is_nothrow_assignable<bool const *, bool const *>::value);
static_assert(!bsl::is_nothrow_assignable<bool const *, bool *const>::value);
static_assert(!bsl::is_nothrow_assignable<bool const *, bool const *const>::value);
static_assert(!bsl::is_nothrow_assignable<bool *const, bool>::value);
static_assert(!bsl::is_nothrow_assignable<bool *const, bool const>::value);
static_assert(!bsl::is_nothrow_assignable<bool *const, bool &>::value);
static_assert(!bsl::is_nothrow_assignable<bool *const, bool &&>::value);
static_assert(!bsl::is_nothrow_assignable<bool *const, bool const &>::value);
static_assert(!bsl::is_nothrow_assignable<bool *const, bool const &&>::value);
static_assert(!bsl::is_nothrow_assignable<bool *const, bool *>::value);
static_assert(!bsl::is_nothrow_assignable<bool *const, bool const *>::value);
static_assert(!bsl::is_nothrow_assignable<bool *const, bool *const>::value);
static_assert(!bsl::is_nothrow_assignable<bool *const, bool const *const>::value);
static_assert(!bsl::is_nothrow_assignable<bool const *const, bool>::value);
static_assert(!bsl::is_nothrow_assignable<bool const *const, bool const>::value);
static_assert(!bsl::is_nothrow_assignable<bool const *const, bool &>::value);
static_assert(!bsl::is_nothrow_assignable<bool const *const, bool &&>::value);
static_assert(!bsl::is_nothrow_assignable<bool const *const, bool const &>::value);
static_assert(!bsl::is_nothrow_assignable<bool const *const, bool const &&>::value);
static_assert(!bsl::is_nothrow_assignable<bool const *const, bool *>::value);
static_assert(!bsl::is_nothrow_assignable<bool const *const, bool const *>::value);
static_assert(!bsl::is_nothrow_assignable<bool const *const, bool *const>::value);
static_assert(!bsl::is_nothrow_assignable<bool const *const, bool const *const>::value);
return bsl::ut_success();
}
| [
"rianquinn@gmail.com"
] | rianquinn@gmail.com |
4b42a3e0761ad80f9cc50749f0a53625cbbbd3b8 | 0efed25a2be3b4b1a8210d6d4922f53bfce6e6e7 | /Single_Shortest_Path1.cpp | 6a20b6658b6dd08bcb3e98c9897a7a045a3882f3 | [
"MIT"
] | permissive | yuyahy/Study_Algorithm | 3596825e4b2430c719ebe0f32eba15a504cc8015 | ca2f1c05bd08ad723af209c67e1ef36b3964c0a3 | refs/heads/master | 2023-01-01T17:15:16.178180 | 2020-10-28T12:31:51 | 2020-10-28T12:31:51 | 264,200,152 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,342 | cpp | #include <bits/stdc++.h>
using namespace std;
typedef long long llong;
constexpr int MAX = 999999;
struct NodeInfo {
// このノードから伸びるエッジの情報
// 各エッジの接続先のノード番号
vector<int> edges_to;
// 各エッジのコスト
vector<int> edges_cost;
// ダイクストラ法のためのデータ
// 最小コストが確定したか
bool done;
// このノードへの現時点で判明している最小コスト
int cost;
NodeInfo()
{
done = false;
cost = MAX;
}
};
// ダイクストラ法で頂点0から各頂点への最短経路を求める
// ※今回の問題では常に頂点番号 = 配列のインデックス
// が成り立っているので、それを前提として動く作りになっている
// より厳密に処理するなら、構造体で自身の頂点番号を保持する様にし、
// その値を参照して処理する様に修正する必要がある
void CalcMinimumShortestPath(vector<NodeInfo>& vecNodes)
{
// スタートは頂点0
int nextidx = 0;
vecNodes[nextidx].cost = 0;
vecNodes[nextidx].done = true;
bool isAnyVertex = true;
while(isAnyVertex)
{
int min(MAX);
int tmpnextidx(0);
// 今いる頂点に隣接する頂点群の最小値が更新できれば更新する
for (int i = 0; i < vecNodes[nextidx].edges_to.size(); i++)
{
int tmpcost = vecNodes[nextidx].cost + vecNodes[nextidx].edges_cost[i];
int tmpidx = vecNodes[nextidx].edges_to[i];
// 最小コストを更新
if(vecNodes[tmpidx].cost > tmpcost){
vecNodes[tmpidx].cost = tmpcost;
}
}
// 最小値が確定していない頂点の中で
// コストが最小の頂点を探す
for(int j=0; j<vecNodes.size(); j++) {
// 最小値が確定済 or 一回も最小値が更新されていない物は対象外
if(vecNodes[j].done == true || vecNodes[j].cost == MAX) continue;
if(min > vecNodes[j].cost) {
min = vecNodes[j].cost;
tmpnextidx = j;
}
}
// 最小値が確定した頂点のフラグを立てる
nextidx = tmpnextidx;
vecNodes[nextidx].done = true;
// 次の頂点が見つからなければ終了
isAnyVertex = tmpnextidx == 0? false : true;
}
}
int main()
{
int n(0);
cin >> n;
// 各ノードの情報を管理する配列
vector<NodeInfo> vecNodes(n);
// 各頂点の情報を記録する
for (int i = 0; i < n; i++)
{
int vertex_num(0),next_num(0), next_vertex(0), weight(0);
cin >> vertex_num;
cin >> next_num;
for (int j = 0; j < next_num; j++)
{
cin >> next_vertex >> weight;
vecNodes[vertex_num].edges_to.push_back(next_vertex);
vecNodes[vertex_num].edges_cost.push_back(weight);
}
}
// 頂点0から他の頂点への最短コストを求める
CalcMinimumShortestPath(vecNodes);
// 結果を出力する
for (int i = 0; i < vecNodes.size(); i++)
{
cout << i << " " << vecNodes[i].cost << "\n";
}
return 0;
} | [
"xvto.ya@gmail.com"
] | xvto.ya@gmail.com |
3c9a15a6f73271688f81c3458b6c55c66d261511 | 0bd67ab578cd227b40f4fadc1ce4cd0edf84b731 | /TCTCTOE.cpp | 2dcf50c728f8097f6949bfc3dab3bedf04c70bc7 | [] | no_license | rajivranjanmars/codechef | 1874e2510e2f3a51fdac0227ab72dcee6ff0ed8d | 5da2c9f3a6bcb0f82813182eb95feeaede36fe84 | refs/heads/master | 2023-07-03T04:06:02.972136 | 2021-08-12T10:22:13 | 2021-08-12T10:22:13 | 355,046,395 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,153 | cpp | #include <iostream>
using namespace std;
int main(){
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int t;
cin >> t;
for (int i = 0; i < t; i++){
char a[3][3],u='_';
int x=0,o=0;
bool s=false;
for (int i = 0; i < 3; i++){
for (int j = 0; j < 3; j++){
cin >> a[i][j];
if (a[i][j]=='X')
x++;
if (a[i][j]=='O')
o++;
if (a[i][j]=='_')
s=true;
}
}
if (o>x || x-o>1 )
cout << 3 <<endl;
else {
int wo = 0,wx=0;
for (int i = 0; i < 3; i++){
if ((a[i][0]==a[i][1])&&(a[i][0]==a[i][2])){
if(a[i][0]=='O')
wo++;
if(a[i][0]=='X')
wx++;
}
}
for (int i = 0; i < 3; i++){
if ((a[0][i]==a[1][i])&&(a[0][i]==a[2][i])){
if(a[0][i]=='O')
wo++;
if(a[0][i]=='X')
wx++;
}
}
if ((a[0][0]==a[1][1])&&(a[0][0]==a[2][2] )){
if(a[0][0]=='O')
wo++;
if(a[0][0]=='X')
wx++;
}
if((a[0][2]==a[1][1])&&(a[0][2]==a[2][0])){
if(a[2][0]=='O')
wo++;
if(a[2][0]=='X')
wx++;
}
if ((wo>0 )&&(wx>0))
cout <<3 <<endl;
else{
if(wo==1 && x==o)
cout<< 1 <<endl;
else if ( (wx>0)&& x==o+1)
cout<<1 << endl;
else if ((wo==0 )&&( wx==0)&& !s)
cout << 1 <<endl;
else if ((wo==0 )&&( wx==0)&& s)
cout << 2 <<endl;
else
cout << 3 << endl;
}
}
}
return 0;
} | [
"rajivranjanmars@gmail.com"
] | rajivranjanmars@gmail.com |
0afd4299e2465e50c2b5779c0ee18a77a37ba964 | 3dae85df94e05bb1f3527bca0d7ad413352e49d0 | /ml/nn/runtime/test/generated/examples/mean_float_1_relaxed.example.cpp | 4a26eba770f396ece48317a059591c0f0f79dad1 | [
"Apache-2.0"
] | permissive | Wenzhao-Xiang/webml-wasm | e48f4cde4cb986eaf389edabe78aa32c2e267cb9 | 0019b062bce220096c248b1fced09b90129b19f9 | refs/heads/master | 2020-04-08T11:57:07.170110 | 2018-11-29T07:21:37 | 2018-11-29T07:21:37 | 159,327,152 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 794 | cpp | // clang-format off
// Generated file (from: mean_float_1_relaxed.mod.py). Do not edit
std::vector<MixedTypedExample> examples = {
// Begin of an example
{
.operands = {
//Input(s)
{ // See tools/test_generator/include/TestHarness.h:MixedTyped
// int -> FLOAT32 map
{{0, {1.0f, 2.0f, 3.0f, 4.0f, 5.0f, 6.0f, 7.0f, 8.0f, 9.0f, 10.0f, 11.0f, 12.0f, 13.0f, 14.0f, 15.0f, 16.0f, 17.0f, 18.0f, 19.0f, 20.0f, 21.0f, 22.0f, 23.0f, 24.0f}}},
// int -> INT32 map
{},
// int -> QUANT8_ASYMM map
{},
// int -> QUANT16_ASYMM map
{}
},
//Output(s)
{ // See tools/test_generator/include/TestHarness.h:MixedTyped
// int -> FLOAT32 map
{{0, {12.0f, 13.0f}}},
// int -> INT32 map
{},
// int -> QUANT8_ASYMM map
{},
// int -> QUANT16_ASYMM map
{}
}
},
}, // End of an example
};
| [
"wenzhao.xiang@intel.com"
] | wenzhao.xiang@intel.com |
996c5c410b8a81ff59220dbab48da0ff6a594af5 | eaf0d750ff63a1b51e3c9d62905b35a9d1a682fa | /SDL 2d game/SDL 2d game/ComponentFramework19.1.2/SDL_Project/Body.h | ef54731e5db8d80754497f6fcb4a67ab9f8dd058 | [] | no_license | QuocAnhLe935/Sdl-midstone | 452962c3dbdab3d7dbe88d25e8569a37a8c8e3ca | 4b87b6cb7addbce58c326d2af41032a21ad89a25 | refs/heads/main | 2023-01-24T00:34:10.670019 | 2020-12-09T01:23:50 | 2020-12-09T01:23:50 | 313,486,012 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 387 | h | #ifndef BODY_H
#define BODY_H
#include "Vector.h"
#include "VMath.h"
using namespace MATH;
class Body {
friend class Collision;
protected:
Vec3 pos;
Vec3 vel;
Vec3 accel;
float mass;
public:
Body();
Body(Vec3 pos_, Vec3 vel_, Vec3 accel_, float mass_);
~Body();
void Update(const float deltaTime);
void ApplyForce(Vec3 force);
Vec3 GetPos() const;
float r;
};
#endif
| [
"54999435+QuocAnhLe935@users.noreply.github.com"
] | 54999435+QuocAnhLe935@users.noreply.github.com |
5ca6cc28bc23a78a75ebfa6457530e8c78061dd3 | 43f7ec7e85a7c12a1c818453fe541721e3e926e0 | /.vscode/cquery_cached_index/c@@users@kenneth@documents@github@kappatp-v5/include@drive.hpp | 01aa605985bd500410cd0bc14eafeca5bdc0ad7e | [] | no_license | bid-p/kappaTP-V5 | 2e84ba57c287319eb31655e5fe07861a267d87e3 | c22b81b4020c20e84418a30953f894373ace99cf | refs/heads/master | 2021-10-01T18:23:12.851135 | 2018-11-26T00:30:22 | 2018-11-26T00:30:22 | 148,879,100 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 573 | hpp | #ifndef DRIVE_GUARD
#define DRIVE_GUARD
#include "api.h"
#include "okapi/api.hpp"
#include "ports.hpp"
using namespace okapi;
extern Motor driveR1;
extern Motor driveR2;
extern Motor driveR3;
extern Motor driveL1;
extern Motor driveL2;
extern Motor driveL3;
extern ChassisControllerIntegrated chassisController;
extern ControllerButton driveHoldBtn;
typedef enum driveStates {
driveNotRunning,
driveRunning,
driveHolding,
} tDriveStates;
extern tDriveStates currDriveState;
extern char driveState;
extern void updateDrive();
extern void driveAct();
#endif
| [
"kenneth.moon3@yahoo.com"
] | kenneth.moon3@yahoo.com |
d361fce6e2a3faace017941fc9ea406fac89507e | db01c87a207df6bb4eaddd3568e0d552b8b2451c | /C++程序设计.assets/C++例题代码和习题代码/4.5 stream.cpp | 1075fff982887eaddf3b3271088a0c5bbadba648 | [] | no_license | chmodawk/self-study-exam_notes | fbcd05e430bfa3d3682b2f1f0a01af039b62b37f | a0d704ca143244fd7274b1ff6fc5c59479ac4660 | refs/heads/master | 2023-02-09T15:51:49.527812 | 2021-01-09T07:01:41 | 2021-01-09T07:01:41 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 1,391 | cpp | #include <iostream>
#include <cstdlib>
#include <string>
using namespace std;
class myComplex
{
private:
double real, imag;
public:
myComplex() : real(0), imag(0) {}
myComplex(double r, double i) : real(r), imag(i) {}
friend ostream &operator<<(ostream &os, const myComplex &c); //友元,插入
friend istream &operator>>(istream &is, myComplex &c); //友元,提取
};
ostream &operator<<(ostream &os, const myComplex &c)
{
if (c.imag >= 0)
{
os << c.real << "+" << c.imag << "i"; //以 a+bi 的形式输入
}
else
{
os << c.real << "-" << -c.imag << "i";
}
return os;
}
istream &operator>>(istream &is, myComplex &c)
{
string s;
is >> s; //将a+bi 作为字符串读入,a+bi中间不能有空格
int pos = s.find("+", 0); //查找虚部
if (pos == -1)
pos = s.find("-", 1); //虚部为负数时
string sReal = s.substr(0, pos); //分离出代表实部的字符串
c.real = atof(sReal.c_str()); //atof() 能将参数内容转换成浮点数
sReal = s.substr(pos, s.length() - pos - 1); //分离出代表虚部的字符串
c.imag = atof(sReal.c_str());
return is;
}
int main()
{
myComplex c, c1;
int n;
cout << "请输入两个复数([-]a±bi)和一个整数, 以空格分隔" << endl;
cin >> c >> c1 >> n;
cout << c << "," << n << "," << c1;
return 0;
} | [
"kished@outlook.com"
] | kished@outlook.com |
36d65502ffb5ad7916da27f0aaa99379160c7c04 | b630210dd141bb3d7d0c91017c6764eff5c6fa90 | /chatbot/src/model/DescribeDialogFlowRequest.cc | d781d42b6a0aaa4146f9aa613e9ae8d3c487c8b0 | [
"Apache-2.0"
] | permissive | howtosigna/aliyun-openapi-cpp-sdk | 37da0db186cb2a547d3c82b4e1b5d18a00e0b529 | cb3390b9f5c46cdaa0ec2cc4fc5d435da6329175 | refs/heads/master | 2020-09-05T17:50:13.666225 | 2019-11-05T11:16:27 | 2019-11-05T11:16:27 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,165 | cc | /*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <alibabacloud/chatbot/model/DescribeDialogFlowRequest.h>
using AlibabaCloud::Chatbot::Model::DescribeDialogFlowRequest;
DescribeDialogFlowRequest::DescribeDialogFlowRequest() :
RpcServiceRequest("chatbot", "2017-10-11", "DescribeDialogFlow")
{}
DescribeDialogFlowRequest::~DescribeDialogFlowRequest()
{}
long DescribeDialogFlowRequest::getDialogId()const
{
return dialogId_;
}
void DescribeDialogFlowRequest::setDialogId(long dialogId)
{
dialogId_ = dialogId;
setCoreParameter("DialogId", std::to_string(dialogId));
}
| [
"noreply@github.com"
] | noreply@github.com |
7d6153298b74897a0c5af9f38e2760d8814bf8db | 87a795806ecab3ebaa0b6121f20aaccdf5362559 | /include/flip/detail/PortTransportBase.h | 20aebb7b12a91fcf1bb7eaeb8c6aab35f224fdb2 | [] | no_license | ohmtech/flip-public | e2bf0c2d183b3eefa8a5028b0dc2bc12c55f6656 | deb775ca7a998cb065667d10be4cb2bba0d3388d | refs/heads/master | 2021-01-21T04:53:52.963142 | 2016-07-22T14:48:26 | 2016-07-22T14:48:26 | 53,060,980 | 32 | 4 | null | 2016-07-22T14:48:28 | 2016-03-03T15:23:58 | C++ | UTF-8 | C++ | false | false | 2,395 | h | /*****************************************************************************
PortTransportBase.h
Copyright (c) 2014 Raphael DINGE
*Tab=3***********************************************************************/
#pragma once
/*\\\ INCLUDE FILES \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\*/
#include "flip/config.h"
#include "flip/detail/PortBase.h"
#include <vector>
#include <cstddef>
#include <cstdint>
namespace flip
{
class flip_API PortTransportBase
: public PortBase
{
/*\\\ PUBLIC \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\*/
public:
PortTransportBase () = default;
virtual ~PortTransportBase () = default;
// PortBase
virtual void receive_backend (const BackEndIR & backend) override;
virtual void receive_commit (const Transaction & tx) override;
virtual void receive_squash (const TxIdRange & range, const Transaction & tx) override;
virtual void receive_transaction (const Transaction & tx) override;
virtual void receive_ack (const TxId & tx_id) override;
virtual void receive_deny (const TxId & tx_id) override;
virtual void receive_signal (const SignalData & data) override;
/*\\\ INTERNAL \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\*/
/*\\\ PROTECTED \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\*/
protected:
virtual void send (const std::vector <uint8_t> & data) = 0;
void receive (const uint8_t * data_ptr, size_t data_size);
/*\\\ PRIVATE \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\*/
private:
/*\\\ FORBIDDEN MEMBER FUNCTIONS \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\*/
private:
PortTransportBase (const PortTransportBase & rhs) = delete;
PortTransportBase &
operator = (const PortTransportBase & rhs) = delete;
PortTransportBase (PortTransportBase && rhs) = delete;
PortTransportBase &
operator = (PortTransportBase && rhs) = delete;
bool operator == (const PortTransportBase & rhs) const = delete;
bool operator != (const PortTransportBase & rhs) const = delete;
}; // class PortTransportBase
} // namespace flip
//#include "flip/PortTransportBase.hpp"
/*\\\ EOF \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\*/
| [
"raphael.dinge@ohmforce.com"
] | raphael.dinge@ohmforce.com |
6fa2865dbf28246595cf6e4a0b3d4075dfaa2600 | 7bd8b4933f2e78d4936d1a4455c84a86b86242fb | /Code/GeomMngr/imr_gm_figure.cpp | 2445445639eedbc169bfc0281226b2ba2a23f3c5 | [] | no_license | dhawt/Immerse | bdbf4470fa6a79da850536efc91272abd01684db | 0f562746f9db33c41a6e047fecb0f49acb513b48 | refs/heads/master | 2016-09-15T23:57:05.086389 | 2012-05-03T19:52:14 | 2012-05-03T19:52:14 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 14,287 | cpp | /****************************************************************\
iMMERSE Engine
(C) 1999 No Tears Shed Software
All rights reserved
Filename: IMR_GM_Figure.hpp
Description: Figure module
\****************************************************************/
#include "IMR_GM_Figure.hpp"
/***************************************************************************\
**
** Skeleton Segment stuff
**
\***************************************************************************/
/***************************************************************************\
Sets the name of the skeleton segment.
\***************************************************************************/
void IMR_SkelSegment::Set_Name(char *NewName)
{
if (strlen(NewName) > 8)
{
memcpy((void *)Name, (void *)NewName, 8);
Name[8] = '/0';
}
else
strcpy(Name, NewName);
}
/***************************************************************************\
Sets the name of the object for skeleton segment.
\***************************************************************************/
void IMR_SkelSegment::Set_ObjectName(char *Name)
{
if (strlen(Name) > 8)
{
memcpy((void *)ObjName, (void *)Name, 8);
ObjName[8] = '/0';
}
else
strcpy(ObjName, Name);
}
/***************************************************************************\
**
** Key skeleton stuff
**
\***************************************************************************/
/***************************************************************************\
Sets the name of the skeleton.
\***************************************************************************/
void IMR_Skeleton::Set_Name(char *NewName)
{
if (strlen(NewName) > 8)
{
memcpy((void *)Name, (void *)NewName, 8);
Name[8] = '/0';
}
else
strcpy(Name, NewName);
}
/***************************************************************************\
Searches the specified lists for the objects to attach to each segment.
\***************************************************************************/
int IMR_Skeleton::Setup(IMR_NamedList<IMR_Object> *GlbObj,
IMR_NamedList<IMR_Object> *LocObj)
{
IMR_SkelSegment *CurrSeg = Segs;
char *ObjName;
IMR_Object *Tmp;
// Loop while we have a segment:
while (CurrSeg)
{
// Get the name of the object for the segment:
ObjName = CurrSeg->Get_ObjectName();
// Search the local list (if there is one) for the object:
if (LocObj)
Tmp = LocObj->Get_Item(ObjName, NULL);
// If we haven't found the object already, search the global list:
if (!Tmp && GlbObj)
Tmp = GlbObj->Get_Item(ObjName, NULL);
// Set the object:
CurrSeg->Set_Object(Tmp);
// Set next segment:
CurrSeg = CurrSeg->Get_Next();
}
// And return ok:
return IMR_OK;
}
/***************************************************************************\
Adds a new segment into the skeleton.
Returns IMR_OK if successful, otherwise an error.
\***************************************************************************/
int IMR_Skeleton::Add_Segment(char *Name)
{
IMR_SkelSegment *NewSeg;
// Create a new segment:
NewSeg = new IMR_SkelSegment;
// If we're out of memory, return an error:
if (!NewSeg)
{
IMR_LogMsg(__LINE__, __FILE__, "IMR_Skeleton::Add_Segment(): Out of memory in segment %s!", Name);
return IMRERR_OUTOFMEM;
}
// Now make this segment the head:
NewSeg->Set_Next(Segs);
Segs = NewSeg;
// And give it a name:
NewSeg->Set_Name(Name);
// One more segment:
++ Num_Segs;
// And return ok:
return IMR_OK;
}
/***************************************************************************\
Returns a pointer to the specified segment if found, otherwise NULL.
\***************************************************************************/
IMR_SkelSegment *IMR_Skeleton::Get_Segment(char *Name)
{
IMR_SkelSegment *Curr = Segs;
// Loop while we have a segment:
while (Curr)
{
if (Curr->Is(Name))
return Curr;
Curr = Curr->Get_Next();
}
// No segment by that name, so return null:
return NULL;
}
/***************************************************************************\
Deletes the specified segment.
\***************************************************************************/
void IMR_Skeleton::Delete_Segment(char *Name)
{
IMR_SkelSegment *Curr = Segs,
*Prev = NULL;
// Find the specified segment:
while (Curr && !Curr->Is(Name))
{
Prev = Curr;
Curr = Curr->Get_Next();
}
// If we couldn't find the segment, return:
if (!Curr) return;
// Unlink the segment:
if (Prev)
Prev->Set_Next(Curr->Get_Next());
else
Segs = Curr->Get_Next();
// And delete the node:
delete Curr;
// One less seg:
++ Num_Segs;
}
/***************************************************************************\
Deletes all the segments in the list.
\***************************************************************************/
void IMR_Skeleton::Wipe_Segments(void)
{
IMR_SkelSegment *Curr = Segs, *Next;
// Loop and delete while we have a segment:
while (Curr)
{
Next = Curr->Get_Next();
delete Curr;
Curr = Next;
}
// And set segs to null:
Segs = NULL;
Num_Segs = 0;
}
/***************************************************************************\
**
** Keyed figure stuff
**
\***************************************************************************/
/***************************************************************************\
Sets the name of the figure.
\***************************************************************************/
void IMR_Figure::Set_Name(char *NewName)
{
if (strlen(NewName) > 8)
{
memcpy((void *)Name, (void *)NewName, 8);
Name[8] = '/0';
}
else
strcpy(Name, NewName);
}
/***************************************************************************\
Sets up the figure.
\***************************************************************************/
int IMR_Figure::Setup(IMR_NamedList<IMR_Object> *GlbObj,
IMR_NamedList<IMR_Object> *LocObj)
{
IMR_Skeleton *CurrKey = Keys;
IMR_Object *Tmp;
// Setup our root object (if it hasn't been already):
if (!RootObj)
{
if (LocObj) Tmp = LocObj->Get_Item(RootObjName, NULL);
if (!Tmp && GlbObj)
Tmp = GlbObj->Get_Item(RootObjName, NULL);
Set_RootObj(Tmp);
}
// Loop while we have a key skeleton:
while (CurrKey)
{
// Setup the key:
CurrKey->Setup(GlbObj, LocObj);
// Set next key:
CurrKey = CurrKey->Get_Next();
}
// And return ok:
return IMR_OK;
}
/***************************************************************************\
Adds a new key into the figure.
Returns IMR_OK if successful, otherwise an error.
\***************************************************************************/
int IMR_Figure::Add_Key(char *Name)
{
IMR_Skeleton *NewKey;
// Create a new key:
NewKey = new IMR_Skeleton;
// If we're out of memory, return an error:
if (!NewKey)
{
IMR_LogMsg(__LINE__, __FILE__, "IMR_Figure::Add_Key(): Out of memory in skeleton %s!", Name);
return IMRERR_OUTOFMEM;
}
// Now make this segment the head:
NewKey->Set_Next(Keys);
Keys = NewKey;
// And give it a name:
NewKey->Set_Name(Name);
// One more key:
++ Num_Keys;
// And return ok:
return IMR_OK;
}
/***************************************************************************\
Returns a pointer to the specified key if found, otherwise NULL.
\***************************************************************************/
IMR_Skeleton *IMR_Figure::Get_Key(char *Name)
{
IMR_Skeleton *Curr = Keys;
// Loop while we have a key:
while (Curr)
{
if (Curr->Is(Name))
return Curr;
Curr = Curr->Get_Next();
}
// No key by that name, so return null:
return NULL;
}
/***************************************************************************\
Deletes the specified key.
\***************************************************************************/
void IMR_Figure::Delete_Key(char *Name)
{
IMR_Skeleton *Curr = Keys, *Prev = NULL;
// Find the specified key:
while (Curr && !Curr->Is(Name))
{
Prev = Curr;
Curr = Curr->Get_Next();
}
// If we couldn't find the key, return:
if (!Curr) return;
// Unlink the key:
if (Prev)
Prev->Set_Next(Curr->Get_Next());
else
Keys = Curr->Get_Next();
// And delete the node:
delete Curr;
// One less key:
++ Num_Keys;
}
/***************************************************************************\
Deletes all the keys in the list.
\***************************************************************************/
void IMR_Figure::Wipe_Keys(void)
{
IMR_Skeleton *Curr = Keys, *Next;
// Loop and delete while we have a key:
while (Curr)
{
Next = Curr->Get_Next();
delete Curr;
Curr = Next;
}
// And set keys to null:
Keys = NULL;
Num_Keys = 0;
}
/***************************************************************************\
"Jumps" the figure to the specified relative position and attitude.
\***************************************************************************/
void IMR_Figure::Animation_Jump(char *KeyName)
{
IMR_Skeleton *Key;
IMR_SkelSegment *Seg;
IMR_Object *Obj;
// Find the specified key:
if (!(Key = Get_Key(KeyName))) return;
// Now loop through all the segments in the key:
Seg = Key->GetFirstSegment();
while (Seg)
{
// Get the object:
Obj = Seg->Get_Object();
// Make sure there is an object:
if (Obj) Obj->Animation_Jump(Seg->Get_Pos(), Seg->Get_Atd());
// Get the next segment:
Seg = Seg->Get_Next();
}
}
/***************************************************************************\
Initializes an animation to the specified relative position and attitude
over the specified number of frames.
\***************************************************************************/
void IMR_Figure::Animation_Init(char *KeyName, int Length)
{
IMR_Skeleton *Key;
IMR_SkelSegment *Seg;
IMR_Object *Obj;
// Find the specified key:
if (!(Key = Get_Key(KeyName))) return;
// Now loop through all the segments in the key:
Seg = Key->GetFirstSegment();
while (Seg)
{
// Get the object:
Obj = Seg->Get_Object();
// Make sure there is an object:
if (Obj)
Obj->Animation_Init(Seg->Get_Pos(), Seg->Get_Atd(), Length);
// Get the next segment:
Seg = Seg->Get_Next();
}
// Now setup stuff:
Animation_Status = IMR_ANIMATION_ACTIVE;
Animation_Time = 0;
Animation_Length = Length;
Animation_Key = Key;
}
/***************************************************************************\
Changes to the next frame in an animation.
\***************************************************************************/
int IMR_Figure::Animation_Step(void)
{
IMR_Skeleton *Key;
IMR_SkelSegment *Seg;
IMR_Object *Obj;
// Make sure an animation is in progress:
if (Animation_Status == IMR_ANIMATION_DONE) return IMR_ANIMATION_DONE;
// Find the specified key:
Key = Animation_Key;
// Now loop through all the segments in the key:
Seg = Key->GetFirstSegment();
while (Seg)
{
// Get the object:
Obj = Seg->Get_Object();
// Make sure there is an object:
if (Obj) Obj->Animation_Step();
// Get the next segment:
Seg = Seg->Get_Next();
}
// Increment counter:
Animation_Time += IMR_Time_GetFrameTime();
// Tell the user our status:
if (Animation_Time >= Animation_Length)
{
Animation_Status = IMR_ANIMATION_DONE;
return IMR_ANIMATION_DONE;
}
else
{
Animation_Status = IMR_ANIMATION_ACTIVE;
return IMR_ANIMATION_ACTIVE;
}
}
/***************************************************************************\
Writes the figure to the specified RDF.
Returns OK if succesfull.
\***************************************************************************/
/*
int IMR_Figure::Write_RDF(char *Filename)
{
IMR_Segment *Current;
IMR_ObjectKF_Joint *Curr_Joint;
int Current_Seg, Current_KF;
int RDF, Temp;
// Open the file:
RDF = open(Filename, O_RDWR | O_BINARY | O_CREAT | O_TRUNC,
S_IWUSR | S_IRUSR);
// If we can't, return an error:
if (RDF == -1)
{
ErrorCall("Could not open %s! (Object::Write_RDF())", Filename);
return ERR_BADFILE;
}
// Write id string:
write(RDF, "OBJ", 3);
// Write name of object:
write(RDF, Name, 8);
// Write number of segs:
write(RDF, &Num_Segs, 2);
// Write number of keyframes:
write(RDF, &Num_Keyframes, 2);
// Loop through each seg and write it to the file:
for (Current_Seg = 0; Current_Seg < Num_Segs; ++ Current_Seg)
{
// Set the current segment to this seg:
Current = Seg_List[Current_Seg];
// Write the name of the segment:
write(RDF, Current->Name, 8);
// Write the name of the model attached to this segment:
write(RDF, Current->Model_Name, 8);
// Write the pos:
Temp = Current->Position.X >> 16; write(RDF, &Temp, 2);
Temp = Current->Position.Y >> 16; write(RDF, &Temp, 2);
Temp = Current->Position.Z >> 16; write(RDF, &Temp, 2);
// Write the angle:
write(RDF, &Current->Angle.X, 2);
write(RDF, &Current->Angle.Y, 2);
write(RDF, &Current->Angle.Z, 2);
}
// Write all the keyframes:
for (Current_KF = 0; Current_KF < Num_Keyframes; Current_KF ++)
{
// Write the name of the keyframe:
write(RDF, Keyframes[Current_KF].Name, 8);
// Write the number of joints in the keyframe:
write(RDF, &Keyframes[Current_KF].Num_Joints, 2);
// Write all the joints:
Curr_Joint = Keyframes[Current_KF].JointList;
while (Curr_Joint)
{
// Write the segment for the joint:
write(RDF, Curr_Joint->Seg_Name, 8);
// Write the pos:
Temp = Curr_Joint->Position.X >> 16; write(RDF, &Temp, 2);
Temp = Curr_Joint->Position.Y >> 16; write(RDF, &Temp, 2);
Temp = Curr_Joint->Position.Z >> 16; write(RDF, &Temp, 2);
// Write the angle:
write(RDF, &Curr_Joint->Angle.X, 2);
write(RDF, &Curr_Joint->Angle.Y, 2);
write(RDF, &Curr_Joint->Angle.Z, 2);
// Set next joint:
Curr_Joint = Curr_Joint->Next;
}
}
// Close the file:
close(RDF);
// And return OK:
return OK;
}
*/
| [
"daniel@eduschedu.com"
] | daniel@eduschedu.com |
1452e6c1dfc97262b46551c28bf80ebe9b036a15 | 4adbe7ed4cd7c7e02a2b125b40ac5a4d34f4ea04 | /lab 1/traversing.cpp | 9f520d7bc98b9259dfe6ea9ab1f0343a11132451 | [] | no_license | mastimalkal/Data-structures-and-Algorithms | efdca3af22a4a4d21d7b47876323cceb604830ef | fa0ab434c03b4ecedf273da7d9785f237cdefed6 | refs/heads/master | 2020-03-15T04:34:27.120254 | 2018-06-27T20:25:35 | 2018-06-27T20:25:35 | 131,968,890 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 344 | cpp | #include<iostream>
using namespace std;
int main()
{
int arr[5];
int num;
cout<<"Enter values:"<<endl;
{
for(int i=0; i<5;i++)
cin>>arr[i];
}
cout<<"Enter a number to find:"<<endl;
cin>>num;
for(int j=0; j<5; j++)
{
if(num==arr[j])
{
cout<<num<<" "<<"is on location"<<" "<<j<<endl;
}
}
return 0;
}
| [
"noreply@github.com"
] | noreply@github.com |
1979e910a4a9b9446bca335309d8dda83066aeec | ceb7431363e36a4698a93540cdeafcd9d9b315ad | /lib/ARCMigrate/Transforms.cpp | a6535fa17d3cf1c2f8bbd1cbbdfbce989ff1903e | [
"MIT"
] | permissive | primitivorm/latino-llvm | 8b5d8759271eb6c328cb4c81a2523bbecce10222 | 33c820aeef006b7190e347e0839cf4f268b70639 | refs/heads/master | 2023-08-02T06:15:42.365363 | 2023-05-05T13:28:32 | 2023-05-05T13:28:32 | 133,191,211 | 4 | 2 | MIT | 2022-03-31T01:39:29 | 2018-05-12T23:39:50 | C++ | UTF-8 | C++ | false | false | 18,487 | cpp | //===--- Transforms.cpp - Transformations to ARC mode ---------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#include "Transforms.h"
#include "Internals.h"
#include "latino/ARCMigrate/ARCMT.h"
#include "latino/AST/ASTContext.h"
#include "latino/AST/RecursiveASTVisitor.h"
// #include "latino/Analysis/DomainSpecific/CocoaConventions.h"
#include "latino/Basic/SourceManager.h"
#include "latino/Basic/TargetInfo.h"
#include "latino/Lex/Lexer.h"
#include "latino/Lex/Preprocessor.h"
#include "latino/Sema/Sema.h"
using namespace latino;
using namespace arcmt;
using namespace trans;
ASTTraverser::~ASTTraverser() { }
bool MigrationPass::CFBridgingFunctionsDefined() {
if (!EnableCFBridgeFns.hasValue())
EnableCFBridgeFns = SemaRef.isKnownName("CFBridgingRetain") &&
SemaRef.isKnownName("CFBridgingRelease");
return *EnableCFBridgeFns;
}
//===----------------------------------------------------------------------===//
// Helpers.
//===----------------------------------------------------------------------===//
bool trans::canApplyWeak(ASTContext &Ctx, QualType type,
bool AllowOnUnknownClass) {
// if (!Ctx.getLangOpts().ObjCWeakRuntime)
// return false;
QualType T = type;
if (T.isNull())
return false;
// iOS is always safe to use 'weak'.
if (Ctx.getTargetInfo().getTriple().isiOS() ||
Ctx.getTargetInfo().getTriple().isWatchOS())
AllowOnUnknownClass = true;
while (const PointerType *ptr = T->getAs<PointerType>())
T = ptr->getPointeeType();
// if (const ObjCObjectPointerType *ObjT = T->getAs<ObjCObjectPointerType>()) {
// ObjCInterfaceDecl *Class = ObjT->getInterfaceDecl();
// if (!AllowOnUnknownClass && (!Class || Class->getName() == "NSObject"))
// return false; // id/NSObject is not safe for weak.
// if (!AllowOnUnknownClass && !Class->hasDefinition())
// return false; // forward classes are not verifiable, therefore not safe.
// if (Class && Class->isArcWeakrefUnavailable())
// return false;
// }
return true;
}
bool trans::isPlusOneAssign(const BinaryOperator *E) {
if (E->getOpcode() != BO_Assign)
return false;
return isPlusOne(E->getRHS());
}
bool trans::isPlusOne(const Expr *E) {
if (!E)
return false;
if (const FullExpr *FE = dyn_cast<FullExpr>(E))
E = FE->getSubExpr();
// if (const ObjCMessageExpr *
// ME = dyn_cast<ObjCMessageExpr>(E->IgnoreParenCasts()))
// if (ME->getMethodFamily() == OMF_retain)
// return true;
if (const CallExpr *
callE = dyn_cast<CallExpr>(E->IgnoreParenCasts())) {
if (const FunctionDecl *FD = callE->getDirectCallee()) {
if (FD->hasAttr<CFReturnsRetainedAttr>())
return true;
if (FD->isGlobal() &&
FD->getIdentifier() &&
FD->getParent()->isTranslationUnit() &&
FD->isExternallyVisible() &&
ento::cocoa::isRefType(callE->getType(), "CF",
FD->getIdentifier()->getName())) {
StringRef fname = FD->getIdentifier()->getName();
if (fname.endswith("Retain") ||
fname.find("Create") != StringRef::npos ||
fname.find("Copy") != StringRef::npos) {
return true;
}
}
}
}
const ImplicitCastExpr *implCE = dyn_cast<ImplicitCastExpr>(E);
while (implCE && implCE->getCastKind() == CK_BitCast)
implCE = dyn_cast<ImplicitCastExpr>(implCE->getSubExpr());
return implCE && implCE->getCastKind() == CK_ARCConsumeObject;
}
/// 'Loc' is the end of a statement range. This returns the location
/// immediately after the semicolon following the statement.
/// If no semicolon is found or the location is inside a macro, the returned
/// source location will be invalid.
SourceLocation trans::findLocationAfterSemi(SourceLocation loc,
ASTContext &Ctx, bool IsDecl) {
SourceLocation SemiLoc = findSemiAfterLocation(loc, Ctx, IsDecl);
if (SemiLoc.isInvalid())
return SourceLocation();
return SemiLoc.getLocWithOffset(1);
}
/// \arg Loc is the end of a statement range. This returns the location
/// of the semicolon following the statement.
/// If no semicolon is found or the location is inside a macro, the returned
/// source location will be invalid.
SourceLocation trans::findSemiAfterLocation(SourceLocation loc,
ASTContext &Ctx,
bool IsDecl) {
SourceManager &SM = Ctx.getSourceManager();
if (loc.isMacroID()) {
if (!Lexer::isAtEndOfMacroExpansion(loc, SM, Ctx.getLangOpts(), &loc))
return SourceLocation();
}
loc = Lexer::getLocForEndOfToken(loc, /*Offset=*/0, SM, Ctx.getLangOpts());
// Break down the source location.
std::pair<FileID, unsigned> locInfo = SM.getDecomposedLoc(loc);
// Try to load the file buffer.
bool invalidTemp = false;
StringRef file = SM.getBufferData(locInfo.first, &invalidTemp);
if (invalidTemp)
return SourceLocation();
const char *tokenBegin = file.data() + locInfo.second;
// Lex from the start of the given location.
Lexer lexer(SM.getLocForStartOfFile(locInfo.first),
Ctx.getLangOpts(),
file.begin(), tokenBegin, file.end());
Token tok;
lexer.LexFromRawLexer(tok);
if (tok.isNot(tok::semi)) {
if (!IsDecl)
return SourceLocation();
// Declaration may be followed with other tokens; such as an __attribute,
// before ending with a semicolon.
return findSemiAfterLocation(tok.getLocation(), Ctx, /*IsDecl*/true);
}
return tok.getLocation();
}
bool trans::hasSideEffects(Expr *E, ASTContext &Ctx) {
if (!E || !E->HasSideEffects(Ctx))
return false;
E = E->IgnoreParenCasts();
// ObjCMessageExpr *ME = dyn_cast<ObjCMessageExpr>(E);
// if (!ME)
// return true;
// switch (ME->getMethodFamily()) {
// case OMF_autorelease:
// case OMF_dealloc:
// case OMF_release:
// case OMF_retain:
// switch (ME->getReceiverKind()) {
// case ObjCMessageExpr::SuperInstance:
// return false;
// case ObjCMessageExpr::Instance:
// return hasSideEffects(ME->getInstanceReceiver(), Ctx);
// default:
// break;
// }
// break;
// default:
// break;
// }
return true;
}
bool trans::isGlobalVar(Expr *E) {
E = E->IgnoreParenCasts();
if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E))
return DRE->getDecl()->getDeclContext()->isFileContext() &&
DRE->getDecl()->isExternallyVisible();
if (ConditionalOperator *condOp = dyn_cast<ConditionalOperator>(E))
return isGlobalVar(condOp->getTrueExpr()) &&
isGlobalVar(condOp->getFalseExpr());
return false;
}
StringRef trans::getNilString(MigrationPass &Pass) {
return Pass.SemaRef.PP.isMacroDefined("nil") ? "nil" : "0";
}
namespace {
class ReferenceClear : public RecursiveASTVisitor<ReferenceClear> {
ExprSet &Refs;
public:
ReferenceClear(ExprSet &refs) : Refs(refs) { }
bool VisitDeclRefExpr(DeclRefExpr *E) { Refs.erase(E); return true; }
};
class ReferenceCollector : public RecursiveASTVisitor<ReferenceCollector> {
ValueDecl *Dcl;
ExprSet &Refs;
public:
ReferenceCollector(ValueDecl *D, ExprSet &refs)
: Dcl(D), Refs(refs) { }
bool VisitDeclRefExpr(DeclRefExpr *E) {
if (E->getDecl() == Dcl)
Refs.insert(E);
return true;
}
};
class RemovablesCollector : public RecursiveASTVisitor<RemovablesCollector> {
ExprSet &Removables;
public:
RemovablesCollector(ExprSet &removables)
: Removables(removables) { }
bool shouldWalkTypesOfTypeLocs() const { return false; }
bool TraverseStmtExpr(StmtExpr *E) {
CompoundStmt *S = E->getSubStmt();
for (CompoundStmt::body_iterator
I = S->body_begin(), E = S->body_end(); I != E; ++I) {
if (I != E - 1)
mark(*I);
TraverseStmt(*I);
}
return true;
}
bool VisitCompoundStmt(CompoundStmt *S) {
for (auto *I : S->body())
mark(I);
return true;
}
bool VisitIfStmt(IfStmt *S) {
mark(S->getThen());
mark(S->getElse());
return true;
}
bool VisitWhileStmt(WhileStmt *S) {
mark(S->getBody());
return true;
}
bool VisitDoStmt(DoStmt *S) {
mark(S->getBody());
return true;
}
bool VisitForStmt(ForStmt *S) {
mark(S->getInit());
mark(S->getInc());
mark(S->getBody());
return true;
}
private:
void mark(Stmt *S) {
if (!S) return;
while (auto *Label = dyn_cast<LabelStmt>(S))
S = Label->getSubStmt();
if (auto *E = dyn_cast<Expr>(S))
S = E->IgnoreImplicit();
if (auto *E = dyn_cast<Expr>(S))
Removables.insert(E);
}
};
} // end anonymous namespace
void trans::clearRefsIn(Stmt *S, ExprSet &refs) {
ReferenceClear(refs).TraverseStmt(S);
}
void trans::collectRefs(ValueDecl *D, Stmt *S, ExprSet &refs) {
ReferenceCollector(D, refs).TraverseStmt(S);
}
void trans::collectRemovables(Stmt *S, ExprSet &exprs) {
RemovablesCollector(exprs).TraverseStmt(S);
}
//===----------------------------------------------------------------------===//
// MigrationContext
//===----------------------------------------------------------------------===//
namespace {
class ASTTransform : public RecursiveASTVisitor<ASTTransform> {
MigrationContext &MigrateCtx;
typedef RecursiveASTVisitor<ASTTransform> base;
public:
ASTTransform(MigrationContext &MigrateCtx) : MigrateCtx(MigrateCtx) { }
bool shouldWalkTypesOfTypeLocs() const { return false; }
// bool TraverseObjCImplementationDecl(ObjCImplementationDecl *D) {
// ObjCImplementationContext ImplCtx(MigrateCtx, D);
// for (MigrationContext::traverser_iterator
// I = MigrateCtx.traversers_begin(),
// E = MigrateCtx.traversers_end(); I != E; ++I)
// (*I)->traverseObjCImplementation(ImplCtx);
// return base::TraverseObjCImplementationDecl(D);
// }
bool TraverseStmt(Stmt *rootS) {
if (!rootS)
return true;
BodyContext BodyCtx(MigrateCtx, rootS);
for (MigrationContext::traverser_iterator
I = MigrateCtx.traversers_begin(),
E = MigrateCtx.traversers_end(); I != E; ++I)
(*I)->traverseBody(BodyCtx);
return true;
}
};
}
MigrationContext::~MigrationContext() {
for (traverser_iterator
I = traversers_begin(), E = traversers_end(); I != E; ++I)
delete *I;
}
// bool MigrationContext::isGCOwnedNonObjC(QualType T) {
// while (!T.isNull()) {
// if (const AttributedType *AttrT = T->getAs<AttributedType>()) {
// if (AttrT->getAttrKind() == attr::ObjCOwnership)
// return !AttrT->getModifiedType()->isObjCRetainableType();
// }
// if (T->isArrayType())
// T = Pass.Ctx.getBaseElementType(T);
// else if (const PointerType *PT = T->getAs<PointerType>())
// T = PT->getPointeeType();
// else if (const ReferenceType *RT = T->getAs<ReferenceType>())
// T = RT->getPointeeType();
// else
// break;
// }
// return false;
// }
bool MigrationContext::rewritePropertyAttribute(StringRef fromAttr,
StringRef toAttr,
SourceLocation atLoc) {
if (atLoc.isMacroID())
return false;
SourceManager &SM = Pass.Ctx.getSourceManager();
// Break down the source location.
std::pair<FileID, unsigned> locInfo = SM.getDecomposedLoc(atLoc);
// Try to load the file buffer.
bool invalidTemp = false;
StringRef file = SM.getBufferData(locInfo.first, &invalidTemp);
if (invalidTemp)
return false;
const char *tokenBegin = file.data() + locInfo.second;
// Lex from the start of the given location.
Lexer lexer(SM.getLocForStartOfFile(locInfo.first),
Pass.Ctx.getLangOpts(),
file.begin(), tokenBegin, file.end());
Token tok;
lexer.LexFromRawLexer(tok);
if (tok.isNot(tok::at)) return false;
lexer.LexFromRawLexer(tok);
if (tok.isNot(tok::raw_identifier)) return false;
if (tok.getRawIdentifier() != "property")
return false;
lexer.LexFromRawLexer(tok);
if (tok.isNot(tok::l_paren)) return false;
Token BeforeTok = tok;
Token AfterTok;
AfterTok.startToken();
SourceLocation AttrLoc;
lexer.LexFromRawLexer(tok);
if (tok.is(tok::r_paren))
return false;
while (1) {
if (tok.isNot(tok::raw_identifier)) return false;
if (tok.getRawIdentifier() == fromAttr) {
if (!toAttr.empty()) {
Pass.TA.replaceText(tok.getLocation(), fromAttr, toAttr);
return true;
}
// We want to remove the attribute.
AttrLoc = tok.getLocation();
}
do {
lexer.LexFromRawLexer(tok);
if (AttrLoc.isValid() && AfterTok.is(tok::unknown))
AfterTok = tok;
} while (tok.isNot(tok::comma) && tok.isNot(tok::r_paren));
if (tok.is(tok::r_paren))
break;
if (AttrLoc.isInvalid())
BeforeTok = tok;
lexer.LexFromRawLexer(tok);
}
if (toAttr.empty() && AttrLoc.isValid() && AfterTok.isNot(tok::unknown)) {
// We want to remove the attribute.
if (BeforeTok.is(tok::l_paren) && AfterTok.is(tok::r_paren)) {
Pass.TA.remove(SourceRange(BeforeTok.getLocation(),
AfterTok.getLocation()));
} else if (BeforeTok.is(tok::l_paren) && AfterTok.is(tok::comma)) {
Pass.TA.remove(SourceRange(AttrLoc, AfterTok.getLocation()));
} else {
Pass.TA.remove(SourceRange(BeforeTok.getLocation(), AttrLoc));
}
return true;
}
return false;
}
bool MigrationContext::addPropertyAttribute(StringRef attr,
SourceLocation atLoc) {
if (atLoc.isMacroID())
return false;
SourceManager &SM = Pass.Ctx.getSourceManager();
// Break down the source location.
std::pair<FileID, unsigned> locInfo = SM.getDecomposedLoc(atLoc);
// Try to load the file buffer.
bool invalidTemp = false;
StringRef file = SM.getBufferData(locInfo.first, &invalidTemp);
if (invalidTemp)
return false;
const char *tokenBegin = file.data() + locInfo.second;
// Lex from the start of the given location.
Lexer lexer(SM.getLocForStartOfFile(locInfo.first),
Pass.Ctx.getLangOpts(),
file.begin(), tokenBegin, file.end());
Token tok;
lexer.LexFromRawLexer(tok);
if (tok.isNot(tok::at)) return false;
lexer.LexFromRawLexer(tok);
if (tok.isNot(tok::raw_identifier)) return false;
if (tok.getRawIdentifier() != "property")
return false;
lexer.LexFromRawLexer(tok);
if (tok.isNot(tok::l_paren)) {
Pass.TA.insert(tok.getLocation(), std::string("(") + attr.str() + ") ");
return true;
}
lexer.LexFromRawLexer(tok);
if (tok.is(tok::r_paren)) {
Pass.TA.insert(tok.getLocation(), attr);
return true;
}
if (tok.isNot(tok::raw_identifier)) return false;
Pass.TA.insert(tok.getLocation(), std::string(attr) + ", ");
return true;
}
void MigrationContext::traverse(TranslationUnitDecl *TU) {
for (traverser_iterator
I = traversers_begin(), E = traversers_end(); I != E; ++I)
(*I)->traverseTU(*this);
ASTTransform(*this).TraverseDecl(TU);
}
// static void GCRewriteFinalize(MigrationPass &pass) {
// ASTContext &Ctx = pass.Ctx;
// TransformActions &TA = pass.TA;
// DeclContext *DC = Ctx.getTranslationUnitDecl();
// Selector FinalizeSel =
// Ctx.Selectors.getNullarySelector(&pass.Ctx.Idents.get("finalize"));
// typedef DeclContext::specific_decl_iterator<ObjCImplementationDecl>
// impl_iterator;
// for (impl_iterator I = impl_iterator(DC->decls_begin()),
// E = impl_iterator(DC->decls_end()); I != E; ++I) {
// for (const auto *MD : I->instance_methods()) {
// if (!MD->hasBody())
// continue;
// // if (MD->isInstanceMethod() && MD->getSelector() == FinalizeSel) {
// // const ObjCMethodDecl *FinalizeM = MD;
// // Transaction Trans(TA);
// // TA.insert(FinalizeM->getSourceRange().getBegin(),
// // "#if !__has_feature(objc_arc)\n");
// // CharSourceRange::getTokenRange(FinalizeM->getSourceRange());
// // const SourceManager &SM = pass.Ctx.getSourceManager();
// // const LangOptions &LangOpts = pass.Ctx.getLangOpts();
// // bool Invalid;
// // std::string str = "\n#endif\n";
// // str += Lexer::getSourceText(
// // CharSourceRange::getTokenRange(FinalizeM->getSourceRange()),
// // SM, LangOpts, &Invalid);
// // TA.insertAfterToken(FinalizeM->getSourceRange().getEnd(), str);
// // break;
// // }
// }
// }
// }
//===----------------------------------------------------------------------===//
// getAllTransformations.
//===----------------------------------------------------------------------===//
static void traverseAST(MigrationPass &pass) {
MigrationContext MigrateCtx(pass);
if (pass.isGCMigration()) {
MigrateCtx.addTraverser(new GCCollectableCallsTraverser);
MigrateCtx.addTraverser(new GCAttrsTraverser());
}
MigrateCtx.addTraverser(new PropertyRewriteTraverser());
// MigrateCtx.addTraverser(new BlockObjCVariableTraverser());
MigrateCtx.addTraverser(new ProtectedScopeTraverser());
MigrateCtx.traverse(pass.Ctx.getTranslationUnitDecl());
}
static void independentTransforms(MigrationPass &pass) {
rewriteAutoreleasePool(pass);
removeRetainReleaseDeallocFinalize(pass);
rewriteUnusedInitDelegate(pass);
// removeZeroOutPropsInDeallocFinalize(pass);
makeAssignARCSafe(pass);
rewriteUnbridgedCasts(pass);
checkAPIUses(pass);
traverseAST(pass);
}
std::vector<TransformFn> arcmt::getAllTransformations(
LangOptions::GCMode OrigGCMode,
bool NoFinalizeRemoval) {
std::vector<TransformFn> transforms;
if (OrigGCMode == LangOptions::GCOnly && NoFinalizeRemoval)
transforms.push_back(GCRewriteFinalize);
transforms.push_back(independentTransforms);
// This depends on previous transformations removing various expressions.
transforms.push_back(removeEmptyStatementsAndDeallocFinalize);
return transforms;
}
| [
"cibercafe_montero@hotmail.com"
] | cibercafe_montero@hotmail.com |
4cfa78dc9f345720ee32be2d8ece360fc67a8345 | 93d4a019012e135427e5c14f98fddefb9979e906 | /post-processing/ex_multiple_effects/window.cpp | 75bb5bb3a364a1f1d83bb82654b9ff06268ad9cb | [] | no_license | kaabimg/opengl-demos | ebd2e5770e2be564a1ff68ad226641bd1afdb954 | 86581600e6256aa12d0e2afbb16b06b0bd78e8fc | refs/heads/master | 2021-01-01T06:41:03.755143 | 2013-07-04T19:55:57 | 2013-07-04T19:55:57 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,763 | cpp | #include "window.h"
#include "instancedhistogramscene.h"
#include <QKeyEvent>
#include <QMouseEvent>
#include <QOpenGLContext>
#include <QTimer>
Window::Window( const QSurfaceFormat& format, QScreen* screen )
: OpenGLWindow( format, screen ),
m_leftButtonPressed( false )
{
}
void Window::keyPressEvent( QKeyEvent* e )
{
InstancedHistogramScene* scene = static_cast<InstancedHistogramScene*>( this->scene() );
switch ( e->key() )
{
case Qt::Key_Space:
scene->toggleUpdates();
break;
case Qt::Key_Right:
scene->setSideSpeed( 0.3f );
break;
case Qt::Key_Left:
scene->setSideSpeed( -0.3f );
break;
case Qt::Key_Up:
scene->setForwardSpeed( 0.3f );
break;
case Qt::Key_Down:
scene->setForwardSpeed( -0.3f );
break;
case Qt::Key_PageUp:
scene->setVerticalSpeed( 0.3f );
break;
case Qt::Key_PageDown:
scene->setVerticalSpeed( -0.3f );
break;
case Qt::Key_Shift:
scene->setViewCenterFixed( true );
default:
OpenGLWindow::keyPressEvent( e );
}
}
void Window::keyReleaseEvent( QKeyEvent* e )
{
InstancedHistogramScene* scene = static_cast<InstancedHistogramScene*>( this->scene() );
switch ( e->key() )
{
case Qt::Key_Right:
case Qt::Key_Left:
scene->setSideSpeed( 0.0f );
break;
case Qt::Key_Up:
case Qt::Key_Down:
scene->setForwardSpeed( 0.0f );
break;
case Qt::Key_PageUp:
case Qt::Key_PageDown:
scene->setVerticalSpeed( 0.0f );
break;
case Qt::Key_Shift:
scene->setViewCenterFixed( false );
default:
OpenGLWindow::keyReleaseEvent( e );
}
}
void Window::mousePressEvent( QMouseEvent* e )
{
if ( e->button() == Qt::LeftButton )
{
m_leftButtonPressed = true;
m_pos = m_prevPos = e->pos();
}
OpenGLWindow::mousePressEvent( e );
}
void Window::mouseReleaseEvent( QMouseEvent* e )
{
if ( e->button() == Qt::LeftButton )
m_leftButtonPressed = false;
OpenGLWindow::mouseReleaseEvent( e );
}
void Window::mouseMoveEvent( QMouseEvent* e )
{
if ( m_leftButtonPressed )
{
m_pos = e->pos();
float dx = 1.0f * ( m_pos.x() - m_prevPos.x() );
float dy = -1.0f * ( m_pos.y() - m_prevPos.y() );
m_prevPos = m_pos;
InstancedHistogramScene* scene = static_cast<InstancedHistogramScene*>( this->scene() );
scene->pan( dx );
scene->tilt( dy );
}
OpenGLWindow::mouseMoveEvent( e );
}
| [
"flb@ubuntu.ubuntu-domain"
] | flb@ubuntu.ubuntu-domain |
d706ebba6e9d4db29a120edb34d00de4c4945fae | 250de1f388e705db9ad2bb0433648d003381fa9c | /dynamic_programming/dp33Astringintervleavedwithotherstring.cpp | f08e2cb644d935a420c075f4f0d3854a6027e804 | [] | no_license | parthsarthiprasad/Competitive_Programming | a13e82886a6576b3b1ba137278ada9582d64bfda | 1efaf0820be119f367b082f606ebf56a6f15564f | refs/heads/master | 2023-04-11T14:15:55.200053 | 2021-04-14T09:19:09 | 2021-04-14T09:19:09 | 254,834,306 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 723 | cpp | //check if a string is intervleaved
#include<bits/stdc++.h>
using namespace std;
bool findrecur(string &a,string &b,string &c, int indexa=0 , int indexb = 0, int indexc = 0){
if(indexa==a.size()) return true;
bool ans = false;
if(b.size()!=indexb && a[indexa]==b[indexb]){
ans= ans || findrecur(a,b,c,indexa+1,indexb+1,indexc);
}
if(!ans && (c.size()!=indexc && a[indexa] == c[indexc])){
ans = ans|| findrecur(a,b,c,indexa+1,indexb,indexc+1);
}
return ans;
}
int main(){
ios_base::sync_with_stdio(false);
cin.tie(NULL);
string a,b,c;
cin>>a>>b>>c;
if(findrecur(a,b,c)){
cout<<"TRUE"<<endl;
}else{
cout<<"FALSE"<<endl;
}
return 0;
} | [
"mepsp2000@gmail.com"
] | mepsp2000@gmail.com |
d74ccc0fae8b90e47fe16c68bc887ff9f621ca46 | dee9e7a5b9b0ecf3b9a8ddf7f30f972045217a45 | /gdem_client/keyframedelegate.cpp | 1d62466dff85962838ae99e7b7a72c4d578a9f52 | [] | no_license | shengzhe8688/QGlobe | 3e2d5c86ad6a2bff89f3773385fa8fd84d4ddf57 | 8e13b894fc1d89a18869c979740fefe47a161eeb | refs/heads/master | 2022-11-12T12:19:06.046336 | 2020-07-05T14:04:59 | 2020-07-05T14:04:59 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,887 | cpp |
#include "keyframedelegate.h"
#include "camerakeyframedlg.h"
#include "videokeyframedlg.h"
#include "keyframe.h"
CameraKeyFrameDelegate::CameraKeyFrameDelegate(QObject* parent)
:QItemDelegate(parent)
{
}
QWidget* CameraKeyFrameDelegate::createEditor(QWidget *parent,
const QStyleOptionViewItem & option,
const QModelIndex & index ) const
{
CameraKeyFrameDlg *b=new CameraKeyFrameDlg(parent);
return b;
}
void CameraKeyFrameDelegate::setEditorData(QWidget *editor,
const QModelIndex &index) const
{
CameraKeyFrameDlg* dlg= static_cast<CameraKeyFrameDlg*>(editor);
QVariant v=index.model()->data(index, Qt::UserRole);
CameraKeyFrame ckf=v.value<CameraKeyFrame>();
dlg->SetData(&ckf);
}
void CameraKeyFrameDelegate::setModelData(QWidget *editor, QAbstractItemModel *model,
const QModelIndex &index) const
{
CameraKeyFrameDlg *dlg = static_cast<CameraKeyFrameDlg*>(editor);
CameraKeyFrame* data=dlg->getData();
QVariant v;
v.setValue(*data);
model->setData(index, v, Qt::UserRole);
model->setData(index, data->label(), Qt::EditRole);
}
void CameraKeyFrameDelegate::updateEditorGeometry(QWidget *editor,
const QStyleOptionViewItem &option, const QModelIndex &/* index */) const
{
/*int left=option.rect.left()+option.rect.width()/2;
int top=option.rect.top()+option.rect.height()/2;
editor->move(left,top);*/
}
VideoKeyFrameDelegate::VideoKeyFrameDelegate(QObject* parent)
:QItemDelegate(parent)
{
m_videoWidget=new Phonon::VideoWidget();
m_videoWidget->setVisible(false);
Phonon::createPath(&m_MediaObject, m_videoWidget);
Phonon::createPath(&m_MediaObject, &m_AudioOutput);
}
VideoKeyFrameDelegate::~VideoKeyFrameDelegate()
{
delete m_videoWidget;
}
QWidget* VideoKeyFrameDelegate::createEditor(QWidget *parent,
const QStyleOptionViewItem & option,
const QModelIndex & index ) const
{
VideoKeyFrameDlg *b=new VideoKeyFrameDlg(NULL);
return b;
}
void VideoKeyFrameDelegate::setEditorData(QWidget *editor,
const QModelIndex &index) const
{
VideoKeyFrameDlg* dlg= static_cast<VideoKeyFrameDlg*>(editor);
QVariant v=index.model()->data(index, Qt::UserRole);
VideoKeyFrame vkf=v.value<VideoKeyFrame>();
dlg->setData(&vkf);
}
void VideoKeyFrameDelegate::setModelData(QWidget *editor, QAbstractItemModel *model,
const QModelIndex &index) const
{
VideoKeyFrameDlg* dlg= static_cast<VideoKeyFrameDlg*>(editor);
VideoKeyFrame* data=dlg->getData();
QVariant v;
v.setValue(*data);
model->setData(index, v, Qt::UserRole);
model->setData(index, data->label(), Qt::EditRole);
}
void VideoKeyFrameDelegate::updateEditorGeometry(QWidget *editor,
const QStyleOptionViewItem &option, const QModelIndex &/* index */) const
{
}
| [
"wugis3@yahoo.com"
] | wugis3@yahoo.com |
d461d569b98e8559df068eff2ec3998309e2c1aa | 924f7050b51da698a23dd5d17d7aa1fdc30618f2 | /AutoIndicators/includes.h | 1ddc67a6b68e4f82f2ed8b21d08930a2288b5d48 | [
"MIT"
] | permissive | ContionMig/Trading-Auto-Indicator | e6124e92e53e33b92e9305201224f4637ff7a319 | a133de4fe36e77a378742dc80c1265641383ce26 | refs/heads/main | 2023-08-01T06:32:40.304182 | 2021-09-08T10:24:35 | 2021-09-08T10:24:35 | 404,290,595 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 641 | h | #pragma once
#include <string>
#include <iostream>
#include <filesystem>
#include <fstream>
#include <vector>
#include <thread>
#include <Windows.h>
#include <numeric>
#include <time.h>
#include <conio.h>
#include <stdio.h>
#include <WinCon.h>
#include <map>
#include <string_view>
#include <sstream>
#include <rapidjson/document.h>
#include <rapidjson/writer.h>
#include <rapidjson/stringbuffer.h>
#include <rapidjson/filewritestream.h>
#include "struct.h"
#include "threads.h"
#include "helper.h"
#include "indicator.h"
#include "console.h"
#include "logging.h"
#include "settings.h"
#include "TextTable.h" | [
"noreply@github.com"
] | noreply@github.com |
9c6e77e04d79059aaf6f626047d2bace5dfe0ea7 | 9b727ccbf91d12bbe10adb050784c04b4753758c | /ZOJ/vol14/ZOJ_2326.cpp | be3904c994dc85c72b5f4c6e791399e4aad6bf23 | [] | no_license | codeAligned/acm-icpc-1 | b57ab179228f2acebaef01082fe6b67b0cae6403 | 090acaeb3705b6cf48790b977514965b22f6d43f | refs/heads/master | 2020-09-19T19:39:30.929711 | 2015-10-06T15:13:12 | 2015-10-06T15:13:12 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,172 | cpp | #include <cstdio>
#include <cstring>
const int MAXN=2005;
const int inf=100000000;
typedef char string[25];
double g[MAXN][MAXN];
string s[MAXN];
bool vis[MAXN];
double dis[MAXN];
int n;
int getid(string a)
{
for (int i=1; i<=n; i++)
if (strcmp(a,s[i])==0) return i;
}
double prim()
{
double minweight=0;
for (int i=1; i<=n; i++)
{
dis[i]=inf;
vis[i]=0;
}
dis[1]=0;
while (1)
{
double min=inf;
int u;
for (int i=1; i<=n; i++)
if (!vis[i]&&min>dis[i])
{
min=dis[i];
u=i;
}
if (min==inf) break;
minweight+=min; vis[u]=1;
for (int v=1; v<=n; v++)
if (!vis[v]&&dis[v]>g[u][v])
dis[v]=g[u][v];
}
return minweight;
}
int main()
{
double tot;
scanf("%lf%d",&tot,&n);
for (int i=1; i<=n; i++)
for (int j=1; j<=n; j++)
g[i][j]=inf;
for (int i=1; i<=n; i++) scanf("%s",s[i]);
int m; scanf("%d",&m);
while (m--)
{
int u,v;
string a,b;
scanf("%s%s",a,b);
u=getid(a); v=getid(b);
scanf("%lf",&g[u][v]);
g[v][u]=g[u][v];
}
double ans=prim();
if (ans<=tot) printf("Need %.1f miles of cable\n",ans);
else printf("Not enough cable\n");
return 0;
}
| [
"zimpha@gmail.com"
] | zimpha@gmail.com |
22244c83bbcef2847b59f57a5d6a71ce267ba84b | 703a5beeea71685748e71e897e34d2de77b24dde | /src/lampdelegates/noteditabledelegate.h | a45d3710fc5fa3606b32f444e241c88b902d0340 | [] | no_license | bagautdinovrf/lampbox | f10182c8339b16eb8ffed0dfe0733fbbcad124e7 | 75a7e6ee9d3ea142d18e5c1ba56f2ee7a4eda715 | refs/heads/main | 2023-06-20T11:19:53.671424 | 2021-07-17T12:00:41 | 2021-07-17T12:00:41 | 370,701,716 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 419 | h | #ifndef NOTEDITABLEDELEGATE_H
#define NOTEDITABLEDELEGATE_H
#include <QItemDelegate>
class NotEditableDelegate : public QItemDelegate
{
Q_OBJECT
public:
explicit NotEditableDelegate(QObject *parent = 0)
: QItemDelegate(parent)
{}
protected:
QWidget* createEditor(QWidget *, const QStyleOptionViewItem &, const QModelIndex &) const
{ return Q_NULLPTR; }
};
#endif // NOTEDITABLEDELEGATE_H
| [
"bagautdinovrf@gmail.com"
] | bagautdinovrf@gmail.com |
b5028382291e332221b147bd9a85245a03a76059 | 888b3c310a06dffd041cd0b38f4c5a806308d289 | /include/echo_node.h | 441c69a9a82584067501d23aa240342da8145a4b | [] | no_license | Shanmuganandh/wfcore | 710158b847332ad24f3d332bb92106933891ce55 | ee63279a67b43d35eb5a9a7e60018e445719024f | refs/heads/master | 2021-06-01T17:21:01.040985 | 2016-09-25T11:46:37 | 2016-09-25T11:46:37 | 69,160,987 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 438 | h | #ifndef ECHO_NODE_H
#define ECHO_NODE_H
#include <memory>
#include <string>
using namespace std;
namespace wfcore {
class EchoNode : public Node {
public:
EchoNode(Attribute &a);
~EchoNode();
int exec(Context *);
static shared_ptr<Node> ConsNode(Attribute &a) {
return dynamic_pointer_cast<Node>(make_shared<EchoNode>(a));
}
private:
string message;
};
}
#endif
| [
"shan.anand@gmail.com"
] | shan.anand@gmail.com |
7c788d084e3689111b37609945a4266acb897977 | 11e65430e08a401b27977c263f1523b9c0e9c7f8 | /canregdlg.cpp | 2754985804f532452d23fb6a2d48266e8d8fbaea | [] | no_license | Ga-vin/CanRegConfigurationTool | c5089e2e8a6880db28ad056e1bd53b8d16039027 | b783bd2243d8f3ca498e850d1815a1055cef977d | refs/heads/master | 2021-01-20T19:52:43.779993 | 2016-08-01T16:09:45 | 2016-08-01T16:09:45 | 64,231,138 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 11,763 | cpp | #include <QtGui>
#include <QtCore>
#include <QTextCodec>
#include <QDebug>
#include <QtXml/QDomDocument>
#include <QtXml/QDomElement>
#include <QtXml/QDomNode>
#include "canregdlg.h"
CanRegDlg::CanRegDlg(QWidget *parent)
:QDialog(parent),
file_name("")
{
QTextCodec::setCodecForTr(QTextCodec::codecForName("utf-8"));
this->initWidgets();
this->setWindowTitle(QObject::tr("CAN总线寄存器配置工具 --- By Gaivn.Bai"));
this->resize(1000, 800);
this->setWindowIcon(QIcon(":/images/main.png"));
this->openFile();
this->loadFile();
}
CanRegDlg::~CanRegDlg()
{
delete this->p_tab_can_mode;
delete this->p_tab_can_regs;
delete this->p_tab_can_sub_items;
delete this->p_txt_can_mode;
delete this->p_txt_can_regs;
delete this->p_txt_can_sub_items;
delete this->p_grp_can_mode;
delete this->p_grp_can_regs;
delete this->p_grp_can_sub_items;
delete this->p_com_bit_value;
}
bool CanRegDlg::openFile()
{
QString file_name = QFileDialog::getOpenFileName(0,
QObject::tr("选择打开的文件"),
QObject::tr("请选择一个文件来打开"),
QString(QObject::tr("Xml文件(*.xml)")));
if ( file_name.isEmpty()) {
QMessageBox::warning(0,
QObject::tr("错误提示"),
QObject::tr("选择的文件为空"));
return (false);
} else {
this->setFileName(file_name);
return (true);
}
}
bool CanRegDlg::loadFile()
{
if ( !this->getFileName().isEmpty()) {
QFile file(this->getFileName());
if ( !file.open(QIODevice::Text | QIODevice::ReadOnly)) {
QMessageBox::warning(0,
QObject::tr("错误提示"),
QObject::tr("无法打开文件:%1 -- %2").arg(this->getFileName()).arg(file.errorString()));
return (false);
}
if ( !this->parseXml(file)) {
QMessageBox::warning(0,
QObject::tr("错误提示"),
QObject::tr("无法解析XML文件"));
return (false);
}
} else {
QMessageBox::warning(0,
QObject::tr("错误提示"),
QObject::tr("文件名为空"));
return (false);
}
return (false);
}
bool CanRegDlg::parseXml(QFile &file)
{
if ( !file.isOpen()) {
QMessageBox::warning(0,
QObject::tr("错误提示"),
QObject::tr("文件还没有被打开"));
return (false);
}
QDomDocument document;
int row;
int col;
QString error;
if ( !document.setContent(&file, false, &error, &row, &col)) {
QMessageBox::warning(0,
QObject::tr("错误提示"),
QObject::tr("解析XML文件错误发生于%1行%2列").arg(row).arg(col));
return (false);
}
/* 从XML文件中获取相应每个节点的具体细节 */
/* 获取各个模式 */
QStringList mode_names = this->getCanModeLists(document);
if ( mode_names.count() > 0) {
for (int i = 0; i != mode_names.count(); ++i) {
CanRegNode mode(mode_names.at(i));
QList<CanReg> lists = this->getCanRegLists(document, mode_names.at(i));
if ( lists.count() > 0) {
for (int j = 0; j != lists.count(); ++j) {
mode.addRegNode(lists.at(j));
}
}
this->can_reg_nodes.append(mode);
}
this->displayCanMode(mode_names);
return (true);
} else {
return (false);
}
return (false);
}
QString CanRegDlg::getFileName() const
{
return (this->file_name);
}
void CanRegDlg::setFileName(const QString &file_name)
{
if ( this->getFileName() != file_name) {
this->file_name = file_name;
}
}
QStringList CanRegDlg::getCanModeLists(QDomDocument &document)
{
QStringList mode_names;
if ( document.isNull()) {
QMessageBox::warning(0,
QObject::tr("错误提示"),
QObject::tr("该XML文件为空"));
return (mode_names);
}
QDomElement root = document.documentElement();
QDomNodeList node_list = root.childNodes();
for (int i = 0; i != node_list.count(); ++i) {
QDomNode item = node_list.at(i);
qDebug() << "Tag: " << item.toElement().attribute("mode");
mode_names.append(item.toElement().attribute("mode"));
}
return (mode_names);
}
QList<CanReg> CanRegDlg::getCanRegLists(QDomDocument &document, const QString &mode_name)
{
QList<CanReg> reg_list;
if ( !document.isNull()) {
QDomElement root = document.documentElement();
/* 获取各种模式 */
QDomNodeList top_node_list = root.childNodes();
if ( top_node_list.count() > 0) {
for ( int i = 0; i != top_node_list.count(); ++i) {
//qDebug() << "Get Reg Lists: " << top_node_list.at(i).toElement().tagName() << " Mode name: " << mode_name;
if ( mode_name == top_node_list.at(i).toElement().attribute("mode")) {
if ( top_node_list.at(i).hasChildNodes()) {
/* 获取特定模式下的各个寄存器 */
QDomNodeList sub_node_list = top_node_list.at(i).childNodes();
//qDebug() << "Mode: " << mode_name << "Sub_Node Count: " << sub_node_list.count();
if ( sub_node_list.count() > 0) {
CanReg sub_reg;
for (int j = 0; j != sub_node_list.count(); ++j) {
QDomNode sub_node = sub_node_list.at(j); /* 寄存器节点 */
//qDebug() << sub_node.toElement().attribute("name");
/* 获取对应该寄存器下的相应特性 */
sub_reg = this->getCanReg(sub_node.childNodes());
sub_reg.setRegName(sub_node.toElement().attribute("name"));
this->dispalyReg(sub_reg);
}
reg_list.append(sub_reg);
}
}
}
}
}
}
return (reg_list);
}
bool CanRegDlg::addRowItem(QTableWidget *p_object, int row, int col, const QString &contents)
{
if ( row > p_object->rowCount()) {
QMessageBox::warning(0,
QObject::tr("错误提示"),
QObject::tr("行数已经超过最大行数"));
return (false);
}
if ( !contents.isEmpty()) {
p_object->setItem(row, col, new QTableWidgetItem(contents));
return (true);
} else {
return (false);
}
}
void CanRegDlg::displayCanMode(const QStringList &mode_lists)
{
this->p_tab_can_mode->setRowCount(mode_lists.count());
for (int i = 0; i != mode_lists.count(); ++i) {
this->addRowItem(this->p_tab_can_mode, i, 0, mode_lists.at(i));
}
}
void CanRegDlg::displayCanRegs(const QStringList ®_lists)
{
}
CanRegNode CanRegDlg::getCanRegNodeByMode(const QString &mode_name)
{
CanRegNode reg_node;
for (QList<CanRegNode>::const_iterator iter = this->can_reg_nodes.begin(); iter != this->can_reg_nodes.end(); ++iter) {
reg_node = *iter;
if ( mode_name == reg_node.getCurrentMode()) {
return (reg_node);
}
}
return (reg_node);
}
CanReg CanRegDlg::getCanReg(const QDomNodeList &nodes)
{
CanReg reg;
bool ok = false;
if ( nodes.count() > 0) {
for (int i = 0; i != nodes.count(); ++i) {
QDomElement element = nodes.at(i).toElement();
if ( "OFFSET" == element.tagName()) {
reg.setRegOffset(element.text().toInt(&ok, 16));
//qDebug() << "Convert: " << element.text().toInt(&ok, 16);
} else if ( "PROPERTY" == element.tagName()) {
reg.setRegRdWrAttr(reg.convertStrToAttr(element.text()));
//qDebug() << "Attr: " << element.text();
} else if ( "WORK" == element.tagName()) {
/* 解析工作模式下该寄存器各个位的含义 */
/* Todo here */
} else if ( "RESET" == element.tagName()) {
/* 解析复位模式下该寄存器各个位的含义 */
/* Todo here */
}
}
}
return reg;
}
bool CanRegDlg::addCanRegNode(const CanRegNode &node)
{
if ( !node.getCurrentMode().isEmpty()) {
this->can_reg_nodes.append(node);
return (true);
} else {
return (false);
}
}
void CanRegDlg::dispalyReg(const CanReg ®)
{
qDebug() << "Name: " << reg.getRegName();
qDebug() << "Offset: " << reg.getRegOffset();
qDebug() << "Attr: " << reg.getRegRdWrAttr();
}
void CanRegDlg::initWidgets()
{
p_grp_can_mode = new QGroupBox(QObject::tr("Can模式显示"));
p_grp_can_regs = new QGroupBox(QObject::tr("Can寄存器显示"));
p_grp_can_sub_items = new QGroupBox(QObject::tr("子项目"));
/* Can 模式设置 */
p_tab_can_mode = new QTableWidget(0, 1);
p_tab_can_mode->setHorizontalHeaderItem(0, new QTableWidgetItem(QObject::tr("模式名称")));
p_txt_can_mode = new QTextEdit;
p_txt_can_mode->setReadOnly(true);
QVBoxLayout *p_layout_mode = new QVBoxLayout;
p_layout_mode->addWidget(p_tab_can_mode);
p_layout_mode->addWidget(p_txt_can_mode);
p_grp_can_mode->setLayout(p_layout_mode);
/* Can寄存器设置 */
p_tab_can_regs = new QTableWidget(0, 2);
p_tab_can_regs->setHorizontalHeaderItem(0, new QTableWidgetItem(QObject::tr("寄存器名称")));
p_tab_can_regs->setHorizontalHeaderItem(1, new QTableWidgetItem(QObject::tr("读写方式")));
p_txt_can_regs = new QTextEdit;
p_txt_can_regs->setReadOnly(true);
QVBoxLayout *p_layout_regs = new QVBoxLayout;
p_layout_regs->addWidget(p_tab_can_regs);
p_layout_regs->addWidget(p_txt_can_regs);
p_grp_can_regs->setLayout(p_layout_regs);
/* Can子项设置 */
p_tab_can_sub_items = new QTableWidget(0, 2);
p_tab_can_sub_items->setHorizontalHeaderItem(0, new QTableWidgetItem(QObject::tr("子项")));
p_tab_can_sub_items->setHorizontalHeaderItem(1, new QTableWidgetItem(QObject::tr("子项值")));
QVBoxLayout *p_layout_sub_items = new QVBoxLayout;
p_layout_sub_items->addWidget(p_tab_can_sub_items);
p_grp_can_sub_items->setLayout(p_layout_sub_items);
QLabel *p_lab_bit_value = new QLabel(QObject::tr("值:"));
p_com_bit_value = new QComboBox;
QHBoxLayout *p_layout_value = new QHBoxLayout;
p_layout_value->addWidget(p_lab_bit_value);
p_layout_value->addWidget(p_com_bit_value);
p_txt_can_sub_items = new QTextEdit;
p_txt_can_sub_items->setReadOnly(true);
QVBoxLayout *p_layout_left = new QVBoxLayout;
p_layout_left->addWidget(p_grp_can_mode);
p_layout_left->addWidget(p_grp_can_regs);
QVBoxLayout *p_layout_right = new QVBoxLayout;
p_layout_right->addWidget(p_grp_can_sub_items);
p_layout_right->addLayout(p_layout_value);
p_layout_right->addWidget(p_txt_can_sub_items);
QHBoxLayout *p_layout = new QHBoxLayout;
p_layout->addLayout(p_layout_left);
p_layout->addLayout(p_layout_right);
this->setLayout(p_layout);
}
| [
"gavin_8724@163.com"
] | gavin_8724@163.com |
987ebc896dee31b47e3d72694120b24278304e3c | 582277700d0833cfcf598c13f14f67c7e0d7e83c | /src/unmanaged/OpenLiveWriter.Filter/UnicodeTextStreamSubFilter.h | 64fb1bc2935f3f7b9c161d3f7cb8d0e2e4c5984e | [
"MIT"
] | permissive | DotNetContrib/OpenLiveWriter | 81ebeeb02e05de458c22611a3dd5c2ca7453366f | f171f6d7a3ecf7686d4415a5b8386adf5383a226 | refs/heads/master | 2020-12-28T11:55:16.518832 | 2020-02-04T23:00:15 | 2020-02-04T23:00:15 | 238,322,435 | 1 | 0 | NOASSERTION | 2020-02-04T22:45:06 | 2020-02-04T22:45:05 | null | UTF-8 | C++ | false | false | 590 | h | // Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for details.
#pragma once
#include "subfilter.h"
class UnicodeTextStreamSubFilter :
public SubFilter
{
BOOL done;
FULLPROPSPEC propSpec;
CComPtr<IStream> stream;
public:
UnicodeTextStreamSubFilter(const FULLPROPSPEC &propSpec, IStream *sourceStream);
virtual ~UnicodeTextStreamSubFilter(void);
SCODE GetChunk(
STAT_CHUNK * pStat
);
SCODE GetText(
ULONG * pcwcBuffer,
WCHAR * awcBuffer
);
SCODE GetValue(
PROPVARIANT ** ppPropValue
);
};
| [
"willduff@gmail.com"
] | willduff@gmail.com |
c86505b28425c586c808b839129f5336f454ebff | d14d72000a3d945e564e81d433d1ed1cdc602623 | /Code3.cpp | 91dfe601ab0424f0be2a85c6c2eb3a3aef4545af | [] | no_license | procheta1999/learnbyte-assignment03 | 35db6fe34b1901bebec496dd4507cfaa8372a427 | 0289251fbfc55f8fe1201bc7d6616c1c0cc60fc6 | refs/heads/master | 2023-06-24T17:14:22.540430 | 2021-07-27T10:39:25 | 2021-07-27T10:39:25 | 389,926,541 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 308 | cpp | #include <iostream>
using namespace std;
int main()
{
int n,arr[40],count=0,x;
cin>>n>>x;
for(int i=0;i<n;i++)
{
cin>>arr[i];
}
for(int i=0;i<n;i++)
{
if(x==arr[i])
{
count++;
}
}
cout<<"The count is:"<<count<<endl;
return 0;
}
| [
"noreply@github.com"
] | noreply@github.com |
624790d3dcc61607b8c770533da907eeaeb700b4 | d86d06c237cd03f1bc729bc1e01cefd0d92bf7bb | /Datos-I/Practicas/Practica-II/Huffman's-Algorithm.hpp | 77e46a1e8cc5ed9589908adaa68f211a2839e333 | [] | no_license | emonto15/Universidad | 03ba2a077a345c4223cf9bbead477498acfd984f | 7ea73a79933100a82abd0b17f81462d3cfb85a5d | refs/heads/master | 2021-01-21T21:39:05.708621 | 2016-05-19T13:39:38 | 2016-05-19T13:39:38 | 42,889,969 | 0 | 0 | null | 2015-10-11T18:15:04 | 2015-09-21T19:49:44 | C++ | UTF-8 | C++ | false | false | 675 | hpp | //
// Huffman's Algorithm.hpp
// Huffman's Algorithm
//
// Created by Edwin Montoya on 10/10/15.
// Copyright © 2015 Edwin Montoya. All rights reserved.
//
#ifndef Huffman_s_Algorithm_hpp
#define Huffman_s_Algorithm_hpp
#include <stdio.h>
#include <stdio.h>
#include <iostream>
#include <fstream>
#include <sstream>
using namespace std;
void phaseOne();
void organize(int *b,int h, int n);
void min_heapify(int *a, int i, int n,int *b);
void HeapSort(int *a,int n, int *b);
void build_minheap(int *a, int n, int *b);
void phaseTwo(int *A,int half);
void phaseThree(int *A, int n);
void Allocation(int *A, int maxlength, int n);
#endif /* Huffman_s_Algorithm_hpp */
| [
"emonto15@eafit.edu.co"
] | emonto15@eafit.edu.co |
f542560a10407ffcf5e163a0914a61886e7dc83c | f2bdc7e39b23bc645ee66f582633c09b75560a35 | /src/utils/io/can.cpp | 4781b0dfe3ec1bc78a53cd0bd4447e64950895d1 | [] | no_license | Hyp-ed/hyped-2020 | c8d19676606d9f437ec77e7328308d1461b7a7b8 | 5cef10bf72c22c25b5d12c3cc41336db38c70665 | refs/heads/develop | 2021-07-01T08:25:40.985966 | 2020-04-27T13:10:19 | 2020-04-27T13:10:19 | 218,743,061 | 10 | 2 | null | 2020-10-21T18:01:29 | 2019-10-31T10:42:46 | C++ | UTF-8 | C++ | false | false | 4,770 | cpp | /*
* Authors: M. Kristien
* Organisation: HYPED
* Date: 14. March 2018
* Description:
*
* Copyright 2018 HYPED
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "utils/io/can.hpp"
#include <stdio.h>
#include <unistd.h>
#include <sys/socket.h>
#include <net/if.h>
#if LINUX
#include <linux/can.h>
#else
#define CAN_MAX_DLEN 8
struct can_frame {
uint32_t can_id; /* 32 bit CAN_ID + EFF/RTR/ERR flags */
uint8_t can_dlc; /* frame payload length in byte (0 .. CAN_MAX_DLEN) */
uint8_t __pad; /* padding */
uint8_t __res0; /* reserved / padding */
uint8_t __res1; /* reserved / padding */
uint8_t data[CAN_MAX_DLEN] __attribute__((aligned(8)));
};
#ifndef PF_CAN
#define PF_CAN 29
#define AF_CAN PF_CAN
#endif // if LINUX
#define CAN_RAW 1
#define CAN_MTU (sizeof(struct can_frame))
struct sockaddr_can {
uint16_t can_family;
int can_ifindex;
union {
struct { uint32_t rx_id, tx_id; } tp;
} can_addr;
};
#endif // CAN
namespace hyped {
namespace utils {
namespace io {
Can::Can()
: concurrent::Thread(0)
{
if ((socket_ = socket(PF_CAN, SOCK_RAW, CAN_RAW)) < 0) {
log_.ERR("CAN", "Could not open can socket");
return;
}
sockaddr_can addr;
addr.can_family = AF_CAN;
addr.can_ifindex = if_nametoindex("can0"); // ifr.ifr_ifindex;
if (addr.can_ifindex == 0) {
log_.ERR("CAN", "Could not find can0 network interface");
close(socket_);
socket_ = -1;
return;
}
if (bind(socket_, (struct sockaddr *)&addr, sizeof(addr)) < 0) {
log_.ERR("CAN", "Could not bind can socket");
close(socket_);
socket_ = -1;
return;
}
log_.INFO("CAN", "socket successfully created"); // TODO(Gregor): log this only if successful
}
Can::~Can()
{
running_ = false;
}
void Can::start()
{
if (running_) return; // already started
running_ = true;
concurrent::Thread::start();
}
int Can::send(const can::Frame& frame)
{
if (socket_ < 0) return 0; // early exit if no can device present
can_frame can;
log_.DBG2("CAN", "trying to send something");
// checks, id <= ID_MAX, len <= LEN_MAX
if (frame.len > 8) {
log_.ERR("CAN", "trying to send message of more than 8 bytes, bytes: %d", frame.len);
return 0;
}
can.can_id = frame.id;
can.can_id |= frame.extended ? can::Frame::kExtendedMask : 0; // add extended id flag
can.can_dlc = frame.len;
for (int i = 0; i < frame.len; i++) {
can.data[i] = frame.data[i];
}
{
concurrent::ScopedLock L(&socket_lock_);
if (write(socket_, &can, CAN_MTU) != CAN_MTU) {
log_.ERR("CAN", "cannot write to socket");
return 0;
}
}
log_.DBG1("CAN", "message with id %d sent, extended:%d",
frame.id, frame.extended);
return 1;
}
void Can::run()
{
/* these settings are static and can be held out of the hot path */
can::Frame data;
log_.INFO("CAN", "starting continuous reading");
while (running_ && socket_ >= 0) {
receive(&data);
processNewData(&data);
}
log_.INFO("CAN", "stopped continuous reading");
if (socket_ >= 0) close(socket_);
}
int Can::receive(can::Frame* frame)
{
size_t nBytes;
can_frame raw_data;
nBytes = read(socket_, &raw_data, CAN_MTU);
if (nBytes != CAN_MTU) {
// perror("read");
log_.ERR("CAN", "cannot read from socket");
return 0;
}
frame->id = raw_data.can_id & ~can::Frame::kExtendedMask;
frame->extended = raw_data.can_id & can::Frame::kExtendedMask;
frame->len = raw_data.can_dlc;
for (int i = 0; i < frame->len; i++) {
frame->data[i] = raw_data.data[i];
}
log_.DBG1("CAN", "received %u %u, extended %d",
raw_data.can_id, frame->id, frame->extended);
return 1;
}
void Can::processNewData(can::Frame* message)
{
CanProccesor* owner = 0;
for (CanProccesor* processor : processors_) {
if (processor->hasId(message->id, message->extended)) {
owner = processor;
break;
}
}
if (owner) {
owner->processNewData(*message);
} else {
log_.ERR("CAN", "did not find owner of received CAN message with id %d", message->id);
}
}
void Can::registerProcessor(CanProccesor* processor)
{
processors_.push_back(processor);
}
}}} // namespace hyped::utils::io
| [
"neilweidingern@gmail.com"
] | neilweidingern@gmail.com |
84b8cb67785a7cd930f36df7d4a637d74e99e80c | ab64c31cf73ff4ed26a7260e5b6e3ef22b3ba04c | /Range_Limited_demo/SourceCode/OpenCL_HDL_Lib/test_single_cycle_lib/test_hdl_lib/host/src/main.cpp | b72e60f721c1ab011aa5bed238d2755dbca589f2 | [] | no_license | lihaokang/SC2019_MD | 3c85cce2d5e93533116db6ba1ddb1b36f06a8dc9 | 631309f2f201b7deb613c2d23ceef17f14882d0e | refs/heads/master | 2022-02-27T16:22:55.012657 | 2019-09-18T17:56:02 | 2019-09-18T17:56:02 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 29,953 | cpp | // Copyright (C) 2013-2018 Altera Corporation, San Jose, California, USA. 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.
//
// This agreement shall be governed in all respects by the laws of the State of California and
// by the laws of the United States of America.
///////////////////////////////////////////////////////////////////////////////////
// This host program executes a vector addition kernel to perform:
// C = A + B
// where A, B and C are vectors with N elements.
//
// This host program supports partitioning the problem across multiple OpenCL
// devices if available. If there are M available devices, the problem is
// divided so that each device operates on N/M points. The host program
// assumes that all devices are of the same type (that is, the same binary can
// be used), but the code can be generalized to support different device types
// easily.
//
// Verification is performed against the same computation on the host CPU.
///////////////////////////////////////////////////////////////////////////////////
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include "CL/opencl.h"
#include "AOCLUtils/aocl_utils.h"
using namespace aocl_utils;
// OpenCL runtime configuration
cl_platform_id platform = NULL;
unsigned num_devices = 1;
scoped_array<cl_device_id> device; // num_devices elements
cl_context context = NULL;
scoped_array<cl_command_queue> queue; // num_devices elements
cl_program program = NULL;
scoped_array<cl_kernel> kernel; // num_devices elements
#if USE_SVM_API == 0
scoped_array<cl_mem> input_ref_id_buf;
scoped_array<cl_mem> input_neighbor_id_buf;
scoped_array<cl_mem> input_ref_x_buf; // num_devices elements
scoped_array<cl_mem> input_ref_y_buf; // num_devices elements
scoped_array<cl_mem> input_ref_z_buf; // num_devices elements
scoped_array<cl_mem> input_neighbor_x_buf; // num_devices elements
scoped_array<cl_mem> input_neighbor_y_buf; // num_devices elements
scoped_array<cl_mem> input_neighbor_z_buf; // num_devices elements
//scoped_array<cl_mem> output_buf; // num_devices elements
scoped_array<cl_mem> output_x_buf; // num_devices elements
scoped_array<cl_mem> output_y_buf; // num_devices elements
scoped_array<cl_mem> output_z_buf; // num_devices elements
#endif /* USE_SVM_API == 0 */
// Problem data.
unsigned N = 5; // problem size
#if USE_SVM_API == 0
scoped_array<scoped_aligned_ptr<int> > ref_id, neighbor_id; // num_devices elements
scoped_array<scoped_aligned_ptr<float> > ref_x, ref_y, ref_z, neighbor_x, neighbor_y, neighbor_z; // num_devices elements
//scoped_array<scoped_aligned_ptr<float> > Force_out; // num_devices elements
scoped_array<scoped_aligned_ptr<float> > Force_out_x; // num_devices elements
scoped_array<scoped_aligned_ptr<float> > Force_out_y; // num_devices elements
scoped_array<scoped_aligned_ptr<float> > Force_out_z; // num_devices elements
#else
scoped_array<scoped_SVM_aligned_ptr<int> > ref_id, neighbor_id; // num_devices elements
scoped_array<scoped_SVM_aligned_ptr<float> > ref_x, ref_y, ref_z, neighbor_x, neighbor_y, neighbor_z; // num_devices elements
//scoped_array<scoped_SVM_aligned_ptr<float> > Force_out; // num_devices elements
scoped_array<scoped_SVM_aligned_ptr<float> > Force_out_x; // num_devices elements
scoped_array<scoped_SVM_aligned_ptr<float> > Force_out_y; // num_devices elements
scoped_array<scoped_SVM_aligned_ptr<float> > Force_out_z; // num_devices elements
#endif /* USE_SVM_API == 0 */
scoped_array<scoped_array<float> > ref_output; // num_devices elements
scoped_array<unsigned> n_per_device; // num_devices elements
// Function prototypes
float rand_float();
bool init_opencl();
void init_problem();
void run();
void cleanup();
// Entry point.
int main(int argc, char **argv) {
Options options(argc, argv);
// Optional argument to specify the problem size.
if(options.has("n")) {
N = options.get<unsigned>("n");
}
// Initialize OpenCL.
if(!init_opencl()) {
return -1;
}
// Initialize the problem data.
// Requires the number of devices to be known.
printf("1, Problem initialization!\n");
init_problem();
// Run the kernel.
printf("2, Run the kernel!\n");
run();
// Free the resources allocated
printf("3, Cleanup the memory space!\n");
cleanup();
return 0;
}
/////// HELPER FUNCTIONS ///////
// Randomly generate a floating-point number between -10 and 10.
float rand_float() {
return float(rand()) / float(RAND_MAX) * 20.0f - 10.0f;
}
// Initializes the OpenCL objects.
bool init_opencl() {
cl_int status;
printf("Initializing OpenCL\n");
if(!setCwdToExeDir()) {
return false;
}
// Get the OpenCL platform.
platform = findPlatform("Intel(R) FPGA SDK for OpenCL(TM)");
if(platform == NULL) {
printf("ERROR: Unable to find Intel(R) FPGA OpenCL platform.\n");
return false;
}
// Query the available OpenCL device.
device.reset(getDevices(platform, CL_DEVICE_TYPE_ALL, &num_devices));
printf("Platform: %s\n", getPlatformName(platform).c_str());
printf("Using %d device(s)\n", num_devices);
for(unsigned i = 0; i < num_devices; ++i) {
printf(" %s\n", getDeviceName(device[i]).c_str());
}
// Create the context.
context = clCreateContext(NULL, num_devices, device, &oclContextCallback, NULL, &status);
checkError(status, "Failed to create context");
// Create the program for all device. Use the first device as the
// representative device (assuming all device are of the same type).
std::string binary_file = getBoardBinaryFile("LJ", device[0]);
printf("Using AOCX: %s\n", binary_file.c_str());
program = createProgramFromBinary(context, binary_file.c_str(), device, num_devices);
// Build the program that was just created.
status = clBuildProgram(program, 0, NULL, "", NULL, NULL);
checkError(status, "Failed to build program");
// Create per-device objects.
queue.reset(num_devices);
kernel.reset(num_devices);
n_per_device.reset(num_devices);
#if USE_SVM_API == 0
input_ref_id_buf.reset(num_devices);
input_neighbor_id_buf.reset(num_devices);
input_ref_x_buf.reset(num_devices);
input_ref_y_buf.reset(num_devices);
input_ref_z_buf.reset(num_devices);
input_neighbor_x_buf.reset(num_devices);
input_neighbor_y_buf.reset(num_devices);
input_neighbor_z_buf.reset(num_devices);
//output_buf.reset(num_devices);
output_x_buf.reset(num_devices);
output_y_buf.reset(num_devices);
output_z_buf.reset(num_devices);
#endif /* USE_SVM_API == 0 */
for(unsigned i = 0; i < num_devices; ++i) {
// Command queue.
queue[i] = clCreateCommandQueue(context, device[i], CL_QUEUE_PROFILING_ENABLE, &status);
checkError(status, "Failed to create command queue");
// Kernel.
const char *kernel_name = "LJ";
kernel[i] = clCreateKernel(program, kernel_name, &status);
checkError(status, "Failed to create kernel");
// Determine the number of elements processed by this device.
n_per_device[i] = N / num_devices; // number of elements handled by this device
// Spread out the remainder of the elements over the first
// N % num_devices.
if(i < (N % num_devices)) {
n_per_device[i]++;
}
#if USE_SVM_API == 0
// Input buffers.
input_ref_id_buf[i] = clCreateBuffer(context, CL_MEM_READ_ONLY,
n_per_device[i] * sizeof(int), NULL, &status);
input_neighbor_id_buf[i] = clCreateBuffer(context, CL_MEM_READ_ONLY,
n_per_device[i] * sizeof(int), NULL, &status);
input_ref_x_buf[i] = clCreateBuffer(context, CL_MEM_READ_ONLY,
n_per_device[i] * sizeof(float), NULL, &status);
checkError(status, "Failed to create buffer for input ref_x");
input_ref_y_buf[i] = clCreateBuffer(context, CL_MEM_READ_ONLY,
n_per_device[i] * sizeof(float), NULL, &status);
checkError(status, "Failed to create buffer for input ref_y");
input_ref_z_buf[i] = clCreateBuffer(context, CL_MEM_READ_ONLY,
n_per_device[i] * sizeof(float), NULL, &status);
checkError(status, "Failed to create buffer for input ref_z");
input_neighbor_x_buf[i] = clCreateBuffer(context, CL_MEM_READ_ONLY,
n_per_device[i] * sizeof(float), NULL, &status);
checkError(status, "Failed to create buffer for input neighbor_x");
input_neighbor_y_buf[i] = clCreateBuffer(context, CL_MEM_READ_ONLY,
n_per_device[i] * sizeof(float), NULL, &status);
checkError(status, "Failed to create buffer for input neighbor_y");
input_neighbor_z_buf[i] = clCreateBuffer(context, CL_MEM_READ_ONLY,
n_per_device[i] * sizeof(float), NULL, &status);
checkError(status, "Failed to create buffer for input neighbor_z");
// Output buffer.
//output_buf[i] = clCreateBuffer(context, CL_MEM_WRITE_ONLY,
// n_per_device[i] * sizeof(float), NULL, &status);
//checkError(status, "Failed to create buffer for output");
output_x_buf[i] = clCreateBuffer(context, CL_MEM_WRITE_ONLY,
n_per_device[i] * sizeof(float), NULL, &status);
checkError(status, "Failed to create buffer for output");
output_y_buf[i] = clCreateBuffer(context, CL_MEM_WRITE_ONLY,
n_per_device[i] * sizeof(float), NULL, &status);
checkError(status, "Failed to create buffer for output");
output_z_buf[i] = clCreateBuffer(context, CL_MEM_WRITE_ONLY,
n_per_device[i] * sizeof(float), NULL, &status);
checkError(status, "Failed to create buffer for output");
#else
cl_device_svm_capabilities caps = 0;
status = clGetDeviceInfo(
device[i],
CL_DEVICE_SVM_CAPABILITIES,
sizeof(cl_device_svm_capabilities),
&caps,
0
);
checkError(status, "Failed to get device info");
if (!(caps & CL_DEVICE_SVM_COARSE_GRAIN_BUFFER)) {
printf("The host was compiled with USE_SVM_API, however the device currently being targeted does not support SVM.\n");
// Free the resources allocated
cleanup();
return false;
}
#endif /* USE_SVM_API == 0 */
}
return true;
}
// Initialize the data for the problem. Requires num_devices to be known.
void init_problem() {
if(num_devices == 0) {
checkError(-1, "No devices");
}
ref_id.reset(num_devices);
neighbor_id.reset(num_devices);
ref_x.reset(num_devices);
ref_y.reset(num_devices);
ref_z.reset(num_devices);
neighbor_x.reset(num_devices);
neighbor_y.reset(num_devices);
neighbor_z.reset(num_devices);
//Force_out.reset(num_devices);
Force_out_x.reset(num_devices);
Force_out_y.reset(num_devices);
Force_out_z.reset(num_devices);
ref_output.reset(num_devices);
// Generate input vectors A and B and the reference output consisting
// of a total of N elements.
// We create separate arrays for each device so that each device has an
// aligned buffer.
for(unsigned i = 0; i < num_devices; ++i) {
#if USE_SVM_API == 0
ref_id[i].reset(n_per_device[i]);
neighbor_id[i].reset(n_per_device[i]);
ref_x[i].reset(n_per_device[i]);
ref_y[i].reset(n_per_device[i]);
ref_z[i].reset(n_per_device[i]);
neighbor_x[i].reset(n_per_device[i]);
neighbor_y[i].reset(n_per_device[i]);
neighbor_z[i].reset(n_per_device[i]);
//Force_out[i].reset(n_per_device[i]);
Force_out_x[i].reset(n_per_device[i]);
Force_out_y[i].reset(n_per_device[i]);
Force_out_z[i].reset(n_per_device[i]);
ref_output[i].reset(n_per_device[i]);
for(unsigned j = 0; j < n_per_device[i]; ++j) {
ref_id[i][j] = j;
neighbor_id[i][j] = j;
ref_x[i][j] = 14.410;
ref_y[i][j] = 12.083;
ref_z[i][j] = 14.591;
neighbor_x[i][j] = 15.099;
neighbor_y[i][j] = 12.267;
neighbor_z[i][j] = 25.249;
ref_output[i][j] = ref_x[i][j] + neighbor_x[i][j];
}
#else
ref_id[i].reset(context, n_per_device[i]);
neighbor_id[i].reset(context, n_per_device[i]);
ref_x[i].reset(context, n_per_device[i]);
ref_y[i].reset(context, n_per_device[i]);
ref_z[i].reset(context, n_per_device[i]);
neighbor_x[i].reset(context, n_per_device[i]);
neighbor_y[i].reset(context, n_per_device[i]);
neighbor_z[i].reset(context, n_per_device[i]);
//Force_out[i].reset(context, n_per_device[i]);
Force_out_x[i].reset(context, n_per_device[i]);
Force_out_y[i].reset(context, n_per_device[i]);
Force_out_z[i].reset(context, n_per_device[i]);
ref_output[i].reset(n_per_device[i]);
cl_int status;
status = clEnqueueSVMMap(queue[i], CL_TRUE, CL_MAP_WRITE,
(void *)ref_id[i], n_per_device[i] * sizeof(int), 0, NULL, NULL);
checkError(status, "Failed to map input: ref id");
status = clEnqueueSVMMap(queue[i], CL_TRUE, CL_MAP_WRITE,
(void *)neighbor_id[i], n_per_device[i] * sizeof(int), 0, NULL, NULL);
checkError(status, "Failed to map input: neighbor id");
status = clEnqueueSVMMap(queue[i], CL_TRUE, CL_MAP_WRITE,
(void *)ref_x[i], n_per_device[i] * sizeof(float), 0, NULL, NULL);
checkError(status, "Failed to map input: ref_x");
status = clEnqueueSVMMap(queue[i], CL_TRUE, CL_MAP_WRITE,
(void *)ref_y[i], n_per_device[i] * sizeof(float), 0, NULL, NULL);
checkError(status, "Failed to map input: ref_y");
status = clEnqueueSVMMap(queue[i], CL_TRUE, CL_MAP_WRITE,
(void *)ref_z[i], n_per_device[i] * sizeof(float), 0, NULL, NULL);
checkError(status, "Failed to map input: ref_z");
status = clEnqueueSVMMap(queue[i], CL_TRUE, CL_MAP_WRITE,
(void *)neighbor_x[i], n_per_device[i] * sizeof(float), 0, NULL, NULL);
checkError(status, "Failed to map input: neighbor_x");
status = clEnqueueSVMMap(queue[i], CL_TRUE, CL_MAP_WRITE,
(void *)neighbor_y[i], n_per_device[i] * sizeof(float), 0, NULL, NULL);
checkError(status, "Failed to map input: neighbor_y");
status = clEnqueueSVMMap(queue[i], CL_TRUE, CL_MAP_WRITE,
(void *)neighbor_z[i], n_per_device[i] * sizeof(float), 0, NULL, NULL);
checkError(status, "Failed to map input: neighbor_z");
for(unsigned j = 0; j < n_per_device[i]; ++j) {
ref_id[i][j] = j;
neighbor_id[i][j] = j;
ref_x[i][j] = 14.410;
ref_y[i][j] = 12.083;
ref_z[i][j] = 14.591;
neighbor_x[i][j] = 15.099;
neighbor_y[i][j] = 12.267;
neighbor_z[i][j] = 25.249;
ref_output[i][j] = input_a[i][j] + input_b[i][j];
}
status = clEnqueueSVMUnmap(queue[i], (void *)ref_id[i], 0, NULL, NULL);
checkError(status, "Failed to unmap input ref_id");
status = clEnqueueSVMUnmap(queue[i], (void *)neighbor_id[i], 0, NULL, NULL);
checkError(status, "Failed to unmap input neighbor_id");
status = clEnqueueSVMUnmap(queue[i], (void *)ref_x[i], 0, NULL, NULL);
checkError(status, "Failed to unmap input ref_x");
status = clEnqueueSVMUnmap(queue[i], (void *)ref_y[i], 0, NULL, NULL);
checkError(status, "Failed to unmap input ref_y");
status = clEnqueueSVMUnmap(queue[i], (void *)ref_z[i], 0, NULL, NULL);
checkError(status, "Failed to unmap input ref_z");
status = clEnqueueSVMUnmap(queue[i], (void *)neighbor_x[i], 0, NULL, NULL);
checkError(status, "Failed to unmap input neighbor_x");
status = clEnqueueSVMUnmap(queue[i], (void *)neighbor_y[i], 0, NULL, NULL);
checkError(status, "Failed to unmap input neighbor_y")
status = clEnqueueSVMUnmap(queue[i], (void *)neighbor_z[i], 0, NULL, NULL);
checkError(status, "Failed to unmap input neighbor_z");
#endif /* USE_SVM_API == 0 */
}
}
void run() {
cl_int status;
const double start_time = getCurrentTimestamp();
// Launch the problem for each device.
scoped_array<cl_event> kernel_event(num_devices);
scoped_array<cl_event> finish_event1(num_devices);
scoped_array<cl_event> finish_event2(num_devices);
scoped_array<cl_event> finish_event3(num_devices);
for(unsigned i = 0; i < num_devices; ++i) {
#if USE_SVM_API == 0
// Transfer inputs to each device. Each of the host buffers supplied to
// clEnqueueWriteBuffer here is already aligned to ensure that DMA is used
// for the host-to-device transfer.
cl_event write_event[8];
status = clEnqueueWriteBuffer(queue[i], input_ref_id_buf[i], CL_FALSE,
0, n_per_device[i] * sizeof(int), ref_id[i], 0, NULL, &write_event[0]);
checkError(status, "Failed to transfer input ref_id");
status = clEnqueueWriteBuffer(queue[i], input_neighbor_id_buf[i], CL_FALSE,
0, n_per_device[i] * sizeof(float), neighbor_id[i], 0, NULL, &write_event[1]);
checkError(status, "Failed to transfer input neighbor_id");
status = clEnqueueWriteBuffer(queue[i], input_ref_x_buf[i], CL_FALSE,
0, n_per_device[i] * sizeof(float), ref_x[i], 0, NULL, &write_event[2]);
checkError(status, "Failed to transfer input ref_x");
status = clEnqueueWriteBuffer(queue[i], input_ref_y_buf[i], CL_FALSE,
0, n_per_device[i] * sizeof(float), ref_y[i], 0, NULL, &write_event[3]);
checkError(status, "Failed to transfer input ref_y");
status = clEnqueueWriteBuffer(queue[i], input_ref_z_buf[i], CL_FALSE,
0, n_per_device[i] * sizeof(float), ref_z[i], 0, NULL, &write_event[4]);
checkError(status, "Failed to transfer input ref_z");
status = clEnqueueWriteBuffer(queue[i], input_neighbor_x_buf[i], CL_FALSE,
0, n_per_device[i] * sizeof(float), neighbor_x[i], 0, NULL, &write_event[5]);
checkError(status, "Failed to transfer input neighbor_x");
status = clEnqueueWriteBuffer(queue[i], input_neighbor_y_buf[i], CL_FALSE,
0, n_per_device[i] * sizeof(float), neighbor_y[i], 0, NULL, &write_event[6]);
checkError(status, "Failed to transfer input neighbor_y");
status = clEnqueueWriteBuffer(queue[i], input_neighbor_z_buf[i], CL_FALSE,
0, n_per_device[i] * sizeof(float), neighbor_z[i], 0, NULL, &write_event[7]);
checkError(status, "Failed to transfer input neighbor_z");
#endif /* USE_SVM_API == 0 */
// Set kernel arguments.
unsigned argi = 0;
#if USE_SVM_API == 0
status = clSetKernelArg(kernel[i], argi++, sizeof(cl_mem), &input_ref_id_buf[i]);
checkError(status, "Failed to set argument %d", argi - 1);
status = clSetKernelArg(kernel[i], argi++, sizeof(cl_mem), &input_neighbor_id_buf[i]);
checkError(status, "Failed to set argument %d", argi - 1);
status = clSetKernelArg(kernel[i], argi++, sizeof(cl_mem), &input_ref_x_buf[i]);
checkError(status, "Failed to set argument %d", argi - 1);
status = clSetKernelArg(kernel[i], argi++, sizeof(cl_mem), &input_ref_y_buf[i]);
checkError(status, "Failed to set argument %d", argi - 1);
status = clSetKernelArg(kernel[i], argi++, sizeof(cl_mem), &input_ref_z_buf[i]);
checkError(status, "Failed to set argument %d", argi - 1);
status = clSetKernelArg(kernel[i], argi++, sizeof(cl_mem), &input_neighbor_x_buf[i]);
checkError(status, "Failed to set argument %d", argi - 1);
status = clSetKernelArg(kernel[i], argi++, sizeof(cl_mem), &input_neighbor_y_buf[i]);
checkError(status, "Failed to set argument %d", argi - 1);
status = clSetKernelArg(kernel[i], argi++, sizeof(cl_mem), &input_neighbor_z_buf[i]);
checkError(status, "Failed to set argument %d", argi - 1);
//status = clSetKernelArg(kernel[i], argi++, sizeof(cl_mem), &output_buf[i]);
//checkError(status, "Failed to set argument %d", argi - 1);
status = clSetKernelArg(kernel[i], argi++, sizeof(cl_mem), &output_x_buf[i]);
checkError(status, "Failed to set argument %d", argi - 1);
status = clSetKernelArg(kernel[i], argi++, sizeof(cl_mem), &output_y_buf[i]);
checkError(status, "Failed to set argument %d", argi - 1);
status = clSetKernelArg(kernel[i], argi++, sizeof(cl_mem), &output_z_buf[i]);
checkError(status, "Failed to set argument %d", argi - 1);
#else
status = clSetKernelArgSVMPointer(kernel[i], argi++, (void*)input_ref_id_buf[i]);
checkError(status, "Failed to set argument %d", argi - 1);
status = clSetKernelArgSVMPointer(kernel[i], argi++, (void*)input_neighbor_id_buf[i]);
checkError(status, "Failed to set argument %d", argi - 1);
status = clSetKernelArgSVMPointer(kernel[i], argi++, (void*)input_ref_x_buf[i]);
checkError(status, "Failed to set argument %d", argi - 1);
status = clSetKernelArgSVMPointer(kernel[i], argi++, (void*)input_ref_y_buf[i]);
checkError(status, "Failed to set argument %d", argi - 1);
status = clSetKernelArgSVMPointer(kernel[i], argi++, (void*)input_ref_z_buf[i]);
checkError(status, "Failed to set argument %d", argi - 1);
status = clSetKernelArgSVMPointer(kernel[i], argi++, (void*)input_neighbor_x_buf[i]);
checkError(status, "Failed to set argument %d", argi - 1);
status = clSetKernelArgSVMPointer(kernel[i], argi++, (void*)input_neighbor_y_buf[i]);
checkError(status, "Failed to set argument %d", argi - 1);
status = clSetKernelArgSVMPointer(kernel[i], argi++, (void*)input_neighbor_z_buf[i]);
checkError(status, "Failed to set argument %d", argi - 1);
status = clSetKernelArgSVMPointer(kernel[i], argi++, (void*)output_x_buf[i]);
checkError(status, "Failed to set argument %d", argi - 1);
status = clSetKernelArgSVMPointer(kernel[i], argi++, (void*)output_y_buf[i]);
checkError(status, "Failed to set argument %d", argi - 1);
status = clSetKernelArgSVMPointer(kernel[i], argi++, (void*)output_z_buf[i]);
checkError(status, "Failed to set argument %d", argi - 1);
#endif /* USE_SVM_API == 0 */
// Enqueue kernel.
// Use a global work size corresponding to the number of elements to add
// for this device.
//
// We don't specify a local work size and let the runtime choose
// (it'll choose to use one work-group with the same size as the global
// work-size).
//
// Events are used to ensure that the kernel is not launched until
// the writes to the input buffers have completed.
const size_t global_work_size = n_per_device[i];
printf("Launching for device %d (%zd elements)\n", i, global_work_size);
printf("************** Kernel enqueued!\n");
#if USE_SVM_API == 0
status = clEnqueueNDRangeKernel(queue[i], kernel[i], 1, NULL,
&global_work_size, NULL, 8, write_event, &kernel_event[i]);
#else
status = clEnqueueNDRangeKernel(queue[i], kernel[i], 1, NULL,
&global_work_size, NULL, 0, NULL, &kernel_event[i]);
#endif /* USE_SVM_API == 0 */
checkError(status, "Failed to launch kernel");
printf("************* Kernel enqueue finished!\n");
#if USE_SVM_API == 0
// Read the result. This the final operation.
//status = clEnqueueReadBuffer(queue[i], output_buf[i], CL_FALSE,
// 0, n_per_device[i] * sizeof(float), Force_out, 1, &kernel_event[i], &finish_event[i]);
status = clEnqueueReadBuffer(queue[i], output_x_buf[i], CL_FALSE,
0, n_per_device[i] * sizeof(float), Force_out_x[i], 1, &kernel_event[i], &finish_event1[i]);
status = clEnqueueReadBuffer(queue[i], output_y_buf[i], CL_FALSE,
0, n_per_device[i] * sizeof(float), Force_out_y[i], 1, &kernel_event[i], &finish_event2[i]);
status = clEnqueueReadBuffer(queue[i], output_z_buf[i], CL_FALSE,
0, n_per_device[i] * sizeof(float), Force_out_z[i], 1, &kernel_event[i], &finish_event3[i]);
printf("!!!!!!!!!! Output buffer read finished!\n");
// Release local events.
clReleaseEvent(write_event[0]);
printf("~~~~ Release write event 0!\n");
clReleaseEvent(write_event[1]);
printf("~~~~ Release write event 1!\n");
clReleaseEvent(write_event[2]);
printf("~~~~ Release write event 2!\n");
clReleaseEvent(write_event[3]);
printf("~~~~ Release write event 3!\n");
clReleaseEvent(write_event[4]);
printf("~~~~ Release write event 4!\n");
clReleaseEvent(write_event[5]);
printf("~~~~ Release write event 5!\n");
clReleaseEvent(write_event[6]);
printf("~~~~ Release write event 6!\n");
clReleaseEvent(write_event[7]);
printf("~~~~ Release write event 7!\n");
#else
status = clEnqueueSVMMap(queue[i], CL_TRUE, CL_MAP_READ,
(void *)output[i], n_per_device[i] * sizeof(float), 0, NULL, NULL);
checkError(status, "Failed to map output");
clFinish(queue[i]);
#endif /* USE_SVM_API == 0 */
}
// Wait for all devices to finish.
clWaitForEvents(num_devices, finish_event1);
printf("**** Read Event 1 finish!\n");
clWaitForEvents(num_devices, finish_event2);
printf("**** Read Event 2 finish!\n");
clWaitForEvents(num_devices, finish_event3);
printf("**** Read Event 3 finish!\n");
const double end_time = getCurrentTimestamp();
// Wall-clock time taken.
printf("\nTime: %0.3f ms\n", (end_time - start_time) * 1e3);
// Get kernel times using the OpenCL event profiling API.
for(unsigned i = 0; i < num_devices; ++i) {
cl_ulong time_ns = getStartEndTime(kernel_event[i]);
printf("Kernel time (device %d): %0.3f ms\n", i, double(time_ns) * 1e-6);
}
// Release all events.
for(unsigned i = 0; i < num_devices; ++i) {
clReleaseEvent(kernel_event[i]);
clReleaseEvent(finish_event1[i]);
clReleaseEvent(finish_event2[i]);
clReleaseEvent(finish_event3[i]);
}
/* // Verify results.
bool pass = true;
for(unsigned i = 0; i < num_devices && pass; ++i) {
for(unsigned j = 0; j < n_per_device[i] && pass; ++j) {
if(fabsf(output[i][j] - ref_output[i][j]) > 1.0e-5f) {
printf("Failed verification @ device %d, index %d\nOutput: %f\nReference: %f\n",
i, j, output[i][j], ref_output[i][j]);
pass = false;
}
}
} */
#if USE_SVM_API == 1
for (unsigned i = 0; i < num_devices; ++i) {
status = clEnqueueSVMUnmap(queue[i], (void *)output[i], 0, NULL, NULL);
checkError(status, "Failed to unmap output");
}
#endif /* USE_SVM_API == 1 */
//printf("\nVerification: %s\n", pass ? "PASS" : "FAIL");
// Printf out results
printf("@@ Evaluation results report:\n");
for(unsigned i = 0; i < n_per_device[0]; i++){
printf("Results[%d], %e, %e, %e\n", i, Force_out_x[0][i], Force_out_y[0][i], Force_out_z[0][i]);
}
printf("@@ Results report done!\n");
}
// Free the resources allocated during initialization
void cleanup() {
for(unsigned i = 0; i < num_devices; ++i) {
if(kernel && kernel[i]) {
clReleaseKernel(kernel[i]);
}
if(queue && queue[i]) {
clReleaseCommandQueue(queue[i]);
}
#if USE_SVM_API == 0
if(input_ref_id_buf && input_ref_id_buf[i]) {
clReleaseMemObject(input_ref_id_buf[i]);
}
if(input_neighbor_id_buf && input_neighbor_id_buf[i]) {
clReleaseMemObject(input_neighbor_id_buf[i]);
}
if(input_ref_x_buf && input_ref_x_buf[i]) {
clReleaseMemObject(input_ref_x_buf[i]);
}
if(input_ref_y_buf && input_ref_y_buf[i]) {
clReleaseMemObject(input_ref_y_buf[i]);
}
if(input_ref_z_buf && input_ref_z_buf[i]) {
clReleaseMemObject(input_ref_z_buf[i]);
}
if(input_neighbor_x_buf && input_neighbor_x_buf[i]) {
clReleaseMemObject(input_neighbor_x_buf[i]);
}
if(input_neighbor_y_buf && input_neighbor_y_buf[i]) {
clReleaseMemObject(input_neighbor_y_buf[i]);
}
if(input_neighbor_z_buf && input_neighbor_z_buf[i]) {
clReleaseMemObject(input_neighbor_z_buf[i]);
}
//if(output_buf && output_buf[i]) {
// clReleaseMemObject(output_buf[i]);
//}
if(output_x_buf && output_x_buf[i]) {
clReleaseMemObject(output_x_buf[i]);
}
if(output_y_buf && output_y_buf[i]) {
clReleaseMemObject(output_y_buf[i]);
}
if(output_z_buf && output_z_buf[i]) {
clReleaseMemObject(output_z_buf[i]);
}
#else
if(input_ref_id_buf[i].get())
input_ref_id_buf[i].reset();
if(input_neighbor_id_buf[i].get())
input_neighbor_id_buf[i].reset();
if(input_ref_x_buf[i].get())
input_ref_x_buf[i].reset();
if(input_ref_y_buf[i].get())
input_ref_y_buf[i].reset();
if(input_ref_z_buf[i].get())
input_ref_z_buf[i].reset();
if(input_neighbor_x_buf[i].get())
input_neighbor_x_buf[i].reset();
if(input_neighbor_y_buf[i].get())
input_neighbor_y_buf[i].reset();
if(input_neighbor_z_buf[i].get())
input_neighbor_z_buf[i].reset();
if(output_x_buf[i].get())
output_x_buf[i].reset();
if(output_y_buf[i].get())
output_y_buf[i].reset();
if(output_z_buf[i].get())
output_z_buf[i].reset();
#endif /* USE_SVM_API == 0 */
}
if(program) {
clReleaseProgram(program);
}
if(context) {
clReleaseContext(context);
}
}
| [
"chunshu_wu@alumni.brown.edu"
] | chunshu_wu@alumni.brown.edu |
ff58af440340fc71aa239145afe07256469826a4 | 2b98ba15ba08bb3316f2158d232ce9b397882545 | /AzuriteLauncher/AzuriteLauncher.cpp | 8e319491a6c0054b6d11039d244a6c40e20ff94f | [] | no_license | DanielCarmingham/AzuriteLauncher | 653bdc352d6c38158c84b546cd17b5456a3c14ac | 255156238d9d1b84a45d4f77d26dda40b64f414c | refs/heads/master | 2023-08-11T09:09:36.790480 | 2021-09-29T23:19:44 | 2021-09-29T23:19:44 | 287,593,693 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,260 | cpp | #define WIN32_LEAN_AND_MEAN
#include <stdio.h>
#include <shlobj.h>
#include <process.h>
#include <windows.h>
#include <signal.h>
#include <string>
int wmain(int argc, wchar_t *argv[])
{
signal(SIGINT, SIG_IGN);
printf("AzuriteLauncher - Launch Azurite as AzureStorageEmulator.exe so you can debug Azure Functions in Visual Studio\n");
TCHAR my_documents[MAX_PATH];
SHGetFolderPath(NULL, CSIDL_PERSONAL, NULL, SHGFP_TYPE_CURRENT, my_documents);
TCHAR cmdExe[MAX_PATH];
GetEnvironmentVariable(L"COMSPEC", cmdExe, MAX_PATH);
PROCESS_INFORMATION pi;
STARTUPINFO si;
ZeroMemory(&si, sizeof(si));
si.cb = sizeof(si);
ZeroMemory(&pi, sizeof(pi));
std::wstring strCmdLine(L"/C azurite");
int i;
for (i = 1; i < argc; i++)
{
strCmdLine.append(L" ");
strCmdLine.append(argv[i]);
}
LPTSTR cmdLine = &strCmdLine[0];
if (!CreateProcess(cmdExe, cmdLine, NULL, NULL, FALSE, 0, NULL, my_documents, &si, &pi))
{
wprintf(L"Error starting %s: %d", cmdExe, GetLastError());
return 1;
}
WaitForSingleObject(pi.hProcess, INFINITE);
CloseHandle(pi.hProcess);
CloseHandle(pi.hThread);
wprintf(L"Exiting AzuriteLauncher...\n");
return 0;
} | [
"dacarming@gmail.com"
] | dacarming@gmail.com |
ee848bf9b4c967d891a699b796ddbd4faa84274a | 2e03cd4938cc75177c4d84553af8c6582131f415 | /src/input.cpp | 4252c5b76e31cc6a4c4a855317137b222c532736 | [
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-public-domain"
] | permissive | usnistgov/gl-geometry-modperf | d250d4c043ce6229c9b96cdeb93f9b9c9fc5d0a2 | dd6849edf108a75cd2407c02a0ba920333dd169f | refs/heads/master | 2021-01-17T13:23:25.468922 | 2016-06-16T20:21:41 | 2016-06-16T20:21:41 | 57,047,856 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,862 | cpp | #include "input.hpp"
#include <GL/glew.h>
#include <GLFW/glfw3.h>
Input::Input()
: _button(-1),
_prevButton(-1),
_moveRate(0.f, 0.f, 0.f),
_updateTime(glfwGetTime()),
_wireframe(false) {
}
void Input::mousePress(GLFWwindow& win, int button, int action) {
switch(action) {
case GLFW_PRESS:
glfwSetInputMode(&win, GLFW_CURSOR, GLFW_CURSOR_DISABLED);
_button = button;
break;
case GLFW_RELEASE:
glfwSetInputMode(&win, GLFW_CURSOR, GLFW_CURSOR_NORMAL);
_button = -1;
break;
}
}
void Input::mouseMove(View& view, GLFWwindow& win, double x, double y) {
if (_button == GLFW_MOUSE_BUTTON_LEFT && _button == _prevButton) {
view.rotate(x-_prevX, y-_prevY);
view.update(win);
}
_prevButton = _button;
_prevX = x;
_prevY = y;
}
void Input::keyPress(Geometry& geom, GLFWwindow& win, int key, int action,
int mods) {
switch(key) {
case 'A':
_moveRate.x = (action==GLFW_RELEASE) ? 0.f : -20.f;
_updateTime = glfwGetTime();
break;
case 'D':
_moveRate.x = (action==GLFW_RELEASE) ? 0.f : 20.f;
_updateTime = glfwGetTime();
break;
case 'W':
_moveRate.y = (action==GLFW_RELEASE) ? 0.f : 20.f;
_updateTime = glfwGetTime();
break;
case 'S':
_moveRate.y = (action==GLFW_RELEASE) ? 0.f : -20.f;
_updateTime = glfwGetTime();
break;
case 'R':
if (action != GLFW_RELEASE) break;
geom.updateShaders();
break;
case 'L':
if (action != GLFW_RELEASE) break;
_wireframe = !_wireframe;
glPolygonMode(GL_FRONT_AND_BACK, _wireframe ? GL_LINE : GL_FILL);
break;
case GLFW_KEY_ESCAPE:
glfwSetWindowShouldClose(&win, action==GLFW_RELEASE);
break;
};
}
| [
"wesley.griffin@nist.gov"
] | wesley.griffin@nist.gov |
33f38777227c3ead6c096f3f6e871d75148b1407 | 78918391a7809832dc486f68b90455c72e95cdda | /boost_lib/boost/mpl/aux_/preprocessed/bcc/plus.hpp | a9173f2dfea17b0dca85a57341487a9845491d21 | [
"MIT"
] | permissive | kyx0r/FA_Patcher | 50681e3e8bb04745bba44a71b5fd04e1004c3845 | 3f539686955249004b4483001a9e49e63c4856ff | refs/heads/master | 2022-03-28T10:03:28.419352 | 2020-01-02T09:16:30 | 2020-01-02T09:16:30 | 141,066,396 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,759 | hpp |
// Copyright Aleksey Gurtovoy 2000-2004
//
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
//
// *Preprocessed* version of the main "plus.hpp" header
// -- DO NOT modify by hand!
namespace boost
{
namespace mpl
{
template<
typename Tag1
, typename Tag2
>
struct plus_impl
: if_c<
( BOOST_MPL_AUX_NESTED_VALUE_WKND(int, Tag1)
> BOOST_MPL_AUX_NESTED_VALUE_WKND(int, Tag2)
)
, aux::cast2nd_impl< plus_impl< Tag1,Tag1 >,Tag1, Tag2 >
, aux::cast1st_impl< plus_impl< Tag2,Tag2 >,Tag1, Tag2 >
>::type
{
};
/// for Digital Mars C++/compilers with no CTPS/TTP support
template<> struct plus_impl< na,na >
{
template< typename U1, typename U2 > struct apply
{
typedef apply type;
BOOST_STATIC_CONSTANT(int, value = 0);
};
};
template< typename Tag > struct plus_impl< na,Tag >
{
template< typename U1, typename U2 > struct apply
{
typedef apply type;
BOOST_STATIC_CONSTANT(int, value = 0);
};
};
template< typename Tag > struct plus_impl< Tag,na >
{
template< typename U1, typename U2 > struct apply
{
typedef apply type;
BOOST_STATIC_CONSTANT(int, value = 0);
};
};
template< typename T > struct plus_tag
{
typedef typename T::tag type;
};
template<
typename BOOST_MPL_AUX_NA_PARAM(N1)
, typename BOOST_MPL_AUX_NA_PARAM(N2)
, typename N3 = na, typename N4 = na, typename N5 = na
>
struct plus
: plus< plus< plus< plus< N1,N2 >, N3>, N4>, N5>
{
BOOST_MPL_AUX_LAMBDA_SUPPORT(
5
, plus
, ( N1, N2, N3, N4, N5 )
)
};
template<
typename N1, typename N2, typename N3, typename N4
>
struct plus< N1,N2,N3,N4,na >
: plus< plus< plus< N1,N2 >, N3>, N4>
{
BOOST_MPL_AUX_LAMBDA_SUPPORT_SPEC(
5
, plus
, ( N1, N2, N3, N4, na )
)
};
template<
typename N1, typename N2, typename N3
>
struct plus< N1,N2,N3,na,na >
: plus< plus< N1,N2 >, N3>
{
BOOST_MPL_AUX_LAMBDA_SUPPORT_SPEC(
5
, plus
, ( N1, N2, N3, na, na )
)
};
template<
typename N1, typename N2
>
struct plus< N1,N2,na,na,na >
: plus_impl<
typename plus_tag<N1>::type
, typename plus_tag<N2>::type
>::template apply< N1,N2 >::type
{
BOOST_MPL_AUX_LAMBDA_SUPPORT_SPEC(
5
, plus
, ( N1, N2, na, na, na )
)
};
BOOST_MPL_AUX_NA_SPEC2(2, 5, plus)
}
}
namespace boost
{
namespace mpl
{
template<>
struct plus_impl< integral_c_tag,integral_c_tag >
{
template< typename N1, typename N2 > struct apply
: integral_c<
typename aux::largest_int<
typename N1::value_type
, typename N2::value_type
>::type
, ( BOOST_MPL_AUX_VALUE_WKND(N1)::value
+ BOOST_MPL_AUX_VALUE_WKND(N2)::value
)
>
{
};
};
}
}
| [
"k.melekhin@gmail.com"
] | k.melekhin@gmail.com |
01dc178456463eae66e898592ad87f2365fbdc78 | 3d16f3ffc7496fbcda67ef48637ea6959e148b09 | /src/plugins/a/a.h | 5a604b18a1e084cf0a5f2f04da07352279038969 | [] | no_license | alexey-zayats/appplug | b0047a6d368ea9b317b3dac5e95dfd59947c9742 | 7d678c4c20457ae5bde8ec9d8e91cccf796edc02 | refs/heads/master | 2020-04-17T17:09:29.294043 | 2018-11-05T13:38:57 | 2018-11-05T13:38:57 | 66,534,724 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 339 | h | #ifndef A_PLUGIN
#define A_PLUGIN
#include "a_export.h"
#include <core/plugin.h>
#include <QtCore>
#include <QtDebug>
class A_EXPORT A : public Plugin
{
Q_INTERFACES(Plugin)
Q_OBJECT
Q_PLUGIN_METADATA(IID "ru.agitum.plugin" FILE "a.json")
public:
A(void) {}
~A(void) {}
};
#endif // A_PLUGIN
| [
"alexey.zayats@gmail.com"
] | alexey.zayats@gmail.com |
97955805c23f0288a6a5f587d44dee7bd06501ee | 008edd4c3a1ef01aaf3bf8fc3e85166593d3b666 | /application/hardware/Led.h | 2f9394281dc908a417d4b5616c8ffa8636dbfa9f | [] | no_license | Mark-Jansen/rpi | a5b07ac033a51409e0416097d65eb9166b66ad4b | f389b82867f2388219a8915da5055499bd1dfbe9 | refs/heads/master | 2020-04-28T01:52:13.752840 | 2015-03-20T07:25:55 | 2015-03-20T07:25:55 | 24,560,467 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 400 | h | #ifndef HARDWARE_LED_H
#define HARDWARE_LED_H
#include <generic/File.h>
class Led
{
public:
Led(int pinNr, int blinkTimer = 0);
~Led();
void on(void);
void off(void);
void blink(void);
int getStatus(void);
int getBlinktimer(void);
void setBlinktimer(int blinkTimer);
private:
void write( int ioctl, int value );
File mSensor;
int mPinNr;
int mBlinkTimer;
};
#endif // HARDWARE_LED_H
| [
"hung.tran@student.fontys.nl"
] | hung.tran@student.fontys.nl |
2e0ddf1b7ac3a978fcb4593deef1540854d5f84b | a9c74b8149cb5706ba0b585c791db6dc0c610ad9 | /src/CubeModel.cpp | ba6e556c2c5ad55a1442c339b5618b7c9887bc10 | [] | no_license | tschicke/Voxel-Editor | b719ae74096ab5a8e0e282154f5cda5048102bb4 | b94e2fd7f7557970b008619ad3580ee6f263c209 | refs/heads/master | 2020-04-07T16:06:32.848235 | 2013-07-27T03:48:05 | 2013-07-27T03:48:05 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 14,298 | cpp | /*
* CubeModel.cpp
*
* Created on: Jun 23, 2013
* Author: Tyler
*/
#include "CubeModel.h"
#include "Keyboard.h"
#include "Mouse.h"
#include "BaseRenderer.h"
#include <glm/gtx/transform.hpp>
#include <fstream>
#include <iostream>
#include <cmath>
CubeModel::CubeModel() {
width = height = depth = 0;
scale = 1;
selectedBlock.x = selectedBlock.y = selectedBlock.z = 0;
yaw = 0;
pitch = 0;
viewMatrixNeedsUpdate = false;
zoom = 1;
colorSize = 1;
storage = NULL;
}
CubeModel::CubeModel(int w, int h, int d) {
width = w;
height = h;
depth = d;
scale = 1;
yaw = 0;
pitch = 0;
viewMatrixNeedsUpdate = true;
colorSize = 2;
int maxHeightDepth = (height > depth ? height : depth);
int maxWidthHeightDepth = (width > maxHeightDepth ? width : maxHeightDepth);
zoom = maxWidthHeightDepth;
selectedBlock.x = selectedBlock.y = selectedBlock.z = 0;
storage = new BlockStorage(this);
for (int x = 0; x < w; ++x) {
for (int y = 0; y < h; ++y) {
for (int z = 0; z < d; ++z) {
int blockIndex = x * h * d + y * d + z;
Block * block = new Block(0.5f, 0.5f, 0.5f, true);
storage->getBlockArray()[blockIndex] = block;
}
}
}
renderer = ModelRenderer(0, 0, 0, this);
}
CubeModel::~CubeModel() {
storage->freeArray();
}
int CubeModel::getWidth() {
return width;
}
int CubeModel::getHeight() {
return height;
}
int CubeModel::getDepth() {
return depth;
}
float CubeModel::getScale() {
return scale;
}
void CubeModel::update(time_t dt) {
handleInput();
if (viewMatrixNeedsUpdate) {
glm::vec3 center(width / 2.f, height / 2.f, depth / 2.f);
glm::vec3 position;
float yawR = yaw * 3.14159265f / 180;
float pitchR = pitch * 3.14159265 / 180;
position.x = sinf(yawR) * cosf(pitchR);
position.y = sinf(pitchR);
position.z = cosf(yawR) * cosf(pitchR);
position *= zoom;
position += center;
viewMatrix = glm::lookAt(position, center, glm::vec3(0, 1, 0));
viewMatrixNeedsUpdate = false;
}
raytraceBlocks();
renderer.update(dt);
}
void CubeModel::handleInput() {
if (ts::Mouse::isButtonPressed(ts::Mouse::Button2)) {
int mouseDX = ts::Mouse::getLastMove().x, mouseDY = ts::Mouse::getLastMove().y;
pitch -= mouseDY;
yaw -= mouseDX;
yaw %= 360;
if (pitch < -89) {
pitch = -89;
}
if (pitch > 89) {
pitch = 89;
}
viewMatrixNeedsUpdate = true;
}
if (ts::Keyboard::checkKeyEvent(ts::Keyboard::Up) == ts::Keyboard::keyPressed) {
zoom -= 1;
int maxHeightDepth = (height > depth ? height : depth);
int maxWidthHeightDepth = (width > maxHeightDepth ? width : maxHeightDepth);
if (zoom < maxWidthHeightDepth / 2) {
zoom = maxWidthHeightDepth / 2;
}
viewMatrixNeedsUpdate = true;
}
if (ts::Keyboard::checkKeyEvent(ts::Keyboard::Down) == ts::Keyboard::keyPressed) {
zoom += 1;
int maxHeightDepth = (height > depth ? height : depth);
int maxWidthHeightDepth = (width > maxHeightDepth ? width : maxHeightDepth);
if (zoom > maxWidthHeightDepth * 2) {
zoom = maxWidthHeightDepth * 2;
}
viewMatrixNeedsUpdate = true;
}
if (ts::Keyboard::checkKeyEvent(ts::Keyboard::Left) == ts::Keyboard::keyPressed) {
if(colorSize > 1)colorSize--;
}
if (ts::Keyboard::checkKeyEvent(ts::Keyboard::Right) == ts::Keyboard::keyPressed) {
int maxHeightDepth = (height > depth ? height : depth);
int maxWidthHeightDepth = (width > maxHeightDepth ? width : maxHeightDepth);
if(colorSize < maxWidthHeightDepth) colorSize++;
}
if ((ts::Mouse::isButtonPressed(ts::Mouse::Button0) && (ts::Mouse::getLastMove().x != 0 || ts::Mouse::getLastMove().y != 0))
|| (ts::Mouse::checkMouseButtonEvent(ts::Mouse::Button0) == ts::Mouse::buttonPressed)) {
if (selectedBlock.block != NULL) {
for (int x = selectedBlock.x - (colorSize / 2); x < selectedBlock.x + ((colorSize + 1) / 2); ++x) {
for (int y = selectedBlock.y - (colorSize / 2); y < selectedBlock.y + ((colorSize + 1) / 2); ++y) {
for (int z = selectedBlock.z - (colorSize / 2); z < selectedBlock.z + ((colorSize + 1) / 2); ++z) {
if (x >= 0 && x < width && y >= 0 && y < height && z >= 0 && z < depth) {
Block * block = storage->getBlockArray()[x * height * depth + y * depth + z];
if (block != NULL) {
block->setDrawn(false);
renderer.markDirty();
}
}
}
}
}
}
}
if ((ts::Mouse::isButtonPressed(ts::Mouse::Button1) && (ts::Mouse::getLastMove().x != 0 || ts::Mouse::getLastMove().y != 0))
|| (ts::Mouse::checkMouseButtonEvent(ts::Mouse::Button1) == ts::Mouse::buttonPressed)) {
if (selectedBlock.block != NULL) {
glm::vec3 placeBlockPos = selectedBlock.getAddBlockPosition();
if (placeBlockPos.x >= 0 && placeBlockPos.x <= width - 1 && placeBlockPos.y >= 0 && placeBlockPos.y <= height - 1 && placeBlockPos.z >= 0 && placeBlockPos.z <= depth - 1) {
Block * block = storage->getBlockArray()[(int) placeBlockPos.x * height * depth + (int) placeBlockPos.y * depth + (int) placeBlockPos.z];
if (!block->isDrawn()) {
block->setColor(currentColor);
block->setDrawn(true);
renderer.updateBlockAtPosition(placeBlockPos.x, placeBlockPos.y, placeBlockPos.z);
}
}
}
}
if (ts::Keyboard::isKeyPressed(ts::Keyboard::Num1)) {
if (selectedBlock.block != NULL) {
Block * block = storage->getBlockArray()[selectedBlock.x * height * depth + selectedBlock.y * depth + selectedBlock.z];
block->setDrawn(false);
renderer.markDirty();
}
}
if (ts::Keyboard::isKeyPressed(ts::Keyboard::Num2)) {
if (selectedBlock.block != NULL) {
glm::vec3 placeBlockPos = selectedBlock.getAddBlockPosition();
if (placeBlockPos.x >= 0 && placeBlockPos.x < width && placeBlockPos.y >= 0 && placeBlockPos.y < height && placeBlockPos.z >= 0 && placeBlockPos.z < depth) {
Block * block = storage->getBlockArray()[(int) placeBlockPos.x * height * depth + (int) placeBlockPos.y * depth + (int) placeBlockPos.z];
if (!block->isDrawn()) {
block->setColor(currentColor);
block->setDrawn(true);
renderer.updateBlockAtPosition(placeBlockPos.x, placeBlockPos.y, placeBlockPos.z);
}
}
}
}
if (ts::Keyboard::checkKeyEvent(ts::Keyboard::Z) == ts::Keyboard::keyPressed && !ts::Keyboard::isKeyPressed(ts::Keyboard::LShift)) {
if (selectedBlock.block != NULL) {
int x = selectedBlock.x;
int y = selectedBlock.y;
for (int i = 0; i < depth; ++i) {
Block * block = storage->getBlockArray()[x * height * depth + y * depth + i];
block->setDrawn(false);
}
renderer.markDirty();
}
} else if (ts::Keyboard::checkKeyEvent(ts::Keyboard::Z) == ts::Keyboard::keyPressed && ts::Keyboard::isKeyPressed(ts::Keyboard::LShift)) {
if (selectedBlock.block != NULL) {
glm::vec3 placeBlockPos = selectedBlock.getAddBlockPosition();
int x = placeBlockPos.x;
int y = placeBlockPos.y;
if (x >= 0 && x < width && y >= 0 && y < height) {
for (int i = 0; i < depth; ++i) {
Block * block = storage->getBlockArray()[x * height * depth + y * depth + i];
block->setColor(currentColor);
block->setDrawn(true);
renderer.updateBlockAtPosition(x, y, i);
}
renderer.markDirty();
}
}
}
if (ts::Keyboard::checkKeyEvent(ts::Keyboard::X) == ts::Keyboard::keyPressed && !ts::Keyboard::isKeyPressed(ts::Keyboard::LShift)) {
if (selectedBlock.block != NULL) {
int y = selectedBlock.y;
int z = selectedBlock.z;
for (int i = 0; i < width; ++i) {
Block * block = storage->getBlockArray()[i * height * depth + y * depth + z];
block->setDrawn(false);
}
renderer.markDirty();
}
} else if (ts::Keyboard::checkKeyEvent(ts::Keyboard::X) == ts::Keyboard::keyPressed && ts::Keyboard::isKeyPressed(ts::Keyboard::LShift)) {
if (selectedBlock.block != NULL) {
glm::vec3 placeBlockPos = selectedBlock.getAddBlockPosition();
int y = placeBlockPos.y;
int z = placeBlockPos.z;
if (z >= 0 && z < depth && y >= 0 && y < height) {
for (int i = 0; i < width; ++i) {
Block * block = storage->getBlockArray()[i * height * depth + y * depth + z];
block->setColor(currentColor);
block->setDrawn(true);
renderer.updateBlockAtPosition(i, y, z);
}
renderer.markDirty();
}
}
}
if (ts::Keyboard::checkKeyEvent(ts::Keyboard::Y) == ts::Keyboard::keyPressed && !ts::Keyboard::isKeyPressed(ts::Keyboard::LShift)) {
if (selectedBlock.block != NULL) {
int x = selectedBlock.x;
int z = selectedBlock.z;
for (int i = 0; i < height; ++i) {
Block * block = storage->getBlockArray()[x * height * depth + i * depth + z];
block->setDrawn(false);
}
renderer.markDirty();
}
} else if (ts::Keyboard::checkKeyEvent(ts::Keyboard::Y) == ts::Keyboard::keyPressed && ts::Keyboard::isKeyPressed(ts::Keyboard::LShift)) {
if (selectedBlock.block != NULL) {
glm::vec3 placeBlockPos = selectedBlock.getAddBlockPosition();
int x = placeBlockPos.x;
int z = placeBlockPos.z;
if (z >= 0 && z < depth && x >= 0 && x < width) {
for (int i = 0; i < width; ++i) {
Block * block = storage->getBlockArray()[x * height * depth + i * depth + z];
block->setColor(currentColor);
block->setDrawn(true);
renderer.updateBlockAtPosition(x, i, z);
}
renderer.markDirty();
}
}
}
if (ts::Keyboard::isKeyPressed(ts::Keyboard::C) == ts::Keyboard::keyPressed) {
if (selectedBlock.block != NULL) {
for (int x = selectedBlock.x - (colorSize / 2); x < selectedBlock.x + ((colorSize + 1) / 2); ++x) {
for (int y = selectedBlock.y - (colorSize / 2); y < selectedBlock.y + ((colorSize + 1) / 2); ++y) {
for (int z = selectedBlock.z - (colorSize / 2); z < selectedBlock.z + ((colorSize + 1) / 2); ++z) {
if (x >= 0 && x < width && y >= 0 && y < height && z >= 0 && z < depth) {
Block * block = storage->getBlockArray()[x * height * depth + y * depth + z];
if (block != NULL) {
block->setColor(currentColor);
renderer.updateBlockAtPosition(x, y, z);
}
}
}
}
}
}
}
}
void CubeModel::draw() {
renderer.render(&viewMatrix);
}
void CubeModel::setColor(glm::vec3 color) {
currentColor = color;
}
void CubeModel::save(const char * fileName) {
std::ofstream file(fileName, std::ios::binary);
if (!file.is_open()) {
std::cout << "file couldn't be opened\n";
return;
}
const char * identifier = "cm";
file.write(identifier, 2);
file.write((char *) &width, 4);
file.write((char *) &height, 4);
file.write((char *) &depth, 4);
for (int x = 0; x < width; ++x) {
for (int y = 0; y < height; ++y) {
for (int z = 0; z < depth; ++z) {
int blockIndex = x * height * depth + y * depth + z;
Block * block = storage->getBlockArray()[blockIndex];
bool isDrawn = block->isDrawn();
glm::vec3 blockColor = block->getColor();
unsigned char r = blockColor.r * 255;
unsigned char g = blockColor.g * 255;
unsigned char b = blockColor.b * 255;
file.write((char *) &isDrawn, 1);
file.write((char *) &r, 1);
file.write((char *) &g, 1);
file.write((char *) &b, 1);
}
}
}
file.close();
}
void CubeModel::load(const char * fileName) {
std::ifstream file(fileName, std::ios::binary);
if (!file.is_open()) {
std::cout << "file could not be opened\n";
return;
}
char identifier[2];
file.read(&identifier[0], 1);
file.read(&identifier[1], 1);
if (!(identifier[0] == 'c' && identifier[1] == 'm')) {
std::cout << "wrong file format\n";
return;
}
char header[12];
file.read(header, 12);
width = *(int *) &header[0];
height = *(int *) &header[4];
depth = *(int *) &header[8];
int numCubes = width * height * depth;
int bytesPerCube = 4;
int bufferSize = numCubes * bytesPerCube;
char * buffer = new char[bufferSize];
file.read(buffer, bufferSize);
for (int x = 0; x < width; ++x) {
for (int y = 0; y < height; ++y) {
for (int z = 0; z < depth; ++z) {
int blockIndex = x * height * depth + y * depth + z;
Block * block = storage->getBlockArray()[blockIndex];
bool drawn = *(bool *) &buffer[blockIndex * bytesPerCube];
glm::vec3 blockColor;
unsigned char r = buffer[blockIndex * bytesPerCube + 1];
unsigned char g = buffer[blockIndex * bytesPerCube + 2];
unsigned char b = buffer[blockIndex * bytesPerCube + 3];
blockColor.r = r / 255.f;
blockColor.g = g / 255.f;
blockColor.b = b / 255.f;
block->setDrawn(drawn);
block->setColor(blockColor);
renderer.updateBlockAtPosition(x, y, z);
}
}
}
renderer.markDirty();
file.close();
}
SelectedBlock CubeModel::getSelectedBlock() {
return selectedBlock;
}
void CubeModel::raytraceBlocks() {
glm::vec2 mousePos = ts::Mouse::getPosition();
glm::vec3 startPos = glm::unProject(glm::vec3(mousePos.x, 600 - mousePos.y, 0.f), viewMatrix, *(BaseRenderer::getProjectionMatrix()), glm::vec4(0, 0, 800, 600));
glm::vec3 endPos = glm::unProject(glm::vec3(mousePos.x, 600 - mousePos.y, 1.f), viewMatrix, *(BaseRenderer::getProjectionMatrix()), glm::vec4(0, 0, 800, 600));
bool posXChange = endPos.x > startPos.x;
bool posYChange = endPos.y > startPos.y;
bool posZChange = endPos.z > startPos.z;
int startX = (posXChange ? floorf(startPos.x) : ceilf(startPos.x));
int endX = (posXChange ? ceilf(endPos.x) : floorf(endPos.x));
int startY = (posYChange ? floorf(startPos.y) : ceilf(startPos.y));
int endY = (posYChange ? ceilf(endPos.y) : floorf(endPos.y));
int startZ = (posZChange ? floorf(startPos.z) : ceilf(startPos.z));
int endZ = (posZChange ? ceilf(endPos.z) : floorf(endPos.z));
int xChange = (posXChange ? 1 : -1);
int yChange = (posYChange ? 1 : -1);
int zChange = (posZChange ? 1 : -1);
for (int x = startX; x != endX + xChange; x += xChange) {
for (int y = startY; y != endY + yChange; y += yChange) {
for (int z = startZ; z != endZ + zChange; z += zChange) {
if (x >= 0 && x < width && y >= 0 && y < height && z >= 0 && z < depth) {
int blockIndex = x * height * depth + y * depth + z;
Block * currentBlock = storage->getBlockArray()[blockIndex];
if (currentBlock->isDrawn()) {
Face face = currentBlock->raytrace(x, y, z, startPos, endPos);
if (face != face_nocollision) {
selectedBlock = SelectedBlock(x, y, z, currentBlock, face);
return;
}
}
}
}
}
}
selectedBlock = SelectedBlock(0, 0, 0, NULL, face_nocollision);
}
| [
"tschicke@optonline.net"
] | tschicke@optonline.net |
a19263801290fe05963b264627e3ccda2b76700d | 80759f699acf38bf4889892aa41e775accc3494e | /Examples/Modules/UsingVTK/uses_vtk_exe.cxx | c1b9bb9e8c6ba244331dd8a4a801d23dda0ca014 | [
"BSD-3-Clause"
] | permissive | EvgenyVRN/VTK | 97fd26c6faee4e853c74ff6bc63cfcd84ea0691a | ff6ac14b68112c27ae06d790f7323cd9e7491455 | refs/heads/master | 2021-06-29T17:22:29.205704 | 2021-03-25T11:46:29 | 2021-03-25T11:46:29 | 203,143,061 | 0 | 1 | NOASSERTION | 2020-02-26T09:59:20 | 2019-08-19T09:37:46 | C++ | UTF-8 | C++ | false | false | 156 | cxx | #include "uses_vtk.h"
int main(int argc, char* argv[])
{
if (vtkObject_class_name() == "vtkObject")
{
return 0;
}
else
{
return 1;
}
}
| [
"ben.boeckel@kitware.com"
] | ben.boeckel@kitware.com |
d07efcb482c9f3d2fbed6bc21f70659ac0ffdd9a | d4a2c50a90792600c4d864fffe9c1a9d1ebd6acc | /pcvideo/PcVideo/StdAfx.cpp | dea292d56201f2090fdcb6a4dbcf0317047bf5a1 | [] | no_license | iwasen/MyProg | 3080316c3444e98d013587e92c066e278e796041 | a0755a21d77647261df271ce301404a4e0294a7b | refs/heads/master | 2022-12-30T00:28:07.539183 | 2020-10-25T06:36:27 | 2020-10-25T06:36:27 | 307,039,466 | 0 | 4 | null | null | null | null | SHIFT_JIS | C++ | false | false | 282 | cpp | // stdafx.cpp : 標準インクルードファイルを含むソース ファイル
// PcVideo.pch : 生成されるプリコンパイル済ヘッダー
// stdafx.obj : 生成されるプリコンパイル済タイプ情報
#include "stdafx.h"
| [
"git@iwasen.jp"
] | git@iwasen.jp |
32f11b556968f29804f75c4b91f0ba0f77f7f2d2 | 44575d92a88f312206e3bfe1238879ef85dccef7 | /src/renderer/texture.cpp | 5d8eb7430781dc630e4c60e3d7aa604f19c9e156 | [
"MIT"
] | permissive | jlsa/LumixEngine | 3bc03731aea4aa503295b559b7b037401108a583 | 2f36422e145f535f5f4c03be9a42d34a5f12a9b7 | refs/heads/master | 2021-04-27T00:26:06.262712 | 2018-02-28T22:56:31 | 2018-02-28T22:56:31 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 15,339 | cpp | #include "engine/fs/file_system.h"
#include "engine/log.h"
#include "engine/math_utils.h"
#include "engine/path_utils.h"
#include "engine/profiler.h"
#include "engine/resource_manager.h"
#include "engine/resource_manager_base.h"
#include "renderer/texture.h"
#include "renderer/texture_manager.h"
#include <bgfx/bgfx.h>
#include <cmath>
namespace Lumix
{
const ResourceType Texture::TYPE("texture");
Texture::Texture(const Path& path, ResourceManagerBase& resource_manager, IAllocator& _allocator)
: Resource(path, resource_manager, _allocator)
, data_reference(0)
, allocator(_allocator)
, data(_allocator)
, bytes_per_pixel(-1)
, depth(-1)
, layers(1)
{
bgfx_flags = 0;
is_cubemap = false;
handle = BGFX_INVALID_HANDLE;
}
Texture::~Texture()
{
ASSERT(isEmpty());
}
void Texture::setFlag(u32 flag, bool value)
{
u32 new_flags = bgfx_flags & ~flag;
new_flags |= value ? flag : 0;
bgfx_flags = new_flags;
m_resource_manager.reload(*this);
}
void Texture::setFlags(u32 flags)
{
if (isReady() && bgfx_flags != flags)
{
g_log_warning.log("Renderer") << "Trying to set different flags for texture " << getPath().c_str()
<< ". They are ignored.";
return;
}
bgfx_flags = flags;
}
void Texture::destroy()
{
doUnload();
}
bool Texture::create(int w, int h, const void* data)
{
if (data)
{
handle = bgfx::createTexture2D(
(uint16_t)w, (uint16_t)h, false, 1, bgfx::TextureFormat::RGBA8, bgfx_flags, bgfx::copy(data, w * h * 4));
}
else
{
handle = bgfx::createTexture2D((uint16_t)w, (uint16_t)h, false, 1, bgfx::TextureFormat::RGBA8, bgfx_flags);
}
mips = 1;
width = w;
height = h;
bool isReady = bgfx::isValid(handle);
onCreated(isReady ? State::READY : State::FAILURE);
return isReady;
}
u32 Texture::getPixelNearest(int x, int y) const
{
if (data.empty() || x >= width || y >= height || x < 0 || y < 0 || bytes_per_pixel != 4) return 0;
return *(u32*)&data[(x + y * width) * 4];
}
u32 Texture::getPixel(float x, float y) const
{
ASSERT(bytes_per_pixel == 4);
if (data.empty() || x >= width || y >= height || x < 0 || y < 0)
{
return 0;
}
// http://fastcpp.blogspot.sk/2011/06/bilinear-pixel-interpolation-using-sse.html
int px = (int)x;
int py = (int)y;
const u32* p0 = (u32*)&data[(px + py * width) * 4];
const u8* p1 = (u8*)p0;
const u8* p2 = (u8*)(p0 + 1);
const u8* p3 = (u8*)(p0 + width);
const u8* p4 = (u8*)(p0 + 1 + width);
float fx = x - px;
float fy = y - py;
float fx1 = 1.0f - fx;
float fy1 = 1.0f - fy;
int w1 = (int)(fx1 * fy1 * 256.0f);
int w2 = (int)(fx * fy1 * 256.0f);
int w3 = (int)(fx1 * fy * 256.0f);
int w4 = (int)(fx * fy * 256.0f);
u8 res[4];
res[0] = (u8)((p1[0] * w1 + p2[0] * w2 + p3[0] * w3 + p4[0] * w4) >> 8);
res[1] = (u8)((p1[1] * w1 + p2[1] * w2 + p3[1] * w3 + p4[1] * w4) >> 8);
res[2] = (u8)((p1[2] * w1 + p2[2] * w2 + p3[2] * w3 + p4[2] * w4) >> 8);
res[3] = (u8)((p1[3] * w1 + p2[3] * w2 + p3[3] * w3 + p4[3] * w4) >> 8);
return *(u32*)res;
}
unsigned int Texture::compareTGA(FS::IFile* file1, FS::IFile* file2, int difference, IAllocator& allocator)
{
TGAHeader header1, header2;
file1->read(&header1, sizeof(header1));
file2->read(&header2, sizeof(header2));
if (header1.bitsPerPixel != header2.bitsPerPixel ||
header1.width != header2.width || header1.height != header2.height ||
header1.dataType != header2.dataType ||
header1.imageDescriptor != header2.imageDescriptor)
{
g_log_error.log("Renderer") << "Trying to compare textures with different formats";
return 0xffffFFFF;
}
int color_mode = header1.bitsPerPixel / 8;
if (header1.dataType != 2)
{
g_log_error.log("Renderer") << "Unsupported texture format";
return 0xffffFFFF;
}
int different_pixel_count = 0;
size_t pixel_count = header1.width * header1.height;
u8* img1 = (u8*)allocator.allocate(pixel_count * color_mode);
u8* img2 = (u8*)allocator.allocate(pixel_count * color_mode);
file1->read(img1, pixel_count * color_mode);
file2->read(img2, pixel_count * color_mode);
for (size_t i = 0; i < pixel_count * color_mode; i += color_mode)
{
for (int j = 0; j < color_mode; ++j)
{
if (Math::abs(img1[i + j] - img2[i + j]) > difference)
{
++different_pixel_count;
break;
}
}
}
allocator.deallocate(img1);
allocator.deallocate(img2);
return different_pixel_count;
}
bool Texture::saveTGA(FS::IFile* file,
int width,
int height,
int bytes_per_pixel,
const u8* image_dest,
const Path& path,
IAllocator& allocator)
{
if (bytes_per_pixel != 4)
{
g_log_error.log("Renderer") << "Texture " << path.c_str() << " could not be saved, unsupported TGA format";
return false;
}
u8* data = (u8*)allocator.allocate(width * height * 4);
TGAHeader header;
setMemory(&header, 0, sizeof(header));
header.bitsPerPixel = (char)(bytes_per_pixel * 8);
header.height = (short)height;
header.width = (short)width;
header.dataType = 2;
header.imageDescriptor = 32;
file->write(&header, sizeof(header));
for (long y = 0; y < header.height; y++)
{
long read_index = y * header.width * 4;
long write_index = ((header.imageDescriptor & 32) != 0) ? read_index : y * header.width * 4;
for (long x = 0; x < header.width; x++)
{
data[write_index + 0] = image_dest[write_index + 2];
data[write_index + 1] = image_dest[write_index + 1];
data[write_index + 2] = image_dest[write_index + 0];
data[write_index + 3] = image_dest[write_index + 3];
write_index += 4;
}
}
file->write(data, width * height * 4);
allocator.deallocate(data);
return true;
}
static void saveTGA(Texture& texture)
{
if (texture.data.empty())
{
g_log_error.log("Renderer") << "Texture " << texture.getPath().c_str()
<< " could not be saved, no data was loaded";
return;
}
FS::FileSystem& fs = texture.getResourceManager().getOwner().getFileSystem();
FS::IFile* file = fs.open(fs.getDefaultDevice(), texture.getPath(), FS::Mode::CREATE_AND_WRITE);
Texture::saveTGA(file,
texture.width,
texture.height,
texture.bytes_per_pixel,
&texture.data[0],
texture.getPath(),
texture.allocator);
fs.close(*file);
}
void Texture::save()
{
char ext[5];
ext[0] = 0;
PathUtils::getExtension(ext, 5, getPath().c_str());
if (equalStrings(ext, "raw") && bytes_per_pixel == 2)
{
FS::FileSystem& fs = m_resource_manager.getOwner().getFileSystem();
FS::IFile* file = fs.open(fs.getDefaultDevice(), getPath(), FS::Mode::CREATE_AND_WRITE);
file->write(&data[0], data.size() * sizeof(data[0]));
fs.close(*file);
}
else if (equalStrings(ext, "tga") && bytes_per_pixel == 4)
{
Lumix::saveTGA(*this);
}
else
{
g_log_error.log("Renderer") << "Texture " << getPath().c_str() << " can not be saved - unsupported format";
}
}
void Texture::onDataUpdated(int x, int y, int w, int h)
{
PROFILE_FUNCTION();
const bgfx::Memory* mem;
if (bytes_per_pixel == 2)
{
const u16* src_mem = (const u16*)&data[0];
mem = bgfx::alloc(w * h * sizeof(float));
float* dst_mem = (float*)mem->data;
for (int j = 0; j < h; ++j)
{
for (int i = 0; i < w; ++i)
{
dst_mem[i + j * w] = src_mem[x + i + (y + j) * width] / 65535.0f;
}
}
}
else
{
ASSERT(bytes_per_pixel == 4);
const u8* src_mem = (const u8*)&data[0];
mem = bgfx::alloc(w * h * bytes_per_pixel);
u8* dst_mem = mem->data;
for (int j = 0; j < h; ++j)
{
copyMemory(
&dst_mem[(j * w) * bytes_per_pixel],
&src_mem[(x + (y + j) * width) * bytes_per_pixel],
bytes_per_pixel * w);
}
}
bgfx::updateTexture2D(handle, 0, 0, (uint16_t)x, (uint16_t)y, (uint16_t)w, (uint16_t)h, mem);
}
bool loadRaw(Texture& texture, FS::IFile& file)
{
PROFILE_FUNCTION();
size_t size = file.size();
texture.bytes_per_pixel = 2;
texture.width = (int)sqrt(size / texture.bytes_per_pixel);
texture.height = texture.width;
if (texture.data_reference)
{
texture.data.resize((int)size);
file.read(&texture.data[0], size);
}
const u16* src_mem = (const u16*)file.getBuffer();
const bgfx::Memory* mem = bgfx::alloc(texture.width * texture.height * sizeof(float));
float* dst_mem = (float*)mem->data;
for (int i = 0; i < texture.width * texture.height; ++i)
{
dst_mem[i] = src_mem[i] / 65535.0f;
}
texture.handle = bgfx::createTexture2D((uint16_t)texture.width,
(uint16_t)texture.height,
false,
1,
bgfx::TextureFormat::R32F,
texture.bgfx_flags,
nullptr);
bgfx::setName(texture.handle, texture.getPath().c_str());
// update must be here because texture is immutable otherwise
bgfx::updateTexture2D(texture.handle, 0, 0, 0, 0, (uint16_t)texture.width, (uint16_t)texture.height, mem);
texture.depth = 1;
texture.layers = 1;
texture.mips = 1;
texture.is_cubemap = false;
return bgfx::isValid(texture.handle);
}
static void flipVertical(u32* image, int width, int height)
{
for (int j = 0; j < height / 2; ++j)
{
int row_offset = width * j;
int inv_j = height - j - 1;
int inv_row_offset = width * inv_j;
for (int i = 0; i < width; ++i)
{
u32 tmp = image[i + row_offset];
image[i + row_offset] = image[i + inv_row_offset];
image[i + inv_row_offset] = tmp;
}
}
}
bool Texture::loadTGA(FS::IFile& file, TGAHeader& header, Array<u8>& data, const char* path)
{
PROFILE_FUNCTION();
file.read(&header, sizeof(header));
int bytes_per_pixel = header.bitsPerPixel / 8;
int image_size = header.width * header.height * 4;
if (header.dataType != 2 && header.dataType != 10)
{
g_log_error.log("Renderer") << "Unsupported texture format " << path;
return false;
}
if (bytes_per_pixel < 3)
{
g_log_error.log("Renderer") << "Unsupported color mode " << path;
return false;
}
int pixel_count = header.width * header.height;
data.resize(image_size);
u8* image_dest = &data[0];
bool is_rle = header.dataType == 10;
if (is_rle)
{
u8* out = image_dest;
u8 byte;
struct Pixel {
u8 uint8[4];
} pixel;
do
{
file.read(&byte, sizeof(byte));
if (byte < 128)
{
u8 count = byte + 1;
for (u8 i = 0; i < count; ++i)
{
file.read(&pixel, bytes_per_pixel);
out[0] = pixel.uint8[2];
out[1] = pixel.uint8[1];
out[2] = pixel.uint8[0];
if (bytes_per_pixel == 4) out[3] = pixel.uint8[3];
else out[3] = 255;
out += 4;
}
}
else
{
byte -= 127;
file.read(&pixel, bytes_per_pixel);
for (int i = 0; i < byte; ++i)
{
out[0] = pixel.uint8[2];
out[1] = pixel.uint8[1];
out[2] = pixel.uint8[0];
if (bytes_per_pixel == 4) out[3] = pixel.uint8[3];
else out[3] = 255;
out += 4;
}
}
} while (out - image_dest < pixel_count * 4);
}
else
{
for (long y = 0; y < header.height; y++)
{
long idx = y * header.width * 4;
for (long x = 0; x < header.width; x++)
{
file.read(&image_dest[idx + 2], sizeof(u8));
file.read(&image_dest[idx + 1], sizeof(u8));
file.read(&image_dest[idx + 0], sizeof(u8));
if (bytes_per_pixel == 4)
file.read(&image_dest[idx + 3], sizeof(u8));
else
image_dest[idx + 3] = 255;
idx += 4;
}
}
}
if ((header.imageDescriptor & 32) == 0) flipVertical((u32*)image_dest, header.width, header.height);
return true;
}
bool Texture::loadTGA(FS::IFile& file)
{
PROFILE_FUNCTION();
TGAHeader header;
file.read(&header, sizeof(header));
bytes_per_pixel = header.bitsPerPixel / 8;
int image_size = header.width * header.height * 4;
if (header.dataType != 2 && header.dataType != 10)
{
g_log_error.log("Renderer") << "Unsupported texture format " << getPath().c_str();
return false;
}
if (bytes_per_pixel < 3)
{
g_log_error.log("Renderer") << "Unsupported color mode " << getPath().c_str();
return false;
}
width = header.width;
height = header.height;
int pixel_count = width * height;
is_cubemap = false;
TextureManager& manager = static_cast<TextureManager&>(getResourceManager());
if (data_reference)
{
data.resize(image_size);
}
u8* image_dest = data_reference ? &data[0] : (u8*)manager.getBuffer(image_size);
bool is_rle = header.dataType == 10;
if (is_rle)
{
u8* out = image_dest;
u8 byte;
struct Pixel {
u8 uint8[4];
} pixel;
do
{
file.read(&byte, sizeof(byte));
if (byte < 128)
{
u8 count = byte + 1;
for (u8 i = 0; i < count; ++i)
{
file.read(&pixel, bytes_per_pixel);
out[0] = pixel.uint8[2];
out[1] = pixel.uint8[1];
out[2] = pixel.uint8[0];
if (bytes_per_pixel == 4) out[3] = pixel.uint8[3];
else out[3] = 255;
out += 4;
}
}
else
{
byte -= 127;
file.read(&pixel, bytes_per_pixel);
for (int i = 0; i < byte; ++i)
{
out[0] = pixel.uint8[2];
out[1] = pixel.uint8[1];
out[2] = pixel.uint8[0];
if (bytes_per_pixel == 4) out[3] = pixel.uint8[3];
else out[3] = 255;
out += 4;
}
}
} while (out - image_dest < pixel_count * 4);
}
else
{
for (long y = 0; y < header.height; y++)
{
long idx = y * header.width * 4;
for (long x = 0; x < header.width; x++)
{
file.read(&image_dest[idx + 2], sizeof(u8));
file.read(&image_dest[idx + 1], sizeof(u8));
file.read(&image_dest[idx + 0], sizeof(u8));
if (bytes_per_pixel == 4)
file.read(&image_dest[idx + 3], sizeof(u8));
else
image_dest[idx + 3] = 255;
idx += 4;
}
}
}
if ((header.imageDescriptor & 32) == 0) flipVertical((u32*)image_dest, header.width, header.height);
bytes_per_pixel = 4;
mips = 1;
handle = bgfx::createTexture2D(
header.width,
header.height,
false,
0,
bgfx::TextureFormat::RGBA8,
bgfx_flags,
nullptr);
bgfx::setName(handle, getPath().c_str());
// update must be here because texture is immutable otherwise
bgfx::updateTexture2D(handle,
0,
0,
0,
0,
header.width,
header.height,
bgfx::copy(image_dest, header.width * header.height * 4));
depth = 1;
layers = 1;
return bgfx::isValid(handle);
}
void Texture::addDataReference()
{
++data_reference;
if (data_reference == 1 && isReady())
{
m_resource_manager.reload(*this);
}
}
void Texture::removeDataReference()
{
--data_reference;
if (data_reference == 0)
{
data.clear();
}
}
static bool loadDDSorKTX(Texture& texture, FS::IFile& file)
{
bgfx::TextureInfo info;
const auto* mem = bgfx::copy(file.getBuffer(), (u32)file.size());
texture.handle = bgfx::createTexture(mem, texture.bgfx_flags, 0, &info);
bgfx::setName(texture.handle, texture.getPath().c_str());
texture.width = info.width;
texture.mips = info.numMips;
texture.height = info.height;
texture.depth = info.depth;
texture.layers = info.numLayers;
texture.is_cubemap = info.cubeMap;
return bgfx::isValid(texture.handle);
}
bool Texture::load(FS::IFile& file)
{
PROFILE_FUNCTION();
const char* path = getPath().c_str();
size_t len = getPath().length();
bool loaded = false;
if (len > 3 && (equalStrings(path + len - 4, ".dds") || equalStrings(path + len - 4, ".ktx")))
{
loaded = loadDDSorKTX(*this, file);
}
else if (len > 3 && equalStrings(path + len - 4, ".raw"))
{
loaded = loadRaw(*this, file);
}
else
{
loaded = loadTGA(file);
}
if (!loaded)
{
g_log_warning.log("Renderer") << "Error loading texture " << path;
return false;
}
m_size = file.size();
return true;
}
void Texture::unload()
{
if (bgfx::isValid(handle))
{
bgfx::destroy(handle);
handle = BGFX_INVALID_HANDLE;
}
data.clear();
}
} // namespace Lumix
| [
"mikulas.florek@gamedev.sk"
] | mikulas.florek@gamedev.sk |
97f143df4798a414cc20ff96dfb75bc49199c44e | 3db61adb2f06bf4ebf90e6cbc589b433a999833b | /src/takram/tween.cc | 315a29b1dbfe303994d37b399a6e21edf49d8aa3 | [
"MIT"
] | permissive | takram-design-engineering/takram-tween | ee96e788925fa0e6ff5505167134d84586155053 | dcee74b46fce21129ee9843f29a589c445a4401a | refs/heads/master | 2020-12-24T16:35:05.937943 | 2016-10-24T14:26:11 | 2016-10-24T14:26:11 | 27,755,318 | 6 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,372 | cc | //
// takram/tween.cc
//
// The MIT License
//
// Copyright (C) 2015 Shota Matsuda
//
// 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 "takram/tween.h"
namespace takram {
namespace tween {
const double version_number = 1.0;
const unsigned char version_string[] = "1.0";
} // namespace tween
} // namespace takram
| [
"s@sgss.co"
] | s@sgss.co |
e14f69c0401e4484f05f9cad9d925a26cae9ec9c | 04b1803adb6653ecb7cb827c4f4aa616afacf629 | /components/download/internal/background_service/store.h | c810af38a1e0d0d472fa454901182c16e3325dd5 | [
"BSD-3-Clause"
] | permissive | Samsung/Castanets | 240d9338e097b75b3f669604315b06f7cf129d64 | 4896f732fc747dfdcfcbac3d442f2d2d42df264a | refs/heads/castanets_76_dev | 2023-08-31T09:01:04.744346 | 2021-07-30T04:56:25 | 2021-08-11T05:45:21 | 125,484,161 | 58 | 49 | BSD-3-Clause | 2022-10-16T19:31:26 | 2018-03-16T08:07:37 | null | UTF-8 | C++ | false | false | 1,717 | h | // Copyright 2017 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 COMPONENTS_DOWNLOAD_INTERNAL_BACKGROUND_SERVICE_STORE_H_
#define COMPONENTS_DOWNLOAD_INTERNAL_BACKGROUND_SERVICE_STORE_H_
#include <memory>
#include <string>
#include <vector>
#include "base/callback_forward.h"
namespace download {
struct Entry;
// A backing storage interface responsible for persisting Entry objects.
class Store {
public:
using InitCallback =
base::OnceCallback<void(bool success,
std::unique_ptr<std::vector<Entry>> entries)>;
using StoreCallback = base::OnceCallback<void(bool success)>;
virtual ~Store() = default;
// Returns whether or not this Store is initialized and can be interracted
// with.
virtual bool IsInitialized() = 0;
// Initializes this Store and asynchronously returns whether or not that
// initialization was successful as well as a list of Entry objects from the
// Store.
virtual void Initialize(InitCallback callback) = 0;
// Destroys the underlying store and attempts to re-initialize.
virtual void HardRecover(StoreCallback callback) = 0;
// Adds or updates |entry| in this Store asynchronously and returns whether or
// not that was successful.
virtual void Update(const Entry& entry, StoreCallback callback) = 0;
// Removes the Entry associated with |guid| from this Store asynchronously and
// returns whether or not that was successful.
virtual void Remove(const std::string& guid, StoreCallback callback) = 0;
};
} // namespace download
#endif // COMPONENTS_DOWNLOAD_INTERNAL_BACKGROUND_SERVICE_STORE_H_
| [
"sunny.nam@samsung.com"
] | sunny.nam@samsung.com |
a8ef5fd0fc59bb6ea4dcb1ee9c982711da8d4bd0 | 18ad206ce03ee50184d9dc9f7e081acc35c6d006 | /Test_simpleFoam/simplefoam_p1/20/U | e79838699f44bf65d83eff0bf5260eb3d94f3b32 | [] | no_license | mars2020/CFD-Final-Project | 32080bdd118a8e16a33f715a8fd38d1187f75fd5 | 55c73d10635f7e6dcc223a812a29519a9d1218cd | refs/heads/master | 2022-01-10T19:44:53.590268 | 2019-05-15T01:42:17 | 2019-05-15T01:42:17 | 180,909,389 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,052,396 | /*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: 6.0
\\/ M anipulation |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volVectorField;
location "20";
object U;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 1 -1 0 0 0 0];
internalField nonuniform List<vector>
34500
(
(0.999998 -1.96519e-05 -9.41253e-18)
(0.999976 7.43394e-06 9.0293e-17)
(0.99992 1.17178e-05 2.28923e-17)
(0.999833 -4.49455e-05 -1.34816e-17)
(0.999735 -0.000151969 1.32141e-16)
(0.999647 -0.00027582 3.05375e-16)
(0.999572 -0.000413883 1.52806e-17)
(0.999533 -0.000554018 -2.40278e-16)
(0.999528 -0.000686983 3.70362e-16)
(0.999556 -0.00080164 -2.20636e-17)
(0.999593 -0.000923106 -2.812e-16)
(0.999638 -0.00110205 -4.61883e-16)
(0.999678 -0.00128214 2.1489e-16)
(1.00028 -0.00177494 4.40294e-16)
(0.993582 -0.00479537 -3.90136e-16)
(1 -4.24437e-06 -2.9804e-17)
(0.999952 6.49871e-05 -8.03301e-17)
(0.999828 2.97945e-05 1.89326e-16)
(0.999656 -0.000144246 -1.04785e-16)
(0.999484 -0.000376872 -6.86134e-17)
(0.999328 -0.000608201 -5.99335e-16)
(0.999198 -0.000864492 9.88191e-17)
(0.999142 -0.00112328 1.59753e-16)
(0.999157 -0.00134509 -2.76591e-16)
(0.999229 -0.0015169 -4.53584e-16)
(0.999309 -0.00168925 -1.92325e-16)
(0.99941 -0.0019702 -3.94924e-16)
(0.999405 -0.0022638 -3.05861e-16)
(1.00075 -0.00282283 -5.82818e-16)
(0.994087 -0.00544425 6.97227e-16)
(1.00001 3.25934e-05 -2.2205e-17)
(0.999967 0.000109895 9.83976e-17)
(0.999842 2.59711e-05 3.52009e-17)
(0.999682 -0.000210194 -4.56268e-17)
(0.999536 -0.000465687 -1.09456e-16)
(0.999396 -0.000690254 6.47891e-17)
(0.999274 -0.000947073 -5.75843e-17)
(0.999226 -0.00121241 -8.90305e-17)
(0.999261 -0.00140968 4.63933e-16)
(0.999362 -0.00151707 -2.56597e-16)
(0.999464 -0.00158368 3.55575e-16)
(0.9996 -0.00173351 5.16638e-16)
(0.999493 -0.00192715 -3.44519e-16)
(1.00085 -0.00214691 3.12785e-16)
(0.996741 -0.00272504 -5.11753e-17)
(1.00002 6.95211e-05 4.00283e-18)
(0.999991 0.000124406 -1.63225e-16)
(0.999877 -1.19207e-05 -1.63888e-16)
(0.999739 -0.000284391 7.40846e-17)
(0.999623 -0.000535406 -2.7403e-16)
(0.999503 -0.000738431 1.38064e-16)
(0.999383 -0.000992426 3.36205e-16)
(0.999319 -0.00127916 -2.47494e-16)
(0.999337 -0.00149641 -9.72789e-16)
(0.999431 -0.00160553 3.158e-16)
(0.999532 -0.00164358 -4.88452e-17)
(0.999695 -0.00173554 2.68286e-16)
(0.999527 -0.00190687 4.31749e-16)
(1.00063 -0.00192733 -2.57598e-16)
(0.997826 -0.00199666 -1.95037e-16)
(1.00003 9.62262e-05 4.86063e-17)
(1.00001 0.00011 9.31435e-17)
(0.999904 -7.43733e-05 -1.19582e-16)
(0.999778 -0.000367638 5.03068e-17)
(0.999684 -0.000608262 3.36568e-16)
(0.999586 -0.000790973 4.31823e-16)
(0.999474 -0.00103882 -8.70801e-16)
(0.999391 -0.00134725 3.36726e-16)
(0.999373 -0.00160784 9.27461e-16)
(0.999434 -0.00177106 -3.87117e-16)
(0.999515 -0.00185288 -1.13322e-16)
(0.999697 -0.00196602 -2.99416e-17)
(0.999529 -0.00215575 -2.67404e-16)
(1.00036 -0.00205585 5.89097e-16)
(0.998414 -0.00170914 -3.82019e-16)
(1.00003 0.000109404 2.82199e-17)
(1.00003 7.50402e-05 3.48426e-17)
(0.999932 -0.000145257 1.26045e-16)
(0.999817 -0.000444399 -1.45086e-16)
(0.999749 -0.000668911 -6.50781e-17)
(0.999693 -0.000822401 -4.06332e-16)
(0.999624 -0.00103135 3.22121e-16)
(0.999556 -0.0013086 -8.18314e-17)
(0.999521 -0.00155826 -3.71442e-16)
(0.99955 -0.00173725 7.44848e-16)
(0.999599 -0.00184147 1.42084e-16)
(0.999781 -0.0019623 3.97956e-17)
(0.999638 -0.00214223 4.19799e-16)
(1.00022 -0.00192362 -1.19681e-15)
(0.9989 -0.00102723 4.45498e-16)
(1.00003 0.000109783 -4.91104e-17)
(1.00004 2.82539e-05 5.53527e-17)
(0.999954 -0.00021581 9.7257e-17)
(0.999843 -0.000515433 2.73506e-16)
(0.999792 -0.000733504 7.59247e-17)
(0.999781 -0.000867672 3.44656e-16)
(0.999779 -0.00102421 -1.48138e-16)
(0.99976 -0.00122827 -6.36071e-16)
(0.999741 -0.00140815 -5.75527e-16)
(0.999757 -0.00154571 -7.90271e-16)
(0.999777 -0.0016292 -3.35676e-16)
(0.999942 -0.00173063 1.28436e-17)
(0.999825 -0.00189563 -3.0934e-16)
(1.0002 -0.00160467 1.01926e-15)
(0.999188 -0.000383719 -1.31084e-16)
(1.00003 0.000100182 -3.19981e-17)
(1.00005 -2.22086e-05 -2.24722e-17)
(0.999961 -0.000280568 -4.515e-17)
(0.999832 -0.000585528 -1.4677e-16)
(0.999768 -0.000823737 1.08435e-16)
(0.999775 -0.000976186 4.11054e-18)
(0.999828 -0.00110958 1.05132e-16)
(0.999867 -0.00124848 6.84557e-16)
(0.999888 -0.00134714 5.57579e-17)
(0.999915 -0.00142135 -3.09821e-16)
(0.999925 -0.0014663 4.29253e-16)
(1.00008 -0.00154099 -3.92458e-17)
(0.999995 -0.00170095 -7.58398e-18)
(1.00024 -0.00138809 1.82915e-16)
(0.99938 4.86924e-06 -3.79292e-16)
(1.00001 8.40263e-05 -2.77052e-18)
(1.00005 -6.93853e-05 -1.18791e-16)
(0.999957 -0.000332616 -2.71089e-17)
(0.999799 -0.00064663 1.89352e-16)
(0.999695 -0.000928821 -1.4407e-16)
(0.999682 -0.00113979 2.29834e-16)
(0.999755 -0.00129666 1.50665e-16)
(0.999838 -0.00140909 1.02727e-17)
(0.999902 -0.00145065 1.3821e-16)
(0.999961 -0.00146865 3.48265e-17)
(0.999987 -0.00147295 -4.06286e-16)
(1.00014 -0.00151384 2.51797e-16)
(1.00012 -0.0016537 -1.58516e-16)
(1.00031 -0.00131365 -8.08522e-16)
(0.999622 0.000274337 4.76113e-16)
(0.999999 6.4291e-05 9.09999e-17)
(1.00005 -0.000109103 7.26933e-17)
(0.999967 -0.000365706 -3.23356e-17)
(0.999789 -0.000682544 -1.6309e-16)
(0.999639 -0.0010118 -1.64968e-16)
(0.999584 -0.00129711 -6.29673e-16)
(0.999645 -0.0015068 4.44955e-16)
(0.999747 -0.00162653 9.51325e-18)
(0.999847 -0.00163917 7.66648e-16)
(0.999945 -0.00161405 7.7501e-16)
(1 -0.0015757 -2.23152e-16)
(1.00018 -0.00156747 -6.6273e-17)
(1.00022 -0.00165358 3.85681e-16)
(1.0004 -0.0012498 6.74203e-16)
(0.999941 0.000561012 -5.10867e-16)
(0.999984 4.30781e-05 -2.65238e-17)
(1.00006 -0.000141023 4.95846e-17)
(1.00001 -0.000379541 2.13277e-17)
(0.99984 -0.000683706 -4.10815e-17)
(0.999669 -0.00104067 -1.40168e-16)
(0.999576 -0.00138464 -2.01526e-17)
(0.99961 -0.00164509 -4.7123e-16)
(0.999708 -0.00178295 -6.60799e-16)
(0.999825 -0.00178196 -8.2624e-16)
(0.999954 -0.00172277 -4.8814e-16)
(1.00005 -0.00164019 2.78548e-16)
(1.00024 -0.00157167 -3.2685e-16)
(1.00035 -0.00158308 -2.37104e-16)
(1.00051 -0.00109991 -8.81051e-16)
(1.00026 0.000879991 2.88738e-16)
(0.999971 2.1651e-05 -7.43651e-17)
(1.00008 -0.000167984 -1.10906e-16)
(1.00008 -0.000380949 -5.36652e-18)
(0.999961 -0.000655669 9.57699e-17)
(0.999806 -0.00100967 1.23925e-16)
(0.999698 -0.00137656 -1.60912e-16)
(0.999704 -0.001662 -1.72394e-16)
(0.999784 -0.00180881 2.14634e-16)
(0.999899 -0.00179752 1.04287e-15)
(1.00004 -0.00171155 -9.79301e-17)
(1.00016 -0.00159076 -1.55436e-16)
(1.00036 -0.00146778 2.7405e-16)
(1.00051 -0.00141309 4.26223e-18)
(1.00065 -0.000874157 2.26411e-16)
(1.00052 0.00116649 4.735e-17)
(0.999958 7.91853e-07 1.07165e-16)
(1.00009 -0.000194247 7.04313e-17)
(1.00017 -0.000381319 -1.82877e-16)
(1.00013 -0.00061635 -7.40903e-17)
(1.00002 -0.000939497 5.41033e-18)
(0.999927 -0.00129062 3.04391e-16)
(0.999917 -0.00156769 4.14535e-16)
(0.999973 -0.00170609 3.06193e-16)
(1.00007 -0.0016834 -4.90538e-16)
(1.00021 -0.00158032 6.63101e-16)
(1.00032 -0.00143741 -2.10815e-16)
(1.00052 -0.00128267 1.66193e-16)
(1.00069 -0.00119288 7.74619e-16)
(1.00079 -0.000643568 -2.42392e-17)
(1.00067 0.00135359 1.61106e-18)
(0.999944 -1.89618e-05 -6.2477e-18)
(1.0001 -0.000223487 -6.09072e-17)
(1.00024 -0.000391688 2.50496e-16)
(1.00029 -0.000587438 1.06943e-16)
(1.00026 -0.000863643 -4.05489e-17)
(1.0002 -0.00117051 3.45017e-16)
(1.00019 -0.00141193 -7.09422e-16)
(1.00022 -0.00152711 -4.48558e-16)
(1.00029 -0.00149351 -3.83237e-16)
(1.00041 -0.00138628 -5.57726e-16)
(1.00051 -0.00124327 3.306e-16)
(1.00069 -0.00108681 -1.41762e-16)
(1.00086 -0.000997865 -1.03704e-15)
(1.00092 -0.000479529 4.63888e-16)
(1.00075 0.0014079 9.93462e-17)
(0.999924 -3.71248e-05 -3.52893e-17)
(1.00009 -0.000257693 2.33249e-17)
(1.00029 -0.000419431 -3.05075e-17)
(1.00042 -0.00058603 -1.8618e-16)
(1.00047 -0.000813504 1.41401e-17)
(1.00045 -0.00106319 1.81332e-16)
(1.00045 -0.00125441 3.19781e-16)
(1.00047 -0.00133935 4.68286e-16)
(1.00051 -0.0012989 2.19801e-16)
(1.0006 -0.00120148 -1.99979e-16)
(1.00069 -0.0010795 3.11646e-17)
(1.00084 -0.00094756 2.20949e-16)
(1.00101 -0.000885611 -1.23323e-16)
(1.00106 -0.000420025 -5.45556e-16)
(1.00077 0.00133776 1.7508e-17)
(0.999897 -5.32904e-05 -2.60925e-17)
(1.00006 -0.000296804 1.11578e-17)
(1.00029 -0.000466495 6.10064e-17)
(1.00047 -0.000620224 7.45688e-17)
(1.00059 -0.000808586 -1.05917e-16)
(1.00063 -0.00100273 -6.94752e-16)
(1.00065 -0.00114234 -2.05177e-16)
(1.00065 -0.00119834 -3.43821e-16)
(1.00068 -0.00115784 -5.96345e-16)
(1.00075 -0.00108211 6.50376e-16)
(1.00082 -0.000996057 3.75644e-16)
(1.00095 -0.000904315 -4.06335e-16)
(1.00114 -0.000879723 1.04042e-15)
(1.00118 -0.000466884 2.07664e-16)
(1.00079 0.00117632 6.74478e-17)
(0.999863 -6.71314e-05 1.62879e-17)
(1.00001 -0.000339201 -8.05745e-17)
(1.00024 -0.000530197 -3.36228e-16)
(1.00046 -0.000688718 7.8913e-17)
(1.00063 -0.000854015 3.33186e-16)
(1.00071 -0.00100426 2.96804e-17)
(1.00075 -0.00110065 6.36289e-17)
(1.00076 -0.00113497 -1.27284e-17)
(1.00078 -0.00110204 7.27776e-16)
(1.00084 -0.0010557 -1.89413e-16)
(1.00091 -0.001012 -5.10398e-16)
(1.00104 -0.000963955 -1.08289e-16)
(1.00124 -0.000972498 -4.53376e-17)
(1.00131 -0.00059673 2.24124e-16)
(1.00085 0.000967473 -3.63085e-16)
(0.99982 -7.85036e-05 2.16355e-17)
(0.999945 -0.000382352 5.88952e-17)
(1.00016 -0.000604581 2.2076e-16)
(1.00039 -0.000783282 -1.97236e-16)
(1.00058 -0.000942798 -2.04311e-16)
(1.0007 -0.0010655 1.09846e-16)
(1.00076 -0.00113243 2.11007e-16)
(1.00078 -0.00115536 4.17104e-16)
(1.00081 -0.00113675 -5.55803e-16)
(1.00088 -0.00112282 1.19149e-17)
(1.00096 -0.0011201 -1.64509e-16)
(1.0011 -0.00110956 1.61513e-17)
(1.00134 -0.00113766 -2.10013e-16)
(1.00144 -0.000775987 6.40921e-17)
(1.00095 0.000749641 6.026e-16)
(0.999771 -8.74075e-05 -2.78437e-18)
(0.999869 -0.000423629 1.01302e-16)
(1.00005 -0.000682641 -1.00292e-16)
(1.00026 -0.000892178 2.77637e-16)
(1.00047 -0.00106085 9.75823e-17)
(1.0006 -0.00117268 1.56487e-16)
(1.00069 -0.00122528 2.94706e-16)
(1.00073 -0.00124751 -6.57542e-16)
(1.00078 -0.00124819 1.50359e-16)
(1.00087 -0.00126572 -4.31619e-17)
(1.00098 -0.00129712 4.63647e-16)
(1.00115 -0.00131213 -2.77752e-16)
(1.00143 -0.00134252 -1.3397e-16)
(1.00159 -0.000971843 -4.59169e-17)
(1.00111 0.000551957 -1.32e-16)
(0.999718 -9.40355e-05 -3.16988e-17)
(0.999789 -0.000460779 -2.41553e-17)
(0.999935 -0.000757697 3.19178e-16)
(1.00012 -0.00100345 -2.1138e-16)
(1.00032 -0.00119184 1.49652e-16)
(1.00046 -0.001307 -2.77386e-16)
(1.00057 -0.00135915 -5.93577e-17)
(1.00064 -0.00139017 4.80793e-16)
(1.00072 -0.00141314 2.30528e-16)
(1.00085 -0.00145857 3.40292e-16)
(1.001 -0.00151452 -5.80407e-16)
(1.0012 -0.00154137 6.45542e-16)
(1.00154 -0.00155766 -1.6932e-16)
(1.00174 -0.00115907 -1.58146e-16)
(1.00132 0.000390247 -1.0791e-16)
(0.999663 -9.86536e-05 4.09621e-17)
(0.999711 -0.000492332 1.22852e-17)
(0.999818 -0.000824742 -3.7887e-16)
(0.999967 -0.00110719 -1.5658e-17)
(1.00015 -0.00132123 -1.21336e-16)
(1.0003 -0.00145022 2.26017e-16)
(1.00043 -0.00151312 -9.76144e-17)
(1.00053 -0.00156035 -1.98365e-16)
(1.00065 -0.00160697 3.11342e-16)
(1.00082 -0.00167549 -7.06936e-17)
(1.00102 -0.00174606 7.38292e-16)
(1.00127 -0.00177204 -7.54502e-16)
(1.00166 -0.00176125 2.29742e-16)
(1.00192 -0.00132196 -7.59016e-17)
(1.00157 0.000270939 -1.54834e-16)
(0.99961 -0.000101618 -5.50798e-18)
(0.999638 -0.00051761 -1.72488e-16)
(0.999711 -0.000880669 1.46843e-16)
(0.999828 -0.00119679 5.54244e-17)
(0.999994 -0.00143837 -7.46253e-17)
(1.00015 -0.00158799 -7.49739e-17)
(1.00029 -0.0016698 1.68036e-16)
(1.00043 -0.00173858 3.43527e-16)
(1.00059 -0.001809 -3.72702e-16)
(1.00082 -0.0018957 -7.79049e-17)
(1.00107 -0.00197215 -4.0835e-16)
(1.00137 -0.0019872 7.55299e-16)
(1.00181 -0.00194072 -8.28447e-17)
(1.00211 -0.00145376 -4.21495e-17)
(1.00184 0.000191497 1.46428e-16)
(0.99956 -0.00010325 5.97645e-18)
(0.999573 -0.000536764 1.10189e-16)
(0.999619 -0.000924533 -5.29823e-18)
(0.999709 -0.00126918 1.24032e-16)
(0.999859 -0.00153745 -1.57854e-16)
(1.00001 -0.0017114 5.54201e-17)
(1.00018 -0.00181755 -5.47453e-17)
(1.00035 -0.0019113 -2.86649e-16)
(1.00056 -0.00200495 7.77847e-17)
(1.00084 -0.00210546 -3.01656e-16)
(1.00114 -0.00218089 9.24783e-17)
(1.00149 -0.00217797 -4.16989e-16)
(1.00198 -0.0020912 -5.29491e-17)
(1.00232 -0.00155444 8.31597e-17)
(1.00213 0.00014596 -1.36239e-16)
(0.999514 -0.00010388 -2.98242e-17)
(0.999517 -0.000550516 -2.797e-17)
(0.999545 -0.000956998 -8.4041e-18)
(0.999616 -0.00132445 -1.76357e-16)
(0.999755 -0.00161703 -7.47485e-18)
(0.999912 -0.00181689 1.20155e-16)
(1.00009 -0.00195062 2.17887e-17)
(1.0003 -0.00207129 2.93383e-16)
(1.00056 -0.00218716 -1.15487e-16)
(1.00089 -0.00229795 4.23095e-16)
(1.00125 -0.00236747 -5.34263e-17)
(1.00164 -0.00234233 -2.94671e-18)
(1.00217 -0.00221386 -1.52257e-16)
(1.00255 -0.00162823 -3.54578e-16)
(1.00243 0.00012544 1.59803e-16)
(0.999474 -0.000103759 2.51241e-17)
(0.999468 -0.00056007 8.67141e-17)
(0.999488 -0.000980106 3.18456e-17)
(0.999549 -0.00136503 -3.31365e-17)
(0.999681 -0.00167921 3.36565e-16)
(0.999844 -0.00190531 -7.23461e-17)
(1.00005 -0.00206831 -3.10394e-16)
(1.00029 -0.00221668 -1.64228e-16)
(1.00059 -0.00235357 1.7855e-16)
(1.00097 -0.00247186 -4.58915e-16)
(1.00138 -0.00253225 -2.31519e-16)
(1.00181 -0.00248273 -7.23969e-17)
(1.00238 -0.00231314 2.90919e-16)
(1.00278 -0.00168145 -1.50993e-16)
(1.00272 0.000122071 -1.26261e-16)
(0.999437 -0.000103142 -5.23678e-17)
(0.999426 -0.000566805 -5.4251e-17)
(0.999445 -0.000996542 -1.03758e-16)
(0.999504 -0.00139488 2.39998e-17)
(0.999637 -0.00172832 5.28398e-17)
(0.99981 -0.00198046 -8.97249e-17)
(1.00003 -0.00217344 -3.25252e-17)
(1.00031 -0.0023495 -3.20997e-17)
(1.00066 -0.00250605 3.44718e-17)
(1.00108 -0.0026297 1.08451e-16)
(1.00154 -0.00267892 4.98796e-16)
(1.00201 -0.00260424 1.89407e-16)
(1.00261 -0.00239521 -1.70874e-16)
(1.00302 -0.00172072 3.18325e-16)
(1.00301 0.000128159 5.73812e-17)
(0.999404 -0.000102227 3.5934e-17)
(0.999388 -0.000572229 -1.17559e-16)
(0.999413 -0.00100942 1.29192e-16)
(0.999478 -0.00141862 -1.40068e-16)
(0.999617 -0.0017699 -1.07503e-16)
(0.999803 -0.00204784 -9.9831e-17)
(1.00005 -0.00227084 -4.11954e-17)
(1.00036 -0.00247399 -1.1781e-16)
(1.00075 -0.00264866 -2.14206e-16)
(1.00122 -0.00277587 2.2487e-16)
(1.00171 -0.00281261 -2.8746e-16)
(1.00222 -0.00271265 -2.49691e-16)
(1.00284 -0.0024661 1.73296e-16)
(1.00327 -0.00175199 -1.77703e-16)
(1.00329 0.000138868 -8.2244e-17)
(0.999372 -0.000101238 1.09683e-17)
(0.999354 -0.000577733 -1.67186e-17)
(0.999389 -0.00102169 -4.04449e-17)
(0.999464 -0.00144089 3.73984e-17)
(0.999615 -0.00180959 -1.21799e-16)
(0.999819 -0.00211326 9.33608e-17)
(1.00009 -0.002366 3.16792e-16)
(1.00044 -0.00259519 4.4349e-16)
(1.00087 -0.00278628 -1.15946e-16)
(1.00138 -0.00291539 -2.50868e-16)
(1.00191 -0.00293864 -1.28722e-16)
(1.00244 -0.00281352 1.99157e-16)
(1.00309 -0.0025312 -2.4362e-16)
(1.00352 -0.00178 7.90224e-16)
(1.00356 0.000150427 3.50047e-16)
(0.999339 -0.000100372 -4.42858e-17)
(0.999321 -0.000584623 7.19381e-17)
(0.999369 -0.00103613 1.07313e-16)
(0.999459 -0.00146589 1.15025e-16)
(0.999627 -0.00185257 -1.4232e-16)
(0.999852 -0.00218219 -2.80532e-17)
(1.00015 -0.0024641 7.25903e-17)
(1.00054 -0.00271794 1.86485e-17)
(1.001 -0.00292353 3.49787e-16)
(1.00155 -0.00305284 2.20918e-16)
(1.00211 -0.00306164 3.9282e-16)
(1.00267 -0.00291134 5.25474e-17)
(1.00333 -0.00259453 8.86096e-17)
(1.00376 -0.00180805 -3.57721e-16)
(1.00381 0.000160332 -3.34624e-16)
(0.999305 -9.98506e-05 1.88681e-17)
(0.999287 -0.00059394 4.87487e-17)
(0.99935 -0.00105492 -2.07766e-16)
(0.999458 -0.00149705 1.91528e-16)
(0.999646 -0.00190304 1.55272e-16)
(0.999895 -0.00225901 2.98993e-16)
(1.00023 -0.00256937 -5.78673e-17)
(1.00064 -0.00284617 -3.25408e-17)
(1.00115 -0.00306414 -1.12706e-16)
(1.00173 -0.00319185 6.57016e-17)
(1.00232 -0.00318513 -6.89887e-16)
(1.0029 -0.00300942 5.37783e-16)
(1.00358 -0.00265893 -5.05569e-17)
(1.00401 -0.00183814 -5.08102e-16)
(1.00405 0.000168497 2.57296e-16)
(0.999266 -9.98734e-05 3.35462e-17)
(0.999252 -0.000606563 7.10186e-17)
(0.99933 -0.00107985 2.26732e-16)
(0.999458 -0.00153694 -3.22029e-16)
(0.999668 -0.00196409 2.56185e-17)
(0.999944 -0.00234691 -2.3008e-16)
(1.00031 -0.0026848 2.25248e-17)
(1.00076 -0.00298263 -4.42787e-16)
(1.0013 -0.00321069 2.98938e-16)
(1.00191 -0.00333486 -3.60902e-16)
(1.00253 -0.0033114 5.21407e-16)
(1.00312 -0.00310973 -5.97839e-16)
(1.00382 -0.00272584 -2.95702e-16)
(1.00424 -0.00187124 2.08529e-16)
(1.00428 0.000173267 -2.0567e-16)
(0.999223 -0.000100642 -3.9675e-17)
(0.999215 -0.000623071 -3.38029e-17)
(0.999307 -0.00111203 -3.9878e-17)
(0.999457 -0.00158723 1.25337e-17)
(0.99969 -0.0020376 -1.88871e-17)
(0.999994 -0.00244775 -2.7529e-16)
(1.00039 -0.00281209 -2.57065e-16)
(1.00088 -0.00312883 1.74876e-16)
(1.00145 -0.00336453 8.35595e-17)
(1.00209 -0.00348312 5.4752e-16)
(1.00273 -0.00344156 -4.08931e-16)
(1.00335 -0.00321321 1.05778e-16)
(1.00405 -0.00279589 3.91253e-17)
(1.00447 -0.00190753 -8.3491e-17)
(1.0045 0.000177599 3.10346e-16)
(0.999175 -0.00010232 2.33434e-17)
(0.999174 -0.000643891 -3.99314e-17)
(0.999281 -0.00115217 1.64554e-17)
(0.999452 -0.00164876 1.64814e-16)
(0.99971 -0.00212445 8.0615e-17)
(1.00004 -0.00256224 4.18557e-16)
(1.00047 -0.00295175 8.40555e-17)
(1.001 -0.00328514 -7.402e-17)
(1.00161 -0.00352599 -2.58812e-16)
(1.00227 -0.00363692 -3.54985e-16)
(1.00294 -0.00357586 3.10607e-16)
(1.00357 -0.00331993 2.50006e-17)
(1.00428 -0.0028689 1.5402e-16)
(1.0047 -0.00194665 1.75432e-16)
(1.00471 0.00018017 -7.15733e-17)
(0.999121 -0.000105044 -2.91707e-17)
(0.999129 -0.000669166 -1.04551e-16)
(0.99925 -0.00120044 -6.60124e-17)
(0.999442 -0.00172168 1.16621e-16)
(0.999727 -0.00222453 7.5523e-17)
(1.00009 -0.00269006 4.92818e-17)
(1.00055 -0.00310329 1.95387e-17)
(1.00111 -0.00345101 3.35298e-16)
(1.00175 -0.00369453 1.12332e-16)
(1.00245 -0.00379574 -2.36994e-16)
(1.00313 -0.00371379 -4.76972e-17)
(1.00378 -0.00342939 -2.46167e-16)
(1.0045 -0.00294434 -2.26839e-16)
(1.00491 -0.00198778 5.61789e-17)
(1.0049 0.000184529 -1.13966e-16)
(0.999061 -0.0001089 2.36309e-17)
(0.99908 -0.000698934 1.27295e-16)
(0.999215 -0.0012567 -7.52603e-17)
(0.999428 -0.00180552 -5.38617e-17)
(0.999738 -0.00233709 7.5883e-17)
(1.00013 -0.00283017 -4.89109e-17)
(1.00063 -0.00326552 -7.92213e-17)
(1.00122 -0.00362523 -2.07058e-16)
(1.0019 -0.00386901 4.50285e-17)
(1.00262 -0.00395858 5.17941e-16)
(1.00333 -0.00385444 1.74048e-16)
(1.00399 -0.00354072 4.62977e-16)
(1.00471 -0.00302129 1.95916e-16)
(1.00512 -0.00203007 2.71578e-16)
(1.00509 0.000187545 2.41995e-17)
(0.998996 -0.000113928 2.84202e-17)
(0.999027 -0.000732997 3.53768e-17)
(0.999175 -0.00132043 9.1998e-17)
(0.999408 -0.00189942 -1.63944e-16)
(0.999745 -0.00246081 -4.1982e-16)
(1.00017 -0.00298096 -7.12836e-17)
(1.0007 -0.0034367 -3.44034e-18)
(1.00133 -0.00380611 4.52637e-17)
(1.00204 -0.00404791 2.36608e-17)
(1.00278 -0.00412409 -3.25042e-16)
(1.00351 -0.00399663 1.93976e-16)
(1.00418 -0.0036529 -3.13854e-16)
(1.00492 -0.00309886 -1.01969e-16)
(1.00531 -0.00207272 -3.35291e-16)
(1.00527 0.000194182 -1.86459e-17)
(0.998926 -0.000120127 -3.96023e-17)
(0.99897 -0.000771112 -6.77879e-17)
(0.999129 -0.00139097 -6.02676e-17)
(0.999383 -0.00200217 -3.09917e-17)
(0.999746 -0.00259407 6.25485e-17)
(1.0002 -0.00314054 -1.65591e-16)
(1.00077 -0.00361489 7.0309e-17)
(1.00143 -0.00399182 1.84817e-16)
(1.00217 -0.0042296 -2.45475e-16)
(1.00294 -0.00429087 1.06763e-16)
(1.00368 -0.00413918 1.18179e-16)
(1.00437 -0.00376492 9.08733e-17)
(1.00511 -0.00317614 6.4072e-16)
(1.0055 -0.00211502 3.33686e-17)
(1.00544 0.000200973 -1.53606e-16)
(0.998851 -0.000127439 9.56399e-18)
(0.998908 -0.000812851 -3.83697e-18)
(0.999079 -0.00146741 -6.66644e-17)
(0.999353 -0.00211241 2.6426e-16)
(0.999742 -0.00273505 7.98683e-18)
(1.00023 -0.00330683 1.74004e-16)
(1.00083 -0.00379799 -9.65942e-17)
(1.00152 -0.00418041 -4.95895e-16)
(1.00229 -0.00441239 2.2886e-16)
(1.00309 -0.00445749 1.47841e-17)
(1.00385 -0.0042809 -5.52931e-16)
(1.00455 -0.00387585 3.64175e-18)
(1.00529 -0.00325239 -4.10936e-16)
(1.00567 -0.00215631 2.21231e-16)
(1.00561 0.000211658 5.44031e-17)
(0.998771 -0.000135788 1.33988e-17)
(0.998842 -0.000857797 -9.78392e-18)
(0.999024 -0.00154883 1.59437e-16)
(0.999318 -0.00222866 -1.04697e-16)
(0.999733 -0.00288189 -1.62125e-16)
(1.00025 -0.00347781 -3.94959e-16)
(1.00088 -0.00398401 -1.90859e-16)
(1.00161 -0.00437009 2.09901e-16)
(1.0024 -0.00459474 5.0789e-17)
(1.00322 -0.00462272 -2.75282e-16)
(1.004 -0.0044208 1.78285e-16)
(1.00471 -0.00398487 -4.80395e-17)
(1.00547 -0.00332694 1.52035e-16)
(1.00584 -0.00219619 -3.99219e-17)
(1.00576 0.000224864 -1.03187e-16)
(0.998688 -0.000145045 -3.30745e-17)
(0.998771 -0.000905401 2.81862e-17)
(0.998965 -0.00163418 -9.28243e-17)
(0.999278 -0.00234945 -5.6493e-17)
(0.999718 -0.00303276 2.52238e-16)
(1.00027 -0.00365151 6.10591e-16)
(1.00093 -0.00417104 4.01243e-16)
(1.00169 -0.00455917 1.59027e-16)
(1.00251 -0.00477527 2.89589e-17)
(1.00335 -0.00478543 3.39101e-17)
(1.00414 -0.00455801 1.21285e-16)
(1.00487 -0.00409137 -1.81589e-16)
(1.00563 -0.00339936 -2.48652e-17)
(1.00599 -0.00223408 1.3265e-16)
(1.0059 0.000240278 2.70441e-16)
(0.9986 -0.000155088 1.00331e-17)
(0.998696 -0.000955186 -3.54833e-17)
(0.9989 -0.00172253 8.36682e-19)
(0.999233 -0.00247336 8.19189e-17)
(0.999697 -0.003186 5.49069e-17)
(1.00028 -0.00382618 -3.53544e-16)
(1.00097 -0.00435748 -1.73595e-16)
(1.00176 -0.00474628 -3.05637e-16)
(1.0026 -0.0049529 -6.66269e-17)
(1.00347 -0.00494482 7.17263e-16)
(1.00428 -0.00469196 8.5273e-18)
(1.00502 -0.00419492 -1.32705e-16)
(1.00578 -0.00346936 -4.09906e-16)
(1.00614 -0.00226976 -1.9209e-17)
(1.00603 0.000257913 -7.06568e-17)
(0.998509 -0.000165745 2.25695e-17)
(0.998617 -0.00100657 -2.97725e-18)
(0.998832 -0.00181286 2.89943e-17)
(0.999183 -0.00259907 -7.35886e-17)
(0.999671 -0.00334005 -2.15833e-17)
(1.00028 -0.00400027 1.44456e-16)
(1.001 -0.00454189 -2.04006e-16)
(1.00182 -0.00493025 2.56229e-16)
(1.00269 -0.0051267 4.36283e-18)
(1.00358 -0.00510023 -3.82833e-16)
(1.0044 -0.0048222 -8.23185e-17)
(1.00515 -0.00429528 5.10186e-16)
(1.00593 -0.00353682 1.79612e-16)
(1.00628 -0.00230299 -4.73762e-16)
(1.00616 0.000277868 -3.56698e-17)
(0.998414 -0.000176878 -1.6437e-17)
(0.998533 -0.0010591 5.21901e-17)
(0.998758 -0.00190434 9.59607e-18)
(0.999128 -0.0027254 -1.57233e-16)
(0.99964 -0.0034936 1.81629e-17)
(1.00027 -0.00417249 -6.10942e-18)
(1.00103 -0.00472318 4.73884e-16)
(1.00187 -0.00511019 2.61584e-16)
(1.00277 -0.00529608 -6.50636e-16)
(1.00368 -0.00525128 -2.87197e-16)
(1.00452 -0.00494851 1.71176e-16)
(1.00528 -0.00439232 2.24859e-18)
(1.00606 -0.00360165 4.2964e-16)
(1.00642 -0.0023339 4.35171e-16)
(1.00627 0.000300229 1.19096e-16)
(0.998315 -0.000188304 -7.42631e-18)
(0.998445 -0.00111223 6.67659e-18)
(0.99868 -0.0019961 1.04947e-16)
(0.999068 -0.00285131 2.70693e-16)
(0.999603 -0.00364551 -3.23406e-17)
(1.00026 -0.00434176 -3.0771e-16)
(1.00105 -0.00490044 -3.54653e-16)
(1.00192 -0.00528547 -6.68391e-16)
(1.00284 -0.0054606 4.27682e-16)
(1.00377 -0.00539771 3.41165e-16)
(1.00463 -0.00507079 -1.54325e-16)
(1.0054 -0.00448607 -2.66388e-16)
(1.00619 -0.00366397 -4.21876e-16)
(1.00654 -0.00236255 -3.47341e-17)
(1.00638 0.000324395 -3.56434e-16)
(0.998213 -0.000199896 1.10666e-17)
(0.998352 -0.00116558 -3.28469e-17)
(0.998598 -0.0020875 -1.2351e-16)
(0.999004 -0.00297593 -2.14025e-16)
(0.999561 -0.00379491 -4.49658e-17)
(1.00025 -0.00450734 2.92918e-16)
(1.00106 -0.00507311 2.1953e-16)
(1.00195 -0.0054557 6.77698e-16)
(1.0029 -0.00562011 6.95407e-18)
(1.00385 -0.00553955 -1.45569e-16)
(1.00473 -0.00518915 1.16172e-17)
(1.00551 -0.00457669 -2.65259e-16)
(1.00631 -0.0037239 -3.59329e-16)
(1.00666 -0.00238918 -3.21985e-16)
(1.00649 0.000350738 3.71936e-16)
(0.998108 -0.000211483 -3.77159e-17)
(0.998255 -0.00121871 8.33494e-17)
(0.99851 -0.00217789 -9.61151e-18)
(0.998934 -0.00309855 2.57716e-16)
(0.999513 -0.00394108 -1.00609e-16)
(1.00023 -0.0046686 -7.10356e-17)
(1.00106 -0.00524075 7.38349e-17)
(1.00198 -0.00562068 -4.27438e-16)
(1.00296 -0.00577456 -3.06132e-16)
(1.00393 -0.00567687 -1.0773e-17)
(1.00482 -0.00530377 9.41686e-17)
(1.00562 -0.00466441 1.4655e-16)
(1.00643 -0.00378172 3.76036e-16)
(1.00678 -0.00241395 3.81165e-16)
(1.0066 0.000378136 -5.24165e-17)
(0.997999 -0.000222963 3.16489e-18)
(0.998153 -0.00127133 -2.76134e-17)
(0.998419 -0.00226681 -1.69402e-16)
(0.99886 -0.00321861 -2.65392e-16)
(0.99946 -0.00408354 9.57387e-17)
(1.0002 -0.00482522 1.35408e-16)
(1.00106 -0.00540322 -3.34315e-16)
(1.00201 -0.00578043 -8.2057e-17)
(1.003 -0.00592412 2.94426e-16)
(1.00399 -0.00580994 -1.17274e-16)
(1.0049 -0.00541493 1.26858e-16)
(1.00572 -0.00474949 1.31118e-16)
(1.00653 -0.0038376 5.79672e-17)
(1.00689 -0.0024372 -4.71632e-16)
(1.0067 0.000407287 -1.05424e-16)
(0.997886 -0.000234194 2.62318e-17)
(0.998047 -0.00132312 -4.53157e-17)
(0.998322 -0.00235385 1.25129e-16)
(0.99878 -0.0033357 2.24425e-16)
(0.999401 -0.00422194 7.20151e-17)
(1.00016 -0.00497697 -2.6174e-16)
(1.00105 -0.00556046 1.68109e-16)
(1.00202 -0.00593504 1.35955e-16)
(1.00304 -0.006069 2.56619e-16)
(1.00405 -0.00593903 1.66901e-16)
(1.00498 -0.00552295 -3.09545e-16)
(1.00581 -0.00483228 3.49798e-17)
(1.00663 -0.00389188 -5.0429e-17)
(1.00699 -0.00245915 -1.31517e-17)
(1.0068 0.000436783 4.1192e-17)
(0.99777 -0.000245114 3.18871e-17)
(0.997937 -0.0013739 5.05833e-18)
(0.998222 -0.00243876 1.75287e-16)
(0.998696 -0.00344957 -6.52975e-17)
(0.999337 -0.00435614 1.49862e-16)
(1.00012 -0.00512388 1.30005e-16)
(1.00103 -0.00571265 4.84643e-17)
(1.00203 -0.00608483 9.49696e-17)
(1.00307 -0.0062096 -1.19579e-16)
(1.0041 -0.00606459 -1.14634e-17)
(1.00505 -0.00562828 -8.88166e-17)
(1.00589 -0.00491316 -3.43735e-17)
(1.00673 -0.00394487 1.22047e-16)
(1.00709 -0.00248011 -1.10739e-18)
(1.0069 0.000467552 -1.21038e-16)
(0.997651 -0.000255614 5.08945e-18)
(0.997823 -0.00142347 -8.84662e-17)
(0.998117 -0.00252132 -1.91302e-16)
(0.998607 -0.00356008 -1.20387e-16)
(0.999268 -0.00448609 -9.76581e-17)
(1.00007 -0.00526603 3.16782e-18)
(1.00101 -0.00586001 -5.27654e-17)
(1.00203 -0.00623011 -1.10093e-16)
(1.0031 -0.00634631 -5.46138e-17)
(1.00415 -0.00618702 -1.62992e-16)
(1.00511 -0.00573131 2.74227e-16)
(1.00597 -0.00499251 4.28735e-17)
(1.00682 -0.00399692 -2.60579e-16)
(1.00719 -0.00250033 2.49065e-16)
(1.007 0.000498095 4.20766e-17)
(0.997529 -0.000265673 -5.014e-17)
(0.997705 -0.00147176 6.8821e-17)
(0.998007 -0.00260146 -7.13171e-18)
(0.998513 -0.00366718 -1.95409e-17)
(0.999193 -0.00461189 -1.42508e-16)
(1.00002 -0.00540366 1.82598e-16)
(1.00098 -0.0060029 -5.25192e-18)
(1.00202 -0.00637135 1.76001e-16)
(1.00311 -0.00647964 1.41808e-17)
(1.00419 -0.00630683 -4.28626e-18)
(1.00517 -0.00583251 -4.10095e-16)
(1.00605 -0.0050707 -1.0042e-16)
(1.00691 -0.00404829 2.95862e-16)
(1.00729 -0.00252015 -1.87262e-16)
(1.0071 0.00052948 1.0192e-16)
(0.997403 -0.000275218 1.65547e-17)
(0.997583 -0.00151865 5.51647e-17)
(0.997894 -0.0026791 -5.72247e-17)
(0.998415 -0.00377092 -5.688e-17)
(0.999113 -0.00473371 9.79129e-17)
(0.999962 -0.00553706 -1.64884e-16)
(1.00094 -0.00614171 -1.88256e-16)
(1.00201 -0.00650898 -9.08383e-18)
(1.00313 -0.00661003 -3.75555e-17)
(1.00422 -0.00642447 2.62728e-16)
(1.00522 -0.00593228 2.42468e-16)
(1.00612 -0.00514813 1.18893e-16)
(1.007 -0.00409934 7.0725e-17)
(1.00738 -0.00253983 4.19343e-16)
(1.0072 0.000560097 -2.0051e-16)
(0.997274 -0.000284269 -2.89142e-17)
(0.997456 -0.00156419 -7.34199e-17)
(0.997776 -0.00275435 2.79569e-16)
(0.998312 -0.00387147 2.29657e-16)
(0.999028 -0.00485182 -5.62033e-17)
(0.999898 -0.00566663 -8.56692e-17)
(1.0009 -0.00627693 8.75882e-18)
(1.002 -0.00664357 -2.39077e-16)
(1.00313 -0.00673806 -2.84622e-16)
(1.00425 -0.00654048 8.2827e-17)
(1.00527 -0.00603111 2.17251e-16)
(1.00619 -0.00522518 -1.33921e-16)
(1.00709 -0.00415036 -1.77867e-16)
(1.00747 -0.00255963 -4.10875e-16)
(1.00731 0.000591094 2.28442e-17)
(0.997142 -0.000292782 6.03452e-17)
(0.997326 -0.00160834 8.61273e-17)
(0.997654 -0.00282724 -2.56765e-16)
(0.998205 -0.00396899 -1.09069e-16)
(0.998939 -0.00496652 1.7981e-16)
(0.99983 -0.00579276 2.56225e-16)
(1.00086 -0.00640903 9.47861e-17)
(1.00198 -0.00677561 1.46048e-16)
(1.00314 -0.00686424 1.94791e-17)
(1.00428 -0.00665533 -3.04013e-16)
(1.00532 -0.00612942 -2.11934e-16)
(1.00626 -0.00530224 8.20456e-17)
(1.00717 -0.00420171 -2.89705e-16)
(1.00757 -0.00257979 4.94298e-16)
(1.00741 0.000620887 1.32228e-16)
(0.997007 -0.000300811 -5.26586e-17)
(0.997193 -0.00165121 -6.69688e-17)
(0.997529 -0.00289796 3.36168e-17)
(0.998093 -0.00406375 -8.21018e-17)
(0.998845 -0.00507819 -1.96954e-16)
(0.999756 -0.00591594 -1.19512e-16)
(1.00081 -0.00653856 8.51886e-17)
(1.00195 -0.00690566 1.00188e-17)
(1.00313 -0.0069891 3.07818e-16)
(1.0043 -0.00676953 3.21527e-16)
(1.00536 -0.00622764 1.52826e-17)
(1.00632 -0.00537963 1.97762e-17)
(1.00725 -0.00425359 6.28919e-16)
(1.00766 -0.00260058 3.292e-17)
(1.00752 0.000650693 4.13725e-17)
(0.996869 -0.000308334 1.16646e-17)
(0.997056 -0.00169281 2.32066e-17)
(0.997399 -0.00296663 1.79579e-17)
(0.997978 -0.00415601 1.08875e-16)
(0.998747 -0.00518719 -8.8795e-17)
(0.999678 -0.0060366 -2.28505e-16)
(1.00075 -0.006666 -1.24193e-16)
(1.00192 -0.00703422 -2.16804e-17)
(1.00313 -0.00711312 -2.17033e-16)
(1.00432 -0.00688348 -2.50376e-16)
(1.0054 -0.00632615 -3.0034e-17)
(1.00638 -0.00545768 -5.72935e-17)
(1.00733 -0.00430631 5.65544e-18)
(1.00775 -0.00262221 -3.99431e-16)
(1.00763 0.000678881 -4.60679e-17)
(0.996729 -0.000315435 1.18767e-17)
(0.996915 -0.0017333 -3.19979e-17)
(0.997266 -0.00303351 7.1807e-18)
(0.997858 -0.0042461 -5.2685e-17)
(0.998644 -0.00529396 2.77227e-16)
(0.999596 -0.00615526 2.85146e-16)
(1.00069 -0.0067919 2.67021e-16)
(1.00188 -0.00716185 1.55101e-16)
(1.00312 -0.00723684 2.77101e-17)
(1.00433 -0.00699769 1.26201e-16)
(1.00544 -0.00642535 -4.88611e-17)
(1.00644 -0.00553671 2.10037e-17)
(1.00741 -0.00436012 -5.27057e-16)
(1.00785 -0.00264489 5.37912e-17)
(1.00774 0.000706691 -1.55929e-16)
(0.996585 -0.000322104 -1.39981e-18)
(0.996771 -0.00177275 -2.20505e-17)
(0.99713 -0.00309878 2.14036e-17)
(0.997735 -0.00433433 2.42381e-16)
(0.998538 -0.0053989 -1.03846e-16)
(0.99951 -0.00627237 -1.00559e-17)
(1.00063 -0.00691675 -2.41552e-17)
(1.00185 -0.00728903 -1.3274e-16)
(1.00311 -0.0073607 3.00175e-16)
(1.00435 -0.00711254 1.01504e-16)
(1.00548 -0.0065256 8.36355e-17)
(1.00651 -0.00561704 5.73854e-17)
(1.00749 -0.0044153 5.42514e-16)
(1.00794 -0.00266881 1.38741e-16)
(1.00786 0.000732563 1.1618e-16)
(0.996439 -0.000328442 -3.12976e-17)
(0.996623 -0.00181134 -6.91066e-18)
(0.99699 -0.0031627 2.58545e-17)
(0.997608 -0.00442103 -2.30662e-16)
(0.998428 -0.00550242 -1.59429e-17)
(0.99942 -0.00638842 1.01726e-17)
(1.00056 -0.00704105 -3.0213e-16)
(1.00181 -0.00741625 -3.82149e-18)
(1.00309 -0.00748516 -2.14569e-16)
(1.00436 -0.00722847 -3.8154e-16)
(1.00552 -0.00662724 -3.39361e-16)
(1.00657 -0.0056989 -1.52887e-17)
(1.00758 -0.00447198 -4.10405e-16)
(1.00804 -0.00269416 -8.11278e-17)
(1.00797 0.000757777 6.2919e-17)
(0.99629 -0.000334446 4.58472e-17)
(0.996473 -0.00184913 1.06499e-16)
(0.996846 -0.00322548 -5.59765e-17)
(0.997478 -0.00450652 1.6979e-16)
(0.998314 -0.00560492 -1.75065e-17)
(0.999327 -0.00650384 -1.95791e-16)
(1.00049 -0.00716524 3.45923e-16)
(1.00176 -0.00754393 9.09921e-17)
(1.00308 -0.00761061 1.85101e-16)
(1.00437 -0.00734579 1.69598e-16)
(1.00556 -0.00673055 4.55076e-16)
(1.00663 -0.00578257 1.80585e-16)
(1.00766 -0.00453043 2.21854e-16)
(1.00814 -0.00272112 -6.56914e-17)
(1.0081 0.000780748 -1.55762e-16)
(0.996138 -0.000340227 -1.61109e-17)
(0.996319 -0.00188634 -1.20823e-16)
(0.9967 -0.00328739 -1.77992e-17)
(0.997345 -0.00459115 -1.96388e-16)
(0.998197 -0.00570682 -2.08845e-16)
(0.99923 -0.00661909 -7.22039e-17)
(1.00042 -0.00728982 -2.35479e-16)
(1.00172 -0.00767256 -1.41801e-16)
(1.00306 -0.00773749 -1.1832e-16)
(1.00438 -0.0074649 9.00708e-17)
(1.00559 -0.00683586 -3.14919e-16)
(1.00669 -0.00586827 -1.47018e-16)
(1.00775 -0.0045908 -8.3606e-18)
(1.00824 -0.00274982 1.40566e-16)
(1.00822 0.000802746 1.35177e-16)
(0.995984 -0.000345783 3.42009e-18)
(0.996162 -0.00192304 -2.28469e-17)
(0.99655 -0.00334864 7.24603e-17)
(0.997208 -0.00467522 1.21576e-16)
(0.998077 -0.00580846 9.51734e-17)
(0.999131 -0.00673456 1.55534e-16)
(1.00035 -0.00741515 -1.21283e-16)
(1.00167 -0.0078025 -5.43074e-17)
(1.00304 -0.00786614 -3.07306e-18)
(1.00439 -0.0075861 1.49775e-16)
(1.00563 -0.00694342 5.11205e-19)
(1.00676 -0.00595627 1.67463e-16)
(1.00783 -0.00465334 -3.58848e-17)
(1.00834 -0.00278043 1.94164e-16)
(1.00835 0.000822267 -4.21662e-18)
(0.995827 -0.000351226 -2.53945e-17)
(0.996003 -0.00195943 3.08338e-17)
(0.996398 -0.00340949 3.41521e-17)
(0.997068 -0.00475905 -2.42028e-16)
(0.997954 -0.00591024 2.74519e-16)
(0.999029 -0.00685066 -1.47745e-16)
(1.00027 -0.00754167 1.49056e-16)
(1.00162 -0.00793414 1.10163e-16)
(1.00302 -0.00799692 -3.4082e-16)
(1.0044 -0.0077097 1.04916e-17)
(1.00567 -0.0070535 3.18933e-17)
(1.00682 -0.00604671 -1.85966e-16)
(1.00792 -0.00471811 -5.40497e-16)
(1.00845 -0.00281306 6.40911e-18)
(1.00849 0.000840613 -7.92746e-17)
(0.995667 -0.00035655 2.01842e-17)
(0.99584 -0.00199558 1.21204e-16)
(0.996242 -0.00347013 1.74535e-17)
(0.996925 -0.0048429 1.87796e-16)
(0.997828 -0.00601246 -3.47013e-16)
(0.998924 -0.00696772 9.5244e-17)
(1.00019 -0.00766971 4.21538e-17)
(1.00157 -0.00806781 -1.32596e-16)
(1.003 -0.00813011 3.28577e-16)
(1.00441 -0.00783594 -3.95301e-16)
(1.00571 -0.0071663 1.61838e-16)
(1.00689 -0.00613981 1.86232e-17)
(1.00801 -0.00478533 1.14764e-17)
(1.00856 -0.00284787 -2.44862e-16)
(1.00863 0.000856253 1.16615e-16)
(0.995505 -0.000361868 -4.99232e-18)
(0.995674 -0.00203168 1.86558e-17)
(0.996084 -0.0035308 -8.90103e-17)
(0.99678 -0.00492706 -6.48199e-17)
(0.997699 -0.00611547 2.38028e-16)
(0.998816 -0.00708612 1.92759e-16)
(1.00011 -0.00779963 5.3826e-17)
(1.00152 -0.00820385 -5.73074e-17)
(1.00298 -0.00826605 -2.40323e-16)
(1.00442 -0.00796513 -9.78828e-17)
(1.00575 -0.00728207 5.80607e-17)
(1.00696 -0.00623573 1.97968e-16)
(1.00811 -0.00485512 3.51185e-16)
(1.00867 -0.00288494 4.5953e-18)
(1.00877 0.000870461 -6.25852e-17)
(0.99534 -0.000367165 2.28936e-17)
(0.995506 -0.0020678 -4.41224e-17)
(0.995922 -0.00359168 -3.10927e-17)
(0.996631 -0.00501179 4.38129e-17)
(0.997568 -0.00621955 -1.08098e-16)
(0.998706 -0.00720614 -2.60195e-16)
(1.00002 -0.00793174 -2.37398e-17)
(1.00146 -0.00834256 7.63355e-17)
(1.00295 -0.00840497 1.98235e-16)
(1.00442 -0.00809748 3.77286e-16)
(1.00579 -0.007401 -3.73344e-16)
(1.00703 -0.00633467 -7.70711e-17)
(1.00821 -0.00492767 3.36508e-16)
(1.00879 -0.00292441 2.30899e-17)
(1.00892 0.000881778 -1.88051e-17)
(0.995172 -0.000372549 2.82368e-18)
(0.995335 -0.00210411 -4.88279e-17)
(0.995758 -0.00365298 4.88605e-17)
(0.99648 -0.00509733 9.55513e-17)
(0.997433 -0.00632497 -1.23972e-17)
(0.998594 -0.0073281 -5.66896e-17)
(0.999938 -0.00806635 -2.55962e-17)
(1.00141 -0.00848422 7.41987e-17)
(1.00293 -0.00854717 -7.8753e-17)
(1.00443 -0.00823322 -1.93603e-16)
(1.00583 -0.00752327 3.21248e-16)
(1.0071 -0.00643673 -5.82006e-16)
(1.00831 -0.00500301 7.6213e-17)
(1.00891 -0.00296636 2.1022e-16)
(1.00907 0.000891514 4.34875e-17)
(0.995002 -0.000377995 3.94962e-18)
(0.995161 -0.00214065 1.07683e-16)
(0.995591 -0.00371484 7.3871e-17)
(0.996325 -0.00518389 8.87141e-18)
(0.997297 -0.00643197 1.40834e-16)
(0.99848 -0.00745223 1.83008e-16)
(0.999851 -0.00820367 2.49761e-16)
(1.00135 -0.00862905 -1.90961e-16)
(1.00291 -0.00869281 1.46053e-17)
(1.00445 -0.00837253 1.91117e-16)
(1.00587 -0.00764904 -4.4402e-17)
(1.00718 -0.00654209 3.02788e-16)
(1.00841 -0.00508131 6.88903e-17)
(1.00903 -0.0030109 -7.16929e-17)
(1.00923 0.000898178 -8.96659e-17)
(0.99483 -0.000383607 -1.50101e-17)
(0.994984 -0.0021776 -1.41411e-16)
(0.995421 -0.00377746 -8.43334e-17)
(0.996169 -0.00527168 -1.29639e-16)
(0.997158 -0.00654082 8.70251e-17)
(0.998364 -0.00757883 8.12375e-17)
(0.999763 -0.00834402 -2.8876e-16)
(1.00129 -0.00877733 -6.17666e-17)
(1.00289 -0.00884219 4.30268e-17)
(1.00446 -0.00851563 5.4103e-18)
(1.00592 -0.0077785 -1.14452e-16)
(1.00725 -0.00665086 1.57754e-16)
(1.00852 -0.00516266 -4.98895e-16)
(1.00916 -0.0030581 -3.40026e-16)
(1.00939 0.000903038 4.32715e-17)
(0.994654 -0.000389351 -3.99755e-18)
(0.994804 -0.00221499 -5.90896e-17)
(0.995249 -0.00384095 4.0997e-17)
(0.996009 -0.00536088 -4.0779e-17)
(0.997016 -0.0066517 -1.60335e-16)
(0.998246 -0.00770808 -1.03463e-16)
(0.999673 -0.00848759 -5.2666e-17)
(1.00124 -0.00892927 1.36927e-16)
(1.00286 -0.00899545 -2.40594e-16)
(1.00447 -0.00866269 -1.32023e-16)
(1.00597 -0.00791179 1.30094e-16)
(1.00734 -0.00676321 -4.15914e-16)
(1.00863 -0.00524722 -1.14515e-16)
(1.0093 -0.00310809 -3.18378e-16)
(1.00956 0.000904666 -4.72957e-17)
(0.994476 -0.000395323 -1.56799e-17)
(0.994621 -0.00225295 1.57359e-16)
(0.995073 -0.0039055 2.27432e-17)
(0.995847 -0.00545168 1.13227e-16)
(0.996872 -0.00676483 -5.4476e-17)
(0.998125 -0.00784022 -1.61098e-17)
(0.999582 -0.00863461 3.23291e-18)
(1.00118 -0.00908508 5.30002e-17)
(1.00284 -0.00915283 2.56629e-16)
(1.00449 -0.00881389 1.22843e-16)
(1.00602 -0.00804906 -3.67437e-17)
(1.00742 -0.00687921 8.94267e-16)
(1.00874 -0.005335 -1.07899e-16)
(1.00943 -0.00316092 9.5742e-17)
(1.00974 0.000904374 1.07933e-17)
(0.994295 -0.000401481 3.09352e-17)
(0.994436 -0.00229151 -9.22519e-17)
(0.994895 -0.00397118 1.355e-17)
(0.995682 -0.00554422 9.90615e-17)
(0.996726 -0.00688036 7.24064e-17)
(0.998003 -0.00797542 -1.2879e-16)
(0.99949 -0.00878524 -6.49775e-18)
(1.00112 -0.00924492 -5.30444e-17)
(1.00282 -0.00931445 2.08042e-16)
(1.0045 -0.00896935 1.07774e-16)
(1.00607 -0.00819042 1.79614e-16)
(1.00751 -0.006999 -1.28983e-16)
(1.00886 -0.00542616 3.86905e-16)
(1.00957 -0.00321667 -9.94927e-19)
(1.00992 0.000900688 3.9219e-17)
(0.994112 -0.000407918 -2.1611e-17)
(0.994247 -0.0023308 5.20386e-17)
(0.994714 -0.00403815 -4.72135e-17)
(0.995514 -0.00563866 -6.95398e-17)
(0.996577 -0.00699851 -2.10403e-17)
(0.997879 -0.00811389 7.87029e-18)
(0.999396 -0.00893973 1.98105e-17)
(1.00106 -0.00940901 3.22907e-16)
(1.0028 -0.00948054 -6.16555e-17)
(1.00452 -0.00912927 -2.98132e-16)
(1.00612 -0.00833603 -3.84875e-17)
(1.0076 -0.00712266 1.27229e-16)
(1.00898 -0.00552075 -2.62877e-16)
(1.00972 -0.00327542 5.22531e-16)
(1.0101 0.000894878 -5.79553e-17)
(0.993926 -0.000414581 -1.39871e-17)
(0.994056 -0.00237083 3.18272e-18)
(0.99453 -0.00410649 2.30271e-17)
(0.995344 -0.00573513 -2.83037e-17)
(0.996426 -0.00711939 -6.3352e-18)
(0.997753 -0.00825577 6.18314e-17)
(0.999301 -0.0090982 3.15741e-16)
(1.001 -0.0095775 -1.47784e-16)
(1.00278 -0.00965122 -9.07872e-17)
(1.00454 -0.00929376 8.90803e-17)
(1.00618 -0.00848601 -8.38487e-17)
(1.00769 -0.00725034 -5.10878e-16)
(1.00911 -0.00561893 3.14889e-16)
(1.00987 -0.00333726 -4.1141e-16)
(1.01029 0.000885517 1.44874e-17)
(0.993736 -0.000421559 1.68633e-17)
(0.993862 -0.00241172 2.02765e-17)
(0.994343 -0.00417633 -3.73125e-17)
(0.995171 -0.00583376 -4.20302e-17)
(0.996272 -0.00724317 6.4849e-17)
(0.997625 -0.00840125 8.1263e-17)
(0.999206 -0.00926086 -6.95038e-17)
(1.00094 -0.00975057 -8.55154e-17)
(1.00276 -0.00982668 1.39834e-16)
(1.00456 -0.00946299 -1.74285e-16)
(1.00624 -0.00864048 8.99616e-17)
(1.00779 -0.00738211 2.02622e-17)
(1.00924 -0.00572068 -2.16668e-17)
(1.01003 -0.00340224 3.36361e-16)
(1.01048 0.000873929 8.02427e-18)
(0.993544 -0.000428792 2.38678e-17)
(0.993664 -0.00245346 -2.91828e-17)
(0.994153 -0.00424771 -5.88582e-17)
(0.994995 -0.00593465 -1.82844e-17)
(0.996116 -0.00736995 -7.6998e-17)
(0.997496 -0.00855043 -2.37917e-17)
(0.999109 -0.0094278 -2.98811e-16)
(1.00088 -0.00992834 1.47379e-17)
(1.00274 -0.010007 -2.56699e-16)
(1.00458 -0.00963705 2.22368e-16)
(1.0063 -0.00879954 -1.44172e-16)
(1.00789 -0.00751807 1.1819e-16)
(1.00938 -0.00582615 3.07427e-17)
(1.01019 -0.00347045 -9.59036e-17)
(1.01068 0.000858634 5.19777e-17)
(0.99335 -0.000436366 -3.64542e-17)
(0.993464 -0.00249616 -7.60453e-17)
(0.993961 -0.00432077 1.93544e-17)
(0.994817 -0.00603792 -4.82831e-17)
(0.995958 -0.0074999 6.84745e-17)
(0.997364 -0.0087035 3.96269e-17)
(0.99901 -0.00959923 1.74777e-16)
(1.00082 -0.010111 -5.43768e-17)
(1.00272 -0.0101924 1.39239e-16)
(1.0046 -0.00981611 3.43333e-17)
(1.00637 -0.00896331 1.19547e-16)
(1.00799 -0.00765831 5.87657e-17)
(1.00951 -0.00593539 9.29177e-18)
(1.01035 -0.00354193 -2.22709e-16)
(1.01089 0.000840916 -1.08908e-16)
(0.993152 -0.000444218 4.09818e-17)
(0.993261 -0.00253983 1.31888e-17)
(0.993765 -0.00439554 8.45838e-18)
(0.994635 -0.00614367 1.59966e-16)
(0.995797 -0.0076331 -2.27015e-17)
(0.997231 -0.00886057 -1.36746e-16)
(0.998911 -0.00977526 -1.80352e-16)
(1.00076 -0.0102987 1.40461e-16)
(1.0027 -0.010383 -1.89889e-16)
(1.00463 -0.0100003 4.13671e-17)
(1.00643 -0.00913192 -7.78479e-17)
(1.0081 -0.00780298 -1.93445e-17)
(1.00966 -0.00604854 -8.18528e-17)
(1.01052 -0.00361679 3.4958e-16)
(1.0111 0.000819322 -2.52726e-18)
(0.992951 -0.000452428 -2.0403e-17)
(0.993054 -0.00258454 7.09158e-17)
(0.993566 -0.00447212 8.9709e-17)
(0.994451 -0.00625199 -7.52087e-18)
(0.995633 -0.0077697 -3.53909e-17)
(0.997095 -0.00902178 7.91119e-17)
(0.998811 -0.00995605 2.57189e-17)
(1.0007 -0.0104916 -1.34392e-16)
(1.00269 -0.0105789 2.20514e-16)
(1.00466 -0.0101897 -1.93088e-16)
(1.0065 -0.00930546 2.9765e-17)
(1.00821 -0.0079521 -1.87408e-16)
(1.00981 -0.00616559 -5.9513e-17)
(1.0107 -0.00369507 -1.59192e-16)
(1.01132 0.000795207 6.58344e-17)
(0.992747 -0.000460928 1.61586e-17)
(0.992845 -0.00263029 -5.69476e-17)
(0.993364 -0.00455057 -7.99914e-17)
(0.994264 -0.00636296 2.10093e-17)
(0.995467 -0.00790977 2.02141e-17)
(0.996958 -0.00918722 3.09569e-17)
(0.998709 -0.0101417 2.11427e-16)
(1.00064 -0.0106897 -1.14868e-17)
(1.00267 -0.0107803 -5.52663e-17)
(1.00469 -0.0103845 2.17483e-17)
(1.00658 -0.00948403 -1.59483e-16)
(1.00833 -0.00810579 2.64395e-16)
(1.00996 -0.00628667 9.3194e-17)
(1.01088 -0.00377685 -1.4767e-17)
(1.01154 0.000767055 -8.88576e-17)
(0.992539 -0.000469802 -1.5941e-17)
(0.992632 -0.00267717 6.51412e-17)
(0.993159 -0.00463095 1.1409e-16)
(0.994074 -0.00647667 -5.05419e-17)
(0.995299 -0.00805344 -1.18105e-16)
(0.996819 -0.00935706 6.6145e-17)
(0.998607 -0.0103324 -6.3486e-17)
(1.00058 -0.0108933 1.2529e-17)
(1.00266 -0.0109872 2.95431e-17)
(1.00472 -0.0105848 1.28513e-17)
(1.00665 -0.00966775 5.64285e-17)
(1.00845 -0.00826412 -4.38846e-16)
(1.01011 -0.00641183 -1.77756e-16)
(1.01106 -0.00386216 1.14089e-16)
(1.01177 0.000736185 7.74022e-17)
(0.992329 -0.000478977 -1.56845e-17)
(0.992416 -0.00272517 -8.80422e-17)
(0.992951 -0.00471333 -1.15772e-16)
(0.99388 -0.00659321 -7.33413e-17)
(0.995128 -0.0082008 2.2475e-16)
(0.996677 -0.00953138 -5.5421e-17)
(0.998503 -0.0105282 9.18729e-17)
(1.00052 -0.0111024 2.12951e-16)
(1.00264 -0.0112 -7.93508e-17)
(1.00475 -0.0107906 1.79921e-16)
(1.00673 -0.00985675 7.07002e-17)
(1.00857 -0.00842723 2.62044e-16)
(1.01028 -0.00654122 -7.59441e-18)
(1.01125 -0.00395113 -2.75053e-16)
(1.01201 0.000701093 9.63217e-18)
(0.992115 -0.000488534 -1.44361e-17)
(0.992196 -0.00277436 9.78497e-17)
(0.99274 -0.00479777 -3.30801e-17)
(0.993684 -0.00671265 -9.31667e-18)
(0.994954 -0.00835196 -2.09065e-16)
(0.996534 -0.00971032 1.10975e-16)
(0.998398 -0.0107293 -1.05622e-16)
(1.00046 -0.0113173 -4.01396e-17)
(1.00263 -0.0114185 1.26166e-16)
(1.00479 -0.0110023 -2.37919e-16)
(1.00682 -0.0100511 -1.35004e-16)
(1.0087 -0.00859516 -1.37451e-16)
(1.01044 -0.00667481 1.84744e-18)
(1.01145 -0.00404377 4.0395e-17)
(1.01225 0.000663183 1.17932e-17)
(0.991898 -0.000498398 3.47809e-17)
(0.991973 -0.00282474 -2.24241e-17)
(0.992525 -0.0048843 1.52427e-16)
(0.993485 -0.00683505 8.30143e-18)
(0.994777 -0.00850698 1.3599e-16)
(0.996389 -0.00989396 -6.49607e-17)
(0.998292 -0.0109358 -4.7769e-17)
(1.0004 -0.011538 -3.64803e-17)
(1.00262 -0.0116431 -1.37325e-16)
(1.00482 -0.0112197 2.6121e-17)
(1.0069 -0.0102509 2.50166e-16)
(1.00883 -0.00876803 3.5429e-16)
(1.01061 -0.00681273 -1.13034e-16)
(1.01165 -0.00414018 1.48224e-16)
(1.0125 0.00062088 -8.55404e-17)
(0.991678 -0.000508651 -2.89925e-18)
(0.991746 -0.00287637 -4.28241e-17)
(0.992306 -0.004973 -1.33295e-16)
(0.993282 -0.00696052 8.77167e-17)
(0.994598 -0.008666 -1.84008e-16)
(0.996241 -0.0100825 -1.26852e-16)
(0.998184 -0.0111479 7.34564e-17)
(1.00034 -0.0117647 8.33817e-17)
(1.00261 -0.0118738 -8.79146e-17)
(1.00486 -0.0114432 6.4973e-17)
(1.00699 -0.0104563 -3.25909e-17)
(1.00896 -0.0089459 -5.17791e-16)
(1.01079 -0.00695502 3.65595e-16)
(1.01185 -0.00424038 1.0499e-16)
(1.01275 0.00057556 7.01617e-17)
(0.991454 -0.000519219 -1.35009e-17)
(0.991516 -0.00292926 -1.38666e-17)
(0.992084 -0.00506392 7.30123e-17)
(0.993076 -0.0070891 -1.4472e-16)
(0.994416 -0.00882907 2.34162e-16)
(0.996091 -0.0102759 8.16153e-17)
(0.998076 -0.0113656 -1.20103e-19)
(1.00028 -0.0119975 -9.63553e-17)
(1.0026 -0.0121107 1.95067e-16)
(1.00491 -0.0116728 -1.6489e-16)
(1.00708 -0.0106674 7.33432e-17)
(1.0091 -0.00912892 8.90604e-17)
(1.01097 -0.00710185 -2.9215e-16)
(1.01207 -0.00434451 -3.35082e-18)
(1.01301 0.000525644 -4.66977e-18)
(0.991226 -0.000530182 5.53471e-18)
(0.991283 -0.00298347 2.79112e-17)
(0.991859 -0.0051571 4.53743e-17)
(0.992866 -0.00722089 2.20065e-16)
(0.99423 -0.00899633 -1.35895e-16)
(0.995939 -0.0104744 1.19601e-16)
(0.997966 -0.0115891 -3.86425e-17)
(1.00022 -0.0122365 1.22042e-17)
(1.00259 -0.0123541 6.98668e-17)
(1.00495 -0.0119086 1.48216e-16)
(1.00718 -0.0108843 -2.71851e-16)
(1.00925 -0.00931711 -3.84926e-17)
(1.01116 -0.00725317 2.60069e-16)
(1.01228 -0.00445258 -5.73408e-17)
(1.01328 0.000472606 2.02368e-17)
(0.990995 -0.000541464 -2.02042e-17)
(0.991045 -0.00303899 6.23198e-18)
(0.99163 -0.0052526 -3.47235e-17)
(0.992653 -0.00735592 -1.82509e-16)
(0.994042 -0.00916781 -6.53103e-17)
(0.995785 -0.0106781 -2.1274e-17)
(0.997855 -0.0118185 1.13721e-16)
(1.00016 -0.012482 -5.12428e-17)
(1.00258 -0.012604 -1.59983e-16)
(1.005 -0.0121507 -1.49234e-16)
(1.00728 -0.011107 -2.92626e-17)
(1.0094 -0.00951059 1.75471e-16)
(1.01135 -0.00740913 -2.15315e-16)
(1.01251 -0.00456468 -1.05887e-16)
(1.01355 0.000414791 -6.08689e-17)
(0.99076 -0.000553149 1.72923e-17)
(0.990804 -0.00309589 2.46373e-17)
(0.991397 -0.00535048 -7.29316e-17)
(0.992437 -0.00749431 8.29818e-17)
(0.993851 -0.00934368 9.84715e-17)
(0.995629 -0.0108871 -2.11163e-16)
(0.997742 -0.0120539 -1.50445e-16)
(1.0001 -0.012734 2.75973e-17)
(1.00257 -0.0128605 -4.97224e-17)
(1.00505 -0.0123993 2.07661e-16)
(1.00738 -0.0113358 -7.44301e-17)
(1.00955 -0.00970942 7.50005e-17)
(1.01154 -0.00756975 6.67624e-17)
(1.01274 -0.00468083 4.42848e-17)
(1.01383 0.000353655 4.10916e-17)
(0.990521 -0.00056516 -1.11323e-17)
(0.990559 -0.00315416 2.401e-17)
(0.99116 -0.00545078 9.96697e-17)
(0.992217 -0.0076361 -1.6024e-16)
(0.993657 -0.00952397 6.19179e-17)
(0.99547 -0.0111014 -3.09877e-17)
(0.997629 -0.0122956 1.58123e-16)
(1.00004 -0.0129926 7.67313e-17)
(1.00257 -0.0131239 6.65861e-17)
(1.0051 -0.0126546 -7.29773e-18)
(1.00749 -0.0115707 3.20367e-16)
(1.00971 -0.00991375 4.363e-17)
(1.01174 -0.00773521 -1.34241e-16)
(1.01297 -0.00480117 -5.37442e-17)
(1.01412 0.000287523 -1.28956e-17)
(0.990279 -0.000577582 2.87513e-17)
(0.99031 -0.00321387 2.04608e-17)
(0.990919 -0.00555356 2.24824e-17)
(0.991993 -0.00778137 2.01455e-16)
(0.993459 -0.00970883 -1.23991e-17)
(0.995308 -0.0113214 2.03971e-16)
(0.997513 -0.0125436 -1.05076e-16)
(0.999974 -0.0132581 -1.0855e-17)
(1.00257 -0.0133943 2.10381e-17)
(1.00516 -0.0129166 -2.04422e-16)
(1.0076 -0.0118119 -3.70582e-17)
(1.00987 -0.0101236 -1.94702e-16)
(1.01195 -0.00790545 1.37281e-16)
(1.01321 -0.00492571 1.22965e-16)
(1.01441 0.000217964 2.53103e-17)
(0.990032 -0.000590337 -3.98224e-17)
(0.990057 -0.00327501 -1.31456e-17)
(0.990675 -0.00565886 -1.37633e-16)
(0.991766 -0.00793019 -8.84378e-17)
(0.993258 -0.0098983 8.84572e-17)
(0.995145 -0.0115469 -1.7385e-16)
(0.997397 -0.0127981 4.38109e-18)
(0.999912 -0.0135306 -1.51048e-16)
(1.00256 -0.0136717 1.44024e-16)
(1.00521 -0.0131854 1.84978e-16)
(1.00772 -0.0120593 4.96876e-17)
(1.01004 -0.0103391 2.27902e-16)
(1.01216 -0.00808063 -1.89456e-16)
(1.01346 -0.00505455 -2.95458e-17)
(1.01471 0.000143219 -2.20252e-17)
(0.989782 -0.000603512 4.03999e-17)
(0.989799 -0.00333766 -1.32456e-17)
(0.990426 -0.00576674 3.17544e-17)
(0.991534 -0.00808266 8.44583e-17)
(0.993054 -0.0100925 -1.47233e-16)
(0.994978 -0.0117783 2.46172e-16)
(0.997279 -0.0130592 -4.89172e-17)
(0.99985 -0.0138102 -1.47749e-16)
(1.00256 -0.0139565 -1.18636e-16)
(1.00527 -0.0134613 -2.61463e-16)
(1.00783 -0.0123132 -2.77335e-16)
(1.01021 -0.0105603 -4.05748e-16)
(1.01238 -0.00826075 2.83573e-16)
(1.01371 -0.00518767 7.96124e-17)
(1.01502 6.48527e-05 1.57192e-17)
(0.989527 -0.00061703 -2.35382e-17)
(0.989538 -0.0034018 -4.53791e-17)
(0.990173 -0.00587726 4.09029e-17)
(0.991299 -0.00823882 -1.05967e-16)
(0.992846 -0.0102916 1.52208e-16)
(0.994809 -0.0120156 -2.6346e-16)
(0.997159 -0.013327 9.26169e-17)
(0.999789 -0.0140971 1.25122e-16)
(1.00256 -0.0142486 5.56428e-17)
(1.00534 -0.0137443 2.88848e-16)
(1.00796 -0.0125737 2.4537e-16)
(1.01039 -0.0107874 3.77747e-16)
(1.01261 -0.008446 -8.30048e-17)
(1.01397 -0.00532527 -1.31811e-16)
(1.01533 -1.89336e-05 -3.07062e-17)
(0.989268 -0.000630977 1.59198e-17)
(0.989272 -0.00346752 -9.97151e-18)
(0.989916 -0.00599046 1.02206e-18)
(0.99106 -0.00839879 1.10758e-16)
(0.992635 -0.0104956 -5.88356e-17)
(0.994637 -0.0122589 -5.02452e-17)
(0.997038 -0.0136018 1.05982e-16)
(0.999727 -0.0143915 5.74072e-17)
(1.00256 -0.0145483 -1.68272e-17)
(1.0054 -0.0140346 -3.05524e-16)
(1.00808 -0.0128409 -1.45994e-16)
(1.01057 -0.0110203 4.18452e-17)
(1.01284 -0.00863632 -1.71326e-16)
(1.01424 -0.00546732 1.72052e-16)
(1.01565 -0.000106451 3.52529e-17)
(0.989005 -0.000645278 -1.94386e-17)
(0.989002 -0.00353479 -2.1432e-17)
(0.989655 -0.00610641 5.64805e-17)
(0.990816 -0.00856259 -1.92319e-16)
(0.99242 -0.0107047 -1.10976e-16)
(0.994463 -0.0125084 3.08613e-16)
(0.996916 -0.0138837 -1.86881e-16)
(0.999665 -0.0146935 -1.31413e-16)
(1.00257 -0.0148557 -6.60119e-17)
(1.00547 -0.0143323 1.8422e-16)
(1.00822 -0.0131148 7.50978e-17)
(1.01076 -0.0112593 -2.44401e-16)
(1.01307 -0.00883187 1.20162e-16)
(1.01451 -0.00561394 -7.09726e-17)
(1.01597 -0.00019958 2.25497e-17)
(0.988738 -0.000660024 -3.16152e-18)
(0.988727 -0.00360369 1.89217e-17)
(0.989389 -0.00622516 -3.46045e-17)
(0.990569 -0.00873036 1.54882e-17)
(0.992201 -0.0109189 9.59344e-17)
(0.994286 -0.0127642 -5.39513e-18)
(0.996792 -0.0141728 1.2447e-16)
(0.999603 -0.0150032 1.16764e-16)
(1.00257 -0.015171 1.51519e-16)
(1.00554 -0.0146375 -1.63924e-16)
(1.00835 -0.0133956 8.26405e-17)
(1.01095 -0.0115043 1.02674e-16)
(1.01331 -0.00903265 -1.43353e-16)
(1.01479 -0.00576508 -8.72524e-17)
(1.01631 -0.00029662 -1.25917e-17)
(0.988466 -0.000675137 8.92481e-18)
(0.988448 -0.00367424 1.06651e-18)
(0.989118 -0.00634678 -5.73707e-17)
(0.990317 -0.00890214 1.78782e-16)
(0.991979 -0.0111384 -1.06776e-16)
(0.994106 -0.0130264 -2.81535e-16)
(0.996666 -0.0144692 -2.8078e-17)
(0.999541 -0.0153209 5.1232e-18)
(1.00258 -0.0154943 -3.1195e-16)
(1.00562 -0.0149505 8.13517e-17)
(1.00849 -0.0136835 -8.5424e-17)
(1.01115 -0.0117555 2.11003e-16)
(1.01356 -0.00923885 6.8979e-17)
(1.01507 -0.00592095 6.11418e-17)
(1.01665 -0.000399508 -2.29999e-17)
(0.988189 -0.000690708 5.80647e-18)
(0.988164 -0.00374649 2.25192e-17)
(0.988843 -0.00647132 -4.83785e-17)
(0.99006 -0.00907805 -1.11384e-16)
(0.991753 -0.0113633 2.00296e-16)
(0.993923 -0.0132953 2.7295e-16)
(0.996539 -0.0147733 -5.81442e-17)
(0.999479 -0.0156468 5.80703e-17)
(1.00259 -0.0158259 2.63834e-16)
(1.0057 -0.0152713 3.83546e-16)
(1.00864 -0.0139785 -4.07327e-17)
(1.01135 -0.0120129 -1.52106e-16)
(1.01381 -0.0094504 5.93403e-17)
(1.01536 -0.0060815 -5.41426e-17)
(1.01699 -0.000506402 3.89453e-17)
(0.987908 -0.000706661 -2.77047e-17)
(0.987875 -0.00382044 1.5911e-18)
(0.988563 -0.00659884 8.04355e-17)
(0.989799 -0.00925814 3.69383e-17)
(0.991523 -0.0115937 -2.18417e-16)
(0.993737 -0.0135708 -7.85838e-17)
(0.99641 -0.015085 -1.91995e-16)
(0.999417 -0.0159809 1.05169e-16)
(1.0026 -0.0161658 -2.71325e-16)
(1.00578 -0.0156 -3.63716e-16)
(1.00878 -0.0142807 4.99394e-17)
(1.01156 -0.0122767 -1.67839e-16)
(1.01407 -0.00966745 2.30526e-16)
(1.01566 -0.00624686 -1.12088e-16)
(1.01735 -0.00061933 -4.65755e-17)
(0.987623 -0.000723089 7.44489e-18)
(0.987581 -0.00389618 1.43967e-17)
(0.988278 -0.0067294 8.64468e-17)
(0.989534 -0.00944254 -1.86378e-17)
(0.991288 -0.0118298 -1.21213e-16)
(0.993548 -0.0138533 -2.20579e-16)
(0.99628 -0.0154047 2.49074e-16)
(0.999355 -0.0163235 -3.11882e-16)
(1.00261 -0.0165144 3.21237e-17)
(1.00586 -0.0159369 1.35105e-16)
(1.00894 -0.0145902 4.18974e-17)
(1.01178 -0.0125468 3.10127e-16)
(1.01434 -0.00988997 -2.33327e-16)
(1.01597 -0.00641696 1.28728e-16)
(1.01771 -0.000736422 3.26011e-17)
(0.987332 -0.000739917 5.53186e-18)
(0.987283 -0.00397371 -9.6522e-18)
(0.987988 -0.00686309 -8.22541e-17)
(0.989263 -0.00963131 -4.3838e-17)
(0.99105 -0.0120715 1.59882e-16)
(0.993356 -0.0141428 3.59204e-16)
(0.996148 -0.0157325 -1.3712e-17)
(0.999293 -0.0166748 2.69986e-16)
(1.00262 -0.0168716 1.71028e-17)
(1.00595 -0.0162821 -8.337e-17)
(1.0091 -0.0149073 -4.71081e-17)
(1.012 -0.0128235 -2.05618e-16)
(1.01461 -0.0101182 -6.95331e-17)
(1.01628 -0.00659203 2.92448e-17)
(1.01808 -0.000859788 -1.78819e-17)
(0.987037 -0.000757236 1.04318e-17)
(0.986979 -0.0040531 -3.35778e-17)
(0.987694 -0.00699995 -3.28827e-18)
(0.988988 -0.00982458 1.71341e-17)
(0.990808 -0.0123192 -3.35736e-17)
(0.99316 -0.0144396 -2.07963e-17)
(0.996014 -0.0160685 -1.49708e-17)
(0.999232 -0.017035 -3.34746e-17)
(1.00264 -0.0172378 -7.01036e-17)
(1.00604 -0.0166357 5.00196e-17)
(1.00926 -0.0152319 1.23122e-16)
(1.01223 -0.0131068 3.21387e-16)
(1.01489 -0.010352 2.25097e-16)
(1.0166 -0.00677199 -2.36499e-18)
(1.01846 -0.000987409 1.89854e-17)
(0.986736 -0.000774973 -1.74685e-17)
(0.98667 -0.00413436 -1.36207e-17)
(0.987393 -0.00714006 -4.58366e-17)
(0.988708 -0.0100224 5.41477e-17)
(0.990561 -0.0125729 6.48341e-17)
(0.992962 -0.0147438 -1.34085e-16)
(0.995878 -0.016413 -2.23061e-16)
(0.99917 -0.0174043 -4.08429e-17)
(1.00266 -0.017613 1.76314e-16)
(1.00614 -0.0169979 6.82385e-17)
(1.00943 -0.0155642 -2.55189e-16)
(1.01246 -0.0133967 -1.95204e-16)
(1.01518 -0.0105916 -3.65294e-17)
(1.01692 -0.006957 -4.3777e-17)
(1.01884 -0.00112148 -4.31565e-17)
(0.98643 -0.000793225 5.28392e-18)
(0.986356 -0.00421757 -3.04186e-17)
(0.987088 -0.00728349 3.34762e-17)
(0.988423 -0.0102249 1.46772e-17)
(0.990309 -0.0128327 -4.32503e-17)
(0.99276 -0.0150555 2.20186e-17)
(0.995741 -0.0167662 3.57564e-16)
(0.999109 -0.0177828 -2.75727e-16)
(1.00268 -0.0179975 1.9522e-17)
(1.00624 -0.0173689 -4.67332e-17)
(1.0096 -0.0159043 1.52563e-16)
(1.0127 -0.0136934 -2.19081e-16)
(1.01547 -0.0108368 -5.09354e-17)
(1.01725 -0.00714689 -5.03093e-17)
(1.01923 -0.00125992 4.72128e-17)
(0.98612 -0.000811915 3.5263e-17)
(0.986036 -0.00430275 8.73461e-17)
(0.986777 -0.00743033 3.19861e-17)
(0.988133 -0.0104322 -5.22791e-17)
(0.990054 -0.0130988 5.57324e-17)
(0.992555 -0.0153749 -1.2991e-16)
(0.995602 -0.0171282 -7.97847e-17)
(0.999048 -0.0181708 2.83546e-16)
(1.0027 -0.0183916 -6.58736e-17)
(1.00635 -0.0177487 4.55549e-17)
(1.00978 -0.0162524 -1.01206e-16)
(1.01295 -0.0139969 -1.17501e-16)
(1.01577 -0.011088 -5.32842e-17)
(1.01759 -0.00734196 2.5501e-17)
(1.01963 -0.00140504 -4.64362e-17)
(0.985803 -0.000831139 1.45517e-20)
(0.985711 -0.00438996 -1.67625e-17)
(0.986461 -0.00758064 -3.88027e-17)
(0.987837 -0.0106444 1.40637e-16)
(0.989793 -0.0133714 6.74666e-18)
(0.992347 -0.0157023 8.48146e-17)
(0.995462 -0.0174994 -1.1574e-16)
(0.998987 -0.0185686 -1.50045e-16)
(1.00272 -0.0187953 1.03431e-16)
(1.00645 -0.0181376 -9.44466e-18)
(1.00997 -0.0166085 1.2609e-16)
(1.0132 -0.0143073 3.79564e-16)
(1.01607 -0.011345 -1.3533e-16)
(1.01794 -0.00754205 2.80178e-17)
(1.02004 -0.0015546 1.31888e-17)
(0.985482 -0.000850825 -1.34699e-17)
(0.98538 -0.00447922 -1.48901e-17)
(0.986139 -0.0077345 -4.64683e-17)
(0.987536 -0.0108615 -1.0251e-16)
(0.989528 -0.0136506 -7.15076e-17)
(0.992135 -0.0160378 3.019e-17)
(0.995319 -0.0178798 -1.05252e-16)
(0.998926 -0.0189762 1.14656e-16)
(1.00275 -0.0192088 -7.17561e-17)
(1.00657 -0.0185357 5.63393e-18)
(1.01016 -0.0169727 -6.73753e-17)
(1.01346 -0.0146247 -1.78984e-16)
(1.01639 -0.0116079 2.75294e-16)
(1.01829 -0.00774736 -6.96412e-17)
(1.02045 -0.00171098 6.14413e-17)
(0.985155 -0.00087107 -1.21548e-17)
(0.985043 -0.00457062 1.27427e-17)
(0.985811 -0.00789199 1.24388e-16)
(0.98723 -0.0110839 9.55692e-17)
(0.989258 -0.0139365 -3.27116e-17)
(0.991919 -0.0163816 -9.32383e-17)
(0.995175 -0.0182697 -1.20952e-18)
(0.998866 -0.0193939 -1.08922e-16)
(1.00278 -0.0196324 -8.86392e-17)
(1.00668 -0.0189431 -4.77711e-17)
(1.01036 -0.0173451 -1.2399e-16)
(1.01373 -0.014949 -1.45381e-16)
(1.01671 -0.0118767 -4.97674e-17)
(1.01865 -0.00795765 -9.69739e-18)
(1.02087 -0.00187188 9.59305e-18)
(0.984822 -0.000891799 -2.37527e-17)
(0.984701 -0.00466418 7.43306e-17)
(0.985478 -0.0080532 -1.86636e-17)
(0.986918 -0.0113114 -1.56138e-18)
(0.988983 -0.0142293 7.10986e-17)
(0.9917 -0.0167339 6.93339e-17)
(0.995029 -0.0186694 1.14821e-16)
(0.998806 -0.019822 1.9798e-16)
(1.00281 -0.0200663 -6.46797e-17)
(1.00681 -0.0193601 6.05955e-17)
(1.01056 -0.017726 1.28263e-16)
(1.014 -0.0152805 2.26251e-16)
(1.01704 -0.0121516 -7.46437e-17)
(1.01902 -0.00817326 1.76486e-16)
(1.0213 -0.0020398 -1.13269e-16)
(0.984484 -0.000913112 6.1895e-17)
(0.984352 -0.00475999 -5.71472e-17)
(0.985138 -0.00821821 -6.63168e-17)
(0.9866 -0.0115443 -7.51546e-17)
(0.988703 -0.0145292 -4.34583e-18)
(0.991477 -0.017095 -1.15678e-16)
(0.994882 -0.019079 -9.47015e-17)
(0.998747 -0.0202607 -1.82777e-16)
(1.00285 -0.0205106 2.56785e-16)
(1.00693 -0.0197867 -9.2463e-17)
(1.01077 -0.0181153 -1.27698e-16)
(1.01428 -0.0156191 -7.71127e-17)
(1.01737 -0.0124324 -3.53871e-17)
(1.0194 -0.00839395 -9.72113e-18)
(1.02174 -0.00221229 5.8286e-17)
(0.984139 -0.000934936 -4.70629e-17)
(0.983997 -0.00485804 -6.13853e-18)
(0.984792 -0.00838712 3.69726e-17)
(0.986276 -0.0117827 1.63198e-19)
(0.988418 -0.0148363 4.64762e-18)
(0.99125 -0.0174649 3.86337e-17)
(0.994732 -0.0194989 9.85799e-17)
(0.998688 -0.0207102 2.07157e-19)
(1.00288 -0.0209656 -6.13375e-17)
(1.00707 -0.0202232 -8.77049e-17)
(1.01099 -0.0185131 1.06187e-16)
(1.01457 -0.0159648 1.81183e-16)
(1.01771 -0.0127192 6.2135e-17)
(1.01978 -0.00861993 -3.84396e-17)
(1.02219 -0.00239192 3.37696e-18)
(0.983789 -0.000957373 1.60636e-17)
(0.983636 -0.00495846 -5.26221e-17)
(0.98444 -0.00856002 -1.61039e-17)
(0.985946 -0.0120267 2.50997e-17)
(0.988128 -0.0151508 -9.42021e-17)
(0.99102 -0.017844 1.58919e-17)
(0.994581 -0.0199292 1.191e-16)
(0.99863 -0.0211708 1.40453e-16)
(1.00292 -0.0214315 -2.11016e-17)
(1.0072 -0.0206696 3.64918e-17)
(1.01121 -0.0189195 3.03809e-16)
(1.01486 -0.0163177 -3.04029e-16)
(1.01807 -0.013012 -7.98114e-17)
(1.02018 -0.00885087 -1.24055e-16)
(1.02264 -0.00257614 1.06556e-17)
(0.983432 -0.000980351 -4.48217e-18)
(0.983269 -0.00506124 5.87088e-17)
(0.984081 -0.00873701 -5.99511e-17)
(0.98561 -0.0122764 -2.66436e-17)
(0.987832 -0.015473 2.68885e-17)
(0.990785 -0.0182325 9.2709e-17)
(0.994428 -0.0203702 -1.32149e-16)
(0.998573 -0.0216428 -4.20963e-17)
(1.00297 -0.0219085 -5.29539e-18)
(1.00735 -0.0211262 2.97899e-17)
(1.01144 -0.0193348 -3.09467e-16)
(1.01517 -0.016678 2.34594e-16)
(1.01842 -0.0133108 6.78686e-18)
(1.02058 -0.00908715 8.48694e-17)
(1.0231 -0.00276769 -3.3572e-17)
(0.98307 -0.00100397 1.35148e-17)
(0.982895 -0.0051665 -1.46816e-17)
(0.983716 -0.00891818 2.94852e-17)
(0.985268 -0.0125321 -1.09246e-17)
(0.987531 -0.0158029 1.04844e-16)
(0.990547 -0.0186307 -7.65753e-17)
(0.994273 -0.0208223 1.22877e-16)
(0.998516 -0.0221263 -2.86329e-17)
(1.00302 -0.0223968 -1.03762e-16)
(1.00749 -0.0215932 9.29047e-17)
(1.01168 -0.0197588 -7.0174e-17)
(1.01548 -0.0170455 -1.1771e-16)
(1.01879 -0.0136156 -1.78046e-17)
(1.02098 -0.00932845 1.35268e-17)
(1.02357 -0.00296381 3.03234e-17)
(0.982701 -0.00102816 -1.86299e-18)
(0.982514 -0.00527425 -3.65438e-17)
(0.983344 -0.00910364 -9.69486e-18)
(0.984919 -0.0127938 7.81614e-17)
(0.987225 -0.0161409 -5.90133e-17)
(0.990305 -0.0190387 -3.04443e-17)
(0.994117 -0.0212855 -9.77663e-17)
(0.998461 -0.0226215 6.86017e-18)
(1.00307 -0.0228967 1.09418e-18)
(1.00765 -0.0220705 -1.2346e-18)
(1.01192 -0.0201917 1.44435e-16)
(1.0158 -0.0174204 9.18459e-17)
(1.01917 -0.0139264 1.83919e-16)
(1.0214 -0.00957497 -1.05246e-16)
(1.02405 -0.00316734 -1.22795e-17)
(0.982325 -0.00105302 -2.03231e-18)
(0.982126 -0.0053846 7.15507e-18)
(0.982965 -0.00929349 -1.02773e-17)
(0.984563 -0.0130617 -4.99841e-17)
(0.986912 -0.016487 -1.33539e-17)
(0.990058 -0.0194568 7.7233e-17)
(0.993959 -0.0217603 -6.25946e-17)
(0.998407 -0.023129 7.01719e-17)
(1.00312 -0.0234083 2.76979e-17)
(1.00781 -0.0225585 -1.76245e-16)
(1.01218 -0.0206336 -3.07983e-16)
(1.01612 -0.0178024 -6.39094e-17)
(1.01955 -0.014243 -2.93994e-17)
(1.02182 -0.00982632 6.21703e-17)
(1.02454 -0.00337541 3.25047e-17)
(0.981943 -0.00107848 -2.88834e-17)
(0.981732 -0.00549757 -5.39055e-18)
(0.982579 -0.00948786 1.02925e-16)
(0.984201 -0.013336 -2.68102e-18)
(0.986594 -0.0168416 1.04805e-18)
(0.989808 -0.0198853 8.83495e-17)
(0.993799 -0.0222469 2.55633e-17)
(0.998354 -0.0236487 7.27021e-17)
(1.00318 -0.0239318 6.44053e-17)
(1.00797 -0.0230572 1.68054e-16)
(1.01244 -0.0210846 3.19827e-16)
(1.01646 -0.0181919 -1.65397e-16)
(1.01994 -0.0145657 -1.62414e-17)
(1.02226 -0.0100829 9.38747e-18)
(1.02503 -0.00359105 -9.17707e-17)
(0.981554 -0.00110464 3.55309e-17)
(0.98133 -0.00561327 -1.36568e-17)
(0.982186 -0.00968684 -7.00571e-17)
(0.983832 -0.0136168 7.77259e-17)
(0.986269 -0.0172048 6.42117e-17)
(0.989553 -0.0203245 -1.99951e-16)
(0.993638 -0.0227456 -7.20195e-17)
(0.998302 -0.0241812 -2.44058e-16)
(1.00325 -0.0244676 -8.52546e-17)
(1.00815 -0.0235668 -9.40441e-17)
(1.0127 -0.0215448 3.17861e-16)
(1.0168 -0.0185886 1.09318e-17)
(1.02034 -0.0148941 -5.41765e-17)
(1.0227 -0.0103442 -1.27644e-17)
(1.02553 -0.00381117 7.63812e-17)
(0.981158 -0.00113145 2.57258e-18)
(0.980921 -0.00573173 2.316e-17)
(0.981785 -0.00989058 -4.58002e-17)
(0.983456 -0.0139044 -6.69648e-17)
(0.985939 -0.0175769 -6.32797e-17)
(0.989294 -0.0207746 4.18583e-17)
(0.993475 -0.0232567 -3.35271e-18)
(0.998251 -0.0247265 1.3009e-17)
(1.00331 -0.0250157 7.65528e-17)
(1.00833 -0.0240875 -5.2783e-17)
(1.01298 -0.022014 -6.09653e-16)
(1.01716 -0.0189926 3.37532e-16)
(1.02075 -0.0152283 -1.20137e-16)
(1.02315 -0.0106106 1.09401e-16)
(1.02604 -0.00403886 -4.15632e-17)
(0.980755 -0.00115899 -8.09877e-19)
(0.980504 -0.00585307 -3.25907e-17)
(0.981377 -0.0100992 8.9751e-17)
(0.983072 -0.0141988 -4.74239e-17)
(0.985602 -0.0179582 5.44953e-17)
(0.989031 -0.0212361 3.0355e-17)
(0.99331 -0.0237806 1.77194e-16)
(0.998203 -0.0252851 6.34618e-17)
(1.00339 -0.0255766 -1.56792e-16)
(1.00851 -0.0246194 2.58458e-16)
(1.01326 -0.0224925 4.12194e-16)
(1.01752 -0.0194039 -3.82393e-16)
(1.02117 -0.0155681 -1.39396e-17)
(1.0236 -0.0108815 -1.35145e-16)
(1.02656 -0.00427091 -8.62314e-18)
(0.980344 -0.0011872 -1.79919e-17)
(0.98008 -0.00597732 6.58077e-17)
(0.980961 -0.0103128 -1.10804e-16)
(0.982681 -0.0145003 1.3103e-17)
(0.985259 -0.0183488 4.88374e-17)
(0.988764 -0.021709 -5.66492e-17)
(0.993144 -0.0243176 -2.02183e-16)
(0.998156 -0.0258573 9.9296e-18)
(1.00346 -0.0261503 1.63658e-16)
(1.00871 -0.0251627 -2.21439e-16)
(1.01356 -0.0229804 -3.34933e-16)
(1.01789 -0.0198224 2.74185e-16)
(1.0216 -0.0159137 1.95249e-16)
(1.02407 -0.0111573 7.52327e-18)
(1.02709 -0.00451068 3.30091e-17)
(0.979927 -0.00121619 -2.0702e-17)
(0.979647 -0.00610458 1.23309e-17)
(0.980537 -0.0105315 1.22404e-16)
(0.982283 -0.0148091 -4.9687e-17)
(0.98491 -0.0187491 -4.53902e-17)
(0.988492 -0.0221939 2.00411e-16)
(0.992977 -0.024868 1.27051e-16)
(0.998111 -0.0264432 1.72818e-16)
(1.00354 -0.0267372 4.05575e-17)
(1.00891 -0.0257174 3.55715e-16)
(1.01386 -0.0234775 6.9504e-17)
(1.01827 -0.020248 8.10705e-17)
(1.02203 -0.0162647 -4.97597e-17)
(1.02454 -0.0114375 -1.66473e-17)
(1.02762 -0.00475465 -1.14466e-17)
(0.979501 -0.00124589 2.15446e-19)
(0.979207 -0.00623491 -5.59094e-17)
(0.980105 -0.0107555 -1.06444e-16)
(0.981876 -0.0151254 -1.35581e-17)
(0.984554 -0.0191593 6.31939e-18)
(0.988216 -0.0226909 -1.98795e-16)
(0.992808 -0.0254321 -1.44272e-16)
(0.998068 -0.0270433 -7.56727e-17)
(1.00363 -0.0273373 -8.42606e-17)
(1.00912 -0.0262838 -2.70307e-16)
(1.01417 -0.023984 -5.89356e-17)
(1.01867 -0.0206808 -4.00382e-16)
(1.02248 -0.016621 5.77978e-17)
(1.02503 -0.0117222 9.89109e-17)
(1.02817 -0.00500625 4.59124e-17)
(0.979068 -0.00127641 2.24701e-17)
(0.978758 -0.00636844 5.31666e-17)
(0.979664 -0.010985 1.14087e-16)
(0.981462 -0.0154494 -7.15978e-17)
(0.984191 -0.0195798 7.5907e-17)
(0.987935 -0.0232006 5.02039e-17)
(0.992638 -0.0260103 1.6073e-17)
(0.998027 -0.0276579 -1.10435e-16)
(1.00373 -0.0279512 -8.16334e-17)
(1.00934 -0.026862 -3.7672e-17)
(1.0145 -0.0244999 2.18684e-16)
(1.01907 -0.0211205 1.93994e-16)
(1.02293 -0.0169826 3.04458e-17)
(1.02552 -0.012011 8.912e-18)
(1.02872 -0.00526184 -6.06446e-18)
(0.978628 -0.00130767 -7.10148e-18)
(0.978302 -0.00650519 2.70955e-17)
(0.979215 -0.01122 -3.97772e-17)
(0.981039 -0.0157813 1.8217e-16)
(0.983821 -0.0200108 -2.55184e-18)
(0.987649 -0.0237232 9.00166e-18)
(0.992467 -0.0266031 1.39802e-16)
(0.997989 -0.0282873 9.63113e-17)
(1.00383 -0.0285788 2.48763e-16)
(1.00956 -0.027452 1.5057e-16)
(1.01483 -0.0250252 -2.61432e-16)
(1.01948 -0.0215673 8.77342e-17)
(1.0234 -0.0173494 -2.08355e-16)
(1.02602 -0.0123041 -1.41513e-16)
(1.02928 -0.00552513 -3.87546e-17)
(0.978179 -0.00133979 2.27197e-17)
(0.977836 -0.00664531 -2.80062e-17)
(0.978757 -0.0114607 -6.6558e-18)
(0.980607 -0.0161215 -3.36013e-17)
(0.983443 -0.0204527 -1.84022e-16)
(0.987359 -0.0242592 -6.18421e-19)
(0.992295 -0.0272108 1.79469e-17)
(0.997954 -0.0289319 -1.44039e-17)
(1.00393 -0.0292206 1.68722e-17)
(1.0098 -0.0280542 4.82869e-17)
(1.01517 -0.0255599 3.47146e-18)
(1.0199 -0.0220209 7.30905e-17)
(1.02387 -0.017721 1.55751e-16)
(1.02653 -0.0126011 1.12511e-16)
(1.02984 -0.00579213 1.87846e-17)
(0.977722 -0.0013727 -1.99327e-17)
(0.977361 -0.00678883 1.99602e-17)
(0.97829 -0.0117074 1.41955e-17)
(0.980168 -0.01647 -1.52946e-16)
(0.983059 -0.0209058 1.58755e-16)
(0.987065 -0.0248088 -2.62778e-17)
(0.992122 -0.0278337 1.19034e-16)
(0.997922 -0.0295919 -1.25205e-16)
(1.00404 -0.0298766 -9.52682e-17)
(1.01004 -0.0286684 -5.57116e-18)
(1.01552 -0.026104 1.68368e-16)
(1.02034 -0.0224813 -2.25835e-17)
(1.02436 -0.0180974 -1.71828e-17)
(1.02705 -0.012902 9.68546e-17)
(1.03042 -0.00606671 -3.69626e-18)
(0.977256 -0.00140651 2.00494e-18)
(0.976878 -0.00693589 -4.33637e-17)
(0.977814 -0.0119601 -5.84108e-18)
(0.979719 -0.0168273 1.63464e-16)
(0.982667 -0.0213705 -9.90728e-17)
(0.986765 -0.0253727 1.7369e-16)
(0.991948 -0.0284725 -7.36428e-17)
(0.997893 -0.0302679 1.53163e-16)
(1.00416 -0.0305473 -1.70332e-17)
(1.0103 -0.0292949 -1.88025e-16)
(1.01589 -0.0266575 4.70312e-17)
(1.02078 -0.0229482 -3.20282e-16)
(1.02486 -0.0184784 -4.51924e-17)
(1.02757 -0.0132063 -4.82706e-17)
(1.031 -0.00634466 2.27107e-17)
(0.976782 -0.00144116 -6.86291e-18)
(0.976385 -0.00708656 6.82654e-19)
(0.977328 -0.0122191 -5.94787e-17)
(0.979261 -0.0171936 -5.37611e-17)
(0.982268 -0.0218471 5.29197e-17)
(0.986461 -0.0259511 -1.20935e-16)
(0.991773 -0.0291274 -7.89133e-17)
(0.997868 -0.0309601 7.88855e-17)
(1.00429 -0.0312329 -1.52047e-16)
(1.01056 -0.0299339 1.23393e-18)
(1.01626 -0.0272204 1.85623e-17)
(1.02124 -0.0234216 1.32023e-16)
(1.02536 -0.0188639 3.96865e-17)
(1.02811 -0.0135142 -9.24619e-17)
(1.03159 -0.00663027 -1.56494e-18)
(0.976299 -0.00147675 2.73201e-18)
(0.975883 -0.00724096 -2.5432e-17)
(0.976832 -0.0124845 8.82346e-17)
(0.978793 -0.0175691 -2.78363e-17)
(0.98186 -0.0223361 -4.58984e-17)
(0.986153 -0.0265447 -1.21811e-16)
(0.991597 -0.029799 -8.4557e-17)
(0.997846 -0.0316689 -2.32789e-16)
(1.00442 -0.0319335 3.43286e-17)
(1.01084 -0.0305853 -3.65426e-17)
(1.01665 -0.0277927 4.09863e-17)
(1.02171 -0.0239014 1.21726e-16)
(1.02588 -0.0192536 -3.70179e-17)
(1.02865 -0.0138251 1.93892e-17)
(1.03219 -0.00691888 1.97495e-17)
(0.975807 -0.00151323 1.58695e-17)
(0.97537 -0.00739915 3.48866e-17)
(0.976326 -0.0127566 -7.95307e-17)
(0.978316 -0.0179542 3.34816e-17)
(0.981445 -0.0228379 1.16278e-16)
(0.985839 -0.0271537 1.49018e-16)
(0.991421 -0.0304876 1.64578e-16)
(0.997828 -0.0323947 6.11649e-18)
(1.00457 -0.0326495 1.53538e-16)
(1.01112 -0.0312493 -3.52384e-17)
(1.01705 -0.0283743 4.86093e-17)
(1.02219 -0.0243873 7.1464e-17)
(1.02641 -0.0196472 -6.51468e-18)
(1.02921 -0.0141393 5.07756e-19)
(1.0328 -0.00721484 -3.76228e-17)
(0.975306 -0.00155069 -2.07938e-17)
(0.974848 -0.0075613 3.20296e-18)
(0.97581 -0.0130355 1.73921e-17)
(0.977829 -0.0183492 1.5296e-17)
(0.981021 -0.0233529 -1.63862e-16)
(0.985521 -0.0277789 2.24645e-17)
(0.991245 -0.0311939 -7.10286e-17)
(0.997815 -0.0331379 1.05558e-16)
(1.00472 -0.0333811 -4.98776e-17)
(1.01142 -0.0319261 6.23584e-17)
(1.01747 -0.0289651 -1.03152e-16)
(1.02269 -0.0248792 1.27198e-17)
(1.02695 -0.0200444 2.20114e-17)
(1.02977 -0.0144561 -2.70903e-17)
(1.03341 -0.00751369 6.9999e-18)
(0.974795 -0.00158909 -1.61919e-17)
(0.974316 -0.00772746 -8.25346e-18)
(0.975283 -0.0133215 4.56365e-17)
(0.977331 -0.0187545 -5.44614e-17)
(0.980589 -0.0238816 3.31348e-17)
(0.985197 -0.0284206 -1.89076e-16)
(0.991069 -0.0319183 4.12563e-17)
(0.997807 -0.033899 3.83621e-19)
(1.00488 -0.0341286 -7.18365e-17)
(1.01173 -0.0326157 2.00202e-16)
(1.01789 -0.0295652 -3.71878e-17)
(1.02319 -0.025377 -1.95174e-16)
(1.0275 -0.0204452 -4.83139e-18)
(1.03034 -0.0147758 -3.61539e-17)
(1.03403 -0.00781969 -2.09892e-17)
(0.974275 -0.00162853 2.87675e-17)
(0.973772 -0.00789778 5.14896e-17)
(0.974745 -0.0136147 -4.53096e-18)
(0.976823 -0.0191704 5.85263e-17)
(0.980149 -0.0244244 -6.33082e-17)
(0.984869 -0.0290795 1.39283e-16)
(0.990892 -0.0326614 -6.828e-17)
(0.997804 -0.0346783 -2.96542e-17)
(1.00505 -0.0348922 -4.89985e-17)
(1.01205 -0.0333182 -1.58307e-16)
(1.01834 -0.0301744 1.46964e-16)
(1.02371 -0.0258805 1.52631e-16)
(1.02806 -0.0208493 6.7049e-17)
(1.03092 -0.0150979 1.56292e-16)
(1.03466 -0.00812798 -8.04794e-18)
(0.973745 -0.00166897 -3.7682e-18)
(0.973218 -0.00807233 -1.13589e-16)
(0.974195 -0.0139155 4.83662e-17)
(0.976305 -0.0195972 1.07599e-17)
(0.9797 -0.0249819 6.77815e-17)
(0.984536 -0.0297562 3.30164e-17)
(0.990716 -0.0334236 8.95506e-17)
(0.997806 -0.0354763 5.00089e-17)
(1.00523 -0.0356722 1.63672e-16)
(1.01239 -0.0340337 -1.24815e-16)
(1.01879 -0.0307926 -1.73224e-16)
(1.02425 -0.0263892 -2.4096e-16)
(1.02863 -0.0212564 -8.23368e-17)
(1.03151 -0.0154225 -3.2858e-17)
(1.03529 -0.0084423 3.75071e-17)
(0.973204 -0.0017105 4.42263e-18)
(0.972653 -0.00825128 7.65708e-17)
(0.973634 -0.0142241 -5.3494e-17)
(0.975774 -0.0200356 1.26892e-17)
(0.979241 -0.0255547 2.16804e-17)
(0.984199 -0.0304512 -4.26613e-18)
(0.99054 -0.0342057 5.85852e-18)
(0.997814 -0.0362935 1.54375e-17)
(1.00542 -0.036469 -5.47989e-17)
(1.01274 -0.0347622 1.25257e-16)
(1.01926 -0.0314198 -2.80328e-17)
(1.0248 -0.0269032 1.10341e-16)
(1.02922 -0.0216666 5.19184e-17)
(1.0321 -0.0157492 -1.25626e-16)
(1.03593 -0.00875777 -1.48539e-17)
(0.972653 -0.00175308 -2.22148e-17)
(0.972076 -0.00843469 -1.57166e-17)
(0.973061 -0.0145408 -1.61771e-17)
(0.975233 -0.0204856 -2.09993e-17)
(0.978774 -0.0261432 -7.44134e-18)
(0.983856 -0.0311652 2.42083e-18)
(0.990365 -0.0350081 -9.7082e-17)
(0.997829 -0.0371302 -9.94268e-17)
(1.00562 -0.0372826 -1.12626e-16)
(1.0131 -0.0355038 -9.74086e-17)
(1.01974 -0.0320558 1.9959e-16)
(1.02536 -0.027422 -3.78413e-17)
(1.02982 -0.0220797 -1.15556e-16)
(1.03271 -0.0160783 6.0823e-17)
(1.03658 -0.00907867 8.68559e-19)
(0.972092 -0.00179682 2.54904e-17)
(0.971488 -0.00862274 2.69624e-17)
(0.972475 -0.0148657 -9.82199e-18)
(0.974679 -0.020948 -7.81281e-17)
(0.978297 -0.0267483 -2.31755e-17)
(0.983508 -0.031899 -6.33504e-17)
(0.990192 -0.0358316 9.33154e-18)
(0.99785 -0.037987 6.86059e-17)
(1.00583 -0.0381134 1.2907e-16)
(1.01348 -0.0362587 8.02918e-17)
(1.02024 -0.0327006 -2.82948e-17)
(1.02594 -0.0279456 2.89213e-18)
(1.03042 -0.0224955 1.58698e-16)
(1.03332 -0.0164094 3.96428e-17)
(1.03724 -0.00939875 -3.36429e-17)
(0.97152 -0.00184167 1.02113e-17)
(0.970887 -0.0088155 1.09455e-17)
(0.971877 -0.0151992 1.27975e-17)
(0.974113 -0.0214231 8.96831e-17)
(0.97781 -0.0273703 2.30585e-17)
(0.983156 -0.0326531 4.89259e-17)
(0.990019 -0.0366767 1.67778e-17)
(0.997879 -0.0388643 -5.71843e-17)
(1.00605 -0.0389616 2.12754e-17)
(1.01387 -0.0370266 2.63028e-17)
(1.02076 -0.033354 -1.31319e-17)
(1.02653 -0.0284736 2.09111e-16)
(1.03104 -0.0229136 -9.19097e-17)
(1.03395 -0.0167427 -1.67046e-17)
(1.0379 -0.00972467 4.88024e-17)
(0.970936 -0.00188775 -1.78814e-17)
(0.970273 -0.00901317 -9.97431e-17)
(0.971265 -0.0155416 -3.24992e-17)
(0.973535 -0.0219114 4.66567e-18)
(0.977314 -0.0280101 -2.21592e-18)
(0.982799 -0.0334284 -7.71987e-17)
(0.989848 -0.0375442 -3.98918e-17)
(0.997916 -0.0397626 5.24768e-17)
(1.00629 -0.0398276 -6.49515e-17)
(1.01428 -0.037808 -7.78636e-17)
(1.02129 -0.0340158 -3.3441e-17)
(1.02714 -0.0290062 -2.14442e-16)
(1.03168 -0.0233343 3.00902e-17)
(1.03458 -0.0170777 -5.35384e-17)
(1.03857 -0.0100505 -1.91639e-17)
(0.970341 -0.00193501 5.12579e-18)
(0.969647 -0.00921582 4.65709e-17)
(0.97064 -0.0158932 2.10948e-17)
(0.972943 -0.0224135 2.01995e-17)
(0.976807 -0.0286682 6.25868e-18)
(0.982437 -0.0342255 -2.68426e-17)
(0.989679 -0.0384347 6.32593e-17)
(0.997961 -0.0406825 -8.66987e-17)
(1.00654 -0.0407116 -7.81418e-18)
(1.0147 -0.0386025 1.77699e-16)
(1.02184 -0.0346859 -1.14466e-16)
(1.02776 -0.029543 1.56482e-16)
(1.03232 -0.0237573 5.37739e-17)
(1.03522 -0.0174149 4.06403e-18)
(1.03925 -0.0103835 -2.08064e-17)
(0.969734 -0.00198356 2.777e-20)
(0.969007 -0.00942363 5.7774e-18)
(0.97 -0.0162543 1.25337e-17)
(0.972338 -0.02293 -9.06532e-17)
(0.976291 -0.0293456 7.07147e-17)
(0.982071 -0.0350454 1.50534e-16)
(0.989512 -0.0393489 -4.13999e-17)
(0.998015 -0.0416243 1.02513e-17)
(1.00681 -0.0416138 -1.65044e-17)
(1.01514 -0.0394105 -9.27381e-17)
(1.02241 -0.0353642 2.77574e-17)
(1.0284 -0.0300842 -8.30016e-17)
(1.03298 -0.0241827 1.36689e-18)
(1.03587 -0.0177535 -5.17234e-18)
(1.03994 -0.0107191 3.62322e-17)
(0.969115 -0.00203338 -8.90499e-18)
(0.968354 -0.00963667 3.29467e-17)
(0.969346 -0.0166252 -7.42599e-18)
(0.971719 -0.0234612 2.43509e-17)
(0.975763 -0.030043 -1.66543e-16)
(0.981699 -0.0358889 -3.40443e-17)
(0.989348 -0.0402876 -4.83496e-17)
(0.998078 -0.0425887 -4.3223e-17)
(1.00709 -0.0425344 -9.89289e-18)
(1.0156 -0.0402317 -8.90059e-17)
(1.023 -0.0360503 1.33841e-16)
(1.02906 -0.0306292 1.42268e-17)
(1.03365 -0.0246103 -1.43546e-16)
(1.03652 -0.0180939 1.00666e-16)
(1.04064 -0.0110629 8.04656e-18)
(0.968484 -0.00208457 -2.0413e-17)
(0.967687 -0.00985518 -3.34244e-18)
(0.968677 -0.0170064 -6.45135e-17)
(0.971086 -0.0240081 5.9194e-18)
(0.975225 -0.0307611 1.30095e-16)
(0.981324 -0.0367569 -1.30749e-16)
(0.989187 -0.0412516 6.74592e-18)
(0.998152 -0.0435761 5.892e-17)
(1.00738 -0.0434737 -7.58207e-17)
(1.01608 -0.0410663 1.62074e-16)
(1.02361 -0.0367445 -1.3723e-16)
(1.02973 -0.0311784 -1.3137e-17)
(1.03433 -0.0250404 1.03982e-16)
(1.03718 -0.0184359 -5.32014e-17)
(1.04134 -0.0114063 3.65306e-18)
(0.96784 -0.00213713 1.50384e-17)
(0.967005 -0.0100792 -4.58336e-17)
(0.967992 -0.0173981 8.30714e-17)
(0.970438 -0.024571 -2.22632e-17)
(0.974676 -0.031501 -8.54143e-17)
(0.980944 -0.0376503 9.78572e-17)
(0.98903 -0.0422416 7.39962e-17)
(0.998236 -0.0445871 4.16278e-17)
(1.00769 -0.044432 6.31438e-17)
(1.01658 -0.0419141 -1.13622e-16)
(1.02423 -0.0374465 -1.17718e-17)
(1.03042 -0.0317315 -2.19319e-17)
(1.03503 -0.0254729 4.5604e-17)
(1.03785 -0.0187802 5.90807e-17)
(1.04205 -0.0117562 -4.50161e-17)
(0.967183 -0.00219114 1.45356e-17)
(0.966308 -0.010309 5.43623e-17)
(0.967291 -0.0178008 -8.08862e-18)
(0.969774 -0.0251509 5.63626e-17)
(0.974115 -0.0322634 1.08867e-16)
(0.98056 -0.0385701 -7.33826e-17)
(0.988877 -0.0432584 4.47612e-18)
(0.998332 -0.0456222 3.6205e-17)
(1.00802 -0.0454095 1.11515e-16)
(1.01709 -0.0427752 1.36983e-16)
(1.02487 -0.0381564 1.46004e-16)
(1.03113 -0.0322886 -2.17361e-17)
(1.03574 -0.025908 -3.68358e-17)
(1.03853 -0.0191255 -5.64061e-17)
(1.04278 -0.0121078 1.45964e-17)
(0.966512 -0.00224662 -2.87949e-18)
(0.965596 -0.0105446 -8.56213e-17)
(0.966573 -0.0182149 1.43239e-17)
(0.969095 -0.0257483 -5.86014e-17)
(0.973544 -0.0330494 -1.45189e-16)
(0.980172 -0.0395173 7.76223e-17)
(0.988728 -0.044303 -3.52869e-17)
(0.998441 -0.046682 7.49797e-18)
(1.00837 -0.0464063 -5.88682e-17)
(1.01763 -0.0436494 -2.29678e-17)
(1.02554 -0.0388739 1.08346e-17)
(1.03185 -0.0328494 3.5729e-17)
(1.03646 -0.0263451 -2.30688e-17)
(1.03922 -0.0194723 7.01439e-19)
(1.04351 -0.0124636 7.88991e-18)
(0.965828 -0.00230366 3.55047e-17)
(0.964867 -0.0107863 1.09307e-16)
(0.965838 -0.0186408 -4.50015e-18)
(0.968399 -0.026364 2.30336e-17)
(0.97296 -0.03386 9.21e-17)
(0.97978 -0.0404929 -1.06765e-16)
(0.988585 -0.0453761 -4.01643e-17)
(0.998563 -0.0477669 -1.0469e-16)
(1.00873 -0.0474228 -7.41151e-17)
(1.01819 -0.0445369 -1.76854e-16)
(1.02622 -0.0395992 -4.389e-18)
(1.03259 -0.0334147 4.38023e-18)
(1.03719 -0.0267847 1.54708e-17)
(1.03991 -0.0198206 3.50194e-17)
(1.04424 -0.0128144 8.4868e-18)
(0.965129 -0.00236228 -3.82652e-18)
(0.964122 -0.0110342 -5.30929e-17)
(0.965085 -0.019079 5.62073e-17)
(0.967687 -0.026999 -2.91982e-17)
(0.972365 -0.0346962 -7.87311e-18)
(0.979385 -0.0414981 3.35566e-17)
(0.988448 -0.0464787 1.61062e-17)
(0.998698 -0.0488776 2.48849e-17)
(1.00912 -0.048459 1.34765e-17)
(1.01877 -0.0454375 -5.10949e-17)
(1.02693 -0.0403321 -1.99186e-16)
(1.03335 -0.0339839 4.3453e-17)
(1.03794 -0.0272266 -4.53965e-17)
(1.04061 -0.0201706 -7.59063e-17)
(1.04499 -0.0131651 -2.59345e-17)
(0.964416 -0.00242258 5.4949e-19)
(0.96336 -0.0112885 4.67165e-17)
(0.964313 -0.01953 -2.47406e-17)
(0.966957 -0.027654 6.75628e-17)
(0.971757 -0.0355593 -1.01152e-16)
(0.978986 -0.0425341 -2.98648e-17)
(0.988317 -0.0476117 1.41534e-16)
(0.998849 -0.0500145 -6.26248e-18)
(1.00952 -0.0495153 -6.8604e-17)
(1.01937 -0.0463514 1.4225e-16)
(1.02766 -0.0410728 1.31229e-16)
(1.03412 -0.0345576 -6.72912e-17)
(1.03869 -0.0276707 1.00262e-16)
(1.04132 -0.0205214 1.0847e-16)
(1.04574 -0.0135075 3.89942e-17)
(0.963688 -0.00248459 -2.8628e-17)
(0.962581 -0.0115493 -4.34168e-17)
(0.963522 -0.0199941 1.86682e-17)
(0.966209 -0.0283298 -8.15786e-17)
(0.971138 -0.0364503 4.59041e-17)
(0.978584 -0.0436019 2.58698e-17)
(0.988193 -0.0487759 -1.66533e-16)
(0.999016 -0.0511782 1.22499e-17)
(1.00995 -0.0505916 2.93394e-16)
(1.02 -0.0472784 -1.62017e-16)
(1.02841 -0.041821 -4.89382e-17)
(1.03492 -0.0351351 -6.96474e-18)
(1.03947 -0.0281167 -1.2312e-16)
(1.04204 -0.0208729 -3.5184e-17)
(1.0465 -0.0138473 -4.33601e-17)
(0.962944 -0.00254844 -1.181e-17)
(0.961783 -0.0118169 -3.50207e-17)
(0.962711 -0.0204722 -6.50145e-17)
(0.965442 -0.0290277 1.03153e-16)
(0.970506 -0.0373706 6.15975e-17)
(0.97818 -0.0447029 7.26187e-17)
(0.988078 -0.0499725 5.54114e-17)
(0.999199 -0.0523692 -3.18652e-17)
(1.0104 -0.0516882 -2.38381e-16)
(1.02065 -0.0482188 -1.36268e-17)
(1.02918 -0.0425772 -5.39119e-17)
(1.03573 -0.0357172 1.09963e-17)
(1.04025 -0.028565 -4.72858e-18)
(1.04277 -0.0212245 -1.01014e-16)
(1.04726 -0.0141774 4.10663e-17)
(0.962185 -0.00261415 2.20609e-18)
(0.960967 -0.0120913 3.6294e-17)
(0.96188 -0.0209645 6.10427e-18)
(0.964657 -0.0297484 -2.23061e-17)
(0.969861 -0.0383215 -3.4258e-18)
(0.977774 -0.0458383 -7.58396e-17)
(0.987972 -0.0512022 -4.6231e-19)
(0.999401 -0.0535881 6.36373e-17)
(1.01087 -0.0528051 2.59909e-16)
(1.02133 -0.0491722 9.94812e-19)
(1.02997 -0.043341 7.45908e-17)
(1.03656 -0.0363033 -2.26279e-17)
(1.04105 -0.0290151 1.94571e-17)
(1.04351 -0.0215761 2.73702e-17)
(1.04804 -0.0145035 -5.41039e-18)
(0.961408 -0.00268185 1.25118e-17)
(0.960131 -0.012373 -1.28664e-17)
(0.961027 -0.0214718 7.43089e-18)
(0.963852 -0.0304931 -9.17691e-17)
(0.969204 -0.0393042 3.51068e-17)
(0.977366 -0.0470095 5.92206e-17)
(0.987875 -0.0524661 2.24331e-17)
(0.999621 -0.0548354 -8.94602e-17)
(1.01136 -0.0539426 -1.32042e-16)
(1.02203 -0.0501391 2.50524e-16)
(1.03079 -0.0441129 1.27369e-17)
(1.03741 -0.0368938 1.03647e-16)
(1.04186 -0.0294671 -1.17016e-17)
(1.04425 -0.0219269 3.17735e-17)
(1.04882 -0.0148185 -4.26211e-17)
(0.960616 -0.00275158 -1.57033e-17)
(0.959275 -0.012662 -1.06171e-17)
(0.960151 -0.0219947 2.53016e-17)
(0.963026 -0.031263 2.01508e-18)
(0.968534 -0.0403204 -1.13467e-16)
(0.976956 -0.0482179 3.48524e-17)
(0.98779 -0.0537651 -2.14502e-17)
(0.999862 -0.0561115 -2.40588e-17)
(1.01189 -0.0551007 -1.52784e-16)
(1.02276 -0.0511189 -7.73043e-18)
(1.03163 -0.0448921 -5.00461e-19)
(1.03827 -0.0374878 -1.19913e-16)
(1.04269 -0.02992 4.19754e-17)
(1.04502 -0.0222765 2.35185e-17)
(1.04961 -0.0151287 1.54847e-17)
(0.959805 -0.00282348 7.76691e-18)
(0.958398 -0.0129585 4.74633e-18)
(0.959253 -0.0225339 6.64043e-19)
(0.96218 -0.0320592 1.74695e-16)
(0.967851 -0.0413715 9.59289e-17)
(0.976546 -0.0494649 6.4682e-17)
(0.987716 -0.0551005 3.87634e-18)
(1.00012 -0.0574168 1.12103e-16)
(1.01243 -0.0562797 -1.2154e-17)
(1.02351 -0.0521122 -9.08496e-17)
(1.0325 -0.0456795 -8.51761e-17)
(1.03916 -0.0380862 4.82206e-17)
(1.04353 -0.0303742 1.51495e-17)
(1.04579 -0.0226245 -1.55304e-17)
(1.05041 -0.0154274 2.08891e-18)
(0.958977 -0.0028976 -2.62739e-17)
(0.957499 -0.0132629 -1.51694e-17)
(0.95833 -0.02309 2.23878e-17)
(0.961312 -0.0328831 -1.05024e-17)
(0.967155 -0.042459 -1.26985e-16)
(0.976137 -0.050752 -1.87219e-16)
(0.987655 -0.056473 3.53686e-17)
(1.00041 -0.0587519 1.02204e-17)
(1.01301 -0.0574795 6.73366e-17)
(1.02429 -0.0531186 -3.76103e-17)
(1.03338 -0.0464743 7.87098e-18)
(1.04006 -0.0386881 -4.2509e-19)
(1.04438 -0.0308289 2.226e-17)
(1.04657 -0.0229705 2.3218e-17)
(1.05122 -0.0157212 3.57517e-17)
(0.95813 -0.00297412 2.54637e-17)
(0.956578 -0.0135754 3.59232e-17)
(0.957383 -0.0236639 -4.53251e-17)
(0.960422 -0.0337359 -1.65872e-16)
(0.966447 -0.0435848 7.99319e-17)
(0.975728 -0.0520806 1.94061e-16)
(0.987609 -0.0578839 -4.62285e-17)
(1.00072 -0.0601172 -9.95927e-17)
(1.01361 -0.0587005 1.72938e-16)
(1.0251 -0.0541382 3.67349e-17)
(1.0343 -0.0472768 -2.2892e-17)
(1.04099 -0.0392937 4.48459e-17)
(1.04525 -0.031284 5.50358e-19)
(1.04736 -0.0233136 5.38501e-18)
(1.05204 -0.0160025 -4.5782e-17)
(0.957264 -0.00305308 2.32955e-17)
(0.955633 -0.0138961 -1.98197e-17)
(0.95641 -0.0242563 -2.383e-17)
(0.959509 -0.0346191 5.13301e-17)
(0.965726 -0.0447505 1.05318e-16)
(0.97532 -0.0534524 -1.24043e-16)
(0.987578 -0.059334 7.26979e-17)
(1.00105 -0.061513 4.43836e-17)
(1.01425 -0.0599425 -2.06783e-16)
(1.02594 -0.0551706 1.23719e-17)
(1.03523 -0.0480863 1.65914e-17)
(1.04193 -0.0399016 -9.11962e-17)
(1.04614 -0.0317384 -6.25774e-17)
(1.04817 -0.0236534 5.47822e-17)
(1.05287 -0.016278 1.86673e-17)
(0.956378 -0.00313467 -2.49697e-17)
(0.954665 -0.0142255 5.87927e-20)
(0.955411 -0.0248681 1.11168e-17)
(0.958573 -0.0355343 3.30243e-17)
(0.964992 -0.0459579 -6.65903e-17)
(0.974916 -0.054869 9.1078e-17)
(0.987564 -0.0608244 -1.55181e-16)
(1.00141 -0.0629399 -2.83312e-17)
(1.01491 -0.0612056 1.06937e-16)
(1.0268 -0.0562163 4.4639e-17)
(1.0362 -0.0489031 1.43478e-16)
(1.04289 -0.0405125 7.07709e-17)
(1.04704 -0.0321922 3.34844e-17)
(1.04899 -0.0239898 -9.37985e-17)
(1.05371 -0.0165403 7.97481e-20)
(0.955472 -0.00321898 3.93935e-17)
(0.953671 -0.0145637 -4.12503e-17)
(0.954383 -0.0255002 2.26089e-17)
(0.957612 -0.036483 -3.38975e-17)
(0.964245 -0.0472089 -7.43502e-18)
(0.974514 -0.0563321 -1.08382e-16)
(0.987569 -0.062356 -8.15299e-18)
(1.0018 -0.0643981 1.66006e-16)
(1.01561 -0.0624897 -7.541e-17)
(1.0277 -0.0572745 -9.34312e-17)
(1.03718 -0.0497265 -1.0172e-16)
(1.04388 -0.041125 -3.91146e-17)
(1.04796 -0.0326445 3.55189e-17)
(1.04982 -0.024322 6.85352e-17)
(1.05456 -0.0167959 2.86914e-18)
(0.954544 -0.00330619 -4.6618e-17)
(0.952652 -0.0149112 6.27416e-17)
(0.953327 -0.0261536 -2.77096e-17)
(0.956627 -0.0374668 6.68242e-17)
(0.963487 -0.0485056 6.77075e-17)
(0.974118 -0.0578433 8.72841e-17)
(0.987594 -0.0639298 -1.813e-17)
(1.00222 -0.0658882 -8.68483e-17)
(1.01633 -0.063795 6.00922e-17)
(1.02863 -0.0583456 -4.04562e-17)
(1.0382 -0.0505565 -4.99519e-17)
(1.04488 -0.0417392 9.56419e-17)
(1.0489 -0.0330948 -1.03282e-16)
(1.05067 -0.0246496 -6.47309e-17)
(1.05542 -0.0170367 1.443e-17)
(0.953595 -0.00339641 3.59101e-17)
(0.951606 -0.0152681 -3.30137e-17)
(0.952241 -0.0268292 -5.42611e-18)
(0.955617 -0.0384877 -5.93633e-17)
(0.962717 -0.04985 -5.05805e-17)
(0.973727 -0.0594044 2.40296e-17)
(0.98764 -0.0655468 1.16946e-16)
(1.00267 -0.0674102 -1.53286e-17)
(1.0171 -0.0651209 3.35534e-17)
(1.02959 -0.0594285 6.33451e-17)
(1.03924 -0.0513918 8.56869e-17)
(1.04591 -0.0423536 2.86691e-17)
(1.04985 -0.0335419 1.59273e-17)
(1.05153 -0.0249719 8.79214e-18)
(1.0563 -0.0172704 -5.96352e-18)
(0.952623 -0.00348983 -5.56343e-17)
(0.950532 -0.015635 -2.62562e-17)
(0.951124 -0.0275283 2.21524e-17)
(0.954581 -0.0395475 1.10326e-17)
(0.961935 -0.0512442 -2.26138e-17)
(0.973343 -0.0610171 -3.47119e-17)
(0.98771 -0.067208 -1.8074e-17)
(1.00315 -0.0689646 -1.49656e-17)
(1.01789 -0.0664679 -1.25689e-16)
(1.03058 -0.0605237 -4.06466e-18)
(1.04031 -0.0522327 1.15225e-17)
(1.04696 -0.0429684 -1.15638e-16)
(1.05083 -0.0339857 1.52338e-17)
(1.0524 -0.0252888 -2.7266e-17)
(1.05719 -0.017489 -2.24992e-17)
(0.951627 -0.00358659 1.72709e-17)
(0.949428 -0.0160121 6.38163e-17)
(0.949976 -0.0282519 -5.16363e-17)
(0.953519 -0.0406481 -8.37966e-18)
(0.961142 -0.0526906 -1.35299e-18)
(0.972968 -0.0626832 -4.64342e-17)
(0.987805 -0.0689144 2.29059e-17)
(1.00367 -0.0705513 7.60898e-17)
(1.01872 -0.0678353 -1.38514e-17)
(1.0316 -0.0616301 8.72689e-17)
(1.0414 -0.053078 2.09541e-17)
(1.04804 -0.0435822 8.3363e-17)
(1.05182 -0.034425 -3.97085e-17)
(1.05329 -0.0255996 3.10547e-17)
(1.05808 -0.0177 1.87143e-17)
(0.950607 -0.0036869 3.4967e-17)
(0.948295 -0.0164 -6.63351e-17)
(0.948794 -0.0290013 4.55697e-17)
(0.95243 -0.0417917 4.25379e-17)
(0.960338 -0.0541915 1.39425e-17)
(0.972603 -0.0644045 2.90422e-17)
(0.987927 -0.0706668 1.28027e-17)
(1.00422 -0.0721705 -1.87119e-17)
(1.01959 -0.0692232 -1.90421e-17)
(1.03266 -0.0627479 -1.27618e-16)
(1.04253 -0.0539274 -3.54084e-17)
(1.04913 -0.0441946 -1.14409e-16)
(1.05282 -0.0348596 6.26956e-17)
(1.0542 -0.0259039 -2.18889e-18)
(1.059 -0.0178944 -6.04437e-18)
(0.949562 -0.00379094 -1.37896e-17)
(0.94713 -0.0167989 -9.14494e-18)
(0.947577 -0.0297779 -2.08096e-17)
(0.951314 -0.0429805 -8.34004e-18)
(0.959525 -0.0557494 -3.49161e-17)
(0.97225 -0.0661828 -2.0568e-17)
(0.988079 -0.0724661 3.52319e-17)
(1.00481 -0.0738223 -8.10306e-17)
(1.0205 -0.0706308 9.90075e-17)
(1.03375 -0.0638757 6.26668e-17)
(1.04369 -0.0547794 7.20688e-18)
(1.05025 -0.044804 8.45808e-17)
(1.05385 -0.0352881 -8.10784e-17)
(1.05512 -0.026201 -9.96075e-18)
(1.05992 -0.0180808 2.08515e-17)
(0.948491 -0.00389892 2.55412e-17)
(0.945932 -0.0172095 1.16822e-17)
(0.946325 -0.030583 1.37549e-17)
(0.95017 -0.0442168 -2.87378e-17)
(0.958703 -0.0573666 5.63039e-17)
(0.971911 -0.0680199 4.50896e-17)
(0.988262 -0.074313 -5.95234e-17)
(1.00544 -0.0755066 -1.04023e-16)
(1.02145 -0.0720583 1.49435e-16)
(1.03488 -0.0650135 7.23655e-17)
(1.04487 -0.0556339 -4.22007e-17)
(1.0514 -0.0454102 -5.96101e-17)
(1.0549 -0.0357104 4.31673e-17)
(1.05605 -0.0264908 2.16455e-17)
(1.06086 -0.0182503 7.31669e-18)
(0.947393 -0.00401106 -3.20322e-17)
(0.944701 -0.0176322 1.56358e-17)
(0.945036 -0.0314184 -8.50833e-19)
(0.948998 -0.0455033 1.95821e-17)
(0.957873 -0.059046 -4.34746e-17)
(0.971587 -0.0699179 -6.40439e-17)
(0.988478 -0.0762083 3.73018e-17)
(1.00612 -0.0772234 1.95862e-16)
(1.02244 -0.0735046 -7.05724e-17)
(1.03605 -0.0661601 -1.57451e-16)
(1.04609 -0.0564894 2.0326e-17)
(1.05257 -0.0460116 -5.12026e-19)
(1.05596 -0.0361254 3.22391e-17)
(1.057 -0.0267726 7.23684e-18)
(1.06182 -0.0184113 -5.61291e-17)
(0.946266 -0.00412758 6.79698e-18)
(0.943434 -0.0180676 7.05395e-17)
(0.943709 -0.0322855 -3.34264e-17)
(0.947797 -0.0468424 1.81084e-17)
(0.957037 -0.0607901 -1.32689e-17)
(0.971281 -0.0718783 -1.27892e-18)
(0.988731 -0.0781526 3.08904e-18)
(1.00683 -0.0789726 9.34891e-17)
(1.02347 -0.0749697 -1.40569e-16)
(1.03725 -0.0673153 6.09545e-18)
(1.04733 -0.0573456 -6.42599e-17)
(1.05376 -0.046608 7.9738e-17)
(1.05705 -0.0365325 4.29571e-18)
(1.05797 -0.0270462 -5.8908e-17)
(1.06278 -0.0185541 3.97519e-17)
(0.945111 -0.00424874 1.92052e-18)
(0.942131 -0.0185163 -4.56259e-17)
(0.942343 -0.0331861 -1.831e-18)
(0.946567 -0.048237 1.00626e-17)
(0.956194 -0.0626018 2.42972e-17)
(0.970996 -0.0739032 1.0256e-16)
(0.989022 -0.0801463 -7.74524e-17)
(1.00759 -0.0807535 -2.42267e-16)
(1.02454 -0.0764523 1.57664e-17)
(1.03849 -0.0684773 1.44904e-16)
(1.04862 -0.0582004 -8.93743e-18)
(1.05499 -0.0471975 -1.11151e-16)
(1.05815 -0.0369307 5.18518e-17)
(1.05895 -0.0273111 4.78616e-17)
(1.06376 -0.0186882 -3.27008e-17)
(0.943925 -0.00437476 -1.17486e-17)
(0.94079 -0.0189789 2.11977e-17)
(0.940936 -0.0341222 2.68432e-17)
(0.945309 -0.0496899 -4.32816e-17)
(0.955347 -0.0644839 -1.33892e-17)
(0.970733 -0.0759941 -1.04357e-17)
(0.989354 -0.0821899 4.80754e-17)
(1.0084 -0.0825662 -1.47233e-17)
(1.02566 -0.0779523 -5.75439e-18)
(1.03977 -0.0696459 -1.6366e-17)
(1.04993 -0.0590536 5.47112e-17)
(1.05623 -0.0477799 9.19903e-17)
(1.05928 -0.0373194 -1.38534e-16)
(1.05995 -0.027567 -9.11977e-18)
(1.06476 -0.0188039 1.88274e-17)
(0.942707 -0.00450594 -1.03584e-18)
(0.939408 -0.0194563 -2.45121e-17)
(0.939486 -0.0350958 2.30774e-17)
(0.944021 -0.0512043 3.86857e-17)
(0.954498 -0.0664395 7.41519e-17)
(0.970496 -0.0781529 -9.4667e-17)
(0.98973 -0.084284 3.35207e-17)
(1.00925 -0.0844099 1.9158e-16)
(1.02682 -0.0794684 1.24771e-16)
(1.04109 -0.0708196 -7.20013e-17)
(1.05128 -0.0599033 -5.11198e-17)
(1.05751 -0.0483536 -3.2869e-17)
(1.06043 -0.0376977 2.98692e-17)
(1.06096 -0.0278134 9.50107e-18)
(1.06577 -0.0189106 -1.2426e-17)
(0.941457 -0.00464254 2.51076e-17)
(0.937986 -0.0199492 3.54411e-18)
(0.937994 -0.036109 3.40871e-17)
(0.942705 -0.0527833 -5.82491e-17)
(0.953648 -0.0684715 -9.08494e-17)
(0.970287 -0.0803812 -2.00625e-17)
(0.990153 -0.0864286 8.80672e-17)
(1.01016 -0.0862842 -1.38839e-16)
(1.02803 -0.081 -1.58535e-16)
(1.04245 -0.0719978 2.15095e-17)
(1.05266 -0.0607491 -3.44497e-17)
(1.05881 -0.0489181 -1.30421e-18)
(1.06159 -0.0380652 -9.89878e-18)
(1.06199 -0.0280501 -1.12162e-17)
(1.0668 -0.018998 2.61167e-17)
(0.940173 -0.00478489 -4.55797e-18)
(0.93652 -0.0204585 -5.50501e-17)
(0.936456 -0.0371642 -7.28395e-17)
(0.941359 -0.0544306 9.70968e-17)
(0.952799 -0.070583 5.01433e-17)
(0.97011 -0.0826806 1.0793e-16)
(0.990625 -0.0886238 -2.50096e-16)
(1.01112 -0.088188 8.71801e-17)
(1.02929 -0.0825456 2.38588e-16)
(1.04385 -0.0731785 -2.5242e-18)
(1.05407 -0.061589 1.50953e-16)
(1.06013 -0.0494718 1.27881e-17)
(1.06278 -0.0384211 3.19215e-17)
(1.06304 -0.028277 -2.67033e-17)
(1.06784 -0.019077 2.40248e-18)
(0.938853 -0.00493324 -4.51001e-18)
(0.93501 -0.0209851 5.337e-17)
(0.934872 -0.0382638 -3.97723e-17)
(0.939985 -0.0561496 -2.16159e-17)
(0.951953 -0.0727771 -1.43788e-17)
(0.969968 -0.0850526 -1.09816e-16)
(0.99115 -0.0908695 9.45076e-17)
(1.01213 -0.0901208 4.70338e-17)
(1.0306 -0.0841045 -6.20953e-17)
(1.0453 -0.0743613 2.28717e-17)
(1.05553 -0.0624225 -8.39207e-17)
(1.06149 -0.0500137 -5.90354e-17)
(1.06398 -0.0387647 3.19166e-17)
(1.0641 -0.0284934 3.26444e-17)
(1.0689 -0.0191368 -4.46926e-19)
(0.937496 -0.00508799 4.97293e-18)
(0.933452 -0.0215301 -4.96518e-18)
(0.93324 -0.0394108 1.23259e-16)
(0.938582 -0.0579441 -1.22283e-16)
(0.951114 -0.0750571 -1.90001e-17)
(0.969864 -0.0874987 9.9414e-17)
(0.991731 -0.0931656 -4.65927e-17)
(1.0132 -0.0920814 -1.47112e-16)
(1.03196 -0.0856752 4.16323e-17)
(1.04679 -0.0755442 1.98264e-18)
(1.05702 -0.0632476 5.02399e-17)
(1.06287 -0.0505425 5.2892e-17)
(1.06521 -0.0390951 -4.81774e-17)
(1.06518 -0.0286991 -6.75588e-19)
(1.06997 -0.0191881 -2.33421e-17)
(0.936101 -0.00524941 -2.98024e-17)
(0.931846 -0.0220947 -4.28259e-17)
(0.931559 -0.0406078 -2.98342e-17)
(0.937152 -0.0598181 1.13673e-16)
(0.950283 -0.0774261 -3.49669e-17)
(0.969803 -0.0900202 -3.0683e-17)
(0.99237 -0.0955118 1.96569e-16)
(1.01433 -0.0940689 1.27962e-16)
(1.03337 -0.0872568 -1.38546e-16)
(1.04832 -0.0767265 6.2104e-18)
(1.05854 -0.0640637 2.2848e-17)
(1.06428 -0.0510577 1.17047e-17)
(1.06645 -0.0394117 3.57176e-17)
(1.06627 -0.0288939 -5.60388e-18)
(1.07107 -0.01922 9.54614e-18)
(0.934665 -0.00541794 1.93667e-17)
(0.930189 -0.0226801 1.44531e-17)
(0.929827 -0.0418583 -2.35373e-17)
(0.935694 -0.0617756 -2.38488e-17)
(0.949464 -0.0798874 1.34266e-16)
(0.969787 -0.0926181 -1.01759e-17)
(0.993071 -0.0979073 -2.54198e-16)
(1.01553 -0.0960814 -7.46582e-17)
(1.03483 -0.0888473 -2.6733e-18)
(1.0499 -0.0779061 -7.14192e-17)
(1.0601 -0.0648687 -3.82807e-17)
(1.06572 -0.0515581 3.41718e-17)
(1.06772 -0.0397145 -1.72246e-17)
(1.06738 -0.0290788 4.89579e-17)
(1.07217 -0.0192446 -1.03262e-17)
(0.933187 -0.00559384 -6.18491e-18)
(0.928479 -0.0232877 -1.24661e-17)
(0.928043 -0.0431653 -4.48408e-17)
(0.934211 -0.063821 1.94585e-17)
(0.948661 -0.0824441 -7.955e-17)
(0.969823 -0.0952934 1.66704e-17)
(0.993838 -0.100351 1.82664e-16)
(1.01678 -0.0981179 1.32283e-16)
(1.03636 -0.0904457 1.7442e-17)
(1.05153 -0.0790821 3.16003e-17)
(1.06171 -0.0656616 -4.89282e-18)
(1.06719 -0.0520424 -5.92711e-17)
(1.06901 -0.0400019 4.02215e-17)
(1.06851 -0.0292519 -1.68333e-17)
(1.0733 -0.0192487 1.26133e-17)
(0.931666 -0.00577761 4.65306e-18)
(0.926714 -0.023919 1.15918e-17)
(0.926206 -0.0445327 5.52462e-17)
(0.932703 -0.0659587 3.28256e-17)
(0.947876 -0.0850997 -3.40785e-17)
(0.969913 -0.098047 -1.23107e-18)
(0.994674 -0.102843 7.27412e-17)
(1.0181 -0.100176 -3.01463e-16)
(1.03793 -0.0920501 5.41302e-19)
(1.05321 -0.0802526 1.47904e-17)
(1.06335 -0.0664404 1.56831e-17)
(1.06868 -0.0525097 1.57497e-17)
(1.07031 -0.0402738 -1.58463e-17)
(1.06965 -0.0294145 -2.38147e-17)
(1.07444 -0.0192442 -6.60886e-18)
(0.930099 -0.00596953 -9.21802e-19)
(0.924891 -0.0245758 1.53092e-17)
(0.924315 -0.0459641 -5.38844e-17)
(0.931172 -0.0681935 1.18265e-17)
(0.947115 -0.0878572 -5.4794e-18)
(0.970062 -0.100879 -2.28781e-17)
(0.995582 -0.105382 -2.30796e-16)
(1.01949 -0.102256 2.0688e-16)
(1.03957 -0.0936594 2.42624e-17)
(1.05493 -0.0814165 6.35005e-18)
(1.06503 -0.0672043 5.44666e-17)
(1.0702 -0.052959 4.18174e-18)
(1.07164 -0.0405295 3.66303e-17)
(1.07081 -0.029566 4.03792e-17)
(1.0756 -0.0192193 2.12551e-17)
(0.928485 -0.00617014 -9.60336e-18)
(0.923008 -0.02526 -2.95437e-17)
(0.922367 -0.047464 6.18679e-17)
(0.92962 -0.0705303 -1.52041e-16)
(0.946381 -0.0907199 2.35219e-17)
(0.970277 -0.103791 8.05485e-17)
(0.996566 -0.107965 1.50725e-16)
(1.02094 -0.104353 6.02594e-17)
(1.04126 -0.095271 5.75142e-17)
(1.0567 -0.0825714 -2.33954e-17)
(1.06674 -0.0679512 -9.01335e-17)
(1.07176 -0.0533899 4.10586e-17)
(1.07298 -0.0407696 -3.0647e-17)
(1.07199 -0.029709 -7.14128e-17)
(1.07678 -0.0191881 -1.11732e-17)
(0.926821 -0.00637969 1.52865e-17)
(0.921062 -0.0259736 6.50412e-19)
(0.920363 -0.0490363 4.79423e-18)
(0.928048 -0.0729739 7.70454e-17)
(0.945679 -0.0936908 1.35931e-17)
(0.97056 -0.106782 -5.25368e-17)
(0.997629 -0.110591 -4.28901e-17)
(1.02247 -0.106467 -1.98099e-16)
(1.04301 -0.0968836 -5.91053e-17)
(1.05853 -0.0837161 -1.66244e-17)
(1.0685 -0.0686791 6.68325e-17)
(1.07333 -0.0538004 -1.0289e-16)
(1.07434 -0.0409914 -1.73415e-17)
(1.07318 -0.0298405 4.03464e-17)
(1.07798 -0.0191377 -4.01259e-18)
(0.925105 -0.00659881 -2.11566e-17)
(0.91905 -0.0267189 1.01167e-16)
(0.918301 -0.0506862 2.47112e-17)
(0.926459 -0.07553 -3.88103e-18)
(0.945015 -0.096773 4.86262e-17)
(0.970919 -0.109852 3.91047e-17)
(0.998775 -0.113258 -1.0516e-17)
(1.02407 -0.108595 1.39279e-16)
(1.04482 -0.0984949 -4.27291e-17)
(1.0604 -0.0848484 -1.21062e-17)
(1.0703 -0.0693865 2.76211e-17)
(1.07494 -0.0541904 2.94014e-17)
(1.07572 -0.0411962 5.09339e-17)
(1.07439 -0.029963 -2.91598e-17)
(1.07919 -0.0190831 2.36815e-17)
(0.923334 -0.00682781 2.33242e-17)
(0.91697 -0.0274983 -6.77167e-17)
(0.91618 -0.0524185 -6.46615e-17)
(0.924857 -0.0782037 3.88911e-17)
(0.944393 -0.0999694 3.20603e-18)
(0.971358 -0.113 -9.71411e-17)
(1.00001 -0.115964 -1.61288e-17)
(1.02575 -0.110735 -2.0665e-16)
(1.0467 -0.100103 1.95964e-17)
(1.06233 -0.0859667 5.06686e-17)
(1.07214 -0.0700715 -4.05272e-17)
(1.07657 -0.0545581 4.63104e-18)
(1.07712 -0.0413825 -7.3353e-17)
(1.07561 -0.0300751 2.62161e-17)
(1.08043 -0.019012 -2.34131e-17)
(0.921507 -0.00706743 1.30793e-18)
(0.914819 -0.0283147 -4.17003e-17)
(0.914 -0.0542389 3.29352e-17)
(0.923243 -0.081001 -9.30974e-17)
(0.943821 -0.103283 -7.07165e-17)
(0.971883 -0.116226 2.80832e-17)
(1.00133 -0.118706 9.13359e-18)
(1.0275 -0.112883 1.93765e-16)
(1.04863 -0.101705 -7.12832e-18)
(1.06431 -0.0870684 1.76387e-17)
(1.07402 -0.0707326 3.92556e-18)
(1.07823 -0.0549035 -3.31717e-18)
(1.07853 -0.0415527 3.70692e-17)
(1.07685 -0.030181 -1.47672e-17)
(1.08168 -0.018941 1.93948e-17)
(0.91962 -0.00731795 3.89901e-18)
(0.912595 -0.0291706 8.96901e-17)
(0.911759 -0.0561529 -8.90467e-18)
(0.921622 -0.0839273 2.40983e-17)
(0.943303 -0.106715 -3.21853e-17)
(0.972501 -0.119529 1.20081e-16)
(1.00275 -0.121481 3.05288e-17)
(1.02933 -0.115038 5.27719e-17)
(1.05063 -0.1033 2.07182e-17)
(1.06634 -0.0881513 -7.28601e-17)
(1.07594 -0.0713671 -1.2655e-17)
(1.07991 -0.0552232 3.22513e-17)
(1.07996 -0.0417039 9.36863e-18)
(1.0781 -0.0302769 1.72459e-17)
(1.08296 -0.018854 3.64312e-18)
(0.917671 -0.00758019 -2.7788e-18)
(0.910293 -0.0300697 -3.221e-17)
(0.909458 -0.0581671 8.77003e-18)
(0.919998 -0.0869889 3.00596e-17)
(0.942848 -0.110269 1.12335e-16)
(0.973216 -0.122906 -4.65019e-17)
(1.00426 -0.124285 1.84711e-17)
(1.03123 -0.117195 -2.65961e-17)
(1.0527 -0.104883 -3.04237e-17)
(1.06842 -0.0892129 7.80525e-17)
(1.0779 -0.0719737 2.50218e-17)
(1.08163 -0.0555178 5.35066e-17)
(1.08141 -0.0418383 1.00008e-17)
(1.07937 -0.0303669 -2.20756e-17)
(1.08426 -0.0187675 -2.40185e-17)
(0.915656 -0.0078545 -1.86606e-17)
(0.90791 -0.0310153 -8.4701e-19)
(0.907095 -0.060288 1.03026e-17)
(0.918375 -0.0901918 3.60596e-17)
(0.942462 -0.113948 -7.41338e-17)
(0.974035 -0.126357 -2.2238e-17)
(1.00587 -0.127116 -3.42361e-17)
(1.03322 -0.119353 -2.50336e-17)
(1.05483 -0.106453 -3.56325e-17)
(1.07057 -0.0902509 -8.85589e-17)
(1.0799 -0.0725499 -7.96738e-17)
(1.08336 -0.0557845 -1.14607e-16)
(1.08287 -0.0419546 -2.07289e-17)
(1.08066 -0.0304491 7.65561e-18)
(1.08558 -0.018668 -8.79452e-18)
(0.913573 -0.00814176 2.62852e-17)
(0.905445 -0.0320117 7.93383e-18)
(0.904672 -0.0625229 -3.20428e-17)
(0.916759 -0.0935425 -4.47014e-17)
(0.942154 -0.117751 -2.02837e-17)
(0.974966 -0.129877 6.76508e-17)
(1.00759 -0.129967 -4.33214e-17)
(1.03529 -0.121506 2.67186e-18)
(1.05702 -0.108007 3.76801e-17)
(1.07276 -0.0912621 2.77328e-17)
(1.08195 -0.0730941 1.00064e-16)
(1.08512 -0.0560248 4.08547e-17)
(1.08435 -0.042056 -9.47554e-18)
(1.08196 -0.0305295 -7.3862e-18)
(1.08692 -0.0185747 7.73093e-18)
(0.911419 -0.00844226 -3.12274e-17)
(0.902892 -0.0330627 -8.94039e-18)
(0.902188 -0.0648792 4.82912e-17)
(0.915154 -0.0970468 5.79387e-17)
(0.94193 -0.121681 2.79036e-17)
(0.976013 -0.133463 -2.5365e-18)
(1.00941 -0.132837 3.39297e-17)
(1.03745 -0.123652 -5.52553e-18)
(1.05929 -0.109542 3.72675e-17)
(1.07502 -0.0922438 -2.21992e-17)
(1.08403 -0.0736026 1.82587e-17)
(1.08691 -0.0562348 2.53136e-17)
(1.08583 -0.0421388 4.42983e-17)
(1.08327 -0.0306035 -2.17936e-17)
(1.08829 -0.0184731 1.40545e-18)
(0.909189 -0.00875698 6.62844e-18)
(0.900249 -0.0341737 -1.03564e-17)
(0.899643 -0.0673652 5.91424e-17)
(0.913567 -0.100712 -1.0718e-16)
(0.941801 -0.125739 -9.1245e-17)
(0.977184 -0.137113 -6.3606e-17)
(1.01135 -0.135718 -2.55736e-17)
(1.03968 -0.125787 2.5974e-18)
(1.06162 -0.111053 -1.45741e-17)
(1.07732 -0.093193 7.96994e-17)
(1.08615 -0.0740743 4.60605e-18)
(1.08871 -0.0564161 7.81127e-18)
(1.08733 -0.0422066 -4.68788e-17)
(1.0846 -0.0306766 2.10141e-17)
(1.08968 -0.0183821 2.72584e-18)
(0.906882 -0.00908635 -4.36535e-18)
(0.897512 -0.0353497 4.12917e-17)
(0.897039 -0.0699893 -6.73448e-17)
(0.912006 -0.104544 -3.10328e-17)
(0.941775 -0.129925 1.28278e-16)
(0.978486 -0.140822 -1.71553e-18)
(1.01339 -0.138607 -1.77369e-17)
(1.04201 -0.127907 -2.042e-17)
(1.06402 -0.112539 -3.66611e-17)
(1.07969 -0.0941065 -7.48583e-17)
(1.08832 -0.0745059 -7.45144e-17)
(1.09054 -0.0565657 -5.62115e-17)
(1.08884 -0.0422579 -1.44477e-17)
(1.08594 -0.0307466 -5.19744e-18)
(1.0911 -0.0182843 6.41122e-18)
(0.904492 -0.00943149 7.70647e-19)
(0.894676 -0.0365967 -2.22876e-17)
(0.894376 -0.0727607 -1.87546e-17)
(0.910477 -0.108549 1.30721e-16)
(0.941863 -0.134239 -2.18977e-17)
(0.979925 -0.144584 -6.13685e-17)
(1.01555 -0.141498 9.49819e-17)
(1.04442 -0.130007 1.24853e-18)
(1.06649 -0.113995 3.16756e-17)
(1.08212 -0.0949815 -3.98549e-17)
(1.09052 -0.0748966 -9.57791e-19)
(1.09239 -0.0566858 4.72449e-17)
(1.09036 -0.042298 9.39117e-18)
(1.0873 -0.030821 1.58359e-17)
(1.09253 -0.0181987 -1.26981e-17)
(0.902017 -0.00979285 2.85931e-17)
(0.891739 -0.0379207 1.15658e-17)
(0.891657 -0.075689 -4.92642e-17)
(0.908989 -0.112734 -4.52728e-17)
(0.942073 -0.13868 -3.35128e-17)
(0.981508 -0.148394 2.12474e-17)
(1.01783 -0.144384 -1.00234e-16)
(1.04691 -0.132083 2.52189e-17)
(1.06903 -0.115417 -3.13891e-17)
(1.0846 -0.0958136 8.64395e-17)
(1.09276 -0.0752425 -1.76185e-17)
(1.09425 -0.0567723 -6.65216e-18)
(1.09189 -0.0423236 -3.43058e-17)
(1.08867 -0.0308958 -6.49432e-18)
(1.09401 -0.0181093 1.38837e-17)
(0.899451 -0.0101717 -1.40187e-19)
(0.888696 -0.0393291 9.91517e-18)
(0.888883 -0.0787845 1.46342e-17)
(0.907551 -0.117105 6.40269e-18)
(0.942417 -0.143246 5.38695e-17)
(0.98324 -0.152247 1.28191e-17)
(1.02023 -0.14726 4.32954e-17)
(1.04949 -0.13413 2.05458e-17)
(1.07164 -0.116802 1.80491e-17)
(1.08714 -0.0966001 2.35021e-17)
(1.09504 -0.0755431 7.86564e-18)
(1.09613 -0.0568278 -4.2652e-18)
(1.09343 -0.0423399 4.95995e-17)
(1.09005 -0.0309775 -5.41632e-18)
(1.0955 -0.0180346 -3.82682e-18)
(0.896791 -0.0105688 -5.75443e-17)
(0.885543 -0.0408291 -5.71665e-17)
(0.886058 -0.082058 3.51398e-17)
(0.906172 -0.121668 2.10409e-17)
(0.942906 -0.147936 -2.71231e-17)
(0.985129 -0.156134 -5.58208e-17)
(1.02275 -0.150119 5.58392e-17)
(1.05216 -0.136145 4.71507e-17)
(1.07432 -0.118145 3.43663e-19)
(1.08974 -0.097337 -8.41017e-17)
(1.09735 -0.0757952 6.10404e-18)
(1.09803 -0.0568499 -1.43908e-17)
(1.09497 -0.0423457 -1.03193e-17)
(1.09145 -0.0310639 1.21752e-17)
(1.09703 -0.0179599 -5.92511e-18)
(0.894031 -0.0109856 7.10216e-18)
(0.882276 -0.0424293 3.49861e-17)
(0.883184 -0.085521 -2.21504e-17)
(0.904864 -0.12643 -3.31151e-17)
(0.943551 -0.152746 3.93923e-17)
(0.98718 -0.160048 1.79206e-17)
(1.02539 -0.152954 -2.524e-17)
(1.05491 -0.138122 -1.02791e-16)
(1.07708 -0.119443 -6.57548e-18)
(1.0924 -0.0980214 8.07334e-17)
(1.0997 -0.0759991 -3.398e-17)
(1.09994 -0.0568424 -1.28885e-17)
(1.09651 -0.0423472 7.10512e-17)
(1.09287 -0.0311624 5.07657e-18)
(1.09858 -0.0179061 -4.56899e-18)
(0.891168 -0.0114227 4.49455e-17)
(0.878892 -0.0441385 -6.25665e-19)
(0.880265 -0.0891852 7.86098e-18)
(0.903639 -0.131395 -1.31473e-17)
(0.944364 -0.157672 -1.12749e-16)
(0.989399 -0.163981 -1.12286e-17)
(1.02815 -0.155758 -8.68495e-17)
(1.05775 -0.140057 6.20984e-17)
(1.0799 -0.12069 -5.75052e-18)
(1.09511 -0.0986488 -3.42408e-17)
(1.10209 -0.0761512 4.50838e-17)
(1.10185 -0.0568024 5.44233e-17)
(1.09805 -0.042343 -1.59651e-17)
(1.09429 -0.0312694 1.2325e-17)
(1.10017 -0.0178613 1.0938e-17)
(0.888196 -0.0118821 -2.50656e-17)
(0.875386 -0.0459669 7.42052e-19)
(0.877306 -0.0930634 3.75094e-17)
(0.902508 -0.136569 2.51917e-18)
(0.945357 -0.16271 5.71861e-17)
(0.991792 -0.167925 8.19077e-17)
(1.03103 -0.158525 6.74736e-18)
(1.06068 -0.141944 -5.73729e-17)
(1.0828 -0.121883 -2.58019e-18)
(1.09789 -0.0992166 4.20472e-17)
(1.1045 -0.0762523 -4.51856e-17)
(1.10378 -0.0567342 -2.12413e-17)
(1.0996 -0.0423387 -3.31161e-17)
(1.09573 -0.0313906 1.91559e-18)
(1.10179 -0.0178419 -1.29089e-17)
(0.88511 -0.0123647 -5.93362e-18)
(0.871753 -0.0479252 1.58799e-17)
(0.874313 -0.0971683 -2.15328e-17)
(0.901486 -0.141956 1.31949e-17)
(0.946542 -0.167853 8.72254e-17)
(0.994362 -0.171869 -1.39717e-16)
(1.03404 -0.161248 1.50365e-17)
(1.06369 -0.143778 1.26509e-17)
(1.08577 -0.123018 1.9387e-17)
(1.10072 -0.0997209 -8.54645e-17)
(1.10694 -0.0763002 4.72625e-17)
(1.10571 -0.0566374 -1.32243e-17)
(1.10115 -0.0423343 -2.91372e-17)
(1.09719 -0.0315249 -3.11991e-17)
(1.10346 -0.0178292 9.99593e-18)
(0.881903 -0.0128728 -2.42396e-17)
(0.867991 -0.0500255 -2.32442e-17)
(0.871292 -0.101514 -5.93334e-17)
(0.900586 -0.147561 7.6341e-18)
(0.947931 -0.173094 -2.15558e-17)
(0.997115 -0.175804 2.66994e-17)
(1.03716 -0.163919 5.28802e-17)
(1.06679 -0.145556 -3.81699e-17)
(1.08882 -0.12409 2.52312e-17)
(1.1036 -0.10016 2.73021e-17)
(1.10941 -0.0762972 8.56749e-18)
(1.10764 -0.0565179 -5.8306e-18)
(1.10269 -0.0423365 3.96614e-17)
(1.09866 -0.0316787 -1.12439e-17)
(1.10515 -0.0178372 -1.02315e-17)
(0.878571 -0.0134079 5.58262e-18)
(0.864095 -0.0522805 -2.41255e-17)
(0.868251 -0.106114 2.40117e-17)
(0.899825 -0.153387 -6.23956e-17)
(0.949536 -0.178426 -3.96612e-17)
(1.00005 -0.17972 3.63456e-17)
(1.04041 -0.166533 3.64859e-17)
(1.06997 -0.147273 6.87143e-17)
(1.09194 -0.125094 -5.47274e-17)
(1.10654 -0.10053 -3.52273e-17)
(1.1119 -0.0762414 -2.89844e-17)
(1.10957 -0.0563755 8.08767e-18)
(1.10423 -0.0423453 -1.18491e-17)
(1.10015 -0.0318506 4.28185e-18)
(1.1069 -0.0178533 4.25555e-18)
(0.875107 -0.0139727 5.64826e-17)
(0.860061 -0.0547046 2.90469e-17)
(0.865199 -0.110982 -5.8521e-17)
(0.899218 -0.159435 5.11995e-18)
(0.95137 -0.183839 -9.87742e-17)
(1.00318 -0.183606 6.43669e-17)
(1.04378 -0.169082 -2.0253e-17)
(1.07324 -0.148922 1.04551e-17)
(1.09512 -0.126026 -1.69105e-17)
(1.10953 -0.10083 6.78421e-17)
(1.11441 -0.0761363 3.80653e-17)
(1.1115 -0.0562167 3.84282e-17)
(1.10577 -0.042367 -3.75892e-18)
(1.10165 -0.0320444 -5.38118e-18)
(1.10868 -0.0178893 5.56132e-18)
(0.871503 -0.0145695 -3.70185e-17)
(0.855886 -0.0573127 -1.29979e-17)
(0.862145 -0.116134 1.12826e-16)
(0.898784 -0.165708 1.12528e-16)
(0.953444 -0.189322 3.67887e-17)
(1.00649 -0.187452 6.66832e-18)
(1.04726 -0.171561 5.05256e-17)
(1.07658 -0.150502 4.12508e-17)
(1.09839 -0.126883 3.6838e-17)
(1.11257 -0.101056 -2.48564e-17)
(1.11693 -0.0759824 -1.12638e-17)
(1.11342 -0.0560443 -3.9526e-17)
(1.1073 -0.0424031 1.64931e-17)
(1.10318 -0.0322588 -1.1254e-17)
(1.11052 -0.0179316 -9.23231e-18)
(0.867752 -0.0152018 2.65446e-17)
(0.851566 -0.0601218 3.32074e-17)
(0.859101 -0.121584 -4.2148e-17)
(0.89854 -0.172204 1.42986e-17)
(0.955768 -0.194865 8.18601e-17)
(1.01 -0.191248 5.27241e-17)
(1.05085 -0.173965 -4.39029e-17)
(1.08001 -0.152006 3.92358e-17)
(1.10172 -0.127661 6.22769e-17)
(1.11566 -0.101211 4.14062e-17)
(1.11947 -0.0757854 -1.86105e-17)
(1.11533 -0.0558661 3.56099e-17)
(1.10883 -0.0424602 -1.17588e-17)
(1.10473 -0.0324968 3.86203e-17)
(1.11239 -0.0179901 3.87884e-18)
(0.863846 -0.0158728 -1.98712e-17)
(0.8471 -0.0631493 2.02576e-17)
(0.85608 -0.127348 5.54909e-17)
(0.898505 -0.178923 -2.19184e-16)
(0.958355 -0.200454 3.7619e-19)
(1.01369 -0.194982 -1.26286e-16)
(1.05455 -0.176286 -6.01438e-17)
(1.08352 -0.153432 3.53921e-18)
(1.10512 -0.128355 -5.50702e-17)
(1.11878 -0.101293 -4.36839e-17)
(1.12201 -0.0755474 -2.84333e-17)
(1.11722 -0.0556863 -3.73698e-17)
(1.11035 -0.0425404 7.79783e-18)
(1.1063 -0.0327578 1.38092e-18)
(1.11433 -0.018054 1.37757e-17)
(0.859777 -0.0165872 4.47491e-17)
(0.842486 -0.0664147 -3.58707e-17)
(0.853096 -0.133439 -9.73125e-17)
(0.8987 -0.185861 1.69253e-16)
(0.961212 -0.206076 4.40001e-17)
(1.01757 -0.198644 -7.74472e-18)
(1.05835 -0.178523 9.10811e-18)
(1.0871 -0.154774 -2.9118e-17)
(1.10859 -0.128965 2.41101e-17)
(1.12195 -0.101304 -1.6105e-17)
(1.12455 -0.0752762 3.91833e-17)
(1.1191 -0.0555133 -1.56317e-19)
(1.11186 -0.0426496 -1.80848e-18)
(1.10789 -0.0330422 -2.48926e-17)
(1.11632 -0.018127 -9.75273e-18)
(0.855534 -0.0173497 -2.57926e-17)
(0.837722 -0.0699385 -1.67396e-17)
(0.850167 -0.139873 4.35835e-17)
(0.899145 -0.193013 4.99804e-17)
(0.96435 -0.211716 -1.5594e-16)
(1.02163 -0.202226 9.66118e-17)
(1.06225 -0.180669 -2.65871e-17)
(1.09076 -0.156031 -4.81389e-17)
(1.11212 -0.129486 6.34587e-18)
(1.12515 -0.101246 3.13153e-17)
(1.12709 -0.0749778 -1.57506e-17)
(1.12095 -0.0553542 1.27381e-17)
(1.11337 -0.0427903 7.39661e-18)
(1.10951 -0.0333478 9.82967e-18)
(1.11837 -0.0181954 -1.36151e-18)
(0.851108 -0.0181666 -5.06806e-17)
(0.832807 -0.0737429 -4.34666e-17)
(0.84731 -0.146664 4.47268e-18)
(0.899861 -0.200372 -1.33463e-16)
(0.967774 -0.217358 1.48016e-16)
(1.02587 -0.205719 -1.25148e-16)
(1.06625 -0.182723 9.36502e-17)
(1.0945 -0.157199 -2.36719e-17)
(1.11572 -0.129921 -8.2613e-19)
(1.12837 -0.101126 3.39857e-18)
(1.12961 -0.0746636 3.26162e-17)
(1.12278 -0.0552192 -8.91089e-18)
(1.11488 -0.0429681 -6.46711e-18)
(1.11117 -0.0336734 -3.70743e-18)
(1.12048 -0.01826 -1.63533e-18)
(0.846487 -0.0190444 7.02673e-17)
(0.827745 -0.0778515 1.16475e-16)
(0.844546 -0.153824 -4.26636e-17)
(0.90087 -0.207929 1.46413e-18)
(0.971491 -0.222984 -1.93977e-16)
(1.03028 -0.209113 8.37208e-17)
(1.07033 -0.184682 -5.41668e-19)
(1.0983 -0.158275 4.65597e-17)
(1.11937 -0.130268 -6.12225e-18)
(1.13161 -0.10095 -6.6769e-17)
(1.13212 -0.074343 -1.65181e-18)
(1.12459 -0.0551171 -1.20186e-17)
(1.11638 -0.0431861 1.88521e-18)
(1.11286 -0.034017 -8.12543e-18)
(1.12266 -0.0183105 1.1178e-17)
(0.841659 -0.0199917 -3.1799e-17)
(0.822536 -0.0822892 -1.03396e-16)
(0.841899 -0.161366 9.62333e-17)
(0.902195 -0.215671 1.26894e-16)
(0.975504 -0.228578 2.13752e-16)
(1.03485 -0.212402 2.61138e-17)
(1.07449 -0.186543 3.06986e-17)
(1.10217 -0.159258 -1.38235e-18)
(1.12307 -0.130531 -5.71254e-17)
(1.13487 -0.100729 9.00749e-17)
(1.1346 -0.0740316 1.52799e-17)
(1.12637 -0.0550593 -4.60323e-18)
(1.11788 -0.0434484 -2.93788e-17)
(1.1146 -0.0343735 2.20523e-17)
(1.12492 -0.0183415 -1.09032e-17)
(0.836611 -0.0210179 -1.76596e-17)
(0.817185 -0.0870824 6.94374e-17)
(0.839393 -0.169299 -1.29478e-16)
(0.903858 -0.223583 -2.84718e-17)
(0.979816 -0.234119 -4.71374e-17)
(1.03958 -0.215577 -7.73813e-17)
(1.07873 -0.188303 -8.03645e-17)
(1.10611 -0.160145 -4.72483e-17)
(1.12682 -0.130715 6.25636e-17)
(1.13812 -0.100476 -4.21177e-17)
(1.13705 -0.0737449 -5.43129e-17)
(1.12811 -0.0550578 1.19072e-17)
(1.11938 -0.0437573 -2.37833e-17)
(1.11638 -0.0347365 1.11406e-17)
(1.12725 -0.018338 3.08588e-18)
(0.831327 -0.0221343 4.19093e-17)
(0.811698 -0.092259 -2.76488e-17)
(0.837058 -0.177633 1.01305e-16)
(0.90588 -0.231646 -1.06743e-16)
(0.984427 -0.239588 -8.62044e-17)
(1.04445 -0.218634 3.03415e-17)
(1.08304 -0.18996 -6.91511e-18)
(1.11011 -0.160937 3.66702e-17)
(1.13061 -0.130828 2.40346e-18)
(1.14137 -0.100211 -5.17875e-19)
(1.13946 -0.0735051 4.96212e-17)
(1.12983 -0.0551263 8.50812e-18)
(1.12089 -0.0441161 2.91109e-17)
(1.11821 -0.0350983 -2.57371e-17)
(1.12966 -0.0182898 -2.64497e-18)
(0.825792 -0.0233541 -4.29333e-17)
(0.806085 -0.097848 4.59169e-17)
(0.834924 -0.186372 1.72055e-17)
(0.908286 -0.239837 -2.01062e-17)
(0.989334 -0.244963 -4.572e-17)
(1.04945 -0.221563 3.50505e-17)
(1.08742 -0.19151 2.51535e-17)
(1.11417 -0.161633 -1.37282e-17)
(1.13442 -0.130883 -8.31666e-17)
(1.14459 -0.099956 1.23207e-17)
(1.14182 -0.0733342 -6.01438e-17)
(1.13151 -0.0552796 2.41593e-17)
(1.12241 -0.0445263 -1.33678e-17)
(1.12011 -0.0354523 1.36779e-17)
(1.13216 -0.0181834 4.1981e-18)
(0.819988 -0.0246928 3.33021e-17)
(0.800357 -0.103879 -2.59749e-17)
(0.833025 -0.19552 1.30628e-16)
(0.911095 -0.248128 7.42824e-17)
(0.994533 -0.250222 1.81217e-16)
(1.05457 -0.224359 -1.01829e-16)
(1.09185 -0.192948 -3.04909e-17)
(1.11828 -0.162235 3.61399e-17)
(1.13825 -0.130898 7.76145e-18)
(1.14777 -0.0997425 -6.94271e-17)
(1.14413 -0.0732623 1.22808e-17)
(1.13315 -0.0555335 -3.54523e-17)
(1.12394 -0.0449899 4.92796e-17)
(1.12206 -0.0357875 -1.43227e-17)
(1.13475 -0.0180039 3.13614e-18)
(0.813896 -0.026168 3.31351e-17)
(0.79453 -0.110384 1.76035e-17)
(0.8314 -0.205075 -2.67541e-16)
(0.914331 -0.256488 6.92349e-17)
(1.00002 -0.25534 -3.32395e-17)
(1.0598 -0.227009 7.67233e-18)
(1.09634 -0.194263 2.08139e-18)
(1.12243 -0.16274 -5.97979e-17)
(1.14207 -0.130894 2.17258e-17)
(1.15091 -0.0996059 9.52853e-17)
(1.14637 -0.073322 2.69548e-18)
(1.13477 -0.0559066 1.71052e-17)
(1.12549 -0.0455077 -4.07043e-17)
(1.12409 -0.0360921 2.93243e-17)
(1.13744 -0.0177331 -4.92912e-18)
(0.807495 -0.0278009 -2.81161e-17)
(0.788622 -0.117393 -5.69979e-17)
(0.83009 -0.215031 1.89525e-16)
(0.918013 -0.26488 -1.25928e-16)
(1.00578 -0.260292 -9.20996e-17)
(1.06513 -0.2295 2.76756e-17)
(1.10089 -0.195442 5.69007e-17)
(1.12662 -0.163153 -1.26302e-18)
(1.14588 -0.130902 2.92429e-18)
(1.15398 -0.0995931 -7.98556e-17)
(1.14854 -0.0735538 1.94916e-17)
(1.13636 -0.0564189 -2.26809e-17)
(1.12707 -0.0460812 4.71485e-17)
(1.1262 -0.0363532 -2.39096e-17)
(1.14021 -0.017353 9.74962e-19)
(0.80076 -0.0296152 -4.95594e-17)
(0.782656 -0.124939 2.83105e-17)
(0.82914 -0.225377 -1.46404e-16)
(0.922163 -0.27326 5.82579e-17)
(1.01181 -0.26505 5.94975e-17)
(1.07055 -0.231813 1.99939e-18)
(1.10548 -0.19646 -3.84714e-17)
(1.13084 -0.163471 6.06534e-17)
(1.14965 -0.130957 -3.46845e-18)
(1.15696 -0.0997575 3.30091e-17)
(1.15064 -0.0740018 -1.89557e-17)
(1.13792 -0.0570932 3.56883e-17)
(1.12868 -0.0467106 -8.8975e-19)
(1.12839 -0.0365593 1.17132e-17)
(1.1431 -0.0168507 -1.11054e-18)
(0.793668 -0.0316387 2.39121e-17)
(0.776661 -0.133052 -3.87613e-18)
(0.828598 -0.236093 -1.78726e-17)
(0.926797 -0.281579 -1.78906e-17)
(1.01809 -0.269582 -6.81303e-17)
(1.07604 -0.233918 5.86607e-17)
(1.11013 -0.197286 3.98671e-17)
(1.13506 -0.163696 -1.24237e-17)
(1.15336 -0.131105 -3.00438e-17)
(1.15984 -0.100163 5.80052e-17)
(1.15265 -0.0747173 1.45072e-17)
(1.13945 -0.0579529 -1.38019e-17)
(1.13034 -0.0473968 -3.76574e-17)
(1.13068 -0.0366961 -1.74647e-18)
(1.14608 -0.0162077 -3.57635e-18)
(0.78619 -0.0339031 3.05451e-17)
(0.770671 -0.141764 3.36853e-17)
(0.828519 -0.247154 -8.57442e-17)
(0.931933 -0.289785 2.70939e-17)
(1.02461 -0.273855 2.89269e-17)
(1.08162 -0.235775 -4.33775e-17)
(1.11483 -0.197872 -6.44644e-17)
(1.13929 -0.16382 -2.81651e-17)
(1.15698 -0.131394 1.3612e-17)
(1.1626 -0.100881 -4.2385e-17)
(1.15458 -0.075756 -1.27455e-17)
(1.14097 -0.0590244 -4.09394e-17)
(1.13205 -0.0481395 -4.95228e-18)
(1.13306 -0.0367499 -8.72405e-18)
(1.14917 -0.0154096 9.62493e-18)
(0.778296 -0.0364447 -5.48044e-17)
(0.764725 -0.151103 -7.03081e-17)
(0.828958 -0.258525 2.41383e-16)
(0.937586 -0.297815 -7.33447e-17)
(1.03135 -0.277832 5.0131e-17)
(1.08727 -0.23733 -1.57622e-17)
(1.11959 -0.198155 1.03415e-17)
(1.14349 -0.163837 -2.03012e-17)
(1.16048 -0.13188 4.13293e-17)
(1.16521 -0.101988 -1.85401e-17)
(1.15642 -0.077177 1.61411e-17)
(1.14249 -0.0603337 2.81732e-17)
(1.13381 -0.0489415 4.76448e-18)
(1.13554 -0.03671 1.03594e-17)
(1.15235 -0.0144434 1.68263e-18)
(0.769953 -0.0393046 5.02418e-17)
(0.758871 -0.161097 1.94211e-19)
(0.829978 -0.270163 -1.88008e-16)
(0.943767 -0.305607 1.50564e-16)
(1.03831 -0.281471 -8.84041e-17)
(1.09301 -0.23851 3.55296e-18)
(1.12441 -0.198055 3.03607e-17)
(1.14765 -0.163732 -9.84739e-18)
(1.16384 -0.13262 2.07795e-17)
(1.16767 -0.103562 4.96138e-18)
(1.15817 -0.0790357 -3.19626e-17)
(1.144 -0.061905 -1.73395e-17)
(1.13564 -0.0498023 -3.88444e-18)
(1.13812 -0.0365705 -5.39103e-18)
(1.15563 -0.0133128 -8.95334e-18)
(0.761126 -0.0425293 -7.34956e-17)
(0.753161 -0.17177 7.98652e-18)
(0.831642 -0.282009 1.84328e-16)
(0.950485 -0.313093 -9.94292e-17)
(1.04546 -0.28473 3.45886e-17)
(1.09884 -0.239227 -4.51537e-17)
(1.12929 -0.197478 -3.4032e-17)
(1.15173 -0.163487 1.70173e-17)
(1.167 -0.133663 -2.01197e-17)
(1.16996 -0.105665 -7.83847e-18)
(1.15984 -0.0813725 8.00997e-18)
(1.14552 -0.06375 2.19362e-17)
(1.13755 -0.0507204 5.3555e-18)
(1.14081 -0.0363247 -2.9538e-20)
(1.159 -0.0120138 1.82563e-18)
(0.751776 -0.0461715 6.14202e-17)
(0.747658 -0.183143 -6.15826e-18)
(0.834016 -0.293997 -1.04078e-16)
(0.957746 -0.320202 1.94782e-16)
(1.0528 -0.287557 -1.11934e-17)
(1.10478 -0.23937 2.24874e-17)
(1.13422 -0.196324 7.05343e-17)
(1.15569 -0.163088 1.07353e-17)
(1.16995 -0.135048 -1.77217e-17)
(1.17206 -0.108339 -1.21577e-18)
(1.16144 -0.0842042 1.58839e-17)
(1.14707 -0.0658631 -5.98842e-18)
(1.13954 -0.0516809 -1.83268e-18)
(1.1436 -0.0359675 -2.96638e-18)
(1.16246 -0.0105637 -2.38008e-18)
(0.741862 -0.0502896 -8.60437e-18)
(0.74243 -0.195228 1.9213e-17)
(0.837171 -0.306041 1.98968e-16)
(0.965553 -0.326861 -2.75375e-16)
(1.06033 -0.289888 2.31517e-17)
(1.11085 -0.238824 2.64456e-17)
(1.13918 -0.194514 -4.37025e-17)
(1.15949 -0.162523 -6.1482e-18)
(1.17265 -0.13677 6.44566e-17)
(1.17399 -0.11156 4.07002e-17)
(1.16298 -0.0874985 2.78114e-17)
(1.14866 -0.06822 1.59012e-17)
(1.14162 -0.0526829 -3.05163e-18)
(1.1465 -0.0355195 1.38588e-17)
(1.16599 -0.00900603 5.46608e-18)
(0.731341 -0.0549493 7.93454e-18)
(0.737554 -0.208036 -2.37538e-16)
(0.84117 -0.318049 -2.97496e-16)
(0.973914 -0.332984 3.33511e-16)
(1.06805 -0.291619 4.07813e-17)
(1.11705 -0.237484 -2.33571e-17)
(1.14411 -0.192087 -4.68443e-17)
(1.16305 -0.161859 6.35792e-17)
(1.17508 -0.138753 -3.73405e-17)
(1.17577 -0.115132 -1.22613e-17)
(1.16451 -0.091056 4.62656e-18)
(1.15031 -0.0706917 3.19363e-17)
(1.14379 -0.0536826 6.91157e-18)
(1.14949 -0.0350243 -1.3597e-17)
(1.16957 -0.00746201 9.63792e-19)
(0.720166 -0.0602223 -2.25725e-17)
(0.733114 -0.221563 1.71269e-16)
(0.846075 -0.329913 6.0633e-17)
(0.982843 -0.338463 -1.71568e-16)
(1.07604 -0.292547 -1.06027e-16)
(1.1234 -0.235236 6.63208e-17)
(1.14889 -0.189296 2.80929e-17)
(1.16624 -0.16141 -8.35302e-17)
(1.17722 -0.14096 -7.29574e-18)
(1.17744 -0.118657 -2.01495e-18)
(1.16607 -0.0943681 -3.02303e-18)
(1.15206 -0.072868 -3.80715e-17)
(1.14607 -0.0544466 8.00896e-18)
(1.15257 -0.0344038 1.3773e-18)
(1.17321 -0.00597953 -2.34388e-18)
(0.708287 -0.0661879 1.32501e-17)
(0.729197 -0.235803 1.60356e-16)
(0.851929 -0.341522 1.60321e-17)
(0.992377 -0.343135 9.80689e-18)
(1.08441 -0.292309 -1.39065e-17)
(1.12988 -0.231949 -4.05961e-17)
(1.15332 -0.186669 -9.96853e-18)
(1.16889 -0.161854 4.02415e-17)
(1.17904 -0.143609 -1.44423e-17)
(1.17909 -0.121712 -2.7005e-17)
(1.16778 -0.0966521 -3.80725e-17)
(1.15399 -0.073958 -2.57546e-18)
(1.14851 -0.0543626 -1.36419e-17)
(1.15578 -0.0332797 2.19398e-18)
(1.1769 -0.0043927 -2.13005e-18)
(0.695654 -0.0729315 1.87205e-17)
(0.725887 -0.250739 1.97073e-16)
(0.858763 -0.352749 -8.39492e-17)
(1.00261 -0.346694 -5.83766e-17)
(1.09332 -0.290361 8.8158e-17)
(1.13645 -0.227578 -2.99324e-17)
(1.1571 -0.185035 5.33555e-18)
(1.17077 -0.164186 -2.71372e-17)
(1.18049 -0.147237 3.47508e-17)
(1.1808 -0.124082 2.51645e-17)
(1.16974 -0.0971108 1.18231e-17)
(1.15617 -0.072956 2.34408e-17)
(1.15114 -0.052505 3.61699e-18)
(1.15913 -0.030909 -2.48327e-19)
(1.18068 -0.00216249 -1.71811e-19)
(0.682215 -0.0805455 -1.97841e-18)
(0.72325 -0.266356 -1.92066e-16)
(0.8666 -0.363446 -6.76725e-17)
(1.01371 -0.34863 1.23104e-16)
(1.10294 -0.286083 -3.99162e-17)
(1.14288 -0.222362 -2.91879e-18)
(1.15985 -0.185455 -6.23509e-17)
(1.17168 -0.169457 1.60791e-17)
(1.18156 -0.152549 -3.78323e-18)
(1.18264 -0.12589 -4.49139e-18)
(1.17203 -0.0952624 -1.92994e-17)
(1.15866 -0.0690089 -3.72118e-17)
(1.154 -0.0479201 -8.20835e-18)
(1.16263 -0.0264302 -2.36254e-19)
(1.18451 0.00142339 1.61799e-18)
(0.667919 -0.0891246 -1.26899e-17)
(0.721317 -0.282651 -1.73928e-16)
(0.875518 -0.373343 3.74684e-16)
(1.0259 -0.348274 -1.64151e-16)
(1.11324 -0.279139 5.27882e-17)
(1.14874 -0.216923 6.75284e-17)
(1.16122 -0.188719 3.23063e-17)
(1.17161 -0.178117 -9.22235e-18)
(1.18247 -0.159874 -1.02559e-17)
(1.18492 -0.127446 1.11915e-17)
(1.17491 -0.0912177 1.32185e-17)
(1.16163 -0.0619308 2.74489e-17)
(1.15718 -0.0402144 -5.04842e-18)
(1.16636 -0.0193575 2.99104e-18)
(1.18847 0.00684835 2.17337e-18)
(0.652703 -0.0987694 7.7118e-18)
(0.720073 -0.299667 4.19887e-16)
(0.885796 -0.381837 -3.3626e-16)
(1.03942 -0.344782 1.58457e-17)
(1.1238 -0.270086 2.58345e-17)
(1.15336 -0.212352 -1.02325e-17)
(1.16101 -0.19459 1.91217e-18)
(1.17074 -0.188978 3.94004e-17)
(1.18358 -0.168095 3.25462e-17)
(1.1881 -0.12843 1.3755e-17)
(1.1789 -0.085332 -1.78328e-17)
(1.16559 -0.052312 -2.01468e-17)
(1.16117 -0.0299234 1.13831e-20)
(1.17076 -0.0101292 2.4261e-19)
(1.19302 0.0137677 4.53476e-20)
(0.636472 -0.109595 -1.02616e-17)
(0.71953 -0.317408 -5.2973e-16)
(0.898117 -0.387599 2.99659e-16)
(1.05454 -0.337125 7.76308e-17)
(1.13374 -0.26071 -1.12498e-16)
(1.15603 -0.210545 -3.09875e-17)
(1.15928 -0.202089 4.87897e-17)
(1.16943 -0.199133 -5.57288e-17)
(1.18519 -0.174083 -1.9445e-17)
(1.19236 -0.126982 -1.95971e-17)
(1.18427 -0.0773422 -4.04982e-18)
(1.17099 -0.0409491 7.21848e-19)
(1.16657 -0.0182902 4.95734e-18)
(1.17651 -5.7203e-05 6.64611e-18)
(1.19885 0.0209524 -6.69904e-19)
(0.619066 -0.121746 -2.56436e-19)
(0.71994 -0.335525 1.22794e-16)
(0.913174 -0.389093 -1.15149e-16)
(1.07094 -0.3252 2.74576e-17)
(1.14197 -0.253336 9.35901e-17)
(1.15639 -0.213352 3.19848e-17)
(1.15661 -0.210082 -4.85996e-17)
(1.16836 -0.205095 2.06118e-17)
(1.18748 -0.173688 1.32809e-17)
(1.19734 -0.119959 -3.81484e-17)
(1.19042 -0.0658983 1.15362e-17)
(1.17737 -0.0280538 1.16759e-17)
(1.17314 -0.00643493 4.8807e-18)
(1.18352 0.0093528 -1.36251e-18)
(1.20589 0.026862 -2.05056e-18)
(0.60031 -0.135397 -2.21096e-17)
(0.721944 -0.352915 1.94192e-16)
(0.930488 -0.386226 -9.8224e-17)
(1.08624 -0.313036 -7.55009e-17)
(1.14685 -0.250865 1.94874e-17)
(1.15446 -0.220649 -5.41855e-17)
(1.15402 -0.215926 1.21734e-18)
(1.1686 -0.202623 1.11393e-17)
(1.19088 -0.162615 -8.65072e-17)
(1.20253 -0.104172 7.25692e-17)
(1.19612 -0.0493741 4.18925e-18)
(1.18315 -0.0134062 4.12945e-18)
(1.17925 0.00493422 1.42074e-17)
(1.19015 0.0169406 -1.39174e-17)
(1.21246 0.030199 3.26678e-18)
(0.58024 -0.150725 -1.41721e-17)
(0.726393 -0.367797 8.19294e-18)
(0.948819 -0.379946 -1.99819e-16)
(1.09647 -0.309977 -3.06653e-17)
(1.14636 -0.25902 -5.48267e-17)
(1.1503 -0.232104 3.99552e-17)
(1.15242 -0.215612 2.43188e-17)
(1.1712 -0.185963 4.80658e-17)
(1.19596 -0.135589 6.6538e-17)
(1.20768 -0.0759521 -4.39239e-17)
(1.20022 -0.0257287 5.3374e-18)
(1.18651 0.0038186 -6.94901e-18)
(1.18262 0.0159238 -2.13649e-17)
(1.19387 0.022513 2.69912e-18)
(1.21593 0.0307575 -9.93706e-19)
(0.559256 -0.167762 -3.98392e-17)
(0.733873 -0.378554 -2.69067e-16)
(0.967438 -0.370888 2.37882e-16)
(1.1006 -0.32365 1.54195e-16)
(1.14149 -0.284287 -9.18771e-17)
(1.14523 -0.251801 1.89162e-17)
(1.15273 -0.211413 2.29506e-17)
(1.17675 -0.155182 -2.46649e-17)
(1.20303 -0.0909793 1.01358e-17)
(1.21278 -0.0329753 -1.95397e-19)
(1.20233 0.00735581 1.11585e-17)
(1.18654 0.0257318 -7.83834e-18)
(1.18187 0.028512 1.34896e-17)
(1.19297 0.0280328 5.73027e-18)
(1.21445 0.0306925 -1.69616e-18)
(0.538128 -0.186095 1.79525e-16)
(0.743723 -0.385188 3.95743e-16)
(0.983553 -0.364064 -3.08906e-16)
(1.10146 -0.351307 -1.67195e-16)
(1.13721 -0.324717 1.80303e-16)
(1.14237 -0.285601 -7.06902e-17)
(1.15551 -0.219055 3.68665e-17)
(1.18445 -0.130563 -2.61556e-17)
(1.21126 -0.0463023 2.8977e-17)
(1.21764 0.0139476 1.29374e-17)
(1.2028 0.0451473 -1.38041e-17)
(1.18378 0.0516585 6.90177e-18)
(1.17747 0.0444476 1.00335e-17)
(1.18782 0.0367742 3.76885e-18)
(1.20843 0.0344733 1.36954e-18)
(0.517916 -0.205005 -9.35005e-17)
(0.754669 -0.389368 -4.47566e-16)
(0.99481 -0.365968 5.6984e-16)
(1.10273 -0.374289 1.03756e-16)
(1.13593 -0.361292 -7.09754e-17)
(1.14188 -0.327145 -2.27328e-17)
(1.15844 -0.252779 -4.15069e-17)
(1.19058 -0.144587 2.69176e-17)
(1.21744 -0.0405084 -1.73817e-17)
(1.22086 0.0315003 -3.06437e-17)
(1.20199 0.0644534 3.07484e-18)
(1.17973 0.0673762 -3.0561e-18)
(1.17151 0.0558562 -1.6769e-17)
(1.18081 0.0450595 -5.14687e-18)
(1.20042 0.0411559 1.59295e-18)
(0.499736 -0.224444 -5.38917e-18)
(0.765002 -0.394351 4.68796e-16)
(1.00699 -0.366639 -9.06484e-17)
(1.11305 -0.351002 -2.41868e-17)
(1.13911 -0.344846 -3.41671e-17)
(1.1409 -0.334289 8.86326e-17)
(1.15793 -0.284488 3.5564e-17)
(1.19209 -0.190158 -1.72546e-17)
(1.21955 -0.0870224 -9.04448e-17)
(1.22178 -0.00550273 2.59819e-17)
(1.20062 0.0385015 5.28006e-18)
(1.17618 0.0497171 1.78154e-17)
(1.16648 0.0441956 2.15118e-18)
(1.17481 0.0386277 -7.98972e-18)
(1.19345 0.0396273 -6.04317e-19)
(0.484143 -0.245729 -1.827e-16)
(0.772605 -0.402613 -2.18484e-16)
(1.01984 -0.355527 -2.15186e-16)
(1.13439 -0.26755 -1.15319e-16)
(1.14422 -0.249197 -5.16739e-17)
(1.13369 -0.264318 2.45958e-17)
(1.15028 -0.253646 -1.00701e-16)
(1.18836 -0.203036 1.59092e-17)
(1.21879 -0.134866 4.95267e-17)
(1.22227 -0.0685146 -2.45917e-17)
(1.20072 -0.023083 -4.7072e-18)
(1.17528 -0.00261112 7.8616e-19)
(1.1647 0.00344554 -1.42793e-18)
(1.17235 0.00994651 4.26074e-18)
(1.19017 0.0217044 7.68752e-19)
(0.470433 -0.270244 2.73097e-16)
(0.777036 -0.412932 -2.80571e-16)
(1.02524 -0.347313 1.94328e-16)
(1.1351 -0.216944 1.75185e-16)
(1.13083 -0.172006 1.24251e-16)
(1.11535 -0.17705 -6.70167e-17)
(1.13753 -0.182736 6.07837e-17)
(1.17903 -0.175706 -2.81512e-17)
(1.21129 -0.152466 -2.61553e-17)
(1.2194 -0.11593 -4.64548e-18)
(1.2018 -0.082403 -3.31851e-18)
(1.17823 -0.0602532 -5.42082e-18)
(1.1683 -0.0447847 -3.01105e-18)
(1.17602 -0.0254549 3.57805e-18)
(1.19352 -0.00145918 -2.36673e-18)
(0.456848 -0.298272 -2.90205e-16)
(0.777786 -0.426686 3.25448e-16)
(1.01597 -0.361119 5.11593e-17)
(1.10856 -0.251137 -3.34328e-16)
(1.10848 -0.186965 -4.98773e-17)
(1.11119 -0.156123 8.6159e-17)
(1.13869 -0.146607 2.23667e-17)
(1.16454 -0.153483 -4.54797e-17)
(1.17753 -0.159405 7.76823e-18)
(1.18905 -0.146161 1.12521e-17)
(1.1855 -0.12183 1.40186e-17)
(1.17376 -0.0982014 -1.14455e-17)
(1.17066 -0.0745067 9.89837e-18)
(1.18166 -0.0439152 2.40413e-19)
(1.2 -0.00925851 -5.8011e-19)
(0.442983 -0.329921 2.34283e-16)
(0.777579 -0.447091 -1.33421e-16)
(1.0043 -0.395224 -9.05558e-17)
(1.08594 -0.317643 2.26716e-16)
(1.10139 -0.238494 -1.19955e-17)
(1.11161 -0.169686 -4.8546e-17)
(1.11025 -0.130119 -6.5863e-17)
(1.08159 -0.1263 6.13802e-17)
(1.04855 -0.144825 3.04922e-17)
(1.05885 -0.158277 2.65542e-17)
(1.08706 -0.148403 -5.39058e-18)
(1.10868 -0.124316 8.89196e-18)
(1.12768 -0.0920088 -3.6335e-18)
(1.15082 -0.0500372 -8.3508e-18)
(1.17325 -0.00475104 6.72247e-19)
(0.424026 -0.370405 -1.76354e-16)
(0.80181 -0.457153 -2.01136e-16)
(1.01044 -0.405894 1.33659e-16)
(1.05071 -0.335668 -1.1699e-16)
(1.03078 -0.240157 3.57326e-17)
(1.00451 -0.148958 -3.75967e-18)
(0.954529 -0.0900765 1.42545e-16)
(0.864506 -0.0738574 -3.87472e-17)
(0.758811 -0.0930243 -4.58137e-17)
(0.750506 -0.136322 -4.52552e-17)
(0.817578 -0.152786 -5.38462e-18)
(0.89202 -0.139734 5.42305e-18)
(0.950575 -0.108094 1.58276e-18)
(0.998863 -0.0616109 8.63648e-18)
(1.03212 -0.0106047 7.63841e-19)
(0.399798 -0.43413 5.53226e-16)
(0.775925 -0.494113 5.3307e-16)
(0.892282 -0.389913 -1.30721e-16)
(0.816711 -0.274844 1.16298e-16)
(0.720449 -0.16207 -9.53196e-17)
(0.672622 -0.078632 2.35224e-17)
(0.629434 -0.0309181 -7.95305e-17)
(0.536025 -0.0163197 3.95798e-19)
(0.351383 -0.0291729 2.05718e-17)
(0.282085 -0.0941443 2.28835e-17)
(0.368243 -0.132527 -1.18055e-17)
(0.490719 -0.132459 -4.42408e-17)
(0.591681 -0.10543 1.02755e-17)
(0.674861 -0.060016 -7.16902e-18)
(0.729016 -0.0101913 -2.09196e-18)
(0.32711 -0.467186 -3.98698e-16)
(0.454924 -0.513396 -1.89363e-16)
(0.419892 -0.294189 1.07241e-16)
(0.290432 -0.107455 -1.89169e-16)
(0.20828 -0.0138278 1.29968e-16)
(0.215787 -0.0005218 -1.67098e-16)
(0.230573 -0.00945952 -1.26222e-16)
(0.168537 -0.00171063 -9.10066e-17)
(-0.00576908 0.00505949 2.43661e-17)
(-0.0772513 -0.0290716 -2.33333e-17)
(-0.000588225 -0.0604589 7.4538e-17)
(0.10277 -0.0652865 9.03252e-17)
(0.205041 -0.0522747 -1.56775e-17)
(0.296311 -0.0257147 8.75116e-18)
(0.348972 0.00450325 -5.08303e-19)
(0.988239 -0.00488948 -5.12253e-21)
(0.990084 -0.00388414 -4.05472e-21)
(0.992558 -0.00312121 4.7003e-21)
(0.994003 -0.00262 -5.41945e-22)
(0.994673 -0.00219981 -2.98839e-20)
(0.995259 -0.00181733 -4.73812e-21)
(0.995957 -0.00150678 -1.2952e-20)
(0.996627 -0.00128301 6.31809e-21)
(0.997154 -0.00113097 3.27967e-20)
(0.997555 -0.00102515 -3.88193e-20)
(0.997918 -0.00094967 6.75306e-20)
(0.998307 -0.000897311 -1.71481e-20)
(0.998735 -0.000867947 1.87811e-20)
(0.999169 -0.000859725 1.0848e-20)
(0.999562 -0.000869955 -3.39923e-20)
(0.999878 -0.00089142 -2.46441e-20)
(1.0001 -0.000917464 2.53362e-20)
(1.00025 -0.000939876 1.66385e-21)
(1.00033 -0.000953972 -8.30796e-21)
(1.00038 -0.000955357 -2.93736e-20)
(1.00043 -0.000943741 -4.84118e-21)
(1.0005 -0.000918778 -4.15109e-20)
(1.00061 -0.000883201 -4.57192e-20)
(1.00077 -0.000838554 -1.67893e-20)
(1.00097 -0.00078829 -8.20881e-21)
(1.00121 -0.000733802 4.03811e-20)
(1.00148 -0.000677756 -1.3844e-20)
(1.00176 -0.000620091 1.94024e-20)
(1.00206 -0.000560588 2.70216e-20)
(1.00234 -0.000498019 -1.22907e-20)
(0.989383 -0.00435829 -2.02841e-21)
(0.98973 -0.00304214 2.3327e-21)
(0.990545 -0.00209675 3.7001e-21)
(0.991119 -0.00145041 -1.58946e-21)
(0.991452 -0.000835854 4.24925e-20)
(0.991788 -0.000240921 3.64505e-20)
(0.992192 0.000234324 3.12973e-20)
(0.99258 0.000546957 -1.33884e-20)
(0.992885 0.000722192 6.00543e-21)
(0.993121 0.000807082 4.00535e-20)
(0.99334 0.000830918 -4.11271e-20)
(0.993585 0.000804724 4.91306e-20)
(0.993859 0.000727921 -1.01485e-19)
(0.99414 0.000604087 -4.16694e-21)
(0.994393 0.000441663 7.26142e-20)
(0.994594 0.00025793 1.21177e-19)
(0.994735 7.04881e-05 -6.92521e-20)
(0.994823 -0.000102112 -3.7215e-20)
(0.994877 -0.00024825 -1.5438e-20)
(0.994923 -0.00035968 2.11348e-20)
(0.994985 -0.00043612 -9.84662e-21)
(0.99508 -0.000479346 -4.69302e-20)
(0.995222 -0.00049626 6.95824e-20)
(0.995416 -0.000492712 -1.79532e-20)
(0.995661 -0.000476724 7.96917e-20)
(0.995953 -0.000453148 -8.99457e-20)
(0.996288 -0.000427551 2.23714e-20)
(0.99665 -0.000402309 4.48946e-20)
(0.99706 -0.000377461 -4.74092e-20)
(0.997439 -0.000352229 5.72239e-20)
(0.993164 -0.00360105 -4.68899e-21)
(0.992784 -0.00346366 2.3907e-20)
(0.992931 -0.00321753 -1.77872e-20)
(0.993337 -0.00281696 2.56172e-20)
(0.993749 -0.00226017 -2.3951e-20)
(0.994122 -0.00165912 -5.69326e-20)
(0.994483 -0.00114036 8.25466e-20)
(0.994832 -0.00076227 -9.61846e-21)
(0.995148 -0.000521537 -4.77561e-20)
(0.995431 -0.000393327 -1.21446e-19)
(0.995692 -0.000359726 -4.47562e-21)
(0.995944 -0.000412173 -5.17958e-20)
(0.99619 -0.000544292 1.7208e-19)
(0.99642 -0.000742784 -2.07291e-20)
(0.996621 -0.00098644 -6.93968e-20)
(0.996782 -0.00124778 -4.92412e-20)
(0.996901 -0.0014996 6.75326e-20)
(0.996986 -0.00171857 3.11374e-20)
(0.997049 -0.00188963 -1.03837e-19)
(0.997106 -0.00200567 -1.10493e-19)
(0.997172 -0.00206784 6.01286e-20)
(0.997258 -0.00208238 -4.34763e-20)
(0.997372 -0.0020595 8.41845e-20)
(0.997519 -0.00200999 3.16882e-20)
(0.997697 -0.00194465 -7.4253e-20)
(0.997903 -0.00187215 7.71792e-21)
(0.998135 -0.00179915 6.22696e-20)
(0.998382 -0.00173206 9.40961e-20)
(0.998656 -0.0016678 -1.06368e-19)
(0.998892 -0.00161467 1.1111e-19)
(0.995019 -0.003644 1.16342e-20)
(0.994763 -0.00375756 -2.00641e-20)
(0.99497 -0.00351088 -3.13343e-20)
(0.995372 -0.00299278 -1.04404e-20)
(0.995741 -0.00233942 9.40848e-22)
(0.996046 -0.00166261 -1.66599e-20)
(0.996338 -0.00104717 -1.63039e-19)
(0.996641 -0.000545185 -1.01931e-20)
(0.99694 -0.000179631 7.12715e-20)
(0.997209 4.506e-05 6.50036e-20)
(0.997439 0.00013357 -1.78453e-19)
(0.997631 9.76263e-05 -4.89664e-20)
(0.997793 -4.35463e-05 9.62254e-20)
(0.997933 -0.00026246 -1.03159e-19)
(0.998055 -0.000526394 9.46488e-20)
(0.998161 -0.000801309 1.98072e-19)
(0.998253 -0.00105735 1.96675e-20)
(0.998335 -0.00127196 -9.10834e-20)
(0.998413 -0.0014322 3.0942e-19)
(0.998491 -0.0015342 1.46583e-19)
(0.998577 -0.00158192 -1.08363e-19)
(0.998675 -0.00158436 7.01948e-20)
(0.998787 -0.0015535 5.89857e-20)
(0.998914 -0.00150163 -1.26261e-19)
(0.999057 -0.00143999 3.90751e-20)
(0.999213 -0.00137753 -1.65831e-21)
(0.99938 -0.00132025 -1.88465e-20)
(0.999553 -0.00127354 -2.58766e-19)
(0.999741 -0.00123368 2.68377e-19)
(0.999899 -0.0011959 -2.77926e-19)
(0.996231 -0.00331825 -1.93444e-20)
(0.99595 -0.00360609 2.70329e-20)
(0.995961 -0.0036126 4.43011e-20)
(0.996093 -0.00335048 4.18158e-20)
(0.996241 -0.00290818 -5.76124e-20)
(0.996411 -0.00237085 9.61552e-21)
(0.996626 -0.00182349 5.88947e-20)
(0.996879 -0.0013442 1.49953e-19)
(0.997131 -0.000990202 -5.00818e-21)
(0.99735 -0.000789896 1.41141e-19)
(0.997522 -0.000744916 -5.08562e-21)
(0.997654 -0.000836195 -5.30087e-20)
(0.997763 -0.00103171 -3.8569e-19)
(0.997865 -0.00129278 -1.16829e-19)
(0.997971 -0.00158038 1.31055e-19)
(0.998087 -0.00185955 -2.49816e-19)
(0.998211 -0.00210319 6.57444e-20)
(0.998344 -0.00229349 2.02638e-20)
(0.998481 -0.0024224 3.84808e-20)
(0.998623 -0.00249024 -1.36253e-19)
(0.998768 -0.0025039 3.29509e-20)
(0.998915 -0.00247415 1.46662e-19)
(0.999066 -0.00241365 -2.84445e-19)
(0.999221 -0.00233476 3.23038e-19)
(0.999378 -0.00224828 2.24537e-20)
(0.999539 -0.00216256 -2.59473e-19)
(0.999702 -0.00208276 2.51605e-19)
(0.999865 -0.00201355 -1.4553e-19)
(1.00004 -0.00195035 -3.88282e-19)
(1.00016 -0.00188665 3.98089e-19)
(0.997237 -0.00268647 1.87605e-20)
(0.996869 -0.0032592 -3.65284e-20)
(0.996709 -0.0035738 -7.29355e-20)
(0.9967 -0.00351799 -8.44417e-20)
(0.996783 -0.00315779 -3.94234e-20)
(0.996937 -0.00261096 7.36197e-20)
(0.997141 -0.00200589 -3.83521e-21)
(0.997359 -0.00145469 -7.46662e-21)
(0.997552 -0.00103473 -2.42656e-19)
(0.997697 -0.000781987 -1.1515e-19)
(0.997795 -0.000696456 6.73314e-20)
(0.997863 -0.000752992 -8.94293e-20)
(0.997921 -0.000913451 2.22784e-19)
(0.997988 -0.00113582 3.48439e-19)
(0.998075 -0.00138125 -3.37243e-20)
(0.998183 -0.00161765 -1.71179e-20)
(0.998311 -0.00182199 -8.86232e-20)
(0.998452 -0.00198035 2.54722e-19)
(0.998599 -0.00208733 -3.79848e-19)
(0.99875 -0.0021444 2.7071e-19)
(0.998899 -0.00215809 9.66247e-20)
(0.999045 -0.00213769 -1.9406e-19)
(0.99919 -0.00209377 5.84133e-20)
(0.999332 -0.00203635 -3.8477e-19)
(0.999474 -0.00197408 -1.46173e-19)
(0.999615 -0.00191346 3.2337e-19)
(0.999758 -0.00185826 -3.0334e-20)
(0.9999 -0.00181199 4.64082e-19)
(1.00005 -0.00177047 2.38209e-19)
(1.00017 -0.00172497 6.6976e-21)
(0.997895 -0.00217485 -5.44477e-21)
(0.997533 -0.00296668 4.71206e-20)
(0.99735 -0.00348945 7.16494e-20)
(0.997326 -0.0035675 8.10579e-20)
(0.997404 -0.00327984 1.21031e-19)
(0.997544 -0.00277627 -1.35968e-19)
(0.997708 -0.0022069 7.57377e-20)
(0.997861 -0.00169053 -1.58805e-19)
(0.99798 -0.00130251 3.85159e-19)
(0.998058 -0.00107468 1.55124e-19)
(0.998105 -0.00100427 2.86514e-20)
(0.998142 -0.00106563 2.29905e-19)
(0.998186 -0.00122217 1.00334e-19)
(0.998251 -0.00143504 -3.09484e-19)
(0.99834 -0.00166926 8.36286e-20)
(0.998453 -0.00189663 3.49725e-20)
(0.998583 -0.00209718 5.01751e-20)
(0.998723 -0.00225886 -4.40122e-19)
(0.998866 -0.00237676 4.09024e-19)
(0.999006 -0.00245156 -4.33763e-19)
(0.999141 -0.00248808 2.05714e-19)
(0.999269 -0.00249343 1.58458e-19)
(0.999393 -0.00247584 2.18927e-20)
(0.999512 -0.00244324 1.8775e-19)
(0.99963 -0.00240258 -2.29725e-19)
(0.999748 -0.00235922 -2.69985e-20)
(0.999868 -0.00231629 -2.38719e-19)
(0.999989 -0.00227736 -8.04094e-20)
(1.00012 -0.00223834 3.59599e-20)
(1.00021 -0.00219589 -2.43084e-20)
(0.998335 -0.00182924 -1.95275e-20)
(0.99803 -0.00272791 -6.70921e-20)
(0.997882 -0.0033735 4.47206e-21)
(0.997867 -0.00355623 -1.30949e-21)
(0.997932 -0.0033538 -8.146e-20)
(0.998041 -0.00291921 6.00321e-20)
(0.998163 -0.00240072 -1.3684e-19)
(0.998273 -0.00191258 2.94772e-19)
(0.998357 -0.00152754 -1.60667e-19)
(0.998417 -0.00127924 -1.57121e-20)
(0.998466 -0.0011706 1.76032e-19)
(0.998518 -0.00118358 -1.05275e-19)
(0.998585 -0.00128919 -1.87904e-19)
(0.998672 -0.00145487 3.10242e-20)
(0.99878 -0.00165006 -3.72716e-19)
(0.998904 -0.00184911 -3.50552e-20)
(0.999037 -0.00203289 -8.73991e-20)
(0.99917 -0.00218884 2.73394e-19)
(0.999299 -0.00231056 -2.13508e-19)
(0.999419 -0.00239663 4.18615e-20)
(0.999529 -0.00244955 -2.6056e-19)
(0.999629 -0.0024741 2.17192e-19)
(0.999721 -0.00247647 8.20324e-20)
(0.999809 -0.00246291 1.89457e-19)
(0.999894 -0.00243922 6.0873e-19)
(0.999979 -0.00241001 -2.40884e-19)
(1.00007 -0.00237814 1.14944e-19)
(1.00016 -0.00234716 -2.13702e-19)
(1.00026 -0.00231327 2.24789e-19)
(1.00033 -0.00227464 -4.74598e-19)
(0.998786 -0.00150046 5.27078e-21)
(0.998519 -0.00245792 1.05954e-19)
(0.998378 -0.00320635 -3.06341e-20)
(0.998336 -0.00350257 -1.57676e-19)
(0.998355 -0.00340557 6.2918e-20)
(0.998412 -0.00305731 -1.58169e-19)
(0.998487 -0.00259885 1.19068e-19)
(0.998561 -0.00214159 -6.16695e-20)
(0.998628 -0.00176039 -2.50748e-20)
(0.998688 -0.0014951 8.09195e-20)
(0.998752 -0.00135688 -9.06323e-21)
(0.998829 -0.00133597 2.39231e-19)
(0.998923 -0.00141012 7.94572e-20)
(0.999037 -0.0015513 1.8175e-19)
(0.999165 -0.00173128 -1.35786e-19)
(0.999301 -0.00192492 1.6676e-19)
(0.999437 -0.00211233 4.64518e-20)
(0.999568 -0.00227945 -1.17677e-20)
(0.999687 -0.00241798 9.8932e-20)
(0.999793 -0.00252454 4.1343e-19)
(0.999885 -0.00259975 1.78761e-19)
(0.999965 -0.00264677 -1.11559e-19)
(1.00004 -0.00267046 6.60471e-20)
(1.0001 -0.00267607 -2.17014e-19)
(1.00016 -0.00266867 -3.51749e-19)
(1.00022 -0.00265253 3.03503e-19)
(1.00029 -0.00263036 -4.46241e-19)
(1.00035 -0.00260591 -2.28077e-19)
(1.00043 -0.0025752 3.16038e-19)
(1.00047 -0.00253894 7.8238e-19)
(0.999337 -0.00110365 2.36718e-20)
(0.999078 -0.00212216 -1.01522e-19)
(0.998903 -0.0029856 -9.63023e-20)
(0.998799 -0.00341257 1.94772e-19)
(0.998747 -0.00343622 -1.00896e-19)
(0.998737 -0.00318438 2.0651e-19)
(0.99876 -0.00279164 3.55198e-20)
(0.998801 -0.00236888 -2.17094e-19)
(0.998854 -0.00199486 -3.91755e-20)
(0.998917 -0.00171612 -5.21559e-19)
(0.998997 -0.00155144 -4.49932e-19)
(0.999097 -0.00149814 -3.77721e-19)
(0.999218 -0.00153952 3.41723e-19)
(0.999355 -0.00165131 4.16436e-20)
(0.999503 -0.00180734 8.06093e-19)
(0.999654 -0.00198319 -3.28679e-19)
(0.999799 -0.00215881 -5.77137e-20)
(0.999932 -0.00231946 -1.9733e-19)
(1.00005 -0.00245591 1.37624e-19)
(1.00015 -0.00256378 -2.28327e-19)
(1.00023 -0.00264277 1.09049e-19)
(1.00029 -0.00269518 8.3942e-20)
(1.00035 -0.00272516 -5.75757e-20)
(1.0004 -0.00273734 2.05927e-19)
(1.00044 -0.00273634 1.14988e-19)
(1.00048 -0.00272609 -5.39261e-19)
(1.00052 -0.00270901 -4.96734e-19)
(1.00057 -0.00268877 -2.22347e-19)
(1.00063 -0.00266126 -8.6563e-19)
(1.00064 -0.00262594 -2.77091e-19)
(0.999927 -0.000660294 -2.46052e-21)
(0.999668 -0.00174743 2.49967e-20)
(0.999447 -0.00273184 1.435e-19)
(0.999273 -0.00329262 -2.28189e-19)
(0.999147 -0.00343718 -9.58882e-20)
(0.999074 -0.00328056 -6.23848e-20)
(0.999048 -0.00295295 7.23031e-20)
(0.999058 -0.00256617 9.10119e-20)
(0.999095 -0.00220336 1.08307e-19)
(0.999157 -0.00191724 -1.62473e-19)
(0.999244 -0.00173316 1.64015e-19)
(0.999357 -0.00165437 5.68024e-21)
(0.999493 -0.00166886 -1.18799e-19)
(0.999645 -0.00175566 -1.68459e-19)
(0.999806 -0.00189052 -2.8147e-19)
(0.999965 -0.00204999 -2.03895e-19)
(1.00011 -0.00221418 -1.62667e-19)
(1.00025 -0.00236806 -3.46833e-19)
(1.00036 -0.00250185 -2.10656e-19)
(1.00046 -0.00261052 3.74105e-19)
(1.00053 -0.00269305 -5.90864e-19)
(1.00058 -0.00275106 4.30506e-19)
(1.00063 -0.00278804 3.81158e-19)
(1.00066 -0.00280804 -7.28986e-19)
(1.00069 -0.00281516 5.78381e-20)
(1.00071 -0.00281287 6.18933e-20)
(1.00074 -0.00280324 4.72249e-19)
(1.00077 -0.00278969 5.82187e-19)
(1.00081 -0.00276797 -3.36804e-19)
(1.00081 -0.00273742 -9.55181e-19)
(1.00046 -0.000251714 1.01787e-20)
(1.00022 -0.00139616 -3.11377e-21)
(0.999967 -0.00248415 -2.12023e-19)
(0.999744 -0.00315997 2.38438e-19)
(0.999565 -0.00340866 1.42102e-19)
(0.999445 -0.00333475 1.20239e-19)
(0.999383 -0.00306536 -5.3261e-19)
(0.999367 -0.00271352 -3.17763e-19)
(0.999387 -0.00236597 2.70974e-19)
(0.999441 -0.00208017 2.1447e-19)
(0.999526 -0.0018863 2.01883e-19)
(0.99964 -0.00179195 2.08395e-20)
(0.999778 -0.00178851 -4.59581e-19)
(0.999933 -0.0018575 7.2976e-20)
(1.0001 -0.00197622 -4.80673e-19)
(1.00025 -0.0021221 2.36131e-19)
(1.0004 -0.00227557 2.31398e-19)
(1.00053 -0.00242163 3.37761e-19)
(1.00064 -0.00255032 7.23811e-19)
(1.00073 -0.00265628 -8.93151e-19)
(1.0008 -0.00273818 -2.28755e-19)
(1.00085 -0.00279727 -1.35855e-18)
(1.00088 -0.00283666 -9.02568e-19)
(1.0009 -0.00286007 1.10416e-18)
(1.00092 -0.00287123 3.13132e-19)
(1.00093 -0.00287331 3.93573e-19)
(1.00095 -0.00286807 3.62203e-19)
(1.00096 -0.00285873 4.63059e-22)
(1.00099 -0.00284089 8.93669e-19)
(1.00097 -0.00281279 1.42187e-18)
(1.00087 4.71376e-05 2.6555e-20)
(1.00066 -0.00112484 -1.94357e-20)
(1.00042 -0.00227915 2.1285e-19)
(1.00018 -0.00303473 9.19519e-20)
(0.999979 -0.00335868 4.96718e-20)
(0.999837 -0.00334692 -4.85435e-20)
(0.999755 -0.00312385 9.6628e-20)
(0.999721 -0.0028029 6.03747e-20)
(0.999728 -0.00247287 -1.71262e-19)
(0.999769 -0.00219396 3.3692e-19)
(0.999844 -0.00199925 -6.70377e-20)
(0.999949 -0.00189894 2.36148e-19)
(1.00008 -0.00188658 2.89616e-19)
(1.00023 -0.0019453 -3.81804e-19)
(1.00038 -0.00205358 2.66483e-20)
(1.00053 -0.00218959 1.94994e-19)
(1.00067 -0.00233424 4.66824e-21)
(1.0008 -0.00247282 3.11485e-19)
(1.0009 -0.00259552 -5.88393e-19)
(1.00098 -0.00269703 2.14574e-19)
(1.00104 -0.00277599 1.27592e-18)
(1.00108 -0.00283359 1.04796e-18)
(1.00111 -0.00287281 4.52872e-19)
(1.00112 -0.00289719 -2.99913e-19)
(1.00113 -0.00291026 -5.11113e-19)
(1.00113 -0.00291496 -4.89383e-19)
(1.00114 -0.0029128 2.93578e-19)
(1.00114 -0.00290677 -6.03392e-19)
(1.00115 -0.00289239 -1.29035e-20)
(1.00113 -0.00286656 -7.02842e-20)
(1.00114 0.000195317 -4.35664e-20)
(1.00099 -0.000967722 9.04258e-20)
(1.00079 -0.00214329 -2.32045e-19)
(1.00057 -0.00293704 -3.3883e-19)
(1.00037 -0.00330285 1.80867e-19)
(1.00023 -0.00332945 -2.13745e-19)
(1.00015 -0.00313822 4.49571e-19)
(1.00011 -0.00284178 5.07508e-19)
(1.0001 -0.00252918 -3.93344e-19)
(1.00013 -0.00226145 -3.51716e-19)
(1.00019 -0.00207272 -2.58896e-19)
(1.00028 -0.00197428 5.53422e-20)
(1.0004 -0.00196069 -2.55655e-19)
(1.00053 -0.00201593 8.47668e-20)
(1.00067 -0.0021192 1.76237e-19)
(1.00081 -0.00224932 2.16204e-19)
(1.00094 -0.0023877 8.62398e-20)
(1.00105 -0.00252009 -6.44083e-19)
(1.00115 -0.00263702 -9.31238e-19)
(1.00122 -0.00273351 5.28712e-19)
(1.00127 -0.00280839 -1.07362e-18)
(1.0013 -0.00286302 -7.95266e-19)
(1.00132 -0.00290041 4.25396e-19)
(1.00133 -0.00292408 1.47094e-19)
(1.00133 -0.00293748 -2.60184e-19)
(1.00132 -0.00294339 7.81687e-19)
(1.00132 -0.00294313 -2.41116e-19)
(1.00131 -0.00293951 1.32113e-18)
(1.00131 -0.00292795 -1.8245e-19)
(1.00128 -0.00290393 -5.22246e-19)
(1.0013 0.000194695 -4.37282e-20)
(1.00122 -0.000928443 -7.11932e-20)
(1.00107 -0.00208491 1.71403e-19)
(1.0009 -0.00287876 3.70498e-19)
(1.00073 -0.00325531 -1.84679e-19)
(1.00061 -0.00329735 2.35078e-19)
(1.00054 -0.00312295 -4.4978e-19)
(1.0005 -0.0028428 -5.63797e-19)
(1.00049 -0.00254477 3.45501e-19)
(1.0005 -0.00228921 -7.22616e-20)
(1.00055 -0.00210986 7.13943e-19)
(1.00062 -0.00201794 2.23381e-19)
(1.00072 -0.00200807 2.11633e-19)
(1.00084 -0.0020645 -9.81237e-20)
(1.00096 -0.00216678 -3.964e-19)
(1.00108 -0.00229415 -1.55499e-19)
(1.0012 -0.00242852 3.04883e-19)
(1.0013 -0.00255614 1.23328e-18)
(1.00138 -0.00266803 2.19638e-19)
(1.00144 -0.00275962 5.4381e-19)
(1.00148 -0.00283013 2.33755e-20)
(1.00151 -0.00288117 8.68051e-19)
(1.00152 -0.00291595 -1.20822e-18)
(1.00152 -0.00293806 -4.16196e-19)
(1.00151 -0.00295094 6.58247e-19)
(1.0015 -0.00295728 -6.91104e-19)
(1.00148 -0.00295828 8.36621e-19)
(1.00147 -0.00295658 -1.30658e-18)
(1.00146 -0.00294755 2.56782e-19)
(1.00142 -0.00292514 -1.88924e-19)
(1.0014 7.42353e-05 5.82494e-20)
(1.00138 -0.000990531 1.46291e-20)
(1.0013 -0.00209961 1.48644e-19)
(1.00118 -0.00286501 -4.65284e-19)
(1.00106 -0.00322779 1.36875e-20)
(1.00097 -0.00326624 3.68602e-20)
(1.00091 -0.00309516 1.39353e-19)
(1.00088 -0.00282271 4.93473e-19)
(1.00087 -0.00253468 -2.79883e-19)
(1.00088 -0.00228974 7.32874e-19)
(1.00091 -0.00212037 -8.1587e-19)
(1.00096 -0.00203686 -3.96728e-19)
(1.00104 -0.00203328 3.47745e-20)
(1.00114 -0.00209366 4.5888e-19)
(1.00124 -0.00219755 8.79527e-19)
(1.00135 -0.00232445 3.6138e-20)
(1.00145 -0.00245666 -1.1463e-18)
(1.00154 -0.00258089 -5.54846e-19)
(1.00161 -0.00268866 8.02202e-19)
(1.00166 -0.00277591 -9.54031e-19)
(1.00169 -0.00284226 4.36177e-20)
(1.00171 -0.00288969 -6.34515e-19)
(1.00171 -0.00292163 4.50314e-19)
(1.0017 -0.00294184 -4.4567e-19)
(1.00169 -0.00295379 -6.7867e-20)
(1.00167 -0.00296018 1.02965e-18)
(1.00164 -0.00296205 -1.01342e-18)
(1.00162 -0.00296197 7.89141e-19)
(1.00161 -0.00295525 -3.09996e-19)
(1.00156 -0.00293433 6.70154e-20)
(1.00147 -0.000121904 2.4729e-20)
(1.00151 -0.00112379 1.07586e-19)
(1.00149 -0.00217183 -2.57662e-19)
(1.00142 -0.00289206 4.27409e-19)
(1.00135 -0.00322504 -3.82649e-20)
(1.00129 -0.00324614 -2.95477e-19)
(1.00126 -0.00306742 -7.49037e-20)
(1.00123 -0.00279448 -1.97063e-19)
(1.00122 -0.00251077 2.72906e-19)
(1.00123 -0.00227288 -4.76714e-19)
(1.00125 -0.00211155 1.31807e-18)
(1.00129 -0.00203575 2.6275e-19)
(1.00135 -0.00203861 -6.48919e-19)
(1.00143 -0.0021036 -2.19809e-19)
(1.00152 -0.00221007 5.38337e-19)
(1.00161 -0.00233758 1.58901e-19)
(1.00169 -0.00246867 4.03845e-19)
(1.00176 -0.00259045 -4.37074e-19)
(1.00182 -0.00269492 -3.51785e-19)
(1.00186 -0.00277845 -2.26376e-19)
(1.00189 -0.00284112 4.39855e-19)
(1.00189 -0.00288526 5.94686e-19)
(1.00189 -0.00291458 2.36154e-19)
(1.00187 -0.002933 6.83511e-19)
(1.00185 -0.00294409 3.36047e-19)
(1.00182 -0.00295052 -6.05108e-19)
(1.00179 -0.00295329 6.50142e-19)
(1.00177 -0.00295485 -2.25341e-19)
(1.00174 -0.00295052 -3.25965e-19)
(1.00169 -0.00293117 -4.38798e-19)
(1.00156 -0.0003517 -6.85091e-20)
(1.00164 -0.00129755 -2.08718e-19)
(1.00167 -0.00228365 2.74903e-19)
(1.00165 -0.00295283 -1.87918e-19)
(1.00162 -0.00324806 -5.97485e-20)
(1.00159 -0.00324352 4.89629e-19)
(1.00157 -0.00304937 5.74337e-19)
(1.00156 -0.00276915 -3.8933e-19)
(1.00156 -0.00248416 2.73471e-19)
(1.00156 -0.00224897 1.13478e-19)
(1.00157 -0.0020925 -1.19817e-18)
(1.0016 -0.00202226 2.54157e-19)
(1.00165 -0.00203028 1.31944e-18)
(1.00171 -0.0020993 6.56454e-19)
(1.00178 -0.00220827 -7.04296e-19)
(1.00186 -0.00233666 -5.4857e-20)
(1.00193 -0.00246712 6.68407e-19)
(1.00199 -0.00258706 7.13192e-19)
(1.00203 -0.00268884 4.33907e-19)
(1.00206 -0.00276927 1.83703e-19)
(1.00208 -0.00282879 5.38631e-19)
(1.00208 -0.00287009 8.46676e-20)
(1.00206 -0.00289714 5.75017e-19)
(1.00204 -0.00291405 -9.32201e-19)
(1.00201 -0.00292448 -9.40745e-19)
(1.00198 -0.00293111 2.33811e-19)
(1.00194 -0.00293488 2.6491e-19)
(1.0019 -0.00293816 -5.48844e-19)
(1.00188 -0.0029363 -4.69436e-19)
(1.00181 -0.00291861 1.00407e-18)
(1.00169 -0.000579526 5.36447e-20)
(1.00179 -0.00148346 -2.14689e-20)
(1.00185 -0.00241601 -1.05253e-19)
(1.00187 -0.00303667 -2.7762e-19)
(1.00187 -0.00329282 -1.03793e-19)
(1.00187 -0.00325899 -5.77947e-19)
(1.00186 -0.00304456 -4.63852e-19)
(1.00186 -0.00275176 6.66026e-19)
(1.00186 -0.0024603 -8.04223e-19)
(1.00185 -0.0022231 -9.89589e-20)
(1.00186 -0.00206749 6.88744e-20)
(1.00188 -0.00199962 -1.28066e-19)
(1.00192 -0.00201039 -1.30757e-18)
(1.00197 -0.00208177 -2.41232e-19)
(1.00203 -0.00219221 4.67136e-19)
(1.00209 -0.00232097 -2.80566e-19)
(1.00215 -0.00245069 -9.50033e-19)
(1.0022 -0.00256898 -8.12456e-20)
(1.00223 -0.00266845 -5.85824e-19)
(1.00225 -0.00274625 9.48412e-20)
(1.00226 -0.00280315 -8.60863e-19)
(1.00225 -0.00284215 -1.03598e-18)
(1.00223 -0.00286743 -7.60209e-19)
(1.0022 -0.0028833 1.28795e-18)
(1.00216 -0.00289347 4.96191e-19)
(1.00212 -0.00290066 6.18347e-19)
(1.00208 -0.00290577 -5.74766e-19)
(1.00203 -0.00291107 -2.15873e-19)
(1.002 -0.00291192 2.9914e-19)
(1.00193 -0.00289618 -2.25291e-18)
(1.00185 -0.000782767 -1.03324e-19)
(1.00196 -0.00166182 1.8175e-19)
(1.00205 -0.00255426 -4.42756e-20)
(1.00209 -0.00313417 4.40564e-19)
(1.00211 -0.00335442 -9.88993e-20)
(1.00212 -0.00329125 3.48798e-20)
(1.00214 -0.00305431 7.64005e-22)
(1.00214 -0.00274542 -3.4452e-19)
(1.00213 -0.00244342 -5.57889e-19)
(1.00213 -0.00220009 7.35352e-19)
(1.00213 -0.00204155 -7.3294e-19)
(1.00214 -0.00197277 3.12966e-20)
(1.00217 -0.00198369 6.48298e-19)
(1.00221 -0.00205547 2.85023e-19)
(1.00226 -0.00216603 -1.44908e-19)
(1.00231 -0.00229434 -3.43268e-19)
(1.00236 -0.00242294 9.65242e-19)
(1.00239 -0.00253952 -4.9225e-19)
(1.00242 -0.00263687 5.3647e-20)
(1.00243 -0.00271238 2.12397e-19)
(1.00243 -0.00276708 8.53349e-20)
(1.00241 -0.00280423 2.9332e-19)
(1.00238 -0.00282819 1.26542e-19)
(1.00235 -0.00284342 -1.98681e-19)
(1.0023 -0.00285371 3.29512e-19)
(1.00226 -0.00286179 -3.11312e-19)
(1.00221 -0.0028685 -3.58091e-19)
(1.00216 -0.00287607 4.32691e-19)
(1.00212 -0.00287986 -4.2937e-19)
(1.00205 -0.00286625 1.41961e-18)
(1.00206 -0.00094788 1.0199e-19)
(1.00217 -0.00181874 1.42478e-19)
(1.00226 -0.00268631 1.30668e-19)
(1.00232 -0.00323582 -6.4907e-19)
(1.00235 -0.00342601 3.72581e-19)
(1.00237 -0.00333577 -7.35686e-20)
(1.00239 -0.00307597 -1.45896e-19)
(1.00239 -0.0027489 3.67326e-19)
(1.00239 -0.00243325 9.96639e-19)
(1.00238 -0.00218024 -9.16411e-20)
(1.00237 -0.00201522 1.11046e-18)
(1.00238 -0.00194231 5.3634e-19)
(1.0024 -0.00195062 -1.08948e-18)
(1.00243 -0.00202062 -4.56412e-19)
(1.00247 -0.0021297 -1.10112e-18)
(1.00251 -0.00225648 -4.67907e-20)
(1.00255 -0.00238334 -1.53623e-19)
(1.00258 -0.00249795 -5.61274e-19)
(1.0026 -0.0025932 2.89442e-19)
(1.0026 -0.00266663 3.20817e-19)
(1.00259 -0.00271949 -3.13008e-19)
(1.00257 -0.00275521 2.69738e-19)
(1.00253 -0.00277832 1.15701e-18)
(1.00249 -0.00279337 -8.98906e-19)
(1.00244 -0.00280422 -8.79414e-19)
(1.00239 -0.0028136 7.69337e-19)
(1.00233 -0.00282231 1.73705e-18)
(1.00228 -0.00283247 -2.3333e-19)
(1.00223 -0.0028395 2.65005e-19)
(1.00215 -0.00282833 -9.28718e-19)
(1.0023 -0.00107204 -3.65605e-20)
(1.0024 -0.00194873 -2.13283e-19)
(1.0025 -0.00280558 -1.77342e-19)
(1.00255 -0.00333531 2.73e-19)
(1.00259 -0.00350222 -5.74241e-20)
(1.00261 -0.00338843 6.79731e-19)
(1.00263 -0.00310678 1.15322e-19)
(1.00263 -0.00276074 -3.81024e-19)
(1.00262 -0.00242949 3.98969e-19)
(1.00261 -0.00216428 -1.36736e-18)
(1.0026 -0.00199008 -1.43422e-19)
(1.0026 -0.00191048 -5.25964e-19)
(1.00261 -0.00191392 1.32429e-18)
(1.00264 -0.0019803 -2.57394e-19)
(1.00267 -0.0020865 1.26086e-18)
(1.0027 -0.00221078 1.40279e-18)
(1.00273 -0.0023353 -4.67281e-19)
(1.00275 -0.00244765 1.0671e-18)
(1.00276 -0.00254075 8.11272e-19)
(1.00276 -0.00261224 4.73651e-19)
(1.00274 -0.00266349 -4.14252e-19)
(1.00271 -0.00269808 8.79751e-20)
(1.00267 -0.00272066 -1.19999e-18)
(1.00263 -0.00273587 2.4979e-18)
(1.00257 -0.0027476 -7.73231e-19)
(1.00251 -0.00275856 -1.18121e-18)
(1.00245 -0.00276949 -3.12634e-18)
(1.0024 -0.00278246 1.4547e-20)
(1.00234 -0.0027929 1.8753e-18)
(1.00226 -0.00278432 1.33838e-18)
(1.00257 -0.00115667 4.36328e-20)
(1.00266 -0.00204959 -1.75037e-19)
(1.00274 -0.00290754 2.33754e-19)
(1.00279 -0.00342703 -2.26885e-19)
(1.00282 -0.00357725 5.15083e-20)
(1.00284 -0.00344377 -5.59342e-19)
(1.00285 -0.0031419 5.93104e-19)
(1.00285 -0.00277685 -6.95617e-19)
(1.00284 -0.00242883 -7.31627e-20)
(1.00282 -0.00214956 8.04228e-19)
(1.0028 -0.00196406 2.66496e-19)
(1.0028 -0.00187563 -4.95615e-19)
(1.00281 -0.00187229 -7.00347e-19)
(1.00283 -0.00193344 6.91941e-20)
(1.00285 -0.0020355 -3.21438e-19)
(1.00288 -0.00215638 -6.14308e-19)
(1.0029 -0.002278 2.31166e-20)
(1.00292 -0.00238782 -1.43736e-18)
(1.00292 -0.00247871 -9.68021e-19)
(1.00291 -0.00254837 -9.70888e-19)
(1.00289 -0.00259824 1.01664e-18)
(1.00285 -0.00263201 -9.71117e-19)
(1.00281 -0.00265441 -5.2816e-19)
(1.00275 -0.00267013 -1.36877e-18)
(1.00269 -0.00268306 1.70442e-18)
(1.00263 -0.00269592 -1.72818e-18)
(1.00256 -0.00270936 1.80691e-18)
(1.0025 -0.00272538 -8.7848e-19)
(1.00245 -0.00273943 -1.6877e-18)
(1.00236 -0.00273366 -4.15961e-19)
(1.00285 -0.00120856 1.84077e-20)
(1.00292 -0.00212421 3.97758e-19)
(1.00299 -0.00299182 -3.13728e-19)
(1.00304 -0.00350861 5.19266e-19)
(1.00306 -0.00364777 -2.42183e-19)
(1.00307 -0.00349828 2.1163e-19)
(1.00307 -0.00317817 1.14184e-20)
(1.00307 -0.00279473 7.25163e-19)
(1.00304 -0.0024296 -7.0692e-20)
(1.00302 -0.00213533 -1.90212e-19)
(1.003 -0.00193726 -4.72677e-19)
(1.00299 -0.00183865 5.16786e-19)
(1.00299 -0.00182725 3.90614e-19)
(1.003 -0.00188209 3.33628e-20)
(1.00302 -0.00197917 -8.27987e-19)
(1.00304 -0.00209605 3.57684e-19)
(1.00306 -0.00221439 -3.0314e-19)
(1.00307 -0.00232148 1.54604e-18)
(1.00306 -0.00241013 1.02955e-18)
(1.00305 -0.00247803 7.93821e-19)
(1.00302 -0.00252667 3.15667e-19)
(1.00298 -0.00255982 1.95573e-19)
(1.00293 -0.00258224 -1.65709e-19)
(1.00287 -0.00259867 6.90581e-19)
(1.00281 -0.00261301 3.93438e-19)
(1.00274 -0.00262791 3.43987e-18)
(1.00267 -0.00264399 -5.22525e-19)
(1.00261 -0.00266316 1.45744e-18)
(1.00255 -0.00268088 9.37541e-19)
(1.00245 -0.00267788 8.36241e-19)
(1.00313 -0.00123403 -1.72761e-19)
(1.00319 -0.00217544 -2.33365e-19)
(1.00325 -0.00305827 -7.3136e-20)
(1.00328 -0.00357787 -3.47383e-20)
(1.00329 -0.00371041 4.80096e-19)
(1.0033 -0.00354805 1.47462e-20)
(1.00329 -0.0032116 -6.87294e-19)
(1.00327 -0.00281063 1.67739e-19)
(1.00324 -0.00242846 -1.16447e-19)
(1.0032 -0.0021187 -2.17772e-19)
(1.00318 -0.00190726 -3.47168e-19)
(1.00316 -0.00179755 3.02826e-20)
(1.00315 -0.00177721 -1.13055e-18)
(1.00316 -0.00182494 8.79075e-20)
(1.00317 -0.00191642 8.24054e-19)
(1.00319 -0.00202887 -3.18308e-19)
(1.0032 -0.00214365 8.62205e-19)
(1.00321 -0.00224791 -1.33888e-18)
(1.0032 -0.00233433 -1.08238e-18)
(1.00318 -0.00240058 -2.01532e-18)
(1.00315 -0.00244817 -3.86233e-19)
(1.0031 -0.0024809 2.21214e-18)
(1.00305 -0.00250356 1.59593e-18)
(1.00299 -0.00252092 -1.61282e-18)
(1.00292 -0.00253686 -1.94226e-18)
(1.00285 -0.002554 -1.61558e-18)
(1.00278 -0.00257289 -6.32112e-19)
(1.00271 -0.00259533 -2.57397e-20)
(1.00264 -0.00261685 3.29423e-19)
(1.00254 -0.0026167 4.0207e-19)
(1.00341 -0.00124087 2.10046e-19)
(1.00346 -0.00220829 7.82564e-20)
(1.00351 -0.00310904 -4.527e-20)
(1.00353 -0.00363487 -3.49889e-19)
(1.00353 -0.00376391 -2.74983e-20)
(1.00351 -0.00359113 -6.46864e-20)
(1.0035 -0.00324006 1.41637e-19)
(1.00346 -0.0028226 7.99214e-19)
(1.00343 -0.00242384 -4.6147e-19)
(1.00338 -0.00209865 -5.03529e-19)
(1.00335 -0.00187364 3.86556e-19)
(1.00332 -0.00175252 -2.89714e-19)
(1.00331 -0.00172287 1.95988e-18)
(1.00331 -0.0017632 2.16459e-19)
(1.00332 -0.00184885 -1.99659e-19)
(1.00333 -0.00195673 4.00325e-19)
(1.00334 -0.00206793 6.6201e-19)
(1.00334 -0.00216938 4.61355e-19)
(1.00333 -0.00225367 1.7535e-18)
(1.0033 -0.0023184 -4.74049e-19)
(1.00327 -0.00236509 -9.25782e-19)
(1.00322 -0.00239754 -3.99102e-19)
(1.00316 -0.00242059 -2.28813e-19)
(1.0031 -0.002439 7.41087e-19)
(1.00302 -0.00245663 8.43675e-19)
(1.00295 -0.00247608 5.25589e-19)
(1.00287 -0.00249781 1.38507e-18)
(1.0028 -0.00252359 -3.74264e-19)
(1.00273 -0.00254892 -2.69335e-18)
(1.00263 -0.00255173 -1.73124e-18)
(1.00369 -0.00123403 -7.68811e-20)
(1.00372 -0.00222576 5.61528e-20)
(1.00376 -0.0031451 3.39418e-19)
(1.00376 -0.00367896 -2.05757e-19)
(1.00375 -0.00380653 -5.26613e-19)
(1.00373 -0.00362515 -3.4396e-19)
(1.0037 -0.00326084 -6.60834e-20)
(1.00365 -0.00282782 -1.39267e-18)
(1.0036 -0.00241301 -1.58668e-19)
(1.00355 -0.00207261 1.77952e-18)
(1.00351 -0.00183405 -4.26129e-19)
(1.00347 -0.00170143 -5.25868e-19)
(1.00346 -0.00166237 -1.72038e-18)
(1.00345 -0.00169522 -8.15798e-19)
(1.00345 -0.00177502 -8.93382e-20)
(1.00346 -0.00187839 -1.41685e-18)
(1.00346 -0.00198613 -7.59277e-19)
(1.00346 -0.00208496 -2.44353e-19)
(1.00344 -0.00216733 -1.46842e-18)
(1.00342 -0.00223077 1.69806e-18)
(1.00338 -0.00227678 2.01545e-18)
(1.00333 -0.00230918 -2.11855e-18)
(1.00327 -0.0023328 -2.3538e-18)
(1.0032 -0.00235243 -2.39299e-18)
(1.00312 -0.00237191 4.44652e-19)
(1.00305 -0.00239379 4.18337e-19)
(1.00297 -0.00241848 5.96456e-19)
(1.00289 -0.00244767 -1.1103e-18)
(1.00282 -0.00247687 2.96643e-18)
(1.00272 -0.0024827 -5.2827e-19)
(1.00395 -0.00121854 -3.00606e-20)
(1.00397 -0.00223163 -2.75861e-19)
(1.004 -0.00316868 -9.49853e-20)
(1.004 -0.00371113 4.78971e-20)
(1.00397 -0.00383843 4.11517e-19)
(1.00393 -0.00364977 5.04993e-19)
(1.00389 -0.00327345 4.04219e-20)
(1.00384 -0.00282586 -1.31003e-19)
(1.00377 -0.00239573 1.13246e-18)
(1.00371 -0.00204063 -8.03739e-19)
(1.00366 -0.00178886 1.23384e-18)
(1.00362 -0.00164497 4.3395e-19)
(1.00359 -0.0015967 -2.72464e-19)
(1.00358 -0.00162226 -2.73524e-19)
(1.00358 -0.00169643 -4.1107e-19)
(1.00358 -0.00179552 3.94439e-19)
(1.00358 -0.00190004 5.17763e-20)
(1.00357 -0.00199649 9.37713e-19)
(1.00355 -0.00207719 9.01597e-19)
(1.00352 -0.00213957 -2.05806e-19)
(1.00348 -0.0021851 -7.2484e-19)
(1.00343 -0.00221762 1.45309e-18)
(1.00336 -0.00224197 5.98207e-19)
(1.00329 -0.00226294 2.71997e-18)
(1.00322 -0.00228435 -1.46532e-18)
(1.00314 -0.00230873 -1.22326e-18)
(1.00306 -0.00233641 -8.73035e-19)
(1.00298 -0.00236904 2.83115e-18)
(1.0029 -0.00240208 -2.71934e-18)
(1.0028 -0.00241096 2.09969e-18)
(1.00421 -0.00119804 -9.04554e-20)
(1.00422 -0.00222884 7.64581e-20)
(1.00423 -0.00318169 -3.25492e-19)
(1.00422 -0.00373231 3.37241e-19)
(1.00418 -0.00385977 -2.8527e-19)
(1.00413 -0.00366467 -8.87743e-19)
(1.00408 -0.00327726 8.95857e-19)
(1.00401 -0.00281596 -6.74761e-20)
(1.00394 -0.00237121 -1.4315e-18)
(1.00387 -0.00200195 -1.5908e-19)
(1.0038 -0.00173736 1.89367e-19)
(1.00375 -0.00158251 4.41321e-19)
(1.00372 -0.00152527 1.5658e-18)
(1.0037 -0.00154377 1.09658e-18)
(1.0037 -0.00161254 9.48539e-19)
(1.00369 -0.00170759 -4.28109e-19)
(1.00369 -0.00180915 -1.44585e-18)
(1.00367 -0.00190349 -1.93966e-18)
(1.00365 -0.00198277 1.01513e-18)
(1.00362 -0.00204433 1.00487e-18)
(1.00358 -0.00208962 -2.05608e-18)
(1.00352 -0.00212247 3.82107e-19)
(1.00346 -0.00214772 1.31346e-18)
(1.00338 -0.00217019 -1.60886e-18)
(1.00331 -0.00219366 9.9556e-19)
(1.00322 -0.00222064 1.91909e-18)
(1.00314 -0.00225141 -8.79425e-19)
(1.00306 -0.00228753 -2.05416e-18)
(1.00298 -0.00232447 1.60895e-18)
(1.00287 -0.00233644 -8.30809e-20)
(1.00445 -0.00117362 -8.91945e-21)
(1.00445 -0.00221856 5.59373e-20)
(1.00445 -0.00318509 2.89882e-19)
(1.00443 -0.00374319 3.90471e-19)
(1.00438 -0.00387095 -7.97062e-20)
(1.00432 -0.00367 -1.30151e-19)
(1.00426 -0.00327232 -9.84416e-19)
(1.00418 -0.00279819 9.51632e-19)
(1.0041 -0.00233968 9.57116e-19)
(1.00401 -0.00195699 -3.61451e-19)
(1.00394 -0.00168022 -1.58678e-18)
(1.00388 -0.00151493 -1.32593e-18)
(1.00384 -0.00144918 -4.29181e-19)
(1.00382 -0.001461 -8.02933e-19)
(1.00381 -0.0015247 -2.60099e-19)
(1.0038 -0.00161601 1.04229e-18)
(1.00379 -0.00171487 8.59931e-19)
(1.00377 -0.00180734 7.16261e-19)
(1.00375 -0.00188538 -4.21671e-18)
(1.00372 -0.00194629 4.78685e-19)
(1.00367 -0.00199144 3.43273e-18)
(1.00361 -0.00202471 -2.57503e-19)
(1.00355 -0.00205094 2.68384e-19)
(1.00347 -0.00207494 1.64911e-18)
(1.00339 -0.00210052 -1.27198e-19)
(1.00331 -0.00213012 -2.56483e-18)
(1.00322 -0.00216397 1.50912e-19)
(1.00314 -0.00220358 2.32046e-18)
(1.00306 -0.00224436 4.5956e-19)
(1.00295 -0.00225929 -2.31031e-19)
(1.00467 -0.00114685 1.77055e-20)
(1.00467 -0.00220229 2.96374e-20)
(1.00466 -0.00318014 -4.9879e-20)
(1.00463 -0.00374471 -2.70973e-19)
(1.00457 -0.0038726 4.8008e-20)
(1.00451 -0.00366608 1.32506e-18)
(1.00443 -0.00325867 2.17541e-19)
(1.00434 -0.00277235 -1.05892e-18)
(1.00424 -0.00230073 1.73993e-19)
(1.00415 -0.00190526 1.48572e-18)
(1.00407 -0.00161689 1.12914e-18)
(1.00401 -0.00144169 1.14005e-18)
(1.00396 -0.00136789 5.19098e-19)
(1.00393 -0.00137347 -1.15023e-19)
(1.00391 -0.00143249 -2.21225e-18)
(1.00389 -0.00152041 1.44536e-19)
(1.00388 -0.00161687 8.48361e-19)
(1.00386 -0.00170772 -1.22819e-18)
(1.00384 -0.00178476 8.17915e-19)
(1.0038 -0.0018452 -1.07916e-18)
(1.00375 -0.00189039 -8.81191e-19)
(1.0037 -0.00192418 1.34562e-18)
(1.00363 -0.00195143 9.75163e-19)
(1.00355 -0.00197701 -5.7271e-20)
(1.00347 -0.00200468 6.88459e-19)
(1.00339 -0.00203688 -3.69389e-19)
(1.0033 -0.00207377 2.08094e-19)
(1.00322 -0.0021168 3.67501e-19)
(1.00314 -0.00216127 -8.82544e-20)
(1.00302 -0.00217895 -1.00827e-18)
(1.00489 -0.00111665 4.94558e-20)
(1.00487 -0.00217974 -4.50605e-20)
(1.00486 -0.0031671 5.32395e-19)
(1.00482 -0.00373747 -1.4887e-19)
(1.00476 -0.00386556 2.55451e-19)
(1.00468 -0.00365392 -9.67025e-19)
(1.00459 -0.00323745 -1.86599e-19)
(1.00449 -0.00273965 9.96696e-19)
(1.00439 -0.00225561 5.61638e-19)
(1.00429 -0.00184795 -1.79862e-18)
(1.0042 -0.00154853 4.79886e-19)
(1.00412 -0.00136391 -9.0846e-19)
(1.00407 -0.00128257 9.85287e-20)
(1.00403 -0.00128234 7.9053e-19)
(1.00401 -0.00133711 1.67628e-18)
(1.00399 -0.00142199 1.10113e-18)
(1.00397 -0.00151636 -2.86056e-19)
(1.00395 -0.00160582 2.06144e-18)
(1.00392 -0.0016821 2.05919e-18)
(1.00388 -0.00174226 -6.74717e-19)
(1.00384 -0.00178766 1.08885e-18)
(1.00378 -0.0018221 -4.07526e-18)
(1.00371 -0.00185051 -1.36659e-18)
(1.00363 -0.00187772 -3.02965e-19)
(1.00355 -0.0019075 1.12872e-18)
(1.00347 -0.00194224 3.04258e-18)
(1.00338 -0.00198208 1.50039e-18)
(1.00329 -0.00202837 -2.71033e-18)
(1.00321 -0.00207633 -1.68783e-18)
(1.00309 -0.00209641 7.79846e-20)
(1.00509 -0.00108491 1.12133e-19)
(1.00507 -0.00215286 3.33975e-20)
(1.00504 -0.00314768 -7.32883e-19)
(1.005 -0.00372302 -2.65902e-19)
(1.00493 -0.00385129 -5.53271e-19)
(1.00484 -0.00363512 1.22976e-18)
(1.00474 -0.00321032 -1.21113e-19)
(1.00464 -0.00270182 5.80373e-19)
(1.00452 -0.00220592 -6.27788e-19)
(1.00441 -0.0017865 -1.27284e-19)
(1.00431 -0.00147627 -5.81139e-20)
(1.00423 -0.00128253 1.02996e-18)
(1.00417 -0.00119385 -2.03555e-19)
(1.00413 -0.00118814 4.74097e-20)
(1.00409 -0.0012389 1.82576e-18)
(1.00407 -0.00132106 -4.86062e-19)
(1.00405 -0.00141353 9.49555e-19)
(1.00403 -0.00150188 -1.24015e-18)
(1.004 -0.00157753 -2.3439e-18)
(1.00396 -0.00163766 8.77112e-19)
(1.00391 -0.00168346 -2.50763e-18)
(1.00385 -0.00171891 7.73037e-19)
(1.00379 -0.00174876 8.92269e-19)
(1.00371 -0.00177793 -4.92608e-19)
(1.00363 -0.00181006 -6.55992e-20)
(1.00354 -0.00184755 -1.28099e-18)
(1.00345 -0.0018904 -2.86288e-18)
(1.00336 -0.00193997 1.30732e-18)
(1.00328 -0.00199126 -7.53309e-19)
(1.00316 -0.0020136 1.40766e-19)
(1.00529 -0.00104918 8.16873e-20)
(1.00525 -0.00211986 2.06665e-19)
(1.00522 -0.00312078 3.87309e-19)
(1.00517 -0.00370051 5.78314e-19)
(1.00509 -0.00382927 1.48029e-18)
(1.005 -0.00360929 -4.83031e-19)
(1.00489 -0.00317729 1.17339e-18)
(1.00478 -0.00265907 -1.24718e-18)
(1.00465 -0.00215219 -4.88495e-19)
(1.00453 -0.00172148 3.08175e-20)
(1.00443 -0.00140086 -1.19367e-18)
(1.00434 -0.0011981 -8.85307e-19)
(1.00427 -0.00110231 6.87821e-19)
(1.00422 -0.00109115 8.19329e-19)
(1.00418 -0.00113826 -3.43494e-18)
(1.00415 -0.00121775 9.94283e-19)
(1.00413 -0.0013086 -5.40304e-19)
(1.00411 -0.0013958 2.64308e-18)
(1.00407 -0.00147102 2.25756e-19)
(1.00404 -0.00153108 9.16074e-19)
(1.00399 -0.00157752 1.30016e-18)
(1.00393 -0.00161406 1.52144e-18)
(1.00386 -0.00164576 -1.90793e-18)
(1.00378 -0.0016772 -1.29813e-18)
(1.0037 -0.00171213 -8.61649e-19)
(1.00361 -0.00175264 -8.9543e-19)
(1.00352 -0.00179882 2.36113e-18)
(1.00343 -0.00185176 9.63486e-19)
(1.00335 -0.00190652 3.40864e-18)
(1.00322 -0.00193123 -4.52728e-20)
(1.00547 -0.00101005 -2.18893e-19)
(1.00543 -0.00208125 1.47695e-20)
(1.00539 -0.00308622 1.95879e-19)
(1.00533 -0.00366997 -4.96948e-19)
(1.00524 -0.00379884 -1.63987e-18)
(1.00514 -0.00357583 -2.21769e-19)
(1.00503 -0.00313712 -1.70346e-18)
(1.0049 -0.00261033 -3.99682e-20)
(1.00477 -0.00209288 1.69906e-19)
(1.00465 -0.00165169 1.29967e-18)
(1.00453 -0.00132067 6.91136e-19)
(1.00444 -0.00110939 1.26474e-18)
(1.00436 -0.00100619 2.8118e-19)
(1.0043 -0.000990247 -3.0273e-18)
(1.00426 -0.00103337 2.10578e-18)
(1.00423 -0.00111122 -3.84123e-18)
(1.0042 -0.0012001 -2.54792e-18)
(1.00418 -0.00128702 6.94488e-19)
(1.00414 -0.00136134 -4.81928e-19)
(1.0041 -0.00142186 1.7511e-19)
(1.00405 -0.00146831 -2.67915e-18)
(1.004 -0.00150634 7.49453e-19)
(1.00393 -0.00153937 1.89069e-18)
(1.00385 -0.00157348 -4.65281e-19)
(1.00377 -0.00161083 -2.54179e-18)
(1.00368 -0.0016548 9.87594e-19)
(1.00359 -0.00170401 -2.18528e-18)
(1.0035 -0.0017608 -3.87192e-19)
(1.00341 -0.00181891 -1.895e-18)
(1.00329 -0.00184653 2.05258e-18)
(1.00565 -0.000968712 2.29885e-19)
(1.0056 -0.00203787 -3.99443e-19)
(1.00555 -0.0030471 -5.32179e-19)
(1.00548 -0.00363302 8.86006e-20)
(1.00539 -0.00376297 4.40519e-19)
(1.00528 -0.00353585 6.09587e-19)
(1.00516 -0.0030918 3.36265e-19)
(1.00503 -0.00255578 2.61489e-19)
(1.00489 -0.0020293 -5.8232e-19)
(1.00476 -0.00157712 -1.25667e-18)
(1.00464 -0.00123722 6.52989e-19)
(1.00453 -0.0010166 -1.18263e-18)
(1.00445 -0.000907615 -3.6084e-19)
(1.00438 -0.000885512 1.91204e-18)
(1.00434 -0.000927366 -2.10219e-18)
(1.0043 -0.00100117 9.66783e-19)
(1.00427 -0.00109062 1.51444e-19)
(1.00425 -0.00117462 -1.49619e-18)
(1.00421 -0.00125009 3.63499e-18)
(1.00417 -0.00130852 7.65952e-19)
(1.00412 -0.0013565 2.02906e-18)
(1.00406 -0.0013935 -3.06877e-18)
(1.00399 -0.00142886 -2.68955e-19)
(1.00392 -0.00146314 1.41021e-18)
(1.00383 -0.00150379 2.52924e-18)
(1.00375 -0.001549 -2.88865e-19)
(1.00366 -0.00160247 1.93313e-18)
(1.00357 -0.00166164 -7.95316e-19)
(1.00348 -0.00172471 -9.26922e-19)
(1.00335 -0.00175464 -3.31985e-18)
(1.00583 -0.000924851 -9.60758e-21)
(1.00576 -0.00199496 1.95376e-19)
(1.0057 -0.00300781 5.25788e-19)
(1.00563 -0.00359879 2.14425e-19)
(1.00552 -0.00372869 3.97064e-19)
(1.0054 -0.00349944 -1.37021e-18)
(1.00528 -0.00304827 -2.72741e-19)
(1.00514 -0.00250445 8.76897e-19)
(1.005 -0.00196734 1.06353e-18)
(1.00486 -0.00150594 1.2784e-18)
(1.00474 -0.00115582 -9.32908e-19)
(1.00462 -0.000927955 2.69795e-19)
(1.00453 -0.000811123 -1.24572e-18)
(1.00446 -0.000786193 1.54861e-18)
(1.00441 -0.000821487 1.82892e-18)
(1.00437 -0.000894623 -7.79985e-19)
(1.00434 -0.000978878 2.67124e-18)
(1.00431 -0.00106341 1.94383e-19)
(1.00428 -0.00113505 -1.07434e-18)
(1.00424 -0.00119455 -2.76708e-18)
(1.00419 -0.00123971 -1.49321e-18)
(1.00413 -0.00127813 2.80797e-18)
(1.00406 -0.00131146 1.85181e-18)
(1.00398 -0.00134772 7.11768e-19)
(1.0039 -0.00138737 -1.75116e-18)
(1.00381 -0.00143591 1.8392e-19)
(1.00372 -0.00149028 5.85866e-19)
(1.00363 -0.00155505 4.55883e-19)
(1.00354 -0.00162039 2.8029e-18)
(1.00342 -0.00165554 4.41659e-19)
(1.00599 -0.000882558 -1.33593e-19)
(1.00591 -0.00195543 -1.55928e-19)
(1.00584 -0.00297482 -3.15937e-19)
(1.00576 -0.00357185 -1.56793e-19)
(1.00565 -0.00370288 -1.01526e-18)
(1.00552 -0.00347065 1.04574e-18)
(1.00539 -0.00301205 -2.05513e-19)
(1.00525 -0.00245907 -1.0219e-19)
(1.00511 -0.0019114 2.45486e-19)
(1.00496 -0.00144026 -9.41164e-19)
(1.00483 -0.00108082 -2.63601e-19)
(1.00471 -0.000845218 4.69159e-19)
(1.00462 -0.000721944 2.41278e-19)
(1.00454 -0.000690143 -6.70695e-19)
(1.00448 -0.000720065 1.84719e-18)
(1.00444 -0.000788001 1.50967e-18)
(1.00441 -0.000868142 -2.04723e-18)
(1.00438 -0.000949429 1.32917e-19)
(1.00434 -0.00101873 -2.23266e-18)
(1.0043 -0.00107643 1.72442e-18)
(1.00425 -0.00112021 2.57599e-18)
(1.00419 -0.00115726 -9.89841e-20)
(1.00413 -0.0011895 -1.96942e-18)
(1.00405 -0.00122479 -1.99704e-18)
(1.00397 -0.00126454 1.48405e-18)
(1.00388 -0.00131403 -6.35655e-19)
(1.00378 -0.00137176 -1.02972e-18)
(1.00369 -0.00143935 1.13738e-18)
(1.0036 -0.00151134 8.14311e-19)
(1.00348 -0.00154834 1.20453e-18)
(1.00615 -0.000843953 3.23451e-20)
(1.00606 -0.00191832 2.6788e-19)
(1.00598 -0.00294552 -3.01651e-19)
(1.00589 -0.00354657 -2.41832e-19)
(1.00577 -0.00367924 9.36997e-19)
(1.00564 -0.00344145 -2.00694e-19)
(1.0055 -0.00297549 8.24864e-19)
(1.00535 -0.00241124 -8.19397e-19)
(1.00521 -0.00185403 -1.11499e-18)
(1.00506 -0.00137228 -3.72757e-19)
(1.00492 -0.00100533 2.00851e-18)
(1.0048 -0.000761357 7.96315e-19)
(1.0047 -0.00063222 -1.58531e-18)
(1.00462 -0.000592108 -1.62251e-18)
(1.00456 -0.000617843 -3.11696e-18)
(1.00451 -0.000677278 -1.8289e-19)
(1.00448 -0.00075558 1.45582e-18)
(1.00444 -0.000830805 6.34365e-19)
(1.00441 -0.00089971 -2.66138e-19)
(1.00437 -0.00095293 -2.28744e-18)
(1.00432 -0.000996808 -2.42105e-18)
(1.00426 -0.00103001 -1.46147e-18)
(1.00419 -0.00106236 -5.79145e-19)
(1.00412 -0.00109477 2.54607e-18)
(1.00403 -0.00113621 4.99521e-20)
(1.00394 -0.00118557 1.45522e-18)
(1.00385 -0.00124721 -5.0485e-19)
(1.00375 -0.0013175 -3.92264e-18)
(1.00366 -0.00139603 -3.26966e-18)
(1.00353 -0.00143662 -5.98973e-19)
(1.00629 -0.000799821 -1.50231e-19)
(1.00619 -0.00187685 -3.13487e-19)
(1.00611 -0.00290915 1.20839e-19)
(1.00601 -0.00351492 3.25206e-19)
(1.00589 -0.00364666 -6.9659e-19)
(1.00575 -0.00340425 -2.72106e-19)
(1.00561 -0.00292915 -8.75418e-20)
(1.00546 -0.00235539 1.00986e-18)
(1.00531 -0.00178787 1.2996e-18)
(1.00516 -0.0012979 7.76418e-19)
(1.00501 -0.000922893 3.11185e-19)
(1.00489 -0.000673019 -9.33121e-19)
(1.00478 -0.000536693 1.33433e-18)
(1.0047 -0.0004921 -5.95487e-19)
(1.00463 -0.000509904 2.6757e-18)
(1.00459 -0.000566865 -1.09253e-18)
(1.00455 -0.000638894 -2.2978e-20)
(1.00451 -0.000712358 -1.62992e-18)
(1.00448 -0.000776125 1.70816e-18)
(1.00444 -0.00082823 3.06218e-18)
(1.00439 -0.000867866 1.26162e-18)
(1.00433 -0.000900283 8.25773e-20)
(1.00426 -0.000929393 1.14368e-18)
(1.00418 -0.000962444 6.71839e-19)
(1.0041 -0.00100275 -1.93563e-18)
(1.004 -0.00105501 -2.1809e-18)
(1.0039 -0.00111708 5.14167e-19)
(1.0038 -0.00119289 2.75458e-18)
(1.00371 -0.00127341 1.71414e-18)
(1.00358 -0.00131972 2.14173e-18)
(1.00642 -0.000754829 7.67705e-20)
(1.00632 -0.0018324 -6.41757e-20)
(1.00623 -0.00286888 4.87872e-19)
(1.00613 -0.00347728 9.25645e-20)
(1.006 -0.00360785 6.40507e-19)
(1.00586 -0.00335988 6.78292e-20)
(1.00571 -0.00287651 -7.88736e-19)
(1.00556 -0.00229315 -9.55281e-20)
(1.0054 -0.00171644 -6.41267e-19)
(1.00525 -0.00121809 -3.59445e-19)
(1.0051 -0.000836065 -3.34384e-18)
(1.00497 -0.000579802 -1.43284e-18)
(1.00486 -0.00043817 8.45807e-19)
(1.00478 -0.000387961 1.80134e-18)
(1.00471 -0.000401978 -8.44677e-19)
(1.00466 -0.000454307 9.70604e-19)
(1.00462 -0.000522912 -5.07205e-19)
(1.00458 -0.000592298 1.99596e-20)
(1.00455 -0.00065324 1.24315e-18)
(1.0045 -0.000701916 -3.32809e-18)
(1.00446 -0.000739218 7.00892e-19)
(1.0044 -0.000769135 -7.15939e-19)
(1.00433 -0.000797257 -3.59386e-19)
(1.00425 -0.00082965 -3.0893e-18)
(1.00416 -0.000871096 7.69388e-19)
(1.00406 -0.000924174 7.35852e-19)
(1.00396 -0.000989117 4.35023e-19)
(1.00386 -0.0010663 6.37574e-19)
(1.00376 -0.00115131 1.4471e-18)
(1.00363 -0.00119824 -3.29598e-18)
(1.00655 -0.000708182 4.22156e-20)
(1.00644 -0.00178598 6.53423e-19)
(1.00635 -0.00282582 -1.44e-19)
(1.00624 -0.0034365 6.46441e-19)
(1.00612 -0.00356568 2.34222e-19)
(1.00597 -0.00331261 3.34452e-19)
(1.00581 -0.00282131 1.06653e-18)
(1.00565 -0.00222889 2.95992e-19)
(1.00549 -0.00164305 1.53695e-19)
(1.00534 -0.00113649 -7.23934e-20)
(1.00519 -0.000747239 3.22332e-19)
(1.00506 -0.000484917 2.23823e-19)
(1.00495 -0.000338108 -6.20679e-20)
(1.00486 -0.000283693 -1.00067e-18)
(1.00479 -0.000293817 1.04778e-18)
(1.00474 -0.000342732 -7.30188e-19)
(1.00469 -0.0004079 -4.78503e-19)
(1.00466 -0.000474163 6.63359e-19)
(1.00462 -0.000531935 -6.74355e-19)
(1.00458 -0.000577736 1.87592e-18)
(1.00453 -0.000612549 1.25948e-18)
(1.00447 -0.000640786 -3.48279e-19)
(1.0044 -0.000668085 -1.63008e-18)
(1.00432 -0.000700677 -4.11845e-19)
(1.00423 -0.000743018 4.45497e-19)
(1.00413 -0.000797748 -9.73763e-19)
(1.00402 -0.000864291 1.55771e-18)
(1.00391 -0.000944119 -2.1685e-18)
(1.00381 -0.00103207 -2.74165e-18)
(1.00367 -0.00108009 1.31174e-18)
(1.00667 -0.000660461 -1.24865e-19)
(1.00655 -0.00173816 -4.95422e-19)
(1.00646 -0.00278104 -1.50331e-19)
(1.00635 -0.00339365 -4.61382e-19)
(1.00622 -0.00352138 -3.94861e-19)
(1.00607 -0.00326314 -6.86071e-19)
(1.00591 -0.00276396 -5.91111e-19)
(1.00575 -0.00216222 -2.02376e-19)
(1.00558 -0.001567 -6.2822e-19)
(1.00542 -0.0010518 -3.9093e-19)
(1.00527 -0.000655167 7.59617e-19)
(1.00514 -0.000386781 2.51464e-18)
(1.00503 -0.000235214 1.35839e-18)
(1.00494 -0.000176857 3.07353e-18)
(1.00487 -0.000183988 -3.42866e-18)
(1.00481 -0.000229935 -3.64193e-19)
(1.00477 -0.000292377 -1.27176e-18)
(1.00473 -0.000355865 5.2958e-19)
(1.00469 -0.000410972 1.33995e-18)
(1.00465 -0.000454323 1.68764e-18)
(1.0046 -0.000487326 -3.05461e-18)
(1.00454 -0.000514455 2.66475e-18)
(1.00447 -0.000541539 2.38903e-18)
(1.00439 -0.000574573 7.49661e-19)
(1.00429 -0.000618035 -1.31965e-18)
(1.00419 -0.000674345 1.67919e-18)
(1.00408 -0.000743092 -4.99169e-19)
(1.00397 -0.000825273 2.35597e-18)
(1.00386 -0.000916164 1.04638e-18)
(1.00372 -0.000965642 -7.75162e-19)
(1.00679 -0.000612375 1.60351e-19)
(1.00667 -0.00169001 3.96261e-19)
(1.00657 -0.00273565 5.22278e-19)
(1.00646 -0.00334997 -1.90628e-19)
(1.00633 -0.00347602 -3.69172e-19)
(1.00617 -0.00321247 1.15951e-18)
(1.00601 -0.00270523 1.8813e-19)
(1.00584 -0.00209406 1.85857e-19)
(1.00567 -0.00148932 5.30791e-19)
(1.00551 -0.000965454 3.10064e-18)
(1.00536 -0.000561503 -1.13959e-18)
(1.00522 -0.000287321 -3.24684e-19)
(1.00511 -0.000131181 -3.94719e-18)
(1.00502 -6.95477e-05 -2.70081e-18)
(1.00495 -7.38487e-05 3.29324e-19)
(1.00489 -0.000117308 1.83397e-18)
(1.00485 -0.000177312 -3.95825e-19)
(1.00481 -0.000238258 -4.50725e-19)
(1.00477 -0.000290899 -1.99245e-18)
(1.00472 -0.000332088 -1.27444e-18)
(1.00467 -0.000363465 1.04649e-18)
(1.00462 -0.000389689 1.49393e-18)
(1.00454 -0.00041656 -8.67067e-19)
(1.00446 -0.00045005 1.11414e-18)
(1.00436 -0.000494516 2.025e-18)
(1.00425 -0.000552396 -3.04634e-19)
(1.00414 -0.000623223 -2.78252e-18)
(1.00402 -0.000708017 -1.9452e-18)
(1.00391 -0.000801804 -7.76356e-19)
(1.00376 -0.000852987 1.61475e-18)
(1.0069 -0.00056334 -4.25502e-20)
(1.00678 -0.00164096 -3.30276e-19)
(1.00667 -0.00268923 -2.71271e-19)
(1.00657 -0.003305 -1.07077e-18)
(1.00643 -0.00342912 4.47532e-19)
(1.00627 -0.00316004 7.59349e-20)
(1.0061 -0.00264458 -5.2501e-20)
(1.00593 -0.00202383 -1.5972e-18)
(1.00576 -0.00140944 3.61969e-19)
(1.00559 -0.000876801 -1.66238e-18)
(1.00544 -0.000465529 5.94822e-19)
(1.0053 -0.000185512 -1.53991e-18)
(1.00519 -2.50438e-05 1.89727e-18)
(1.0051 3.98749e-05 -8.66893e-19)
(1.00503 3.8152e-05 2.43707e-18)
(1.00497 -2.99639e-06 -1.65956e-18)
(1.00492 -6.07112e-05 7.94687e-19)
(1.00488 -0.000119328 -1.67279e-18)
(1.00484 -0.000169816 1.66456e-18)
(1.0048 -0.000209095 -2.08637e-18)
(1.00475 -0.000239085 8.39562e-19)
(1.00469 -0.000264552 -2.80868e-18)
(1.00461 -0.000291325 -2.27512e-18)
(1.00453 -0.000325336 2.64677e-18)
(1.00442 -0.000370879 -9.41056e-19)
(1.00431 -0.000430397 -1.59133e-18)
(1.00419 -0.000503393 1.17066e-18)
(1.00407 -0.000590739 3.31604e-18)
(1.00396 -0.000687587 2.46194e-18)
(1.00381 -0.000740478 3.27037e-18)
(1.00701 -0.000514589 -5.84787e-20)
(1.00688 -0.00159229 -5.06276e-19)
(1.00678 -0.002643 -3.49027e-19)
(1.00667 -0.00325994 2.34569e-18)
(1.00653 -0.00338189 1.12371e-18)
(1.00637 -0.00310707 -7.65018e-19)
(1.0062 -0.00258325 -6.71734e-19)
(1.00602 -0.00195286 4.51833e-19)
(1.00585 -0.00132877 -2.53806e-18)
(1.00568 -0.000787353 -6.44581e-19)
(1.00552 -0.000368733 1.49807e-18)
(1.00539 -8.29532e-05 -2.35428e-19)
(1.00527 8.18038e-05 4.53266e-19)
(1.00518 0.000149914 1.17819e-18)
(1.00511 0.000150779 -1.73925e-18)
(1.00505 0.00011184 1.88487e-18)
(1.005 5.6361e-05 7.6019e-19)
(1.00496 -1.49652e-07 2.5819e-18)
(1.00492 -4.86055e-05 -1.31338e-18)
(1.00487 -8.61368e-05 1.18863e-18)
(1.00482 -0.000114823 -1.48643e-18)
(1.00476 -0.000139568 4.67811e-19)
(1.00469 -0.000166237 3.88714e-18)
(1.0046 -0.00020075 -4.17502e-18)
(1.00449 -0.000247364 1.89875e-18)
(1.00438 -0.000308463 1.20421e-18)
(1.00425 -0.000383589 -1.98812e-18)
(1.00413 -0.000473456 -5.27568e-19)
(1.00401 -0.000573087 -6.75963e-18)
(1.00385 -0.000627717 -2.738e-18)
(1.00712 -0.000465024 -1.47633e-19)
(1.00699 -0.00154296 4.77759e-19)
(1.00688 -0.00259607 -5.02946e-19)
(1.00677 -0.00321403 -1.37845e-18)
(1.00663 -0.00333357 -1.6449e-18)
(1.00647 -0.0030528 -5.56713e-19)
(1.0063 -0.00252043 6.49834e-19)
(1.00612 -0.00188021 4.57842e-19)
(1.00594 -0.00124628 2.8904e-18)
(1.00576 -0.000695947 1.32201e-18)
(1.00561 -0.000269877 4.75071e-19)
(1.00547 2.1674e-05 6.18872e-19)
(1.00535 0.000190717 -2.43749e-18)
(1.00526 0.000262075 6.66122e-19)
(1.00519 0.000265339 2.74583e-18)
(1.00513 0.000228555 -1.4261e-18)
(1.00508 0.000175052 -1.00619e-18)
(1.00504 0.000120387 -6.55873e-19)
(1.00499 7.3731e-05 -9.84862e-19)
(1.00495 3.77313e-05 -1.64417e-18)
(1.0049 1.02064e-05 1.84688e-18)
(1.00483 -1.39066e-05 1.24264e-18)
(1.00476 -4.05229e-05 -3.43439e-18)
(1.00466 -7.5572e-05 3.33919e-18)
(1.00456 -0.000123265 5.14023e-19)
(1.00444 -0.00018599 -5.72384e-19)
(1.00431 -0.000263166 5.20628e-18)
(1.00418 -0.000355465 -4.74893e-18)
(1.00406 -0.000458012 1.7413e-18)
(1.00389 -0.000514404 1.64103e-18)
(1.00723 -0.000416294 2.02732e-19)
(1.0071 -0.00149459 9.34033e-20)
(1.00699 -0.00254999 9.13499e-19)
(1.00688 -0.00316876 -4.45102e-19)
(1.00674 -0.00328567 2.62984e-19)
(1.00657 -0.00299875 2.97506e-19)
(1.00639 -0.00245768 6.64145e-19)
(1.00621 -0.00180754 -7.96689e-19)
(1.00603 -0.00116372 -5.03018e-19)
(1.00585 -0.000604455 -2.67334e-19)
(1.00569 -0.000170965 -1.14736e-18)
(1.00555 0.000126312 1.78866e-19)
(1.00544 0.000299685 3.33598e-18)
(1.00535 0.000374079 -1.07748e-18)
(1.00527 0.000379735 -2.12108e-18)
(1.00521 0.000344929 2.84265e-18)
(1.00516 0.000293223 -3.11131e-19)
(1.00512 0.00024043 -1.29598e-18)
(1.00507 0.000195553 1.27442e-18)
(1.00503 0.000161165 1.05243e-18)
(1.00497 0.000134901 -1.70954e-18)
(1.00491 0.000111558 -2.2302e-18)
(1.00483 8.51472e-05 1.21277e-18)
(1.00473 4.97183e-05 4.13494e-19)
(1.00462 1.06911e-06 -1.83007e-19)
(1.0045 -6.31238e-05 -6.74361e-20)
(1.00437 -0.000142312 -6.38744e-18)
(1.00423 -0.000236995 4.3262e-18)
(1.00411 -0.000342247 4.29066e-18)
(1.00394 -0.000400505 -4.59017e-18)
(1.00733 -0.000366971 -1.46945e-19)
(1.0072 -0.00144584 5.31289e-19)
(1.00709 -0.00250361 -4.72997e-19)
(1.00698 -0.00312311 8.77467e-19)
(1.00684 -0.00323722 -5.18393e-19)
(1.00667 -0.00294393 -1.90574e-19)
(1.00649 -0.00239394 9.81826e-20)
(1.0063 -0.00173367 -4.20547e-19)
(1.00612 -0.00107977 -1.26004e-18)
(1.00594 -0.000511417 1.23696e-18)
(1.00578 -7.04034e-05 5.6977e-19)
(1.00564 0.000232748 8.30005e-19)
(1.00552 0.000410397 -2.00097e-18)
(1.00543 0.000487875 1.79195e-18)
(1.00536 0.000495841 -2.56953e-19)
(1.0053 0.000462944 -2.76295e-18)
(1.00524 0.000413021 1.79146e-18)
(1.0052 0.000362035 9.19619e-19)
(1.00515 0.000318835 -1.55422e-18)
(1.0051 0.000286007 1.54088e-19)
(1.00505 0.00026096 1.08255e-18)
(1.00498 0.000238376 1.23665e-18)
(1.0049 0.000212179 -1.17848e-18)
(1.0048 0.000176372 -4.02606e-18)
(1.00469 0.000126769 -7.76047e-19)
(1.00456 6.10483e-05 -4.81439e-20)
(1.00442 -2.0114e-05 2.83417e-18)
(1.00429 -0.000117192 -4.34932e-18)
(1.00416 -0.000225356 -3.26998e-18)
(1.00398 -0.000285619 -1.91541e-18)
(1.00744 -0.000318764 1.22248e-19)
(1.00731 -0.00139834 -5.0318e-19)
(1.0072 -0.00245841 2.86652e-19)
(1.00709 -0.0030785 -4.47695e-19)
(1.00695 -0.00318964 1.83445e-18)
(1.00678 -0.00288982 2.84733e-19)
(1.00659 -0.00233075 -4.72636e-19)
(1.0064 -0.00166025 -2.27302e-19)
(1.00621 -0.000996192 -3.86947e-19)
(1.00603 -0.000418731 -2.13684e-18)
(1.00587 2.98364e-05 -1.68334e-18)
(1.00572 0.00033884 7.10886e-19)
(1.00561 0.000520749 -1.64472e-19)
(1.00551 0.000601324 -1.22816e-18)
(1.00544 0.000611674 6.79631e-19)
(1.00538 0.000580703 3.15497e-18)
(1.00533 0.000532702 5.76235e-19)
(1.00528 0.000483532 5.21304e-19)
(1.00523 0.000442133 3.19869e-18)
(1.00518 0.000410942 -7.23841e-19)
(1.00512 0.000387234 -2.92834e-18)
(1.00506 0.000365548 1.89138e-18)
(1.00497 0.000339706 1.57441e-18)
(1.00487 0.000303659 1.6865e-18)
(1.00475 0.000253207 -2.40829e-18)
(1.00462 0.00018608 -6.94498e-19)
(1.00448 0.000102946 -4.64907e-18)
(1.00434 3.48462e-06 1.95225e-18)
(1.00421 -0.00010748 2.14025e-18)
(1.00402 -0.000169875 -4.91424e-19)
(1.00755 -0.000270061 2.71379e-19)
(1.00742 -0.00135055 1.36176e-19)
(1.00731 -0.00241308 8.64228e-20)
(1.0072 -0.00303376 4.6871e-20)
(1.00705 -0.00314182 -4.77714e-19)
(1.00688 -0.00283527 1.34605e-18)
(1.00669 -0.0022669 -2.97954e-19)
(1.0065 -0.00158592 -1.06177e-19)
(1.00631 -0.000911493 9.42095e-19)
(1.00612 -0.000324733 -1.24856e-18)
(1.00595 0.000131548 1.82266e-18)
(1.00581 0.000446482 -3.86647e-18)
(1.00569 0.00063274 1.82312e-18)
(1.0056 0.000716541 -8.42159e-19)
(1.00553 0.000729232 -4.40949e-19)
(1.00546 0.000700294 -2.02122e-18)
(1.00541 0.00065414 -1.89909e-19)
(1.00536 0.000606697 9.02273e-19)
(1.00531 0.000567062 -3.67301e-18)
(1.00526 0.000537459 8.81802e-19)
(1.0052 0.000515094 3.57173e-18)
(1.00513 0.000494319 -2.92071e-18)
(1.00504 0.000468855 6.75151e-19)
(1.00494 0.00043258 -1.61624e-19)
(1.00481 0.000381289 1.57448e-18)
(1.00468 0.000312715 -2.72566e-19)
(1.00454 0.000227633 7.37217e-18)
(1.00439 0.000125763 -9.13137e-19)
(1.00426 1.185e-05 2.09171e-18)
(1.00406 -5.2806e-05 4.03307e-18)
(1.00767 -0.000222816 -5.37309e-19)
(1.00753 -0.00130432 2.55553e-19)
(1.00742 -0.00236926 -5.47142e-20)
(1.00731 -0.00299043 1.13876e-18)
(1.00716 -0.00309526 -3.23633e-19)
(1.00699 -0.0027818 -1.40538e-18)
(1.0068 -0.00220397 2.76619e-19)
(1.0066 -0.00151239 1.67703e-18)
(1.00641 -0.000827499 4.29697e-19)
(1.00622 -0.000231366 6.22004e-19)
(1.00605 0.00023266 -3.18165e-18)
(1.0059 0.000553548 3.95446e-18)
(1.00578 0.00074427 -4.65268e-19)
(1.00569 0.000831227 -3.21258e-19)
(1.00561 0.000846341 -1.5545e-18)
(1.00555 0.000819404 -1.54686e-20)
(1.0055 0.000775067 -4.85031e-19)
(1.00544 0.000729552 -4.11697e-18)
(1.00539 0.000691812 2.14465e-18)
(1.00534 0.000664019 -5.47864e-19)
(1.00528 0.000643199 -3.92968e-18)
(1.0052 0.00062354 -1.39149e-19)
(1.00511 0.000598645 -1.62005e-18)
(1.00501 0.000562318 3.96933e-19)
(1.00488 0.000510328 1.32363e-18)
(1.00474 0.000440443 6.0722e-18)
(1.00459 0.000353455 -4.85795e-18)
(1.00444 0.000249218 -2.83578e-18)
(1.00431 0.000132463 -3.81932e-18)
(1.00411 6.55174e-05 1.29982e-18)
(1.00778 -0.000175282 3.31322e-19)
(1.00764 -0.00125798 1.72932e-20)
(1.00753 -0.00232548 1.16684e-19)
(1.00742 -0.00294715 3.88467e-19)
(1.00727 -0.00304866 -2.51417e-20)
(1.0071 -0.00272813 1.25739e-19)
(1.00691 -0.00214061 -6.2117e-19)
(1.00671 -0.00143816 -1.79522e-18)
(1.00651 -0.000742555 7.11507e-19)
(1.00631 -0.000136823 7.99844e-19)
(1.00614 0.000335122 4.5319e-18)
(1.006 0.00066217 -4.03615e-18)
(1.00588 0.000857407 -2.07893e-19)
(1.00578 0.000947611 1.54004e-18)
(1.0057 0.000965186 3.29444e-18)
(1.00564 0.000940306 -8.81218e-19)
(1.00558 0.000897873 1.08501e-18)
(1.00553 0.000854339 1.89219e-18)
(1.00547 0.000818488 -2.49495e-19)
(1.00542 0.000792541 3.22663e-19)
(1.00535 0.000773281 4.42085e-19)
(1.00528 0.000754764 -1.29972e-18)
(1.00519 0.000730465 7.38018e-19)
(1.00507 0.000694098 2.92406e-18)
(1.00494 0.000641409 3.34185e-18)
(1.0048 0.000570174 -4.60806e-18)
(1.00465 0.000481273 1.28269e-18)
(1.0045 0.000374636 3.47892e-18)
(1.00436 0.000254896 5.38123e-18)
(1.00415 0.000185539 -1.79374e-18)
(1.00789 -0.000129363 -2.73397e-20)
(1.00775 -0.00121328 -4.97009e-19)
(1.00765 -0.00228327 -6.6485e-19)
(1.00753 -0.00290537 -1.6764e-18)
(1.00739 -0.00300344 -5.06099e-19)
(1.00721 -0.00267568 1.45635e-18)
(1.00702 -0.0020783 1.90343e-19)
(1.00681 -0.00136484 2.00068e-18)
(1.00661 -0.000658386 -1.71139e-20)
(1.00642 -4.2959e-05 -2.25032e-19)
(1.00624 0.000437006 -6.66879e-19)
(1.00609 0.000770283 2.59363e-18)
(1.00597 0.000970089 8.93265e-19)
(1.00587 0.00106366 5.38997e-20)
(1.0058 0.00108386 -1.49504e-18)
(1.00573 0.00106113 -2.14128e-18)
(1.00567 0.00102086 1.93196e-18)
(1.00561 0.000979422 -1.98896e-19)
(1.00556 0.000945682 -1.54577e-18)
(1.0055 0.000921727 -2.12402e-18)
(1.00543 0.000904196 4.32267e-18)
(1.00535 0.000886983 2.21532e-18)
(1.00526 0.000863428 -2.43015e-18)
(1.00514 0.000827154 -4.70843e-18)
(1.00501 0.000773872 -8.76793e-18)
(1.00486 0.00070138 -2.02379e-18)
(1.00471 0.000610595 4.52376e-18)
(1.00455 0.000501569 5.34083e-18)
(1.00441 0.000378905 -4.55875e-18)
(1.00419 0.000307078 -8.07696e-19)
(1.00801 -8.32395e-05 2.66179e-19)
(1.00787 -0.00116848 -4.47795e-19)
(1.00776 -0.00224111 -1.62425e-19)
(1.00765 -0.00286367 -5.67592e-19)
(1.0075 -0.00295821 -9.87379e-20)
(1.00733 -0.00262306 -1.33937e-18)
(1.00713 -0.00201557 1.66597e-18)
(1.00692 -0.00129082 -2.26779e-18)
(1.00672 -0.000573251 -2.33549e-18)
(1.00652 5.21196e-05 -1.2161e-18)
(1.00634 0.000540329 -1.40862e-18)
(1.00619 0.000879974 6.02043e-19)
(1.00606 0.00108449 -2.54431e-18)
(1.00597 0.0011816 -3.75378e-19)
(1.00589 0.00120445 7.81775e-19)
(1.00582 0.00118404 3.27259e-19)
(1.00576 0.00114593 -1.40188e-19)
(1.0057 0.00110653 1.87982e-19)
(1.00564 0.00107492 -6.52618e-19)
(1.00558 0.00105294 2.2574e-18)
(1.00551 0.00103718 -2.33817e-18)
(1.00543 0.0010213 2.55571e-18)
(1.00533 0.000998511 7.04973e-18)
(1.00521 0.000962346 7.712e-20)
(1.00508 0.000908473 7.42075e-18)
(1.00493 0.0008347 5.57424e-18)
(1.00476 0.000742016 -3.51286e-18)
(1.0046 0.000630569 -6.75602e-18)
(1.00445 0.000504869 3.61186e-19)
(1.00423 0.000430439 -2.76631e-18)
(1.00814 -3.89937e-05 -3.77965e-19)
(1.00799 -0.00112552 7.49637e-19)
(1.00789 -0.00220069 6.60196e-19)
(1.00777 -0.00282359 -3.20626e-19)
(1.00763 -0.00291448 -1.20702e-19)
(1.00745 -0.00257176 8.76798e-19)
(1.00725 -0.001954 -4.44977e-19)
(1.00704 -0.00121779 3.08145e-18)
(1.00683 -0.000488947 3.9422e-18)
(1.00663 0.00014651 2.09602e-18)
(1.00644 0.00064307 3.63178e-19)
(1.00629 0.00098918 9.22204e-19)
(1.00616 0.00119859 2.88747e-18)
(1.00606 0.00129926 -2.1712e-18)
(1.00598 0.00132489 -1.48948e-18)
(1.00591 0.00130684 2.21414e-18)
(1.00585 0.00127093 -2.99044e-18)
(1.00579 0.00123385 1.35924e-18)
(1.00573 0.00120455 7.35993e-19)
(1.00566 0.00118482 -7.00432e-19)
(1.00559 0.00117104 1.03262e-18)
(1.00551 0.0011567 -3.84351e-18)
(1.0054 0.00113487 -7.30171e-18)
(1.00528 0.00109897 4.28057e-18)
(1.00514 0.00104463 -7.31303e-18)
(1.00499 0.000969679 -4.58361e-18)
(1.00482 0.000875142 -7.96252e-19)
(1.00465 0.000761298 2.08586e-18)
(1.0045 0.000632598 -4.66597e-18)
(1.00427 0.000555512 2.43611e-18)
(1.00826 5.2583e-06 -3.18561e-20)
(1.00812 -0.00108258 -3.91648e-20)
(1.00801 -0.00216036 3.012e-19)
(1.0079 -0.00278361 1.04306e-18)
(1.00775 -0.00287075 -4.95491e-19)
(1.00757 -0.00252029 -1.10949e-18)
(1.00737 -0.001892 -1.49844e-19)
(1.00716 -0.00114404 -4.97652e-19)
(1.00694 -0.000403637 -1.66545e-18)
(1.00674 0.000242178 -8.68535e-19)
(1.00655 0.00074731 -3.02107e-18)
(1.00639 0.00110012 -2.3007e-18)
(1.00626 0.00131453 -2.20053e-18)
(1.00616 0.00141887 1.54331e-18)
(1.00608 0.00144737 -6.83252e-19)
(1.00601 0.00143179 9.2381e-19)
(1.00594 0.00139817 3.61487e-18)
(1.00588 0.00136351 9.14429e-19)
(1.00582 0.00133654 1.99526e-18)
(1.00575 0.00131911 -1.37692e-18)
(1.00567 0.00130734 -2.0426e-18)
(1.00558 0.00129457 3.11882e-18)
(1.00548 0.00127372 7.09492e-20)
(1.00535 0.00123809 -5.0097e-18)
(1.00521 0.00118327 3.88585e-18)
(1.00505 0.0011071 -1.82227e-18)
(1.00488 0.00101067 3.27169e-18)
(1.0047 0.000894369 9.58471e-19)
(1.00455 0.000762535 3.3968e-18)
(1.00431 0.000682616 5.35232e-18)
(1.00839 4.75354e-05 -3.62262e-20)
(1.00825 -0.00104149 2.80695e-19)
(1.00814 -0.00212173 -7.27064e-19)
(1.00803 -0.0027452 9.66121e-21)
(1.00788 -0.00282845 1.23876e-18)
(1.0077 -0.00247007 -7.63326e-20)
(1.0075 -0.00183108 -1.01092e-18)
(1.00728 -0.00107119 5.69957e-19)
(1.00706 -0.000319037 -3.08799e-18)
(1.00685 0.00033729 -1.03962e-18)
(1.00666 0.000851152 4.89266e-18)
(1.0065 0.0012108 -8.69696e-19)
(1.00637 0.00143031 1.41957e-18)
(1.00626 0.00153849 2.39305e-18)
(1.00618 0.00157007 1.87361e-18)
(1.00611 0.00155709 -5.96323e-19)
(1.00604 0.0015261 -4.5387e-18)
(1.00597 0.00149401 -2.13788e-18)
(1.00591 0.00146962 -1.4697e-18)
(1.00583 0.00145467 4.03187e-18)
(1.00576 0.00144509 1.25729e-18)
(1.00566 0.00143405 1.26498e-18)
(1.00555 0.00141431 3.9462e-18)
(1.00542 0.00137906 5.96843e-18)
(1.00527 0.00132385 -1.14021e-18)
(1.00511 0.00124651 6.33612e-18)
(1.00493 0.00114821 -4.60862e-18)
(1.00475 0.00102945 4.46049e-18)
(1.00459 0.000894481 3.70427e-18)
(1.00435 0.000811673 -1.4276e-18)
(1.00852 8.97613e-05 4.01299e-19)
(1.00838 -0.00100041 -3.256e-19)
(1.00827 -0.00208313 8.44831e-19)
(1.00816 -0.0027068 -1.29459e-18)
(1.00801 -0.00278605 -3.09215e-19)
(1.00783 -0.00241957 -4.59734e-19)
(1.00762 -0.0017696 3.98299e-19)
(1.0074 -0.000997472 -1.84027e-18)
(1.00718 -0.000233274 -6.70038e-19)
(1.00697 0.000433846 -1.32927e-18)
(1.00677 0.00095669 -4.01744e-18)
(1.00661 0.00132335 -1.21203e-18)
(1.00648 0.00154811 -7.8979e-19)
(1.00637 0.00166032 -3.29664e-19)
(1.00628 0.00169504 -1.60494e-18)
(1.00621 0.00168484 2.53587e-19)
(1.00614 0.00165649 4.00976e-20)
(1.00607 0.00162691 -2.35002e-19)
(1.006 0.00160515 1.21183e-18)
(1.00592 0.00159265 -1.8265e-18)
(1.00584 0.00158531 2.86666e-18)
(1.00574 0.00157603 -3.13819e-18)
(1.00563 0.00155742 3.02132e-18)
(1.00549 0.00152256 -3.07082e-18)
(1.00534 0.00146695 -9.91932e-19)
(1.00517 0.00138843 -9.49998e-19)
(1.00499 0.00128823 5.76918e-19)
(1.00481 0.00116697 -2.71414e-18)
(1.00464 0.00102876 -2.74579e-18)
(1.00438 0.000942924 -3.50361e-18)
(1.00866 0.000129797 -6.04894e-19)
(1.00852 -0.000961319 -4.85684e-19)
(1.00841 -0.00204631 -2.98131e-19)
(1.0083 -0.00267001 1.82195e-18)
(1.00815 -0.00274509 6.64542e-19)
(1.00797 -0.00237031 -1.72886e-19)
(1.00776 -0.00170916 -2.57323e-18)
(1.00754 -0.000924597 1.22778e-18)
(1.00731 -0.000148157 9.13655e-19)
(1.00709 0.000529944 1.62156e-18)
(1.00689 0.00106193 2.22103e-18)
(1.00672 0.00143574 1.69016e-18)
(1.00659 0.00166599 2.81292e-18)
(1.00648 0.00178232 -4.98761e-19)
(1.00639 0.00182031 -1.66174e-18)
(1.00631 0.00181298 -2.27257e-18)
(1.00623 0.00178734 2.38885e-18)
(1.00616 0.00176059 1.34108e-18)
(1.00609 0.00174166 -4.79751e-19)
(1.00601 0.00173191 -3.57205e-19)
(1.00592 0.00172702 -8.04023e-18)
(1.00582 0.0017197 -3.07183e-19)
(1.0057 0.00170238 -7.73701e-18)
(1.00556 0.00166806 -1.3159e-18)
(1.00541 0.00161215 1.55653e-18)
(1.00523 0.00153253 -7.56825e-19)
(1.00505 0.00143047 3.41964e-18)
(1.00486 0.00130672 1.22983e-18)
(1.00469 0.00116528 1.25796e-18)
(1.00442 0.00107636 -3.74338e-18)
(1.0088 0.000169599 7.52388e-19)
(1.00866 -0.000922331 2.95345e-19)
(1.00856 -0.00200956 -1.80812e-19)
(1.00845 -0.0026332 -5.655e-19)
(1.0083 -0.00270396 -7.26371e-19)
(1.00811 -0.00232067 9.4407e-19)
(1.0079 -0.00164806 9.3829e-19)
(1.00767 -0.000850744 -2.09565e-18)
(1.00744 -6.17415e-05 1.57529e-18)
(1.00721 0.000627635 1.73306e-18)
(1.00701 0.00116901 -1.37462e-18)
(1.00684 0.00155021 2.11737e-18)
(1.0067 0.00178608 -3.638e-18)
(1.00659 0.00190663 -1.34738e-18)
(1.00649 0.00194801 3.63341e-18)
(1.00641 0.00194369 3.48866e-18)
(1.00634 0.00192084 -1.05846e-19)
(1.00626 0.00189704 -2.7027e-18)
(1.00618 0.00188093 1.89731e-18)
(1.0061 0.00187399 7.60193e-19)
(1.00601 0.00187156 7.81614e-18)
(1.0059 0.00186622 5.71297e-18)
(1.00578 0.00185022 7.39861e-18)
(1.00564 0.00181643 -3.85005e-18)
(1.00547 0.00176021 -3.03301e-18)
(1.00529 0.00167944 -3.28463e-18)
(1.0051 0.00157548 7.06489e-19)
(1.00491 0.00144918 -2.73941e-19)
(1.00473 0.00130439 4.76519e-18)
(1.00446 0.00121221 1.60243e-18)
(1.00895 0.000207145 -2.43277e-19)
(1.00881 -0.000885329 5.79983e-20)
(1.0087 -0.00197451 -5.85523e-19)
(1.00859 -0.00259788 1.1499e-19)
(1.00844 -0.00266415 1.12842e-18)
(1.00826 -0.00227213 2.91005e-19)
(1.00804 -0.00158785 2.73382e-18)
(1.00781 -0.000777556 1.72059e-18)
(1.00757 2.42254e-05 2.82314e-18)
(1.00734 0.000725076 -1.10109e-18)
(1.00714 0.00127603 -4.46942e-19)
(1.00696 0.00166481 1.1692e-18)
(1.00682 0.00190643 -1.90481e-18)
(1.0067 0.0020314 8.28705e-19)
(1.0066 0.00207643 -1.53052e-18)
(1.00652 0.00207523 -1.31826e-18)
(1.00644 0.00205555 4.5769e-19)
(1.00636 0.00203486 2.003e-18)
(1.00628 0.00202187 -2.81807e-18)
(1.00619 0.00201789 3.81565e-18)
(1.0061 0.00201811 5.87626e-20)
(1.00599 0.00201489 -7.83859e-18)
(1.00586 0.00200032 -5.55159e-18)
(1.00571 0.00196714 6.60636e-19)
(1.00554 0.00191068 4.35522e-18)
(1.00536 0.00182882 3.95144e-18)
(1.00516 0.00172296 -7.44827e-18)
(1.00496 0.0015941 -1.44106e-18)
(1.00478 0.00144594 -5.64667e-18)
(1.00449 0.00135045 2.81676e-18)
(1.0091 0.000244417 -1.31813e-19)
(1.00896 -0.000848392 -8.5899e-19)
(1.00886 -0.00193942 4.24646e-19)
(1.00875 -0.00256242 7.07862e-19)
(1.0086 -0.002624 -1.55159e-18)
(1.00841 -0.00222302 -9.70474e-19)
(1.00819 -0.00152677 -1.32184e-18)
(1.00795 -0.000703177 -3.11199e-18)
(1.00771 0.000111707 -3.87989e-18)
(1.00748 0.000824327 -6.29681e-19)
(1.00727 0.00138512 4.08369e-18)
(1.00708 0.00178167 -4.33418e-19)
(1.00693 0.0020292 5.4696e-19)
(1.00681 0.00215878 -8.36441e-19)
(1.00671 0.0022075 7.37451e-19)
(1.00663 0.0022096 1.3077e-18)
(1.00654 0.0021931 -9.72762e-19)
(1.00646 0.00217544 -2.00121e-18)
(1.00637 0.0021656 -3.78516e-19)
(1.00628 0.00216457 -7.13094e-18)
(1.00618 0.00216747 -4.31334e-18)
(1.00607 0.0021664 7.05295e-18)
(1.00594 0.00215328 9.29293e-20)
(1.00578 0.00212073 9.73775e-19)
(1.00561 0.00206401 -2.30581e-18)
(1.00542 0.00198102 9.37974e-19)
(1.00521 0.00187324 1.66952e-18)
(1.005 0.00174179 -5.22412e-18)
(1.00482 0.00159017 3.1797e-18)
(1.00453 0.00149125 5.78978e-18)
(1.00925 0.000279243 2.63825e-19)
(1.00911 -0.000813568 8.34755e-19)
(1.00901 -0.00190612 -1.42065e-18)
(1.00891 -0.00252848 -9.60009e-19)
(1.00875 -0.00258515 1.68597e-18)
(1.00856 -0.00217498 -1.34215e-19)
(1.00834 -0.00146652 -1.3909e-18)
(1.0081 -0.000629376 1.68959e-18)
(1.00785 0.000198843 -4.29983e-19)
(1.00762 0.000923459 -5.18341e-19)
(1.0074 0.0014943 -7.47231e-19)
(1.00721 0.00189878 -1.43556e-18)
(1.00706 0.00215247 2.62363e-18)
(1.00693 0.0022868 2.60829e-18)
(1.00683 0.00233936 2.47479e-18)
(1.00674 0.0023449 -1.60918e-18)
(1.00665 0.00233165 -6.68097e-19)
(1.00656 0.00231737 1.63806e-18)
(1.00647 0.00231089 7.67389e-19)
(1.00638 0.00231309 2.81081e-18)
(1.00627 0.00231889 5.83931e-18)
(1.00615 0.00232014 -7.33609e-18)
(1.00602 0.00230861 -1.85868e-19)
(1.00586 0.00227679 4.83518e-18)
(1.00567 0.00221989 4.1234e-18)
(1.00548 0.00213583 -2.5151e-18)
(1.00527 0.00202614 2.13733e-18)
(1.00505 0.00189211 -2.53197e-18)
(1.00486 0.00173703 -2.09383e-18)
(1.00456 0.00163455 -2.453e-18)
(1.00941 0.000313627 1.02879e-19)
(1.00927 -0.000778904 -1.92474e-19)
(1.00918 -0.00187279 1.89196e-18)
(1.00907 -0.00249434 1.44771e-18)
(1.00892 -0.00254588 -8.76038e-19)
(1.00872 -0.00212625 9.82023e-19)
(1.0085 -0.00140526 2.57797e-18)
(1.00826 -0.00055423 1.80533e-18)
(1.008 0.000287663 3.61181e-18)
(1.00776 0.00102458 2.6159e-18)
(1.00753 0.00160571 -1.58123e-18)
(1.00734 0.00201838 -3.30389e-20)
(1.00718 0.00227837 -9.82138e-19)
(1.00706 0.00241753 -4.17211e-18)
(1.00695 0.00247405 1.44524e-19)
(1.00685 0.00248316 -1.75011e-18)
(1.00676 0.00247324 -2.18407e-19)
(1.00667 0.00246245 -5.02455e-19)
(1.00657 0.0024593 -3.15479e-18)
(1.00647 0.00246479 5.16192e-18)
(1.00636 0.00247348 -3.96237e-18)
(1.00624 0.00247707 -1.2504e-18)
(1.0061 0.00246713 1.82373e-18)
(1.00593 0.00243602 -3.72072e-18)
(1.00574 0.0023789 -3.46233e-18)
(1.00554 0.00229371 -2.21334e-19)
(1.00532 0.00218208 4.25496e-18)
(1.0051 0.00204539 9.81009e-18)
(1.00491 0.00188668 -5.05259e-18)
(1.00459 0.00178094 -5.72452e-18)
(1.00957 0.000345514 -5.75013e-19)
(1.00944 -0.000746331 6.19061e-19)
(1.00934 -0.00184117 9.15981e-19)
(1.00924 -0.0024616 -3.75061e-19)
(1.00909 -0.00250776 -7.89122e-19)
(1.00889 -0.00207841 2.09969e-19)
(1.00866 -0.00134463 3.24092e-19)
(1.00841 -0.000479461 -3.72884e-18)
(1.00816 0.000376356 -1.67739e-18)
(1.0079 0.00112581 -3.5824e-18)
(1.00768 0.00171746 -3.73013e-19)
(1.00748 0.00213851 7.55959e-19)
(1.00731 0.00240497 1.25216e-18)
(1.00718 0.00254918 3.70941e-18)
(1.00707 0.00260994 -3.56785e-18)
(1.00697 0.00262274 2.48601e-18)
(1.00687 0.00261655 2.22003e-18)
(1.00678 0.00260942 -5.05357e-19)
(1.00668 0.0026099 4.04238e-18)
(1.00657 0.00261883 -7.3824e-18)
(1.00646 0.00263057 -5.7312e-18)
(1.00633 0.00263662 3.54765e-18)
(1.00618 0.00262835 -2.9532e-18)
(1.00601 0.002598 3.70248e-18)
(1.00581 0.00254069 -3.02954e-18)
(1.0056 0.00245437 -5.84537e-18)
(1.00538 0.00234076 1.19162e-19)
(1.00515 0.00220137 -1.57494e-18)
(1.00495 0.00203937 -1.7008e-19)
(1.00463 0.0019305 -1.5016e-19)
(1.00974 0.000376937 3.03965e-19)
(1.00961 -0.000713873 -5.10796e-19)
(1.00952 -0.00180942 -7.75111e-19)
(1.00941 -0.00242852 -1.01855e-18)
(1.00926 -0.00246906 -1.79092e-19)
(1.00906 -0.0020297 -1.09957e-18)
(1.00883 -0.00128279 -9.17129e-20)
(1.00858 -0.000403121 3.86455e-18)
(1.00831 0.000466961 -2.51806e-18)
(1.00806 0.00122925 2.15604e-18)
(1.00782 0.00183169 -3.29516e-19)
(1.00762 0.00226131 -3.29842e-18)
(1.00745 0.00253438 -2.07207e-18)
(1.00731 0.00268382 -7.80288e-19)
(1.00719 0.00274887 9.93455e-19)
(1.00709 0.00276552 1.61725e-18)
(1.00699 0.00276307 -6.56781e-19)
(1.00689 0.00275949 -2.21659e-18)
(1.00678 0.00276363 -3.81982e-18)
(1.00667 0.00277597 -1.23373e-18)
(1.00655 0.0027908 -7.35296e-19)
(1.00641 0.00279931 -3.91886e-18)
(1.00626 0.0027927 4.37886e-18)
(1.00608 0.00276309 -2.45985e-18)
(1.00588 0.00270555 8.82651e-18)
(1.00567 0.00261805 -3.91536e-19)
(1.00544 0.00250241 -8.13622e-18)
(1.0052 0.00236037 -8.21942e-18)
(1.00499 0.00219492 -1.40594e-18)
(1.00466 0.00208362 -8.03145e-19)
(1.00992 0.000405685 -1.436e-19)
(1.00979 -0.000683634 -2.74634e-19)
(1.0097 -0.00177945 3.58607e-19)
(1.00959 -0.00239687 -3.88081e-19)
(1.00944 -0.00243148 8.07369e-19)
(1.00924 -0.00198182 2.16017e-18)
(1.00901 -0.00122151 -4.38638e-19)
(1.00875 -0.000327065 -3.31547e-18)
(1.00848 0.000557549 2.99237e-18)
(1.00821 0.00133293 -4.81903e-19)
(1.00797 0.00194638 -8.12777e-19)
(1.00776 0.00238479 1.88758e-18)
(1.00758 0.00266473 1.70582e-18)
(1.00744 0.00281959 -2.88659e-18)
(1.00732 0.00288907 8.73662e-19)
(1.00721 0.00290972 -4.34105e-18)
(1.0071 0.00291109 -1.11911e-18)
(1.007 0.00291143 5.96018e-18)
(1.00689 0.00291944 2.52859e-18)
(1.00677 0.00293546 6.47823e-18)
(1.00664 0.00295356 2.39547e-18)
(1.0065 0.00296467 6.46978e-18)
(1.00634 0.00295983 -9.02378e-19)
(1.00616 0.00293102 2.20228e-18)
(1.00595 0.00287327 -2.49655e-18)
(1.00573 0.00278458 2.48545e-18)
(1.00549 0.00266688 3.156e-18)
(1.00525 0.00252214 1.2415e-18)
(1.00503 0.00235324 2.53283e-18)
(1.00469 0.00223918 8.38272e-18)
(1.0101 0.000433805 -2.67843e-19)
(1.00997 -0.000653607 -1.32464e-19)
(1.00988 -0.00174939 -6.66815e-19)
(1.00978 -0.00236484 6.35214e-19)
(1.00962 -0.00239323 -1.57937e-19)
(1.00942 -0.00193295 -1.13197e-18)
(1.00919 -0.00115886 3.04582e-19)
(1.00892 -0.000249274 1.16927e-18)
(1.00864 0.000650228 1.0336e-18)
(1.00837 0.00143902 -1.1688e-18)
(1.00812 0.00206374 -1.48404e-18)
(1.0079 0.00251115 3.17032e-18)
(1.00772 0.00279813 8.56862e-19)
(1.00758 0.00295845 -1.00478e-18)
(1.00745 0.00303248 2.74386e-19)
(1.00733 0.00305729 5.18989e-18)
(1.00722 0.00306252 -3.33372e-19)
(1.00711 0.00306688 -6.02063e-18)
(1.00699 0.00307871 1.84863e-18)
(1.00687 0.00309846 -2.92356e-18)
(1.00674 0.0031198 9.79291e-18)
(1.00659 0.00313351 -7.87733e-18)
(1.00643 0.0031304 -6.55073e-18)
(1.00623 0.00310234 -4.54266e-19)
(1.00602 0.0030443 1.98591e-18)
(1.00579 0.00295432 2.67888e-18)
(1.00555 0.00283446 8.11865e-18)
(1.00529 0.00268687 8.51215e-18)
(1.00507 0.00251437 7.93437e-18)
(1.00472 0.00239647 -2.79537e-18)
(1.01028 0.000459194 4.29995e-19)
(1.01016 -0.000625787 -2.33033e-19)
(1.01007 -0.00172103 7.20745e-19)
(1.00997 -0.00233414 5.7224e-19)
(1.00982 -0.00235597 1.00679e-18)
(1.00961 -0.00188476 -1.80836e-18)
(1.00937 -0.0010966 -1.58169e-18)
(1.0091 -0.000171565 1.00271e-18)
(1.00882 0.000743112 -4.36185e-18)
(1.00854 0.00154558 1.9069e-19)
(1.00828 0.00218182 4.33361e-18)
(1.00806 0.00263848 -1.2802e-18)
(1.00787 0.00293267 -1.24066e-18)
(1.00771 0.00309869 2.43215e-18)
(1.00758 0.00317757 -2.10656e-18)
(1.00746 0.00320663 -1.65248e-18)
(1.00735 0.00321615 -2.39235e-18)
(1.00723 0.00322471 -2.86035e-19)
(1.00711 0.00324064 -3.32104e-18)
(1.00698 0.00326425 -1.55847e-18)
(1.00684 0.00328897 -8.54261e-18)
(1.00668 0.00330535 5.10827e-20)
(1.00651 0.00330402 8.03107e-18)
(1.00631 0.0032767 -4.84428e-19)
(1.00609 0.00321833 -8.53908e-19)
(1.00585 0.00312701 9.47696e-19)
(1.0056 0.00300489 -8.36602e-18)
(1.00534 0.00285435 -9.38901e-18)
(1.00511 0.00267807 -3.01855e-19)
(1.00475 0.00255635 -7.49976e-18)
(1.01048 0.00048393 -2.1593e-19)
(1.01035 -0.000598145 6.6303e-19)
(1.01027 -0.00169248 -2.10242e-18)
(1.01017 -0.00230292 4.62261e-19)
(1.01001 -0.00231788 -1.51791e-18)
(1.00981 -0.00183537 5.75224e-19)
(1.00956 -0.00103276 -1.23007e-18)
(1.00929 -9.1893e-05 1.13398e-19)
(1.00899 0.000838319 1.34722e-18)
(1.00871 0.00165478 4.72301e-18)
(1.00844 0.0023028 -4.98672e-18)
(1.00821 0.00276889 -5.0677e-18)
(1.00802 0.00307042 -1.74303e-18)
(1.00786 0.00324231 -7.37123e-19)
(1.00772 0.00332607 -1.98431e-19)
(1.00759 0.00335955 -1.78266e-18)
(1.00747 0.00337335 1.26886e-18)
(1.00735 0.00338594 5.53048e-18)
(1.00722 0.00340601 4.76615e-18)
(1.00708 0.00343342 1.09439e-18)
(1.00694 0.00346154 3.6817e-19)
(1.00678 0.00348058 5.20061e-18)
(1.0066 0.00348099 1.58294e-18)
(1.00639 0.00345436 1.62334e-18)
(1.00616 0.00339559 6.09721e-20)
(1.00592 0.00330282 -4.21249e-18)
(1.00566 0.00317833 5.91537e-18)
(1.00539 0.00302474 3.12822e-18)
(1.00515 0.00284449 -2.4284e-18)
(1.00478 0.00271874 1.81899e-18)
(1.01067 0.000505755 1.19662e-19)
(1.01055 -0.000572845 2.22427e-19)
(1.01047 -0.00166573 1.86275e-18)
(1.01037 -0.00227305 -1.37452e-18)
(1.01022 -0.00228077 -3.69306e-20)
(1.01001 -0.00178663 4.76301e-19)
(1.00976 -0.000969235 -2.19815e-19)
(1.00948 -1.22165e-05 2.74837e-18)
(1.00918 0.000933835 1.33544e-18)
(1.00888 0.00176457 -4.58663e-18)
(1.00861 0.00242464 4.81466e-18)
(1.00837 0.00290039 4.45286e-18)
(1.00817 0.00320954 1.41247e-18)
(1.008 0.00338751 9.66891e-19)
(1.00786 0.00347631 3.25029e-18)
(1.00773 0.00351435 -1.78053e-18)
(1.0076 0.00353252 3.73592e-18)
(1.00747 0.00354954 -2.99384e-18)
(1.00733 0.00357395 7.41875e-19)
(1.00719 0.00360542 4.15444e-18)
(1.00704 0.00363709 -4.37524e-20)
(1.00687 0.00365889 1.23007e-18)
(1.00668 0.00366109 -3.28853e-18)
(1.00647 0.00363516 -4.99009e-18)
(1.00623 0.00357595 -8.29364e-18)
(1.00598 0.00348166 5.11263e-18)
(1.00571 0.00335472 -8.07458e-18)
(1.00544 0.0031979 6.14813e-18)
(1.00519 0.00301361 -7.79505e-18)
(1.00481 0.00288383 6.22184e-18)
(1.01087 0.000526753 -1.46949e-19)
(1.01076 -0.000547834 -8.13683e-19)
(1.01068 -0.00163883 -9.7882e-19)
(1.01058 -0.00224265 6.65867e-19)
(1.01042 -0.00224274 1.60489e-18)
(1.01022 -0.00173658 -1.63272e-18)
(1.00996 -0.000903987 1.44307e-19)
(1.00967 6.95867e-05 -3.73657e-19)
(1.00937 0.00103185 1.75885e-18)
(1.00906 0.00187719 4.18045e-18)
(1.00878 0.00254955 1.41827e-18)
(1.00853 0.00303519 6.57378e-19)
(1.00832 0.00335211 5.24345e-19)
(1.00815 0.0035362 -3.3707e-19)
(1.008 0.00363013 -4.98669e-18)
(1.00786 0.00367291 3.01147e-18)
(1.00773 0.00369546 -4.80501e-18)
(1.00759 0.00371701 9.89225e-19)
(1.00745 0.00374565 2.86783e-18)
(1.0073 0.00378122 -2.65652e-18)
(1.00714 0.00381639 7.26288e-18)
(1.00697 0.00384092 -4.00278e-18)
(1.00677 0.00384485 9.59683e-19)
(1.00655 0.00381953 2.00155e-18)
(1.0063 0.00375976 5.06328e-18)
(1.00604 0.00366381 -2.55617e-18)
(1.00577 0.00353423 1.66722e-18)
(1.00548 0.0033741 -6.39755e-18)
(1.00523 0.00318556 6.11387e-18)
(1.00484 0.0030516 -1.71041e-18)
(1.01108 0.000544771 8.56294e-20)
(1.01097 -0.00052517 6.78475e-19)
(1.01089 -0.00161367 1.6297e-18)
(1.0108 -0.00221352 -1.70902e-19)
(1.01064 -0.00220558 -1.53019e-18)
(1.01043 -0.00168702 2.38586e-18)
(1.01017 -0.000838881 1.95207e-18)
(1.00987 0.000151591 -4.48836e-18)
(1.00956 0.0011304 -7.66756e-19)
(1.00925 0.00199063 -2.13981e-18)
(1.00896 0.00267557 -6.27657e-18)
(1.0087 0.00317135 -2.11024e-18)
(1.00848 0.00349624 1.67756e-18)
(1.0083 0.00368669 4.29691e-19)
(1.00815 0.00378608 2.9728e-18)
(1.008 0.00383368 -6.10902e-19)
(1.00786 0.00386103 -1.31408e-19)
(1.00772 0.00388729 1.33537e-18)
(1.00757 0.00392047 -2.41416e-18)
(1.00741 0.00396023 -8.30552e-19)
(1.00724 0.00399901 -4.99487e-19)
(1.00706 0.00402631 3.88816e-18)
(1.00686 0.00403197 1.9922e-18)
(1.00663 0.0040072 -1.32893e-18)
(1.00638 0.00394679 -2.28707e-18)
(1.00611 0.00384906 3.63351e-18)
(1.00582 0.00371674 8.87168e-18)
(1.00553 0.00355307 3.2015e-18)
(1.00527 0.0033602 7.15233e-19)
(1.00486 0.00322196 1.08453e-18)
(1.0113 0.000561936 7.36327e-20)
(1.01118 -0.000502769 -5.23088e-19)
(1.01111 -0.00158828 -1.81749e-18)
(1.01102 -0.00218372 -7.38058e-19)
(1.01086 -0.00216734 1.52734e-18)
(1.01065 -0.00163596 3.15094e-18)
(1.01038 -0.000771845 4.61787e-19)
(1.01008 0.000235943 4.99176e-19)
(1.00976 0.00123167 -1.4344e-18)
(1.00944 0.00210712 -2.0178e-18)
(1.00914 0.0028049 4.15543e-18)
(1.00887 0.003311 3.98848e-19)
(1.00865 0.00364399 -1.13463e-18)
(1.00846 0.00384096 2.94671e-18)
(1.00829 0.00394582 -1.28002e-18)
(1.00814 0.00399837 4.08465e-18)
(1.008 0.00403054 8.21969e-18)
(1.00784 0.0040613 -3.813e-18)
(1.00769 0.00409903 -4.43191e-18)
(1.00752 0.00414292 9.542e-19)
(1.00735 0.0041853 -6.43591e-18)
(1.00716 0.00421534 1.0354e-18)
(1.00695 0.00422267 2.83187e-18)
(1.00671 0.00419837 -1.52608e-18)
(1.00645 0.00413719 1.94604e-18)
(1.00617 0.00403755 -1.051e-18)
(1.00587 0.00390231 -3.47798e-18)
(1.00557 0.00373501 -7.50799e-18)
(1.00531 0.00353758 -5.70227e-18)
(1.00489 0.00339476 -2.48707e-18)
(1.01151 0.000575927 1.07202e-19)
(1.01141 -0.000482868 1.22673e-18)
(1.01134 -0.00156474 -2.52553e-19)
(1.01124 -0.00215525 5.45591e-19)
(1.01109 -0.00212999 5.96595e-19)
(1.01087 -0.00158538 -5.40593e-18)
(1.0106 -0.0007049 1.07126e-18)
(1.0103 0.00032057 1.09747e-18)
(1.00997 0.00133356 8.21933e-19)
(1.00963 0.00222456 -3.28751e-19)
(1.00932 0.00293547 -1.38078e-18)
(1.00905 0.00345213 -6.47904e-19)
(1.00881 0.00379351 1.0172e-18)
(1.00862 0.00399724 2.56118e-19)
(1.00845 0.00410774 3.78154e-18)
(1.00829 0.00416541 -3.23167e-18)
(1.00813 0.00420248 -1.06966e-18)
(1.00797 0.00423814 3.64021e-18)
(1.00781 0.00428062 5.60413e-18)
(1.00764 0.00432887 2.53687e-18)
(1.00746 0.00437499 4.16272e-18)
(1.00726 0.00440783 -3.47238e-18)
(1.00704 0.00441682 -6.95897e-18)
(1.00679 0.00439294 1.06261e-17)
(1.00652 0.00433093 -1.1384e-18)
(1.00623 0.00422924 -1.08714e-19)
(1.00593 0.00409094 -8.28213e-19)
(1.00562 0.00391977 7.52008e-18)
(1.00534 0.00371764 -5.93878e-19)
(1.00491 0.00357009 -5.22042e-18)
(1.01174 0.000588879 2.13102e-19)
(1.01164 -0.000463357 -4.84792e-20)
(1.01157 -0.00154103 7.06043e-19)
(1.01148 -0.00212611 -7.49692e-19)
(1.01132 -0.00209149 -2.47376e-18)
(1.0111 -0.0015332 4.56075e-18)
(1.01083 -0.000635889 -3.31638e-18)
(1.01052 0.000407708 -1.19496e-19)
(1.01018 0.00143836 -2.32118e-18)
(1.00983 0.00234524 2.84928e-18)
(1.00951 0.00306953 -4.9202e-19)
(1.00923 0.00359698 1.21136e-19)
(1.00899 0.0039469 8.97003e-19)
(1.00878 0.00415739 -5.72315e-18)
(1.0086 0.00427362 -4.9875e-19)
(1.00844 0.0043366 4.24064e-18)
(1.00827 0.00437854 -2.55244e-18)
(1.00811 0.00441919 -3.11239e-18)
(1.00794 0.0044663 1.18852e-18)
(1.00776 0.00451893 -9.75017e-18)
(1.00756 0.0045687 -1.10456e-18)
(1.00736 0.00460428 -2.27792e-19)
(1.00713 0.00461485 2.16915e-18)
(1.00687 0.00459128 -3.34284e-18)
(1.00659 0.00452825 1.6879e-18)
(1.0063 0.00442434 2.54017e-18)
(1.00598 0.00428275 -1.02853e-18)
(1.00566 0.00410756 -7.73821e-19)
(1.00538 0.00390047 9.36663e-18)
(1.00494 0.00374782 7.60849e-18)
(1.01197 0.000598563 -4.95636e-19)
(1.01187 -0.00044638 -2.45512e-19)
(1.01181 -0.00151915 -5.47054e-19)
(1.01172 -0.00209823 2.30725e-18)
(1.01156 -0.00205377 1.03765e-18)
(1.01134 -0.00148135 6.14475e-19)
(1.01106 -0.000566803 1.74597e-18)
(1.01074 0.000495312 -6.35752e-19)
(1.01039 0.001544 2.13246e-18)
(1.01004 0.00246709 -2.55176e-18)
(1.00971 0.00320507 8.69048e-19)
(1.00941 0.00374359 2.27156e-18)
(1.00916 0.00410226 -5.67717e-18)
(1.00895 0.00431979 1.02189e-18)
(1.00876 0.00444207 -1.43932e-18)
(1.00859 0.00451042 -6.86922e-18)
(1.00842 0.00455768 -4.91916e-18)
(1.00824 0.0046035 3.21223e-18)
(1.00806 0.0046555 -1.08611e-17)
(1.00787 0.0047126 1.02287e-17)
(1.00767 0.0047661 2.57921e-20)
(1.00746 0.00480442 3.16611e-18)
(1.00722 0.00481653 -8.34163e-18)
(1.00695 0.00479315 -1.52421e-19)
(1.00666 0.00472898 6.07801e-18)
(1.00636 0.00462267 -6.1546e-18)
(1.00603 0.00447762 -5.36492e-18)
(1.0057 0.00429813 1.12126e-18)
(1.00541 0.00408591 -8.28116e-19)
(1.00496 0.00392797 -2.43674e-18)
(1.01221 0.00060716 6.1995e-20)
(1.01211 -0.00042979 1.43366e-19)
(1.01206 -0.00149704 6.76791e-19)
(1.01197 -0.00206957 -1.71965e-18)
(1.01181 -0.00201477 6.68709e-19)
(1.01159 -0.00142773 -3.02621e-18)
(1.0113 -0.00049545 -3.67087e-19)
(1.01097 0.000585644 3.2261e-18)
(1.01061 0.00165277 -2.28638e-18)
(1.01025 0.0025924 -8.47585e-19)
(1.00991 0.00334434 8.83259e-19)
(1.0096 0.00389411 -4.26363e-18)
(1.00934 0.00426164 5.53366e-18)
(1.00912 0.00448635 2.9245e-19)
(1.00892 0.0046147 -3.6638e-18)
(1.00874 0.00468854 7.4019e-18)
(1.00856 0.00474111 1.26593e-18)
(1.00838 0.00479185 -4.48201e-18)
(1.00819 0.00484877 3.50188e-19)
(1.00799 0.00491023 -3.93388e-18)
(1.00778 0.00496745 6.07466e-19)
(1.00756 0.00500845 5.29733e-18)
(1.00731 0.005022 -1.9392e-19)
(1.00704 0.0049987 -5.64222e-18)
(1.00674 0.00493322 -2.62563e-18)
(1.00642 0.00482433 2.25843e-18)
(1.00609 0.00467559 9.10554e-18)
(1.00575 0.00449165 2.16554e-18)
(1.00545 0.00427403 -3.55766e-19)
(1.00498 0.00411036 8.2776e-18)
(1.01245 0.000612273 2.60636e-19)
(1.01236 -0.000415908 -1.12898e-18)
(1.01231 -0.00147688 -3.79385e-19)
(1.01222 -0.00204224 -9.43233e-19)
(1.01206 -0.00197658 -4.80433e-19)
(1.01184 -0.00137444 -2.0759e-18)
(1.01155 -0.000423984 3.24354e-18)
(1.01121 0.000676508 -6.2549e-21)
(1.01084 0.00176246 7.10049e-19)
(1.01047 0.002719 5.78086e-19)
(1.01011 0.00348523 -4.0883e-18)
(1.0098 0.00404651 -2.80414e-19)
(1.00953 0.00442322 -4.92296e-18)
(1.00929 0.00465536 4.41344e-18)
(1.00909 0.00478995 7.85727e-18)
(1.0089 0.00486945 -7.79616e-18)
(1.00871 0.00492743 3.46407e-18)
(1.00852 0.0049835 5.68674e-18)
(1.00832 0.00504553 8.53283e-18)
(1.00811 0.00511156 5.43851e-18)
(1.0079 0.00517258 1.33088e-18)
(1.00766 0.00521628 -5.75715e-18)
(1.0074 0.00523123 1.03765e-17)
(1.00712 0.00520791 8.23127e-18)
(1.00681 0.00514099 -1.25755e-18)
(1.00648 0.00502932 -4.15485e-18)
(1.00614 0.00487669 -6.8926e-18)
(1.00579 0.00468799 -6.38667e-18)
(1.00548 0.00446475 1.13677e-18)
(1.005 0.00429516 -4.20932e-18)
(1.0127 0.000616094 -5.46686e-19)
(1.01261 -0.000402564 5.10395e-19)
(1.01257 -0.00145657 5.29699e-19)
(1.01248 -0.00201415 2.43659e-19)
(1.01233 -0.00193705 -1.23781e-18)
(1.0121 -0.00131927 7.46573e-20)
(1.0118 -0.000350116 -3.22267e-18)
(1.01146 0.000770263 -3.72332e-18)
(1.01108 0.00187548 1.91055e-18)
(1.01069 0.00284927 -1.16347e-18)
(1.01032 0.00363003 9.44149e-19)
(1.01 0.00420305 2.47892e-18)
(1.00971 0.00458907 4.96816e-18)
(1.00947 0.00482865 -5.3611e-18)
(1.00926 0.00496955 -4.58045e-18)
(1.00906 0.00505491 5.47449e-18)
(1.00886 0.00511823 -1.00399e-18)
(1.00866 0.00517972 4.63074e-18)
(1.00846 0.00524668 -5.24903e-18)
(1.00824 0.00531731 -1.05555e-17)
(1.00801 0.00538203 -7.63539e-19)
(1.00776 0.00542834 -6.9246e-19)
(1.0075 0.00544456 -8.26486e-19)
(1.0072 0.00542106 -3.24467e-18)
(1.00688 0.00535248 -4.00796e-18)
(1.00654 0.00523781 8.73417e-18)
(1.00619 0.00508101 -3.17856e-18)
(1.00583 0.00488735 -2.76847e-19)
(1.00551 0.00465819 7.91729e-19)
(1.00502 0.00448223 1.5306e-18)
(1.01296 0.000616312 6.40965e-19)
(1.01287 -0.000391986 8.31335e-19)
(1.01283 -0.00143821 2.88414e-19)
(1.01275 -0.00198735 1.01048e-18)
(1.01259 -0.00189825 1.18052e-18)
(1.01236 -0.00126431 4.24181e-18)
(1.01206 -0.000275975 -2.05496e-18)
(1.01171 0.000864738 -9.0838e-19)
(1.01132 0.00198962 -8.18833e-19)
(1.01092 0.00298105 3.86554e-18)
(1.01054 0.00377669 5.3666e-18)
(1.0102 0.00436174 5.37703e-19)
(1.00991 0.00475732 -1.4597e-19)
(1.00965 0.00500461 4.77529e-18)
(1.00943 0.00515216 -7.63419e-18)
(1.00922 0.00524343 -7.51516e-18)
(1.00902 0.00531254 -4.1603e-18)
(1.00881 0.00537963 -1.23502e-17)
(1.00859 0.00545179 7.79916e-18)
(1.00836 0.00552706 1.60481e-18)
(1.00812 0.00559552 -7.7098e-18)
(1.00787 0.00564441 -2.29188e-18)
(1.00759 0.00566181 -5.74252e-18)
(1.00728 0.00563798 -5.31999e-18)
(1.00695 0.00556756 6.29721e-18)
(1.0066 0.00544965 -6.32257e-18)
(1.00624 0.00528845 9.36839e-18)
(1.00587 0.0050895 2.39001e-20)
(1.00554 0.0048542 -6.87098e-18)
(1.00503 0.00467165 -1.08363e-17)
(1.01322 0.000615174 -3.68821e-19)
(1.01314 -0.000381962 -8.12568e-19)
(1.01311 -0.00141967 -2.1664e-18)
(1.01303 -0.00195969 6.00591e-19)
(1.01287 -0.00185798 -1.1434e-18)
(1.01263 -0.00120731 -1.60771e-19)
(1.01233 -0.000199239 7.26419e-20)
(1.01197 0.000962316 1.82674e-18)
(1.01156 0.00210731 2.65341e-19)
(1.01115 0.00311672 -1.55855e-18)
(1.01076 0.0039275 -5.01741e-18)
(1.01041 0.00452476 2.49962e-18)
(1.0101 0.00492999 -2.19352e-18)
(1.00984 0.00518511 -6.75302e-19)
(1.00961 0.00533934 8.37479e-18)
(1.00939 0.00543662 5.31217e-19)
(1.00918 0.00551152 5.17074e-18)
(1.00896 0.00558391 1.00527e-17)
(1.00873 0.00566129 -3.12295e-18)
(1.00849 0.00574108 6.28856e-18)
(1.00824 0.00581325 9.12825e-18)
(1.00797 0.00586463 4.2542e-18)
(1.00768 0.00588309 7.21637e-18)
(1.00737 0.00585877 8.10034e-18)
(1.00702 0.00578631 -2.925e-18)
(1.00667 0.00566494 4.642e-18)
(1.00629 0.00549907 -4.04121e-18)
(1.0059 0.00529465 6.62123e-19)
(1.00557 0.00505287 3.29613e-18)
(1.00505 0.00486318 3.53771e-18)
(1.01349 0.000610192 8.78021e-20)
(1.01342 -0.000374908 -7.95161e-19)
(1.01339 -0.00140323 2.04105e-18)
(1.01331 -0.00193342 -7.6088e-19)
(1.01315 -0.00181848 1.70137e-19)
(1.01291 -0.00115052 -5.14585e-18)
(1.0126 -0.000122207 1.25105e-18)
(1.01223 0.00106067 4.6144e-18)
(1.01182 0.00222621 -8.95579e-19)
(1.01139 0.00325401 2.27203e-19)
(1.01099 0.00408029 1.75681e-18)
(1.01062 0.00469007 -3.55233e-18)
(1.0103 0.00510529 -1.14149e-18)
(1.01003 0.00536853 -2.82539e-18)
(1.00979 0.00552959 6.1543e-18)
(1.00956 0.00563305 -3.14652e-19)
(1.00933 0.00571385 -9.98678e-19)
(1.0091 0.00579195 -9.47947e-18)
(1.00887 0.00587472 -6.49828e-18)
(1.00862 0.00595921 -2.93938e-18)
(1.00836 0.00603514 -3.69715e-18)
(1.00808 0.00608899 -3.2094e-18)
(1.00778 0.00610842 -7.23498e-18)
(1.00745 0.00608346 -7.35209e-18)
(1.0071 0.00600877 -3.25882e-18)
(1.00673 0.00588369 -5.02e-18)
(1.00634 0.00571291 4.8461e-18)
(1.00594 0.00550266 3.1711e-18)
(1.00559 0.00525413 1.91354e-18)
(1.00506 0.00505699 4.48319e-18)
(1.01376 0.000603631 -2.19203e-19)
(1.0137 -0.000368579 8.23379e-19)
(1.01367 -0.00138671 -4.32733e-20)
(1.0136 -0.00190632 -1.03412e-18)
(1.01344 -0.00177749 3.65699e-19)
(1.0132 -0.0010916 6.59802e-18)
(1.01288 -4.24448e-05 -7.46045e-19)
(1.0125 0.0011623 -4.34804e-18)
(1.01208 0.00234885 6.14028e-19)
(1.01164 0.00339539 -1.75595e-18)
(1.01122 0.00423744 3.93607e-19)
(1.01084 0.00485994 -1.81548e-18)
(1.01051 0.00528527 7.16326e-19)
(1.01023 0.00555663 -4.63743e-19)
(1.00997 0.00572458 -4.82084e-18)
(1.00973 0.00583444 -2.51071e-18)
(1.0095 0.00592102 -9.30804e-19)
(1.00926 0.00600493 8.07458e-18)
(1.00901 0.00609288 8.50763e-19)
(1.00875 0.00618207 -5.79769e-19)
(1.00848 0.00626163 -4.35449e-18)
(1.00819 0.00631783 4.62828e-19)
(1.00787 0.00633807 5.1129e-18)
(1.00753 0.00631227 -4.65249e-18)
(1.00717 0.0062351 1.86437e-18)
(1.00678 0.00610606 2.36256e-18)
(1.00638 0.00593006 -5.34217e-18)
(1.00598 0.00571376 -4.15216e-18)
(1.00562 0.00545807 -2.09263e-18)
(1.00507 0.00525288 -4.07716e-18)
(1.01404 0.000593072 -1.51147e-20)
(1.01398 -0.000365312 7.01932e-19)
(1.01397 -0.00137232 7.97424e-19)
(1.0139 -0.00188059 2.67801e-19)
(1.01374 -0.0017372 -1.06947e-18)
(1.01349 -0.00103279 -3.07219e-18)
(1.01317 3.77648e-05 3.18462e-18)
(1.01278 0.00126488 2.01848e-18)
(1.01234 0.00247293 6.65877e-20)
(1.01189 0.00353864 3.35442e-18)
(1.01146 0.00439683 -6.77529e-19)
(1.01106 0.00503238 2.94968e-19)
(1.01072 0.0054681 3.60829e-18)
(1.01042 0.00574785 2.5786e-18)
(1.01016 0.00592304 -8.85623e-18)
(1.00991 0.00603934 6.23406e-18)
(1.00966 0.00613215 -4.96658e-18)
(1.00941 0.00622203 -6.53521e-18)
(1.00915 0.00631539 3.69256e-18)
(1.00888 0.00640931 -5.11075e-18)
(1.0086 0.0064925 1.12079e-17)
(1.00829 0.00655097 6.51382e-18)
(1.00797 0.00657188 -3.67399e-19)
(1.00762 0.00654504 6.81373e-18)
(1.00724 0.00646515 5.8656e-19)
(1.00684 0.00633187 2.75459e-18)
(1.00643 0.0061504 3.76754e-18)
(1.00601 0.0059277 -1.46843e-18)
(1.00564 0.00566463 -4.3187e-18)
(1.00508 0.00545106 -1.21722e-18)
(1.01433 0.00058084 -1.38092e-19)
(1.01428 -0.000362823 -1.17649e-18)
(1.01427 -0.00135784 -9.99179e-19)
(1.0142 -0.00185398 5.05597e-19)
(1.01404 -0.0016953 2.17746e-18)
(1.0138 -0.000971696 -2.00249e-18)
(1.01347 0.00012089 -1.39549e-18)
(1.01306 0.00137095 -7.90824e-19)
(1.01261 0.00260096 4.04635e-18)
(1.01215 0.00368622 1.33113e-18)
(1.0117 0.00456082 1.65523e-18)
(1.01129 0.00520959 3.17612e-18)
(1.01093 0.00565578 -2.75811e-18)
(1.01063 0.00594403 -6.16568e-18)
(1.01035 0.00612648 7.08625e-18)
(1.01009 0.0062493 -6.57176e-18)
(1.00983 0.00634834 1.04155e-17)
(1.00957 0.00644383 3.83459e-18)
(1.00929 0.00654264 -4.90739e-18)
(1.00901 0.00664112 6.97214e-18)
(1.00872 0.00672789 -6.90048e-18)
(1.0084 0.00678851 6.58914e-19)
(1.00806 0.00680992 -7.60754e-18)
(1.0077 0.00678185 3.01042e-18)
(1.00731 0.00669901 1.55584e-18)
(1.0069 0.00656124 -5.90748e-19)
(1.00648 0.00637401 -1.01716e-17)
(1.00604 0.00614477 9.59489e-18)
(1.00567 0.00587372 -4.00312e-18)
(1.00509 0.0056527 1.18907e-18)
(1.01462 0.000564346 1.46234e-19)
(1.01458 -0.000363622 -5.37171e-19)
(1.01458 -0.00134568 -2.16082e-18)
(1.01451 -0.00182885 1.96053e-18)
(1.01435 -0.00165417 -2.50806e-20)
(1.0141 -0.00091073 2.49766e-18)
(1.01377 0.000204479 -2.85694e-18)
(1.01336 0.00147804 -7.09503e-19)
(1.01289 0.00273051 -6.22096e-18)
(1.01241 0.00383576 -3.23698e-18)
(1.01195 0.00472718 -2.63618e-18)
(1.01152 0.00538952 -8.29023e-19)
(1.01115 0.00584652 -3.92277e-18)
(1.01083 0.00614359 2.52047e-18)
(1.01054 0.00633346 -8.72543e-18)
(1.01027 0.00646296 6.69602e-18)
(1.01 0.00656833 2.80129e-18)
(1.00973 0.00666985 -1.92601e-18)
(1.00944 0.00677425 3.66185e-18)
(1.00915 0.00687744 1.80281e-18)
(1.00884 0.00696779 3.89211e-18)
(1.00851 0.00703048 -1.27128e-17)
(1.00816 0.00705225 1.0286e-17)
(1.00778 0.00702274 -3.45002e-18)
(1.00738 0.0069367 8.2724e-19)
(1.00696 0.00679417 5.04864e-18)
(1.00652 0.00660091 6.64861e-18)
(1.00607 0.00636465 2.41364e-18)
(1.00569 0.00608635 9.1361e-18)
(1.00509 0.00585701 8.83748e-18)
(1.01493 0.000545934 2.44314e-19)
(1.01489 -0.000365395 1.89205e-18)
(1.01489 -0.00133354 1.76633e-18)
(1.01483 -0.00180288 -1.70603e-18)
(1.01467 -0.00161142 -1.63888e-18)
(1.01442 -0.000847399 2.3803e-18)
(1.01408 0.000291121 6.84621e-18)
(1.01366 0.00158878 -2.31358e-18)
(1.01318 0.00286423 6.43445e-18)
(1.01268 0.00398986 2.52047e-18)
(1.0122 0.00489837 -6.73809e-19)
(1.01176 0.00557446 -3.44353e-18)
(1.01138 0.00604241 1.26734e-18)
(1.01104 0.00634827 5.38281e-18)
(1.01074 0.0065456 4.76356e-18)
(1.01046 0.00668201 5.7223e-18)
(1.01017 0.00679355 -4.64942e-18)
(1.00989 0.00690118 -3.04808e-18)
(1.00959 0.00701091 1.81544e-18)
(1.00928 0.00711879 5.95685e-19)
(1.00896 0.00721254 -4.30263e-18)
(1.00862 0.00727714 4.68367e-19)
(1.00826 0.00729907 4.06124e-19)
(1.00786 0.00726788 3.28314e-18)
(1.00745 0.00717835 1.90982e-18)
(1.00701 0.00703075 -1.05823e-17)
(1.00656 0.00683114 4.955e-18)
(1.0061 0.00658779 -9.57087e-18)
(1.0057 0.00630178 -4.53076e-18)
(1.0051 0.00606383 -8.83249e-19)
(1.01523 0.00052308 -2.68034e-19)
(1.01521 -0.000370574 -1.47823e-18)
(1.01521 -0.00132377 1.57571e-18)
(1.01516 -0.0017784 1.00364e-18)
(1.015 -0.00156938 2.18155e-18)
(1.01475 -0.000784089 -4.42978e-18)
(1.0144 0.000378375 -1.72107e-18)
(1.01396 0.00170073 1.41214e-18)
(1.01347 0.00299968 -3.17452e-18)
(1.01296 0.00414618 -2.80048e-18)
(1.01246 0.00507218 4.29628e-18)
(1.01201 0.0057624 4.4991e-18)
(1.01161 0.00624157 9.54449e-19)
(1.01126 0.00655651 -9.26111e-18)
(1.01094 0.00676166 -6.9163e-19)
(1.01064 0.006905 -3.36844e-18)
(1.01035 0.00702316 -3.80872e-18)
(1.01005 0.00713705 3.11866e-18)
(1.00974 0.00725232 -5.92893e-18)
(1.00942 0.00736487 -2.07739e-18)
(1.00908 0.00746197 -4.15903e-18)
(1.00873 0.00752836 3.79836e-18)
(1.00835 0.00755025 -3.25151e-18)
(1.00795 0.00751711 -2.59808e-18)
(1.00751 0.00742381 -5.89511e-18)
(1.00707 0.00727081 -4.14411e-19)
(1.0066 0.00706452 -4.36922e-18)
(1.00613 0.00681379 5.25969e-18)
(1.00572 0.00651942 1.89932e-18)
(1.0051 0.00627322 -1.07158e-18)
(1.01555 0.000498194 4.09809e-19)
(1.01553 -0.000376801 9.45519e-19)
(1.01555 -0.00131405 -1.97951e-18)
(1.01549 -0.00175304 -1.1056e-18)
(1.01534 -0.00152561 -2.06967e-19)
(1.01508 -0.000718273 9.86217e-19)
(1.01472 0.000468862 -5.82693e-18)
(1.01428 0.00181654 4.09209e-18)
(1.01377 0.00313952 -2.90783e-18)
(1.01324 0.00430727 3.79952e-18)
(1.01273 0.00525105 -3.84296e-19)
(1.01225 0.00595556 -2.83923e-18)
(1.01184 0.00644605 4.19917e-18)
(1.01147 0.00677016 8.1413e-18)
(1.01115 0.00698314 3.71854e-18)
(1.01084 0.00713346 -1.42841e-18)
(1.01053 0.00725822 4.19016e-18)
(1.01022 0.00737798 -2.81759e-18)
(1.00989 0.00749879 8.63956e-18)
(1.00956 0.00761581 3.08056e-19)
(1.00921 0.00771618 5.92268e-18)
(1.00884 0.00778418 8.96974e-18)
(1.00845 0.00780582 5.68064e-18)
(1.00803 0.00777049 -3.09206e-18)
(1.00758 0.00767312 -1.92088e-18)
(1.00712 0.00751442 2.00153e-18)
(1.00664 0.00730114 1.23712e-19)
(1.00616 0.00704263 -3.34927e-18)
(1.00574 0.00673982 -7.84199e-19)
(1.0051 0.00648353 2.58628e-18)
(1.01587 0.000468578 -2.77686e-19)
(1.01586 -0.000386691 -9.7898e-19)
(1.01588 -0.00130691 -9.80925e-19)
(1.01584 -0.0017293 1.78529e-18)
(1.01568 -0.00148265 -1.0677e-18)
(1.01542 -0.000652516 2.35734e-18)
(1.01506 0.000559968 2.85897e-18)
(1.0146 0.0019336 -4.10596e-18)
(1.01408 0.00328117 1.58652e-18)
(1.01353 0.00447068 -5.50046e-18)
(1.013 0.00543269 1.17517e-18)
(1.01251 0.00615186 4.97101e-18)
(1.01208 0.00665403 -8.60675e-18)
(1.0117 0.00698763 -9.95228e-19)
(1.01135 0.00720862 -3.39836e-19)
(1.01103 0.00736608 -1.47499e-18)
(1.01071 0.00749755 -3.60372e-18)
(1.01038 0.00762354 2.41859e-18)
(1.01005 0.00775002 -2.85333e-18)
(1.0097 0.0078716 -5.59216e-18)
(1.00933 0.00797519 -2.80464e-18)
(1.00895 0.00804467 -6.10001e-18)
(1.00854 0.00806583 -5.72052e-19)
(1.00811 0.00802804 -1.2545e-19)
(1.00765 0.00792629 -3.04503e-18)
(1.00717 0.00776153 -4.61206e-18)
(1.00668 0.00754089 -3.32071e-18)
(1.00618 0.0072742 2.5425e-18)
(1.00575 0.00696227 6.62984e-18)
(1.0051 0.00669602 -4.80596e-18)
(1.0162 0.00043667 3.29949e-19)
(1.0162 -0.000397849 1.29805e-18)
(1.01623 -0.00129996 2.19868e-18)
(1.01619 -0.00170476 -1.65848e-18)
(1.01603 -0.00143796 3.31511e-19)
(1.01577 -0.00058417 -3.04541e-18)
(1.0154 0.000654452 4.04598e-18)
(1.01493 0.00205471 2.9093e-18)
(1.01439 0.00342744 -1.5509e-18)
(1.01383 0.00463913 6.06131e-18)
(1.01327 0.00561964 -1.4504e-18)
(1.01277 0.00635365 -4.19193e-18)
(1.01232 0.00686761 5.05103e-18)
(1.01192 0.00721069 -3.47855e-18)
(1.01157 0.00743967 -5.47175e-18)
(1.01123 0.00760451 -4.69374e-18)
(1.0109 0.00774248 -2.94482e-18)
(1.01055 0.00787479 6.90579e-18)
(1.0102 0.00800661 3.45167e-18)
(1.00984 0.0081327 1.14195e-18)
(1.00946 0.00823927 3.3571e-19)
(1.00906 0.00831001 -1.6557e-18)
(1.00864 0.00833045 -2.27504e-19)
(1.00819 0.00828989 5.5033e-18)
(1.00771 0.0081834 3.14091e-18)
(1.00722 0.00801222 6.98815e-18)
(1.00672 0.00778381 6.22676e-18)
(1.00621 0.00750862 -4.71395e-18)
(1.00576 0.0071872 3.14158e-18)
(1.00509 0.00691027 -6.20858e-19)
(1.01654 0.000399819 -4.07046e-19)
(1.01654 -0.000412824 -2.82535e-19)
(1.01658 -0.00129567 -3.67046e-19)
(1.01655 -0.00168187 -2.15826e-18)
(1.01639 -0.00139404 3.60524e-18)
(1.01613 -0.000515791 1.59157e-18)
(1.01575 0.000749705 -3.15772e-18)
(1.01527 0.00217728 -2.42731e-18)
(1.01471 0.00357577 2.64406e-18)
(1.01413 0.00481016 -2.02049e-18)
(1.01356 0.00580963 -7.2868e-19)
(1.01303 0.0065589 -8.8281e-19)
(1.01256 0.00708496 6.73464e-18)
(1.01215 0.00743779 3.94525e-18)
(1.01178 0.00767514 8.26899e-18)
(1.01143 0.00784734 -1.0218e-18)
(1.01108 0.00799221 2.58399e-18)
(1.01073 0.00813096 -2.61338e-18)
(1.01036 0.00826828 -1.00939e-17)
(1.00998 0.00839881 -1.63304e-18)
(1.00959 0.00850825 -3.65529e-18)
(1.00917 0.00858006 6.28593e-18)
(1.00874 0.0085995 -8.92106e-18)
(1.00827 0.00855584 -4.61401e-18)
(1.00778 0.00844425 -2.95637e-18)
(1.00727 0.00826624 -7.26243e-18)
(1.00675 0.00802969 -4.01287e-19)
(1.00623 0.00774553 -7.18175e-19)
(1.00577 0.00741432 -1.37489e-17)
(1.00509 0.00712661 -6.24861e-18)
(1.01688 0.000360534 7.83336e-19)
(1.0169 -0.000429174 1.81273e-19)
(1.01695 -0.00129163 -9.83139e-19)
(1.01691 -0.00165817 1.4707e-18)
(1.01676 -0.00134832 -4.06106e-18)
(1.01649 -0.000444697 -7.89063e-19)
(1.0161 0.000848512 -1.50809e-18)
(1.01561 0.00230412 3.24472e-18)
(1.01504 0.00372895 1.33445e-18)
(1.01444 0.00498649 -1.86529e-18)
(1.01385 0.00600522 -2.02291e-18)
(1.0133 0.00676989 2.07974e-18)
(1.01282 0.00730811 -7.41915e-18)
(1.01239 0.00767077 -6.88038e-18)
(1.012 0.00791647 2.13946e-19)
(1.01163 0.00809605 -1.32408e-18)
(1.01127 0.00824781 -6.79865e-18)
(1.0109 0.00839252 -1.16584e-18)
(1.01052 0.00853534 -3.3954e-19)
(1.01012 0.00867004 3.65778e-18)
(1.00971 0.00878222 5.14891e-18)
(1.00928 0.00885486 -1.32402e-17)
(1.00883 0.00887302 8.92727e-18)
(1.00835 0.00882594 -2.28878e-18)
(1.00784 0.0087089 5.08111e-18)
(1.00732 0.0085237 2.95267e-18)
(1.00679 0.00827861 -6.66803e-18)
(1.00625 0.00798519 2.01961e-18)
(1.00578 0.00764377 -2.18557e-18)
(1.00508 0.00734467 4.25662e-18)
(1.01723 0.000316005 -4.10935e-19)
(1.01726 -0.000449613 -9.27102e-19)
(1.01732 -0.00129048 4.32747e-19)
(1.01729 -0.00163629 1.38614e-18)
(1.01714 -0.00130348 -2.01974e-18)
(1.01687 -0.000373636 -5.35863e-19)
(1.01647 0.000948073 5.88153e-18)
(1.01597 0.00243244 -2.68904e-18)
(1.01538 0.00388429 -2.12221e-19)
(1.01475 0.00516554 -3.27248e-18)
(1.01414 0.00620401 -1.66884e-18)
(1.01358 0.00698451 3.27506e-18)
(1.01307 0.00753528 1.36898e-18)
(1.01263 0.00790809 4.7453e-18)
(1.01222 0.00816231 -4.10492e-18)
(1.01184 0.0083494 1.08775e-17)
(1.01146 0.00850812 6.29546e-18)
(1.01108 0.00865913 -1.34863e-18)
(1.01068 0.00880751 9.13524e-18)
(1.01027 0.0089464 3.12214e-18)
(1.00984 0.0090612 4.17758e-19)
(1.0094 0.00913445 7.43982e-18)
(1.00893 0.00915105 -4.38441e-18)
(1.00843 0.0091002 7.83136e-18)
(1.00791 0.00897731 -7.06704e-18)
(1.00737 0.00878449 3.37637e-18)
(1.00682 0.00853045 -1.29318e-18)
(1.00627 0.00822726 5.80196e-18)
(1.00578 0.00787536 9.39626e-18)
(1.00507 0.00756466 1.10336e-18)
(1.01759 0.000268772 6.34119e-20)
(1.01763 -0.000471659 2.41497e-19)
(1.0177 -0.00128973 -1.56893e-18)
(1.01767 -0.00161366 -1.66866e-18)
(1.01753 -0.00125684 1.59794e-18)
(1.01725 -0.000299788 3.44723e-18)
(1.01685 0.00105133 -7.29569e-18)
(1.01633 0.00256523 2.75768e-18)
(1.01572 0.00404471 -2.97071e-19)
(1.01508 0.00535014 5.57605e-18)
(1.01444 0.00640868 2.72559e-18)
(1.01386 0.00720517 -7.19925e-19)
(1.01333 0.00776859 -3.89752e-18)
(1.01287 0.00815151 7.24121e-18)
(1.01245 0.0084142 3.00833e-18)
(1.01205 0.00860902 -1.55695e-18)
(1.01166 0.00877443 7.44112e-18)
(1.01126 0.00893179 -5.52882e-18)
(1.01084 0.00908532 -9.81121e-19)
(1.01041 0.00922831 2.93873e-18)
(1.00997 0.00934541 -4.5452e-18)
(1.00951 0.009419 1.6151e-18)
(1.00902 0.0094337 -4.07579e-18)
(1.00851 0.00937871 -1.04397e-20)
(1.00797 0.00924956 8.34363e-18)
(1.00742 0.00904869 2.05183e-18)
(1.00685 0.00878525 9.67413e-18)
(1.00628 0.00847198 -6.4656e-18)
(1.00579 0.00810911 -3.08987e-18)
(1.00506 0.00778621 -4.96751e-18)
(1.01795 0.000216072 4.57357e-20)
(1.018 -0.000497962 2.70548e-19)
(1.01808 -0.00129197 2.35378e-18)
(1.01807 -0.0015929 6.99947e-19)
(1.01792 -0.00121106 -2.1902e-18)
(1.01764 -0.000225889 -3.78636e-18)
(1.01723 0.00115547 2.17643e-18)
(1.0167 0.0026997 -6.7924e-18)
(1.01607 0.00420752 -2.10444e-18)
(1.01541 0.00553774 -8.61124e-19)
(1.01475 0.00661684 9.53871e-19)
(1.01414 0.00742977 -3.96356e-18)
(1.0136 0.00800616 8.86858e-18)
(1.01312 0.00839947 -5.0472e-18)
(1.01268 0.00867099 -6.71513e-19)
(1.01227 0.0088735 3.77829e-18)
(1.01185 0.00904594 -1.06176e-17)
(1.01144 0.00920974 8.19011e-18)
(1.011 0.00936851 -7.55642e-18)
(1.01056 0.00951546 -1.04678e-18)
(1.0101 0.00963467 7.14945e-18)
(1.00962 0.00970832 3.00902e-18)
(1.00911 0.00972077 4.1645e-18)
(1.00858 0.00966124 -6.65421e-18)
(1.00803 0.00952538 5.20485e-18)
(1.00746 0.00931602 3.7394e-18)
(1.00688 0.00904275 -8.83784e-18)
(1.00629 0.00871889 1.93408e-18)
(1.00579 0.00834481 5.85407e-18)
(1.00504 0.00800944 2.28001e-19)
(1.01832 0.000160521 -7.40579e-19)
(1.01839 -0.000525994 -3.01331e-19)
(1.01848 -0.00129468 -4.29488e-19)
(1.01847 -0.00157139 -1.39981e-19)
(1.01832 -0.00116341 4.15159e-18)
(1.01804 -0.000149079 2.06586e-18)
(1.01762 0.00126348 -1.62673e-18)
(1.01708 0.00283885 4.3971e-18)
(1.01643 0.00437566 -1.64123e-18)
(1.01574 0.00573114 -2.34073e-19)
(1.01507 0.00683113 3.72684e-18)
(1.01443 0.00766066 3.72385e-18)
(1.01387 0.00825008 -9.39188e-18)
(1.01337 0.00865382 1.59244e-18)
(1.01291 0.00893412 -5.74864e-18)
(1.01248 0.00914429 2.20357e-18)
(1.01205 0.00932374 5.28274e-18)
(1.01162 0.00949341 -7.0993e-18)
(1.01117 0.00965737 3.15734e-18)
(1.0107 0.00980794 -9.80502e-18)
(1.01023 0.00992907 -5.02515e-18)
(1.00973 0.0100025 -8.29613e-18)
(1.00921 0.0100123 -3.80779e-18)
(1.00866 0.00994786 7.7776e-18)
(1.00809 0.00980489 -1.34866e-17)
(1.0075 0.0095866 -7.28742e-18)
(1.0069 0.00930306 5.30821e-18)
(1.00631 0.00896831 1.43717e-18)
(1.00579 0.00858253 -6.65337e-18)
(1.00503 0.00823401 3.73099e-18)
(1.0187 9.91929e-05 -5.91538e-20)
(1.01878 -0.000558573 -1.34106e-19)
(1.01888 -0.00130063 7.3895e-19)
(1.01888 -0.00155194 1.39311e-18)
(1.01874 -0.00111676 -6.1794e-19)
(1.01845 -7.22889e-05 -4.34409e-18)
(1.01802 0.00137237 3.75259e-18)
(1.01746 0.00297972 2.38494e-18)
(1.0168 0.00454626 1.1922e-18)
(1.01609 0.00592766 -5.29759e-18)
(1.01539 0.00704908 -3.1524e-18)
(1.01473 0.00789565 -5.95149e-18)
(1.01415 0.00849849 1.76964e-18)
(1.01363 0.00891301 5.73315e-18)
(1.01315 0.00920227 1.39025e-17)
(1.0127 0.00942017 -9.76233e-18)
(1.01225 0.00960667 1.30343e-18)
(1.0118 0.00978247 3.02182e-18)
(1.01133 0.00995164 5.56183e-18)
(1.01085 0.0101058 4.23424e-19)
(1.01036 0.0102286 1.38607e-19)
(1.00984 0.0103014 8.63673e-18)
(1.0093 0.0103083 -1.4335e-18)
(1.00873 0.0102385 -4.79722e-18)
(1.00814 0.0100879 8.49826e-18)
(1.00754 0.00986025 4.78537e-18)
(1.00693 0.00956598 2.66178e-18)
(1.00631 0.0092198 -7.85325e-18)
(1.00578 0.00882202 2.52328e-18)
(1.00501 0.00846011 2.87731e-18)
(1.01909 3.47391e-05 9.44873e-20)
(1.01918 -0.000593131 -4.53805e-19)
(1.0193 -0.00130723 -1.65469e-18)
(1.0193 -0.00153185 -1.63607e-18)
(1.01916 -0.00106824 2.57763e-18)
(1.01887 7.4952e-06 2.02962e-18)
(1.01844 0.00148529 -1.90982e-20)
(1.01786 0.00312548 -2.02072e-18)
(1.01718 0.00472247 2.17981e-18)
(1.01644 0.00613028 1.72042e-18)
(1.01571 0.00727345 -2.28593e-18)
(1.01503 0.00813724 1.22383e-18)
(1.01443 0.00875359 3.50165e-19)
(1.01389 0.00917881 -5.26678e-18)
(1.01339 0.00947691 -8.40305e-18)
(1.01292 0.00970278 9.84103e-19)
(1.01246 0.00989596 -5.75314e-18)
(1.01199 0.0100779 -2.54563e-18)
(1.0115 0.0102518 -9.27863e-18)
(1.011 0.0104093 6.98763e-19)
(1.01048 0.0105334 1.07018e-18)
(1.00995 0.0106054 -3.53533e-18)
(1.00939 0.0106089 5.12363e-18)
(1.00881 0.0105333 8.661e-18)
(1.0082 0.0103746 6.55204e-19)
(1.00758 0.0101371 -5.39123e-18)
(1.00695 0.00983158 1.65524e-18)
(1.00632 0.00947361 1.90218e-18)
(1.00577 0.00906334 -5.75626e-18)
(1.00498 0.00868739 -1.56594e-18)
(1.01948 -3.57346e-05 5.77337e-19)
(1.01959 -0.000632429 3.78065e-19)
(1.01972 -0.0013172 -3.51306e-19)
(1.01973 -0.00151388 9.10403e-19)
(1.01959 -0.00102072 -3.55355e-18)
(1.0193 8.73324e-05 -1.6349e-18)
(1.01886 0.00159923 -4.93675e-18)
(1.01826 0.00327317 4.0369e-18)
(1.01756 0.00490138 3.52549e-20)
(1.0168 0.0063363 -7.69535e-19)
(1.01605 0.00750179 3.77939e-18)
(1.01534 0.00838328 5.84075e-18)
(1.01471 0.00901348 -3.10359e-19)
(1.01415 0.00944967 2.12159e-18)
(1.01364 0.00975696 7.0115e-18)
(1.01315 0.00999069 9.72014e-18)
(1.01267 0.0101908 -3.46096e-18)
(1.01217 0.010379 6.34317e-18)
(1.01167 0.0105575 6.02114e-18)
(1.01115 0.0107182 -1.36911e-18)
(1.01061 0.0108434 -4.74595e-18)
(1.01006 0.0109141 -6.00971e-18)
(1.00948 0.0109137 -7.75206e-19)
(1.00888 0.0108318 -1.69094e-17)
(1.00826 0.0106646 2.01928e-18)
(1.00762 0.0104167 5.28102e-18)
(1.00697 0.0100995 -2.96804e-19)
(1.00633 0.00972924 4.04843e-18)
(1.00576 0.00930621 1.02774e-17)
(1.00496 0.008916 -2.22658e-18)
(1.01989 -0.000109501 -3.40908e-20)
(1.02001 -0.000673856 -1.90883e-21)
(1.02015 -0.00132793 -4.47959e-19)
(1.02017 -0.00149529 5.72324e-19)
(1.02003 -0.000971284 4.47105e-18)
(1.01974 0.000170273 1.8908e-18)
(1.01929 0.00171736 3.97634e-18)
(1.01868 0.00342597 -4.91733e-18)
(1.01795 0.00508616 -6.58457e-19)
(1.01717 0.00654869 4.73301e-19)
(1.01639 0.00773685 1.61419e-18)
(1.01566 0.0086362 -4.81503e-19)
(1.015 0.00928029 3.44722e-19)
(1.01442 0.00972745 -7.99649e-18)
(1.01389 0.0100439 -1.33011e-17)
(1.01338 0.0102853 -9.35946e-18)
(1.01287 0.0104924 2.01786e-18)
(1.01236 0.010686 -8.44598e-18)
(1.01184 0.0108692 -3.36561e-18)
(1.0113 0.0110326 6.55837e-18)
(1.01074 0.0111585 -1.89816e-18)
(1.01017 0.0112275 1.38849e-18)
(1.00957 0.011223 -1.00199e-17)
(1.00895 0.0111343 1.31962e-17)
(1.00831 0.0109581 -4.39573e-18)
(1.00765 0.0106993 9.74319e-19)
(1.00699 0.0103699 1.27982e-18)
(1.00633 0.00998704 6.97726e-18)
(1.00575 0.00955077 4.39879e-19)
(1.00493 0.00914562 5.01979e-18)
(1.0203 -0.000189591 -3.21243e-19)
(1.02043 -0.000720313 -1.00413e-19)
(1.02059 -0.00134227 3.4633e-19)
(1.02062 -0.00147902 -7.96519e-19)
(1.02048 -0.000922996 -3.75665e-18)
(1.02019 0.000253176 3.0193e-19)
(1.01973 0.00183649 -9.9637e-19)
(1.0191 0.00358073 -2.75119e-18)
(1.01835 0.00527375 3.60763e-18)
(1.01754 0.00676464 7.65194e-19)
(1.01673 0.00797608 -8.51783e-18)
(1.01598 0.00889377 5.05668e-18)
(1.0153 0.00955216 9.14441e-19)
(1.01469 0.0100106 -7.25232e-19)
(1.01414 0.0103363 2.57221e-18)
(1.01361 0.0105855 1.79816e-18)
(1.01308 0.0107995 1.15338e-17)
(1.01255 0.0109988 1.06684e-17)
(1.01201 0.0111865 1.09412e-17)
(1.01145 0.0113524 2.36812e-18)
(1.01087 0.0114788 1.53462e-18)
(1.01028 0.0115457 -1.63947e-18)
(1.00966 0.0115365 1.28818e-17)
(1.00902 0.0114405 9.8563e-19)
(1.00836 0.0112548 1.08404e-18)
(1.00769 0.0109846 -1.40582e-18)
(1.00701 0.0106426 -2.66723e-19)
(1.00633 0.0102465 -8.87998e-18)
(1.00574 0.00979671 1.16322e-18)
(1.0049 0.0093764 -1.15999e-17)
(1.02071 -0.000273238 6.71175e-19)
(1.02087 -0.000769141 5.24187e-19)
(1.02104 -0.00135754 6.03376e-19)
(1.02107 -0.00146223 -3.77273e-20)
(1.02094 -0.000872799 -1.85282e-18)
(1.02065 0.000339273 1.77891e-18)
(1.02017 0.00195999 3.94022e-18)
(1.01953 0.00374085 5.98997e-18)
(1.01876 0.00546749 -7.90912e-18)
(1.01792 0.00698731 1.65695e-19)
(1.01709 0.00822237 1.48863e-18)
(1.01631 0.00915858 -1.57437e-17)
(1.0156 0.00983133 8.85191e-18)
(1.01497 0.010301 -6.10312e-18)
(1.01439 0.0106357 5.46362e-18)
(1.01384 0.0108929 -2.36723e-19)
(1.0133 0.0111133 -1.2283e-17)
(1.01275 0.0113182 -9.91722e-18)
(1.01218 0.0115098 -1.23356e-17)
(1.0116 0.0116781 4.14583e-18)
(1.011 0.0118044 3.05194e-19)
(1.01039 0.0118688 5.31278e-18)
(1.00975 0.0118543 -8.69531e-18)
(1.00909 0.0117507 -6.41684e-18)
(1.00841 0.0115548 -5.85432e-18)
(1.00772 0.0112727 -4.18367e-18)
(1.00702 0.0109176 -1.42561e-18)
(1.00632 0.010508 6.94659e-18)
(1.00572 0.0100441 -7.8559e-18)
(1.00487 0.00960805 1.27774e-17)
(1.02114 -0.000363441 -6.93008e-19)
(1.02131 -0.000823189 4.44617e-19)
(1.02149 -0.00137655 -2.69368e-19)
(1.02154 -0.00144782 1.09756e-18)
(1.02142 -0.000823744 -2.58308e-19)
(1.02112 0.000425404 9.04392e-20)
(1.02063 0.00208463 -3.41416e-18)
(1.01997 0.00390314 9.86618e-19)
(1.01918 0.00566432 7.63079e-18)
(1.01831 0.00721385 3.89304e-18)
(1.01745 0.00847317 4.00256e-18)
(1.01664 0.00942841 4.85737e-18)
(1.01591 0.0101159 -1.33969e-17)
(1.01525 0.010597 1.19734e-18)
(1.01465 0.0109411 -5.31345e-18)
(1.01408 0.0112061 2.35975e-19)
(1.01351 0.011433 5.25743e-18)
(1.01294 0.0116435 9.61947e-18)
(1.01235 0.0118388 1.00355e-17)
(1.01175 0.0120091 1.42375e-18)
(1.01113 0.0121349 8.08326e-18)
(1.0105 0.0121964 -7.49019e-18)
(1.00984 0.0121762 2.00631e-18)
(1.00916 0.0120643 2.58964e-19)
(1.00846 0.0118578 9.55424e-18)
(1.00775 0.0115632 -5.21117e-18)
(1.00703 0.0111945 -1.06377e-17)
(1.00632 0.0107708 -6.90686e-18)
(1.0057 0.0102927 1.56545e-18)
(1.00484 0.00984068 -9.72257e-18)
(1.02157 -0.000457355 -5.11982e-20)
(1.02176 -0.000879754 -8.71602e-19)
(1.02196 -0.00139659 2.9766e-18)
(1.02202 -0.00143293 -2.56793e-18)
(1.0219 -0.000772746 -8.96621e-19)
(1.0216 0.000514835 -1.99348e-18)
(1.0211 0.00221381 1.86413e-19)
(1.02043 0.00407103 -6.30112e-18)
(1.01961 0.00586758 -3.53892e-19)
(1.01871 0.0074474 -1.52537e-18)
(1.01782 0.00873136 2.33604e-18)
(1.01698 0.00970578 3.34223e-18)
(1.01622 0.010408 5.49123e-18)
(1.01554 0.0109005 3.35238e-18)
(1.01491 0.0112538 -4.05657e-20)
(1.01432 0.0115263 5.13606e-18)
(1.01373 0.0117597 -7.25165e-18)
(1.01313 0.011975 -3.13208e-18)
(1.01252 0.0121739 -8.15347e-18)
(1.0119 0.0123455 -6.72357e-18)
(1.01126 0.0124706 -4.63692e-18)
(1.0106 0.0125286 5.31413e-18)
(1.00992 0.0125023 4.09043e-18)
(1.00922 0.0123815 1.99737e-18)
(1.0085 0.0121639 -1.54766e-18)
(1.00777 0.0118563 6.83637e-18)
(1.00704 0.0114735 2.68181e-18)
(1.00631 0.0110355 4.99867e-18)
(1.00568 0.0105427 -3.13052e-20)
(1.0048 0.010074 1.01924e-17)
(1.02201 -0.000558111 5.28822e-19)
(1.02222 -0.000941829 -3.40353e-19)
(1.02243 -0.00142066 9.99658e-20)
(1.0225 -0.00142065 2.12812e-18)
(1.02239 -0.000723066 7.00575e-18)
(1.02208 0.000604188 1.1487e-18)
(1.02158 0.00234409 3.24627e-18)
(1.02089 0.00424112 1.15441e-18)
(1.02004 0.00607403 -6.37666e-19)
(1.01912 0.00768499 1.6512e-19)
(1.01819 0.00899427 -4.77731e-18)
(1.01732 0.0099884 5.39585e-18)
(1.01653 0.0107057 -5.73605e-18)
(1.01583 0.0112099 -1.41675e-18)
(1.01518 0.0115725 1.09473e-17)
(1.01456 0.0118526 -3.82126e-18)
(1.01395 0.0120922 8.16154e-18)
(1.01333 0.0123123 2.52781e-18)
(1.0127 0.0125146 1.05634e-17)
(1.01205 0.0126874 -8.65293e-19)
(1.01139 0.0128112 5.65178e-18)
(1.01071 0.0128653 5.25512e-18)
(1.01001 0.0128322 4.70212e-18)
(1.00929 0.0127021 7.32761e-19)
(1.00854 0.0124727 3.18563e-18)
(1.0078 0.0121517 1.74262e-19)
(1.00705 0.0117543 1.02516e-17)
(1.0063 0.0113014 1.07e-18)
(1.00566 0.0107936 -5.14992e-18)
(1.00476 0.0103081 -6.72249e-18)
(1.02246 -0.000662827 -4.84602e-19)
(1.02269 -0.00100667 -1.56831e-19)
(1.02292 -0.00144593 -1.28291e-18)
(1.023 -0.00140799 -1.40513e-18)
(1.02289 -0.000671452 -5.05313e-18)
(1.02258 0.000696935 2.65697e-20)
(1.02207 0.00247911 -2.96884e-18)
(1.02136 0.00441709 2.11312e-18)
(1.02049 0.00628728 -3.5211e-18)
(1.01953 0.00793001 4.7256e-18)
(1.01857 0.00926498 -1.12504e-18)
(1.01767 0.010279 -3.37028e-18)
(1.01686 0.0110115 8.06099e-18)
(1.01612 0.0115272 1.28327e-17)
(1.01545 0.0118987 -6.35853e-18)
(1.0148 0.0121864 -8.19328e-18)
(1.01417 0.0124318 -4.39406e-18)
(1.01353 0.0126565 -8.34582e-18)
(1.01287 0.0128613 -1.01696e-17)
(1.0122 0.0130349 -8.55432e-18)
(1.01151 0.0131569 7.37094e-19)
(1.01081 0.0132066 -1.00414e-17)
(1.01009 0.0131662 -1.52808e-17)
(1.00935 0.0130262 -9.34565e-18)
(1.00859 0.0127846 -5.3458e-18)
(1.00782 0.0124496 -4.91916e-18)
(1.00705 0.012037 -5.5737e-18)
(1.00629 0.0115688 -4.70178e-18)
(1.00563 0.0110456 7.31748e-18)
(1.00472 0.0105428 -6.67154e-18)
(1.02292 -0.000774621 1.84571e-19)
(1.02316 -0.00107722 9.3953e-19)
(1.02341 -0.00147539 2.39965e-19)
(1.0235 -0.00139805 -1.24648e-19)
(1.0234 -0.000621181 3.47537e-18)
(1.0231 0.000789665 1.34867e-19)
(1.02257 0.00261538 8.33106e-19)
(1.02184 0.0045955 1.06005e-18)
(1.02094 0.00650402 3.18087e-18)
(1.01996 0.00817943 -7.40571e-18)
(1.01896 0.00954082 3.04655e-18)
(1.01803 0.0105753 1.58752e-18)
(1.01718 0.0113232 1.10579e-18)
(1.01642 0.0118506 -1.30186e-17)
(1.01572 0.0122314 -8.37489e-18)
(1.01505 0.0125263 3.59326e-18)
(1.01439 0.0127774 7.95075e-18)
(1.01372 0.0130065 5.45939e-18)
(1.01304 0.0132137 2.03072e-18)
(1.01235 0.0133876 3.74598e-18)
(1.01164 0.0135073 2.50951e-19)
(1.01092 0.0135519 6.72216e-18)
(1.01017 0.0135037 1.53758e-17)
(1.00941 0.0133532 7.58194e-19)
(1.00863 0.0130988 1.05681e-18)
(1.00784 0.0127493 7.55131e-18)
(1.00705 0.0123212 -5.24098e-18)
(1.00627 0.0118373 -5.19593e-18)
(1.0056 0.0112985 -1.53629e-18)
(1.00468 0.0107781 1.17403e-17)
(1.02338 -0.000890536 6.87697e-19)
(1.02365 -0.0011507 -8.95932e-19)
(1.02392 -0.00150618 -1.67032e-18)
(1.02402 -0.00138778 -1.7278e-19)
(1.02392 -0.00056896 -8.38594e-19)
(1.02362 0.000885888 3.2926e-18)
(1.02309 0.00275658 1.79836e-18)
(1.02233 0.00478006 -1.55516e-18)
(1.02141 0.00672788 1.13711e-18)
(1.02039 0.00843662 -8.22487e-19)
(1.01936 0.00982484 2.19908e-18)
(1.01839 0.0108798 -1.09339e-17)
(1.01751 0.0116432 3.05988e-18)
(1.01672 0.0121822 1.35802e-17)
(1.016 0.0125719 1.63296e-17)
(1.0153 0.0128738 -3.05697e-18)
(1.01461 0.0131303 -3.05304e-18)
(1.01392 0.0133629 -8.90096e-18)
(1.01322 0.0135721 -8.93293e-18)
(1.01249 0.0137456 7.73958e-18)
(1.01177 0.0138625 -1.80827e-18)
(1.01102 0.0139016 -8.53971e-18)
(1.01025 0.013845 -5.3883e-18)
(1.00947 0.0136835 9.68881e-18)
(1.00866 0.0134158 1.01132e-19)
(1.00786 0.0130513 -1.75377e-18)
(1.00705 0.0126072 3.77366e-18)
(1.00626 0.0121073 -5.84088e-19)
(1.00557 0.0115524 6.73698e-18)
(1.00463 0.0110138 -6.42551e-18)
(1.02385 -0.00101379 -8.09331e-19)
(1.02414 -0.00123018 -2.74382e-19)
(1.02443 -0.00154142 1.39803e-18)
(1.02455 -0.00138047 2.09616e-18)
(1.02446 -0.000518274 -7.27248e-18)
(1.02415 0.000981971 -4.56383e-18)
(1.02361 0.00289899 -4.27275e-18)
(1.02284 0.00496711 1.44009e-20)
(1.02188 0.00695538 -2.88379e-18)
(1.02083 0.00869844 3.21348e-18)
(1.01977 0.0101143 1.61406e-18)
(1.01876 0.0111904 2.15496e-18)
(1.01785 0.0119696 -1.03316e-17)
(1.01703 0.0125204 -5.07392e-18)
(1.01627 0.012919 -2.24039e-18)
(1.01555 0.0132275 3.9886e-18)
(1.01484 0.0134892 -7.95603e-18)
(1.01412 0.013725 7.95058e-18)
(1.01339 0.0139359 1.04981e-17)
(1.01264 0.0141086 -1.24944e-17)
(1.01189 0.0142222 -4.66309e-18)
(1.01112 0.0142552 1.81545e-17)
(1.01033 0.0141896 8.08001e-19)
(1.00952 0.0140165 8.13309e-19)
(1.0087 0.013735 5.80509e-18)
(1.00787 0.013355 1.34152e-18)
(1.00705 0.0128945 -5.8698e-18)
(1.00624 0.0123781 1.33561e-17)
(1.00553 0.0118069 -1.30878e-17)
(1.00458 0.0112501 -3.75429e-18)
(1.02433 -0.00114139 6.39231e-20)
(1.02464 -0.00131282 1.56802e-18)
(1.02495 -0.00157817 -1.25986e-18)
(1.02508 -0.00137293 -1.66069e-18)
(1.025 -0.000465633 8.06741e-18)
(1.02469 0.00108166 1.02921e-18)
(1.02414 0.00304656 -2.55022e-18)
(1.02335 0.00516064 1.8108e-18)
(1.02237 0.00719042 -4.17026e-18)
(1.02128 0.00896851 2.37996e-18)
(1.02018 0.0104124 -6.77506e-18)
(1.01914 0.0115098 -2.55388e-19)
(1.01819 0.0123048 3.09869e-18)
(1.01734 0.012867 -3.18379e-18)
(1.01656 0.0132741 -1.42669e-17)
(1.0158 0.0135892 -8.46771e-18)
(1.01506 0.0138552 9.42887e-18)
(1.01432 0.014094 1.9181e-18)
(1.01356 0.0143055 -6.76398e-18)
(1.01279 0.0144769 6.4751e-19)
(1.01201 0.0145865 -2.16891e-18)
(1.01122 0.0146128 -1.54535e-17)
(1.01041 0.0145378 4.04035e-19)
(1.00958 0.0143526 3.74475e-18)
(1.00873 0.0140566 -1.1454e-17)
(1.00789 0.0136607 3.5564e-18)
(1.00705 0.0131834 3.50868e-18)
(1.00621 0.0126502 -3.47226e-19)
(1.0055 0.0120624 6.18452e-18)
(1.00453 0.0114868 5.59873e-18)
(1.02482 -0.00127655 -6.60732e-20)
(1.02515 -0.00140164 2.52792e-19)
(1.02549 -0.00161954 -1.18354e-18)
(1.02563 -0.00136846 -1.55327e-20)
(1.02556 -0.000414556 -2.92547e-18)
(1.02525 0.00118127 -8.3792e-19)
(1.02469 0.00319549 5.64495e-18)
(1.02388 0.00535693 7.28287e-19)
(1.02286 0.00742945 4.98081e-18)
(1.02174 0.00924363 2.21555e-18)
(1.0206 0.0107163 -4.03018e-18)
(1.01952 0.0118355 5.53775e-18)
(1.01854 0.0126466 5.65292e-19)
(1.01765 0.0132205 -3.39672e-19)
(1.01684 0.0136361 4.47636e-18)
(1.01606 0.0139573 1.63919e-17)
(1.01529 0.0142273 -1.11046e-18)
(1.01452 0.0144687 7.75041e-18)
(1.01374 0.0146804 -4.3722e-18)
(1.01294 0.0148499 6.1153e-18)
(1.01214 0.0149549 1.8976e-18)
(1.01132 0.0149739 2.56827e-18)
(1.01048 0.0148888 -7.3544e-18)
(1.00963 0.0146909 -5.88079e-18)
(1.00876 0.0143801 3.07708e-18)
(1.0079 0.0139678 -7.38718e-18)
(1.00704 0.0134732 -2.25645e-18)
(1.00619 0.0129229 -3.03571e-18)
(1.00546 0.0123184 6.82208e-18)
(1.00448 0.011724 2.63275e-19)
(1.02532 -0.00141619 7.98243e-19)
(1.02567 -0.00149379 -7.37285e-19)
(1.02603 -0.00166253 6.84188e-19)
(1.02619 -0.00136382 -3.03691e-19)
(1.02612 -0.000361519 2.22699e-18)
(1.02582 0.00128459 2.83942e-18)
(1.02525 0.00334979 -9.75633e-19)
(1.02441 0.00555999 7.53448e-20)
(1.02337 0.00767639 -1.20014e-19)
(1.0222 0.00952742 -7.97279e-18)
(1.02102 0.0110294 1.31937e-17)
(1.01991 0.0121706 -7.33877e-18)
(1.01889 0.0129976 7.67587e-18)
(1.01797 0.0135827 1.31107e-18)
(1.01713 0.0140063 1.24968e-17)
(1.01632 0.0143331 -8.02795e-18)
(1.01552 0.0146068 -9.10938e-18)
(1.01472 0.0148495 -1.66906e-17)
(1.01391 0.015061 1.63438e-17)
(1.01309 0.0152277 4.26703e-18)
(1.01226 0.0153275 2.22756e-18)
(1.01142 0.0153386 1.26334e-17)
(1.01056 0.0152428 8.07034e-19)
(1.00968 0.0150319 -2.55824e-18)
(1.00879 0.0147058 -1.76378e-18)
(1.00791 0.0142766 5.92328e-18)
(1.00703 0.0137646 3.47073e-18)
(1.00616 0.0131969 -6.68658e-19)
(1.00542 0.0125754 -4.58467e-18)
(1.00442 0.0119615 2.04157e-18)
(1.02582 -0.00156362 -9.28406e-21)
(1.0262 -0.00159239 -1.67718e-19)
(1.02658 -0.00171043 -8.4801e-19)
(1.02676 -0.00136252 2.71183e-19)
(1.0267 -0.000310269 -4.45108e-18)
(1.0264 0.00138769 2.04205e-18)
(1.02582 0.00350542 -4.56512e-19)
(1.02496 0.00576588 -4.57182e-18)
(1.02388 0.00792751 3.03458e-19)
(1.02268 0.00981653 8.9504e-19)
(1.02146 0.0113486 -1.61021e-18)
(1.0203 0.0125124 4.60847e-18)
(1.01925 0.0133557 -6.24092e-18)
(1.01829 0.0139522 5.24499e-18)
(1.01742 0.0143837 -1.47335e-17)
(1.01657 0.0147154 -4.5622e-18)
(1.01575 0.0149922 9.91176e-18)
(1.01492 0.0152359 9.97667e-18)
(1.01408 0.0154465 -1.10406e-17)
(1.01323 0.0156098 -2.16972e-18)
(1.01238 0.0157037 -1.56929e-18)
(1.01151 0.0157064 -1.42828e-17)
(1.01063 0.0155994 1.03263e-17)
(1.00973 0.0153748 -2.88632e-18)
(1.00882 0.0150331 -2.90026e-18)
(1.00792 0.0145867 3.51396e-18)
(1.00702 0.0140568 -9.98634e-19)
(1.00613 0.0134715 -3.45506e-18)
(1.00537 0.0128328 -8.67762e-18)
(1.00436 0.0121997 -8.79823e-18)
(1.02633 -0.00171574 -4.19452e-19)
(1.02674 -0.00169455 9.60884e-19)
(1.02714 -0.00176017 1.30872e-18)
(1.02734 -0.00136119 9.99875e-19)
(1.02729 -0.000257069 -1.95024e-18)
(1.02699 0.00149462 3.79423e-20)
(1.0264 0.00366669 -4.03225e-18)
(1.02552 0.00597896 2.59297e-18)
(1.02441 0.00818706 -1.67862e-18)
(1.02316 0.0101149 2.62234e-18)
(1.0219 0.0116776 -1.15111e-17)
(1.0207 0.012864 6.65583e-18)
(1.01961 0.0137234 -8.72702e-18)
(1.01862 0.0143307 -1.59787e-18)
(1.01771 0.0147693 -1.58823e-18)
(1.01683 0.0151059 4.68807e-18)
(1.01598 0.0153846 -4.86145e-18)
(1.01512 0.0156287 -7.51205e-18)
(1.01425 0.0158372 1.9017e-18)
(1.01337 0.0159965 7.69777e-18)
(1.01249 0.0160838 6.13516e-18)
(1.01161 0.0160773 1.85525e-18)
(1.0107 0.0159587 -2.04874e-18)
(1.00978 0.01572 1.2847e-19)
(1.00885 0.0153622 4.24641e-18)
(1.00792 0.0148984 -2.80225e-18)
(1.007 0.0143503 3.32349e-18)
(1.0061 0.0137472 6.58787e-18)
(1.00532 0.0130912 1.04901e-17)
(1.0043 0.0124383 1.30913e-17)
(1.02685 -0.00187587 6.63376e-20)
(1.02729 -0.00180339 -1.21746e-18)
(1.02771 -0.001815 1.50241e-18)
(1.02793 -0.00136334 -1.60724e-18)
(1.02789 -0.00020572 1.159e-18)
(1.02759 0.00160139 -5.08908e-18)
(1.02699 0.00382948 4.31578e-18)
(1.02609 0.0061952 1.11621e-18)
(1.02494 0.00845123 9.52424e-19)
(1.02366 0.0104191 5.45194e-18)
(1.02235 0.0120133 6.62347e-18)
(1.02111 0.0132229 -1.07404e-17)
(1.01997 0.0140987 1.71642e-17)
(1.01895 0.0147168 -7.01888e-18)
(1.018 0.0151623 -7.66157e-19)
(1.01709 0.0155028 3.27306e-19)
(1.0162 0.015783 8.12924e-18)
(1.01532 0.0160267 1.4172e-17)
(1.01442 0.0162324 1.09186e-17)
(1.01352 0.016387 -1.64234e-17)
(1.01261 0.016467 -6.66093e-18)
(1.0117 0.0164508 1.30764e-17)
(1.01077 0.0163199 5.66109e-18)
(1.00982 0.0160667 -2.85983e-18)
(1.00887 0.0156924 -3.45632e-18)
(1.00792 0.0152108 -1.2123e-17)
(1.00699 0.0146445 -3.5085e-19)
(1.00607 0.0140234 -8.09488e-18)
(1.00527 0.0133501 -6.44719e-18)
(1.00423 0.0126776 -6.04885e-19)
(1.02738 -0.00204082 3.46501e-19)
(1.02784 -0.00191596 1.17687e-18)
(1.02829 -0.00187183 -1.56209e-18)
(1.02853 -0.00136556 1.12226e-18)
(1.02851 -0.000152433 6.01873e-18)
(1.02821 0.0017121 3.38884e-18)
(1.0276 0.00399816 -2.66594e-18)
(1.02667 0.00641899 -6.23981e-18)
(1.02549 0.00872428 3.64573e-18)
(1.02416 0.0107331 -6.12053e-18)
(1.02281 0.0123593 6.80609e-18)
(1.02152 0.0135922 1.12154e-17)
(1.02034 0.014484 -5.49711e-18)
(1.01928 0.0151123 2.41165e-19)
(1.0183 0.015564 1.48416e-17)
(1.01736 0.0159075 -6.86823e-18)
(1.01643 0.0161884 -5.39074e-18)
(1.01552 0.0164303 -9.23523e-18)
(1.01459 0.0166326 -2.74882e-18)
(1.01366 0.0167814 4.75075e-18)
(1.01273 0.0168534 2.31661e-18)
(1.01179 0.0168269 -3.46083e-20)
(1.01083 0.0166833 -1.92602e-17)
(1.00987 0.0164152 -4.50211e-18)
(1.00889 0.0160242 3.60706e-18)
(1.00792 0.0155247 1.42879e-17)
(1.00697 0.0149399 -2.37679e-18)
(1.00603 0.0143008 -2.76715e-18)
(1.00522 0.0136101 -7.72879e-18)
(1.00417 0.0129176 2.33778e-18)
(1.02792 -0.00221396 -3.48771e-19)
(1.02841 -0.00203546 4.58176e-19)
(1.02888 -0.00193406 1.43842e-18)
(1.02914 -0.00137155 -1.80715e-18)
(1.02913 -0.000101247 -5.41769e-18)
(1.02884 0.00182248 -8.07674e-20)
(1.02822 0.00416833 -7.35111e-19)
(1.02727 0.00664605 3.46544e-18)
(1.02605 0.00900222 -9.70103e-18)
(1.02468 0.0110533 3.61142e-18)
(1.02328 0.0127125 -1.05981e-17)
(1.02194 0.0139692 -9.2891e-18)
(1.02072 0.0148772 2.48709e-18)
(1.01961 0.0155157 -1.9195e-18)
(1.01859 0.0159731 -7.48119e-18)
(1.01762 0.0163187 1.45096e-17)
(1.01666 0.0165994 -8.11795e-18)
(1.01571 0.0168387 -1.02207e-17)
(1.01476 0.0170368 -7.58006e-18)
(1.0138 0.0171789 1.13022e-17)
(1.01284 0.0172423 3.50934e-18)
(1.01188 0.0172048 -8.22875e-18)
(1.0109 0.0170481 1.0244e-18)
(1.00991 0.0167648 1.18805e-17)
(1.00891 0.0163568 4.7048e-18)
(1.00792 0.0158392 2.82341e-19)
(1.00695 0.0152359 2.32453e-18)
(1.00599 0.0145788 3.17829e-18)
(1.00516 0.0138707 1.39037e-17)
(1.0041 0.0131585 -6.54872e-18)
(1.02846 -0.00239213 4.46199e-19)
(1.02898 -0.00215892 -1.00843e-18)
(1.02949 -0.00199847 -7.92961e-19)
(1.02976 -0.00137774 2.90821e-18)
(1.02977 -4.81188e-05 1.24268e-19)
(1.02948 0.00193697 -5.85187e-18)
(1.02885 0.00434472 1.37308e-18)
(1.02788 0.00688115 2.03129e-18)
(1.02662 0.00928966 8.24988e-18)
(1.0252 0.011384 -6.33573e-18)
(1.02375 0.0130767 -2.06231e-18)
(1.02237 0.0143573 -3.50571e-18)
(1.0211 0.0152811 -6.49037e-18)
(1.01995 0.0159289 1.59344e-17)
(1.01889 0.0163908 -4.85985e-18)
(1.01788 0.0167379 -1.65541e-17)
(1.01689 0.0170169 1.23812e-17)
(1.01591 0.0172528 7.16989e-18)
(1.01493 0.0174452 -2.8832e-18)
(1.01394 0.01758 3.15841e-18)
(1.01295 0.0176338 4.90407e-19)
(1.01197 0.0175848 -7.21402e-18)
(1.01096 0.0174144 1.25431e-17)
(1.00995 0.0171157 -8.32517e-18)
(1.00893 0.0166906 3.87533e-20)
(1.00792 0.0161549 -1.16565e-17)
(1.00692 0.0155331 -9.31794e-18)
(1.00595 0.0148579 9.56827e-18)
(1.00511 0.0141325 -1.21942e-17)
(1.00403 0.0134003 -5.06638e-18)
(1.02901 -0.00257868 -7.52371e-19)
(1.02956 -0.00228954 5.69047e-20)
(1.0301 -0.00206849 -1.91184e-18)
(1.0304 -0.00138786 -1.14082e-18)
(1.03042 2.85544e-06 1.01144e-18)
(1.03014 0.00205122 8.24445e-19)
(1.0295 0.00452283 1.1704e-18)
(1.0285 0.00711991 3.43838e-18)
(1.0272 0.0095825 -3.26613e-18)
(1.02573 0.0117215 2.10738e-18)
(1.02423 0.0134487 -7.03902e-19)
(1.0228 0.0147537 -3.5294e-18)
(1.02148 0.0156935 -3.03721e-18)
(1.02029 0.0163502 -2.06618e-17)
(1.01919 0.016816 3.80013e-18)
(1.01814 0.0171634 1.777e-17)
(1.01712 0.0174398 -5.37802e-18)
(1.01611 0.0176713 7.43598e-18)
(1.01509 0.017857 5.11433e-18)
(1.01408 0.0179835 -1.88067e-17)
(1.01306 0.0180269 -3.40779e-18)
(1.01205 0.0179658 8.61883e-18)
(1.01103 0.0177815 -1.11852e-17)
(1.00999 0.017467 1.43927e-17)
(1.00895 0.0170247 -7.01014e-18)
(1.00792 0.0164709 -2.86922e-18)
(1.0069 0.0158307 1.00739e-17)
(1.00591 0.0151376 -1.23112e-17)
(1.00505 0.0143951 1.76946e-17)
(1.00395 0.0136434 -6.03354e-19)
(1.02957 -0.00277034 -3.44626e-19)
(1.03015 -0.00242426 -1.44283e-18)
(1.03072 -0.00214083 2.59789e-18)
(1.03104 -0.00139826 -1.07899e-19)
(1.03108 5.57998e-05 -2.23412e-18)
(1.0308 0.00216973 -3.201e-18)
(1.03016 0.00470747 -1.47441e-19)
(1.02913 0.00736713 -7.63841e-18)
(1.0278 0.0098854 5.06553e-18)
(1.02628 0.0120701 5.5027e-18)
(1.02472 0.0138323 6.26433e-18)
(1.02324 0.0151617 2.94118e-18)
(1.02187 0.0161168 -1.22365e-18)
(1.02063 0.0167815 1.56654e-17)
(1.01949 0.0172501 -1.53442e-18)
(1.0184 0.0175964 -9.70505e-18)
(1.01734 0.0178691 1.06705e-17)
(1.0163 0.0180943 -9.97224e-18)
(1.01526 0.0182724 -1.02956e-18)
(1.01421 0.0183894 5.62727e-18)
(1.01317 0.0184218 -3.5774e-18)
(1.01214 0.0183481 -1.20604e-17)
(1.01109 0.0181494 -3.57531e-18)
(1.01003 0.0178191 1.79082e-18)
(1.00896 0.0173597 1.12151e-17)
(1.00791 0.0167878 9.90404e-18)
(1.00688 0.0161294 -3.29308e-18)
(1.00586 0.0154186 4.9784e-18)
(1.00499 0.0146592 -9.06888e-18)
(1.00388 0.0138878 -2.74349e-18)
(1.03013 -0.0029705 2.22821e-19)
(1.03075 -0.00256635 1.70459e-18)
(1.03135 -0.00221905 1.29155e-19)
(1.0317 -0.00141284 -1.71955e-19)
(1.03176 0.000106379 4.32502e-18)
(1.03149 0.00228788 5.87391e-18)
(1.03083 0.00489383 -4.96344e-18)
(1.02978 0.00761818 1.84719e-18)
(1.0284 0.010194 -3.91268e-18)
(1.02683 0.012426 -3.12375e-18)
(1.02522 0.0142243 -6.63976e-18)
(1.02368 0.0155785 8.12009e-18)
(1.02226 0.0165488 -1.72348e-18)
(1.02098 0.017221 -1.98654e-18)
(1.01979 0.0176915 -6.95175e-18)
(1.01867 0.0180354 -7.85173e-18)
(1.01757 0.0183031 -1.09703e-17)
(1.01649 0.0185209 7.16743e-18)
(1.01542 0.0186903 -2.27132e-18)
(1.01434 0.0187969 1.72338e-18)
(1.01328 0.0188176 5.66187e-18)
(1.01222 0.0187306 8.75868e-18)
(1.01115 0.0185174 5.47477e-18)
(1.01006 0.0181711 -5.19687e-18)
(1.00898 0.0176946 -4.52712e-18)
(1.0079 0.0171049 -6.81402e-18)
(1.00685 0.0164284 7.04141e-18)
(1.00582 0.0157003 -4.26298e-18)
(1.00492 0.0149243 -4.03886e-18)
(1.0038 0.0141337 4.14312e-18)
(1.03071 -0.00317588 -3.01003e-19)
(1.03136 -0.00271269 -2.05391e-18)
(1.03199 -0.00229972 -1.674e-19)
(1.03237 -0.00142776 1.23278e-18)
(1.03245 0.000159014 3.99074e-18)
(1.03218 0.00241055 -1.00307e-19)
(1.03152 0.00508714 2.83135e-18)
(1.03044 0.00787829 2.43673e-18)
(1.02902 0.0105134 -2.69349e-18)
(1.0274 0.0127938 -1.22756e-18)
(1.02573 0.0146287 5.6893e-18)
(1.02413 0.0160075 4.55419e-19)
(1.02266 0.0169924 1.04401e-18)
(1.02132 0.0176707 -7.67641e-18)
(1.0201 0.0181413 1.54416e-17)
(1.01893 0.0184817 6.91048e-18)
(1.01779 0.0187425 9.07937e-18)
(1.01668 0.0189518 1.85681e-19)
(1.01558 0.0191109 4.26628e-18)
(1.01447 0.0192062 1.06187e-17)
(1.01339 0.0192141 -2.92047e-18)
(1.0123 0.0191135 -6.33518e-19)
(1.01121 0.0188854 8.62322e-18)
(1.0101 0.0185233 -3.6013e-18)
(1.00899 0.0180298 -1.16161e-17)
(1.0079 0.0174226 -1.95594e-18)
(1.00682 0.0167285 -8.37507e-18)
(1.00577 0.0159833 1.19906e-17)
(1.00486 0.015191 3.19524e-18)
(1.00372 0.0143814 1.31719e-17)
(1.03129 -0.00338993 4.94341e-19)
(1.03197 -0.00286659 2.21043e-18)
(1.03264 -0.00238644 2.0042e-18)
(1.03305 -0.00144696 7.73249e-20)
(1.03315 0.000209325 -8.92187e-18)
(1.0329 0.00253303 1.90914e-19)
(1.03222 0.00528253 7.63237e-18)
(1.03112 0.00814278 -3.27933e-18)
(1.02965 0.0108394 2.13767e-18)
(1.02797 0.0131699 -1.608e-18)
(1.02624 0.0150424 8.23209e-18)
(1.02458 0.0164462 -1.21545e-18)
(1.02306 0.0174452 4.3003e-18)
(1.02167 0.0181288 1.08768e-17)
(1.0204 0.0185984 1.25172e-19)
(1.01919 0.0189336 -3.57307e-18)
(1.01801 0.019186 -9.30874e-18)
(1.01687 0.0193855 1.78926e-19)
(1.01573 0.0195329 -5.49662e-18)
(1.0146 0.0196159 -1.88464e-17)
(1.01349 0.0196104 -3.03456e-18)
(1.01238 0.0194957 3.31702e-18)
(1.01126 0.0192526 -1.02276e-17)
(1.01014 0.0188746 -5.14779e-18)
(1.009 0.0183646 2.75425e-18)
(1.00789 0.0177402 1.06437e-17)
(1.00679 0.017029 -4.66905e-19)
(1.00572 0.0162672 -1.74658e-18)
(1.00479 0.0154591 1.15352e-18)
(1.00364 0.014631 -8.58069e-18)
(1.03187 -0.00360921 -5.8931e-19)
(1.03259 -0.00302483 -1.78717e-18)
(1.0333 -0.00247569 -3.55104e-18)
(1.03374 -0.0014665 1.89043e-18)
(1.03386 0.000261773 6.03486e-18)
(1.03362 0.00266022 -2.54195e-18)
(1.03294 0.00548522 -6.07328e-18)
(1.03181 0.00841694 9.70763e-19)
(1.0303 0.011177 -5.24666e-18)
(1.02856 0.0135589 2.58224e-18)
(1.02677 0.0154697 -1.30179e-17)
(1.02504 0.0168982 1.12172e-17)
(1.02346 0.0179104 6.35633e-18)
(1.02202 0.0185977 -6.81365e-18)
(1.0207 0.0190644 -3.28466e-18)
(1.01944 0.0193924 1.65442e-17)
(1.01823 0.019635 5.49195e-19)
(1.01705 0.0198224 -4.79403e-18)
(1.01589 0.0199572 9.86906e-19)
(1.01473 0.0200265 1.18371e-17)
(1.01359 0.0200069 9.63289e-18)
(1.01246 0.0198776 -8.78964e-18)
(1.01132 0.0196193 1.23022e-17)
(1.01017 0.0192257 1.06751e-17)
(1.00902 0.0186994 2.24519e-18)
(1.00788 0.0180584 -3.64763e-18)
(1.00676 0.0173306 6.95827e-18)
(1.00567 0.0165528 -1.32326e-17)
(1.00472 0.0157293 -2.44801e-18)
(1.00355 0.0148827 2.93359e-18)
(1.03247 -0.00383724 7.40737e-19)
(1.03323 -0.00319078 1.08098e-18)
(1.03397 -0.00257116 3.326e-18)
(1.03444 -0.0014905 1.11133e-19)
(1.03459 0.000311652 -3.80189e-18)
(1.03436 0.00278691 1.13096e-18)
(1.03368 0.00568975 4.38474e-18)
(1.03251 0.0086955 3.16694e-18)
(1.03095 0.0115215 8.22057e-19)
(1.02916 0.013957 4.35618e-20)
(1.0273 0.0159072 1.56073e-17)
(1.02551 0.0173609 -1.36974e-17)
(1.02386 0.0183858 1.21962e-18)
(1.02237 0.0190758 3.70637e-19)
(1.021 0.0195383 -5.97791e-18)
(1.0197 0.0198573 -1.55894e-18)
(1.01845 0.0200881 -1.06135e-18)
(1.01723 0.020262 3.78881e-18)
(1.01604 0.0203828 3.27128e-18)
(1.01485 0.0204373 -7.63017e-18)
(1.01369 0.0204028 -1.9398e-18)
(1.01254 0.0202583 6.43879e-18)
(1.01138 0.0199848 6.00059e-18)
(1.01021 0.0195757 -9.71305e-18)
(1.00903 0.0190336 1.37016e-17)
(1.00787 0.0183765 3.47697e-18)
(1.00673 0.0176328 1.18301e-18)
(1.00562 0.0168395 6.71367e-18)
(1.00465 0.0160012 7.59094e-18)
(1.00346 0.0151369 -2.99783e-18)
(1.03307 -0.00407059 6.14317e-19)
(1.03387 -0.00336121 -8.22481e-19)
(1.03465 -0.00266914 -2.70517e-19)
(1.03515 -0.00151464 -4.57469e-18)
(1.03533 0.000363849 5.82644e-18)
(1.03512 0.0029183 -5.27868e-19)
(1.03443 0.00590147 -5.45325e-18)
(1.03323 0.00898366 7.70024e-19)
(1.03163 0.0118778 4.87148e-18)
(1.02977 0.0143683 -1.2e-17)
(1.02784 0.0163589 -1.50326e-17)
(1.02598 0.0178374 -3.50098e-18)
(1.02427 0.018874 -1.87936e-17)
(1.02271 0.0195649 -2.09022e-18)
(1.02129 0.020021 1.67498e-18)
(1.01995 0.0203295 -6.18645e-18)
(1.01866 0.0205465 7.45931e-18)
(1.01741 0.0207056 6.60935e-18)
(1.01619 0.0208103 -9.35872e-18)
(1.01498 0.0208491 -6.81695e-18)
(1.01379 0.0207985 1.82789e-19)
(1.01262 0.0206384 -9.40478e-19)
(1.01144 0.0203496 -1.34366e-17)
(1.01024 0.0199254 1.74889e-18)
(1.00904 0.0193679 -1.32543e-18)
(1.00786 0.0186954 -1.13247e-17)
(1.0067 0.0179364 2.51764e-19)
(1.00556 0.0171283 7.80422e-18)
(1.00458 0.0162756 -1.18204e-17)
(1.00337 0.0153938 5.28434e-18)
(1.03368 -0.00431298 -1.0442e-18)
(1.03452 -0.00353966 2.25064e-18)
(1.03534 -0.00277334 -7.55712e-19)
(1.03588 -0.0015428 3.90933e-18)
(1.03609 0.000414093 -7.75731e-19)
(1.03589 0.00304971 2.51266e-19)
(1.03519 0.00611528 1.38322e-18)
(1.03397 0.00927621 -1.66518e-18)
(1.03231 0.0122408 -2.01943e-18)
(1.03039 0.0147882 1.92447e-17)
(1.02839 0.0168202 -6.70594e-19)
(1.02646 0.0183239 -4.35289e-18)
(1.02468 0.0193717 1.03506e-17)
(1.02306 0.0200626 -1.26298e-18)
(1.02159 0.0205111 8.89495e-18)
(1.0202 0.0208072 -3.37911e-19)
(1.01887 0.0210089 4.21227e-18)
(1.01759 0.0211516 -1.53105e-17)
(1.01633 0.021239 1.04098e-18)
(1.0151 0.0212608 2.3454e-17)
(1.01389 0.0211934 -1.06014e-17)
(1.0127 0.0210172 2.18484e-18)
(1.01149 0.020713 7.53759e-18)
(1.01028 0.0202739 1.70445e-18)
(1.00906 0.0197017 -6.45314e-18)
(1.00785 0.0190145 -2.18936e-18)
(1.00667 0.018241 -7.19901e-18)
(1.00551 0.0174188 1.35278e-18)
(1.0045 0.0165523 5.63467e-18)
(1.00327 0.0156537 -6.96657e-18)
(1.03429 -0.00456088 5.9998e-20)
(1.03517 -0.00372308 -3.01845e-18)
(1.03604 -0.00288037 -3.66224e-18)
(1.03662 -0.00157089 -2.35555e-18)
(1.03686 0.000467474 -5.75652e-18)
(1.03667 0.00318705 3.25175e-18)
(1.03597 0.00633759 1.57729e-18)
(1.03472 0.00957939 1.49522e-18)
(1.03301 0.012616 2.69558e-18)
(1.03102 0.0152212 -9.76812e-18)
(1.02894 0.0172945 -1.22701e-18)
(1.02694 0.0188226 1.16319e-17)
(1.02509 0.0198803 4.42611e-18)
(1.02341 0.0205696 3.3277e-18)
(1.02188 0.0210088 -1.90972e-17)
(1.02044 0.0212909 -9.51201e-18)
(1.01907 0.0214761 -2.20475e-18)
(1.01776 0.0216004 6.24842e-18)
(1.01648 0.0216696 1.41095e-18)
(1.01521 0.021673 -1.07286e-17)
(1.01399 0.0215881 8.2302e-18)
(1.01277 0.0213954 1.00252e-17)
(1.01155 0.0210758 -6.73201e-18)
(1.01031 0.0206221 -9.46565e-18)
(1.00907 0.0200358 3.4865e-18)
(1.00784 0.0193346 3.14194e-19)
(1.00663 0.0185473 1.73589e-18)
(1.00545 0.0177118 -6.11023e-18)
(1.00442 0.0168321 -6.12012e-18)
(1.00318 0.0159169 -3.82742e-18)
(1.03491 -0.00481771 -3.49092e-19)
(1.03584 -0.00391487 -9.88065e-19)
(1.03675 -0.00299439 -8.61352e-19)
(1.03737 -0.00160374 -8.26622e-19)
(1.03764 0.000518763 -6.96662e-19)
(1.03748 0.00332523 6.05229e-19)
(1.03677 0.00656363 -4.35746e-19)
(1.03549 0.00988875 -5.36449e-18)
(1.03372 0.0129992 -1.6407e-18)
(1.03166 0.0156629 -9.50404e-18)
(1.02951 0.0177776 1.74559e-18)
(1.02742 0.0193296 -5.56109e-18)
(1.0255 0.0203965 -1.75247e-18)
(1.02376 0.0210831 -2.04033e-18)
(1.02217 0.0215119 1.20217e-17)
(1.02069 0.0217789 1.11576e-17)
(1.01927 0.0219463 -1.41214e-17)
(1.01792 0.0220513 -4.64052e-19)
(1.01661 0.0221012 1.41432e-17)
(1.01533 0.0220852 9.46966e-19)
(1.01408 0.021982 -3.8901e-18)
(1.01285 0.0217723 -6.08744e-18)
(1.0116 0.0214372 1.48625e-18)
(1.01035 0.0209693 -1.56958e-18)
(1.00908 0.0203695 -3.7058e-18)
(1.00783 0.019655 1.26835e-17)
(1.0066 0.0188549 6.70645e-18)
(1.00539 0.0180067 -6.42281e-18)
(1.00434 0.0171146 1.65336e-17)
(1.00308 0.0161836 1.00132e-17)
(1.03553 -0.00508019 1.11369e-18)
(1.03651 -0.00411179 1.46522e-18)
(1.03747 -0.00311198 6.53078e-19)
(1.03813 -0.0016378 4.00063e-18)
(1.03844 0.000572205 -2.02323e-18)
(1.03829 0.00346961 -4.60033e-18)
(1.03758 0.00679979 1.95597e-18)
(1.03627 0.010211 4.30048e-18)
(1.03445 0.0133965 4.01864e-18)
(1.03232 0.0161186 3.64502e-18)
(1.03008 0.0182735 -7.9766e-19)
(1.02791 0.0198477 3.50467e-18)
(1.02591 0.0209218 -3.16241e-19)
(1.0241 0.0216041 -6.00762e-18)
(1.02246 0.0220211 -3.95211e-18)
(1.02092 0.0222722 7.8598e-18)
(1.01947 0.0224205 -4.14329e-18)
(1.01809 0.0225055 2.34326e-18)
(1.01675 0.0225345 -1.43805e-17)
(1.01544 0.0224983 -2.56041e-18)
(1.01417 0.0223757 -7.27798e-18)
(1.01292 0.0221486 -6.44582e-18)
(1.01166 0.0217979 -1.74658e-18)
(1.01038 0.0213161 1.45627e-17)
(1.0091 0.0207033 -5.28188e-18)
(1.00782 0.0199764 -1.83569e-18)
(1.00657 0.0191643 -1.549e-17)
(1.00534 0.0183044 1.4007e-17)
(1.00426 0.0174004 -3.25877e-18)
(1.00298 0.0164541 5.28428e-18)
(1.03616 -0.00535121 -4.15036e-19)
(1.03719 -0.00431636 8.006e-19)
(1.0382 -0.0032362 4.19356e-18)
(1.03891 -0.00167721 -2.68695e-18)
(1.03925 0.000622769 9.16089e-18)
(1.03913 0.00361481 -3.59294e-18)
(1.03842 0.0070407 1.10952e-18)
(1.03707 0.010541 -7.21715e-18)
(1.03519 0.0138031 -5.54326e-18)
(1.03298 0.0165835 9.8345e-19)
(1.03066 0.0187778 4.71711e-18)
(1.02841 0.0203729 3.82494e-18)
(1.02632 0.0214531 -1.21426e-18)
(1.02445 0.0221303 8.33704e-18)
(1.02275 0.0225349 5.54221e-18)
(1.02116 0.0227692 -3.15109e-18)
(1.01966 0.0228979 9.94232e-18)
(1.01824 0.022962 1.17189e-17)
(1.01688 0.0229692 5.4756e-18)
(1.01555 0.0229118 1.32839e-18)
(1.01426 0.0227689 -2.764e-18)
(1.01299 0.0225238 1.30954e-17)
(1.01172 0.0221573 3.5764e-18)
(1.01042 0.0216618 -1.79902e-18)
(1.00911 0.0210366 8.58678e-18)
(1.00782 0.020298 -1.24061e-18)
(1.00654 0.0194748 1.26718e-17)
(1.00528 0.0186041 -1.05724e-17)
(1.00418 0.017689 -5.70359e-18)
(1.00287 0.0167284 -1.39695e-17)
(1.0368 -0.00562721 4.89226e-19)
(1.03787 -0.00452505 2.08453e-19)
(1.03894 -0.00336307 -1.56396e-18)
(1.0397 -0.00171738 -1.58697e-18)
(1.04008 0.000675667 -2.20323e-18)
(1.03998 0.00376654 9.94113e-18)
(1.03927 0.00729223 -3.92733e-18)
(1.03789 0.0108842 7.32889e-18)
(1.03595 0.0142234 -1.8162e-18)
(1.03366 0.0170612 -2.28244e-18)
(1.03124 0.019293 5.84642e-18)
(1.0289 0.020907 -1.10576e-17)
(1.02674 0.0219918 -6.57855e-18)
(1.02479 0.0226629 -1.42603e-18)
(1.02303 0.0230543 -2.61993e-19)
(1.02139 0.0232714 -1.54239e-17)
(1.01985 0.0233801 9.74677e-18)
(1.0184 0.023422 -1.06379e-17)
(1.017 0.0234067 -3.89663e-18)
(1.01565 0.0233266 5.37894e-19)
(1.01434 0.0231626 1.60277e-17)
(1.01306 0.0228986 -1.36971e-17)
(1.01177 0.022516 -1.65491e-18)
(1.01046 0.022007 -9.35169e-18)
(1.00913 0.0213699 -3.84588e-18)
(1.00781 0.0206204 -1.23377e-18)
(1.00651 0.0197869 -1.3075e-17)
(1.00522 0.0189063 -8.91663e-18)
(1.0041 0.0179811 -8.63938e-19)
(1.00276 0.0170066 -3.15245e-18)
(1.03744 -0.00591047 -1.29981e-19)
(1.03856 -0.00474011 1.06628e-18)
(1.03969 -0.00349503 -1.00423e-18)
(1.0405 -0.00176098 1.15161e-18)
(1.04093 0.000727605 -9.48492e-19)
(1.04085 0.00392031 -5.76935e-20)
(1.04013 0.00754851 -1.07823e-18)
(1.03872 0.0112338 -7.1616e-18)
(1.03672 0.0146505 -1.64354e-18)
(1.03434 0.0175449 1.65135e-17)
(1.03184 0.0198132 -4.32263e-18)
(1.0294 0.0214454 1.35975e-17)
(1.02716 0.0225344 8.83646e-18)
(1.02513 0.0231994 2.37163e-18)
(1.02331 0.023578 2.75596e-18)
(1.02162 0.0237777 1.34635e-18)
(1.02003 0.0238659 3.10611e-18)
(1.01854 0.023885 -9.37811e-18)
(1.01712 0.0238463 2.83462e-18)
(1.01575 0.0237423 -4.4144e-18)
(1.01443 0.0235559 -1.61172e-17)
(1.01313 0.0232723 4.63764e-19)
(1.01183 0.0228733 6.33958e-18)
(1.0105 0.022351 1.97751e-17)
(1.00915 0.0217025 -7.75842e-19)
(1.00781 0.0209427 2.81789e-18)
(1.00647 0.0200999 5.72207e-18)
(1.00517 0.0192104 1.78202e-17)
(1.00401 0.0182758 8.77176e-18)
(1.00265 0.0172885 -7.19618e-18)
(1.03809 -0.00619798 -3.01516e-19)
(1.03926 -0.00495867 -2.96605e-18)
(1.04045 -0.00362807 -1.80871e-19)
(1.04132 -0.00180251 -2.28777e-18)
(1.04179 0.000784978 1.00178e-18)
(1.04174 0.00408244 -6.5575e-18)
(1.04102 0.00781511 7.68048e-18)
(1.03957 0.0115943 2.28104e-18)
(1.0375 0.0150877 6.70186e-19)
(1.03504 0.0180372 1.23795e-20)
(1.03244 0.0203402 1.16673e-18)
(1.02991 0.0219893 -3.64007e-18)
(1.02757 0.0230818 3.70768e-18)
(1.02547 0.0237403 -7.8854e-18)
(1.02358 0.024106 -6.24759e-18)
(1.02184 0.0242885 9.49703e-18)
(1.02021 0.0243558 -1.26732e-17)
(1.01869 0.0243519 5.35578e-18)
(1.01724 0.0242884 3.25896e-18)
(1.01585 0.0241596 3.73026e-18)
(1.01451 0.0239497 1.91295e-17)
(1.0132 0.0236458 -8.67775e-18)
(1.01189 0.0232302 -9.89317e-18)
(1.01054 0.0226948 -6.3286e-18)
(1.00917 0.0220353 2.08391e-18)
(1.0078 0.0212658 -1.40794e-18)
(1.00644 0.0204145 -5.17544e-18)
(1.0051 0.0195167 -8.17737e-18)
(1.00392 0.0185736 -1.9132e-17)
(1.00253 0.0175741 1.09223e-17)
(1.03874 -0.0064918 5.45645e-19)
(1.03997 -0.00518165 4.10196e-18)
(1.04122 -0.00376244 4.31554e-18)
(1.04214 -0.0018421 3.83136e-18)
(1.04267 0.000846567 1.76848e-18)
(1.04265 0.00424983 4.92721e-19)
(1.04192 0.00808712 -8.90492e-18)
(1.04044 0.0119596 2.27097e-18)
(1.0383 0.0155288 6.26683e-18)
(1.03574 0.018532 -4.74668e-18)
(1.03304 0.0208688 -9.61351e-18)
(1.03041 0.0225341 -4.27331e-18)
(1.02799 0.0236302 -1.11021e-18)
(1.02581 0.0242829 -6.16034e-19)
(1.02386 0.0246362 -7.24109e-18)
(1.02206 0.0248017 -7.30045e-19)
(1.02039 0.0248478 1.90556e-18)
(1.01883 0.0248205 -4.3401e-18)
(1.01735 0.0247317 8.42157e-18)
(1.01594 0.0245773 -7.18276e-18)
(1.01459 0.0243434 -1.00666e-17)
(1.01327 0.024019 1.42262e-17)
(1.01194 0.0235867 9.69123e-18)
(1.01058 0.0230386 -3.31646e-18)
(1.00919 0.0223683 3.51855e-18)
(1.00779 0.0215892 -5.92983e-18)
(1.00641 0.0207296 1.31881e-17)
(1.00504 0.0198243 9.24635e-18)
(1.00382 0.0188734 -1.79784e-18)
(1.0024 0.0178627 -4.02308e-18)
(1.0394 -0.00678793 -8.17772e-19)
(1.04069 -0.00540543 1.43368e-18)
(1.04199 -0.00389392 -3.45766e-18)
(1.04298 -0.00187502 -1.65162e-18)
(1.04356 0.00091788 -2.23632e-18)
(1.04357 0.00442836 4.00368e-18)
(1.04284 0.00837047 5.11952e-18)
(1.04132 0.0123355 4.71736e-18)
(1.0391 0.0159789 -5.0975e-18)
(1.03645 0.019034 3.58101e-20)
(1.03365 0.0214024 4.02913e-18)
(1.03092 0.0230824 1.06034e-18)
(1.02841 0.0241811 -1.56512e-17)
(1.02615 0.0248274 7.7627e-18)
(1.02414 0.0251681 1.75376e-18)
(1.02228 0.0253164 -5.75293e-19)
(1.02056 0.0253417 -6.54398e-18)
(1.01897 0.0252904 1.50909e-17)
(1.01746 0.0251765 -8.60116e-18)
(1.01603 0.0249959 1.37769e-17)
(1.01467 0.0247384 2.25095e-18)
(1.01334 0.0243933 -1.56631e-17)
(1.012 0.0239447 -4.58042e-18)
(1.01062 0.023384 7.9948e-19)
(1.0092 0.0227028 -5.76379e-18)
(1.00778 0.021914 6.22188e-18)
(1.00637 0.021046 2.67637e-18)
(1.00496 0.0201331 -4.6322e-18)
(1.00372 0.0191751 2.18563e-17)
(1.00227 0.0181537 1.2864e-17)
(1.04006 -0.00708978 3.23775e-19)
(1.04141 -0.00563148 -3.31582e-18)
(1.04278 -0.00402314 -1.4919e-18)
(1.04384 -0.00190149 -4.5673e-18)
(1.04447 0.000998016 1.38571e-18)
(1.04451 0.00461667 -4.3976e-18)
(1.04378 0.0086635 -7.60659e-18)
(1.04221 0.0127201 -8.36372e-18)
(1.03992 0.0164359 1.09207e-18)
(1.03717 0.0195405 -2.42537e-18)
(1.03426 0.0219384 8.39649e-18)
(1.03144 0.0236314 1.5271e-17)
(1.02883 0.0247316 1.52825e-17)
(1.02649 0.025371 -1.13091e-17)
(1.02441 0.025699 1.06205e-17)
(1.0225 0.0258299 -1.4475e-17)
(1.02073 0.0258341 -4.90778e-18)
(1.0191 0.0257589 -1.33036e-17)
(1.01757 0.0256205 -7.10084e-18)
(1.01612 0.0254138 4.3544e-18)
(1.01474 0.0251339 8.13613e-19)
(1.0134 0.0247682 5.45912e-18)
(1.01205 0.0243043 5.26715e-18)
(1.01065 0.0237311 -6.92151e-18)
(1.00922 0.0230382 -6.47388e-18)
(1.00777 0.022239 3.15527e-18)
(1.00633 0.0213624 -2.67442e-18)
(1.00489 0.0204421 -1.80967e-17)
(1.00361 0.0194771 -1.20434e-17)
(1.00213 0.018446 -1.50549e-18)
(1.04073 -0.00739349 4.11713e-19)
(1.04214 -0.00585591 -5.41321e-19)
(1.04358 -0.00414659 1.92057e-18)
(1.0447 -0.00191679 9.66926e-18)
(1.04539 0.00109254 -8.41731e-18)
(1.04547 0.00482129 7.59281e-19)
(1.04473 0.00897293 1.13223e-18)
(1.04311 0.0131196 8.20892e-18)
(1.04074 0.0169054 8.25383e-18)
(1.03789 0.0200564 7.09594e-18)
(1.03488 0.0224805 7.69051e-18)
(1.03195 0.0241836 -1.36816e-17)
(1.02925 0.025283 -1.37988e-18)
(1.02683 0.0259136 7.41602e-18)
(1.02468 0.0262273 -8.50634e-18)
(1.02271 0.0263399 5.56917e-18)
(1.0209 0.0263226 1.72343e-17)
(1.01923 0.0262245 4.77606e-18)
(1.01767 0.0260616 1.34374e-17)
(1.0162 0.0258307 -1.25984e-17)
(1.01481 0.0255291 5.1644e-18)
(1.01347 0.0251445 3.29283e-18)
(1.0121 0.0246663 -1.41887e-17)
(1.01069 0.024081 1.16958e-17)
(1.00923 0.0233761 3.26145e-18)
(1.00776 0.0225656 7.42779e-18)
(1.00628 0.0216794 -1.07619e-17)
(1.00482 0.0207511 1.40202e-17)
(1.0035 0.0197793 2.31628e-17)
(1.00199 0.0187388 1.13457e-17)
(1.04141 -0.0077046 -2.53874e-19)
(1.04289 -0.00608493 -7.49791e-19)
(1.0444 -0.00427053 -2.79012e-19)
(1.04559 -0.00192893 -2.60701e-18)
(1.04633 0.00119337 6.16798e-18)
(1.04644 0.00503494 6.67179e-19)
(1.04569 0.00929288 9.40143e-18)
(1.04403 0.01353 -1.8569e-18)
(1.04158 0.0173845 -4.37031e-18)
(1.03862 0.0205798 3.15784e-18)
(1.0355 0.0230275 -9.18032e-18)
(1.03246 0.0247379 -1.474e-18)
(1.02967 0.0258337 2.72831e-18)
(1.02717 0.0264528 1.25564e-17)
(1.02496 0.0267499 9.77713e-18)
(1.02293 0.0268428 3.4225e-19)
(1.02107 0.0268031 -1.1134e-17)
(1.01936 0.0266823 -8.13499e-19)
(1.01778 0.0264962 7.74614e-19)
(1.01628 0.0262428 -4.08535e-19)
(1.01489 0.0259215 5.57333e-18)
(1.01353 0.0255206 6.65593e-18)
(1.01216 0.02503 3.67855e-18)
(1.01073 0.0244332 8.80982e-19)
(1.00925 0.0237158 1.38622e-17)
(1.00775 0.022893 -1.39821e-17)
(1.00624 0.0219962 7.17895e-18)
(1.00474 0.0210592 -1.45537e-18)
(1.00339 0.0200803 -2.75183e-17)
(1.00184 0.0190305 -3.54405e-17)
(1.0421 -0.00802224 -1.09379e-19)
(1.04364 -0.00631893 1.86563e-18)
(1.04523 -0.00439657 -7.89929e-20)
(1.04648 -0.00193945 7.14541e-20)
(1.04728 0.00129965 3.75511e-18)
(1.04742 0.00525832 1.46071e-18)
(1.04667 0.00962673 -8.44592e-18)
(1.04495 0.013956 5.19778e-19)
(1.04241 0.0178793 4.03195e-18)
(1.03935 0.0211172 -2.23118e-17)
(1.03612 0.0235856 -1.59862e-17)
(1.03298 0.0252994 -6.46881e-18)
(1.03009 0.0263874 -6.82556e-18)
(1.02752 0.0269903 -5.50884e-18)
(1.02523 0.0272667 2.74463e-18)
(1.02314 0.0273366 -1.99162e-18)
(1.02123 0.0272736 1.02073e-17)
(1.01949 0.02713 -5.82412e-19)
(1.01788 0.0269228 -1.89497e-18)
(1.01637 0.0266496 3.11664e-19)
(1.01496 0.0263124 1.65855e-19)
(1.01359 0.0258983 -1.63152e-18)
(1.01221 0.0253973 -4.13831e-18)
(1.01076 0.0247897 -1.45284e-17)
(1.00926 0.0240591 -1.17751e-17)
(1.00773 0.0232226 -4.24451e-18)
(1.0062 0.0223137 2.05229e-18)
(1.00467 0.0213667 9.84115e-18)
(1.00328 0.0203797 1.49858e-17)
(1.00169 0.0193198 2.04259e-17)
(1.0428 -0.00834904 2.38864e-21)
(1.0444 -0.00656109 -1.07796e-18)
(1.04607 -0.00452904 4.88623e-19)
(1.0474 -0.00195351 -7.1733e-18)
(1.04826 0.00140698 -5.78211e-18)
(1.04843 0.0054893 -7.1331e-18)
(1.04766 0.00997354 -3.49125e-18)
(1.04589 0.0143996 -3.53032e-18)
(1.04326 0.018393 -1.14023e-17)
(1.04009 0.0216733 7.96153e-18)
(1.03674 0.0241595 2.41546e-17)
(1.03349 0.0258726 1.86726e-17)
(1.03051 0.0269469 -7.95436e-19)
(1.02785 0.0275278 -6.93913e-18)
(1.0255 0.027778 -2.15987e-18)
(1.02336 0.0278205 7.05709e-18)
(1.0214 0.0277321 -6.39197e-18)
(1.01962 0.0275659 -6.14313e-18)
(1.01798 0.0273393 -5.20896e-18)
(1.01645 0.0270511 -1.05749e-17)
(1.01503 0.0267015 -2.18736e-18)
(1.01366 0.0262769 2.82202e-18)
(1.01226 0.0257681 1.13937e-17)
(1.0108 0.0251498 -2.55032e-18)
(1.00927 0.024405 1.04462e-17)
(1.00772 0.0235536 8.21157e-18)
(1.00615 0.0226313 -6.3e-18)
(1.00459 0.0216727 -1.31746e-17)
(1.00317 0.0206761 -2.96634e-17)
(1.00154 0.0196055 -1.94659e-17)
(1.0435 -0.00868009 -9.38298e-19)
(1.04518 -0.00680696 -1.7261e-18)
(1.04692 -0.00466376 1.99906e-18)
(1.04832 -0.00196577 2.82792e-18)
(1.04924 0.00152114 1.77852e-19)
(1.04945 0.0057356 7.38576e-18)
(1.04867 0.0103408 6.34586e-18)
(1.04684 0.0148697 -1.36427e-18)
(1.04411 0.0189338 7.64999e-18)
(1.04082 0.0222571 1.07192e-17)
(1.03736 0.0247565 -2.0263e-17)
(1.034 0.0264644 3.73311e-18)
(1.03093 0.0275168 -4.73168e-19)
(1.02819 0.0280688 -1.35693e-20)
(1.02576 0.028285 -3.81025e-18)
(1.02356 0.0282956 6.84046e-18)
(1.02156 0.0281797 6.36499e-18)
(1.01974 0.0279918 1.41226e-17)
(1.01808 0.0277483 6.70132e-18)
(1.01653 0.027449 1.61607e-17)
(1.0151 0.0270912 -1.32412e-17)
(1.01372 0.0266599 -1.94979e-18)
(1.01232 0.0261448 7.90679e-18)
(1.01083 0.0255157 4.30129e-18)
(1.00928 0.0247559 -1.71244e-17)
(1.0077 0.0238879 -4.22327e-18)
(1.0061 0.0229503 9.85494e-18)
(1.0045 0.0219784 -2.13829e-19)
(1.00305 0.0209709 2.02626e-17)
(1.00138 0.0198875 2.49285e-17)
(1.04422 -0.00901899 3.84313e-19)
(1.04597 -0.00706171 2.30543e-18)
(1.04779 -0.00480687 -3.94667e-19)
(1.04927 -0.00198479 3.7696e-18)
(1.05025 0.00163376 -3.05305e-18)
(1.05049 0.00598651 1.82506e-18)
(1.0497 0.0107201 5.31738e-18)
(1.0478 0.0153573 8.94063e-19)
(1.04497 0.0194961 -3.12327e-18)
(1.04156 0.0228632 -6.28383e-18)
(1.03797 0.0253745 1.22227e-18)
(1.03451 0.0270727 -2.31859e-17)
(1.03133 0.0280973 1.1726e-17)
(1.02851 0.0286135 -4.44232e-18)
(1.02602 0.02879 -8.9025e-18)
(1.02377 0.0287641 -1.29444e-17)
(1.02172 0.0286185 -9.95498e-18)
(1.01987 0.0284091 -6.19298e-18)
(1.01818 0.0281518 -8.94568e-18)
(1.01662 0.0278441 -4.59408e-18)
(1.01518 0.0274826 -3.76096e-18)
(1.01379 0.0270479 -9.73429e-18)
(1.01237 0.026527 -1.69359e-17)
(1.01086 0.0258863 8.81962e-18)
(1.00928 0.0251105 5.94075e-18)
(1.00767 0.0242246 -1.42998e-18)
(1.00604 0.0232703 -2.46299e-18)
(1.00441 0.0222839 7.91647e-18)
(1.00292 0.0212638 1.04841e-18)
(1.00122 0.0201662 -1.57778e-18)
(1.04494 -0.0093651 2.95449e-19)
(1.04676 -0.00732492 -1.98237e-18)
(1.04866 -0.00495891 5.12259e-19)
(1.05023 -0.00201052 -5.16223e-19)
(1.05128 0.00174374 1.01025e-17)
(1.05155 0.00624139 -6.2174e-18)
(1.05074 0.0111103 -9.39436e-18)
(1.04877 0.0158623 -4.97791e-18)
(1.04583 0.0200803 -3.01797e-18)
(1.0423 0.0234931 1.01077e-18)
(1.03859 0.0260155 1.53131e-17)
(1.03501 0.0277004 1.31336e-17)
(1.03173 0.0286918 -9.60853e-18)
(1.02883 0.0291662 1.01749e-17)
(1.02627 0.0292973 3.93604e-18)
(1.02397 0.0292308 -6.34649e-18)
(1.02188 0.0290547 8.34142e-18)
(1.02 0.0288241 -2.74113e-18)
(1.01829 0.0285548 -7.10474e-19)
(1.01671 0.0282419 3.97816e-18)
(1.01525 0.0278796 1.68724e-18)
(1.01386 0.0274433 -5.75328e-18)
(1.01242 0.0269166 8.02491e-18)
(1.01089 0.0262633 -1.02669e-17)
(1.00928 0.0254706 1.03316e-17)
(1.00764 0.0245659 8.58319e-18)
(1.00598 0.0235938 -3.08482e-18)
(1.00431 0.0225912 -1.33261e-19)
(1.00278 0.0215567 -1.25578e-17)
(1.00105 0.0204423 -1.42463e-17)
(1.04567 -0.00971727 -5.12534e-19)
(1.04757 -0.0075971 -9.95659e-20)
(1.04956 -0.00512149 -3.06989e-18)
(1.0512 -0.00204637 4.06775e-18)
(1.05233 0.00184727 -5.68723e-18)
(1.05263 0.0064956 7.15669e-19)
(1.0518 0.0115067 9.08552e-18)
(1.04976 0.0163805 8.25954e-19)
(1.0467 0.0206831 1.07775e-18)
(1.04304 0.0241451 -6.25431e-18)
(1.03919 0.0266787 1.44303e-18)
(1.03549 0.0283481 -5.22807e-18)
(1.03212 0.0293021 -5.99791e-18)
(1.02913 0.0297301 4.92732e-18)
(1.02652 0.0298117 9.42177e-18)
(1.02416 0.0297008 1.28114e-17)
(1.02203 0.0294919 1.28632e-18)
(1.02013 0.0292402 6.51596e-18)
(1.01839 0.0289593 6.06447e-18)
(1.0168 0.0286454 -1.64528e-17)
(1.01533 0.0282832 -2.86823e-18)
(1.01393 0.0278455 4.11997e-18)
(1.01248 0.027312 9.65269e-18)
(1.01092 0.0266444 6.31688e-18)
(1.00928 0.0258347 -1.46007e-18)
(1.00761 0.0249116 -9.56071e-18)
(1.00591 0.0239208 -1.61099e-18)
(1.00421 0.0229001 -5.55613e-18)
(1.00264 0.0218493 1.4496e-17)
(1.00088 0.0207162 8.04291e-18)
(1.0464 -0.0100698 4.77637e-19)
(1.04838 -0.00787233 1.47595e-18)
(1.05046 -0.00528658 1.82496e-18)
(1.0522 -0.00208315 -1.18516e-17)
(1.05339 0.00195463 -3.07886e-18)
(1.05374 0.00675966 6.36003e-18)
(1.05289 0.0119186 -9.5124e-18)
(1.05076 0.0169195 7.68453e-18)
(1.04759 0.0213095 3.53096e-18)
(1.04378 0.0248219 4.71448e-18)
(1.0398 0.0273652 -2.89724e-18)
(1.03598 0.0290164 1.19806e-17)
(1.0325 0.0299286 3.81327e-18)
(1.02943 0.0303063 -9.67795e-18)
(1.02675 0.030334 -1.61122e-17)
(1.02435 0.0301773 -2.69563e-18)
(1.02219 0.0299354 -5.68079e-18)
(1.02025 0.029663 -1.38303e-17)
(1.0185 0.0293718 -8.79473e-18)
(1.01689 0.0290572 1.0598e-17)
(1.01542 0.0286958 3.27548e-18)
(1.014 0.0282569 1.62554e-17)
(1.01253 0.0277152 -1.51542e-17)
(1.01094 0.0270326 -1.15789e-18)
(1.00927 0.0262053 -2.22011e-18)
(1.00757 0.0252632 -4.54674e-18)
(1.00584 0.0242527 9.69477e-18)
(1.0041 0.0232128 3.04195e-18)
(1.0025 0.022144 2.36034e-17)
(1.0007 0.0209893 2.75646e-18)
(1.04714 -0.0104217 -2.96174e-19)
(1.0492 -0.0081485 -1.10847e-18)
(1.05137 -0.00545294 -3.19503e-18)
(1.05321 -0.0021199 1.03956e-17)
(1.05448 0.00206539 3.59108e-18)
(1.05486 0.00702981 2.59406e-18)
(1.05399 0.01234 5.31697e-18)
(1.05178 0.0174703 -6.76794e-18)
(1.04847 0.0219502 -4.37462e-18)
(1.04452 0.0255133 -7.28764e-18)
(1.0404 0.0280665 -9.13726e-18)
(1.03645 0.029698 -3.70977e-18)
(1.03287 0.0305675 4.73599e-18)
(1.02971 0.0308935 1.32937e-17)
(1.02697 0.0308671 -1.83338e-18)
(1.02453 0.0306638 6.58543e-18)
(1.02234 0.030388 -4.47341e-18)
(1.02038 0.0300947 1.10888e-17)
(1.01861 0.029794 2.54072e-18)
(1.01699 0.0294783 -6.59221e-18)
(1.0155 0.0291182 5.79462e-18)
(1.01407 0.0286776 -1.9796e-17)
(1.01258 0.028125 7.93687e-18)
(1.01096 0.0274258 2.14998e-18)
(1.00925 0.026581 -1.16906e-17)
(1.00752 0.0256195 1.7302e-17)
(1.00576 0.0245889 -5.95858e-18)
(1.00398 0.0235292 7.26264e-18)
(1.00234 0.022441 -7.23045e-18)
(1.00051 0.021263 -2.73083e-18)
(1.04788 -0.0107688 -2.80205e-19)
(1.05002 -0.00842133 2.99968e-18)
(1.0523 -0.0056154 2.392e-18)
(1.05423 -0.00215077 -7.26361e-19)
(1.0556 0.00218502 -1.72454e-18)
(1.05602 0.00731127 -3.24401e-18)
(1.05512 0.0127725 2.40512e-18)
(1.05281 0.0180331 9.47946e-18)
(1.04937 0.022602 3.29625e-18)
(1.04527 0.0262164 6.55752e-18)
(1.04099 0.0287784 -5.13025e-18)
(1.03691 0.0303905 -8.22856e-18)
(1.03322 0.0312167 -6.56103e-18)
(1.02999 0.0314917 -1.87519e-17)
(1.02718 0.0314118 1.81961e-17)
(1.0247 0.0311625 3.33279e-18)
(1.02248 0.0308541 -5.58413e-18)
(1.0205 0.0305402 -1.36049e-18)
(1.01872 0.0302295 5.1313e-18)
(1.01709 0.0299116 5.02329e-18)
(1.01559 0.0295517 -1.2871e-17)
(1.01414 0.0291072 1.61778e-18)
(1.01263 0.0285426 -1.07903e-17)
(1.01098 0.0278258 -9.90463e-18)
(1.00924 0.0269629 1.51984e-17)
(1.00747 0.0259819 2.9403e-18)
(1.00568 0.024931 6.44435e-18)
(1.00386 0.0238505 6.02232e-18)
(1.00218 0.0227419 -5.33033e-18)
(1.00031 0.0215387 5.15877e-18)
(1.04863 -0.0111116 -2.51861e-19)
(1.05085 -0.00869135 -3.12159e-18)
(1.05323 -0.00577543 -1.20661e-18)
(1.05528 -0.00217794 -5.17711e-18)
(1.05673 0.00230979 -5.18477e-18)
(1.05719 0.00759794 -4.88951e-19)
(1.05626 0.0132106 4.40817e-18)
(1.05386 0.0186012 -1.41117e-18)
(1.05028 0.0232601 -1.6773e-18)
(1.04601 0.0269258 9.48722e-18)
(1.04158 0.0294978 1.96901e-18)
(1.03736 0.0310912 1.22359e-17)
(1.03357 0.0318756 1.39373e-18)
(1.03025 0.032101 1.03125e-17)
(1.02739 0.0319692 -2.24209e-18)
(1.02487 0.0316742 -1.85453e-17)
(1.02262 0.0313326 2.16833e-17)
(1.02063 0.0309973 -1.18251e-17)
(1.01884 0.0306755 -1.08605e-18)
(1.0172 0.0303544 7.60918e-18)
(1.01568 0.0299931 -1.29511e-18)
(1.01422 0.0295426 -2.59323e-19)
(1.01268 0.0289641 2.31851e-18)
(1.011 0.0282293 2.98074e-18)
(1.00922 0.027349 -4.77759e-18)
(1.00741 0.0263499 -1.25224e-17)
(1.00558 0.0252782 -2.10431e-17)
(1.00373 0.024176 -3.20134e-17)
(1.00201 0.023046 -1.90611e-17)
(1.00011 0.021816 -5.98947e-18)
(1.04938 -0.0114468 3.99634e-19)
(1.05169 -0.00895426 2.06556e-19)
(1.05418 -0.00592661 -3.23435e-19)
(1.05634 -0.0021937 4.48803e-18)
(1.05789 0.00244875 1.06342e-18)
(1.05839 0.00789842 -8.85256e-18)
(1.05743 0.0136626 -2.37542e-18)
(1.05493 0.0191805 -7.85004e-19)
(1.0512 0.0239289 2.06843e-18)
(1.04676 0.0276435 -9.04205e-18)
(1.04217 0.0302254 2.06542e-18)
(1.03781 0.0317986 -1.78931e-17)
(1.0339 0.032542 -1.8424e-18)
(1.0305 0.0327177 1.81515e-18)
(1.02758 0.0325346 -9.24399e-18)
(1.02503 0.0321957 1.08997e-17)
(1.02276 0.0318216 2.82289e-18)
(1.02076 0.0314653 1.41723e-17)
(1.01896 0.0311317 -6.93997e-18)
(1.01731 0.0308057 -7.70991e-18)
(1.01578 0.0304413 2.18924e-20)
(1.01429 0.0299835 7.61179e-18)
(1.01272 0.0293906 7.16683e-18)
(1.01101 0.0286385 1.1515e-17)
(1.0092 0.0277411 -9.33867e-18)
(1.00736 0.0267236 -2.12567e-18)
(1.00549 0.0256309 4.29819e-18)
(1.0036 0.0245063 2.37299e-17)
(1.00184 0.0233541 1.59323e-18)
(0.999897 0.0220956 3.23785e-18)
(1.05014 -0.0117747 -8.71233e-19)
(1.05254 -0.00921059 4.05854e-18)
(1.05514 -0.00607068 -2.85511e-20)
(1.05742 -0.00220045 -5.9643e-19)
(1.05906 0.00259803 7.51779e-18)
(1.05961 0.0082091 8.26808e-18)
(1.05862 0.0141244 -4.00504e-18)
(1.05601 0.0197679 -4.83668e-18)
(1.05212 0.0246048 -2.61392e-18)
(1.04751 0.0283669 -5.57277e-18)
(1.04275 0.0309579 7.58911e-18)
(1.03825 0.0325102 4.81896e-18)
(1.03423 0.0332129 4.09966e-18)
(1.03074 0.0333392 9.331e-19)
(1.02777 0.0331063 1.55388e-17)
(1.02518 0.0327241 -6.42141e-18)
(1.0229 0.0323171 -1.8308e-17)
(1.02088 0.0319393 -1.13979e-17)
(1.01908 0.0315938 -1.51661e-18)
(1.01742 0.0312618 -6.27906e-18)
(1.01588 0.0308932 1.27278e-17)
(1.01437 0.0304276 1.2712e-18)
(1.01277 0.0298207 9.56416e-18)
(1.01102 0.0290521 -1.28826e-17)
(1.00917 0.0281381 -8.38381e-18)
(1.00729 0.0271022 -8.30504e-18)
(1.00539 0.0259879 -2.14465e-18)
(1.00345 0.0248404 2.7945e-18)
(1.00165 0.023665 2.4256e-17)
(0.999677 0.0223769 -9.20581e-18)
(1.05091 -0.0120929 1.60443e-18)
(1.0534 -0.00945743 -4.07492e-18)
(1.05612 -0.00620391 3.15034e-18)
(1.05851 -0.00219436 -6.20258e-18)
(1.06026 0.00276142 -5.50962e-18)
(1.06085 0.00853343 -1.41525e-18)
(1.05982 0.0145985 -1.89463e-18)
(1.0571 0.020365 6.49732e-18)
(1.05305 0.0252881 2.25741e-18)
(1.04826 0.0290947 3.57827e-18)
(1.04333 0.031693 -3.52512e-18)
(1.03868 0.0332227 -1.72388e-18)
(1.03454 0.0338841 -7.59111e-18)
(1.03098 0.0339609 1.81378e-18)
(1.02795 0.0336792 -1.53265e-18)
(1.02533 0.0332553 1.19691e-17)
(1.02304 0.0328176 6.301e-18)
(1.02101 0.0324192 5.09408e-18)
(1.0192 0.0320621 1.2217e-17)
(1.01754 0.0317239 6.47827e-18)
(1.01598 0.0313505 -1.85972e-18)
(1.01444 0.0308769 -9.53587e-19)
(1.01282 0.0302568 -2.20572e-17)
(1.01104 0.0294719 3.50013e-18)
(1.00915 0.0285409 9.8016e-18)
(1.00723 0.027486 1.61679e-17)
(1.00528 0.0263496 1.51689e-17)
(1.0033 0.0251784 1.16702e-17)
(1.00146 0.0239794 -4.35901e-17)
(0.999452 0.0226606 -1.59673e-18)
(1.05168 -0.012403 1.09955e-18)
(1.05427 -0.00969687 3.32942e-18)
(1.05711 -0.00632938 -4.67497e-18)
(1.05963 -0.00217932 4.37096e-18)
(1.06148 0.00293392 -2.1801e-18)
(1.06211 0.0088662 5.51162e-18)
(1.06104 0.0150797 8.73362e-19)
(1.0582 0.0209673 -2.69054e-19)
(1.05399 0.0259747 -1.02309e-18)
(1.04901 0.0298241 1.84401e-18)
(1.0439 0.0324279 -1.45689e-18)
(1.0391 0.0339336 6.10234e-18)
(1.03485 0.0345532 1.94174e-17)
(1.0312 0.0345809 -1.77545e-18)
(1.02812 0.0342516 -8.40243e-18)
(1.02548 0.0337869 9.07172e-18)
(1.02317 0.0333189 -1.7165e-18)
(1.02114 0.032901 8.74291e-18)
(1.01933 0.0325331 -3.75923e-18)
(1.01766 0.0321892 -6.99737e-18)
(1.01609 0.0318109 6.93857e-18)
(1.01453 0.0313292 -4.98276e-18)
(1.01286 0.0306964 1.27885e-17)
(1.01105 0.029896 -3.52868e-18)
(1.00912 0.0289477 -1.18948e-17)
(1.00716 0.0278735 -6.43574e-18)
(1.00517 0.0267143 3.02167e-18)
(1.00315 0.025519 -2.34108e-17)
(1.00127 0.0242957 2.40959e-17)
(0.999217 0.0229456 3.20457e-18)
(1.05245 -0.0127036 -9.15307e-20)
(1.05514 -0.00992546 -1.64636e-18)
(1.05811 -0.00644073 1.69715e-18)
(1.06076 -0.00214767 3.50855e-18)
(1.06272 0.00312396 7.06494e-18)
(1.06339 0.00921507 -6.77232e-18)
(1.06228 0.0155753 -6.47906e-18)
(1.05932 0.0215806 -5.0606e-18)
(1.05493 0.0266693 -8.05476e-18)
(1.04976 0.0305572 5.95771e-18)
(1.04447 0.0331633 9.94393e-18)
(1.03952 0.0346417 3.35145e-18)
(1.03515 0.0352178 -1.40872e-17)
(1.03142 0.0351953 -1.98461e-18)
(1.02829 0.0348188 3.21017e-18)
(1.02563 0.0343158 -1.02737e-17)
(1.02331 0.0338201 3.3434e-18)
(1.02127 0.0333851 -3.69696e-18)
(1.01946 0.0330081 -1.83858e-17)
(1.01778 0.0326591 2.2157e-17)
(1.01619 0.0322759 -6.09466e-18)
(1.01461 0.0317864 -1.93129e-19)
(1.01291 0.0311411 2.48318e-18)
(1.01106 0.0303255 1.21257e-17)
(1.00909 0.0293596 1.60075e-17)
(1.00708 0.028265 2.29694e-18)
(1.00505 0.0270825 -4.13144e-18)
(1.00299 0.0258624 -2.32175e-17)
(1.00106 0.0246144 -2.99167e-18)
(0.998977 0.0232325 1.38544e-17)
(1.05324 -0.012996 -1.20248e-18)
(1.05603 -0.0101449 1.46076e-18)
(1.05913 -0.00654042 2.11768e-18)
(1.06191 -0.00210181 -9.16813e-18)
(1.06398 0.00332896 6.17651e-18)
(1.06469 0.00957852 5.83808e-18)
(1.06354 0.016084 5.64843e-18)
(1.06045 0.0222048 -4.41151e-18)
(1.05587 0.0273715 7.20793e-18)
(1.05051 0.0312944 -2.0709e-17)
(1.04503 0.0338991 -4.83409e-18)
(1.03993 0.0353471 -8.91956e-18)
(1.03544 0.0358777 -7.74325e-18)
(1.03163 0.0358043 -9.17578e-18)
(1.02846 0.0353814 1.25013e-18)
(1.02577 0.0348413 -8.76704e-18)
(1.02345 0.0343191 -2.79804e-18)
(1.02141 0.0338687 -1.89481e-18)
(1.01959 0.0334842 1.67898e-17)
(1.01791 0.0331309 -1.5624e-17)
(1.01631 0.0327432 6.16403e-18)
(1.01469 0.0322464 1.3352e-19)
(1.01296 0.0315895 1.53332e-18)
(1.01107 0.030759 -8.13785e-18)
(1.00906 0.0297747 -9.42145e-18)
(1.00701 0.0286589 4.18726e-18)
(1.00493 0.0274525 -1.28543e-17)
(1.00282 0.0262076 2.63521e-17)
(1.00085 0.0249346 -1.20282e-17)
(0.998727 0.0235205 1.90318e-17)
(1.05403 -0.0132782 -1.94048e-19)
(1.05693 -0.0103527 -2.10587e-18)
(1.06016 -0.00662555 -9.81761e-19)
(1.06308 -0.00203873 1.18302e-17)
(1.06526 0.00355222 -1.06687e-17)
(1.06601 0.0099603 -1.01685e-17)
(1.0648 0.0166098 6.35995e-18)
(1.06158 0.0228435 -9.19442e-19)
(1.05682 0.0280845 6.62798e-18)
(1.05125 0.0320379 2.02364e-17)
(1.04559 0.0346363 -5.94943e-18)
(1.04033 0.0360498 9.15183e-18)
(1.03573 0.036532 1.91314e-17)
(1.03184 0.0364062 -1.03824e-17)
(1.02862 0.0359374 2.21804e-18)
(1.02591 0.0353621 1.81412e-17)
(1.02358 0.034817 1.30101e-17)
(1.02155 0.0343535 1.05053e-17)
(1.01973 0.0339635 -4.57968e-18)
(1.01805 0.0336071 4.54005e-18)
(1.01643 0.0332153 -6.90796e-18)
(1.01478 0.0327113 6.16903e-18)
(1.01302 0.0320431 -1.31796e-17)
(1.01108 0.031197 1.76762e-17)
(1.00903 0.0301935 1.58165e-17)
(1.00693 0.0290556 -1.42144e-17)
(1.0048 0.0278249 8.04684e-18)
(1.00265 0.026555 2.21185e-18)
(1.00064 0.025257 9.48561e-18)
(0.998473 0.023811 -2.63998e-17)
(1.05484 -0.0135513 1.97452e-18)
(1.05784 -0.0105522 1.83627e-18)
(1.06121 -0.00670186 2.07729e-18)
(1.06427 -0.001965 -1.47675e-18)
(1.06655 0.00378796 1.21823e-18)
(1.06734 0.0103562 7.58511e-18)
(1.06608 0.0171503 -8.66893e-18)
(1.06273 0.0234963 -4.31141e-19)
(1.05777 0.0288089 2.12718e-18)
(1.05199 0.0327888 -5.82706e-18)
(1.04613 0.0353764 3.674e-18)
(1.04072 0.0367513 -1.43195e-17)
(1.036 0.037182 2.76656e-18)
(1.03203 0.0370029 9.03997e-18)
(1.02877 0.0364885 -3.8433e-18)
(1.02605 0.035879 -8.30917e-18)
(1.02372 0.0353119 -1.76524e-17)
(1.02169 0.0348373 -2.42692e-17)
(1.01988 0.0344434 6.17541e-18)
(1.01819 0.0340854 -1.11775e-17)
(1.01655 0.0336901 -1.72641e-18)
(1.01488 0.0331789 6.78481e-18)
(1.01307 0.0324993 -4.45162e-18)
(1.0111 0.0316378 -2.20487e-17)
(1.009 0.0306144 -4.05755e-18)
(1.00685 0.0294539 2.00047e-17)
(1.00468 0.0281987 -7.99282e-18)
(1.00248 0.0269039 -6.90017e-18)
(1.00041 0.0255808 -1.65488e-17)
(0.998209 0.0241029 -3.14658e-19)
(1.05565 -0.0138123 -1.09786e-18)
(1.05876 -0.0107397 -7.23954e-19)
(1.06227 -0.00676496 -5.21084e-18)
(1.06548 -0.00187589 -6.15355e-18)
(1.06787 0.00404112 -2.58568e-18)
(1.0687 0.0107712 1.15229e-20)
(1.06738 0.0177105 7.96971e-18)
(1.06388 0.0241672 1.30159e-17)
(1.05872 0.0295478 -2.93123e-18)
(1.05273 0.0335491 -8.11883e-18)
(1.04667 0.0361199 -1.08656e-17)
(1.0411 0.037451 2.0431e-18)
(1.03626 0.0378265 -1.57752e-17)
(1.03223 0.037592 1.96678e-17)
(1.02893 0.0370315 -1.55017e-17)
(1.0262 0.03639 1.69552e-18)
(1.02387 0.0358042 3.92992e-18)
(1.02184 0.0353218 2.83348e-17)
(1.02003 0.0349261 -5.62866e-18)
(1.01833 0.0345675 2.08115e-17)
(1.01668 0.034169 1.66658e-17)
(1.01498 0.0336505 -1.31534e-17)
(1.01313 0.032959 1.64928e-17)
(1.01111 0.0320816 1.05268e-17)
(1.00896 0.0310379 -1.3965e-17)
(1.00677 0.0298543 -1.3061e-17)
(1.00454 0.0285745 8.42687e-18)
(1.0023 0.0272547 -2.31847e-17)
(1.00019 0.0259069 2.43415e-17)
(0.997941 0.0243975 4.95899e-18)
(1.05648 -0.0140625 -3.63394e-19)
(1.0597 -0.0109172 2.11287e-18)
(1.06335 -0.0068174 4.18525e-18)
(1.0667 -0.00177415 1.62307e-18)
(1.0692 0.00430942 4.15092e-18)
(1.07007 0.0112038 -3.83518e-18)
(1.06869 0.0182898 -7.0315e-18)
(1.06503 0.0248564 -2.9746e-18)
(1.05967 0.0303018 -3.83876e-18)
(1.05346 0.0343194 2.02683e-17)
(1.0472 0.0368677 1.14461e-17)
(1.04146 0.0381499 6.44587e-19)
(1.03651 0.0384665 1.35616e-17)
(1.03241 0.0381749 2.17045e-18)
(1.02908 0.0375688 9.02941e-18)
(1.02634 0.0368967 -1.77781e-17)
(1.02402 0.0362937 -7.47915e-18)
(1.022 0.0358052 -1.07948e-17)
(1.02019 0.0354097 1.29426e-17)
(1.01849 0.0350515 -5.3682e-18)
(1.01681 0.03465 -2.73587e-17)
(1.01508 0.0341245 1.59655e-17)
(1.01319 0.0334213 -1.59255e-17)
(1.01112 0.0325276 -7.38523e-18)
(1.00893 0.0314631 1.2524e-17)
(1.00668 0.030256 3.85471e-19)
(1.00441 0.0289515 4.26148e-18)
(1.00211 0.0276072 1.82475e-17)
(0.999948 0.0262347 2.3851e-17)
(0.997662 0.024694 1.45294e-17)
(1.05732 -0.0142994 2.5073e-19)
(1.06064 -0.0110809 -5.82588e-18)
(1.06445 -0.00685473 -3.69292e-18)
(1.06795 -0.00165589 -2.38152e-18)
(1.07056 0.00459591 2.91557e-18)
(1.07145 0.011656 -5.77136e-19)
(1.07001 0.018889 -8.50101e-19)
(1.0662 0.0255636 -2.82541e-18)
(1.06062 0.0310695 9.34685e-18)
(1.05418 0.0350974 -1.29378e-17)
(1.04772 0.0376169 -2.59495e-18)
(1.04182 0.038845 -2.74285e-18)
(1.03676 0.0390994 -2.00995e-17)
(1.03259 0.0387493 -1.12779e-17)
(1.02923 0.0380984 -7.72318e-19)
(1.02648 0.0373978 1.97628e-18)
(1.02417 0.0367816 -1.07974e-17)
(1.02216 0.0362899 4.2139e-19)
(1.02036 0.0358964 1.92968e-18)
(1.01865 0.0355394 8.90176e-18)
(1.01695 0.0351353 3.92485e-18)
(1.01518 0.0346021 -3.79725e-18)
(1.01325 0.0338868 -1.44355e-18)
(1.01114 0.032976 1.84173e-17)
(1.00889 0.0318902 -2.34788e-19)
(1.00659 0.0306593 -3.58375e-18)
(1.00426 0.0293303 -1.04734e-17)
(1.00191 0.0279617 -1.03826e-17)
(0.999707 0.0265653 -2.33764e-17)
(0.99738 0.0249939 -4.46844e-17)
(1.05816 -0.0145256 -2.12257e-18)
(1.06161 -0.0112344 7.12079e-18)
(1.06556 -0.0068815 2.31886e-18)
(1.06921 -0.0015254 -3.26119e-18)
(1.07193 0.00489715 -6.48368e-18)
(1.07286 0.0121257 -1.46452e-18)
(1.07134 0.0195065 1.69063e-18)
(1.06736 0.0262876 5.15705e-18)
(1.06157 0.0318497 2.41714e-18)
(1.05489 0.0358821 -6.43344e-18)
(1.04822 0.0383668 -1.39277e-17)
(1.04216 0.039536 -2.70458e-19)
(1.03699 0.0397252 1.05872e-17)
(1.03276 0.0393164 -8.7915e-18)
(1.02937 0.0386219 3.24225e-19)
(1.02663 0.0378949 6.47617e-18)
(1.02433 0.0372672 2.11886e-17)
(1.02233 0.0367743 -5.09157e-19)
(1.02053 0.0363845 -1.53585e-17)
(1.01882 0.0360299 -1.29642e-17)
(1.0171 0.0356232 -3.90604e-18)
(1.0153 0.0350821 5.82182e-18)
(1.01332 0.0343539 1.85654e-17)
(1.01116 0.0334258 -1.9399e-17)
(1.00886 0.0323183 3.69169e-18)
(1.0065 0.0310638 -5.30511e-18)
(1.00412 0.0297106 3.31533e-18)
(1.00172 0.0283183 -1.18395e-18)
(0.999457 0.0268981 7.11756e-18)
(0.997087 0.0252964 5.28415e-17)
(1.05903 -0.0147376 -4.25779e-19)
(1.06258 -0.0113733 -3.45021e-18)
(1.0667 -0.00689219 -5.40653e-19)
(1.0705 -0.00137692 5.35786e-18)
(1.07333 0.00521865 7.75047e-18)
(1.07428 0.0126169 5.96514e-18)
(1.07268 0.0201448 2.83102e-18)
(1.06854 0.0270288 -7.89712e-18)
(1.06251 0.0326409 -1.0989e-17)
(1.0556 0.0366706 5.71005e-18)
(1.04872 0.0391138 5.52819e-18)
(1.0425 0.0402191 -6.58424e-18)
(1.03722 0.0403407 -4.02305e-18)
(1.03293 0.0398729 7.52009e-18)
(1.02952 0.0391362 6.34867e-18)
(1.02679 0.0383861 5.89144e-18)
(1.0245 0.0377511 -2.83347e-18)
(1.02251 0.0372607 4.31839e-18)
(1.02072 0.0368762 1.72897e-17)
(1.01899 0.0365245 -3.55972e-18)
(1.01725 0.036115 1.07842e-17)
(1.01541 0.0355653 -8.11503e-18)
(1.01339 0.0348231 -6.38545e-18)
(1.01117 0.0338772 -5.2745e-18)
(1.00882 0.0327479 4.88146e-19)
(1.00641 0.0314697 1.54187e-17)
(1.00397 0.0300927 -2.62345e-18)
(1.00151 0.0286771 1.32069e-17)
(0.999203 0.0272341 -2.20753e-17)
(0.996792 0.0256026 -5.0632e-17)
(1.0599 -0.0149376 3.61525e-18)
(1.06358 -0.0115005 -4.55109e-19)
(1.06784 -0.00688953 -2.74743e-19)
(1.0718 -0.00121144 7.71736e-18)
(1.07474 0.00556093 -7.01015e-18)
(1.07571 0.0131312 -1.06521e-17)
(1.07403 0.0208052 -1.28668e-18)
(1.06971 0.0277881 -5.72386e-18)
(1.06345 0.0334436 -1.15022e-17)
(1.05629 0.0374633 -5.15017e-18)
(1.04919 0.0398584 4.53875e-18)
(1.04281 0.0408956 2.72759e-17)
(1.03743 0.0409476 1.39904e-17)
(1.03309 0.0404213 1.93985e-18)
(1.02967 0.0396449 -8.3129e-18)
(1.02695 0.0388748 -6.23231e-18)
(1.02468 0.0382347 9.81174e-18)
(1.0227 0.0377484 7.73546e-18)
(1.02091 0.0373708 -1.47098e-17)
(1.01918 0.0370222 -5.56632e-19)
(1.01741 0.0366095 -5.01098e-18)
(1.01553 0.0360505 8.07189e-18)
(1.01346 0.0352941 -9.72082e-18)
(1.01119 0.0343297 2.03713e-17)
(1.00878 0.0331785 2.11886e-18)
(1.00631 0.031877 -4.45194e-18)
(1.00382 0.0304767 2.0823e-17)
(1.00131 0.0290385 2.23661e-17)
(0.998942 0.0275731 -1.98109e-17)
(0.996486 0.0259121 1.03626e-18)
(1.06079 -0.0151223 -8.39048e-19)
(1.06459 -0.0116116 -1.55438e-18)
(1.06901 -0.00686879 1.9654e-18)
(1.07312 -0.00102503 -8.11722e-18)
(1.07618 0.00592606 2.58537e-18)
(1.07717 0.0136686 1.02094e-17)
(1.0754 0.0214857 -1.79255e-18)
(1.07089 0.0285621 1.0152e-17)
(1.06438 0.0342537 2.68798e-17)
(1.05697 0.0382561 1.14896e-17)
(1.04966 0.0405971 1.06407e-17)
(1.04312 0.0415626 -5.89384e-18)
(1.03764 0.041544 -4.59135e-18)
(1.03325 0.0409606 -1.33386e-17)
(1.02982 0.0401474 1.66535e-17)
(1.02711 0.0393606 1.27537e-17)
(1.02486 0.0387198 -2.17636e-17)
(1.0229 0.03824 -1.35148e-17)
(1.02111 0.0378701 3.3142e-18)
(1.01937 0.0375247 -4.83146e-18)
(1.01758 0.0371079 1.68398e-17)
(1.01566 0.0365384 -2.36782e-17)
(1.01353 0.035767 -5.81086e-18)
(1.01121 0.0347834 -8.16805e-18)
(1.00874 0.0336102 -7.38824e-18)
(1.00621 0.0322856 9.13792e-18)
(1.00366 0.0308626 -3.34658e-17)
(1.00109 0.0294025 1.31861e-17)
(0.998676 0.0279158 1.95782e-17)
(0.996177 0.0262261 2.20468e-19)
(1.06169 -0.0152947 -2.07807e-18)
(1.06561 -0.0117109 6.34526e-19)
(1.0702 -0.0068343 -3.35734e-18)
(1.07447 -0.000821325 2.05502e-18)
(1.07763 0.00631161 -4.91322e-18)
(1.07864 0.0142273 5.66604e-19)
(1.07677 0.0221855 8.82343e-18)
(1.07206 0.0293505 -1.86241e-18)
(1.0653 0.0350713 -9.71228e-18)
(1.05764 0.0390495 -8.382e-18)
(1.05011 0.041331 1.62461e-18)
(1.04341 0.0422219 -1.52112e-17)
(1.03784 0.0421321 -1.03718e-17)
(1.03341 0.0414934 2.05211e-17)
(1.02997 0.0406464 -1.09702e-17)
(1.02728 0.0398461 -1.16489e-17)
(1.02505 0.0392062 9.99352e-18)
(1.02311 0.0387344 -2.01046e-18)
(1.02133 0.0383726 1.25112e-17)
(1.01957 0.0380302 6.12263e-18)
(1.01775 0.0376089 -8.42145e-18)
(1.01579 0.0370282 4.9759e-18)
(1.01361 0.0362406 8.0326e-18)
(1.01123 0.0352377 6.37779e-18)
(1.0087 0.0340426 3.12796e-18)
(1.00611 0.0326955 -1.13862e-17)
(1.0035 0.0312508 1.2518e-17)
(1.00088 0.0297698 -1.41135e-17)
(0.998403 0.0282621 2.16909e-17)
(0.995858 0.0265441 3.74272e-17)
(1.06261 -0.0154505 9.20589e-20)
(1.06665 -0.0117925 2.99019e-18)
(1.07141 -0.00677989 2.59414e-18)
(1.07583 -0.000595354 -8.87666e-19)
(1.07911 0.00672069 1.00356e-17)
(1.08013 0.0148084 -4.70568e-18)
(1.07815 0.0229039 -5.88144e-18)
(1.07323 0.0301512 -4.33762e-18)
(1.06622 0.0358934 -1.24546e-19)
(1.0583 0.0398403 1.67519e-17)
(1.05055 0.0420567 -8.59604e-18)
(1.0437 0.04287 2.09236e-17)
(1.03803 0.042709 -7.79895e-18)
(1.03356 0.042017 -8.76911e-21)
(1.03013 0.0411391 2.99683e-18)
(1.02746 0.0403289 -1.34507e-17)
(1.02526 0.0396937 2.75638e-18)
(1.02333 0.0392327 8.17646e-18)
(1.02155 0.0388797 -1.59067e-17)
(1.01978 0.0385397 8.20813e-18)
(1.01793 0.0381128 4.44682e-19)
(1.01592 0.0375196 1.95356e-17)
(1.01369 0.0367149 -2.44643e-18)
(1.01125 0.0356924 3.31931e-18)
(1.00866 0.0344758 -1.86188e-17)
(1.00601 0.033107 8.83253e-18)
(1.00334 0.0316413 -9.05807e-18)
(1.00066 0.0301401 -4.09486e-17)
(0.998127 0.0286128 6.51305e-18)
(0.995536 0.0268674 -8.51755e-18)
(1.06354 -0.0155924 1.30662e-18)
(1.06771 -0.0118595 -2.21014e-18)
(1.07263 -0.00670798 2.07533e-18)
(1.07722 -0.000347677 -2.88137e-18)
(1.0806 0.00715462 -5.04221e-19)
(1.08162 0.0154147 -7.68218e-19)
(1.07953 0.0236442 -3.02921e-18)
(1.0744 0.0309673 8.38635e-18)
(1.06712 0.0367229 -2.97231e-18)
(1.05893 0.0406307 -1.36027e-17)
(1.05097 0.0427763 -9.50821e-18)
(1.04397 0.0435093 -1.17993e-17)
(1.03822 0.043277 6.40916e-18)
(1.03371 0.0425339 -1.95505e-17)
(1.03029 0.0416288 -3.43601e-18)
(1.02765 0.0408123 2.18613e-17)
(1.02547 0.0401839 -1.75533e-18)
(1.02356 0.0397342 4.7296e-18)
(1.02179 0.0393904 2.2745e-18)
(1.02 0.0390522 -1.58012e-17)
(1.01812 0.0386185 6.41145e-18)
(1.01606 0.0380121 7.09135e-18)
(1.01378 0.0371901 1.43618e-17)
(1.01127 0.0361477 -1.95032e-17)
(1.00862 0.0349102 -2.41753e-18)
(1.00591 0.0335204 2.25077e-19)
(1.00317 0.0320347 -1.16913e-17)
(1.00043 0.0305144 2.76755e-17)
(0.997845 0.028968 -3.27647e-17)
(0.995206 0.0271957 -1.43239e-17)
(1.06449 -0.0157159 7.08762e-19)
(1.06879 -0.0119066 2.40786e-18)
(1.07388 -0.00661358 1.39309e-18)
(1.07863 -7.52215e-05 3.8183e-18)
(1.08211 0.0076142 -7.42809e-18)
(1.08314 0.0160446 -5.08528e-18)
(1.08093 0.0244031 2.99489e-18)
(1.07557 0.0317946 -3.25264e-18)
(1.06801 0.0375551 -3.66888e-18)
(1.05956 0.0414164 -6.91442e-18)
(1.05138 0.0434862 4.45389e-18)
(1.04423 0.0441368 1.7612e-17)
(1.0384 0.0438342 4.02384e-18)
(1.03387 0.043043 6.40351e-18)
(1.03046 0.0421147 -4.54855e-18)
(1.02784 0.0412953 6.53207e-18)
(1.0257 0.0406774 -1.02731e-17)
(1.02381 0.0402405 -2.04445e-17)
(1.02203 0.0399057 -6.57094e-18)
(1.02023 0.0395683 5.60203e-18)
(1.01831 0.0391266 -1.67451e-17)
(1.01621 0.0385057 -2.61165e-17)
(1.01387 0.0376659 -1.25762e-17)
(1.0113 0.0366036 5.28429e-18)
(1.00858 0.0353454 1.83776e-17)
(1.00581 0.0339356 7.76482e-18)
(1.00301 0.032431 3.54982e-17)
(1.00021 0.0308924 2.94828e-17)
(0.997561 0.0293284 -1.11452e-17)
(0.994874 0.0275302 1.1314e-17)
(1.06546 -0.0158253 -1.1291e-18)
(1.06989 -0.0119387 1.88978e-18)
(1.07516 -0.00650093 -2.89729e-18)
(1.08006 0.000219619 4.82944e-18)
(1.08364 0.0080985 1.55301e-18)
(1.08466 0.0166984 1.81514e-18)
(1.08232 0.0251813 -3.4872e-18)
(1.07673 0.0326337 -4.25387e-18)
(1.06889 0.0383907 1.03489e-17)
(1.06017 0.0421981 1.87851e-17)
(1.05177 0.0441873 -7.29233e-18)
(1.04447 0.0447541 -1.71907e-17)
(1.03857 0.0443824 -6.0564e-19)
(1.03403 0.0435466 2.56684e-19)
(1.03063 0.0425991 1.16985e-17)
(1.02805 0.0417806 -1.64957e-17)
(1.02594 0.0411744 1.93268e-17)
(1.02407 0.0407508 1.39146e-17)
(1.02229 0.0404244 2.22667e-17)
(1.02047 0.0400869 8.46811e-18)
(1.01851 0.0396364 4.77296e-18)
(1.01636 0.0390003 2.21521e-17)
(1.01396 0.0381418 2.00818e-17)
(1.01133 0.03706 6.28782e-18)
(1.00855 0.0357819 -1.92733e-17)
(1.00571 0.0343531 -1.22443e-17)
(1.00284 0.0328309 -8.3752e-18)
(0.99998 0.0312753 -3.54914e-17)
(0.997272 0.029694 -2.87573e-18)
(0.994533 0.0278704 6.39352e-18)
(1.06645 -0.0159147 1.44796e-18)
(1.07101 -0.0119487 -3.06823e-18)
(1.07645 -0.00636356 3.03195e-18)
(1.08152 0.000540876 -7.81145e-18)
(1.0852 0.00860851 4.24985e-19)
(1.0862 0.0173742 1.17981e-17)
(1.08372 0.025975 6.92889e-18)
(1.07789 0.0334796 7.99771e-18)
(1.06976 0.0392241 -2.77165e-18)
(1.06076 0.0429704 -9.06937e-19)
(1.05215 0.044875 1.2379e-17)
(1.04471 0.0453571 -1.59703e-17)
(1.03874 0.0449187 8.86284e-18)
(1.03419 0.0440424 -6.18849e-18)
(1.03082 0.04308 5.71812e-18)
(1.02828 0.0422659 5.33762e-18)
(1.0262 0.0416742 -2.59651e-17)
(1.02434 0.0412657 3.1429e-18)
(1.02256 0.0409474 -2.04621e-17)
(1.02072 0.0406085 -9.1127e-18)
(1.01872 0.0401478 7.36524e-18)
(1.01652 0.0394955 -1.53202e-17)
(1.01406 0.0386178 -1.91196e-17)
(1.01136 0.0375167 -8.32353e-18)
(1.00852 0.0362198 2.12437e-17)
(1.00561 0.0347731 1.2608e-18)
(1.00268 0.0332344 -1.00826e-17)
(0.999751 0.0316628 4.23514e-18)
(0.996981 0.0300657 2.11621e-18)
(0.994192 0.0282176 -3.28043e-17)
(1.06745 -0.0159885 -1.65848e-18)
(1.07215 -0.0119407 3.83139e-19)
(1.07777 -0.00620378 -1.40434e-18)
(1.08299 0.000888974 3.92001e-18)
(1.08677 0.00914699 2.44446e-18)
(1.08775 0.0180762 2.08116e-19)
(1.08512 0.0267885 7.38801e-19)
(1.07903 0.0343362 -1.2007e-17)
(1.07061 0.040059 -1.61725e-17)
(1.06133 0.0437367 -1.28885e-17)
(1.0525 0.0455523 -1.1502e-17)
(1.04493 0.0459493 3.12708e-17)
(1.03891 0.0454464 5.07827e-18)
(1.03435 0.0445335 1.34495e-17)
(1.03101 0.0435606 -3.22923e-18)
(1.02851 0.0427547 -7.01674e-18)
(1.02647 0.0421793 3.12691e-17)
(1.02463 0.0417852 -1.14912e-17)
(1.02285 0.0414743 1.13393e-17)
(1.02098 0.0411329 1.96735e-17)
(1.01894 0.0406606 1.11945e-17)
(1.01669 0.0399913 -1.44528e-18)
(1.01417 0.0390947 1.39181e-17)
(1.0114 0.0379746 5.23386e-18)
(1.00849 0.0366598 -1.77258e-17)
(1.00551 0.0351966 1.35249e-17)
(1.00252 0.0336426 2.14984e-18)
(0.999523 0.0320561 2.17716e-17)
(0.996688 0.0304436 2.82122e-17)
(0.993843 0.0285713 1.45754e-17)
(1.06848 -0.0160409 1.2486e-18)
(1.07332 -0.0119087 -2.07306e-18)
(1.07911 -0.00601671 -3.1693e-18)
(1.0845 0.00126631 -5.10296e-19)
(1.08836 0.00971341 1.17298e-18)
(1.08931 0.0188016 -1.96572e-18)
(1.08652 0.0276171 -1.18831e-17)
(1.08017 0.035198 1.83108e-18)
(1.07144 0.0408893 2.63703e-18)
(1.06189 0.0444916 5.04743e-18)
(1.05285 0.046215 1.44818e-17)
(1.04516 0.0465273 -3.02088e-17)
(1.03908 0.0459635 -1.24479e-17)
(1.03452 0.0450192 -1.40879e-17)
(1.03122 0.0440409 -1.0217e-17)
(1.02876 0.043246 1.88154e-17)
(1.02675 0.0426894 1.77275e-18)
(1.02493 0.0423103 9.16526e-18)
(1.02314 0.0420057 -2.51814e-17)
(1.02125 0.0416602 -2.80985e-17)
(1.01917 0.0411749 -5.29272e-18)
(1.01686 0.0404877 4.64398e-18)
(1.01428 0.0395723 -1.21681e-17)
(1.01145 0.0384336 1.30209e-17)
(1.00847 0.0371019 2.27998e-17)
(1.00542 0.0356235 -4.70949e-18)
(1.00235 0.0340554 -1.8667e-17)
(0.999295 0.032455 5.84427e-18)
(0.996396 0.0308285 1.0498e-17)
(0.993496 0.0289329 2.66087e-17)
(1.06953 -0.0160779 -5.99179e-19)
(1.0745 -0.0118582 1.6524e-18)
(1.08048 -0.00580638 9.49233e-19)
(1.08602 0.00167107 2.67125e-18)
(1.08996 0.0103083 -1.75055e-18)
(1.09088 0.0195517 -1.18873e-17)
(1.08791 0.0284621 8.52392e-18)
(1.08129 0.0360656 2.22179e-18)
(1.07226 0.0417153 -5.65833e-18)
(1.06243 0.0452348 2.67311e-18)
(1.05318 0.046863 -4.20314e-18)
(1.04536 0.0470919 1.27747e-17)
(1.03924 0.0464712 -4.57449e-18)
(1.0347 0.0455008 2.00281e-17)
(1.03143 0.0445217 1.96376e-19)
(1.02903 0.0437421 -3.27603e-17)
(1.02706 0.0432049 -1.58523e-17)
(1.02525 0.0428405 4.24646e-18)
(1.02346 0.0425407 2.3146e-17)
(1.02154 0.0421899 1.35329e-17)
(1.01942 0.041691 -1.70231e-17)
(1.01705 0.0409856 -1.21435e-17)
(1.0144 0.0400509 -9.35615e-19)
(1.01151 0.0388947 3.0147e-18)
(1.00845 0.0375471 -2.07496e-18)
(1.00533 0.0360548 -9.58532e-18)
(1.0022 0.0344742 1.22419e-17)
(0.99907 0.0328611 -5.11129e-17)
(0.996102 0.0312209 -1.19476e-17)
(0.993144 0.0293019 -4.33329e-17)
(1.0706 -0.0160917 -1.07241e-18)
(1.07572 -0.0117806 -4.94457e-18)
(1.08188 -0.00556617 -2.43287e-18)
(1.08757 0.00210613 -1.95748e-18)
(1.09159 0.0109307 1.46622e-18)
(1.09246 0.0203224 5.84222e-18)
(1.08931 0.0293168 -6.69023e-18)
(1.08241 0.0369306 9.28092e-19)
(1.07306 0.0425278 5.6905e-18)
(1.06295 0.0459578 -3.63052e-18)
(1.0535 0.0474886 1.38556e-17)
(1.04557 0.0476364 -9.56816e-19)
(1.03941 0.0469642 -2.85101e-18)
(1.03489 0.0459741 -2.40793e-18)
(1.03166 0.0450002 1.4714e-17)
(1.02931 0.0442391 1.04242e-17)
(1.02738 0.0437235 -1.39826e-17)
(1.02558 0.0433748 -1.85225e-17)
(1.02378 0.0430793 -2.21698e-17)
(1.02184 0.0427218 -3.51763e-18)
(1.01967 0.0422082 -2.91209e-19)
(1.01725 0.0414842 2.11535e-17)
(1.01454 0.0405305 1.42224e-17)
(1.01157 0.0393576 -1.61333e-17)
(1.00844 0.0379956 -4.50748e-18)
(1.00526 0.0364909 -5.94374e-19)
(1.00205 0.034899 -5.12807e-18)
(0.998848 0.0332742 1.32149e-17)
(0.995812 0.0316214 -2.94792e-17)
(0.992794 0.0296797 7.64303e-18)
(1.07169 -0.0160886 4.48031e-19)
(1.07696 -0.0116808 4.58791e-18)
(1.0833 -0.00529777 2.69592e-18)
(1.08915 0.00257373 1.66205e-18)
(1.09323 0.0115859 -2.86936e-18)
(1.09403 0.0211196 2.68789e-18)
(1.09069 0.0301866 2.38298e-18)
(1.0835 0.0377969 1.31003e-18)
(1.07383 0.0433293 7.88307e-18)
(1.06345 0.0466617 7.82742e-18)
(1.05381 0.0480927 -9.40728e-18)
(1.04577 0.0481617 2.20019e-17)
(1.03958 0.0474435 7.80223e-18)
(1.03508 0.0464401 -6.84734e-18)
(1.03191 0.0454769 -1.02189e-17)
(1.02961 0.0447389 2.8435e-18)
(1.02772 0.044247 1.96627e-18)
(1.02594 0.0439131 3.91693e-18)
(1.02413 0.0436213 1.98831e-17)
(1.02216 0.0432562 -9.59875e-18)
(1.01994 0.042727 1.08435e-17)
(1.01746 0.0419842 1.69499e-18)
(1.01469 0.0410125 -1.43026e-17)
(1.01165 0.0398238 5.32256e-18)
(1.00845 0.038449 -1.46544e-17)
(1.00519 0.0369333 2.18607e-17)
(1.0019 0.0353313 -1.30952e-17)
(0.998631 0.0336958 2.48426e-17)
(0.995521 0.0320305 3.53853e-17)
(0.992439 0.030066 1.59311e-17)
(1.07281 -0.0160627 2.37834e-18)
(1.07823 -0.0115531 -1.24104e-18)
(1.08475 -0.00499631 1.53228e-18)
(1.09075 0.00307706 -2.85607e-18)
(1.09489 0.012275 4.44404e-18)
(1.09562 0.0219426 6.68697e-18)
(1.09207 0.0310683 6.2653e-18)
(1.08458 0.0386595 -5.38319e-18)
(1.0746 0.0441138 5.19742e-18)
(1.06394 0.0473404 -1.65092e-17)
(1.0541 0.0486693 -9.93427e-18)
(1.04597 0.0486626 -1.94525e-17)
(1.03976 0.0479047 2.26865e-17)
(1.03529 0.0468953 -5.34965e-18)
(1.03218 0.0459494 -1.64832e-17)
(1.02993 0.0452377 6.50681e-18)
(1.02808 0.0447721 2.12435e-17)
(1.02631 0.0444538 -6.06884e-18)
(1.0245 0.0441651 1.30595e-17)
(1.02249 0.0437916 1.20667e-17)
(1.02023 0.0432465 2.95863e-18)
(1.01769 0.0424852 -4.35697e-19)
(1.01485 0.0414964 -5.6345e-18)
(1.01174 0.0402931 1.53759e-18)
(1.00846 0.0389068 1.962e-17)
(1.00512 0.0373817 -4.4955e-17)
(1.00176 0.035771 4.27749e-17)
(0.998417 0.0341256 -1.09785e-18)
(0.995234 0.0324489 -5.10372e-18)
(0.992087 0.030462 -3.01256e-17)
(1.07395 -0.016022 -3.39725e-18)
(1.07953 -0.0114059 -8.39668e-19)
(1.08623 -0.00466761 -1.53207e-19)
(1.09237 0.00361604 -3.90943e-18)
(1.09656 0.0130028 3.04868e-18)
(1.09721 0.0227982 -7.87437e-18)
(1.09344 0.0319691 -1.15406e-17)
(1.08564 0.0395242 5.6408e-18)
(1.07533 0.0448851 -1.45431e-17)
(1.0644 0.0479959 1.51705e-17)
(1.05438 0.0492193 1.78166e-17)
(1.04616 0.049139 1.87895e-17)
(1.03995 0.0483471 -1.95126e-17)
(1.03552 0.0473384 9.76418e-18)
(1.03246 0.0464155 3.37368e-17)
(1.03028 0.0457357 -1.59371e-17)
(1.02846 0.0452976 -1.62235e-17)
(1.02671 0.0449955 4.11193e-18)
(1.02488 0.0447094 -2.6664e-17)
(1.02284 0.0443275 1.28221e-17)
(1.02053 0.043767 1.04533e-17)
(1.01794 0.0429882 -1.47914e-17)
(1.01503 0.0419831 1.95507e-17)
(1.01185 0.040767 -1.28057e-17)
(1.00849 0.0393708 7.76554e-18)
(1.00507 0.0378377 -1.84201e-17)
(1.00163 0.0362195 8.63756e-18)
(0.998208 0.0345653 -2.06981e-17)
(0.994947 0.032877 -2.21421e-17)
(0.99173 0.0308673 4.69885e-17)
(1.07512 -0.0159559 1.64256e-18)
(1.08086 -0.0112319 3.64958e-18)
(1.08775 -0.00430875 -2.41635e-18)
(1.09402 0.00419058 1.84009e-18)
(1.09825 0.0137679 -3.68268e-18)
(1.0988 0.0236845 2.02085e-18)
(1.0948 0.0328866 3.28329e-18)
(1.08669 0.0403881 -1.8699e-18)
(1.07605 0.0456399 8.90396e-18)
(1.06485 0.0486242 2.17486e-18)
(1.05466 0.0497381 3.70681e-18)
(1.04636 0.0495859 -1.10056e-17)
(1.04015 0.0487655 -9.72801e-18)
(1.03576 0.0477647 4.05007e-18)
(1.03277 0.0468712 -1.13697e-17)
(1.03064 0.0462264 -1.85623e-18)
(1.02887 0.0458188 -1.39551e-17)
(1.02712 0.045535 -1.66321e-18)
(1.02528 0.0452524 9.98869e-18)
(1.02321 0.0448624 -1.29053e-17)
(1.02086 0.0442874 -2.63868e-17)
(1.0182 0.0434922 -1.14891e-17)
(1.01522 0.042472 -1.98835e-17)
(1.01196 0.0412449 -7.7126e-18)
(1.00853 0.0398406 -3.70531e-18)
(1.00503 0.0383012 1.94008e-17)
(1.00151 0.0366769 -1.49043e-17)
(0.998002 0.0350145 1.91008e-17)
(0.994661 0.0333155 -1.20868e-17)
(0.991375 0.0312831 -1.37793e-17)
(1.07631 -0.0158708 -1.40541e-18)
(1.08222 -0.0110383 -3.15735e-18)
(1.0893 -0.00392586 3.6346e-18)
(1.0957 0.00479889 1.95755e-18)
(1.09995 0.0145735 -5.29116e-18)
(1.10039 0.024609 -5.90072e-18)
(1.09614 0.0338305 2.99187e-18)
(1.0877 0.0412614 6.26479e-18)
(1.07674 0.0463874 5.50051e-18)
(1.06528 0.049233 -2.40195e-20)
(1.05492 0.0502316 3.98858e-18)
(1.04656 0.0500077 4.55599e-18)
(1.04035 0.0491628 1.57807e-17)
(1.03602 0.0481752 -1.89387e-18)
(1.0331 0.0473163 1.157e-17)
(1.03103 0.0467117 2.3987e-17)
(1.0293 0.0463376 2.46855e-17)
(1.02756 0.0460724 9.21204e-18)
(1.02571 0.0457943 1.8615e-17)
(1.02361 0.0453974 3.55166e-19)
(1.0212 0.0448087 5.97738e-18)
(1.01848 0.0439983 1.894e-17)
(1.01543 0.0429655 2.20483e-17)
(1.01209 0.0417289 -6.01348e-18)
(1.00858 0.0403184 -1.59888e-17)
(1.00499 0.0387742 2.52562e-17)
(1.00139 0.0371446 -3.25718e-17)
(0.9978 0.0354748 4.4944e-18)
(0.994376 0.0337647 4.03681e-17)
(0.991014 0.0317092 7.13381e-18)
(1.07754 -0.015758 1.75307e-18)
(1.08361 -0.0108178 3.33197e-18)
(1.09088 -0.00351562 -4.16784e-18)
(1.09741 0.00543934 -9.97015e-18)
(1.10168 0.0154145 2.74331e-18)
(1.10198 0.0255654 8.35161e-18)
(1.09747 0.0347952 6.96998e-19)
(1.0887 0.04214 -8.19277e-18)
(1.07741 0.0471249 4.63223e-18)
(1.06569 0.0498211 -1.31055e-17)
(1.05519 0.0506993 4.17753e-18)
(1.04677 0.0504042 -2.34156e-17)
(1.04058 0.0495387 -2.33759e-17)
(1.0363 0.0485698 -6.86815e-18)
(1.03345 0.0477508 -2.51552e-17)
(1.03145 0.0471887 -7.8595e-18)
(1.02975 0.0468506 2.68486e-18)
(1.02802 0.046606 1.95695e-17)
(1.02616 0.0463336 -1.54335e-17)
(1.02402 0.0459309 9.09362e-18)
(1.02155 0.0453299 1.27804e-17)
(1.01877 0.0445062 -4.81214e-18)
(1.01565 0.0434627 -1.03666e-17)
(1.01224 0.0422185 1.93501e-17)
(1.00864 0.0408035 -1.33364e-18)
(1.00497 0.0392561 -2.23731e-17)
(1.00127 0.0376224 4.79693e-17)
(0.997601 0.0359457 -3.01774e-17)
(0.994093 0.0342253 5.11733e-18)
(0.990656 0.0321467 -3.81874e-17)
(1.07879 -0.015628 -5.51277e-19)
(1.08504 -0.0105761 -4.49888e-18)
(1.09249 -0.00307953 9.64625e-20)
(1.09915 0.00611198 5.28104e-18)
(1.10341 0.0162907 -8.20934e-18)
(1.10357 0.0265533 -1.01365e-17)
(1.09878 0.0357806 5.74198e-18)
(1.08966 0.0430252 4.55278e-18)
(1.07804 0.0478554 -1.1735e-17)
(1.06608 0.0503921 -7.64742e-18)
(1.05543 0.0511451 -1.46864e-17)
(1.04697 0.0507786 1.08836e-17)
(1.04081 0.0498955 3.65278e-17)
(1.0366 0.0489494 4.01472e-19)
(1.03382 0.0481738 -8.44965e-18)
(1.03189 0.0476594 1.74931e-18)
(1.03023 0.0473589 -2.857e-17)
(1.02851 0.0471365 -6.86142e-18)
(1.02662 0.0468707 -2.00629e-17)
(1.02445 0.0464638 -1.0076e-17)
(1.02193 0.0458528 7.407e-18)
(1.01908 0.0450182 -1.13678e-17)
(1.01589 0.0439656 -1.31436e-17)
(1.01239 0.0427161 1.88323e-17)
(1.00871 0.0412981 1.02118e-17)
(1.00495 0.0397487 4.99807e-17)
(1.00117 0.0381119 -5.02771e-17)
(0.997406 0.0364289 -1.71021e-17)
(0.99381 0.0346977 1.63668e-17)
(0.990294 0.0325953 4.74303e-17)
(1.08007 -0.015471 -1.11263e-19)
(1.0865 -0.0103013 3.13398e-19)
(1.09415 -0.00260728 1.07748e-18)
(1.10092 0.00681953 -1.86975e-18)
(1.10517 0.0171965 1.22929e-17)
(1.10516 0.027562 1.95225e-18)
(1.10007 0.0367754 -4.59257e-18)
(1.0906 0.0439075 -3.11289e-18)
(1.07866 0.0485719 6.42991e-18)
(1.06645 0.0509416 3.12217e-17)
(1.05567 0.051566 -1.53207e-17)
(1.04718 0.0511286 -9.36657e-18)
(1.04106 0.0502311 -1.69211e-17)
(1.03693 0.0493122 -1.13692e-17)
(1.03423 0.0485845 8.93827e-18)
(1.03235 0.0481189 -4.61397e-18)
(1.03073 0.0478583 3.96821e-17)
(1.02902 0.0476609 -1.92388e-17)
(1.02711 0.0474041 4.79968e-18)
(1.0249 0.046995 -1.51383e-17)
(1.02232 0.0463763 -1.50689e-17)
(1.01941 0.045533 2.53793e-17)
(1.01614 0.0444734 5.85149e-18)
(1.01256 0.0432206 -1.36854e-17)
(1.00879 0.0418018 -1.92246e-17)
(1.00494 0.0402519 -1.76158e-17)
(1.00107 0.038613 5.89527e-17)
(0.997215 0.0369239 8.81941e-18)
(0.993529 0.0351823 -3.07878e-17)
(0.989934 0.0330561 -5.18026e-18)
(1.08138 -0.0152985 6.13741e-19)
(1.08799 -0.00999952 -1.94753e-18)
(1.09584 -0.00209984 -1.06104e-18)
(1.10272 0.00756324 6.03672e-18)
(1.10694 0.0181336 -1.02382e-18)
(1.10674 0.0285938 -1.73679e-18)
(1.10134 0.0377832 1.78421e-18)
(1.09151 0.044792 -5.27529e-18)
(1.07924 0.0492807 7.72601e-19)
(1.0668 0.0514759 -3.19674e-17)
(1.0559 0.0519677 -1.26408e-18)
(1.04739 0.0514586 1.51008e-18)
(1.04132 0.0505485 2.10034e-18)
(1.03727 0.0496593 2.95792e-17)
(1.03465 0.0489822 -1.14621e-17)
(1.03285 0.0485699 1.83742e-17)
(1.03126 0.0483529 -2.06551e-17)
(1.02955 0.0481813 -1.78449e-17)
(1.02763 0.047936 2.72169e-18)
(1.02537 0.0475273 3.0766e-17)
(1.02274 0.046903 1.58112e-17)
(1.01975 0.0460532 -2.88898e-18)
(1.01641 0.0449895 -3.63842e-19)
(1.01275 0.0437352 -6.91124e-18)
(1.00888 0.0423171 2.41667e-17)
(1.00494 0.040768 -3.22527e-17)
(1.00097 0.0391274 -4.00824e-17)
(0.99703 0.0374325 1.37547e-17)
(0.993251 0.0356798 3.50032e-18)
(0.989572 0.0335289 -1.46741e-17)
(1.08272 -0.0151007 -3.1666e-18)
(1.08953 -0.00966336 3.28342e-19)
(1.09757 -0.00155391 -2.51152e-19)
(1.10455 0.00834169 1.93669e-18)
(1.10873 0.0190975 -2.27344e-18)
(1.10832 0.0296433 3.35855e-18)
(1.1026 0.0387994 5.27599e-18)
(1.0924 0.0456752 3.29622e-18)
(1.07981 0.0499792 -7.34625e-18)
(1.06714 0.0519929 -5.25766e-18)
(1.05613 0.0523484 1.25313e-18)
(1.04761 0.0517672 2.89051e-17)
(1.0416 0.0508464 -3.20643e-18)
(1.03764 0.0499901 -9.62426e-18)
(1.03511 0.0493675 1.35367e-17)
(1.03337 0.0490096 -8.77321e-18)
(1.03182 0.0488385 -1.34481e-17)
(1.03011 0.0486962 3.59182e-17)
(1.02817 0.0484649 -9.40476e-19)
(1.02586 0.0480592 7.40846e-18)
(1.02317 0.0474318 -1.05979e-19)
(1.02012 0.0465781 3.98563e-18)
(1.0167 0.0455127 1.55966e-18)
(1.01295 0.044259 3.83993e-18)
(1.00899 0.0428432 -6.9844e-18)
(1.00495 0.041296 3.76625e-17)
(1.00089 0.0396545 4.21383e-17)
(0.996849 0.0379539 -1.94468e-17)
(0.992976 0.0361903 -2.04248e-17)
(0.989213 0.0340147 1.26923e-17)
(1.0841 -0.0148891 2.59381e-18)
(1.0911 -0.00930205 1.66538e-18)
(1.09933 -0.000975216 -2.91101e-18)
(1.10641 0.00915424 3.42615e-18)
(1.11053 0.0200919 -8.53553e-18)
(1.1099 0.0307164 1.41655e-18)
(1.10384 0.0398298 -2.58907e-18)
(1.09326 0.0465615 -4.57164e-18)
(1.08033 0.0506698 -6.06631e-18)
(1.06745 0.0524934 1.02923e-17)
(1.05635 0.0527076 1.74956e-17)
(1.04784 0.052053 -2.29937e-20)
(1.0419 0.0511231 -1.98021e-17)
(1.03803 0.0503029 -8.64184e-18)
(1.03559 0.0497378 1.21736e-17)
(1.03392 0.0494408 9.68725e-18)
(1.0324 0.0493186 1.92493e-17)
(1.0307 0.0492083 5.47745e-18)
(1.02873 0.0489934 -1.17931e-17)
(1.02638 0.0485932 -1.05575e-17)
(1.02363 0.047966 -5.77522e-18)
(1.02051 0.0471114 -2.21044e-17)
(1.017 0.046046 2.4282e-17)
(1.01316 0.0447948 -1.70427e-17)
(1.00911 0.0433825 -1.29191e-17)
(1.00498 0.0418381 -4.74687e-18)
(1.00081 0.0401962 1.43805e-18)
(0.996676 0.0384899 4.18711e-17)
(0.992704 0.0367146 -6.44131e-18)
(0.988852 0.0345133 -1.37124e-17)
(1.08551 -0.0146506 -1.17157e-18)
(1.09271 -0.00890633 1.06721e-18)
(1.10114 -0.000358853 5.79599e-18)
(1.1083 0.0100022 -1.24042e-17)
(1.11235 0.0211155 1.20982e-17)
(1.11148 0.0318094 -3.02154e-18)
(1.10506 0.0408683 3.79215e-19)
(1.09409 0.0474429 1.0475e-17)
(1.08084 0.051344 1.56439e-17)
(1.06775 0.0529693 -7.16614e-18)
(1.05657 0.0530387 6.25033e-18)
(1.04808 0.0523115 -3.23227e-17)
(1.04222 0.051376 8.84457e-18)
(1.03845 0.0505966 -1.12981e-17)
(1.03611 0.0500945 -4.15455e-18)
(1.0345 0.0498596 -2.54343e-17)
(1.03302 0.0497893 1.73021e-17)
(1.03132 0.049715 -2.7834e-18)
(1.02932 0.0495199 2.35352e-17)
(1.02693 0.0491283 -2.69339e-17)
(1.02411 0.0485042 -7.88453e-18)
(1.02091 0.0476511 6.14025e-18)
(1.01733 0.0465879 -1.49259e-17)
(1.0134 0.0453413 2.87798e-17)
(1.00925 0.0439342 9.65755e-18)
(1.00501 0.0423936 -2.7976e-17)
(1.00075 0.0407518 -1.70032e-17)
(0.996508 0.0390396 6.37833e-18)
(0.992436 0.0372527 1.59764e-17)
(0.988496 0.0350254 -1.13363e-17)
(1.08696 -0.014399 3.25317e-18)
(1.09437 -0.00848547 -2.41168e-18)
(1.10298 0.000291052 -4.62212e-18)
(1.11022 0.0108871 -2.24296e-19)
(1.11418 0.0221734 -8.50782e-18)
(1.11305 0.032928 8.83936e-18)
(1.10626 0.0419197 2.56497e-18)
(1.09489 0.0483233 -5.2874e-18)
(1.08132 0.0520049 8.95787e-18)
(1.06802 0.0534239 2.58173e-17)
(1.05677 0.0533451 -3.0373e-17)
(1.04831 0.0525459 1.03931e-17)
(1.04255 0.0516077 6.5518e-18)
(1.0389 0.0508731 3.94575e-18)
(1.03665 0.0504371 -1.11429e-17)
(1.03512 0.0502702 1.10233e-17)
(1.03367 0.0502567 -1.73489e-17)
(1.03197 0.0502198 -2.72566e-17)
(1.02994 0.0500476 -6.27237e-18)
(1.0275 0.049668 1.51756e-17)
(1.02462 0.0490492 -7.85767e-18)
(1.02134 0.0482001 1.78371e-17)
(1.01767 0.047142 -1.15668e-17)
(1.01365 0.0459014 -2.17481e-17)
(1.0094 0.044501 -6.39875e-18)
(1.00506 0.042965 5.59462e-18)
(1.00069 0.0413233 -2.65953e-17)
(0.996349 0.0396051 -7.2647e-18)
(0.992174 0.0378053 -1.85912e-17)
(0.988138 0.0355511 1.92863e-17)
(1.08845 -0.0141234 -3.77855e-18)
(1.09607 -0.00803209 6.94462e-18)
(1.10487 0.000978089 5.80673e-18)
(1.11218 0.0118089 3.51024e-18)
(1.11603 0.0232627 4.09597e-19)
(1.11463 0.0340678 -1.32988e-17)
(1.10744 0.042979 -4.23454e-18)
(1.09568 0.0491984 6.66001e-18)
(1.08178 0.0526501 -1.89565e-17)
(1.06829 0.0538565 -1.38248e-17)
(1.05698 0.0536276 3.04248e-17)
(1.04858 0.052758 2.44598e-17)
(1.04292 0.0518203 6.43695e-20)
(1.03938 0.0511342 1.89029e-17)
(1.03723 0.0507687 -3.35063e-18)
(1.03576 0.0506703 3.42813e-18)
(1.03435 0.0507155 -2.78882e-18)
(1.03264 0.05072 1.01456e-17)
(1.03058 0.0505739 2.18239e-17)
(1.02809 0.0502094 2.27134e-18)
(1.02515 0.0495993 -1.0337e-18)
(1.0218 0.0487571 -2.04755e-17)
(1.01804 0.0477066 1.26116e-17)
(1.01392 0.0464743 2.77749e-17)
(1.00957 0.0450817 1.11021e-17)
(1.00512 0.0435513 2.81069e-17)
(1.00064 0.0419101 3.71444e-17)
(0.996197 0.0401853 -2.22007e-17)
(0.991917 0.0383725 2.71114e-18)
(0.987788 0.0360911 -1.74369e-17)
(1.08998 -0.0138387 -1.95144e-19)
(1.09782 -0.0075564 -3.37374e-18)
(1.1068 0.00169689 -2.20311e-18)
(1.11416 0.0127672 -4.55594e-18)
(1.11789 0.024386 1.12408e-17)
(1.11619 0.0352325 9.71528e-18)
(1.1086 0.04405 -1.87759e-18)
(1.09642 0.0500714 -4.01379e-18)
(1.0822 0.0532819 2.11804e-18)
(1.06853 0.0542686 -2.42447e-18)
(1.05719 0.0538868 -2.12669e-17)
(1.04884 0.0529469 -3.17936e-17)
(1.0433 0.0520119 -1.56684e-17)
(1.03988 0.051377 -4.9905e-18)
(1.03784 0.0510843 2.77059e-17)
(1.03645 0.0510616 -1.25731e-17)
(1.03506 0.0511691 -1.90323e-18)
(1.03335 0.0512185 1.73414e-17)
(1.03126 0.0511017 -1.27808e-17)
(1.02872 0.0507557 1.06225e-17)
(1.02571 0.0501582 1.6223e-17)
(1.02228 0.0493263 1.85788e-17)
(1.01843 0.0482853 -1.58942e-17)
(1.01421 0.0470631 -4.19383e-17)
(1.00975 0.0456795 -1.17499e-17)
(1.0052 0.0441549 -2.38099e-17)
(1.00061 0.0425142 -3.37715e-17)
(0.996056 0.0407824 -1.98178e-17)
(0.991666 0.0389553 2.60699e-17)
(0.987437 0.0366453 -1.47148e-17)
(1.09155 -0.0135338 1.75222e-18)
(1.09961 -0.00705116 -3.37891e-18)
(1.10878 0.00245084 2.37566e-18)
(1.11619 0.0137616 1.11121e-17)
(1.11978 0.0255405 -6.86858e-18)
(1.11776 0.0364177 1.45029e-18)
(1.10975 0.0451273 3.10398e-18)
(1.09716 0.050937 -6.87461e-20)
(1.08262 0.0538951 -1.67401e-17)
(1.06878 0.0546556 2.41974e-18)
(1.0574 0.0541186 6.97896e-18)
(1.04913 0.0531095 -1.12865e-17)
(1.04371 0.0521803 3.52129e-17)
(1.04042 0.0516006 -2.06699e-17)
(1.03849 0.0513858 -2.9383e-17)
(1.03717 0.0514391 3.1286e-17)
(1.03581 0.0516121 -2.01429e-18)
(1.0341 0.0517113 -1.94765e-17)
(1.03197 0.0516286 -1.81556e-17)
(1.02938 0.0513054 -1.65911e-17)
(1.0263 0.0507242 -1.38792e-17)
(1.02278 0.0499057 -2.80808e-17)
(1.01884 0.0488769 2.86025e-17)
(1.01452 0.0476666 6.63061e-18)
(1.00996 0.0462933 1.83755e-17)
(1.00529 0.0447753 1.28995e-17)
(1.00059 0.043135 8.74788e-18)
(0.995923 0.0413955 -1.09958e-17)
(0.991423 0.0395532 3.97837e-18)
(0.987095 0.0372143 2.87029e-17)
(1.09315 -0.0132246 1.87578e-18)
(1.10145 -0.00652552 2.38792e-18)
(1.1108 0.00323699 -2.3134e-18)
(1.11824 0.0147942 -6.92567e-18)
(1.12167 0.0267312 -2.73441e-18)
(1.11932 0.0376292 -4.04246e-18)
(1.11087 0.0462166 -4.80713e-18)
(1.09785 0.0517994 4.33634e-18)
(1.083 0.0544932 -6.92926e-18)
(1.069 0.0550197 -1.94346e-17)
(1.05761 0.0543241 -5.18603e-18)
(1.04942 0.0532456 1.94458e-17)
(1.04414 0.0523244 -1.05634e-17)
(1.04099 0.0518029 -1.20857e-17)
(1.03917 0.0516691 2.31369e-17)
(1.03792 0.0518059 -3.20645e-17)
(1.0366 0.0520512 2.52624e-17)
(1.03488 0.0522034 1.5062e-17)
(1.03272 0.0521594 3.08992e-17)
(1.03006 0.0518634 -1.7099e-17)
(1.02691 0.0513017 4.18464e-18)
(1.02331 0.0504993 1.68207e-17)
(1.01928 0.0494853 -1.63857e-17)
(1.01486 0.0482884 1.38401e-17)
(1.01018 0.0469263 3.95162e-20)
(1.0054 0.0454151 8.18013e-18)
(1.00058 0.0437746 -3.17719e-18)
(0.995802 0.0420264 1.37628e-17)
(0.991188 0.0401673 -3.0846e-17)
(0.986755 0.0377981 -1.75909e-17)
(1.09481 -0.0128976 -3.50397e-18)
(1.10335 -0.00597104 4.62248e-18)
(1.11287 0.0040594 -2.2503e-18)
(1.12033 0.0158653 3.01414e-18)
(1.12359 0.0279562 5.10723e-18)
(1.12088 0.0388642 1.16358e-18)
(1.11199 0.0473149 5.76713e-19)
(1.09854 0.0526568 1.97101e-18)
(1.08337 0.0550754 4.45136e-17)
(1.06922 0.0553611 1.84879e-17)
(1.05783 0.0545047 6.83642e-18)
(1.04975 0.0533575 5.90065e-18)
(1.04462 0.0524468 -1.81649e-17)
(1.04161 0.0519869 2.23866e-17)
(1.0399 0.0519389 -7.39308e-18)
(1.03872 0.0521604 2.10051e-18)
(1.03743 0.052481 -1.17986e-18)
(1.03569 0.0526918 -7.93467e-18)
(1.0335 0.0526914 6.14265e-19)
(1.03079 0.0524269 3.601e-17)
(1.02756 0.0518885 -2.18001e-18)
(1.02387 0.0511054 -1.91381e-17)
(1.01974 0.0501088 -1.98631e-17)
(1.01521 0.0489272 1.14652e-17)
(1.01043 0.0475771 -2.48753e-17)
(1.00553 0.0460732 -4.5198e-18)
(1.00059 0.0444322 -2.60017e-17)
(0.995692 0.0426742 2.8573e-17)
(0.990962 0.0407973 3.12032e-17)
(0.986425 0.0383972 4.11813e-17)
(1.0965 -0.0125669 2.64557e-18)
(1.10529 -0.00539484 -4.3025e-18)
(1.11499 0.00491575 4.55967e-18)
(1.12246 0.0169761 1.773e-18)
(1.12552 0.0292186 -3.2229e-19)
(1.12243 0.0401259 -8.58418e-18)
(1.11307 0.0484244 -1.95944e-18)
(1.09918 0.0535098 -1.0602e-17)
(1.0837 0.0556407 -2.96138e-17)
(1.06942 0.0556778 -1.80967e-19)
(1.05805 0.054657 3.82294e-18)
(1.05008 0.0534411 -1.93798e-17)
(1.04511 0.0525429 2.71604e-17)
(1.04225 0.052148 5.02865e-18)
(1.04066 0.0521891 -2.77332e-17)
(1.03956 0.0525052 1.02134e-19)
(1.0383 0.0529069 -3.89415e-17)
(1.03655 0.0531814 -2.02068e-17)
(1.03432 0.0532289 -3.20628e-17)
(1.03154 0.0530001 -6.59161e-18)
(1.02824 0.0524891 -4.19596e-18)
(1.02446 0.051729 1.88246e-17)
(1.02023 0.0507515 7.29032e-18)
(1.0156 0.0495867 -2.23273e-17)
(1.01069 0.0482492 1.77263e-17)
(1.00567 0.0467521 -3.12333e-17)
(1.00061 0.0451097 9.83539e-18)
(0.995596 0.0433409 1.80659e-17)
(0.990746 0.0414441 -1.80752e-17)
(0.9861 0.0390114 -3.84084e-17)
(1.09826 -0.0122188 -3.61418e-19)
(1.10729 -0.004789 -1.78595e-18)
(1.11716 0.00580884 -3.64116e-18)
(1.12462 0.0181253 -4.49835e-18)
(1.12747 0.0305144 -4.02391e-18)
(1.12399 0.0414089 1.2826e-18)
(1.11414 0.0495395 -2.5764e-18)
(1.09982 0.0543532 1.17217e-17)
(1.08404 0.0561848 5.99393e-18)
(1.06963 0.0559666 1.02649e-17)
(1.05829 0.0547791 -2.41543e-19)
(1.05045 0.0534957 1.04619e-17)
(1.04564 0.0526134 -3.05507e-17)
(1.04294 0.0522878 -1.02383e-17)
(1.04147 0.0524246 3.06779e-17)
(1.04044 0.0528364 1.62257e-17)
(1.03921 0.0533234 1.79465e-17)
(1.03745 0.0536678 -2.77692e-19)
(1.03517 0.0537691 2.3049e-17)
(1.03234 0.0535809 -2.66054e-18)
(1.02895 0.0531014 2.81472e-17)
(1.02509 0.0523674 -1.97128e-17)
(1.02075 0.0514116 7.81e-18)
(1.016 0.0502649 -4.38827e-19)
(1.01098 0.048941 -2.20407e-17)
(1.00584 0.047451 3.2043e-18)
(1.00065 0.0458067 1.54278e-17)
(0.995512 0.0440254 -4.46141e-17)
(0.990542 0.0421072 -1.15173e-17)
(0.985787 0.039641 1.08953e-18)
(1.10005 -0.0118671 -2.12655e-19)
(1.10935 -0.0041591 -1.10575e-18)
(1.11938 0.00673826 -2.53607e-18)
(1.12682 0.0193164 -3.57524e-18)
(1.12943 0.031849 -3.7767e-18)
(1.12553 0.0427186 1.09275e-17)
(1.11519 0.0506644 8.64537e-19)
(1.10041 0.0551897 -1.50705e-18)
(1.08434 0.0567088 2.90194e-18)
(1.06981 0.0562272 2.0131e-18)
(1.05852 0.0548692 6.9921e-19)
(1.05083 0.0535186 5.49544e-18)
(1.0462 0.0526544 2.12231e-17)
(1.04366 0.0524023 5.43416e-18)
(1.04231 0.0526391 -1.14761e-17)
(1.04137 0.0531568 -3.28545e-17)
(1.04016 0.0537378 4.28966e-18)
(1.03839 0.0541567 2.55631e-17)
(1.03607 0.0543174 -1.41215e-17)
(1.03317 0.0541749 -3.80882e-18)
(1.0297 0.0537305 -4.26656e-18)
(1.02574 0.0530251 2.39906e-17)
(1.0213 0.0520935 8.12255e-18)
(1.01644 0.0509662 1.9529e-17)
(1.0113 0.0496561 5.10931e-17)
(1.00603 0.0481727 3.16061e-17)
(1.00071 0.0465252 2.79719e-17)
(0.995444 0.0447297 1.58486e-17)
(0.990349 0.0427875 3.26527e-18)
(0.98548 0.040286 2.47461e-17)
(1.1019 -0.0114972 2.87885e-19)
(1.11146 -0.0034961 5.21166e-18)
(1.12165 0.0077085 3.79235e-18)
(1.12906 0.0205505 7.38961e-18)
(1.13141 0.0332213 1.06326e-17)
(1.12708 0.0440532 1.09464e-18)
(1.11623 0.0517979 1.24695e-17)
(1.10101 0.0560197 -1.07449e-18)
(1.08464 0.0572146 1.7312e-17)
(1.07002 0.0564629 -6.06881e-19)
(1.05878 0.0549321 -1.4566e-18)
(1.05125 0.053515 -2.94085e-18)
(1.04681 0.0526718 -2.05675e-17)
(1.04444 0.0524973 -1.22255e-17)
(1.04322 0.0528401 -9.95087e-18)
(1.04235 0.0534656 -8.47679e-19)
(1.04117 0.0541447 1.89766e-17)
(1.03938 0.0546449 -1.99319e-17)
(1.03701 0.0548708 2.3843e-17)
(1.03404 0.0547789 2.19324e-17)
(1.03049 0.0543736 -2.85952e-17)
(1.02643 0.0537001 1.56874e-17)
(1.02188 0.052795 -1.62052e-17)
(1.0169 0.0516886 6.16277e-18)
(1.01163 0.0503928 -5.52262e-17)
(1.00623 0.0489159 -5.30826e-17)
(1.00079 0.0472641 5.4596e-18)
(0.995391 0.0454527 3.15683e-17)
(0.990169 0.0434844 4.3911e-17)
(0.985186 0.0409466 3.32348e-18)
(1.1038 -0.0111239 -1.01486e-18)
(1.11364 -0.00280439 -2.77919e-18)
(1.12398 0.00872087 1.42146e-18)
(1.13133 0.0218319 1.03088e-18)
(1.13341 0.0346358 1.28729e-18)
(1.12861 0.0454158 -1.51618e-17)
(1.11724 0.0529405 -3.1313e-18)
(1.10157 0.0568409 3.91216e-18)
(1.08491 0.0576981 -3.86113e-17)
(1.0702 0.0566678 -3.20543e-18)
(1.05905 0.0549607 1.79622e-17)
(1.05169 0.0534773 -1.1626e-17)
(1.04745 0.052658 2.58061e-17)
(1.04526 0.0525657 3.09872e-17)
(1.04417 0.05302 1.73965e-17)
(1.04338 0.0537657 4.50535e-17)
(1.04222 0.0545507 -1.99523e-17)
(1.04041 0.0551387 5.25441e-18)
(1.038 0.0554349 -5.3736e-21)
(1.03496 0.055398 -2.42299e-17)
(1.03132 0.0550359 7.89966e-18)
(1.02716 0.0543979 -1.83703e-17)
(1.0225 0.0535209 2.99705e-18)
(1.0174 0.0524365 2.5083e-18)
(1.012 0.0511549 2.83413e-17)
(1.00646 0.0496833 1.03036e-17)
(1.00088 0.0480256 5.31448e-18)
(0.995353 0.0461961 -2.70032e-17)
(0.990002 0.0441988 -8.93353e-18)
(0.984898 0.0416225 -5.52614e-17)
(1.10576 -0.0107368 1.45704e-18)
(1.11588 -0.00207835 3.34509e-19)
(1.12637 0.00977744 1.1288e-18)
(1.13366 0.0231594 -7.29161e-18)
(1.13544 0.0360886 -1.5855e-17)
(1.13017 0.0468005 1.74825e-17)
(1.11826 0.0540866 -9.11289e-18)
(1.10213 0.0576489 -8.28375e-18)
(1.0852 0.0581565 4.13653e-18)
(1.07042 0.0568411 1.69848e-17)
(1.05935 0.0549566 -2.30193e-17)
(1.05218 0.0534091 -1.51804e-17)
(1.04815 0.0526181 -1.13635e-17)
(1.04615 0.0526134 -3.41082e-17)
(1.04518 0.0531873 -1.34668e-17)
(1.04447 0.0540549 -1.96032e-17)
(1.04333 0.0549507 -3.60534e-18)
(1.0415 0.0556332 1.8906e-17)
(1.03904 0.0560062 -3.11548e-17)
(1.03592 0.0560295 1.73435e-17)
(1.03219 0.0557149 7.59788e-18)
(1.02792 0.0551154 -1.3829e-17)
(1.02315 0.0542687 4.29087e-18)
(1.01792 0.0532073 -2.86209e-17)
(1.01239 0.0519403 2.48833e-17)
(1.00672 0.0504737 6.58315e-17)
(1.00099 0.0488086 -1.22732e-17)
(0.995329 0.0469588 6.55498e-18)
(0.989845 0.0449294 -3.91093e-18)
(0.984621 0.0423134 5.0935e-17)
(1.10777 -0.0103475 -2.2554e-19)
(1.11818 -0.00132044 1.7578e-18)
(1.12882 0.0108824 -4.39876e-18)
(1.13602 0.0245396 6.99444e-18)
(1.13748 0.0375852 1.84438e-17)
(1.1317 0.0482105 -3.09856e-18)
(1.11925 0.0552362 -9.27395e-18)
(1.10266 0.0584411 6.58861e-18)
(1.08546 0.0585854 4.16491e-17)
(1.07062 0.0569771 -1.32001e-17)
(1.05967 0.0549127 -2.56959e-17)
(1.05269 0.0533023 3.42501e-17)
(1.04888 0.0525437 1.92814e-17)
(1.04707 0.0526329 3.78417e-17)
(1.04625 0.0533331 4.94023e-18)
(1.04561 0.054335 -2.3678e-17)
(1.0445 0.0553521 -6.89811e-18)
(1.04264 0.0561351 -1.93893e-17)
(1.04012 0.0565911 2.9201e-17)
(1.03693 0.0566799 -3.34996e-17)
(1.0331 0.0564161 -2.24815e-18)
(1.02873 0.0558575 1.4065e-17)
(1.02383 0.0550434 2.57196e-18)
(1.01848 0.0540056 2.42583e-17)
(1.01281 0.0527528 5.70388e-18)
(1.00699 0.0512899 -4.67305e-17)
(1.00112 0.0496153 -5.93549e-17)
(0.995317 0.0477423 -4.62257e-17)
(0.989696 0.0456772 2.1137e-17)
(0.984347 0.043019 -3.76625e-18)
(1.10986 -0.0099404 -2.88545e-18)
(1.12056 -0.000524595 -1.92438e-18)
(1.13133 0.0120381 7.1255e-19)
(1.13844 0.0259715 -9.00174e-19)
(1.13955 0.0391217 -7.79238e-18)
(1.13325 0.0496407 4.59936e-18)
(1.12024 0.0563859 6.09527e-18)
(1.1032 0.0592169 -9.59895e-18)
(1.08574 0.0589873 -2.0667e-17)
(1.07086 0.0570811 -2.52815e-18)
(1.06003 0.0548369 2.25628e-17)
(1.05327 0.0531668 3.96278e-18)
(1.04969 0.0524454 -3.05633e-17)
(1.04807 0.0526342 -2.2658e-18)
(1.04739 0.0534684 3.05384e-17)
(1.04682 0.0546069 4.20702e-17)
(1.04572 0.0557503 -6.72761e-18)
(1.04384 0.0566412 -2.31208e-18)
(1.04126 0.0571861 -4.6556e-19)
(1.03799 0.0573453 6.12389e-18)
(1.03406 0.0571364 1.03636e-17)
(1.02957 0.0566218 -8.48006e-18)
(1.02455 0.0558421 2.49779e-17)
(1.01906 0.0548292 -9.44761e-18)
(1.01325 0.0535903 -3.01826e-17)
(1.00729 0.0521301 4.95584e-18)
(1.00127 0.050444 5.88447e-17)
(0.995315 0.0485451 5.31757e-17)
(0.989556 0.0464409 -1.60521e-17)
(0.984083 0.0437392 -7.14787e-18)
(1.112 -0.00952633 4.84805e-18)
(1.12301 0.000306725 3.24361e-18)
(1.1339 0.0132484 3.29329e-18)
(1.14088 0.0274595 2.23924e-18)
(1.14162 0.0406994 -4.75276e-18)
(1.13479 0.0510884 -1.19854e-17)
(1.1212 0.0575288 9.62944e-18)
(1.10371 0.0599667 8.75592e-19)
(1.086 0.059351 1.09291e-17)
(1.07109 0.0571416 -5.86476e-18)
(1.0604 0.0547174 2.01467e-18)
(1.05387 0.052991 -9.23143e-18)
(1.05054 0.0523125 -9.9142e-18)
(1.04912 0.0526088 -1.89743e-17)
(1.04858 0.0535848 -1.15471e-17)
(1.04809 0.0548752 -4.46803e-17)
(1.04701 0.0561537 2.5569e-17)
(1.0451 0.0571595 3.25531e-17)
(1.04246 0.0577987 5.69257e-18)
(1.03909 0.0580323 2.11798e-17)
(1.03506 0.057882 4.45339e-18)
(1.03046 0.0574144 4.07666e-18)
(1.02531 0.0566704 -4.35861e-17)
(1.01967 0.0556825 -1.69159e-17)
(1.01371 0.0544566 1.45079e-18)
(1.0076 0.0529971 -3.11734e-17)
(1.00142 0.0512969 1.04602e-17)
(0.995324 0.0493689 -6.96354e-18)
(0.989424 0.0472213 -5.12083e-18)
(0.983823 0.0444736 2.72481e-17)
(1.11422 -0.00909562 -3.74354e-18)
(1.12554 0.00117632 -4.20948e-18)
(1.13655 0.0145123 -3.72283e-18)
(1.14338 0.028998 5.26845e-19)
(1.14373 0.0423088 -2.07166e-18)
(1.13634 0.0525434 -4.38885e-19)
(1.12218 0.0586567 -1.14898e-17)
(1.10423 0.0606862 6.02572e-18)
(1.08629 0.0596762 -2.1594e-17)
(1.07137 0.0571628 -1.20544e-17)
(1.06084 0.0545626 4.18506e-18)
(1.05455 0.052787 -1.8066e-17)
(1.05146 0.052159 1.62405e-17)
(1.05025 0.0525709 -6.53387e-18)
(1.04985 0.053698 -3.84463e-17)
(1.04943 0.0551412 1.66643e-17)
(1.04836 0.0565597 -9.05442e-18)
(1.04642 0.0576865 -3.3491e-17)
(1.04371 0.0584257 -6.37072e-18)
(1.04025 0.0587385 -1.67011e-18)
(1.03611 0.0586502 -1.96389e-17)
(1.03138 0.0582322 -2.09665e-18)
(1.02609 0.0575256 2.09123e-17)
(1.02031 0.0565629 1.15252e-17)
(1.0142 0.0553497 -5.41554e-17)
(1.00793 0.0538895 -1.50299e-17)
(1.00159 0.0521728 6.32733e-18)
(0.995343 0.0502124 7.23619e-18)
(0.9893 0.0480168 -1.3615e-17)
(0.983573 0.045222 -1.45467e-17)
(1.11651 -0.0086529 9.27112e-19)
(1.12815 0.00209154 -3.99017e-18)
(1.13925 0.0158407 3.8268e-18)
(1.14592 0.0305959 5.88242e-19)
(1.14584 0.043955 8.03028e-18)
(1.13787 0.0540058 1.64883e-18)
(1.12312 0.0597654 1.55376e-17)
(1.10472 0.0613675 -9.15847e-18)
(1.08656 0.0599533 -8.461e-18)
(1.07164 0.0571337 1.42031e-17)
(1.06129 0.0543608 -1.20164e-17)
(1.05525 0.0525424 2.68299e-17)
(1.05243 0.0519732 2.7542e-18)
(1.05144 0.0525107 -1.97056e-17)
(1.05118 0.0537978 -3.77251e-19)
(1.05084 0.0554082 -8.47411e-18)
(1.04978 0.056977 -2.45527e-17)
(1.0478 0.0582307 1.13395e-17)
(1.04502 0.0590754 -2.22239e-17)
(1.04146 0.0594716 -7.67816e-18)
(1.0372 0.0594481 -4.67167e-18)
(1.03234 0.0590813 2.37316e-18)
(1.02691 0.0584133 3.05537e-18)
(1.02098 0.0574757 1.16839e-17)
(1.01471 0.0562735 8.48972e-17)
(1.00828 0.0548105 5.24612e-18)
(1.00178 0.053074 -4.12684e-17)
(0.995373 0.0510772 9.12036e-19)
(0.989185 0.0488284 -1.86056e-17)
(0.983326 0.045984 -8.65056e-18)
(1.11888 -0.00818527 1.55173e-18)
(1.13084 0.00305912 3.71994e-18)
(1.14203 0.0172338 -7.55153e-18)
(1.14851 0.0322487 6.09893e-18)
(1.14799 0.045631 -3.81998e-19)
(1.13942 0.0554693 6.13277e-18)
(1.12408 0.060851 -6.43817e-18)
(1.10524 0.0620108 1.65719e-17)
(1.08686 0.0601864 1.12099e-17)
(1.07197 0.0570626 1.264e-17)
(1.06181 0.0541241 8.13906e-18)
(1.05604 0.0522726 -5.30136e-18)
(1.05348 0.0517716 7.3126e-18)
(1.0527 0.0524435 3.18622e-17)
(1.05259 0.0538994 3.4431e-17)
(1.05232 0.0556786 2.41267e-17)
(1.05127 0.0574026 1.3218e-17)
(1.04924 0.0587896 -9.05822e-18)
(1.04638 0.0597446 3.81503e-18)
(1.04272 0.0602282 -3.51031e-18)
(1.03834 0.0602726 4.5436e-18)
(1.03335 0.0599593 1.94277e-17)
(1.02777 0.0593309 -2.01672e-17)
(1.02169 0.0584187 5.50475e-18)
(1.01525 0.0572263 2.1693e-18)
(1.00865 0.0557582 2.46928e-17)
(1.00198 0.0539989 2.13094e-17)
(0.995412 0.0519619 3.52618e-17)
(0.989076 0.0496544 -5.66255e-18)
(0.983088 0.0467592 -2.46376e-17)
(1.12131 -0.00769691 -2.18215e-18)
(1.13362 0.00408578 -3.10674e-18)
(1.14488 0.0187017 3.94671e-18)
(1.15114 0.0339653 -6.72245e-18)
(1.15014 0.0473419 4.32601e-18)
(1.14095 0.0569318 -4.80881e-18)
(1.12501 0.061904 1.00686e-17)
(1.10573 0.0625999 -1.74987e-17)
(1.08715 0.0603552 -2.29627e-17)
(1.0723 0.056927 -2.52991e-17)
(1.06235 0.0538297 1.35758e-17)
(1.05687 0.0519553 1.13593e-17)
(1.05458 0.0515347 -1.40964e-17)
(1.05404 0.0523546 -4.31408e-18)
(1.05407 0.0539909 -3.41969e-18)
(1.05387 0.0559565 1.25441e-17)
(1.05283 0.057845 3.4034e-18)
(1.05075 0.059372 2.46814e-18)
(1.04781 0.0604421 -1.92117e-17)
(1.04404 0.0610162 -2.10582e-17)
(1.03953 0.061131 2.34659e-17)
(1.0344 0.0608732 -4.02501e-17)
(1.02867 0.0602847 1.95977e-17)
(1.02242 0.0593965 -3.09362e-17)
(1.01581 0.0582118 -3.01701e-17)
(1.00904 0.0567355 1.97717e-17)
(1.0022 0.0549492 -2.98299e-17)
(0.995458 0.0528675 -3.33325e-17)
(0.98897 0.0504951 7.35921e-17)
(0.98285 0.0475468 4.87592e-17)
(1.12385 -0.00718006 6.56625e-19)
(1.13649 0.00516967 7.06795e-18)
(1.14781 0.0202368 3.84374e-19)
(1.15383 0.0357367 -7.70191e-18)
(1.15233 0.0490789 -1.38311e-17)
(1.14251 0.0583868 1.17601e-17)
(1.12597 0.0629204 -7.57986e-18)
(1.10626 0.0631332 3.04551e-18)
(1.0875 0.0604611 3.74644e-17)
(1.07271 0.0567323 -2.55417e-18)
(1.06297 0.0534881 -5.36654e-18)
(1.05779 0.0516054 -7.49623e-18)
(1.05579 0.0512802 -2.21667e-18)
(1.05546 0.0522611 -8.6265e-18)
(1.05565 0.0540896 -1.28165e-17)
(1.05551 0.0562428 -2.73077e-17)
(1.05446 0.0583012 -2.43365e-18)
(1.05233 0.0599736 1.44925e-17)
(1.0493 0.0611638 1.95292e-17)
(1.04541 0.0618321 2.26381e-17)
(1.04077 0.06202 -1.06271e-17)
(1.03549 0.0618193 2.50891e-17)
(1.0296 0.0612712 -3.09973e-18)
(1.02318 0.0604063 3.27143e-20)
(1.0164 0.0592274 -2.85376e-17)
(1.00944 0.05774 -3.48428e-17)
(1.00242 0.0559233 -1.7378e-18)
(0.995508 0.0537925 1.90237e-17)
(0.988869 0.0513485 -1.92836e-17)
(0.982622 0.0483467 3.79731e-18)
(1.12646 -0.00663116 -9.23298e-20)
(1.13945 0.00632222 3.72064e-19)
(1.15082 0.0218538 -4.66557e-18)
(1.15655 0.0375775 6.16582e-18)
(1.15452 0.0508546 5.2059e-18)
(1.14405 0.0598406 -1.47015e-17)
(1.1269 0.0638989 -3.73632e-18)
(1.10677 0.0636019 3.17652e-18)
(1.08784 0.0604899 1.19394e-17)
(1.07312 0.0564599 2.77726e-17)
(1.06363 0.0530777 -3.11647e-18)
(1.05876 0.0512007 -3.15892e-17)
(1.05706 0.0509871 3.91783e-17)
(1.05697 0.0521462 -5.60832e-18)
(1.0573 0.0541806 -1.64245e-17)
(1.05723 0.0565393 1.28415e-17)
(1.05617 0.0587785 2.05675e-18)
(1.05399 0.0606029 -1.94137e-17)
(1.05086 0.061918 -2.63048e-17)
(1.04685 0.062684 -1.73105e-17)
(1.04207 0.062947 -5.89359e-18)
(1.03663 0.0628037 -1.2853e-17)
(1.03057 0.0622958 2.59196e-17)
(1.02397 0.0614525 -5.36421e-18)
(1.017 0.0602766 -1.40888e-17)
(1.00986 0.0587748 8.44855e-17)
(1.00266 0.0569233 1.60433e-17)
(0.995567 0.0547385 -6.29039e-17)
(0.988776 0.0522156 -6.26084e-17)
(0.982405 0.0491592 2.19588e-18)
(1.12917 -0.00603714 1.60577e-18)
(1.14251 0.00754446 -4.72059e-18)
(1.1539 0.0235447 7.48487e-18)
(1.15933 0.0394763 -1.24638e-18)
(1.15675 0.0526594 -3.30593e-18)
(1.14562 0.0612895 -7.2202e-18)
(1.12787 0.0648423 7.0401e-19)
(1.10733 0.0640151 5.68141e-18)
(1.08825 0.0604555 -3.85403e-17)
(1.07363 0.0561292 1.3662e-17)
(1.0644 0.0526228 -2.45888e-17)
(1.05984 0.0507683 3.71816e-17)
(1.05843 0.0506826 -2.8104e-17)
(1.05858 0.0520335 1.00721e-17)
(1.05905 0.0542851 -5.94565e-18)
(1.05904 0.0568505 -1.05068e-17)
(1.05797 0.0592758 -2.96906e-18)
(1.05572 0.0612577 -4.00453e-18)
(1.05249 0.0627012 2.58321e-17)
(1.04835 0.0635679 2.74807e-17)
(1.04341 0.0639077 -6.8424e-18)
(1.03781 0.0638232 2.55781e-17)
(1.03157 0.0633554 -3.91803e-17)
(1.02479 0.0625327 -2.23583e-18)
(1.01764 0.0613574 6.49632e-17)
(1.0103 0.0598379 -2.80311e-17)
(1.00291 0.057948 -1.39449e-17)
(0.995643 0.0557046 6.21531e-17)
(0.988704 0.0530953 7.94039e-17)
(0.982217 0.0499856 -6.26795e-17)
(1.13196 -0.00539126 -1.11446e-18)
(1.14566 0.0088498 4.07807e-18)
(1.15706 0.0253229 -5.5461e-19)
(1.16216 0.0414425 2.36016e-18)
(1.15898 0.0544957 1.31473e-17)
(1.14718 0.0627274 9.92442e-18)
(1.12882 0.0657366 1.16483e-18)
(1.10787 0.0643537 -4.01586e-18)
(1.08866 0.0603368 2.66527e-17)
(1.07416 0.0557186 -2.41471e-17)
(1.06521 0.0521016 2.16648e-17)
(1.06098 0.0502885 -3.5229e-17)
(1.05989 0.0503502 -1.2299e-18)
(1.06027 0.0519119 9.96188e-18)
(1.06089 0.0543946 1.24132e-17)
(1.06094 0.0571854 -1.33561e-17)
(1.05985 0.0598049 1.78052e-17)
(1.05753 0.0619491 -1.22476e-17)
(1.05418 0.0635244 -1.37278e-17)
(1.0499 0.0644928 -2.67661e-17)
(1.04481 0.0649103 -1.31154e-17)
(1.03904 0.064885 -4.5431e-17)
(1.03262 0.0644565 1.59993e-17)
(1.02565 0.0636521 4.26139e-17)
(1.0183 0.0624743 -1.03505e-17)
(1.01078 0.0609332 -3.63087e-17)
(1.0032 0.0590001 4.45904e-17)
(0.995752 0.0566935 -2.6265e-17)
(0.988664 0.0539892 -2.43956e-17)
(0.982065 0.0508269 7.78162e-17)
(1.13486 -0.00468699 -1.01345e-18)
(1.14892 0.0102329 -4.14465e-18)
(1.16031 0.0271734 8.89762e-19)
(1.16504 0.0434554 3.77329e-18)
(1.16126 0.0563413 -1.75114e-17)
(1.14877 0.0641356 -9.2691e-18)
(1.12981 0.0665694 -4.70995e-18)
(1.10848 0.0646143 -3.9162e-19)
(1.08916 0.0601403 -2.2394e-17)
(1.0748 0.0552459 -1.49401e-18)
(1.06614 0.0515426 -6.48996e-18)
(1.06225 0.049796 1.7154e-17)
(1.06147 0.0500265 9.81941e-19)
(1.06208 0.0518135 5.01851e-18)
(1.06285 0.0545376 3.79617e-18)
(1.06294 0.0575505 4.07764e-17)
(1.06182 0.0603668 -1.51464e-17)
(1.05941 0.0626751 3.54047e-17)
(1.05595 0.0643838 1.52551e-17)
(1.05152 0.0654554 8.40472e-18)
(1.04627 0.0659516 7.21853e-18)
(1.04032 0.0659861 3.26806e-17)
(1.03373 0.0655963 -1.83999e-17)
(1.02656 0.0648084 -3.91427e-17)
(1.01903 0.0636256 -2.50163e-17)
(1.01131 0.0620596 -1.35912e-17)
(1.00354 0.0600794 -3.7808e-17)
(0.995902 0.0577048 -3.45271e-17)
(0.988667 0.0548959 -4.82112e-17)
(0.981963 0.0516841 -4.35797e-17)
(1.13784 -0.00391419 1.8298e-18)
(1.15228 0.0117142 2.91521e-18)
(1.16363 0.0291216 -7.93413e-18)
(1.16796 0.0455356 -4.50198e-18)
(1.16355 0.0582048 4.8422e-19)
(1.15035 0.0655069 2.21834e-17)
(1.13079 0.0673215 2.54782e-18)
(1.10909 0.0647709 -1.52234e-17)
(1.08968 0.0598386 2.19289e-19)
(1.07548 0.0546838 1.20691e-17)
(1.06714 0.0509187 1.13345e-17)
(1.0636 0.0492661 9.11191e-18)
(1.06314 0.0496896 -1.05965e-17)
(1.064 0.0517228 -1.63959e-17)
(1.0649 0.0547011 1.41969e-17)
(1.06503 0.0579518 9.49329e-18)
(1.06388 0.0609709 -1.09408e-18)
(1.06139 0.0634461 5.38928e-19)
(1.0578 0.0652898 -6.49924e-18)
(1.05322 0.0664656 1.79451e-18)
(1.04781 0.0670408 2.26145e-17)
(1.04169 0.067134 -2.47648e-17)
(1.0349 0.0667815 4.221e-17)
(1.02755 0.0660076 4.38681e-17)
(1.01981 0.064816 -9.55098e-18)
(1.0119 0.0632208 3.0775e-18)
(1.00393 0.0611886 -3.37351e-17)
(0.996105 0.0587407 5.08082e-17)
(0.988721 0.0558166 4.88632e-17)
(0.981912 0.0525579 1.59045e-17)
(1.14094 -0.00306606 -1.63393e-18)
(1.15574 0.0132913 -2.27658e-18)
(1.16704 0.0311571 1.03035e-17)
(1.17095 0.0476674 1.52025e-18)
(1.16588 0.0600676 -2.90736e-20)
(1.15198 0.0668248 -1.26018e-17)
(1.13183 0.0679824 -4.63138e-18)
(1.10979 0.0648224 2.31272e-17)
(1.09032 0.0594413 9.73293e-18)
(1.0763 0.0540536 -2.10322e-17)
(1.06828 0.0502612 2.81041e-18)
(1.06511 0.0487345 -1.69642e-17)
(1.06496 0.049375 1.40481e-17)
(1.06604 0.0516685 -9.45591e-18)
(1.06707 0.0549093 1.95005e-17)
(1.06723 0.0583932 -1.58553e-17)
(1.06604 0.0616163 3.24287e-17)
(1.06346 0.0642598 1.55423e-17)
(1.05974 0.0662388 3.09188e-17)
(1.05501 0.0675193 2.1466e-17)
(1.04943 0.0681737 3.32992e-18)
(1.04313 0.0683256 2.07197e-17)
(1.03616 0.0680091 -2.31986e-17)
(1.0286 0.0672472 -6.87371e-18)
(1.02067 0.0660436 3.36761e-18)
(1.01256 0.0644151 4.98946e-17)
(1.00439 0.0623265 -1.32716e-17)
(0.996362 0.0598002 -4.02355e-17)
(0.988829 0.0567494 -9.16546e-18)
(0.981921 0.0534491 -2.29108e-17)
(1.14412 -0.00213045 -1.28859e-18)
(1.15929 0.0149855 3.57073e-19)
(1.17052 0.0333034 -4.86223e-18)
(1.17397 0.0498663 -5.46569e-18)
(1.16822 0.061932 1.39738e-18)
(1.15359 0.0680756 -4.12438e-18)
(1.13287 0.0685268 -5.38724e-18)
(1.11049 0.0647371 2.0264e-17)
(1.09099 0.0589152 1.48507e-17)
(1.07718 0.0533215 -1.51016e-17)
(1.0695 0.0495362 8.91578e-18)
(1.0667 0.0481704 3.14989e-17)
(1.06688 0.0490563 6.46606e-19)
(1.06819 0.051633 -5.87788e-18)
(1.06935 0.0551489 -1.43729e-17)
(1.06955 0.0588824 1.50171e-17)
(1.06831 0.0623137 -1.48531e-17)
(1.06563 0.0651266 -1.12745e-17)
(1.06178 0.0672421 -2.68735e-17)
(1.0569 0.0686263 -3.91957e-17)
(1.05115 0.0693591 -1.88771e-18)
(1.04466 0.0695685 2.2325e-17)
(1.0375 0.0692859 -2.54233e-17)
(1.02974 0.0685321 -1.61769e-17)
(1.0216 0.0673121 3.49728e-17)
(1.01328 0.0656452 -7.86626e-17)
(1.00491 0.0634949 6.38188e-17)
(0.996675 0.060885 5.04123e-17)
(0.988992 0.0576947 -3.57995e-18)
(0.981989 0.0543579 3.95553e-17)
(1.14741 -0.0011021 4.48687e-18)
(1.16295 0.0167866 2.5268e-18)
(1.17408 0.0355369 -2.0069e-18)
(1.17706 0.0521028 6.72544e-18)
(1.1706 0.0637701 1.65641e-17)
(1.15526 0.0692386 8.7641e-18)
(1.13397 0.0689449 4.79755e-18)
(1.1113 0.0645164 -3.4817e-17)
(1.09179 0.0582731 -3.37785e-18)
(1.07821 0.0525117 3.22182e-17)
(1.07089 0.048778 -2.30154e-17)
(1.06846 0.0476121 7.86063e-18)
(1.06895 0.0487705 -2.86271e-17)
(1.07049 0.0516457 3.14265e-17)
(1.07176 0.0554444 -4.01569e-17)
(1.07198 0.0594204 -1.64748e-17)
(1.07069 0.0630605 -2.93562e-17)
(1.06791 0.0660421 -3.07728e-17)
(1.06392 0.0682938 -2.27252e-17)
(1.05888 0.0697818 1.90783e-17)
(1.05295 0.0705925 -1.24774e-17)
(1.04628 0.0708585 -2.21583e-17)
(1.03892 0.0706078 1.16515e-17)
(1.03096 0.069859 7.69513e-18)
(1.02261 0.0686188 3.06044e-17)
(1.01408 0.0669091 3.44574e-17)
(1.00549 0.0646922 3.96485e-17)
(0.997046 0.0619939 -4.63105e-17)
(0.989215 0.05865 -4.63656e-17)
(0.982125 0.0552848 -4.68896e-18)
(1.1508 4.01527e-05 -2.58477e-18)
(1.1667 0.0187197 -2.51767e-18)
(1.17772 0.0378853 2.15691e-18)
(1.18017 0.0544013 -7.35756e-18)
(1.17298 0.0655965 -7.79877e-18)
(1.15691 0.0703148 4.44873e-18)
(1.13507 0.0692244 8.57373e-18)
(1.11213 0.0641388 4.09396e-18)
(1.09264 0.0574873 -2.57255e-17)
(1.07932 0.0515909 -4.19844e-17)
(1.07238 0.0479482 3.7974e-17)
(1.07033 0.0470211 -2.92766e-17)
(1.07115 0.048483 9.6216e-18)
(1.07291 0.0516807 1.78623e-18)
(1.07429 0.0557751 4.78985e-17)
(1.07453 0.0600103 1.01176e-17)
(1.07319 0.0638626 2.29743e-17)
(1.0703 0.067015 -1.1083e-17)
(1.06617 0.0694034 1.63142e-17)
(1.06096 0.070995 -1.06949e-17)
(1.05485 0.0718829 3.84065e-18)
(1.048 0.0722028 1.9796e-17)
(1.04043 0.0719808 1.47316e-17)
(1.03226 0.0712329 -1.0534e-18)
(1.0237 0.0699672 -8.83503e-17)
(1.01495 0.0682094 9.8814e-18)
(1.00615 0.0659208 -9.91529e-17)
(0.997479 0.0631286 4.43945e-17)
(0.989501 0.0596154 7.51308e-18)
(0.98233 0.0562306 -7.28089e-17)
(1.1543 0.00130578 -1.23313e-18)
(1.17055 0.0207732 -1.13847e-18)
(1.18143 0.0403217 -5.04045e-18)
(1.18334 0.0567336 -5.80379e-18)
(1.1754 0.0673892 1.36414e-18)
(1.15861 0.0712922 -9.15392e-19)
(1.13625 0.0693662 -7.68471e-20)
(1.11307 0.063617 2.10614e-17)
(1.09365 0.0565811 -4.58594e-18)
(1.08061 0.0505924 3.1958e-18)
(1.07405 0.0470876 -5.10362e-17)
(1.07239 0.046439 -2.72884e-17)
(1.07351 0.0482313 2.56179e-17)
(1.07548 0.0517662 -5.56637e-18)
(1.07696 0.0561637 1.10984e-17)
(1.0772 0.0606514 -4.74422e-17)
(1.07579 0.0647178 1.02131e-17)
(1.07279 0.0680413 4.34566e-17)
(1.06851 0.0705662 8.6198e-18)
(1.06313 0.0722611 2.7924e-17)
(1.05685 0.0732253 -3.49481e-17)
(1.0498 0.0735974 -4.19839e-17)
(1.04202 0.0734012 -6.02251e-18)
(1.03364 0.0726507 1.04565e-18)
(1.02486 0.071355 -7.42165e-18)
(1.0159 0.0695439 -4.98157e-17)
(1.00688 0.0671786 -5.09005e-18)
(0.997977 0.0642882 1.57719e-17)
(0.989856 0.0605883 5.82673e-17)
(0.982616 0.0571958 5.82556e-17)
(1.15789 0.00271675 -1.51135e-18)
(1.17448 0.0229704 -6.62784e-19)
(1.18519 0.0428684 2.5526e-19)
(1.18653 0.0591128 1.64457e-17)
(1.1778 0.0691474 6.87912e-18)
(1.16029 0.0721576 -2.61383e-18)
(1.13743 0.0693477 7.77086e-19)
(1.11405 0.0629242 -3.64929e-17)
(1.09472 0.0555264 -4.94368e-19)
(1.08199 0.0494851 2.23464e-17)
(1.07584 0.0461621 1.92806e-18)
(1.07457 0.0458335 6.30347e-17)
(1.07601 0.0479883 2.3577e-18)
(1.07818 0.0518844 1.36402e-17)
(1.07976 0.0565972 -4.39286e-20)
(1.08 0.0613542 2.16359e-17)
(1.07852 0.0656372 1.25343e-18)
(1.07539 0.0691324 -1.53857e-18)
(1.07096 0.0717945 -5.69877e-18)
(1.0654 0.0735908 -2.99973e-17)
(1.05894 0.0746291 4.77531e-17)
(1.05169 0.0750499 3.40806e-17)
(1.04371 0.0748756 1.39038e-17)
(1.03511 0.0741168 -1.19424e-17)
(1.02612 0.0727857 2.17034e-17)
(1.01693 0.0709153 5.15386e-17)
(1.00768 0.0684678 4.91497e-19)
(0.998546 0.0654747 -5.7573e-17)
(0.990286 0.0615682 -2.92055e-17)
(0.982986 0.0581821 1.03724e-17)
(1.16157 0.00427295 7.14239e-19)
(1.1785 0.0252921 6.55174e-18)
(1.18903 0.0454888 6.70478e-18)
(1.18976 0.061491 -1.16595e-17)
(1.18025 0.0708263 -1.46803e-17)
(1.16203 0.0728787 -8.62652e-18)
(1.1387 0.0691576 -7.40606e-18)
(1.11516 0.0620694 5.72135e-18)
(1.09596 0.0543494 2.84851e-17)
(1.08357 0.0483109 1.73053e-17)
(1.07783 0.0452242 2.79847e-17)
(1.07694 0.0452578 -2.8076e-17)
(1.07867 0.0478017 1.28813e-17)
(1.08103 0.0520709 -1.51075e-17)
(1.08269 0.0571045 -1.24124e-17)
(1.08291 0.0621209 6.93913e-18)
(1.08135 0.0666212 -1.58985e-17)
(1.07809 0.0702856 6.54656e-18)
(1.0735 0.0730831 5.36829e-18)
(1.06777 0.0749792 2.42696e-17)
(1.06112 0.0760894 -2.24536e-18)
(1.05368 0.0765556 7.24539e-18)
(1.04549 0.0763994 1.00341e-18)
(1.03668 0.0756278 -4.57208e-17)
(1.02746 0.0742562 -3.85616e-17)
(1.01805 0.0723211 5.40957e-18)
(1.00858 0.0697867 8.01211e-17)
(0.999191 0.0666867 6.41661e-18)
(0.990797 0.0625515 3.0808e-17)
(0.983451 0.0591897 -1.24243e-17)
(1.16535 0.00599466 -4.31133e-19)
(1.18259 0.0277667 -4.78458e-18)
(1.1929 0.0482112 -3.96107e-18)
(1.193 0.0638812 -2.49035e-18)
(1.18267 0.072419 7.55174e-18)
(1.16374 0.0734362 1.53607e-17)
(1.13998 0.0687675 9.96015e-18)
(1.11632 0.0610217 2.31361e-17)
(1.09729 0.0530184 -2.96406e-17)
(1.08526 0.0470345 -3.99046e-17)
(1.07995 0.0442345 -1.94578e-17)
(1.07945 0.0446753 -2.53924e-17)
(1.08148 0.047641 7.6913e-18)
(1.08402 0.0523061 -1.27588e-17)
(1.08574 0.0576705 1.48098e-17)
(1.08594 0.0629617 4.88662e-18)
(1.08428 0.0676786 5.45412e-18)
(1.0809 0.0715121 -5.17991e-17)
(1.07615 0.0744434 -1.33036e-17)
(1.07024 0.0764363 -2.28837e-18)
(1.0634 0.0776159 -4.50185e-18)
(1.05576 0.0781221 -1.3226e-17)
(1.04737 0.0779784 -1.45322e-17)
(1.03834 0.0771882 3.94065e-17)
(1.0289 0.0757697 1.66684e-17)
(1.01927 0.0737639 -2.61403e-17)
(1.00956 0.0711374 1.41954e-17)
(0.999918 0.0679259 -1.06983e-17)
(0.991395 0.0635374 -8.00942e-18)
(0.984014 0.0602193 -2.58992e-17)
(1.16921 0.00787914 3.83166e-18)
(1.18675 0.0303719 -3.32027e-18)
(1.19682 0.0509928 2.30857e-18)
(1.19627 0.0662281 9.62486e-18)
(1.18513 0.0738743 -6.73798e-19)
(1.16552 0.0737933 -3.55604e-18)
(1.14136 0.0681632 -1.03406e-17)
(1.11762 0.0597878 3.43825e-19)
(1.0988 0.0515583 1.7337e-17)
(1.08716 0.0456966 -4.78216e-18)
(1.08228 0.0432448 1.00849e-17)
(1.08215 0.0441367 1.98799e-17)
(1.08445 0.0475512 -4.51184e-17)
(1.08715 0.052623 3.315e-18)
(1.08892 0.0583225 -4.32513e-17)
(1.08908 0.0638768 -3.06954e-17)
(1.08733 0.06881 -1.69964e-17)
(1.0838 0.0728091 1.55155e-17)
(1.07889 0.0758706 2.4843e-17)
(1.0728 0.0779571 -2.95467e-18)
(1.06578 0.0792024 -3.46873e-17)
(1.05794 0.0797442 -1.12331e-17)
(1.04934 0.0796078 -1.40292e-17)
(1.0401 0.078794 9.14965e-19)
(1.03044 0.0773228 4.47064e-17)
(1.02058 0.0752406 6.25206e-17)
(1.01065 0.0725174 -8.86427e-17)
(1.00073 0.0691907 6.79676e-17)
(0.992083 0.0645213 2.49871e-17)
(0.984684 0.0612706 -4.77294e-17)
(1.17314 0.00993683 -7.4923e-20)
(1.19096 0.0331183 4.45985e-18)
(1.20075 0.0538398 -5.32056e-18)
(1.19951 0.0685253 -1.47437e-17)
(1.18755 0.0751701 -1.02457e-17)
(1.16727 0.0739199 -1.54612e-17)
(1.14275 0.0673085 -1.64569e-18)
(1.11898 0.0583309 -1.37473e-17)
(1.10041 0.0499329 2.53095e-18)
(1.08918 0.0442591 3.1227e-17)
(1.08474 0.0422153 -1.62877e-17)
(1.08498 0.0436086 2.06017e-17)
(1.08755 0.0475069 -1.74376e-17)
(1.0904 0.0530079 1.57192e-17)
(1.09221 0.059051 3.38749e-17)
(1.09233 0.0648817 4.48337e-17)
(1.09047 0.0700285 3.08081e-17)
(1.08681 0.0741887 7.79867e-18)
(1.08173 0.0773779 1.55617e-17)
(1.07546 0.0795527 -1.16985e-17)
(1.06825 0.0808582 -8.1434e-18)
(1.06023 0.0814283 5.21135e-19)
(1.05142 0.081293 2.27266e-17)
(1.04196 0.0804482 8.50191e-18)
(1.03208 0.0789179 -5.71804e-17)
(1.02199 0.076753 -7.26871e-18)
(1.01182 0.0739283 3.92738e-17)
(1.00162 0.0704828 -6.36912e-17)
(0.992862 0.0655018 -6.57292e-17)
(0.98546 0.0623447 1.03728e-17)
(1.17714 0.0121424 1.59308e-18)
(1.1952 0.0359525 -5.14106e-18)
(1.2047 0.0566775 2.27445e-19)
(1.20276 0.0706912 8.89903e-18)
(1.18999 0.0762381 6.4579e-18)
(1.16907 0.0737685 1.55507e-17)
(1.14424 0.0661839 8.978e-18)
(1.12051 0.0566572 -1.5524e-17)
(1.10222 0.0481694 6.02803e-18)
(1.09141 0.0427674 2.65902e-17)
(1.08741 0.0412029 4.35348e-17)
(1.088 0.0431469 -4.09298e-17)
(1.09081 0.0475566 4.35246e-18)
(1.09378 0.053496 1.62729e-17)
(1.09562 0.0598846 9.87559e-19)
(1.09568 0.0659776 -4.53333e-17)
(1.09371 0.0713348 -2.09322e-17)
(1.0899 0.0756484 2.67536e-17)
(1.08465 0.0789589 -4.44314e-18)
(1.07821 0.0812163 6.57532e-18)
(1.07082 0.0825764 4.0107e-17)
(1.06261 0.0831685 1.3174e-17)
(1.05359 0.0830279 1.18813e-17)
(1.04392 0.082146 8.4694e-18)
(1.03382 0.0805504 6.56886e-17)
(1.0235 0.0782971 1.15786e-17)
(1.01309 0.0753671 2.7997e-17)
(1.00259 0.0717993 4.10694e-17)
(0.993733 0.0664731 4.12138e-17)
(0.986349 0.0634416 8.51897e-17)
(1.18119 0.0144888 -5.00903e-18)
(1.19945 0.0388614 5.64122e-18)
(1.20861 0.0594845 2.71142e-18)
(1.20596 0.0726983 -2.38792e-18)
(1.19237 0.0770412 1.55599e-18)
(1.17085 0.0732991 -9.27746e-18)
(1.14577 0.0647447 -1.35706e-17)
(1.1221 0.0547202 -1.09064e-17)
(1.10414 0.0462215 -2.97856e-17)
(1.09377 0.0411729 -5.14828e-17)
(1.09022 0.0401588 -4.51118e-17)
(1.09116 0.0427105 2.31825e-17)
(1.09419 0.0476705 1.6692e-17)
(1.09728 0.0540712 5.86593e-19)
(1.09912 0.0608128 -1.69738e-17)
(1.09913 0.0671789 3.38242e-17)
(1.09704 0.0727392 1.47475e-17)
(1.09308 0.0772 -3.71023e-17)
(1.08767 0.0806254 -8.37537e-18)
(1.08104 0.082958 -9.47296e-18)
(1.07347 0.0843662 -1.45449e-17)
(1.06507 0.0849708 -1.69367e-17)
(1.05586 0.0848161 -1.30324e-17)
(1.04597 0.0838896 -1.00782e-17)
(1.03565 0.0822215 -3.52299e-17)
(1.0251 0.0798738 1.9259e-17)
(1.01446 0.076835 -5.36229e-17)
(1.00364 0.0731413 -4.81867e-17)
(0.994695 0.0674315 -6.45198e-17)
(0.98735 0.0645602 -6.10227e-17)
(1.18527 0.0169228 2.05102e-18)
(1.20371 0.0417547 -5.56378e-18)
(1.21251 0.0621433 4.28156e-18)
(1.20913 0.0744222 -9.99197e-19)
(1.19476 0.0774718 -6.83153e-18)
(1.17268 0.072431 -8.90655e-18)
(1.1474 0.062944 4.73799e-19)
(1.12387 0.0525054 5.54944e-17)
(1.10627 0.044101 1.79815e-17)
(1.09636 0.0395105 6.59643e-18)
(1.09324 0.0391321 6.02397e-18)
(1.0945 0.0423491 -3.29683e-17)
(1.09773 0.0478926 2.35923e-17)
(1.1009 0.0547664 -1.25696e-17)
(1.10273 0.0618628 -2.22232e-18)
(1.10265 0.0684859 -9.61967e-18)
(1.10044 0.0742432 -2.11157e-17)
(1.09633 0.0788411 3.67286e-17)
(1.09075 0.0823721 -4.16016e-17)
(1.08395 0.0847717 1.76992e-18)
(1.0762 0.0862199 4.45805e-18)
(1.06761 0.0868283 -1.38502e-17)
(1.0582 0.0866514 2.46301e-17)
(1.0481 0.0856731 2.56361e-17)
(1.03756 0.0839259 4.51142e-17)
(1.02679 0.0814781 -9.27931e-17)
(1.01591 0.0783277 7.89486e-17)
(1.00476 0.0745057 6.10542e-18)
(0.995749 0.0683696 2.90572e-17)
(0.98847 0.0657006 6.58494e-17)
(1.18935 0.0193606 -3.05151e-18)
(1.20791 0.0445255 3.72429e-18)
(1.21632 0.0645291 -4.58457e-18)
(1.21222 0.0757331 -5.88449e-18)
(1.19708 0.0773992 1.30784e-17)
(1.17449 0.0710449 1.35474e-17)
(1.14908 0.0606737 8.86034e-18)
(1.12573 0.0499186 7.21023e-18)
(1.10852 0.0417277 1.89775e-17)
(1.09909 0.0377089 9.21815e-18)
(1.09639 0.0380619 2.62483e-17)
(1.09796 0.0420169 6.38769e-17)
(1.10138 0.0481928 1.47663e-17)
(1.10462 0.0555661 -5.99429e-18)
(1.10641 0.0630255 -1.71988e-17)
(1.10625 0.069913 -3.09985e-17)
(1.1039 0.0758585 6.87498e-18)
(1.09963 0.080582 -3.06431e-17)
(1.09388 0.0842109 3.12906e-17)
(1.08691 0.0866668 -7.13904e-18)
(1.07899 0.0881449 4.724e-18)
(1.07022 0.0887449 3.21914e-17)
(1.06062 0.0885362 -3.42026e-17)
(1.05031 0.0874968 -1.05662e-17)
(1.03956 0.0856632 -6.20315e-17)
(1.02857 0.0831093 6.22595e-17)
(1.01745 0.0798456 -6.96933e-17)
(1.00595 0.0758933 7.5301e-17)
(0.996892 0.069283 -8.82876e-18)
(0.989707 0.0668628 -4.5697e-17)
(1.19342 0.0216102 7.59091e-19)
(1.21207 0.0469278 2.36422e-18)
(1.22007 0.0663676 1.59808e-19)
(1.21525 0.0763559 2.23585e-17)
(1.19939 0.0765769 2.82363e-18)
(1.17636 0.0689375 -7.99014e-18)
(1.15089 0.0577838 -6.23897e-18)
(1.12778 0.0468636 -1.87508e-17)
(1.11101 0.039051 6.60099e-18)
(1.10204 0.0357556 3.65712e-17)
(1.09976 0.0369609 -3.2821e-17)
(1.1016 0.0417344 -2.15324e-17)
(1.10515 0.0485915 1.57529e-18)
(1.10842 0.0564844 2.06031e-17)
(1.11017 0.0643132 -3.32821e-18)
(1.10989 0.0714512 5.85285e-17)
(1.1074 0.0775781 -2.08899e-17)
(1.10298 0.0824141 -8.4449e-19)
(1.09706 0.0861302 -2.31969e-17)
(1.08992 0.0886321 2.70841e-17)
(1.08183 0.0901302 1.47998e-17)
(1.07288 0.0907114 -1.92179e-17)
(1.06309 0.090462 5.92132e-19)
(1.05259 0.0893535 -7.84842e-17)
(1.04163 0.0874267 1.00836e-16)
(1.03042 0.0847614 -9.50348e-17)
(1.01907 0.0813836 1.33403e-17)
(1.0072 0.0772993 -5.3662e-17)
(0.998121 0.0701628 8.28981e-18)
(0.991062 0.0680477 3.92707e-17)
(1.19747 0.0235421 2.13171e-18)
(1.21613 0.0487859 -3.95597e-19)
(1.22371 0.0674543 1.58844e-18)
(1.21819 0.0760755 -1.3384e-18)
(1.20166 0.0747869 -2.09404e-18)
(1.17824 0.0659013 1.42797e-17)
(1.15277 0.0540799 9.13343e-18)
(1.12996 0.0431628 -1.23577e-17)
(1.11365 0.0359139 -3.76943e-17)
(1.10516 0.0335128 -2.97422e-17)
(1.10327 0.0357126 -1.179e-17)
(1.10536 0.0414118 2.06444e-17)
(1.10902 0.0490241 -6.70925e-17)
(1.1123 0.0574791 -1.61024e-17)
(1.11397 0.0656961 2.03246e-17)
(1.11358 0.0730979 -2.87044e-17)
(1.11093 0.0793989 1.00392e-17)
(1.10635 0.0843393 4.65664e-17)
(1.10027 0.0881344 4.43599e-17)
(1.09296 0.0906711 2.30747e-17)
(1.0847 0.0921794 -2.2589e-17)
(1.07559 0.0927291 3.3901e-17)
(1.06562 0.0924283 -2.18342e-17)
(1.05492 0.0912416 1.85291e-17)
(1.04376 0.0892142 -1.19964e-16)
(1.03234 0.0864321 1.13e-16)
(1.02075 0.0829408 1.80596e-17)
(1.0085 0.0787235 -8.18706e-18)
(0.99943 0.0710007 -2.72804e-17)
(0.992529 0.0692529 1.56808e-17)
(1.20149 0.0251861 1.62454e-18)
(1.22014 0.0500215 -5.99085e-19)
(1.22728 0.0676422 -2.49389e-18)
(1.22108 0.0747085 -1.10892e-17)
(1.20395 0.071845 -3.0564e-18)
(1.18022 0.0617729 -6.58163e-18)
(1.15484 0.0494344 -4.16097e-18)
(1.13239 0.0387284 2.45377e-17)
(1.11656 0.0322647 2.73313e-17)
(1.10855 0.0309604 1.42629e-17)
(1.10701 0.034318 2.71016e-18)
(1.1093 0.0410565 -5.31142e-17)
(1.11303 0.0494985 4.50486e-17)
(1.11628 0.0585542 -1.52786e-17)
(1.11784 0.0671779 1.26194e-17)
(1.11731 0.0748367 -3.36692e-17)
(1.1145 0.0813083 -1.52782e-18)
(1.10976 0.0863422 -1.22447e-17)
(1.10351 0.0902076 -1.79221e-17)
(1.09602 0.0927688 -4.10915e-17)
(1.0876 0.0942773 7.34006e-18)
(1.07832 0.0947845 -5.00555e-17)
(1.06817 0.0944237 3.09663e-17)
(1.05729 0.093151 4.30322e-17)
(1.04593 0.0910166 4.71738e-17)
(1.0343 0.0881126 -8.23671e-17)
(1.02249 0.0845097 -2.75463e-17)
(1.00983 0.0801593 2.41854e-17)
(1.0008 0.071785 2.48714e-17)
(0.9941 0.0704792 -1.22362e-18)
(1.20549 0.0269304 -2.24644e-18)
(1.22404 0.0509018 -4.16797e-18)
(1.23073 0.067103 5.76672e-18)
(1.22391 0.0723631 2.05763e-19)
(1.20625 0.0678081 7.44491e-18)
(1.18232 0.0565808 -5.75427e-18)
(1.15712 0.0438538 -1.23463e-17)
(1.13508 0.0335504 -2.75142e-17)
(1.11976 0.0280813 1.99493e-17)
(1.11222 0.028067 -4.64342e-17)
(1.11102 0.0327429 2.33961e-17)
(1.11347 0.0406403 9.69815e-18)
(1.11723 0.0499936 -4.18538e-17)
(1.1204 0.059696 -1.0674e-17)
(1.12182 0.0687465 -2.34448e-17)
(1.12112 0.0766728 5.46156e-17)
(1.11812 0.083309 1.91325e-17)
(1.11319 0.088425 -2.28579e-18)
(1.10676 0.0923535 1.95931e-17)
(1.09909 0.0949267 -5.57087e-18)
(1.0905 0.0964241 2.02436e-17)
(1.08105 0.0968745 7.59992e-18)
(1.07073 0.0964437 2.50774e-17)
(1.05966 0.0950746 -1.21806e-18)
(1.04812 0.0928266 -2.24624e-17)
(1.03629 0.0897959 8.57516e-17)
(1.02426 0.0860857 9.16816e-18)
(1.01116 0.081604 -7.75089e-17)
(1.00222 0.0725036 3.62194e-17)
(0.99575 0.0717234 -9.72389e-17)
(1.20944 0.0293347 8.79313e-19)
(1.22787 0.0518278 2.3494e-18)
(1.23415 0.0661122 -5.71299e-18)
(1.2268 0.0692368 -5.37355e-19)
(1.20879 0.0628347 2.27957e-18)
(1.18479 0.0504779 7.70674e-18)
(1.15987 0.0375012 2.14238e-17)
(1.13833 0.0278032 3.83247e-19)
(1.12353 0.0235399 7.93764e-18)
(1.11642 0.0250013 4.58554e-17)
(1.11549 0.0311353 -5.15197e-18)
(1.11803 0.0402792 2.28826e-17)
(1.12172 0.0505944 -4.17472e-18)
(1.12473 0.0609609 -6.2357e-18)
(1.12594 0.0704392 -2.63959e-18)
(1.12501 0.0786136 -3.9775e-18)
(1.12177 0.0853991 3.45481e-18)
(1.11662 0.090577 7.19822e-18)
(1.10997 0.0945544 -5.89101e-18)
(1.10211 0.0971243 2.52789e-17)
(1.09334 0.0985979 -1.2665e-18)
(1.08372 0.0989788 4.47573e-17)
(1.07323 0.0984695 -2.81981e-17)
(1.06199 0.096996 3.87986e-17)
(1.05026 0.0946293 -3.36689e-17)
(1.03825 0.0914678 -3.29312e-17)
(1.02602 0.0876566 -4.51223e-17)
(1.01246 0.0830451 5.18701e-17)
(1.00366 0.0731398 3.83127e-17)
(0.997456 0.0729855 9.60995e-17)
(1.21344 0.0328164 -2.90213e-18)
(1.23176 0.0531541 -1.38669e-18)
(1.23776 0.0649698 1.51288e-18)
(1.23007 0.0656024 9.94211e-18)
(1.21186 0.0571832 -2.21062e-17)
(1.18795 0.043718 -8.31195e-18)
(1.1634 0.0306175 -1.37663e-17)
(1.14238 0.0217009 1.64896e-17)
(1.12808 0.0188192 -4.18846e-17)
(1.12132 0.0219019 -1.46016e-17)
(1.12054 0.0295995 5.88254e-18)
(1.12302 0.0400524 1.64873e-17)
(1.12651 0.0513588 4.27944e-17)
(1.12923 0.0623896 1.09733e-17)
(1.13011 0.0722788 2.42898e-17)
(1.12886 0.0806822 -2.20991e-17)
(1.12531 0.0875873 -2.5402e-17)
(1.11989 0.0928018 -1.47577e-17)
(1.11301 0.0968097 -5.37956e-17)
(1.10494 0.099354 -2.1848e-18)
(1.09599 0.100788 -2.83931e-18)
(1.08621 0.101083 -4.92122e-17)
(1.07557 0.100486 -3.2016e-17)
(1.06418 0.0988995 -3.04237e-17)
(1.05229 0.0964097 5.07231e-17)
(1.04012 0.093115 -1.38751e-17)
(1.02771 0.0892122 1.62972e-17)
(1.01368 0.0844758 8.10434e-18)
(1.00506 0.0736765 -4.07403e-17)
(0.999171 0.0742588 -5.98129e-17)
(1.21802 0.0370781 2.45808e-18)
(1.23631 0.0546527 7.23724e-18)
(1.24215 0.0635369 2.03888e-18)
(1.23423 0.0614247 -1.89218e-17)
(1.21593 0.050939 2.19208e-17)
(1.19215 0.03649 7.48607e-18)
(1.16796 0.0234665 1.68027e-17)
(1.14737 0.0155451 -3.34237e-17)
(1.13343 0.0142213 2.48821e-17)
(1.12683 0.0190459 2.79637e-17)
(1.12598 0.0283683 -3.74183e-17)
(1.12819 0.0401403 -6.37308e-17)
(1.13129 0.0524162 2.4438e-18)
(1.13356 0.0640687 -1.55143e-18)
(1.13399 0.0743193 -7.70387e-19)
(1.13234 0.0828927 -1.14925e-17)
(1.12843 0.089869 -1.49333e-17)
(1.12273 0.0950777 -3.17224e-17)
(1.11562 0.0990874 2.28643e-17)
(1.10736 0.10158 -3.69935e-18)
(1.09827 0.102956 -4.5107e-17)
(1.08838 0.103152 4.10024e-17)
(1.07763 0.10246 3.48067e-17)
(1.06613 0.100756 -6.63567e-17)
(1.05414 0.0981427 1.61131e-17)
(1.04185 0.0947142 -6.28853e-17)
(1.02928 0.090734 6.25219e-17)
(1.01475 0.0858772 -2.85416e-17)
(1.00639 0.0740906 -8.73714e-18)
(1.00086 0.0755419 1.20451e-17)
(1.22382 0.0410482 6.75496e-19)
(1.24201 0.0554872 -2.82849e-18)
(1.24759 0.061234 2.69104e-18)
(1.23932 0.0563706 1.75737e-17)
(1.22078 0.0439753 -1.97634e-17)
(1.19695 0.0288078 7.06519e-18)
(1.17294 0.0161378 -1.38615e-17)
(1.15259 0.00945325 2.02498e-17)
(1.13877 0.00986334 -2.77982e-18)
(1.13208 0.016534 -4.89608e-17)
(1.13095 0.0275234 2.71038e-18)
(1.1327 0.0406052 2.19558e-17)
(1.13526 0.05381 -7.5742e-18)
(1.13699 0.0660205 -1.72958e-17)
(1.13693 0.0765623 5.35728e-18)
(1.13487 0.0852397 4.90856e-17)
(1.13066 0.0922281 6.44542e-17)
(1.12475 0.0973812 -1.88052e-17)
(1.11749 0.101361 -1.69043e-17)
(1.10914 0.103773 2.21923e-17)
(1.09999 0.105072 1.83301e-17)
(1.09007 0.105153 -2.04535e-17)
(1.0793 0.104362 1.33071e-17)
(1.06776 0.102537 1.08432e-16)
(1.05572 0.0998003 7.25328e-19)
(1.04336 0.0962401 5.28949e-17)
(1.03068 0.0922022 -2.29889e-17)
(1.01564 0.0872337 2.20153e-17)
(1.00759 0.074354 4.86138e-17)
(1.00248 0.0768281 -3.64591e-17)
(1.23063 0.0433996 -3.94971e-18)
(1.24843 0.0546009 -5.32744e-18)
(1.25335 0.0572872 -4.66509e-18)
(1.2443 0.0499333 -9.49454e-18)
(1.22512 0.0360086 2.65225e-18)
(1.20092 0.0205503 -4.72724e-18)
(1.17681 0.00862483 1.36515e-17)
(1.15647 0.00349247 -3.43095e-17)
(1.14256 0.00584972 -1.47079e-17)
(1.13563 0.0144812 1.32217e-17)
(1.13409 0.0271668 2.62517e-17)
(1.13534 0.0415237 5.11097e-18)
(1.13737 0.0555867 -1.26758e-18)
(1.13863 0.0682647 5.42101e-17)
(1.1382 0.0790051 1.36789e-17)
(1.1359 0.0876954 -1.70596e-18)
(1.13155 0.0946203 -3.33598e-17)
(1.12561 0.0996585 3.40272e-17)
(1.11837 0.103572 2.37812e-17)
(1.11009 0.105873 -1.31596e-17)
(1.10103 0.10708 4.26372e-17)
(1.0912 0.107036 -1.73639e-17)
(1.08052 0.106146 -2.02071e-17)
(1.06903 0.104201 -1.49792e-17)
(1.057 0.101347 -5.30443e-17)
(1.04464 0.0976596 1.14715e-17)
(1.03187 0.0935888 -2.61205e-17)
(1.01627 0.0885202 -4.4095e-17)
(1.00862 0.0744466 -6.00362e-17)
(1.0041 0.0781392 1.6737e-17)
(1.23661 0.0431097 3.5662e-18)
(1.25349 0.0512185 5.61192e-18)
(1.2572 0.051126 -3.9987e-18)
(1.24687 0.0417005 3.28228e-18)
(1.22668 0.0267384 4.35751e-20)
(1.20183 0.011482 8.15808e-18)
(1.17746 0.000735093 7.0903e-18)
(1.15704 -0.00249468 2.2619e-17)
(1.14304 0.00206094 -3.5557e-18)
(1.13591 0.0128035 1.63414e-17)
(1.13409 0.0272451 -1.5087e-17)
(1.13503 0.0428609 2.11177e-17)
(1.13678 0.057718 1.53663e-17)
(1.13785 0.0707699 -2.5038e-17)
(1.13735 0.0816089 -1.59746e-17)
(1.13512 0.0902214 -5.81628e-18)
(1.13093 0.0970036 -3.51959e-17)
(1.12522 0.101871 1.20973e-18)
(1.11826 0.105682 2.2325e-17)
(1.11023 0.10784 9.8398e-19)
(1.10142 0.108938 -2.44071e-17)
(1.09183 0.108764 -4.53199e-18)
(1.08133 0.107781 -1.75752e-17)
(1.06996 0.105722 2.09479e-17)
(1.058 0.102763 6.58583e-17)
(1.04565 0.0989601 -6.13949e-17)
(1.03282 0.0948911 1.04952e-17)
(1.01659 0.0897465 2.2981e-17)
(1.00951 0.0743829 -2.66708e-17)
(1.0058 0.0795139 -6.81311e-18)
(1.23911 0.0402809 8.03739e-19)
(1.25463 0.0456366 -7.07374e-18)
(1.25671 0.0431084 5.97016e-18)
(1.24484 0.0320443 -4.84469e-18)
(1.22351 0.016529 -1.07001e-17)
(1.19802 0.00193928 -1.26485e-17)
(1.17346 -0.00721458 -8.63405e-19)
(1.15314 -0.00820165 -2.08678e-17)
(1.13927 -0.00120622 1.66696e-17)
(1.13225 0.0117806 2.72177e-17)
(1.13051 0.0280067 2.0748e-17)
(1.13154 0.0448257 -1.19751e-17)
(1.13343 0.0603705 -2.16567e-18)
(1.13475 0.073666 7.93927e-18)
(1.1346 0.0844733 6.74839e-18)
(1.13281 0.0928864 -5.53925e-17)
(1.1291 0.0994232 1.90914e-18)
(1.12392 0.104043 -1.71173e-18)
(1.11743 0.1077 7.91023e-18)
(1.10984 0.109676 -1.91304e-17)
(1.1014 0.110647 -2.01426e-17)
(1.09211 0.110337 1.092e-17)
(1.08185 0.109273 2.24463e-17)
(1.07063 0.107116 1.91454e-17)
(1.05873 0.104071 -8.36988e-18)
(1.04641 0.100171 3.58751e-17)
(1.0335 0.0961504 8.77271e-17)
(1.01657 0.0909529 -3.58562e-17)
(1.01034 0.0741822 6.22499e-17)
(1.00747 0.0809424 8.64643e-18)
(1.23642 0.0372267 1.93912e-18)
(1.25036 0.0401695 5.87236e-18)
(1.25073 0.0354312 -3.75925e-18)
(1.23742 0.0229647 8.86783e-18)
(1.21517 0.00715917 6.06677e-18)
(1.18935 -0.00653216 -4.92305e-18)
(1.16496 -0.0138931 -9.25112e-18)
(1.14511 -0.0124788 6.18669e-17)
(1.1318 -0.00294424 -5.34614e-17)
(1.12533 0.012297 -1.16372e-17)
(1.12416 0.0302202 3.66713e-17)
(1.12577 0.0480771 -2.62046e-17)
(1.12829 0.0641033 -2.38429e-17)
(1.1303 0.0774243 -1.84229e-17)
(1.13089 0.0879956 -5.56997e-17)
(1.12987 0.0960285 4.18898e-17)
(1.1269 0.102173 1.15653e-17)
(1.1224 0.106433 -1.86981e-17)
(1.1165 0.109844 -2.38958e-17)
(1.10938 0.111564 6.90689e-18)
(1.10133 0.11236 4.40495e-17)
(1.09233 0.111886 4.46609e-17)
(1.08225 0.110736 -6.87733e-18)
(1.07111 0.108484 -7.38722e-17)
(1.05921 0.105361 -3.39709e-17)
(1.04684 0.101368 3.94765e-17)
(1.03377 0.0974232 -1.07334e-16)
(1.01613 0.0921572 4.9521e-17)
(1.0108 0.0737615 -2.19592e-17)
(1.0076 0.0821382 1.88571e-17)
(1.22915 0.0385267 -3.35509e-18)
(1.24155 0.0392787 -5.28802e-18)
(1.24039 0.0322581 5.02281e-18)
(1.22597 0.0182297 2.94578e-18)
(1.20325 0.0019968 8.51691e-18)
(1.17757 -0.0109288 -6.41189e-18)
(1.15383 -0.0166109 -2.00879e-18)
(1.13491 -0.012939 -4.37364e-17)
(1.12263 -0.0010684 3.01483e-17)
(1.11721 0.0161391 1.98732e-17)
(1.11708 0.0353976 -3.5721e-17)
(1.11971 0.0538933 1.62224e-18)
(1.12325 0.069999 -1.05301e-17)
(1.12626 0.0829729 5.85169e-18)
(1.12782 0.0929764 3.5341e-18)
(1.12769 0.100344 -6.62683e-18)
(1.12548 0.105842 3.3016e-18)
(1.12163 0.109542 3.26624e-17)
(1.11619 0.112538 -4.24619e-18)
(1.1094 0.113854 -6.5386e-18)
(1.10155 0.114356 -2.77066e-17)
(1.09264 0.113624 -3.53445e-17)
(1.08253 0.112327 -2.61741e-17)
(1.07126 0.109931 -1.9589e-17)
(1.05915 0.106688 7.71153e-17)
(1.04653 0.10255 -1.81912e-17)
(1.03299 0.0986277 7.85678e-17)
(1.01452 0.0931989 -4.87013e-17)
(1.00867 0.0727841 -1.13274e-17)
(1.00071 0.0822185 6.61495e-17)
(1.21988 0.0443892 -3.90478e-19)
(1.2308 0.0437257 5.43321e-18)
(1.22829 0.0346236 2.71454e-18)
(1.21315 0.0189575 7.82096e-18)
(1.19048 0.00214986 4.0274e-18)
(1.16553 -0.0101462 5.10885e-18)
(1.14302 -0.0142806 -7.82237e-18)
(1.12559 -0.00855544 5.04912e-17)
(1.11486 0.00533311 2.83451e-17)
(1.11095 0.0240859 -5.06098e-17)
(1.11222 0.0442043 -1.30029e-17)
(1.11616 0.0628569 4.01213e-17)
(1.12084 0.0785957 3.61306e-17)
(1.12486 0.0908237 -7.21709e-18)
(1.12726 0.0999123 3.16519e-17)
(1.12777 0.106302 -4.05373e-17)
(1.12595 0.110874 2.908e-17)
(1.12231 0.113787 -6.19858e-18)
(1.11688 0.116141 2.67558e-17)
(1.10994 0.11683 3.26876e-17)
(1.10181 0.116836 -1.47619e-17)
(1.09252 0.115667 2.17883e-17)
(1.08192 0.114065 -4.86491e-18)
(1.07004 0.111378 1.19315e-17)
(1.05717 0.107876 -9.23792e-17)
(1.04362 0.103433 2.47938e-17)
(1.0286 0.0993501 -4.54522e-17)
(1.00842 0.0936057 9.64433e-17)
(0.996923 0.0705434 -1.15259e-17)
(0.973416 0.0792905 -6.61788e-17)
(1.21162 0.0460773 4.61882e-18)
(1.2211 0.0466683 -8.58728e-19)
(1.21748 0.037025 -1.13931e-17)
(1.20217 0.0205649 -1.99636e-17)
(1.18037 0.00365658 7.10191e-18)
(1.15706 -0.0076619 -3.90749e-18)
(1.13658 -0.010019 6.18943e-18)
(1.12129 -0.0022178 -4.10586e-17)
(1.1126 0.0135007 -8.07574e-18)
(1.1105 0.0335239 -1.31423e-19)
(1.11324 0.0542573 3.77135e-17)
(1.11825 0.0728961 -1.2965e-17)
(1.12362 0.0881766 -7.94943e-18)
(1.12796 0.0996167 -4.67231e-18)
(1.13032 0.107766 9.1187e-18)
(1.13047 0.113148 -5.16325e-18)
(1.12802 0.116718 -3.93065e-17)
(1.12354 0.11873 -1.92641e-17)
(1.11712 0.120294 -2.1362e-17)
(1.10904 0.120154 -3.56273e-17)
(1.09969 0.119464 1.4402e-17)
(1.0891 0.117628 -3.63768e-17)
(1.07705 0.115503 3.26961e-17)
(1.06352 0.112277 -4.19323e-17)
(1.04858 0.108277 7.61743e-17)
(1.03225 0.103219 2.80628e-17)
(1.01313 0.0986041 5.05197e-17)
(0.988356 0.092336 4.00407e-17)
(0.961191 0.0659392 -1.40386e-17)
(0.900799 0.0700668 -5.5545e-17)
(1.20719 0.036129 -6.10571e-18)
(1.21551 0.0411804 -3.93284e-18)
(1.21152 0.0330386 3.53785e-18)
(1.19722 0.0170543 -7.88881e-18)
(1.17766 0.000863066 -1.64117e-17)
(1.15712 -0.00898786 8.38681e-19)
(1.13943 -0.00938436 -1.2931e-17)
(1.12658 0.000425232 -2.68275e-17)
(1.11979 0.017793 8.13914e-19)
(1.11888 0.0389958 -6.83739e-18)
(1.12197 0.0604585 5.54399e-18)
(1.12656 0.0794046 9.77261e-18)
(1.1308 0.0946943 9.16416e-18)
(1.13345 0.105875 -4.16228e-18)
(1.13368 0.113596 7.11e-18)
(1.13134 0.118391 3.59061e-17)
(1.12627 0.121303 2.27107e-17)
(1.11911 0.12259 2.72447e-17)
(1.11007 0.123446 -1.69564e-18)
(1.09932 0.122427 3.94663e-17)
(1.08721 0.120929 -1.37927e-18)
(1.07378 0.118239 6.43945e-18)
(1.05854 0.115369 -3.25763e-17)
(1.0414 0.111298 2.07801e-18)
(1.02169 0.106464 -4.79523e-17)
(0.998746 0.100302 -8.84062e-17)
(0.970454 0.0945476 -1.37014e-17)
(0.935375 0.0874755 -1.39828e-16)
(0.88148 0.0579122 5.71756e-17)
(0.746249 0.0499984 2.55901e-17)
(1.20983 0.0222934 6.15214e-18)
(1.21768 0.0326549 9.32336e-18)
(1.21429 0.0267157 -3.01094e-18)
(1.20186 0.0117207 2.06845e-17)
(1.18489 -0.00358566 1.32465e-17)
(1.16684 -0.0124423 1.26903e-17)
(1.15097 -0.01191 -1.18966e-17)
(1.139 -0.00135003 1.00651e-17)
(1.13193 0.0165157 -1.85951e-17)
(1.12944 0.0380703 -9.12448e-19)
(1.12972 0.0598522 -4.86528e-17)
(1.13048 0.0791105 -2.80595e-17)
(1.13015 0.0947236 -6.95646e-18)
(1.12768 0.106149 2.78053e-17)
(1.12252 0.11402 -3.41034e-17)
(1.11459 0.118792 2.52915e-17)
(1.10427 0.121559 -3.89589e-18)
(1.09208 0.122444 -6.15475e-18)
(1.07856 0.122806 8.71281e-18)
(1.06324 0.120981 -1.5291e-18)
(1.04636 0.11867 -3.48071e-17)
(1.02799 0.114999 -2.71072e-17)
(1.00708 0.111194 4.97683e-17)
(0.983386 0.105959 7.36089e-17)
(0.954903 0.0999363 7.62385e-17)
(0.919808 0.0920774 4.66511e-17)
(0.875552 0.0845325 -7.93957e-17)
(0.823577 0.0764577 2.60571e-17)
(0.741853 0.0464753 -1.77367e-18)
(0.476463 0.0155035 1.88287e-17)
(1.21586 0.0218756 -2.48474e-18)
(1.22274 0.0360295 -1.0613e-18)
(1.21829 0.031361 6.4602e-18)
(1.20466 0.016537 -8.90787e-18)
(1.186 0.000903482 -3.82597e-18)
(1.16599 -0.00892355 1.40712e-18)
(1.14772 -0.0100257 5.8136e-18)
(1.1326 -0.00145306 2.9493e-17)
(1.12095 0.0143378 1.55974e-17)
(1.11245 0.0339883 -1.6391e-17)
(1.10562 0.0542764 1.76082e-18)
(1.09852 0.0725559 5.67723e-17)
(1.08991 0.0876721 -3.85436e-17)
(1.07889 0.0989213 -5.98533e-18)
(1.0653 0.106806 2.06868e-17)
(1.04891 0.111561 7.78829e-18)
(1.03118 0.114342 2.17963e-17)
(1.0121 0.114892 -9.32058e-18)
(0.992974 0.114874 1.33337e-17)
(0.971773 0.112323 -2.27388e-17)
(0.948504 0.109208 1.6661e-17)
(0.923429 0.10451 8.46582e-17)
(0.894615 0.0996481 -5.26836e-17)
(0.861909 0.0931341 5.33191e-17)
(0.821349 0.0857645 2.37648e-17)
(0.769952 0.0759906 -9.7765e-18)
(0.704555 0.0661779 3.46616e-17)
(0.63352 0.0572305 1.58242e-18)
(0.545303 0.0333134 -6.57882e-17)
(0.120628 -0.0293468 8.6865e-17)
(1.18859 0.0331858 1.30228e-18)
(1.19131 0.0506775 -3.04868e-18)
(1.17934 0.0468226 -6.57326e-18)
(1.15605 0.0315987 5.43592e-18)
(1.12673 0.0147497 -2.58965e-18)
(1.09764 0.00273996 -9.04082e-18)
(1.07204 -0.00154005 8.60782e-18)
(1.05032 0.003165 -4.33305e-17)
(1.03107 0.0146089 -3.90188e-17)
(1.01401 0.029951 -6.4869e-18)
(0.998157 0.0463986 -1.24503e-17)
(0.981788 0.0616252 -3.83716e-17)
(0.963963 0.0745415 7.06992e-17)
(0.943752 0.0843292 1.37134e-17)
(0.921504 0.0913093 1.96947e-17)
(0.89642 0.0954263 -3.93591e-17)
(0.87145 0.0978188 -3.83748e-17)
(0.84594 0.0978717 3.01788e-17)
(0.822101 0.0972191 -7.0315e-17)
(0.795993 0.0940333 4.57501e-17)
(0.76704 0.0900013 3.93714e-17)
(0.735797 0.084438 -8.63732e-17)
(0.699662 0.0784595 7.87001e-17)
(0.658822 0.0710619 -3.20537e-17)
(0.607746 0.0625069 -1.03973e-16)
(0.542405 0.0515497 8.76032e-19)
(0.457784 0.0394655 1.33565e-16)
(0.373581 0.0302377 -2.68821e-17)
(0.32567 0.0207912 1.44063e-16)
(-0.159599 -0.0618767 -1.56565e-16)
(1.04928 0.0312328 -4.77388e-18)
(1.04581 0.0514892 -2.94029e-18)
(1.02019 0.0498401 9.85128e-18)
(0.978574 0.0365319 -2.25165e-17)
(0.929691 0.0207632 -1.17016e-17)
(0.886619 0.00845413 -1.47937e-17)
(0.85329 0.00254512 -7.63225e-18)
(0.827129 0.00422291 2.32039e-17)
(0.803469 0.0116935 3.73376e-17)
(0.782104 0.0224739 9.76434e-17)
(0.762251 0.0342882 7.13149e-18)
(0.742215 0.0454623 -4.29922e-18)
(0.721076 0.0551497 -7.0012e-17)
(0.697462 0.0625796 1.59588e-17)
(0.672271 0.0679565 -5.34855e-17)
(0.644012 0.0709475 -1.93963e-18)
(0.616268 0.0724891 2.10114e-17)
(0.589266 0.0719853 -4.77984e-18)
(0.564113 0.070189 9.7178e-17)
(0.537635 0.0666473 -5.56409e-17)
(0.507704 0.0616863 -5.89745e-17)
(0.474702 0.0557506 4.84154e-17)
(0.436847 0.0489353 -7.21627e-17)
(0.393867 0.0416661 -1.25943e-16)
(0.341719 0.032816 -1.00535e-16)
(0.273786 0.0226221 6.92757e-17)
(0.183304 0.00939492 -4.16916e-16)
(0.102422 0.00235464 5.1124e-16)
(0.168356 0.0156172 3.09855e-16)
(-0.210742 -0.0576413 2.94835e-16)
(0.754698 0.0282574 -5.66767e-19)
(0.744296 0.0456479 2.73551e-18)
(0.694267 0.0430429 3.87098e-18)
(0.617196 0.0300701 2.84915e-17)
(0.534471 0.0147403 -4.10089e-18)
(0.479715 0.00289557 2.49778e-17)
(0.451483 -0.00303586 5.85206e-18)
(0.437499 -0.00225624 8.70942e-17)
(0.426827 0.00334199 -2.29069e-17)
(0.420176 0.0111358 -9.54729e-17)
(0.41512 0.0193713 1.59823e-16)
(0.408642 0.0268986 4.12889e-17)
(0.399375 0.0332565 -6.75757e-17)
(0.38501 0.037909 -4.23183e-17)
(0.366961 0.0411539 5.33757e-17)
(0.344676 0.0426079 8.18118e-18)
(0.320741 0.0428057 6.79664e-17)
(0.299954 0.0417203 -5.00128e-17)
(0.277177 0.0384842 -1.15993e-16)
(0.256302 0.0350452 -1.84741e-17)
(0.23281 0.0299925 8.24945e-17)
(0.205343 0.0248516 -9.43455e-17)
(0.175921 0.018825 1.4502e-16)
(0.140895 0.0135052 1.96475e-17)
(0.103384 0.0067837 3.64553e-16)
(0.0500238 -3.22866e-06 -1.10478e-16)
(-0.0211318 -0.0110457 2.56738e-16)
(-0.0551128 -0.00982806 -1.29915e-15)
(0.117495 0.0190261 -8.06068e-16)
(-0.150801 -0.0372763 -5.16828e-16)
(0.346352 0.0245557 -4.09068e-18)
(0.2858 0.0277148 -1.13655e-17)
(0.17816 0.0175543 -3.12267e-17)
(0.0592942 0.0037002 -2.22925e-17)
(-0.0211399 -0.00632441 -1.85824e-17)
(-0.0105536 -0.00834444 -4.234e-17)
(0.0307819 -0.00811082 4.43868e-17)
(0.0602535 -0.00524557 -2.61712e-16)
(0.0842362 -0.00107379 1.34411e-19)
(0.104209 0.00304341 5.12314e-17)
(0.118712 0.00661541 -1.46209e-16)
(0.125592 0.00954535 -5.71777e-17)
(0.12485 0.0118418 1.18985e-16)
(0.116699 0.013344 -9.56446e-17)
(0.104116 0.0141519 3.504e-17)
(0.0892631 0.0141081 4.57288e-17)
(0.0740374 0.0134035 -1.57672e-16)
(0.0647175 0.0124517 -1.56997e-16)
(0.0514202 0.00999939 7.69103e-17)
(0.0429532 0.00870995 -9.56841e-17)
(0.0336296 0.00633862 -2.24887e-16)
(0.0223142 0.00453959 9.83503e-18)
(0.0111406 0.00229104 -4.18947e-17)
(-0.00227661 0.00070936 2.97145e-17)
(-0.0145405 -0.00159419 -2.00407e-17)
(-0.0348521 -0.0038861 2.20391e-16)
(-0.0624013 -0.00775585 -7.34422e-17)
(-0.055191 -0.00450353 2.76599e-16)
(0.0561696 0.010574 -4.55137e-17)
(-0.0422832 -0.00716998 6.97469e-16)
(1.00258 -0.000443149 0)
(1.0028 -0.000398875 0)
(1.00299 -0.000354925 0)
(1.00317 -0.000314966 0)
(1.00336 -0.000278994 0)
(1.00356 -0.000245592 0)
(1.00376 -0.000214511 0)
(1.00396 -0.00018768 0)
(1.00415 -0.000163714 0)
(1.00433 -0.000143636 0)
(1.00449 -0.000126095 0)
(1.00464 -0.000110067 0)
(1.00477 -9.52001e-05 0)
(1.00488 -8.08111e-05 0)
(1.00497 -6.68291e-05 0)
(1.00503 -5.323e-05 0)
(1.00505 -4.10318e-05 0)
(1.00503 -3.04451e-05 0)
(1.00495 -2.18378e-05 0)
(1.00482 -1.47187e-05 0)
(1.00463 -8.92222e-06 0)
(1.00437 -5.42244e-06 0)
(1.00426 -3.59799e-06 0)
(1.00503 -9.99338e-06 0)
(0.997825 -0.000366275 0)
(0.998126 -0.000367526 0)
(0.998415 -0.000353553 0)
(0.998724 -0.000329617 0)
(0.999068 -0.000298886 0)
(0.99944 -0.000261937 0)
(0.999829 -0.000222134 0)
(1.00022 -0.000183035 0)
(1.00061 -0.00014641 0)
(1.00099 -0.000113959 0)
(1.00136 -8.40347e-05 0)
(1.00172 -5.57284e-05 0)
(1.00205 -2.8605e-05 0)
(1.00237 -1.76496e-06 0)
(1.00265 2.48883e-05 0)
(1.0029 5.04932e-05 0)
(1.0031 7.27011e-05 0)
(1.00325 9.06285e-05 0)
(1.00334 0.000103664 0)
(1.00337 0.000112619 0)
(1.00332 0.000118001 0)
(1.0032 0.000118516 0)
(1.00321 0.00011765 0)
(1.00415 9.78172e-05 0)
(0.999124 -0.00162503 0)
(0.999315 -0.00161425 0)
(0.999504 -0.00156444 0)
(0.999716 -0.00148496 0)
(0.999959 -0.00138546 0)
(1.00023 -0.00127253 0)
(1.00051 -0.00115312 0)
(1.0008 -0.00103237 0)
(1.00109 -0.000915257 0)
(1.00138 -0.000803308 0)
(1.00166 -0.000696455 0)
(1.00195 -0.000594966 0)
(1.00222 -0.000498478 0)
(1.00248 -0.00040649 0)
(1.00272 -0.000319042 0)
(1.00292 -0.000237614 0)
(1.00309 -0.000165134 0)
(1.00321 -0.00010277 0)
(1.00328 -5.10491e-05 0)
(1.00329 -9.23227e-06 0)
(1.00323 2.39052e-05 0)
(1.00309 4.69886e-05 0)
(1.0031 6.27575e-05 0)
(1.00404 5.39966e-05 0)
(1.00005 -0.00123807 0)
(1.00016 -0.00125716 0)
(1.00027 -0.00123526 0)
(1.0004 -0.00118221 0)
(1.00055 -0.00110857 0)
(1.00073 -0.00102141 0)
(1.00092 -0.000925899 0)
(1.00112 -0.000826876 0)
(1.00132 -0.000727489 0)
(1.00154 -0.000629113 0)
(1.00176 -0.000532507 0)
(1.00199 -0.000438053 0)
(1.00221 -0.00034602 0)
(1.00243 -0.000256534 0)
(1.00263 -0.000170485 0)
(1.00281 -8.97456e-05 0)
(1.00295 -1.7776e-05 0)
(1.00306 4.38939e-05 0)
(1.00311 9.40497e-05 0)
(1.00311 0.00013295 0)
(1.00304 0.000161909 0)
(1.00291 0.000179225 0)
(1.00291 0.00018831 0)
(1.00387 0.000163256 0)
(1.00031 -0.00189836 0)
(1.00041 -0.00190382 0)
(1.00051 -0.00187036 0)
(1.00062 -0.00180551 0)
(1.00076 -0.00171835 0)
(1.00091 -0.0016146 0)
(1.00108 -0.0014984 0)
(1.00125 -0.0013734 0)
(1.00143 -0.00124274 0)
(1.00162 -0.00110848 0)
(1.00182 -0.000972426 0)
(1.00202 -0.000836136 0)
(1.00222 -0.000701359 0)
(1.00242 -0.000569592 0)
(1.0026 -0.000442775 0)
(1.00276 -0.000323133 0)
(1.00289 -0.000214508 0)
(1.00298 -0.000118512 0)
(1.00302 -3.73114e-05 0)
(1.00301 2.9063e-05 0)
(1.00294 8.16785e-05 0)
(1.00281 0.000118442 0)
(1.0028 0.000142049 0)
(1.00376 0.000127302 0)
(1.00031 -0.0017439 0)
(1.00039 -0.00176241 0)
(1.00047 -0.00174657 0)
(1.00057 -0.00169934 0)
(1.00069 -0.00162752 0)
(1.00083 -0.00153595 0)
(1.00097 -0.00142834 0)
(1.00113 -0.00130847 0)
(1.00129 -0.00117926 0)
(1.00147 -0.00104362 0)
(1.00165 -0.00090379 0)
(1.00184 -0.000762407 0)
(1.00204 -0.000621776 0)
(1.00223 -0.000484326 0)
(1.00241 -0.000352194 0)
(1.00256 -0.00022768 0)
(1.00269 -0.000114419 0)
(1.00278 -1.41606e-05 0)
(1.00282 7.01198e-05 0)
(1.00282 0.000138029 0)
(1.00275 0.000190492 0)
(1.00262 0.000225087 0)
(1.00262 0.000245214 0)
(1.0036 0.00021885 0)
(1.00034 -0.00219957 0)
(1.00042 -0.0022055 0)
(1.00049 -0.00217999 0)
(1.00059 -0.00212314 0)
(1.0007 -0.00203976 0)
(1.00083 -0.00193388 0)
(1.00097 -0.00180926 0)
(1.00111 -0.00166926 0)
(1.00127 -0.00151733 0)
(1.00143 -0.00135658 0)
(1.0016 -0.00119002 0)
(1.00178 -0.00102077 0)
(1.00197 -0.00085192 0)
(1.00214 -0.00068643 0)
(1.00231 -0.00052705 0)
(1.00246 -0.000376095 0)
(1.00258 -0.00023751 0)
(1.00266 -0.000113104 0)
(1.0027 -6.42687e-06 0)
(1.00269 8.10957e-05 0)
(1.00262 0.000150414 0)
(1.00249 0.000198546 0)
(1.0025 0.000228702 0)
(1.00348 0.000207051 0)
(1.00044 -0.00227733 0)
(1.0005 -0.002278 0)
(1.00056 -0.00224944 0)
(1.00064 -0.00219072 0)
(1.00073 -0.0021052 0)
(1.00084 -0.00199632 0)
(1.00097 -0.00186741 0)
(1.00109 -0.00172173 0)
(1.00123 -0.00156269 0)
(1.00138 -0.00139337 0)
(1.00153 -0.00121725 0)
(1.0017 -0.00103759 0)
(1.00187 -0.000857972 0)
(1.00204 -0.000681545 0)
(1.0022 -0.000511569 0)
(1.00234 -0.000350255 0)
(1.00245 -0.000201884 0)
(1.00253 -6.80956e-05 0)
(1.00256 4.67047e-05 0)
(1.00255 0.000140487 0)
(1.00248 0.000214231 0)
(1.00236 0.000264682 0)
(1.00236 0.000295447 0)
(1.00336 0.00026809 0)
(1.00056 -0.00254055 0)
(1.00061 -0.0025365 0)
(1.00066 -0.00250257 0)
(1.00073 -0.00243763 0)
(1.00081 -0.00234461 0)
(1.00091 -0.00222686 0)
(1.00102 -0.00208756 0)
(1.00113 -0.00193008 0)
(1.00125 -0.00175757 0)
(1.00138 -0.0015735 0)
(1.00152 -0.00138132 0)
(1.00167 -0.00118467 0)
(1.00183 -0.000987263 0)
(1.00198 -0.000792783 0)
(1.00213 -0.000604669 0)
(1.00225 -0.000425621 0)
(1.00236 -0.000260023 0)
(1.00243 -0.000109747 0)
(1.00246 2.00942e-05 0)
(1.00244 0.000127028 0)
(1.00237 0.000211863 0)
(1.00224 0.000270846 0)
(1.00224 0.000307782 0)
(1.00325 0.000280814 0)
(1.00072 -0.00263038 0)
(1.00075 -0.00262816 0)
(1.00078 -0.00259594 0)
(1.00084 -0.00253163 0)
(1.00091 -0.00243774 0)
(1.00099 -0.00231758 0)
(1.00108 -0.0021746 0)
(1.00118 -0.00201217 0)
(1.00128 -0.00183361 0)
(1.0014 -0.00164244 0)
(1.00152 -0.00144212 0)
(1.00165 -0.00123641 0)
(1.00179 -0.00102913 0)
(1.00193 -0.000824201 0)
(1.00206 -0.000625248 0)
(1.00218 -0.000435311 0)
(1.00227 -0.000258937 0)
(1.00234 -9.83822e-05 0)
(1.00236 4.08217e-05 0)
(1.00234 0.000155713 0)
(1.00227 0.000247074 0)
(1.00214 0.000310822 0)
(1.00213 0.000351066 0)
(1.00315 0.000322642 0)
(1.00086 -0.00274437 0)
(1.00089 -0.00274488 0)
(1.00091 -0.00271563 0)
(1.00095 -0.0026531 0)
(1.00101 -0.00255921 0)
(1.00108 -0.00243728 0)
(1.00116 -0.00229094 0)
(1.00124 -0.00212365 0)
(1.00133 -0.00193903 0)
(1.00143 -0.00174058 0)
(1.00153 -0.00153184 0)
(1.00165 -0.00131667 0)
(1.00178 -0.00109885 0)
(1.0019 -0.000882684 0)
(1.00202 -0.000671655 0)
(1.00212 -0.000469744 0)
(1.00221 -0.000281117 0)
(1.00226 -0.000109278 0)
(1.00228 4.04997e-05 0)
(1.00225 0.000164505 0)
(1.00217 0.000263571 0)
(1.00204 0.000333076 0)
(1.00203 0.00037779 0)
(1.00306 0.000347465 0)
(1.00102 -0.00282294 0)
(1.00103 -0.00282646 0)
(1.00104 -0.00280044 0)
(1.00108 -0.00274012 0)
(1.00112 -0.00264692 0)
(1.00118 -0.00252421 0)
(1.00124 -0.00237572 0)
(1.00131 -0.0022052 0)
(1.00138 -0.0020163 0)
(1.00147 -0.00181255 0)
(1.00156 -0.00159754 0)
(1.00166 -0.00137499 0)
(1.00177 -0.00114881 0)
(1.00188 -0.000923327 0)
(1.00198 -0.000702238 0)
(1.00208 -0.000490027 0)
(1.00215 -0.000290986 0)
(1.00219 -0.000109435 0)
(1.0022 4.93377e-05 0)
(1.00217 0.000181279 0)
(1.00208 0.000287075 0)
(1.00195 0.000361884 0)
(1.00194 0.000410959 0)
(1.00297 0.000380645 0)
(1.00116 -0.00288023 0)
(1.00116 -0.00288754 0)
(1.00117 -0.00286558 0)
(1.0012 -0.00280836 0)
(1.00123 -0.00271685 0)
(1.00128 -0.00259443 0)
(1.00133 -0.00244506 0)
(1.00138 -0.0022726 0)
(1.00144 -0.00208083 0)
(1.00151 -0.00187325 0)
(1.00159 -0.00165351 0)
(1.00168 -0.00142504 0)
(1.00177 -0.00119196 0)
(1.00187 -0.000958432 0)
(1.00196 -0.000728514 0)
(1.00204 -0.000507131 0)
(1.0021 -0.000298719 0)
(1.00213 -0.000108386 0)
(1.00213 5.82058e-05 0)
(1.00209 0.000197137 0)
(1.002 0.000308889 0)
(1.00186 0.000388215 0)
(1.00185 0.000441271 0)
(1.00289 0.000409152 0)
(1.0013 -0.00292116 0)
(1.0013 -0.00293255 0)
(1.0013 -0.00291498 0)
(1.00132 -0.00286121 0)
(1.00134 -0.00277183 0)
(1.00138 -0.00265032 0)
(1.00142 -0.00250075 0)
(1.00146 -0.00232725 0)
(1.00151 -0.00213351 0)
(1.00156 -0.00192323 0)
(1.00163 -0.00169968 0)
(1.0017 -0.00146645 0)
(1.00178 -0.00122744 0)
(1.00186 -0.000987 0)
(1.00194 -0.000749288 0)
(1.00201 -0.000519746 0)
(1.00206 -0.000302935 0)
(1.00208 -0.000104804 0)
(1.00207 6.89514e-05 0)
(1.00202 0.000214414 0)
(1.00193 0.000331968 0)
(1.00178 0.000416069 0)
(1.00176 0.000473618 0)
(1.00281 0.000442191 0)
(1.00144 -0.00294606 0)
(1.00143 -0.00296179 0)
(1.00142 -0.00294884 0)
(1.00143 -0.00289883 0)
(1.00145 -0.002812 0)
(1.00148 -0.00269187 0)
(1.00151 -0.00254279 0)
(1.00154 -0.0023689 0)
(1.00157 -0.00217403 0)
(1.00162 -0.00196187 0)
(1.00167 -0.00173554 0)
(1.00173 -0.00149858 0)
(1.00179 -0.00125478 0)
(1.00186 -0.00100856 0)
(1.00193 -0.000764167 0)
(1.00198 -0.00052757 0)
(1.00202 -0.000303298 0)
(1.00203 -9.85287e-05 0)
(1.00201 8.14024e-05 0)
(1.00196 0.00023235 0)
(1.00186 0.000354796 0)
(1.00171 0.000442742 0)
(1.00169 0.000504429 0)
(1.00274 0.000471216 0)
(1.00157 -0.00295901 0)
(1.00155 -0.00297919 0)
(1.00154 -0.00297097 0)
(1.00155 -0.00292484 0)
(1.00156 -0.00284073 0)
(1.00157 -0.00272229 0)
(1.0016 -0.00257405 0)
(1.00162 -0.00240015 0)
(1.00164 -0.00220476 0)
(1.00167 -0.00199122 0)
(1.00171 -0.00176289 0)
(1.00176 -0.0015229 0)
(1.00181 -0.00127524 0)
(1.00187 -0.00102409 0)
(1.00192 -0.000773984 0)
(1.00196 -0.000531135 0)
(1.00199 -0.000300414 0)
(1.00199 -8.97133e-05 0)
(1.00196 9.57132e-05 0)
(1.0019 0.000251784 0)
(1.00179 0.000378816 0)
(1.00164 0.000470636 0)
(1.00161 0.000536548 0)
(1.00267 0.000503835 0)
(1.00169 -0.00295981 0)
(1.00167 -0.00298459 0)
(1.00166 -0.00298121 0)
(1.00165 -0.00293908 0)
(1.00166 -0.00285788 0)
(1.00167 -0.0027414 0)
(1.00168 -0.00259419 0)
(1.00169 -0.00242074 0)
(1.00171 -0.00222515 0)
(1.00173 -0.00201094 0)
(1.00176 -0.00178118 0)
(1.00179 -0.00153906 0)
(1.00183 -0.00128833 0)
(1.00188 -0.00103326 0)
(1.00192 -0.000778281 0)
(1.00195 -0.000530192 0)
(1.00196 -0.000293887 0)
(1.00195 -7.79692e-05 0)
(1.00191 0.000112015 0)
(1.00185 0.000272344 0)
(1.00173 0.000403187 0)
(1.00157 0.000498069 0)
(1.00154 0.000567823 0)
(1.0026 0.000533686 0)
(1.00181 -0.00295137 0)
(1.00179 -0.00298083 0)
(1.00177 -0.0029823 0)
(1.00176 -0.00294422 0)
(1.00176 -0.00286599 0)
(1.00176 -0.00275149 0)
(1.00177 -0.0026055 0)
(1.00177 -0.00243278 0)
(1.00177 -0.00223732 0)
(1.00178 -0.0020228 0)
(1.0018 -0.00179205 0)
(1.00183 -0.00154839 0)
(1.00185 -0.00129525 0)
(1.00189 -0.00103702 0)
(1.00192 -0.000777969 0)
(1.00193 -0.00052553 0)
(1.00194 -0.00028438 0)
(1.00192 -6.40153e-05 0)
(1.00187 0.000130165 0)
(1.00179 0.000294505 0)
(1.00167 0.000429101 0)
(1.00151 0.000527179 0)
(1.00147 0.000600888 0)
(1.00254 0.000567474 0)
(1.00192 -0.0029333 0)
(1.0019 -0.00296756 0)
(1.00187 -0.00297396 0)
(1.00186 -0.00293999 0)
(1.00185 -0.00286483 0)
(1.00185 -0.00275248 0)
(1.00185 -0.0026081 0)
(1.00184 -0.00243631 0)
(1.00184 -0.00224153 0)
(1.00184 -0.00202705 0)
(1.00185 -0.00179582 0)
(1.00186 -0.00155097 0)
(1.00188 -0.00129602 0)
(1.0019 -0.00103515 0)
(1.00192 -0.000772999 0)
(1.00192 -0.00051706 0)
(1.00192 -0.000272185 0)
(1.00188 -4.82878e-05 0)
(1.00183 0.0001494 0)
(1.00174 0.000316991 0)
(1.00162 0.000454736 0)
(1.00145 0.000555423 0)
(1.0014 0.000633083 0)
(1.00247 0.00059819 0)
(1.00203 -0.00290792 0)
(1.002 -0.00294705 0)
(1.00198 -0.00295844 0)
(1.00196 -0.00292863 0)
(1.00195 -0.00285669 0)
(1.00194 -0.00274681 0)
(1.00193 -0.00260427 0)
(1.00192 -0.00243402 0)
(1.0019 -0.00224008 0)
(1.00189 -0.00202576 0)
(1.00189 -0.00179415 0)
(1.0019 -0.00154828 0)
(1.0019 -0.00129166 0)
(1.00191 -0.00102848 0)
(1.00192 -0.000763836 0)
(1.00192 -0.000505275 0)
(1.0019 -0.000257737 0)
(1.00185 -3.1028e-05 0)
(1.00179 0.000169489 0)
(1.00169 0.000340014 0)
(1.00156 0.000480694 0)
(1.00139 0.000584064 0)
(1.00133 0.000665615 0)
(1.00241 0.000631481 0)
(1.00214 -0.00287479 0)
(1.0021 -0.00291892 0)
(1.00207 -0.00293542 0)
(1.00205 -0.00291003 0)
(1.00204 -0.00284158 0)
(1.00202 -0.0027346 0)
(1.002 -0.00259416 0)
(1.00198 -0.00242582 0)
(1.00197 -0.00223312 0)
(1.00195 -0.00201919 0)
(1.00194 -0.00178738 0)
(1.00193 -0.00154057 0)
(1.00193 -0.0012824 0)
(1.00193 -0.00101692 0)
(1.00192 -0.000750393 0)
(1.00191 -0.000489754 0)
(1.00188 -0.000240721 0)
(1.00182 -1.21657e-05 0)
(1.00175 0.000190309 0)
(1.00165 0.000362977 0)
(1.00151 0.000505975 0)
(1.00133 0.00061151 0)
(1.00127 0.000697 0)
(1.00235 0.0006621 0)
(1.00224 -0.00283574 0)
(1.0022 -0.00288496 0)
(1.00217 -0.00290672 0)
(1.00214 -0.00288577 0)
(1.00212 -0.00282107 0)
(1.0021 -0.00271628 0)
(1.00208 -0.00257846 0)
(1.00205 -0.00241207 0)
(1.00203 -0.00222091 0)
(1.002 -0.00200781 0)
(1.00198 -0.00177609 0)
(1.00197 -0.0015287 0)
(1.00196 -0.00126905 0)
(1.00195 -0.00100158 0)
(1.00193 -0.000733328 0)
(1.0019 -0.000471174 0)
(1.00186 -0.000221087 0)
(1.00179 8.63546e-06 0)
(1.00171 0.000212628 0)
(1.0016 0.000386983 0)
(1.00146 0.000532025 0)
(1.00127 0.000639665 0)
(1.00121 0.000728952 0)
(1.00229 0.000695349 0)
(1.00233 -0.0027902 0)
(1.00229 -0.00284463 0)
(1.00226 -0.00287149 0)
(1.00223 -0.00285493 0)
(1.0022 -0.00279279 0)
(1.00218 -0.00269064 0)
(1.00215 -0.0025548 0)
(1.00212 -0.00239062 0)
(1.00208 -0.0022013 0)
(1.00205 -0.00198971 0)
(1.00203 -0.00175882 0)
(1.00201 -0.00151163 0)
(1.00198 -0.00125114 0)
(1.00196 -0.000982294 0)
(1.00193 -0.000712813 0)
(1.0019 -0.000449493 0)
(1.00184 -0.000198678 0)
(1.00177 3.1598e-05 0)
(1.00167 0.000236505 0)
(1.00156 0.000411742 0)
(1.00141 0.000558088 0)
(1.00122 0.000667211 0)
(1.00115 0.000760419 0)
(1.00224 0.000726013 0)
(1.00242 -0.00273958 0)
(1.00238 -0.00279903 0)
(1.00235 -0.0028308 0)
(1.00231 -0.00281793 0)
(1.00228 -0.00275859 0)
(1.00225 -0.00265872 0)
(1.00222 -0.00252484 0)
(1.00218 -0.00236272 0)
(1.00214 -0.00217536 0)
(1.0021 -0.00196538 0)
(1.00207 -0.00173592 0)
(1.00204 -0.00148941 0)
(1.00201 -0.0012289 0)
(1.00198 -0.000959474 0)
(1.00194 -0.00068935 0)
(1.00189 -0.000425183 0)
(1.00183 -0.000173854 0)
(1.00174 5.69046e-05 0)
(1.00164 0.000262322 0)
(1.00151 0.00043811 0)
(1.00136 0.000585298 0)
(1.00117 0.000695587 0)
(1.00109 0.000792146 0)
(1.00218 0.000758822 0)
(1.00251 -0.00268365 0)
(1.00247 -0.00274817 0)
(1.00243 -0.00278498 0)
(1.0024 -0.00277603 0)
(1.00236 -0.00272014 0)
(1.00232 -0.00262237 0)
(1.00228 -0.00249073 0)
(1.00224 -0.00233014 0)
(1.00219 -0.00214401 0)
(1.00215 -0.00193537 0)
(1.00211 -0.00170718 0)
(1.00207 -0.00146157 0)
(1.00204 -0.00120172 0)
(1.00199 -0.000932616 0)
(1.00195 -0.00066263 0)
(1.00189 -0.000397968 0)
(1.00181 -0.000146546 0)
(1.00171 8.43394e-05 0)
(1.0016 0.000289743 0)
(1.00147 0.00046542 0)
(1.00131 0.000612784 0)
(1.00111 0.000723639 0)
(1.00103 0.000823537 0)
(1.00213 0.000789733 0)
(1.0026 -0.00262409 0)
(1.00255 -0.00269392 0)
(1.00251 -0.00273584 0)
(1.00248 -0.00273147 0)
(1.00244 -0.00267873 0)
(1.00239 -0.00258394 0)
(1.00235 -0.00245385 0)
(1.0023 -0.00229419 0)
(1.00225 -0.00210874 0)
(1.0022 -0.00190102 0)
(1.00215 -0.00167356 0)
(1.00211 -0.00142892 0)
(1.00206 -0.00117019 0)
(1.00201 -0.000902259 0)
(1.00195 -0.000633008 0)
(1.00188 -0.000368445 0)
(1.00179 -0.000117104 0)
(1.00169 0.000113585 0)
(1.00157 0.00031878 0)
(1.00143 0.00049401 0)
(1.00126 0.000641244 0)
(1.00106 0.000752417 0)
(1.00097 0.000855184 0)
(1.00207 0.000822773 0)
(1.00268 -0.0025607 0)
(1.00263 -0.00263583 0)
(1.00259 -0.00268289 0)
(1.00255 -0.00268283 0)
(1.00251 -0.00263389 0)
(1.00246 -0.0025415 0)
(1.00241 -0.00241299 0)
(1.00235 -0.0022541 0)
(1.0023 -0.0020692 0)
(1.00224 -0.00186184 0)
(1.00219 -0.00163501 0)
(1.00214 -0.00139144 0)
(1.00208 -0.00113446 0)
(1.00202 -0.000868273 0)
(1.00195 -0.000600473 0)
(1.00187 -0.000336478 0)
(1.00178 -8.55943e-05 0)
(1.00166 0.000144311 0)
(1.00153 0.000348717 0)
(1.00139 0.000522792 0)
(1.00121 0.000669269 0)
(1.00101 0.000780316 0)
(1.00091 0.000886296 0)
(1.00202 0.000853489 0)
(1.00276 -0.00249478 0)
(1.00271 -0.00257519 0)
(1.00266 -0.00262721 0)
(1.00262 -0.00263134 0)
(1.00258 -0.00258562 0)
(1.00253 -0.00249554 0)
(1.00247 -0.00236838 0)
(1.00241 -0.00221004 0)
(1.00235 -0.00202553 0)
(1.00229 -0.00181856 0)
(1.00223 -0.00159257 0)
(1.00217 -0.00135038 0)
(1.00211 -0.00109549 0)
(1.00204 -0.000831349 0)
(1.00196 -0.000565396 0)
(1.00187 -0.000302337 0)
(1.00176 -5.24073e-05 0)
(1.00163 0.000176448 0)
(1.00149 0.000379591 0)
(1.00135 0.000552233 0)
(1.00116 0.000697599 0)
(1.00096 0.000808248 0)
(1.00085 0.000916793 0)
(1.00197 0.000885506 0)
(1.00283 -0.0024262 0)
(1.00278 -0.00251186 0)
(1.00273 -0.00256868 0)
(1.00269 -0.00257667 0)
(1.00264 -0.00253373 0)
(1.00259 -0.00244563 0)
(1.00253 -0.00231946 0)
(1.00246 -0.00216179 0)
(1.0024 -0.00197776 0)
(1.00233 -0.00177154 0)
(1.00226 -0.0015466 0)
(1.0022 -0.00130609 0)
(1.00213 -0.00105322 0)
(1.00205 -0.000791361 0)
(1.00196 -0.000527296 0)
(1.00186 -0.000265716 0)
(1.00174 -1.73189e-05 0)
(1.00161 0.000209879 0)
(1.00146 0.000411066 0)
(1.0013 0.000581631 0)
(1.00112 0.000725368 0)
(1.00091 0.000835246 0)
(1.0008 0.000946625 0)
(1.00191 0.000915624 0)
(1.0029 -0.00235504 0)
(1.00285 -0.00244589 0)
(1.0028 -0.00250731 0)
(1.00276 -0.00251873 0)
(1.00271 -0.00247829 0)
(1.00265 -0.00239175 0)
(1.00259 -0.00226659 0)
(1.00252 -0.00210968 0)
(1.00244 -0.00192639 0)
(1.00237 -0.00172116 0)
(1.0023 -0.0014975 0)
(1.00222 -0.00125867 0)
(1.00215 -0.00100775 0)
(1.00206 -0.000748024 0)
(1.00196 -0.000485983 0)
(1.00185 -0.000226356 0)
(1.00172 2.00716e-05 0)
(1.00158 0.000244981 0)
(1.00142 0.000443841 0)
(1.00126 0.000611975 0)
(1.00107 0.000753838 0)
(1.00085 0.000862695 0)
(1.00074 0.000976305 0)
(1.00187 0.00094738 0)
(1.00297 -0.00228074 0)
(1.00292 -0.00237671 0)
(1.00287 -0.00244243 0)
(1.00282 -0.00245698 0)
(1.00277 -0.00241861 0)
(1.00271 -0.00233346 0)
(1.00264 -0.00220941 0)
(1.00257 -0.00205346 0)
(1.00249 -0.0018713 0)
(1.00241 -0.00166737 0)
(1.00233 -0.0014453 0)
(1.00225 -0.00120822 0)
(1.00216 -0.00095915 0)
(1.00207 -0.000701524 0)
(1.00196 -0.000441596 0)
(1.00184 -0.000184404 0)
(1.0017 5.94527e-05 0)
(1.00155 0.000281414 0)
(1.00139 0.000477316 0)
(1.00122 0.00064235 0)
(1.00102 0.000781788 0)
(1.00081 0.00088931 0)
(1.00069 0.00100561 0)
(1.00181 0.000977154 0)
(1.00304 -0.00220432 0)
(1.00299 -0.00230522 0)
(1.00294 -0.00237481 0)
(1.00289 -0.00239197 0)
(1.00283 -0.00235527 0)
(1.00277 -0.00227128 0)
(1.0027 -0.00214822 0)
(1.00262 -0.00199336 0)
(1.00253 -0.00181247 0)
(1.00245 -0.00161006 0)
(1.00236 -0.0013897 0)
(1.00227 -0.00115437 0)
(1.00218 -0.000907113 0)
(1.00207 -0.000651529 0)
(1.00196 -0.000393971 0)
(1.00183 -0.000139521 0)
(1.00168 0.000101216 0)
(1.00152 0.000319885 0)
(1.00135 0.000512327 0)
(1.00117 0.000674003 0)
(1.00097 0.000810711 0)
(1.00075 0.000916575 0)
(1.00063 0.0010347 0)
(1.00177 0.00100837 0)
(1.00311 -0.00212779 0)
(1.00305 -0.00223332 0)
(1.003 -0.0023063 0)
(1.00295 -0.00232559 0)
(1.00289 -0.00229007 0)
(1.00283 -0.00220682 0)
(1.00275 -0.00208446 0)
(1.00266 -0.00193052 0)
(1.00257 -0.00175082 0)
(1.00248 -0.00154996 0)
(1.00239 -0.00133119 0)
(1.00229 -0.00109768 0)
(1.00219 -0.000852021 0)
(1.00208 -0.000598801 0)
(1.00196 -0.000343692 0)
(1.00182 -9.26276e-05 0)
(1.00166 0.00014437 0)
(1.00149 0.000359286 0)
(1.00131 0.000547776 0)
(1.00113 0.000705615 0)
(1.00093 0.000839223 0)
(1.0007 0.000943199 0)
(1.00058 0.00106346 0)
(1.00172 0.0010381 0)
(1.00318 -0.00205175 0)
(1.00312 -0.00216161 0)
(1.00307 -0.00223783 0)
(1.00301 -0.00225917 0)
(1.00295 -0.00222483 0)
(1.00288 -0.00214231 0)
(1.0028 -0.00202054 0)
(1.00271 -0.00186725 0)
(1.00261 -0.00168845 0)
(1.00251 -0.00148865 0)
(1.00241 -0.00127111 0)
(1.00231 -0.00103884 0)
(1.0022 -0.000794631 0)
(1.00208 -0.000543679 0)
(1.00195 -0.000291361 0)
(1.0018 -4.41184e-05 0)
(1.00164 0.000188832 0)
(1.00146 0.000399597 0)
(1.00127 0.000584022 0)
(1.00108 0.000737903 0)
(1.00088 0.000868368 0)
(1.00065 0.000970285 0)
(1.00052 0.00109198 0)
(1.00167 0.00106922 0)
(1.00324 -0.00197298 0)
(1.00318 -0.00208731 0)
(1.00313 -0.00216716 0)
(1.00307 -0.0021914 0)
(1.00301 -0.00215881 0)
(1.00293 -0.00207777 0)
(1.00285 -0.00195736 0)
(1.00275 -0.00180513 0)
(1.00265 -0.00162739 0)
(1.00255 -0.00142844 0)
(1.00244 -0.00121173 0)
(1.00233 -0.000980069 0)
(1.00221 -0.000736912 0)
(1.00209 -0.000488112 0)
(1.00194 -0.000238729 0)
(1.00179 4.51416e-06 0)
(1.00161 0.000233015 0)
(1.00142 0.000439256 0)
(1.00123 0.00061934 0)
(1.00104 0.000768912 0)
(1.00083 0.000895923 0)
(1.0006 0.000995702 0)
(1.00047 0.00111946 0)
(1.00162 0.00109799 0)
(1.00331 -0.00188635 0)
(1.00324 -0.00200522 0)
(1.00319 -0.00209055 0)
(1.00313 -0.00211782 0)
(1.00307 -0.00208864 0)
(1.00299 -0.00201039 0)
(1.0029 -0.0018925 0)
(1.00279 -0.00174251 0)
(1.00269 -0.00156638 0)
(1.00258 -0.00136862 0)
(1.00246 -0.00115239 0)
(1.00235 -0.000921 0)
(1.00222 -0.000678585 0)
(1.00209 -0.000431839 0)
(1.00194 -0.000185494 0)
(1.00177 5.37378e-05 0)
(1.00159 0.000277605 0)
(1.00139 0.000479299 0)
(1.00119 0.000654793 0)
(1.00099 0.000799959 0)
(1.00078 0.000923327 0)
(1.00055 0.00102067 0)
(1.00041 0.00114557 0)
(1.00157 0.00112686 0)
(1.00337 -0.00179081 0)
(1.0033 -0.00191695 0)
(1.00325 -0.00200658 0)
(1.00319 -0.00203894 0)
(1.00312 -0.00201298 0)
(1.00304 -0.00193799 0)
(1.00294 -0.00182324 0)
(1.00283 -0.00167608 0)
(1.00272 -0.00150229 0)
(1.00261 -0.00130622 0)
(1.00249 -0.00109082 0)
(1.00236 -0.000859988 0)
(1.00223 -0.000618647 0)
(1.00209 -0.00037434 0)
(1.00193 -0.000131221 0)
(1.00175 0.000103483 0)
(1.00156 0.000322344 0)
(1.00135 0.000519205 0)
(1.00115 0.00068973 0)
(1.00095 0.000830034 0)
(1.00073 0.000949346 0)
(1.0005 0.00104401 0)
(1.00036 0.00117037 0)
(1.00153 0.00115333 0)
(1.00343 -0.00169051 0)
(1.00336 -0.0018234 0)
(1.0033 -0.00192023 0)
(1.00324 -0.0019573 0)
(1.00317 -0.00193465 0)
(1.00308 -0.00186236 0)
(1.00298 -0.00174998 0)
(1.00287 -0.00160487 0)
(1.00275 -0.00143325 0)
(1.00263 -0.0012388 0)
(1.00251 -0.00102467 0)
(1.00238 -0.000795021 0)
(1.00224 -0.000555615 0)
(1.00208 -0.000314262 0)
(1.00192 -7.48118e-05 0)
(1.00173 0.000155185 0)
(1.00153 0.000368989 0)
(1.00132 0.000560697 0)
(1.0011 0.000726002 0)
(1.0009 0.00086107 0)
(1.00068 0.000975976 0)
(1.00045 0.00106745 0)
(1.0003 0.00119427 0)
(1.00148 0.00118002 0)
(1.00348 -0.00158594 0)
(1.00342 -0.0017277 0)
(1.00336 -0.00183328 0)
(1.0033 -0.00187536 0)
(1.00322 -0.00185602 0)
(1.00312 -0.00178552 0)
(1.00302 -0.0016738 0)
(1.0029 -0.00152958 0)
(1.00278 -0.00135912 0)
(1.00266 -0.00116603 0)
(1.00253 -0.000953447 0)
(1.00239 -0.000726054 0)
(1.00224 -0.000489494 0)
(1.00208 -0.000251888 0)
(1.0019 -1.65427e-05 0)
(1.00171 0.000208515 0)
(1.0015 0.00041689 0)
(1.00128 0.000602963 0)
(1.00106 0.000762515 0)
(1.00085 0.000891679 0)
(1.00063 0.0010015 0)
(1.0004 0.00108942 0)
(1.00025 0.0012171 0)
(1.00143 0.00120433 0)
(1.00353 -0.00147485 0)
(1.00347 -0.00162842 0)
(1.00341 -0.00174274 0)
(1.00334 -0.00179123 0)
(1.00326 -0.00177554 0)
(1.00316 -0.00170619 0)
(1.00305 -0.00159457 0)
(1.00293 -0.00145049 0)
(1.00281 -0.00128034 0)
(1.00268 -0.00108831 0)
(1.00255 -0.000877673 0)
(1.0024 -0.000653384 0)
(1.00225 -0.00042043 0)
(1.00208 -0.000187105 0)
(1.00189 4.3947e-05 0)
(1.00169 0.000264018 0)
(1.00147 0.000466728 0)
(1.00124 0.000646881 0)
(1.00102 0.000800032 0)
(1.0008 0.000922753 0)
(1.00057 0.0010269 0)
(1.00034 0.00111064 0)
(1.0002 0.00123802 0)
(1.00139 0.0012278 0)
(1.00358 -0.00135968 0)
(1.00352 -0.00152307 0)
(1.00346 -0.00164722 0)
(1.00339 -0.00170264 0)
(1.0033 -0.00169074 0)
(1.0032 -0.00162303 0)
(1.00308 -0.00151208 0)
(1.00296 -0.00136807 0)
(1.00283 -0.00119824 0)
(1.0027 -0.00100735 0)
(1.00256 -0.000799314 0)
(1.00241 -0.000578607 0)
(1.00225 -0.000350028 0)
(1.00207 -0.000121171 0)
(1.00188 0.000105177 0)
(1.00167 0.000319765 0)
(1.00144 0.000516261 0)
(1.0012 0.000689906 0)
(1.00097 0.000836026 0)
(1.00075 0.000951664 0)
(1.00052 0.00104965 0)
(1.00029 0.00112904 0)
(1.00014 0.00125663 0)
(1.00135 0.00124827 0)
(1.00362 -0.00124543 0)
(1.00356 -0.00141751 0)
(1.0035 -0.00155017 0)
(1.00342 -0.00161174 0)
(1.00334 -0.00160363 0)
(1.00323 -0.00153809 0)
(1.00311 -0.00142824 0)
(1.00298 -0.00128467 0)
(1.00285 -0.0011154 0)
(1.00271 -0.000925938 0)
(1.00257 -0.000720614 0)
(1.00242 -0.000503589 0)
(1.00225 -0.000279357 0)
(1.00206 -5.50299e-05 0)
(1.00186 0.00016638 0)
(1.00164 0.0003752 0)
(1.0014 0.000565168 0)
(1.00116 0.000731705 0)
(1.00092 0.000870389 0)
(1.0007 0.00097861 0)
(1.00047 0.00107029 0)
(1.00024 0.00114514 0)
(1.00009 0.00127229 0)
(1.0013 0.00126708 0)
(1.00366 -0.00113455 0)
(1.0036 -0.00131381 0)
(1.00354 -0.0014537 0)
(1.00346 -0.00152066 0)
(1.00337 -0.00151618 0)
(1.00326 -0.00145304 0)
(1.00314 -0.00134462 0)
(1.00301 -0.00120197 0)
(1.00287 -0.00103372 0)
(1.00273 -0.000845854 0)
(1.00258 -0.000643268 0)
(1.00242 -0.000429617 0)
(1.00224 -0.000209889 0)
(1.00205 1.00649e-05 0)
(1.00184 0.000226013 0)
(1.00161 0.000428452 0)
(1.00137 0.0006114 0)
(1.00112 0.000770272 0)
(1.00088 0.000901128 0)
(1.00065 0.00100168 0)
(1.00042 0.00108693 0)
(1.00019 0.00115753 0)
(1.00003 0.00128525 0)
(1.00126 0.00128278 0)
(1.00371 -0.00102545 0)
(1.00364 -0.00121098 0)
(1.00357 -0.00135704 0)
(1.0035 -0.00142884 0)
(1.0034 -0.00142775 0)
(1.00329 -0.00136701 0)
(1.00316 -0.00126029 0)
(1.00303 -0.00111905 0)
(1.00288 -0.000952177 0)
(1.00274 -0.000766159 0)
(1.00258 -0.000566121 0)
(1.00242 -0.000355803 0)
(1.00223 -0.000140358 0)
(1.00203 7.49312e-05 0)
(1.00182 0.000285118 0)
(1.00158 0.000480842 0)
(1.00133 0.00065635 0)
(1.00108 0.000807267 0)
(1.00083 0.000929887 0)
(1.00059 0.00102267 0)
(1.00036 0.00110147 0)
(1.00013 0.00116772 0)
(0.999977 0.00129531 0)
(1.00122 0.00129678 0)
(1.00375 -0.000916382 0)
(1.00368 -0.0011074 0)
(1.00361 -0.00125905 0)
(1.00353 -0.00133505 0)
(1.00343 -0.00133714 0)
(1.00331 -0.00127878 0)
(1.00318 -0.00117394 0)
(1.00304 -0.00103448 0)
(1.0029 -0.000869286 0)
(1.00275 -0.000685371 0)
(1.00259 -0.000487892 0)
(1.00242 -0.000280968 0)
(1.00223 -6.99635e-05 0)
(1.00202 0.000140402 0)
(1.00179 0.000344473 0)
(1.00155 0.000532714 0)
(1.00129 0.000700026 0)
(1.00103 0.000842413 0)
(1.00078 0.000956398 0)
(1.00054 0.00104112 0)
(1.00031 0.00111335 0)
(1.00008 0.00117542 0)
(0.999924 0.00130356 0)
(1.00118 0.00130861 0)
(1.00379 -0.00080694 0)
(1.00372 -0.00100307 0)
(1.00365 -0.00115959 0)
(1.00356 -0.0012396 0)
(1.00346 -0.00124464 0)
(1.00334 -0.00118851 0)
(1.0032 -0.00108573 0)
(1.00306 -0.000948088 0)
(1.00291 -0.000784839 0)
(1.00275 -0.000603057 0)
(1.00259 -0.000408268 0)
(1.00241 -0.000204754 0)
(1.00221 1.75184e-06 0)
(1.002 0.000206935 0)
(1.00177 0.000404512 0)
(1.00152 0.00058487 0)
(1.00125 0.000743643 0)
(1.00098 0.000877015 0)
(1.00072 0.000982094 0)
(1.00049 0.00105855 0)
(1.00025 0.00112412 0)
(1.00002 0.00118176 0)
(0.999867 0.00130966 0)
(1.00114 0.00131899 0)
(1.00383 -0.000696892 0)
(1.00376 -0.000897621 0)
(1.00368 -0.00105885 0)
(1.00359 -0.00114251 0)
(1.00348 -0.00115034 0)
(1.00336 -0.00109647 0)
(1.00322 -0.000995685 0)
(1.00307 -0.000859928 0)
(1.00292 -0.000698691 0)
(1.00276 -0.000519156 0)
(1.00259 -0.000327139 0)
(1.0024 -0.000127092 0)
(1.0022 7.47575e-05 0)
(1.00198 0.000274645 0)
(1.00174 0.000465106 0)
(1.00148 0.000636911 0)
(1.00121 0.000786512 0)
(1.00093 0.000910231 0)
(1.00067 0.00100594 0)
(1.00043 0.00107379 0)
(1.00019 0.00113239 0)
(0.999968 0.00118564 0)
(0.999815 0.00131396 0)
(1.00109 0.00132709 0)
(1.00387 -0.000586187 0)
(1.0038 -0.000791324 0)
(1.00372 -0.000956879 0)
(1.00362 -0.00104417 0)
(1.00351 -0.00105463 0)
(1.00338 -0.00100293 0)
(1.00324 -0.000903955 0)
(1.00308 -0.00077011 0)
(1.00292 -0.00061082 0)
(1.00276 -0.000433672 0)
(1.00258 -0.00024449 0)
(1.00239 -4.8113e-05 0)
(1.00218 0.000148983 0)
(1.00195 0.000343151 0)
(1.00171 0.000526221 0)
(1.00144 0.000689244 0)
(1.00116 0.000829318 0)
(1.00088 0.00094312 0)
(1.00061 0.00102898 0)
(1.00037 0.00108795 0)
(1.00014 0.00113932 0)
(0.999912 0.00118777 0)
(0.999758 0.00131549 0)
(1.00106 0.00133287 0)
(1.00391 -0.000474402 0)
(1.00383 -0.00068365 0)
(1.00375 -0.000853541 0)
(1.00365 -0.000944141 0)
(1.00353 -0.000957229 0)
(1.0034 -0.000907518 0)
(1.00325 -0.000810342 0)
(1.00309 -0.000678235 0)
(1.00293 -0.000520951 0)
(1.00276 -0.000346143 0)
(1.00258 -0.000159999 0)
(1.00238 3.26238e-05 0)
(1.00217 0.000224664 0)
(1.00193 0.000412792 0)
(1.00167 0.000588106 0)
(1.0014 0.000741674 0)
(1.00112 0.000871487 0)
(1.00083 0.000974765 0)
(1.00056 0.00105036 0)
(1.00032 0.00110003 0)
(1.00008 0.00114385 0)
(0.999858 0.00118746 0)
(0.999705 0.001315 0)
(1.00102 0.00133632 0)
(1.00395 -0.000361678 0)
(1.00387 -0.000574928 0)
(1.00378 -0.000748788 0)
(1.00368 -0.000842783 0)
(1.00356 -0.000858366 0)
(1.00342 -0.000810524 0)
(1.00326 -0.000715053 0)
(1.0031 -0.000584608 0)
(1.00293 -0.000429351 0)
(1.00276 -0.000256976 0)
(1.00257 -7.40709e-05 0)
(1.00237 0.000114553 0)
(1.00215 0.000301229 0)
(1.0019 0.000483037 0)
(1.00164 0.000650309 0)
(1.00136 0.000794247 0)
(1.00107 0.000913643 0)
(1.00078 0.00100607 0)
(1.0005 0.00107116 0)
(1.00026 0.00111126 0)
(1.00002 0.0011473 0)
(0.999802 0.00118566 0)
(0.999649 0.00131209 0)
(1.00098 0.00133756 0)
(1.00399 -0.000247503 0)
(1.00391 -0.000464464 0)
(1.00381 -0.000642323 0)
(1.00371 -0.000739597 0)
(1.00358 -0.000757665 0)
(1.00343 -0.000711869 0)
(1.00328 -0.000618053 0)
(1.00311 -0.00048934 0)
(1.00293 -0.000336027 0)
(1.00275 -0.000166239 0)
(1.00256 1.34321e-05 0)
(1.00235 0.000197665 0)
(1.00212 0.000378911 0)
(1.00187 0.000553954 0)
(1.0016 0.000712733 0)
(1.00131 0.000846608 0)
(1.00102 0.000955137 0)
(1.00072 0.00103623 0)
(1.00044 0.00109042 0)
(1.0002 0.00112062 0)
(0.999962 0.00114851 0)
(0.999747 0.00118158 0)
(0.999596 0.00130742 0)
(1.00094 0.00133682 0)
(1.00403 -0.000131937 0)
(1.00394 -0.000352498 0)
(1.00384 -0.000534206 0)
(1.00373 -0.00063484 0)
(1.0036 -0.00065556 0)
(1.00345 -0.000611776 0)
(1.00329 -0.000519635 0)
(1.00311 -0.000392643 0)
(1.00293 -0.000241377 0)
(1.00275 -7.42683e-05 0)
(1.00255 0.000101924 0)
(1.00234 0.000281548 0)
(1.0021 0.000457068 0)
(1.00184 0.000625021 0)
(1.00156 0.000775208 0)
(1.00127 0.000899002 0)
(1.00097 0.000996558 0)
(1.00067 0.00106629 0)
(1.00038 0.00110925 0)
(1.00014 0.00112929 0)
(0.999903 0.00114871 0)
(0.999691 0.00117601 0)
(0.999539 0.00130022 0)
(1.0009 0.00133359 0)
(1.00407 -1.45073e-05 0)
(1.00398 -0.000238508 0)
(1.00388 -0.000424115 0)
(1.00376 -0.000528156 0)
(1.00362 -0.000551609 0)
(1.00346 -0.000509947 0)
(1.0033 -0.000419639 0)
(1.00312 -0.00029443 0)
(1.00293 -0.000145292 0)
(1.00274 1.90784e-05 0)
(1.00254 0.000191609 0)
(1.00232 0.000366346 0)
(1.00207 0.00053591 0)
(1.00181 0.000696366 0)
(1.00152 0.000837635 0)
(1.00122 0.000951079 0)
(1.00091 0.00103728 0)
(1.00061 0.00109526 0)
(1.00032 0.00112673 0)
(1.00007 0.00113628 0)
(0.999844 0.00114695 0)
(0.999635 0.00116845 0)
(0.999487 0.00129141 0)
(1.00087 0.00132867 0)
(1.0041 0.000104548 0)
(1.00401 -0.000122824 0)
(1.00391 -0.000312286 0)
(1.00378 -0.000419858 0)
(1.00364 -0.000446144 0)
(1.00348 -0.000406711 0)
(1.0033 -0.000318286 0)
(1.00312 -0.000194989 0)
(1.00293 -4.81179e-05 0)
(1.00273 0.00011331 0)
(1.00252 0.000281908 0)
(1.0023 0.00045152 0)
(1.00205 0.000614804 0)
(1.00177 0.000767661 0)
(1.00148 0.000899872 0)
(1.00117 0.00100294 0)
(1.00086 0.00107779 0)
(1.00055 0.00112389 0)
(1.00026 0.0011438 0)
(1.00001 0.00114269 0)
(0.999783 0.00114441 0)
(0.999578 0.0011597 0)
(0.99943 0.00128054 0)
(1.00083 0.00132149 0)
(1.00414 0.000225565 0)
(1.00405 -5.08145e-06 0)
(1.00393 -0.000198462 0)
(1.00381 -0.000309636 0)
(1.00366 -0.000338884 0)
(1.00349 -0.000301909 0)
(1.00331 -0.000215582 0)
(1.00312 -9.44249e-05 0)
(1.00293 5.00943e-05 0)
(1.00272 0.000208269 0)
(1.00251 0.000372885 0)
(1.00227 0.000536903 0)
(1.00201 0.000693822 0)
(1.00174 0.000838671 0)
(1.00143 0.000961426 0)
(1.00112 0.00105392 0)
(1.0008 0.00111723 0)
(1.00049 0.0011512 0)
(1.0002 0.00115933 0)
(0.99995 0.00114743 0)
(0.999723 0.00113998 0)
(0.999522 0.0011491 0)
(0.999378 0.0012683 0)
(1.0008 0.00131314 0)
(1.00418 0.000348399 0)
(1.00408 0.000114534 0)
(1.00396 -8.27786e-05 0)
(1.00383 -0.000197668 0)
(1.00368 -0.000230152 0)
(1.0035 -0.00019577 0)
(1.00332 -0.000111763 0)
(1.00312 7.149e-06 0)
(1.00292 0.000149005 0)
(1.00271 0.000303784 0)
(1.00249 0.000464079 0)
(1.00225 0.000622392 0)
(1.00198 0.000772712 0)
(1.0017 0.000909346 0)
(1.00139 0.00102258 0)
(1.00106 0.00110448 0)
(1.00074 0.00115622 0)
(1.00042 0.00117811 0)
(1.00013 0.00117428 0)
(0.999885 0.00115146 0)
(0.999661 0.00113462 0)
(0.999465 0.00113717 0)
(0.999321 0.00125381 0)
(1.00077 0.0013022 0)
(1.00421 0.000473436 0)
(1.00411 0.000236427 0)
(1.00399 3.51437e-05 0)
(1.00385 -8.36885e-05 0)
(1.00369 -0.000119542 0)
(1.00351 -8.80196e-05 0)
(1.00332 -6.62712e-06 0)
(1.00312 0.000109867 0)
(1.00291 0.000248796 0)
(1.00269 0.000400031 0)
(1.00247 0.000555765 0)
(1.00222 0.000708105 0)
(1.00195 0.00085152 0)
(1.00166 0.000979679 0)
(1.00134 0.00108301 0)
(1.00101 0.00115403 0)
(1.00068 0.00119388 0)
(1.00036 0.0012034 0)
(1.00007 0.00118751 0)
(0.999821 0.00115361 0)
(0.9996 0.00112727 0)
(0.999408 0.00112334 0)
(0.999268 0.00123781 0)
(1.00073 0.00129008 0)
(1.00425 0.000600542 0)
(1.00414 0.000360455 0)
(1.00402 0.00015509 0)
(1.00387 3.21827e-05 0)
(1.00371 -7.21402e-06 0)
(1.00352 2.11804e-05 0)
(1.00333 9.99278e-05 0)
(1.00312 0.000213664 0)
(1.0029 0.000349497 0)
(1.00268 0.00049688 0)
(1.00244 0.000647835 0)
(1.00219 0.000794011 0)
(1.00191 0.000930218 0)
(1.00161 0.00104979 0)
(1.00129 0.00114301 0)
(1.00095 0.00120298 0)
(1.00062 0.00123082 0)
(1.0003 0.00122781 0)
(1 0.00119981 0)
(0.999755 0.00115474 0)
(0.999537 0.00111878 0)
(0.99935 0.00110808 0)
(0.999211 0.00121968 0)
(1.0007 0.00127524 0)
(1.00428 0.000730024 0)
(1.00417 0.000486894 0)
(1.00404 0.000277361 0)
(1.00389 0.000150293 0)
(1.00372 0.000107149 0)
(1.00353 0.000132246 0)
(1.00333 0.000208055 0)
(1.00311 0.000318794 0)
(1.00289 0.000451282 0)
(1.00266 0.000594572 0)
(1.00242 0.000740505 0)
(1.00216 0.000880142 0)
(1.00187 0.00100886 0)
(1.00157 0.00111914 0)
(1.00123 0.00120165 0)
(1.00089 0.00125016 0)
(1.00055 0.00126573 0)
(1.00023 0.00124995 0)
(0.999933 0.00120969 0)
(0.999689 0.00115348 0)
(0.999475 0.00110787 0)
(0.999293 0.00109059 0)
(0.999158 0.00119986 0)
(1.00067 0.00125935 0)
(1.00432 0.000861787 0)
(1.0042 0.000615623 0)
(1.00407 0.000401893 0)
(1.00391 0.000270553 0)
(1.00374 0.000223334 0)
(1.00354 0.000245032 0)
(1.00333 0.000317611 0)
(1.00311 0.000425194 0)
(1.00288 0.000554009 0)
(1.00264 0.000693024 0)
(1.00239 0.000833633 0)
(1.00212 0.000966546 0)
(1.00183 0.00108741 0)
(1.00152 0.0011881 0)
(1.00118 0.00125975 0)
(1.00083 0.00129659 0)
(1.00049 0.00129964 0)
(1.00016 0.00127105 0)
(0.999864 0.00121831 0)
(0.999622 0.00115086 0)
(0.999412 0.00109545 0)
(0.999235 0.00107126 0)
(0.999101 0.00117746 0)
(1.00064 0.0012402 0)
(1.00435 0.000996117 0)
(1.00423 0.000746971 0)
(1.00409 0.00052903 0)
(1.00393 0.000393034 0)
(1.00375 0.000341713 0)
(1.00355 0.000359575 0)
(1.00333 0.000428698 0)
(1.0031 0.000532748 0)
(1.00286 0.000657744 0)
(1.00262 0.00079214 0)
(1.00236 0.000927186 0)
(1.00209 0.00105294 0)
(1.00179 0.00116546 0)
(1.00147 0.00125606 0)
(1.00112 0.00131634 0)
(1.00077 0.00134116 0)
(1.00042 0.00133138 0)
(1.00009 0.0012897 0)
(0.999796 0.00122448 0)
(0.999555 0.00114576 0)
(0.999349 0.0010806 0)
(0.999178 0.00104973 0)
(0.999048 0.00115334 0)
(1.0006 0.00121998 0)
(1.00438 0.00113292 0)
(1.00426 0.000880811 0)
(1.00411 0.000658342 0)
(1.00395 0.000517626 0)
(1.00376 0.000461656 0)
(1.00355 0.000475447 0)
(1.00333 0.000541 0)
(1.00309 0.000641367 0)
(1.00285 0.000762425 0)
(1.0026 0.000892 0)
(1.00233 0.00102119 0)
(1.00205 0.00113936 0)
(1.00175 0.00124313 0)
(1.00142 0.00132339 0)
(1.00106 0.00137209 0)
(1.0007 0.00138467 0)
(1.00035 0.0013619 0)
(1.00002 0.00130697 0)
(0.999725 0.00122927 0)
(0.999487 0.00113928 0)
(0.999285 0.00106435 0)
(0.999119 0.00102659 0)
(0.998991 0.0011271 0)
(1.00058 0.00119667 0)
(1.00441 0.00127235 0)
(1.00428 0.0010171 0)
(1.00413 0.0007899 0)
(1.00396 0.000643819 0)
(1.00377 0.000583014 0)
(1.00355 0.000592555 0)
(1.00332 0.000654091 0)
(1.00308 0.000750658 0)
(1.00283 0.000867585 0)
(1.00257 0.000992346 0)
(1.0023 0.00111518 0)
(1.00201 0.00122542 0)
(1.0017 0.00131978 0)
(1.00136 0.00138889 0)
(1.001 0.00142541 0)
(1.00064 0.00142532 0)
(1.00028 0.00138937 0)
(0.999953 0.00132116 0)
(0.999655 0.00123101 0)
(0.999419 0.00113006 0)
(0.999221 0.00104563 0)
(0.999062 0.00100141 0)
(0.998938 0.00109943 0)
(1.00055 0.00117307 0)
(1.00444 0.00141431 0)
(1.00431 0.00115567 0)
(1.00415 0.000923539 0)
(1.00397 0.000771819 0)
(1.00377 0.00070547 0)
(1.00355 0.000710321 0)
(1.00332 0.000767668 0)
(1.00307 0.000860311 0)
(1.00281 0.000973151 0)
(1.00255 0.00109309 0)
(1.00227 0.00120947 0)
(1.00197 0.00131154 0)
(1.00165 0.00139601 0)
(1.00131 0.00145352 0)
(1.00094 0.00147747 0)
(1.00057 0.00146427 0)
(1.00021 0.00141478 0)
(0.999881 0.00133325 0)
(0.999584 0.00123057 0)
(0.99935 0.00111875 0)
(0.999157 0.00102487 0)
(0.999003 0.000974067 0)
(0.998881 0.00106921 0)
(1.00052 0.00114597 0)
(1.00446 0.00155945 0)
(1.00433 0.00129822 0)
(1.00417 0.00106089 0)
(1.00399 0.000903281 0)
(1.00378 0.000831096 0)
(1.00355 0.000830532 0)
(1.00331 0.000882942 0)
(1.00306 0.000971107 0)
(1.00279 0.00107934 0)
(1.00252 0.00119434 0)
(1.00223 0.00130378 0)
(1.00193 0.0013976 0)
(1.0016 0.00147157 0)
(1.00125 0.00151658 0)
(1.00088 0.00152729 0)
(1.0005 0.00150039 0)
(1.00014 0.00143683 0)
(0.999809 0.00134163 0)
(0.999512 0.00122653 0)
(0.999281 0.00110402 0)
(0.999093 0.00100104 0)
(0.998945 0.000944167 0)
(0.998827 0.00103709 0)
(1.00049 0.00111823 0)
(1.00449 0.00170945 0)
(1.00435 0.00144547 0)
(1.00418 0.00120355 0)
(1.00399 0.00104 0)
(1.00378 0.000961549 0)
(1.00355 0.000954814 0)
(1.0033 0.00100151 0)
(1.00304 0.00108433 0)
(1.00277 0.00118742 0)
(1.00249 0.00129686 0)
(1.00219 0.00139915 0)
(1.00188 0.00148437 0)
(1.00155 0.00154753 0)
(1.00119 0.00157973 0)
(1.00081 0.00157663 0)
(1.00043 0.00153529 0)
(1.00007 0.00145701 0)
(0.999735 0.00134763 0)
(0.99944 0.00121992 0)
(0.999211 0.00108664 0)
(0.999028 0.000974585 0)
(0.998887 0.00091152 0)
(0.998771 0.00100212 0)
(1.00046 0.00108643 0)
(1.00452 0.00186294 0)
(1.00437 0.00159654 0)
(1.00419 0.00135012 0)
(1.004 0.00118073 0)
(1.00378 0.00109602 0)
(1.00355 0.00108303 0)
(1.00329 0.00112362 0)
(1.00303 0.00120034 0)
(1.00275 0.0012975 0)
(1.00246 0.00140055 0)
(1.00215 0.00149506 0)
(1.00183 0.00157139 0)
(1.00149 0.00162347 0)
(1.00113 0.00164217 0)
(1.00075 0.0016244 0)
(1.00036 0.00156772 0)
(0.999996 0.00147403 0)
(0.999662 0.00135007 0)
(0.999368 0.00120948 0)
(0.999142 0.00106565 0)
(0.998964 0.000944848 0)
(0.998829 0.000876084 0)
(0.998717 0.000965043 0)
(1.00044 0.00105417 0)
(1.00454 0.00201787 0)
(1.00439 0.00174917 0)
(1.00421 0.00149795 0)
(1.004 0.00132313 0)
(1.00378 0.00123302 0)
(1.00354 0.00121424 0)
(1.00328 0.0012487 0)
(1.00301 0.00131928 0)
(1.00272 0.00140997 0)
(1.00242 0.00150593 0)
(1.00211 0.00159213 0)
(1.00178 0.00165911 0)
(1.00144 0.00169981 0)
(1.00107 0.00170466 0)
(1.00068 0.00167166 0)
(1.00029 0.0015989 0)
(0.999921 0.00148906 0)
(0.999586 0.00135005 0)
(0.999294 0.00119616 0)
(0.999072 0.0010416 0)
(0.998899 0.000911928 0)
(0.998771 0.000837184 0)
(0.998661 0.000924374 0)
(1.00041 0.00101703 0)
(1.00457 0.00217471 0)
(1.00441 0.00190281 0)
(1.00422 0.00164714 0)
(1.00401 0.00146767 0)
(1.00378 0.00137242 0)
(1.00353 0.00134824 0)
(1.00326 0.00137694 0)
(1.00298 0.00144126 0)
(1.00269 0.00152486 0)
(1.00239 0.00161292 0)
(1.00207 0.00169002 0)
(1.00173 0.00174722 0)
(1.00138 0.00177581 0)
(1.001 0.00176595 0)
(1.00061 0.00171696 0)
(1.00021 0.00162739 0)
(0.999845 0.0015007 0)
(0.999511 0.00134611 0)
(0.999221 0.00117886 0)
(0.999003 0.0010136 0)
(0.998835 0.000875354 0)
(0.998713 0.000795068 0)
(0.998607 0.000881117 0)
(1.00038 0.000978907 0)
(1.00459 0.00233343 0)
(1.00443 0.0020587 0)
(1.00423 0.00179875 0)
(1.00401 0.0016144 0)
(1.00377 0.00151438 0)
(1.00352 0.00148504 0)
(1.00324 0.0015082 0)
(1.00296 0.00156604 0)
(1.00266 0.00164216 0)
(1.00235 0.00172165 0)
(1.00202 0.00178911 0)
(1.00167 0.00183578 0)
(1.00131 0.00185177 0)
(1.00093 0.00182689 0)
(1.00053 0.0017614 0)
(1.00014 0.00165438 0)
(0.999767 0.00151022 0)
(0.999435 0.00133948 0)
(0.999147 0.00115855 0)
(0.998932 0.000982363 0)
(0.99877 0.000835362 0)
(0.998656 0.000749149 0)
(0.998551 0.000834059 0)
(1.00036 0.000935429 0)
(1.00462 0.00249508 0)
(1.00445 0.00221755 0)
(1.00424 0.0019532 0)
(1.00401 0.00176419 0)
(1.00376 0.0016592 0)
(1.0035 0.00162475 0)
(1.00322 0.00164213 0)
(1.00293 0.00169331 0)
(1.00262 0.00176148 0)
(1.0023 0.00183201 0)
(1.00197 0.00188925 0)
(1.00162 0.0019248 0)
(1.00125 0.00192749 0)
(1.00086 0.00188677 0)
(1.00046 0.00180395 0)
(1.00006 0.00167873 0)
(0.999689 0.00151658 0)
(0.999358 0.00132943 0)
(0.999074 0.00113456 0)
(0.998863 0.000947687 0)
(0.998707 0.000792246 0)
(0.998598 0.000700571 0)
(0.998498 0.000784879 0)
(1.00033 0.000891843 0)
(1.00464 0.00265955 0)
(1.00446 0.00237933 0)
(1.00424 0.00211067 0)
(1.00401 0.00191664 0)
(1.00376 0.00180656 0)
(1.00349 0.00176678 0)
(1.0032 0.00177814 0)
(1.0029 0.0018225 0)
(1.00258 0.0018826 0)
(1.00226 0.00194399 0)
(1.00191 0.00199063 0)
(1.00156 0.00201452 0)
(1.00118 0.00200342 0)
(1.00079 0.00194647 0)
(1.00038 0.00184589 0)
(0.999979 0.00170196 0)
(0.999609 0.0015213 0)
(0.99928 0.00131736 0)
(0.998999 0.00110812 0)
(0.998793 0.000910232 0)
(0.998642 0.000746031 0)
(0.998542 0.000648323 0)
(0.998443 0.000731921 0)
(1.00031 0.000842766 0)
(1.00466 0.00282681 0)
(1.00448 0.002544 0)
(1.00425 0.00227089 0)
(1.00401 0.00207174 0)
(1.00375 0.00195629 0)
(1.00347 0.00191076 0)
(1.00317 0.00191601 0)
(1.00287 0.0019534 0)
(1.00254 0.00200553 0)
(1.00221 0.0020575 0)
(1.00186 0.00209341 0)
(1.00149 0.00210502 0)
(1.00111 0.00207922 0)
(1.00071 0.00200526 0)
(1.0003 0.0018863 0)
(0.999898 0.00172322 0)
(0.999528 0.00152363 0)
(0.999202 0.00130249 0)
(0.998925 0.0010789 0)
(0.998723 0.00087001 0)
(0.998579 0.0006973 0)
(0.998485 0.000593925 0)
(0.99839 0.000677268 0)
(1.00028 0.000793823 0)
(1.00468 0.00299664 0)
(1.00449 0.00271126 0)
(1.00426 0.00243364 0)
(1.00401 0.00222908 0)
(1.00374 0.00210793 0)
(1.00345 0.00205648 0)
(1.00315 0.0020555 0)
(1.00283 0.00208589 0)
(1.0025 0.00212997 0)
(1.00216 0.00217242 0)
(1.0018 0.00219731 0)
(1.00143 0.00219608 0)
(1.00104 0.00215514 0)
(1.00063 0.00206392 0)
(1.00022 0.00192629 0)
(0.999814 0.00174373 0)
(0.999445 0.00152484 0)
(0.999122 0.00128606 0)
(0.99885 0.00104779 0)
(0.998653 0.000827565 0)
(0.998515 0.000646006 0)
(0.998428 0.000536313 0)
(0.998335 0.000619389 0)
(1.00026 0.000739643 0)
(1.0047 0.00316894 0)
(1.00451 0.00288103 0)
(1.00426 0.00259881 0)
(1.004 0.0023887 0)
(1.00372 0.00226159 0)
(1.00343 0.00220402 0)
(1.00312 0.00219654 0)
(1.00279 0.00221981 0)
(1.00245 0.00225573 0)
(1.0021 0.00228842 0)
(1.00174 0.00230207 0)
(1.00136 0.00228741 0)
(1.00096 0.00223066 0)
(1.00055 0.0021217 0)
(1.00013 0.00196496 0)
(0.999729 0.00176253 0)
(0.999362 0.00152417 0)
(0.999043 0.00126775 0)
(0.998775 0.00101463 0)
(0.998584 0.000783361 0)
(0.998451 0.000593315 0)
(0.998372 0.000477815 0)
(0.998283 0.000560955 0)
(1.00024 0.000686974 0)
(1.00471 0.00334367 0)
(1.00452 0.00305321 0)
(1.00427 0.00276631 0)
(1.004 0.00255037 0)
(1.00371 0.00241705 0)
(1.00341 0.00235311 0)
(1.00308 0.00233899 0)
(1.00275 0.00235495 0)
(1.0024 0.00238251 0)
(1.00204 0.00240529 0)
(1.00167 0.00240733 0)
(1.00129 0.00237901 0)
(1.00089 0.00230619 0)
(1.00047 0.00217933 0)
(1.00005 0.00200332 0)
(0.999642 0.00178084 0)
(0.999277 0.00152277 0)
(0.998962 0.00124851 0)
(0.9987 0.000980195 0)
(0.998514 0.000737553 0)
(0.998388 0.000538623 0)
(0.998317 0.000416556 0)
(0.998229 0.000499663 0)
(1.00022 0.000629316 0)
(1.00473 0.00352077 0)
(1.00453 0.00322777 0)
(1.00427 0.00293608 0)
(1.00399 0.00271417 0)
(1.00369 0.00257446 0)
(1.00338 0.00250381 0)
(1.00305 0.00248278 0)
(1.00271 0.00249106 0)
(1.00235 0.00251015 0)
(1.00199 0.00252255 0)
(1.00161 0.0025129 0)
(1.00121 0.00247055 0)
(1.00081 0.00238099 0)
(1.00038 0.0022358 0)
(0.999959 0.00204031 0)
(0.999555 0.00179771 0)
(0.999192 0.00151984 0)
(0.998881 0.0012276 0)
(0.998625 0.000944288 0)
(0.998445 0.0006904 0)
(0.998325 0.000482925 0)
(0.998261 0.00035474 0)
(0.998178 0.00043811 0)
(1.00019 0.000573257 0)
(1.00475 0.00370012 0)
(1.00454 0.00340458 0)
(1.00427 0.00310804 0)
(1.00398 0.00288001 0)
(1.00368 0.00273349 0)
(1.00335 0.0026559 0)
(1.00301 0.00262765 0)
(1.00266 0.00262808 0)
(1.0023 0.00263837 0)
(1.00192 0.00264026 0)
(1.00154 0.00261866 0)
(1.00114 0.00256198 0)
(1.00072 0.00245555 0)
(1.00029 0.00229195 0)
(0.999869 0.00207684 0)
(0.999465 0.00181401 0)
(0.999105 0.00151622 0)
(0.998799 0.00120574 0)
(0.998549 0.000907206 0)
(0.998375 0.000641775 0)
(0.998262 0.000425368 0)
(0.998206 0.000290266 0)
(0.998124 0.00037391 0)
(1.00017 0.000512167 0)
(1.00476 0.00388169 0)
(1.00454 0.00358367 0)
(1.00427 0.00328229 0)
(1.00397 0.00304792 0)
(1.00366 0.00289442 0)
(1.00332 0.00280963 0)
(1.00297 0.00277372 0)
(1.00261 0.00276602 0)
(1.00224 0.0027672 0)
(1.00186 0.00275824 0)
(1.00146 0.00272447 0)
(1.00106 0.00265316 0)
(1.00064 0.0025294 0)
(1.00021 0.00234701 0)
(0.999778 0.00211197 0)
(0.999374 0.00182864 0)
(0.999018 0.00151091 0)
(0.998718 0.00118241 0)
(0.998474 0.000868676 0)
(0.998306 0.000592197 0)
(0.9982 0.000367389 0)
(0.998151 0.000226039 0)
(0.998073 0.000310177 0)
(1.00015 0.000453756 0)
(1.00477 0.00406556 0)
(1.00455 0.00376509 0)
(1.00426 0.0034588 0)
(1.00396 0.0032179 0)
(1.00364 0.00305721 0)
(1.00329 0.00296484 0)
(1.00293 0.00292112 0)
(1.00256 0.00290497 0)
(1.00218 0.00289674 0)
(1.00179 0.00287671 0)
(1.00139 0.00283033 0)
(1.00098 0.0027442 0)
(1.00055 0.00260295 0)
(1.00011 0.00240158 0)
(0.999684 0.00214639 0)
(0.999282 0.00184244 0)
(0.998929 0.00150465 0)
(0.998635 0.00115806 0)
(0.998398 0.0008289 0)
(0.998237 0.000541126 0)
(0.998137 0.000307542 0)
(0.998097 0.000159164 0)
(0.998019 0.000243747 0)
(1.00013 0.000390139 0)
(1.00478 0.00425165 0)
(1.00455 0.00394881 0)
(1.00426 0.00363757 0)
(1.00395 0.00339011 0)
(1.00361 0.00322205 0)
(1.00326 0.00312183 0)
(1.00289 0.00306992 0)
(1.00251 0.00304497 0)
(1.00212 0.003027 0)
(1.00172 0.00299551 0)
(1.00131 0.0029363 0)
(1.00089 0.00283473 0)
(1.00046 0.0026753 0)
(1.00002 0.00245445 0)
(0.99959 0.00217886 0)
(0.999189 0.00185428 0)
(0.99884 0.00149651 0)
(0.998552 0.00113183 0)
(0.998323 0.000787723 0)
(0.998168 0.000488959 0)
(0.998075 0.000247132 0)
(0.998043 9.24213e-05 0)
(0.997969 0.000177683 0)
(1.0001 0.000328863 0)
(1.00479 0.00443996 0)
(1.00456 0.0041348 0)
(1.00425 0.00381858 0)
(1.00393 0.00356438 0)
(1.00358 0.00338857 0)
(1.00322 0.00328028 0)
(1.00284 0.00321983 0)
(1.00245 0.0031858 0)
(1.00206 0.00315773 0)
(1.00165 0.0031145 0)
(1.00123 0.00304201 0)
(1.00081 0.00292464 0)
(1.00036 0.00274696 0)
(0.999922 0.00250649 0)
(0.999493 0.00221034 0)
(0.999094 0.00186509 0)
(0.99875 0.0014873 0)
(0.998469 0.00110439 0)
(0.998247 0.000745219 0)
(0.998099 0.000435237 0)
(0.998013 0.000184837 0)
(0.997989 2.30669e-05 0)
(0.997916 0.000109059 0)
(1.00008 0.000262298 0)
(1.0048 0.00463039 0)
(1.00456 0.00432289 0)
(1.00424 0.00400169 0)
(1.00391 0.00374059 0)
(1.00356 0.00355693 0)
(1.00318 0.00344012 0)
(1.0028 0.00337079 0)
(1.0024 0.00332719 0)
(1.00199 0.00328864 0)
(1.00157 0.00323325 0)
(1.00115 0.00314701 0)
(1.00072 0.00301336 0)
(1.00027 0.00281702 0)
(0.999825 0.00255676 0)
(0.999395 0.00223994 0)
(0.998999 0.00187394 0)
(0.99866 0.00147629 0)
(0.998386 0.00107563 0)
(0.998172 0.00070161 0)
(0.998032 0.000381121 0)
(0.997951 0.000122905 0)
(0.997935 -4.49986e-05 0)
(0.997866 4.18766e-05 0)
(1.00006 0.000199376 0)
(1.0048 0.00482287 0)
(1.00455 0.00451306 0)
(1.00423 0.00418661 0)
(1.00389 0.00391825 0)
(1.00352 0.00372636 0)
(1.00314 0.00360078 0)
(1.00275 0.00352243 0)
(1.00234 0.00346897 0)
(1.00192 0.00341957 0)
(1.00149 0.00335148 0)
(1.00106 0.003251 0)
(1.00063 0.00310084 0)
(1.00017 0.0028859 0)
(0.999725 0.00260591 0)
(0.999296 0.00226847 0)
(0.998902 0.00188182 0)
(0.998568 0.00146442 0)
(0.998302 0.00104611 0)
(0.998096 0.000657188 0)
(0.997963 0.000326042 0)
(0.99789 5.97397e-05 0)
(0.997882 -0.000114978 0)
(0.997813 -2.72395e-05 0)
(1.00004 0.000131702 0)
(1.0048 0.00501739 0)
(1.00455 0.00470495 0)
(1.00422 0.00437296 0)
(1.00386 0.00409715 0)
(1.00349 0.00389674 0)
(1.0031 0.00376227 0)
(1.00269 0.0036744 0)
(1.00228 0.00361078 0)
(1.00185 0.00354985 0)
(1.00142 0.00346863 0)
(1.00098 0.0033532 0)
(1.00053 0.00318579 0)
(1.00007 0.00295201 0)
(0.999624 0.00265226 0)
(0.999196 0.00229441 0)
(0.998805 0.0018876 0)
(0.998477 0.00145089 0)
(0.998218 0.00101527 0)
(0.998021 0.000612232 0)
(0.997896 0.00027101 0)
(0.997829 -2.54109e-06 0)
(0.997829 -0.000183106 0)
(0.997763 -9.43892e-05 0)
(1.00002 6.79358e-05 0)
(1.0048 0.00521429 0)
(1.00454 0.0048991 0)
(1.0042 0.00456105 0)
(1.00384 0.00427724 0)
(1.00346 0.0040679 0)
(1.00305 0.00392412 0)
(1.00264 0.00382654 0)
(1.00221 0.00375255 0)
(1.00177 0.00367975 0)
(1.00133 0.00358488 0)
(1.00089 0.00345394 0)
(1.00044 0.00326891 0)
(0.999973 0.00301617 0)
(0.999521 0.00269662 0)
(0.999094 0.00231846 0)
(0.998706 0.00189176 0)
(0.998385 0.00143599 0)
(0.998134 0.000983211 0)
(0.997946 0.00056628 0)
(0.997828 0.00021499 0)
(0.997768 -6.59067e-05 0)
(0.997777 -0.000252751 0)
(0.997711 -0.000162957 0)
(1 -2.60735e-07 0)
(1.0048 0.0054146 0)
(1.00453 0.0050964 0)
(1.00418 0.00475187 0)
(1.00381 0.00445948 0)
(1.00342 0.00424072 0)
(1.00301 0.004087 0)
(1.00258 0.00397882 0)
(1.00214 0.00389389 0)
(1.0017 0.00380846 0)
(1.00125 0.00369951 0)
(1.0008 0.00355237 0)
(1.00034 0.00334884 0)
(0.999871 0.0030769 0)
(0.999418 0.00273762 0)
(0.998992 0.0023393 0)
(0.998608 0.00189288 0)
(0.998293 0.00141854 0)
(0.998051 0.000949444 0)
(0.997871 0.000519255 0)
(0.997762 0.000159091 0)
(0.997708 -0.000127981 0)
(0.997725 -0.00031981 0)
(0.997661 -0.00022885 0)
(0.999976 -6.33438e-05 0)
(1.0048 0.00561823 0)
(1.00452 0.00529719 0)
(1.00416 0.00494623 0)
(1.00378 0.00464499 0)
(1.00338 0.00441606 0)
(1.00296 0.00425153 0)
(1.00252 0.00413216 0)
(1.00208 0.00403559 0)
(1.00162 0.003937 0)
(1.00116 0.00381345 0)
(1.0007 0.00364971 0)
(1.00024 0.00342746 0)
(0.999767 0.00313604 0)
(0.999312 0.00277673 0)
(0.998888 0.00235804 0)
(0.998509 0.00189188 0)
(0.9982 0.00139904 0)
(0.997967 0.000913818 0)
(0.997797 0.000470596 0)
(0.997695 0.000101623 0)
(0.997648 -0.000191564 0)
(0.997673 -0.000388575 0)
(0.99761 -0.000296249 0)
(0.999958 -0.000130849 0)
(1.00479 0.00582463 0)
(1.0045 0.00550148 0)
(1.00413 0.00514451 0)
(1.00374 0.00483448 0)
(1.00334 0.00459515 0)
(1.00291 0.00441898 0)
(1.00246 0.00428722 0)
(1.00201 0.0041777 0)
(1.00154 0.00406484 0)
(1.00107 0.003926 0)
(1.00061 0.00374507 0)
(1.00014 0.00350361 0)
(0.999662 0.00319233 0)
(0.999207 0.00281263 0)
(0.998785 0.00237345 0)
(0.99841 0.0018878 0)
(0.998108 0.0013768 0)
(0.997884 0.000875824 0)
(0.997723 0.00042059 0)
(0.997629 4.3629e-05 0)
(0.997588 -0.000254524 0)
(0.997621 -0.000455412 0)
(0.99756 -0.000361521 0)
(0.999935 -0.000193923 0)
(1.00478 0.00603332 0)
(1.00448 0.00570833 0)
(1.00411 0.00534614 0)
(1.00371 0.0050277 0)
(1.00329 0.00477754 0)
(1.00285 0.00458905 0)
(1.0024 0.00444404 0)
(1.00193 0.00432056 0)
(1.00146 0.00419268 0)
(1.00098 0.00403789 0)
(1.00051 0.00383949 0)
(1.00003 0.00357851 0)
(0.999554 0.00324695 0)
(0.999099 0.00284641 0)
(0.998679 0.00238642 0)
(0.99831 0.00188119 0)
(0.998016 0.00135202 0)
(0.997801 0.000835275 0)
(0.99765 0.00036822 0)
(0.997564 -1.67762e-05 0)
(0.997529 -0.000319837 0)
(0.997571 -0.000524624 0)
(0.997509 -0.00042872 0)
(0.999916 -0.00026194 0)
(1.00477 0.00624323 0)
(1.00446 0.0059174 0)
(1.00408 0.00555051 0)
(1.00367 0.00522369 0)
(1.00324 0.00496261 0)
(1.00279 0.0047614 0)
(1.00233 0.00460216 0)
(1.00185 0.00446356 0)
(1.00137 0.00431956 0)
(1.00089 0.00414814 0)
(1.00041 0.00393144 0)
(0.999927 0.00365018 0)
(0.999445 0.00329801 0)
(0.998991 0.00287653 0)
(0.998575 0.00239564 0)
(0.99821 0.00187079 0)
(0.997924 0.00132381 0)
(0.997719 0.000792148 0)
(0.997578 0.000313883 0)
(0.9975 -7.79353e-05 0)
(0.997471 -0.000384576 0)
(0.99752 -0.00059179 0)
(0.997459 -0.000493688 0)
(0.999893 -0.000325079 0)
(1.00475 0.00645537 0)
(1.00444 0.00612852 0)
(1.00404 0.00575679 0)
(1.00363 0.00542151 0)
(1.00319 0.00514931 0)
(1.00273 0.00493486 0)
(1.00226 0.00476092 0)
(1.00177 0.0046066 0)
(1.00128 0.00444591 0)
(1.00079 0.00425727 0)
(1.00031 0.00402185 0)
(0.999818 0.00372014 0)
(0.999334 0.00334703 0)
(0.998881 0.00290429 0)
(0.998468 0.00240224 0)
(0.99811 0.00185767 0)
(0.997832 0.00129286 0)
(0.997637 0.000746359 0)
(0.997506 0.000256963 0)
(0.997436 -0.000141886 0)
(0.997413 -0.00045213 0)
(0.99747 -0.000661744 0)
(0.997408 -0.000561021 0)
(0.999874 -0.000393605 0)
(1.00474 0.00666917 0)
(1.00442 0.00634143 0)
(1.00401 0.00596486 0)
(1.00358 0.00562101 0)
(1.00313 0.00533737 0)
(1.00267 0.00510949 0)
(1.00218 0.00492033 0)
(1.00169 0.00474964 0)
(1.00119 0.0045716 0)
(1.00069 0.0043649 0)
(1.0002 0.00411012 0)
(0.999708 0.00378751 0)
(0.999223 0.00339312 0)
(0.998771 0.00292882 0)
(0.998363 0.0024056 0)
(0.998011 0.00184166 0)
(0.997741 0.00125941 0)
(0.997556 0.000698419 0)
(0.997435 0.00019878 0)
(0.997373 -0.000206483 0)
(0.997356 -0.000519281 0)
(0.99742 -0.000730011 0)
(0.99736 -0.000626604 0)
(0.999851 -0.000458124 0)
(1.00472 0.00688512 0)
(1.00439 0.00655634 0)
(1.00397 0.00617466 0)
(1.00354 0.00582185 0)
(1.00308 0.00552648 0)
(1.0026 0.00528487 0)
(1.00211 0.00508027 0)
(1.0016 0.00489298 0)
(1.00109 0.00469714 0)
(1.00059 0.00447201 0)
(1.00009 0.00419756 0)
(0.999595 0.00385382 0)
(0.999109 0.00343785 0)
(0.998659 0.00295171 0)
(0.998256 0.00240711 0)
(0.997911 0.00182376 0)
(0.99765 0.00122403 0)
(0.997475 0.000648379 0)
(0.997365 0.000138454 0)
(0.997311 -0.000273674 0)
(0.9973 -0.000589223 0)
(0.997372 -0.000801051 0)
(0.997309 -0.000694507 0)
(0.999832 -0.000528277 0)
(1.0047 0.00710271 0)
(1.00436 0.00677292 0)
(1.00394 0.00638603 0)
(1.00349 0.00602408 0)
(1.00302 0.00571677 0)
(1.00253 0.00546102 0)
(1.00203 0.0052407 0)
(1.00151 0.00503615 0)
(1.00099 0.00482201 0)
(1.00048 0.0045779 0)
(0.99998 0.00428302 0)
(0.999481 0.00391776 0)
(0.998994 0.00348007 0)
(0.998547 0.00297214 0)
(0.998149 0.00240623 0)
(0.997812 0.00180346 0)
(0.997559 0.00118659 0)
(0.997395 0.000597066 0)
(0.997296 7.72811e-05 0)
(0.99725 -0.000340646 0)
(0.997244 -0.000657787 0)
(0.997323 -0.000869535 0)
(0.99726 -0.000759992 0)
(0.999808 -0.000593366 0)
(1.00468 0.00732218 0)
(1.00434 0.00699131 0)
(1.0039 0.00659897 0)
(1.00344 0.00622755 0)
(1.00295 0.00590774 0)
(1.00245 0.00563742 0)
(1.00194 0.00540111 0)
(1.00142 0.00517907 0)
(1.00089 0.00494647 0)
(1.00037 0.00468307 0)
(0.999867 0.00436757 0)
(0.999364 0.00398068 0)
(0.998878 0.00352103 0)
(0.998433 0.00299112 0)
(0.998041 0.0024037 0)
(0.997712 0.00178141 0)
(0.997469 0.00114729 0)
(0.997316 0.000543808 0)
(0.997227 1.40615e-05 0)
(0.99719 -0.000410169 0)
(0.99719 -0.000729067 0)
(0.997276 -0.000940631 0)
(0.99721 -0.000827653 0)
(0.999789 -0.000663932 0)
(1.00466 0.00754312 0)
(1.0043 0.00721126 0)
(1.00385 0.00681342 0)
(1.00338 0.00643225 0)
(1.00289 0.00609962 0)
(1.00238 0.00581439 0)
(1.00185 0.00556169 0)
(1.00132 0.00532138 0)
(1.00079 0.00506975 0)
(1.00026 0.00478666 0)
(0.999751 0.00444971 0)
(0.999246 0.00404097 0)
(0.998761 0.00355927 0)
(0.99832 0.00300727 0)
(0.997934 0.00239848 0)
(0.997613 0.00175717 0)
(0.99738 0.00110631 0)
(0.997238 0.000489215 0)
(0.99716 -4.95731e-05 0)
(0.99713 -0.000479478 0)
(0.997136 -0.000799157 0)
(0.997229 -0.00100945 0)
(0.997162 -0.000893212 0)
(0.999765 -0.00073008 0)
(1.00463 0.00776575 0)
(1.00427 0.00743287 0)
(1.00381 0.00702934 0)
(1.00332 0.00663804 0)
(1.00282 0.00629211 0)
(1.0023 0.00599151 0)
(1.00176 0.00572206 0)
(1.00122 0.00546332 0)
(1.00068 0.00519254 0)
(1.00015 0.00488952 0)
(0.999633 0.00453099 0)
(0.999126 0.00410014 0)
(0.998642 0.00359609 0)
(0.998205 0.00302175 0)
(0.997826 0.00239144 0)
(0.997513 0.00173107 0)
(0.997291 0.00106338 0)
(0.99716 0.000432448 0)
(0.997093 -0.00011546 0)
(0.997072 -0.000551621 0)
(0.997083 -0.000872312 0)
(0.997183 -0.00108113 0)
(0.997111 -0.000961028 0)
(0.999745 -0.000801852 0)
(1.0046 0.00798963 0)
(1.00423 0.00765584 0)
(1.00376 0.00724658 0)
(1.00326 0.00684499 0)
(1.00275 0.0064855 0)
(1.00222 0.00616923 0)
(1.00167 0.0058825 0)
(1.00112 0.0056047 0)
(1.00057 0.0053142 0)
(1.00003 0.00499084 0)
(0.999514 0.00461035 0)
(0.999005 0.00415692 0)
(0.998522 0.00363034 0)
(0.99809 0.00303375 0)
(0.997719 0.00238206 0)
(0.997415 0.00170269 0)
(0.997203 0.00101853 0)
(0.997084 0.000374586 0)
(0.997027 -0.000181965 0)
(0.997014 -0.00062331 0)
(0.99703 -0.000943871 0)
(0.997137 -0.00115012 0)
(0.997063 -0.00102633 0)
(0.99972 -0.000868321 0)
(1.00457 0.00821502 0)
(1.00419 0.00788031 0)
(1.00371 0.00746519 0)
(1.0032 0.00705302 0)
(1.00268 0.00667946 0)
(1.00213 0.00634698 0)
(1.00157 0.00604267 0)
(1.00101 0.00574576 0)
(1.00046 0.00543546 0)
(0.999917 0.00509163 0)
(0.999391 0.00468897 0)
(0.998881 0.00421274 0)
(0.998401 0.00366327 0)
(0.997974 0.00304417 0)
(0.99761 0.0023708 0)
(0.997317 0.0016722 0)
(0.997115 0.000971298 0)
(0.997007 0.000314096 0)
(0.996962 -0.000251312 0)
(0.996957 -0.000698461 0)
(0.996979 -0.00101905 0)
(0.997092 -0.00122251 0)
(0.997013 -0.00109434 0)
(0.999699 -0.000940586 0)
(1.00454 0.00844151 0)
(1.00415 0.00810606 0)
(1.00366 0.00768513 0)
(1.00314 0.0072622 0)
(1.0026 0.00687438 0)
(1.00204 0.00652543 0)
(1.00148 0.00620303 0)
(1.00091 0.00588644 0)
(1.00034 0.00555594 0)
(0.999797 0.00519106 0)
(0.999268 0.00476548 0)
(0.998758 0.00426605 0)
(0.99828 0.00369337 0)
(0.997858 0.00305152 0)
(0.997503 0.00235657 0)
(0.997219 0.00163919 0)
(0.997028 0.000921993 0)
(0.996933 0.000251781 0)
(0.996898 -0.000321684 0)
(0.996901 -0.000774024 0)
(0.996928 -0.00109359 0)
(0.997047 -0.00129333 0)
(0.996965 -0.00116091 0)
(0.999673 -0.00100879 0)
(1.0045 0.0086694 0)
(1.00411 0.00833325 0)
(1.0036 0.00790641 0)
(1.00307 0.00747246 0)
(1.00252 0.00706996 0)
(1.00195 0.00670409 0)
(1.00137 0.0063634 0)
(1.00079 0.0060271 0)
(1.00022 0.00567624 0)
(0.999674 0.00528999 0)
(0.999142 0.0048413 0)
(0.998631 0.00431824 0)
(0.998157 0.00372188 0)
(0.997741 0.00305688 0)
(0.997395 0.00234 0)
(0.997121 0.00160358 0)
(0.996941 0.000869773 0)
(0.996858 0.000186081 0)
(0.996835 -0.000395732 0)
(0.996846 -0.000853906 0)
(0.996879 -0.00117254 0)
(0.997003 -0.00136829 0)
(0.996915 -0.00123069 0)
(0.999652 -0.00108317 0)
(1.00447 0.00889821 0)
(1.00406 0.00856153 0)
(1.00354 0.00812885 0)
(1.003 0.00768384 0)
(1.00244 0.0072666 0)
(1.00186 0.00688352 0)
(1.00127 0.00652409 0)
(1.00068 0.00616778 0)
(1.00011 0.00579596 0)
(0.99955 0.00538782 0)
(0.999015 0.00491544 0)
(0.998504 0.00436808 0)
(0.998034 0.00374764 0)
(0.997625 0.00305947 0)
(0.997287 0.00232071 0)
(0.997024 0.00156521 0)
(0.996856 0.000815044 0)
(0.996785 0.000118617 0)
(0.996772 -0.000471147 0)
(0.996792 -0.000933941 0)
(0.99683 -0.0012503 0)
(0.996959 -0.00144109 0)
(0.996867 -0.00129843 0)
(0.999625 -0.00115227 0)
(1.00443 0.00912823 0)
(1.00401 0.00879105 0)
(1.00348 0.00835248 0)
(1.00293 0.00789625 0)
(1.00235 0.00746377 0)
(1.00176 0.007063 0)
(1.00116 0.00668468 0)
(1.00057 0.00630822 0)
(0.999983 0.00591533 0)
(0.999423 0.00548503 0)
(0.998885 0.00498876 0)
(0.998375 0.00441684 0)
(0.997909 0.00377189 0)
(0.997507 0.00306018 0)
(0.997179 0.00229912 0)
(0.996927 0.00152415 0)
(0.99677 0.000757234 0)
(0.996712 4.77203e-05 0)
(0.996711 -0.000550223 0)
(0.996739 -0.00101812 0)
(0.996782 -0.00133222 0)
(0.996917 -0.00151763 0)
(0.996817 -0.0013689 0)
(0.999602 -0.00122685 0)
(1.00438 0.00935902 0)
(1.00396 0.00902155 0)
(1.00342 0.00857725 0)
(1.00285 0.00810971 0)
(1.00226 0.00766182 0)
(1.00166 0.0072432 0)
(1.00105 0.00684537 0)
(1.00045 0.00644829 0)
(0.99986 0.00603387 0)
(0.999296 0.00558053 0)
(0.998754 0.00505978 0)
(0.998245 0.00446298 0)
(0.997784 0.0037933 0)
(0.997389 0.00305779 0)
(0.997071 0.00227452 0)
(0.996831 0.00148059 0)
(0.996686 0.000697539 0)
(0.99664 -2.46822e-05 0)
(0.99665 -0.000629813 0)
(0.996686 -0.0011019 0)
(0.996734 -0.00141267 0)
(0.996874 -0.00159178 0)
(0.996769 -0.00143711 0)
(0.999573 -0.0012964 0)
(1.00434 0.00959087 0)
(1.00391 0.0092532 0)
(1.00335 0.0088031 0)
(1.00277 0.008324 0)
(1.00218 0.00786037 0)
(1.00156 0.00742342 0)
(1.00094 0.00700584 0)
(1.00033 0.00658797 0)
(0.999733 0.00615169 0)
(0.999164 0.00567499 0)
(0.99862 0.00512961 0)
(0.998113 0.00450766 0)
(0.997657 0.0038129 0)
(0.99727 0.00305327 0)
(0.996963 0.00224744 0)
(0.996735 0.00143437 0)
(0.996602 0.000635006 0)
(0.996569 -0.000100151 0)
(0.99659 -0.000712526 0)
(0.996635 -0.00118915 0)
(0.996688 -0.00149666 0)
(0.996833 -0.00166905 0)
(0.996719 -0.00150737 0)
(0.999549 -0.00137077 0)
(1.00429 0.00982327 0)
(1.00385 0.00948557 0)
(1.00328 0.00902979 0)
(1.00269 0.00853916 0)
(1.00208 0.00805973 0)
(1.00146 0.00760421 0)
(1.00083 0.00716611 0)
(1.00021 0.00672692 0)
(0.999606 0.00626802 0)
(0.999032 0.00576716 0)
(0.998486 0.00519686 0)
(0.997981 0.00454944 0)
(0.997531 0.00382953 0)
(0.997152 0.00304606 0)
(0.996856 0.00221799 0)
(0.99664 0.00138598 0)
(0.996519 0.000570916 0)
(0.996499 -0.000175952 0)
(0.996532 -0.000794749 0)
(0.996584 -0.00127443 0)
(0.996643 -0.00157743 0)
(0.996792 -0.00174229 0)
(0.996671 -0.00157383 0)
(0.999519 -0.0014383 0)
(1.00424 0.0100565 0)
(1.00379 0.00971882 0)
(1.00321 0.00925731 0)
(1.00261 0.008755 0)
(1.00199 0.00825928 0)
(1.00135 0.00778454 0)
(1.00071 0.00732567 0)
(1.00008 0.00686477 0)
(0.999475 0.00638312 0)
(0.998897 0.00585801 0)
(0.998349 0.00526268 0)
(0.997846 0.00458973 0)
(0.997402 0.0038445 0)
(0.997032 0.00303702 0)
(0.996748 0.00218647 0)
(0.996545 0.00133535 0)
(0.996436 0.000504467 0)
(0.996429 -0.000254034 0)
(0.996473 -0.000879104 0)
(0.996534 -0.00136199 0)
(0.996598 -0.00166048 0)
(0.996752 -0.00181754 0)
(0.996621 -0.00164136 0)
(0.999493 -0.00150957 0)
(1.00418 0.0102901 0)
(1.00373 0.00995264 0)
(1.00314 0.0094856 0)
(1.00252 0.00897152 0)
(1.00189 0.00845934 0)
(1.00125 0.00796518 0)
(1.0006 0.00748469 0)
(0.999956 0.00700132 0)
(0.999344 0.00649659 0)
(0.998762 0.00594632 0)
(0.998211 0.00532549 0)
(0.997711 0.00462705 0)
(0.997274 0.00385655 0)
(0.996913 0.00302517 0)
(0.996641 0.00215255 0)
(0.99645 0.00128322 0)
(0.996355 0.000437593 0)
(0.996361 -0.000331668 0)
(0.996416 -0.000961642 0)
(0.996485 -0.00144658 0)
(0.996554 -0.00173963 0)
(0.996711 -0.0018883 0)
(0.996573 -0.00170476 0)
(0.999462 -0.00157436 0)
(1.00413 0.0105244 0)
(1.00366 0.0101872 0)
(1.00306 0.00971459 0)
(1.00243 0.00918851 0)
(1.00179 0.00865951 0)
(1.00114 0.00814533 0)
(1.00048 0.00764291 0)
(0.999826 0.00713695 0)
(0.999209 0.00660879 0)
(0.998623 0.00603325 0)
(0.998071 0.00538679 0)
(0.997574 0.00466265 0)
(0.997144 0.00386671 0)
(0.996793 0.00301128 0)
(0.996533 0.0021165 0)
(0.996356 0.00122905 0)
(0.996273 0.000368814 0)
(0.996293 -0.000411141 0)
(0.99636 -0.00104582 0)
(0.996437 -0.00153286 0)
(0.996512 -0.00182056 0)
(0.996672 -0.00196068 0)
(0.996523 -0.00176889 0)
(0.999433 -0.00164257 0)
(1.00407 0.0107589 0)
(1.00359 0.0104222 0)
(1.00298 0.00994406 0)
(1.00234 0.00940602 0)
(1.00169 0.00886015 0)
(1.00102 0.00832579 0)
(1.00035 0.00780062 0)
(0.999697 0.00727123 0)
(0.999073 0.00671909 0)
(0.998483 0.0061179 0)
(0.997931 0.00544554 0)
(0.997437 0.00469539 0)
(0.997014 0.00387401 0)
(0.996674 0.00299507 0)
(0.996426 0.00207879 0)
(0.996263 0.00117377 0)
(0.996193 0.000299897 0)
(0.996226 -0.000489325 0)
(0.996304 -0.00112768 0)
(0.99639 -0.00161522 0)
(0.996469 -0.00189643 0)
(0.996633 -0.00202751 0)
(0.996474 -0.0018279 0)
(0.9994 -0.00170289 0)
(1.00401 0.010994 0)
(1.00352 0.0106577 0)
(1.0029 0.0101741 0)
(1.00225 0.00962392 0)
(1.00158 0.00906074 0)
(1.00091 0.00850549 0)
(1.00023 0.00795728 0)
(0.999564 0.0074041 0)
(0.998935 0.00682798 0)
(0.998341 0.00620114 0)
(0.997787 0.00550272 0)
(0.997298 0.00472644 0)
(0.996883 0.00387949 0)
(0.996553 0.00297704 0)
(0.996319 0.00203926 0)
(0.99617 0.00111671 0)
(0.996113 0.000229279 0)
(0.99616 -0.00056906 0)
(0.99625 -0.00121086 0)
(0.996343 -0.00169886 0)
(0.996428 -0.00197367 0)
(0.996595 -0.00209565 0)
(0.996424 -0.00188731 0)
(0.99937 -0.00176598 0)
(1.00394 0.0112293 0)
(1.00345 0.0108936 0)
(1.00282 0.0104046 0)
(1.00215 0.00984233 0)
(1.00148 0.00926169 0)
(1.00079 0.00868533 0)
(1.0001 0.00811333 0)
(0.999431 0.00753585 0)
(0.998796 0.00693519 0)
(0.998198 0.006282 0)
(0.997644 0.00555698 0)
(0.997159 0.00475453 0)
(0.996753 0.0038822 0)
(0.996434 0.0029565 0)
(0.996213 0.00199788 0)
(0.996078 0.00105898 0)
(0.996035 0.000159312 0)
(0.996095 -0.000647198 0)
(0.996196 -0.00129102 0)
(0.996297 -0.0017782 0)
(0.996387 -0.00204599 0)
(0.996556 -0.0021586 0)
(0.996375 -0.001942 0)
(0.999334 -0.00182207 0)
(1.00388 0.0114651 0)
(1.00338 0.0111301 0)
(1.00273 0.0106357 0)
(1.00205 0.0100611 0)
(1.00137 0.00946263 0)
(1.00067 0.00886453 0)
(0.999972 0.00826858 0)
(0.999294 0.00766668 0)
(0.998654 0.0070411 0)
(0.998052 0.00636142 0)
(0.997499 0.0056096 0)
(0.997018 0.00478066 0)
(0.996621 0.00388279 0)
(0.996313 0.00293384 0)
(0.996106 0.00195445 0)
(0.995986 0.000999419 0)
(0.995957 8.77337e-05 0)
(0.996031 -0.000726823 0)
(0.996143 -0.00137247 0)
(0.996252 -0.00185868 0)
(0.996347 -0.00211976 0)
(0.996519 -0.00222306 0)
(0.996325 -0.00199724 0)
(0.999301 -0.00188089 0)
(1.00381 0.011701 0)
(1.0033 0.0113668 0)
(1.00264 0.0108672 0)
(1.00195 0.0102803 0)
(1.00125 0.00966395 0)
(1.00055 0.00904414 0)
(0.999842 0.00842372 0)
(0.999157 0.00779643 0)
(0.998512 0.00714526 0)
(0.997906 0.00643864 0)
(0.997353 0.00565978 0)
(0.996877 0.00480405 0)
(0.996489 0.00388076 0)
(0.996194 0.00290929 0)
(0.996001 0.00191 0)
(0.995896 0.000939548 0)
(0.99588 1.69066e-05 0)
(0.995968 -0.000804196 0)
(0.996091 -0.00145059 0)
(0.996208 -0.0019343 0)
(0.996307 -0.00218782 0)
(0.996481 -0.0022815 0)
(0.996275 -0.00204687 0)
(0.999263 -0.00193145 0)
(1.00374 0.0119376 0)
(1.00322 0.0116041 0)
(1.00255 0.0110991 0)
(1.00185 0.0104998 0)
(1.00114 0.00986529 0)
(1.00042 0.00922318 0)
(0.999706 0.00857797 0)
(0.999016 0.00792507 0)
(0.998366 0.00724807 0)
(0.997757 0.00651442 0)
(0.997205 0.00570836 0)
(0.996735 0.00482572 0)
(0.996357 0.0038769 0)
(0.996073 0.00288299 0)
(0.995895 0.00186389 0)
(0.995805 0.00087808 0)
(0.995804 -5.54054e-05 0)
(0.995906 -0.000882851 0)
(0.99604 -0.00152976 0)
(0.996164 -0.00201087 0)
(0.996267 -0.00225689 0)
(0.996443 -0.0023409 0)
(0.996224 -0.00209651 0)
(0.999228 -0.00198384 0)
(1.00366 0.0121743 0)
(1.00313 0.0118418 0)
(1.00245 0.0113317 0)
(1.00174 0.01072 0)
(1.00102 0.0100672 0)
(1.00029 0.00940258 0)
(0.999571 0.00873214 0)
(0.998876 0.00805296 0)
(0.998221 0.00734906 0)
(0.997608 0.0065879 0)
(0.997056 0.00575432 0)
(0.996592 0.00484495 0)
(0.996224 0.00387091 0)
(0.995954 0.00285494 0)
(0.995791 0.00181674 0)
(0.995716 0.000816787 0)
(0.995729 -0.000126145 0)
(0.995845 -0.000958912 0)
(0.99599 -0.00160493 0)
(0.996121 -0.00208229 0)
(0.996228 -0.00232012 0)
(0.996406 -0.00239417 0)
(0.996174 -0.00214043 0)
(0.999188 -0.00202858 0)
(1.00359 0.0124118 0)
(1.00305 0.0120802 0)
(1.00236 0.0115649 0)
(1.00163 0.0109406 0)
(1.0009 0.0102692 0)
(1.00016 0.00958162 0)
(0.999431 0.00888577 0)
(0.99873 0.00818022 0)
(0.998071 0.00744908 0)
(0.997456 0.00666016 0)
(0.996906 0.00579883 0)
(0.996448 0.00486248 0)
(0.996091 0.00386312 0)
(0.995834 0.00282508 0)
(0.995686 0.00176778 0)
(0.995628 0.00075383 0)
(0.995654 -0.000198346 0)
(0.995784 -0.00103629 0)
(0.99594 -0.00168119 0)
(0.996079 -0.0021546 0)
(0.99619 -0.00238426 0)
(0.996369 -0.00244833 0)
(0.996122 -0.00218427 0)
(0.999149 -0.00207488 0)
(1.00351 0.0126497 0)
(1.00296 0.012319 0)
(1.00226 0.0117986 0)
(1.00152 0.0111619 0)
(1.00078 0.010472 0)
(1.00003 0.00976133 0)
(0.999292 0.00903971 0)
(0.998586 0.00830743 0)
(0.997922 0.0075476 0)
(0.997304 0.00673028 0)
(0.996755 0.00584117 0)
(0.996304 0.00487775 0)
(0.995958 0.00385331 0)
(0.995715 0.00279401 0)
(0.995583 0.00171854 0)
(0.995541 0.000691282 0)
(0.995581 -0.000269087 0)
(0.995725 -0.00111073 0)
(0.995892 -0.00175341 0)
(0.996037 -0.00222139 0)
(0.996152 -0.00244188 0)
(0.996331 -0.00249556 0)
(0.996072 -0.00222158 0)
(0.999106 -0.00211226 0)
(1.00342 0.0128885 0)
(1.00287 0.0125587 0)
(1.00215 0.0120331 0)
(1.00141 0.0113838 0)
(1.00065 0.0106751 0)
(0.999895 0.0099407 0)
(0.999147 0.00919317 0)
(0.998436 0.00843386 0)
(0.997768 0.00764528 0)
(0.997148 0.00679934 0)
(0.996602 0.00588218 0)
(0.996159 0.00489158 0)
(0.995825 0.00384196 0)
(0.995596 0.00276142 0)
(0.995479 0.00166778 0)
(0.995454 0.000627167 0)
(0.995509 -0.000341354 0)
(0.995666 -0.00118655 0)
(0.995844 -0.00182675 0)
(0.995996 -0.00228905 0)
(0.996114 -0.00250025 0)
(0.996294 -0.00254347 0)
(0.996019 -0.00225855 0)
(0.999064 -0.0021505 0)
(1.00334 0.013128 0)
(1.00278 0.0127992 0)
(1.00205 0.0122686 0)
(1.00129 0.0116067 0)
(1.00052 0.010879 0)
(0.999757 0.0101209 0)
(0.999004 0.00934698 0)
(0.998287 0.00855998 0)
(0.997615 0.00774208 0)
(0.996993 0.00686701 0)
(0.996449 0.00592137 0)
(0.996013 0.00490373 0)
(0.995692 0.00382932 0)
(0.995477 0.00272788 0)
(0.995377 0.0016167 0)
(0.995368 0.000563861 0)
(0.995437 -0.000411443 0)
(0.995608 -0.00125923 0)
(0.995796 -0.00189558 0)
(0.995955 -0.00235104 0)
(0.996076 -0.00255231 0)
(0.996256 -0.00258477 0)
(0.995968 -0.00228931 0)
(0.999018 -0.0021808 0)
(1.00325 0.0133688 0)
(1.00268 0.0130408 0)
(1.00194 0.0125051 0)
(1.00117 0.0118305 0)
(1.00039 0.0110835 0)
(0.999616 0.0103011 0)
(0.998854 0.00950042 0)
(0.998133 0.0086858 0)
(0.997457 0.00783843 0)
(0.996834 0.00693391 0)
(0.996294 0.00595944 0)
(0.995866 0.00491444 0)
(0.995558 0.00381508 0)
(0.995358 0.00269268 0)
(0.995275 0.00156389 0)
(0.995282 0.000498852 0)
(0.995366 -0.000483053 0)
(0.995551 -0.00133334 0)
(0.99575 -0.00196571 0)
(0.995914 -0.00241408 0)
(0.996038 -0.00260535 0)
(0.996219 -0.00262699 0)
(0.995914 -0.00231997 0)
(0.998973 -0.00221195 0)
(1.00316 0.0136106 0)
(1.00258 0.0132834 0)
(1.00183 0.0127426 0)
(1.00105 0.0120553 0)
(1.00026 0.011289 0)
(0.999473 0.0104823 0)
(0.998705 0.00965475 0)
(0.99798 0.00881195 0)
(0.9973 0.00793402 0)
(0.996675 0.00699945 0)
(0.996138 0.00599607 0)
(0.995719 0.00492356 0)
(0.995424 0.0037995 0)
(0.99524 0.00265699 0)
(0.995173 0.00151155 0)
(0.995198 0.000434973 0)
(0.995296 -0.000552491 0)
(0.995495 -0.00140389 0)
(0.995704 -0.00203126 0)
(0.995874 -0.00247127 0)
(0.996 -0.00265171 0)
(0.99618 -0.00266215 0)
(0.995862 -0.00234392 0)
(0.998924 -0.00223433 0)
(1.00307 0.013854 0)
(1.00248 0.0135274 0)
(1.00172 0.0129813 0)
(1.00093 0.0122812 0)
(1.00012 0.0114952 0)
(0.999326 0.0106638 0)
(0.998551 0.00980911 0)
(0.997821 0.00893773 0)
(0.997137 0.00802922 0)
(0.996512 0.00706426 0)
(0.99598 0.00603161 0)
(0.995571 0.00493143 0)
(0.995289 0.00378255 0)
(0.995122 0.00262001 0)
(0.995072 0.00145794 0)
(0.995114 0.000369744 0)
(0.995227 -0.000623229 0)
(0.995439 -0.00147563 0)
(0.995658 -0.00209789 0)
(0.995834 -0.00252938 0)
(0.995963 -0.00269891 0)
(0.996142 -0.00269812 0)
(0.995807 -0.00236768 0)
(0.998876 -0.0022571 0)
(1.00297 0.0140988 0)
(1.00237 0.0137727 0)
(1.0016 0.0132215 0)
(1.0008 0.0125085 0)
(0.999984 0.0117028 0)
(0.999177 0.0108467 0)
(0.998397 0.00996412 0)
(0.997662 0.00906339 0)
(0.996975 0.00812388 0)
(0.99635 0.00712818 0)
(0.995822 0.00606587 0)
(0.995422 0.0049383 0)
(0.995155 0.0037651 0)
(0.995004 0.00258301 0)
(0.994972 0.00140507 0)
(0.995031 0.000306416 0)
(0.995159 -0.000690676 0)
(0.995384 -0.00154316 0)
(0.995613 -0.00215907 0)
(0.995794 -0.0025811 0)
(0.995925 -0.00273929 0)
(0.996104 -0.00272711 0)
(0.995753 -0.00238494 0)
(0.998824 -0.00227208 0)
(1.00287 0.0143457 0)
(1.00227 0.0140199 0)
(1.00148 0.0134633 0)
(1.00067 0.0127372 0)
(0.999841 0.0119115 0)
(0.999024 0.0110299 0)
(0.998237 0.0101191 0)
(0.997498 0.00918882 0)
(0.996808 0.00821808 0)
(0.996183 0.00719133 0)
(0.995661 0.00609906 0)
(0.995272 0.00494386 0)
(0.99502 0.00374626 0)
(0.994886 0.00254468 0)
(0.994871 0.00135094 0)
(0.994949 0.000241999 0)
(0.995091 -0.000758996 0)
(0.99533 -0.00161151 0)
(0.995569 -0.00222097 0)
(0.995755 -0.00263342 0)
(0.995887 -0.00278029 0)
(0.996064 -0.00275676 0)
(0.995697 -0.00240195 0)
(0.998772 -0.00228729 0)
(1.00277 0.0145943 0)
(1.00215 0.0142687 0)
(1.00136 0.0137067 0)
(1.00053 0.0129675 0)
(0.999693 0.0121215 0)
(0.998868 0.0112148 0)
(0.998076 0.0102754 0)
(0.997333 0.0093143 0)
(0.99664 0.00831158 0)
(0.996016 0.00725344 0)
(0.995499 0.00613125 0)
(0.995121 0.00494842 0)
(0.994885 0.0037268 0)
(0.994768 0.00250678 0)
(0.994772 0.00129845 0)
(0.994867 0.000180095 0)
(0.995024 -0.000823712 0)
(0.995276 -0.00167494 0)
(0.995525 -0.00227696 0)
(0.995715 -0.00267873 0)
(0.995849 -0.00281359 0)
(0.996025 -0.00277845 0)
(0.995642 -0.00241151 0)
(0.998716 -0.00229355 0)
(1.00267 0.0148454 0)
(1.00204 0.0145196 0)
(1.00123 0.0139519 0)
(1.00039 0.0131993 0)
(0.999543 0.0123328 0)
(0.998708 0.0114003 0)
(0.997909 0.0104318 0)
(0.997162 0.00943937 0)
(0.996466 0.00840444 0)
(0.995844 0.00731456 0)
(0.995334 0.00616219 0)
(0.994968 0.00495164 0)
(0.994749 0.00370594 0)
(0.99465 0.00246766 0)
(0.994672 0.00124501 0)
(0.994785 0.000117423 0)
(0.994957 -0.000888976 0)
(0.995222 -0.00173879 0)
(0.995481 -0.00233323 0)
(0.995676 -0.00272423 0)
(0.99581 -0.00284699 0)
(0.995984 -0.00280023 0)
(0.995585 -0.00242036 0)
(0.99866 -0.00229921 0)
(1.00256 0.0150989 0)
(1.00192 0.0147727 0)
(1.0011 0.0141992 0)
(1.00024 0.0134331 0)
(0.999387 0.0125459 0)
(0.998544 0.0115878 0)
(0.997741 0.0105895 0)
(0.99699 0.00956425 0)
(0.996292 0.00849654 0)
(0.995672 0.00737476 0)
(0.995169 0.00619189 0)
(0.994815 0.00495399 0)
(0.994613 0.00368494 0)
(0.994533 0.00242906 0)
(0.994572 0.00119306 0)
(0.994704 5.77095e-05 0)
(0.994891 -0.000949604 0)
(0.995169 -0.00179702 0)
(0.995437 -0.00238257 0)
(0.995636 -0.00276205 0)
(0.995771 -0.00287246 0)
(0.995944 -0.00281402 0)
(0.995528 -0.00242187 0)
(0.9986 -0.00229678 0)
(1.00245 0.0153556 0)
(1.0018 0.0150285 0)
(1.00096 0.0144488 0)
(1.0001 0.0136688 0)
(0.999229 0.0127607 0)
(0.998375 0.0117759 0)
(0.997565 0.0107472 0)
(0.996811 0.00968888 0)
(0.996112 0.008588 0)
(0.995495 0.0074339 0)
(0.995 0.00622019 0)
(0.99466 0.00495462 0)
(0.994476 0.00366211 0)
(0.994414 0.00238872 0)
(0.994473 0.00113962 0)
(0.994623 -3.03926e-06 0)
(0.994825 -0.00101069 0)
(0.995116 -0.00185548 0)
(0.995393 -0.00243182 0)
(0.995596 -0.00279978 0)
(0.995731 -0.00289785 0)
(0.995902 -0.00282772 0)
(0.995469 -0.00242258 0)
(0.99854 -0.00229346 0)
(1.00233 0.0156152 0)
(1.00167 0.0152869 0)
(1.00082 0.0147008 0)
(0.999946 0.0139068 0)
(0.999065 0.0129772 0)
(0.998203 0.011966 0)
(0.997389 0.0109062 0)
(0.996632 0.00981339 0)
(0.995932 0.00867834 0)
(0.995318 0.0074915 0)
(0.994832 0.00624701 0)
(0.994505 0.00495375 0)
(0.994339 0.0036382 0)
(0.994297 0.00234846 0)
(0.994374 0.0010877 0)
(0.994543 -6.11417e-05 0)
(0.994759 -0.00106771 0)
(0.995063 -0.00190831 0)
(0.995349 -0.0024741 0)
(0.995556 -0.0028296 0)
(0.995691 -0.00291477 0)
(0.995859 -0.00283265 0)
(0.995411 -0.00241512 0)
(0.998477 -0.00228086 0)
(1.00221 0.0158784 0)
(1.00154 0.0155484 0)
(1.00068 0.0149554 0)
(0.999792 0.014147 0)
(0.9989 0.0131956 0)
(0.998028 0.0121569 0)
(0.997206 0.0110654 0)
(0.996446 0.00993753 0)
(0.995746 0.00876781 0)
(0.995137 0.00754753 0)
(0.99466 0.00627169 0)
(0.994348 0.00495042 0)
(0.994202 0.0036116 0)
(0.994179 0.00230562 0)
(0.994276 0.00103349 0)
(0.994464 -0.000121152 0)
(0.994695 -0.0011261 0)
(0.995011 -0.00196209 0)
(0.995306 -0.00251682 0)
(0.995516 -0.00285961 0)
(0.99565 -0.00293157 0)
(0.995815 -0.00283724 0)
(0.99535 -0.00240649 0)
(0.998413 -0.00226651 0)
(1.00209 0.016145 0)
(1.00141 0.015813 0)
(1.00054 0.015213 0)
(0.999633 0.01439 0)
(0.998728 0.0134164 0)
(0.997849 0.0123501 0)
(0.997022 0.0112262 0)
(0.99626 0.0100624 0)
(0.99556 0.00885699 0)
(0.994955 0.00760251 0)
(0.994489 0.00629457 0)
(0.994192 0.00494545 0)
(0.994065 0.00358391 0)
(0.994062 0.00226223 0)
(0.994178 0.000979656 0)
(0.994385 -0.000179238 0)
(0.99463 -0.00118073 0)
(0.994959 -0.00201089 0)
(0.995263 -0.00255304 0)
(0.995475 -0.00288196 0)
(0.995608 -0.0029402 0)
(0.995771 -0.00283348 0)
(0.99529 -0.00238994 0)
(0.998346 -0.00224369 0)
(1.00197 0.0164158 0)
(1.00127 0.0160813 0)
(1.00039 0.0154737 0)
(0.999471 0.0146357 0)
(0.998555 0.0136395 0)
(0.997665 0.0125444 0)
(0.996831 0.0113877 0)
(0.996066 0.0101876 0)
(0.995368 0.00894581 0)
(0.99477 0.00765614 0)
(0.994314 0.00631527 0)
(0.994033 0.00493763 0)
(0.993927 0.00355296 0)
(0.993946 0.00221534 0)
(0.994081 0.000922313 0)
(0.994307 -0.000240551 0)
(0.994567 -0.00123795 0)
(0.994908 -0.00206176 0)
(0.995219 -0.00259072 0)
(0.995434 -0.00290518 0)
(0.995566 -0.0029491 0)
(0.995726 -0.00282969 0)
(0.995228 -0.00237238 0)
(0.998278 -0.00221898 0)
(1.00184 0.0166902 0)
(1.00113 0.0163528 0)
(1.00023 0.0157377 0)
(0.999301 0.0148846 0)
(0.998373 0.0138652 0)
(0.997476 0.0127414 0)
(0.996637 0.0115512 0)
(0.99587 0.0103135 0)
(0.995175 0.00903388 0)
(0.994582 0.00770797 0)
(0.994138 0.00633379 0)
(0.993875 0.00492741 0)
(0.99379 0.00351982 0)
(0.993829 0.00216715 0)
(0.993984 0.000864874 0)
(0.994229 -0.000301037 0)
(0.994504 -0.00129298 0)
(0.994857 -0.00210878 0)
(0.995176 -0.00262298 0)
(0.995393 -0.00292151 0)
(0.995524 -0.00295006 0)
(0.99568 -0.00281733 0)
(0.995167 -0.00234644 0)
(0.998207 -0.00218487 0)
(1.0017 0.0169686 0)
(1.00098 0.0166281 0)
(1.00007 0.016005 0)
(0.999126 0.0151365 0)
(0.998187 0.0140937 0)
(0.997279 0.0129401 0)
(0.996433 0.0117156 0)
(0.995665 0.0104396 0)
(0.994973 0.00912113 0)
(0.994389 0.0077578 0)
(0.993958 0.0063494 0)
(0.993713 0.00491367 0)
(0.99365 0.0034826 0)
(0.993712 0.00211456 0)
(0.993888 0.000802945 0)
(0.994152 -0.000366069 0)
(0.994441 -0.00135216 0)
(0.994805 -0.00215921 0)
(0.995133 -0.00265779 0)
(0.995351 -0.0029396 0)
(0.99548 -0.00295189 0)
(0.995633 -0.00280512 0)
(0.995102 -0.00231943 0)
(0.998135 -0.00214843 0)
(1.00156 0.0172505 0)
(1.00082 0.0169067 0)
(0.999899 0.0162759 0)
(0.99894 0.015392 0)
(0.997988 0.0143255 0)
(0.997073 0.0131418 0)
(0.996224 0.0118823 0)
(0.995455 0.0105671 0)
(0.994767 0.00920849 0)
(0.994192 0.00780666 0)
(0.993775 0.00636298 0)
(0.993549 0.00489787 0)
(0.99351 0.00344375 0)
(0.993595 0.00206054 0)
(0.99379 0.000740164 0)
(0.994075 -0.000430867 0)
(0.994378 -0.00140949 0)
(0.994754 -0.00220636 0)
(0.99509 -0.00268759 0)
(0.995309 -0.00295114 0)
(0.995436 -0.0029463 0)
(0.995585 -0.00278482 0)
(0.995039 -0.00228446 0)
(0.998061 -0.00210376 0)
(1.00141 0.0175357 0)
(1.00066 0.0171887 0)
(0.99972 0.0165501 0)
(0.998746 0.0156509 0)
(0.997783 0.0145605 0)
(0.996858 0.0133457 0)
(0.996002 0.0120505 0)
(0.995232 0.0106955 0)
(0.99455 0.00929587 0)
(0.993986 0.00785437 0)
(0.993585 0.00637445 0)
(0.99338 0.00487906 0)
(0.993366 0.0034012 0)
(0.993474 0.00200225 0)
(0.993692 0.000672745 0)
(0.993996 -0.000500479 0)
(0.994314 -0.0014712 0)
(0.994702 -0.00225712 0)
(0.995045 -0.00272015 0)
(0.995266 -0.00296465 0)
(0.99539 -0.00294181 0)
(0.995535 -0.00276483 0)
(0.994973 -0.00224865 0)
(0.997984 -0.00205697 0)
(1.00125 0.0178232 0)
(1.00049 0.0174732 0)
(0.99953 0.0168274 0)
(0.998541 0.0159133 0)
(0.997566 0.0147989 0)
(0.996634 0.0135532 0)
(0.995775 0.0122214 0)
(0.995005 0.0108256 0)
(0.994328 0.0093836 0)
(0.993775 0.00790137 0)
(0.993392 0.00638487 0)
(0.993208 0.00485892 0)
(0.993219 0.00335737 0)
(0.993353 0.00194336 0)
(0.993592 0.00060577 0)
(0.993917 -0.000569061 0)
(0.99425 -0.00153082 0)
(0.99465 -0.00230414 0)
(0.995001 -0.00274738 0)
(0.995222 -0.0029714 0)
(0.995343 -0.00292958 0)
(0.995485 -0.00273635 0)
(0.994908 -0.00220453 0)
(0.997906 -0.00200147 0)
(1.00109 0.0181124 0)
(1.00031 0.0177598 0)
(0.999338 0.0171073 0)
(0.998332 0.0161787 0)
(0.997344 0.0150407 0)
(0.996402 0.0137631 0)
(0.995536 0.0123939 0)
(0.994766 0.0109567 0)
(0.994097 0.0094716 0)
(0.993557 0.0079477 0)
(0.993192 0.00639382 0)
(0.993032 0.0048366 0)
(0.99307 0.00331062 0)
(0.993229 0.00188105 0)
(0.99349 0.000535195 0)
(0.993837 -0.000641501 0)
(0.994185 -0.0015941 0)
(0.994596 -0.00235408 0)
(0.994954 -0.00277679 0)
(0.995176 -0.00297976 0)
(0.995295 -0.00291822 0)
(0.995432 -0.00270799 0)
(0.994838 -0.00215952 0)
(0.997824 -0.00194376 0)
(1.00092 0.0184018 0)
(1.00013 0.0180474 0)
(0.999138 0.0173894 0)
(0.998116 0.0164472 0)
(0.997112 0.0152857 0)
(0.996162 0.0139766 0)
(0.995293 0.0125694 0)
(0.994524 0.0110899 0)
(0.993862 0.00956111 0)
(0.993335 0.00799511 0)
(0.99299 0.00640317 0)
(0.992854 0.00481485 0)
(0.99292 0.00326484 0)
(0.993105 0.00181989 0)
(0.993388 0.000466311 0)
(0.993756 -0.000711156 0)
(0.99412 -0.00165319 0)
(0.994542 -0.00239873 0)
(0.994908 -0.00279972 0)
(0.99513 -0.00298058 0)
(0.995245 -0.00289896 0)
(0.995379 -0.00267139 0)
(0.994771 -0.00210664 0)
(0.997741 -0.00187865 0)
(1.00076 0.0186903 0)
(0.999943 0.0183349 0)
(0.998935 0.0176723 0)
(0.997895 0.0167171 0)
(0.996876 0.0155328 0)
(0.995916 0.0141917 0)
(0.99504 0.0127464 0)
(0.994271 0.0112248 0)
(0.993618 0.00965219 0)
(0.993107 0.00804366 0)
(0.992783 0.00641312 0)
(0.992673 0.00479293 0)
(0.992767 0.00321824 0)
(0.992979 0.00175731 0)
(0.993286 0.000395635 0)
(0.993675 -0.000782857 0)
(0.994054 -0.00171411 0)
(0.994488 -0.00244468 0)
(0.994861 -0.00282364 0)
(0.995083 -0.00298223 0)
(0.995194 -0.00288025 0)
(0.995323 -0.00263498 0)
(0.994699 -0.00205322 0)
(0.997656 -0.00181198 0)
(1.00058 0.018976 0)
(0.999751 0.0186205 0)
(0.998724 0.0179543 0)
(0.997665 0.0169871 0)
(0.99663 0.0157805 0)
(0.995661 0.0144084 0)
(0.994782 0.0129251 0)
(0.994015 0.0113614 0)
(0.993371 0.00974495 0)
(0.992876 0.00809396 0)
(0.992573 0.00642528 0)
(0.99249 0.0047735 0)
(0.992613 0.00317448 0)
(0.992853 0.00169837 0)
(0.993183 0.000329718 0)
(0.993594 -0.00084913 0)
(0.993989 -0.00176889 0)
(0.994434 -0.00248354 0)
(0.994814 -0.00283978 0)
(0.995035 -0.00297559 0)
(0.995143 -0.00285304 0)
(0.995267 -0.00258991 0)
(0.994629 -0.00199184 0)
(0.997568 -0.00173801 0)
(1.00041 0.0192578 0)
(0.999557 0.0189029 0)
(0.99851 0.0182338 0)
(0.997429 0.0172552 0)
(0.996378 0.016027 0)
(0.995398 0.0146238 0)
(0.994512 0.0131029 0)
(0.993748 0.0114976 0)
(0.993115 0.00983779 0)
(0.992637 0.00814467 0)
(0.992358 0.00643809 0)
(0.992303 0.00475479 0)
(0.992457 0.00313129 0)
(0.992725 0.00163989 0)
(0.993079 0.00026434 0)
(0.993512 -0.000915319 0)
(0.993923 -0.00182379 0)
(0.994378 -0.00252223 0)
(0.994765 -0.00285579 0)
(0.994986 -0.00296913 0)
(0.995089 -0.00282593 0)
(0.995208 -0.00254483 0)
(0.994555 -0.00193007 0)
(0.997478 -0.00166288 0)
(1.00022 0.0195346 0)
(0.999354 0.0191809 0)
(0.998286 0.0185096 0)
(0.997184 0.0175201 0)
(0.996115 0.0162705 0)
(0.995126 0.0148373 0)
(0.994238 0.0132792 0)
(0.993477 0.0116326 0)
(0.992854 0.00993042 0)
(0.992395 0.00819632 0)
(0.99214 0.00645257 0)
(0.992114 0.00473912 0)
(0.992299 0.0030926 0)
(0.992596 0.00158687 0)
(0.992975 0.000205415 0)
(0.99343 -0.00097421 0)
(0.993856 -0.00187054 0)
(0.994323 -0.0025521 0)
(0.994717 -0.00286294 0)
(0.994936 -0.00295364 0)
(0.995035 -0.00279008 0)
(0.995149 -0.00249136 0)
(0.994483 -0.00186095 0)
(0.997387 -0.001582 0)
(1.00004 0.0198074 0)
(0.999149 0.0194549 0)
(0.998057 0.0187813 0)
(0.996933 0.0177806 0)
(0.995847 0.0165099 0)
(0.994846 0.0150462 0)
(0.993952 0.0134514 0)
(0.993194 0.0117646 0)
(0.992584 0.0100209 0)
(0.992145 0.00824666 0)
(0.991917 0.00646668 0)
(0.991921 0.00472373 0)
(0.992139 0.00305485 0)
(0.992466 0.00153521 0)
(0.992868 0.000148152 0)
(0.993347 -0.00103181 0)
(0.993789 -0.00191613 0)
(0.994267 -0.00258039 0)
(0.994666 -0.00286899 0)
(0.994884 -0.00293773 0)
(0.994978 -0.00275408 0)
(0.995087 -0.00243797 0)
(0.994406 -0.0017919 0)
(0.997293 -0.00150073 0)
(0.999842 0.0200765 0)
(0.998933 0.0197251 0)
(0.997819 0.0190487 0)
(0.996672 0.0180362 0)
(0.995568 0.0167438 0)
(0.994557 0.0152502 0)
(0.993662 0.013619 0)
(0.992908 0.0118924 0)
(0.992311 0.010108 0)
(0.991892 0.00829498 0)
(0.99169 0.00648087 0)
(0.991725 0.00471037 0)
(0.991976 0.003021 0)
(0.992333 0.00148951 0)
(0.992761 9.88283e-05 0)
(0.993263 -0.00108061 0)
(0.993721 -0.00195246 0)
(0.99421 -0.00259872 0)
(0.994615 -0.00286521 0)
(0.994831 -0.00291226 0)
(0.994921 -0.00270891 0)
(0.995025 -0.00237595 0)
(0.994331 -0.0017156 0)
(0.997197 -0.00141371 0)
(0.999643 0.0203429 0)
(0.998713 0.0199923 0)
(0.997576 0.019312 0)
(0.996406 0.0182866 0)
(0.995285 0.0169717 0)
(0.994262 0.0154472 0)
(0.993361 0.0137792 0)
(0.992612 0.0120131 0)
(0.992029 0.0101886 0)
(0.991632 0.00833796 0)
(0.991459 0.00649137 0)
(0.991526 0.00469508 0)
(0.991811 0.00298672 0)
(0.992199 0.00144476 0)
(0.992652 5.15991e-05 0)
(0.993176 -0.00112731 0)
(0.993651 -0.00198673 0)
(0.99415 -0.00261466 0)
(0.994562 -0.00285941 0)
(0.994776 -0.00288562 0)
(0.99486 -0.00266292 0)
(0.994959 -0.00231351 0)
(0.994251 -0.00163908 0)
(0.997098 -0.00132615 0)
(0.999435 0.0206071 0)
(0.998483 0.0202566 0)
(0.997323 0.0195715 0)
(0.996132 0.0185315 0)
(0.994991 0.0171927 0)
(0.993959 0.0156367 0)
(0.993058 0.0139317 0)
(0.992314 0.0121259 0)
(0.991744 0.0102623 0)
(0.991369 0.00837587 0)
(0.991225 0.00649885 0)
(0.991325 0.00467986 0)
(0.991644 0.00295569 0)
(0.992063 0.00140573 0)
(0.992541 1.22074e-05 0)
(0.993089 -0.00116456 0)
(0.99358 -0.00201036 0)
(0.99409 -0.00261943 0)
(0.994507 -0.00284265 0)
(0.994719 -0.00284811 0)
(0.994799 -0.00260682 0)
(0.994893 -0.00224189 0)
(0.994173 -0.00155506 0)
(0.996999 -0.00123334 0)
(0.999221 0.0208715 0)
(0.998249 0.0205202 0)
(0.997065 0.0198288 0)
(0.995852 0.0187719 0)
(0.994695 0.0174083 0)
(0.993651 0.0158185 0)
(0.992745 0.0140751 0)
(0.992006 0.0122294 0)
(0.991453 0.0103271 0)
(0.991102 0.00840597 0)
(0.990988 0.00650043 0)
(0.991122 0.00466076 0)
(0.991475 0.0029229 0)
(0.991926 0.00136681 0)
(0.992429 -2.55623e-05 0)
(0.992999 -0.00119971 0)
(0.993507 -0.00203144 0)
(0.994028 -0.00262116 0)
(0.99445 -0.00282307 0)
(0.99466 -0.00280854 0)
(0.994734 -0.00254912 0)
(0.994822 -0.00216925 0)
(0.994089 -0.00147043 0)
(0.996896 -0.0011399 0)
(0.998998 0.0211369 0)
(0.998004 0.0207841 0)
(0.996798 0.0200845 0)
(0.995564 0.0190089 0)
(0.994389 0.0176182 0)
(0.993337 0.0159937 0)
(0.99243 0.0142107 0)
(0.991698 0.0123245 0)
(0.99116 0.0103838 0)
(0.990833 0.00842942 0)
(0.99075 0.00649809 0)
(0.990917 0.00464073 0)
(0.991306 0.00289212 0)
(0.991788 0.001333 0)
(0.992316 -5.52934e-05 0)
(0.99291 -0.0012251 0)
(0.993435 -0.00204185 0)
(0.993966 -0.00261159 0)
(0.994393 -0.00279215 0)
(0.9946 -0.00275789 0)
(0.994669 -0.00248096 0)
(0.994752 -0.00208705 0)
(0.994008 -0.00137812 0)
(0.996792 -0.00104089 0)
(0.998768 0.0214044 0)
(0.997754 0.0210495 0)
(0.996527 0.0203402 0)
(0.995271 0.0192441 0)
(0.994081 0.0178244 0)
(0.993018 0.0161629 0)
(0.992107 0.0143387 0)
(0.991382 0.0124108 0)
(0.990862 0.0104315 0)
(0.99056 0.00844478 0)
(0.990508 0.00648942 0)
(0.990711 0.00461642 0)
(0.991135 0.00285898 0)
(0.991649 0.00129871 0)
(0.992202 -8.38379e-05 0)
(0.992818 -0.00124878 0)
(0.99336 -0.00205011 0)
(0.993901 -0.00259933 0)
(0.994333 -0.00275853 0)
(0.994537 -0.00270509 0)
(0.9946 -0.00241098 0)
(0.994678 -0.00200358 0)
(0.993921 -0.00128506 0)
(0.996685 -0.000941206 0)
(0.998528 0.0216736 0)
(0.997493 0.0213158 0)
(0.996245 0.0205958 0)
(0.994971 0.0194773 0)
(0.993765 0.0180266 0)
(0.992693 0.016327 0)
(0.991783 0.0144603 0)
(0.991066 0.0124901 0)
(0.990563 0.0104727 0)
(0.990287 0.0084554 0)
(0.990267 0.00647796 0)
(0.990505 0.0045922 0)
(0.990964 0.00282896 0)
(0.991511 0.00126986 0)
(0.992088 -0.000104842 0)
(0.992727 -0.00126315 0)
(0.993285 -0.0020477 0)
(0.993836 -0.0025759 0)
(0.994273 -0.00271395 0)
(0.994474 -0.00264107 0)
(0.994532 -0.00233049 0)
(0.994604 -0.0019107 0)
(0.993837 -0.00118452 0)
(0.996578 -0.000836643 0)
(0.998281 0.0219449 0)
(0.997228 0.0215838 0)
(0.99596 0.0208519 0)
(0.994666 0.0197098 0)
(0.993446 0.0182271 0)
(0.992364 0.0164868 0)
(0.99145 0.014576 0)
(0.990742 0.0125629 0)
(0.990258 0.0105076 0)
(0.99001 0.00846061 0)
(0.990024 0.00646253 0)
(0.990298 0.00456526 0)
(0.990793 0.00279748 0)
(0.991371 0.00124065 0)
(0.991973 -0.00012525 0)
(0.992634 -0.00127663 0)
(0.993209 -0.00204384 0)
(0.99377 -0.00255051 0)
(0.99421 -0.00266738 0)
(0.994407 -0.00257536 0)
(0.994459 -0.00224846 0)
(0.994526 -0.0018168 0)
(0.993747 -0.00108345 0)
(0.996469 -0.000731665 0)
(0.998025 0.0222179 0)
(0.996952 0.021853 0)
(0.995665 0.0211084 0)
(0.994354 0.0199418 0)
(0.993119 0.0184254 0)
(0.992029 0.0166438 0)
(0.991117 0.0146883 0)
(0.990418 0.0126322 0)
(0.989954 0.0105397 0)
(0.989734 0.00846426 0)
(0.989782 0.00644773 0)
(0.990091 0.00454088 0)
(0.990623 0.00277017 0)
(0.991233 0.00121746 0)
(0.991858 -0.000137725 0)
(0.992541 -0.00128095 0)
(0.993134 -0.00203024 0)
(0.993704 -0.0025151 0)
(0.994148 -0.0026107 0)
(0.994341 -0.00249942 0)
(0.994388 -0.0021566 0)
(0.99445 -0.00171404 0)
(0.993661 -0.000975484 0)
(0.996359 -0.000621887 0)
(0.997762 0.0224926 0)
(0.996672 0.0221235 0)
(0.995365 0.0213661 0)
(0.994037 0.0201743 0)
(0.99279 0.0186233 0)
(0.99169 0.0167991 0)
(0.990776 0.0147981 0)
(0.990087 0.0126986 0)
(0.989645 0.0105691 0)
(0.989455 0.00846605 0)
(0.989538 0.00643201 0)
(0.989884 0.00451613 0)
(0.990451 0.00274264 0)
(0.991094 0.00119423 0)
(0.991743 -0.000149912 0)
(0.992447 -0.00128503 0)
(0.993057 -0.00201619 0)
(0.993636 -0.00247895 0)
(0.994083 -0.00255313 0)
(0.994272 -0.00242288 0)
(0.994313 -0.00206399 0)
(0.994369 -0.00161074 0)
(0.993569 -0.000867249 0)
(0.996247 -0.000511801 0)
(0.99749 0.0227684 0)
(0.996381 0.022395 0)
(0.995056 0.0216245 0)
(0.993712 0.0204073 0)
(0.992452 0.018821 0)
(0.991345 0.0169541 0)
(0.990434 0.0149077 0)
(0.989757 0.0127651 0)
(0.989336 0.0105997 0)
(0.989176 0.00847049 0)
(0.989295 0.00641995 0)
(0.989678 0.00449647 0)
(0.990281 0.00272145 0)
(0.990956 0.00117786 0)
(0.991628 -0.000154627 0)
(0.992354 -0.00128061 0)
(0.992981 -0.0019928 0)
(0.993569 -0.0024334 0)
(0.994019 -0.00248648 0)
(0.994204 -0.00233683 0)
(0.994239 -0.00196226 0)
(0.994289 -0.0014992 0)
(0.99348 -0.000752537 0)
(0.996136 -0.000397541 0)
(0.997211 0.0230458 0)
(0.996085 0.0226682 0)
(0.994743 0.0218843 0)
(0.993383 0.0206419 0)
(0.992112 0.0190195 0)
(0.990997 0.0171091 0)
(0.990085 0.0150171 0)
(0.98942 0.0128318 0)
(0.989023 0.0106311 0)
(0.988895 0.00847631 0)
(0.98905 0.00640957 0)
(0.989471 0.00447808 0)
(0.99011 0.00270095 0)
(0.990817 0.00116141 0)
(0.991512 -0.000159914 0)
(0.99226 -0.00127698 0)
(0.992902 -0.00196989 0)
(0.993499 -0.00238813 0)
(0.993952 -0.00241997 0)
(0.994133 -0.00225105 0)
(0.99416 -0.00186051 0)
(0.994205 -0.00138762 0)
(0.993386 -0.000637806 0)
(0.996022 -0.000283301 0)
(0.996924 0.0233246 0)
(0.99578 0.0229426 0)
(0.994421 0.0221454 0)
(0.993047 0.0208781 0)
(0.991763 0.0192195 0)
(0.990642 0.0172661 0)
(0.989734 0.015129 0)
(0.989083 0.0129017 0)
(0.988711 0.0106663 0)
(0.988615 0.00848671 0)
(0.988806 0.00640481 0)
(0.989264 0.00446584 0)
(0.98994 0.00268672 0)
(0.990679 0.00115145 0)
(0.991397 -0.000158057 0)
(0.992166 -0.00126524 0)
(0.992826 -0.00193856 0)
(0.993431 -0.00233455 0)
(0.993887 -0.0023451 0)
(0.994063 -0.00215675 0)
(0.994084 -0.00175053 0)
(0.994123 -0.00126848 0)
(0.993295 -0.000517278 0)
(0.995909 -0.000165209 0)
(0.99663 0.0236054 0)
(0.99547 0.0232192 0)
(0.994094 0.0224084 0)
(0.992705 0.0211169 0)
(0.991411 0.0194213 0)
(0.990283 0.0174243 0)
(0.989377 0.0152423 0)
(0.98874 0.0129733 0)
(0.988394 0.0107035 0)
(0.988332 0.00849899 0)
(0.988561 0.00640174 0)
(0.989057 0.00445458 0)
(0.989769 0.00267241 0)
(0.990539 0.00114036 0)
(0.991281 -0.000157796 0)
(0.99207 -0.00125514 0)
(0.992746 -0.00190852 0)
(0.99336 -0.00228202 0)
(0.993818 -0.00227091 0)
(0.993989 -0.0020631 0)
(0.994003 -0.00164086 0)
(0.994036 -0.00114957 0)
(0.993199 -0.00039695 0)
(0.995793 -4.74022e-05 0)
(0.996327 0.0238881 0)
(0.995149 0.0234973 0)
(0.993758 0.0226733 0)
(0.992356 0.0213577 0)
(0.99105 0.0196253 0)
(0.989918 0.0175851 0)
(0.989018 0.0153586 0)
(0.988397 0.0130481 0)
(0.988077 0.0107445 0)
(0.988049 0.00851607 0)
(0.988316 0.00640355 0)
(0.98885 0.00444868 0)
(0.989598 0.00266402 0)
(0.990401 0.00113508 0)
(0.991165 -0.000151514 0)
(0.991974 -0.00123775 0)
(0.992668 -0.00187018 0)
(0.99329 -0.00222111 0)
(0.99375 -0.00218869 0)
(0.993916 -0.00196069 0)
(0.993924 -0.00152283 0)
(0.993951 -0.00102321 0)
(0.993106 -0.000271002 0)
(0.995679 7.3725e-05 0)
(0.996018 0.0241729 0)
(0.994824 0.0237774 0)
(0.993417 0.0229403 0)
(0.992002 0.0216003 0)
(0.990687 0.0198313 0)
(0.989549 0.0177473 0)
(0.988653 0.0154761 0)
(0.988048 0.0131243 0)
(0.987757 0.0107869 0)
(0.987764 0.00853409 0)
(0.988069 0.00640577 0)
(0.988641 0.00444208 0)
(0.989426 0.00265398 0)
(0.990261 0.00112712 0)
(0.991047 -0.000148315 0)
(0.991877 -0.00122302 0)
(0.992588 -0.00183353 0)
(0.993217 -0.0021613 0)
(0.993679 -0.00210717 0)
(0.993839 -0.00185869 0)
(0.993841 -0.00140477 0)
(0.993862 -0.000896815 0)
(0.993009 -0.000145084 0)
(0.995562 0.000194447 0)
(0.9957 0.0244599 0)
(0.994488 0.0240596 0)
(0.993067 0.0232094 0)
(0.991641 0.0218455 0)
(0.990315 0.0200398 0)
(0.989174 0.0179123 0)
(0.988286 0.0155965 0)
(0.987699 0.0132035 0)
(0.987436 0.0108323 0)
(0.987478 0.00855503 0)
(0.987823 0.00641133 0)
(0.988433 0.00443907 0)
(0.989254 0.00264762 0)
(0.990121 0.00112337 0)
(0.99093 -0.000139845 0)
(0.99178 -0.00120128 0)
(0.992508 -0.00178894 0)
(0.993145 -0.00209341 0)
(0.993609 -0.00201736 0)
(0.993764 -0.00174799 0)
(0.993759 -0.00127833 0)
(0.993774 -0.000763087 0)
(0.992914 -1.40074e-05 0)
(0.995447 0.000318198 0)
(0.995376 0.0247497 0)
(0.994148 0.0243445 0)
(0.992713 0.023481 0)
(0.991274 0.0220931 0)
(0.989939 0.0202501 0)
(0.988795 0.0180784 0)
(0.987912 0.0157173 0)
(0.987344 0.0132824 0)
(0.987111 0.0108767 0)
(0.98719 0.00857436 0)
(0.987574 0.00641461 0)
(0.988222 0.00443287 0)
(0.98908 0.00263721 0)
(0.989979 0.00111486 0)
(0.990811 -0.000135938 0)
(0.991681 -0.00118306 0)
(0.992426 -0.00174649 0)
(0.99307 -0.00202669 0)
(0.993535 -0.00192799 0)
(0.993685 -0.0016374 0)
(0.993673 -0.00115148 0)
(0.993682 -0.000628974 0)
(0.992814 0.000117264 0)
(0.995329 0.000441502 0)
(0.995044 0.025042 0)
(0.993797 0.0246312 0)
(0.992349 0.023755 0)
(0.990899 0.0223429 0)
(0.989555 0.0204625 0)
(0.988409 0.0182462 0)
(0.987536 0.0158393 0)
(0.986988 0.0133621 0)
(0.986786 0.0109219 0)
(0.986902 0.0085947 0)
(0.987326 0.00641876 0)
(0.988012 0.00442817 0)
(0.988906 0.00262929 0)
(0.989839 0.00110947 0)
(0.990692 -0.000127957 0)
(0.991583 -0.00115867 0)
(0.992345 -0.00169616 0)
(0.992997 -0.00195142 0)
(0.993463 -0.0018302 0)
(0.993608 -0.00151742 0)
(0.993589 -0.00101565 0)
(0.993592 -0.000487221 0)
(0.992718 0.000253855 0)
(0.995213 0.000567565 0)
(0.994705 0.0253371 0)
(0.993443 0.024921 0)
(0.991982 0.0240317 0)
(0.99052 0.0225947 0)
(0.989167 0.0206767 0)
(0.98802 0.0184145 0)
(0.987153 0.0159607 0)
(0.986626 0.0134402 0)
(0.986456 0.0109647 0)
(0.986611 0.00861183 0)
(0.987075 0.00641896 0)
(0.987799 0.00441849 0)
(0.98873 0.00261586 0)
(0.989695 0.001098 0)
(0.990572 -0.000125737 0)
(0.991483 -0.00113864 0)
(0.992261 -0.00164832 0)
(0.992919 -0.00187737 0)
(0.993386 -0.00173266 0)
(0.993526 -0.00139717 0)
(0.9935 -0.000879092 0)
(0.993497 -0.000344887 0)
(0.992616 0.000390758 0)
(0.995094 0.000692995 0)
(0.994359 0.0256356 0)
(0.993079 0.0252136 0)
(0.991605 0.0243112 0)
(0.990133 0.0228495 0)
(0.98877 0.0208931 0)
(0.987623 0.0185849 0)
(0.986769 0.0160834 0)
(0.986263 0.0135191 0)
(0.986126 0.0110078 0)
(0.986319 0.00862896 0)
(0.986824 0.0064195 0)
(0.987587 0.00440974 0)
(0.988554 0.00260393 0)
(0.989553 0.00108896 0)
(0.990452 -0.000119526 0)
(0.991383 -0.00111209 0)
(0.992179 -0.00159262 0)
(0.992844 -0.00179504 0)
(0.993312 -0.0016263 0)
(0.993446 -0.00126783 0)
(0.993413 -0.000734204 0)
(0.993404 -0.000195712 0)
(0.992518 0.000531963 0)
(0.994977 0.000820416 0)
(0.994007 0.0259379 0)
(0.992711 0.0255096 0)
(0.991224 0.0245944 0)
(0.989741 0.023107 0)
(0.98837 0.0211118 0)
(0.987222 0.0187564 0)
(0.986376 0.0162061 0)
(0.985894 0.0135967 0)
(0.98579 0.0110484 0)
(0.986024 0.0086426 0)
(0.986569 0.00641586 0)
(0.987372 0.00439603 0)
(0.988376 0.00258639 0)
(0.989407 0.00107371 0)
(0.99033 -0.00011894 0)
(0.991281 -0.00108966 0)
(0.992093 -0.00153935 0)
(0.992764 -0.00171403 0)
(0.993233 -0.00152023 0)
(0.993362 -0.00113845 0)
(0.993321 -0.000588978 0)
(0.993306 -4.64317e-05 0)
(0.992414 0.000672998 0)
(0.994859 0.000946666 0)
(0.993647 0.0262441 0)
(0.992334 0.0258088 0)
(0.990835 0.024881 0)
(0.989341 0.0233678 0)
(0.987961 0.0213333 0)
(0.986814 0.0189302 0)
(0.985982 0.0163304 0)
(0.985523 0.0136752 0)
(0.985454 0.0110897 0)
(0.985728 0.00865729 0)
(0.986315 0.00641337 0)
(0.987158 0.00438433 0)
(0.988198 0.00257208 0)
(0.989263 0.00106248 0)
(0.990209 -0.00011326 0)
(0.991181 -0.00106005 0)
(0.99201 -0.00147751 0)
(0.992687 -0.00162413 0)
(0.993156 -0.00140582 0)
(0.993279 -0.0010002 0)
(0.993232 -0.00043583 0)
(0.993211 0.000109068 0)
(0.992314 0.000817751 0)
(0.994742 0.00107411 0)
(0.993282 0.0265545 0)
(0.991954 0.0261121 0)
(0.990442 0.0251715 0)
(0.988937 0.0236316 0)
(0.987549 0.0215576 0)
(0.986401 0.0191057 0)
(0.98558 0.0164551 0)
(0.985146 0.0137529 0)
(0.985113 0.0111293 0)
(0.985429 0.00866968 0)
(0.986058 0.00640811 0)
(0.98694 0.00436907 0)
(0.988017 0.00255369 0)
(0.989116 0.00104644 0)
(0.990086 -0.000112134 0)
(0.991078 -0.00103392 0)
(0.991922 -0.00141759 0)
(0.992605 -0.00153528 0)
(0.993075 -0.00129179 0)
(0.993192 -0.000862213 0)
(0.993137 -0.000282853 0)
(0.99311 0.000263979 0)
(0.992209 0.000961625 0)
(0.994624 0.00119957 0)
(0.992911 0.0268697 0)
(0.991565 0.0264194 0)
(0.990041 0.025466 0)
(0.988525 0.0238996 0)
(0.987127 0.0217853 0)
(0.985981 0.0192846 0)
(0.985176 0.0165826 0)
(0.984767 0.0138332 0)
(0.984771 0.0111713 0)
(0.985129 0.00868445 0)
(0.985801 0.006406 0)
(0.986723 0.00435796 0)
(0.987837 0.0025401 0)
(0.98897 0.00103607 0)
(0.989964 -0.000104122 0)
(0.990977 -0.000999032 0)
(0.991838 -0.00134836 0)
(0.992526 -0.0014376 0)
(0.992996 -0.00116927 0)
(0.993108 -0.000716222 0)
(0.993046 -0.000123324 0)
(0.993013 0.000423411 0)
(0.992107 0.00110728 0)
(0.994507 0.00132463 0)
(0.992535 0.0271902 0)
(0.991174 0.0267311 0)
(0.989637 0.0257654 0)
(0.988108 0.0241719 0)
(0.986703 0.022017 0)
(0.985558 0.0194661 0)
(0.984763 0.0167118 0)
(0.984382 0.0139139 0)
(0.984425 0.0112128 0)
(0.984826 0.00869815 0)
(0.985541 0.00640254 0)
(0.986503 0.00434492 0)
(0.987653 0.00252383 0)
(0.988821 0.00102218 0)
(0.98984 -9.94792e-05 0)
(0.990873 -0.000966857 0)
(0.991749 -0.00128077 0)
(0.992441 -0.00134093 0)
(0.992912 -0.00104713 0)
(0.993018 -0.000570819 0)
(0.992949 3.54555e-05 0)
(0.99291 0.00058151 0)
(0.992001 0.00125122 0)
(0.994389 0.00144679 0)
(0.992153 0.0275157 0)
(0.990774 0.0270475 0)
(0.989225 0.0260693 0)
(0.987684 0.0244487 0)
(0.98627 0.0222525 0)
(0.985127 0.0196513 0)
(0.984349 0.0168441 0)
(0.983995 0.0139973 0)
(0.984077 0.0112574 0)
(0.984522 0.00871592 0)
(0.985281 0.00640374 0)
(0.986283 0.00433769 0)
(0.987471 0.0025146 0)
(0.988673 0.00101611 0)
(0.989717 -8.65984e-05 0)
(0.990771 -0.000925486 0)
(0.991663 -0.00120356 0)
(0.99236 -0.0012348 0)
(0.99283 -0.000916729 0)
(0.992931 -0.0004174 0)
(0.992854 0.000200572 0)
(0.992809 0.000743639 0)
(0.991898 0.00139644 0)
(0.994273 0.00156778 0)
(0.991766 0.0278471 0)
(0.990373 0.0273689 0)
(0.98881 0.0263778 0)
(0.987256 0.0247301 0)
(0.985834 0.0224924 0)
(0.984691 0.0198392 0)
(0.983927 0.0169779 0)
(0.983602 0.0140815 0)
(0.983724 0.0113022 0)
(0.984215 0.00873363 0)
(0.985017 0.00640472 0)
(0.98606 0.00432946 0)
(0.987285 0.00250365 0)
(0.988522 0.00100738 0)
(0.989592 -7.65494e-05 0)
(0.990666 -0.000886782 0)
(0.991573 -0.00112805 0)
(0.992274 -0.0011296 0)
(0.992744 -0.00078678 0)
(0.992839 -0.000264712 0)
(0.992755 0.000364628 0)
(0.992704 0.000904002 0)
(0.991791 0.0015395 0)
(0.994156 0.00168527 0)
(0.991376 0.0281845 0)
(0.989964 0.0276954 0)
(0.988388 0.0266912 0)
(0.986821 0.0250165 0)
(0.985388 0.0227363 0)
(0.984249 0.0200312 0)
(0.983502 0.0171154 0)
(0.983207 0.0141694 0)
(0.983371 0.011351 0)
(0.983907 0.00875607 0)
(0.984755 0.00641138 0)
(0.985838 0.00432798 0)
(0.9871 0.00250001 0)
(0.988373 0.00100678 0)
(0.989468 -5.76025e-05 0)
(0.990564 -0.000838153 0)
(0.991486 -0.00104265 0)
(0.99219 -0.00101528 0)
(0.992661 -0.000648449 0)
(0.99275 -0.000105024 0)
(0.992658 0.00053344 0)
(0.992602 0.00106668 0)
(0.991686 0.00168203 0)
(0.99404 0.00180011 0)
(0.990983 0.0285284 0)
(0.989555 0.0280281 0)
(0.987965 0.0270108 0)
(0.986383 0.0253084 0)
(0.984942 0.0229853 0)
(0.983803 0.0202267 0)
(0.983071 0.0172552 0)
(0.982806 0.0142585 0)
(0.983013 0.0114006 0)
(0.983596 0.00877873 0)
(0.984488 0.00641791 0)
(0.985612 0.00432555 0)
(0.986911 0.00249434 0)
(0.988219 0.00100316 0)
(0.989341 -4.15638e-05 0)
(0.990457 -0.000792295 0)
(0.991394 -0.000959128 0)
(0.992102 -0.000902036 0)
(0.992572 -0.000510558 0)
(0.992655 5.37649e-05 0)
(0.992556 0.000700809 0)
(0.992494 0.00122707 0)
(0.991577 0.00182179 0)
(0.993925 0.0019108 0)
(0.990587 0.0288794 0)
(0.98914 0.0283674 0)
(0.987536 0.0273366 0)
(0.985939 0.0256061 0)
(0.984486 0.0232391 0)
(0.983351 0.0204264 0)
(0.982637 0.0173989 0)
(0.982405 0.0143516 0)
(0.982655 0.0114548 0)
(0.983285 0.00880706 0)
(0.984223 0.00643061 0)
(0.985387 0.00433008 0)
(0.986723 0.00249654 0)
(0.988068 0.00100837 0)
(0.989217 -1.63228e-05 0)
(0.990354 -0.000736814 0)
(0.991306 -0.000865917 0)
(0.992017 -0.000779292 0)
(0.992486 -0.000364868 0)
(0.992563 0.000219516 0)
(0.992457 0.000872926 0)
(0.992389 0.00138961 0)
(0.991471 0.00196093 0)
(0.993811 0.00201841 0)
(0.990189 0.0292384 0)
(0.988725 0.0287136 0)
(0.987106 0.0276687 0)
(0.985492 0.0259099 0)
(0.984029 0.0234986 0)
(0.982895 0.0206303 0)
(0.982197 0.0175454 0)
(0.981997 0.0144466 0)
(0.982292 0.0115103 0)
(0.98297 0.00883628 0)
(0.983954 0.00644362 0)
(0.985159 0.00433362 0)
(0.986532 0.00249653 0)
(0.987913 0.00101049 0)
(0.989089 5.93654e-06 0)
(0.990247 -0.000684449 0)
(0.991213 -0.000774875 0)
(0.991926 -0.000657691 0)
(0.992395 -0.000219596 0)
(0.992467 0.000384606 0)
(0.992353 0.00104388 0)
(0.99228 0.00155002 0)
(0.991362 0.00209735 0)
(0.993697 0.00212173 0)
(0.989788 0.0296055 0)
(0.988304 0.0290674 0)
(0.986669 0.0280078 0)
(0.985038 0.0262202 0)
(0.983563 0.0237636 0)
(0.982432 0.0208395 0)
(0.981755 0.017697 0)
(0.981589 0.0145471 0)
(0.981929 0.0115718 0)
(0.982657 0.00887187 0)
(0.983686 0.00646343 0)
(0.984932 0.00434464 0)
(0.986343 0.00250422 0)
(0.98776 0.00102126 0)
(0.988964 3.77568e-05 0)
(0.990144 -0.000621793 0)
(0.991123 -0.000673899 0)
(0.991839 -0.000527235 0)
(0.992307 -6.64251e-05 0)
(0.992373 0.000555917 0)
(0.992252 0.00121853 0)
(0.992173 0.00171134 0)
(0.991255 0.00223184 0)
(0.993584 0.0022209 0)
(0.989384 0.0299813 0)
(0.987882 0.0294299 0)
(0.986231 0.0283546 0)
(0.984582 0.0265376 0)
(0.983096 0.0240355 0)
(0.981966 0.0210542 0)
(0.981305 0.0178529 0)
(0.981174 0.0146506 0)
(0.981562 0.0116355 0)
(0.982339 0.00890882 0)
(0.983415 0.00648366 0)
(0.984702 0.00435465 0)
(0.986149 0.00250933 0)
(0.987602 0.00102854 0)
(0.988834 6.668e-05 0)
(0.990036 -0.000562112 0)
(0.991029 -0.000575173 0)
(0.991746 -0.000398141 0)
(0.992213 8.63254e-05 0)
(0.992274 0.00072654 0)
(0.992146 0.00139198 0)
(0.992062 0.00187045 0)
(0.991145 0.00236343 0)
(0.993473 0.00231556 0)
(0.988977 0.0303663 0)
(0.987454 0.0298012 0)
(0.985786 0.0287096 0)
(0.984118 0.0268626 0)
(0.982619 0.0243138 0)
(0.981493 0.0212749 0)
(0.980854 0.0180145 0)
(0.98076 0.0147601 0)
(0.981195 0.0117057 0)
(0.982022 0.00895318 0)
(0.983144 0.00651138 0)
(0.984472 0.00437252 0)
(0.985957 0.00252292 0)
(0.987447 0.00104548 0)
(0.988708 0.000106012 0)
(0.989931 -0.000492005 0)
(0.990938 -0.000466604 0)
(0.991657 -0.000259763 0)
(0.992123 0.00024632 0)
(0.992177 0.000903249 0)
(0.992042 0.00156917 0)
(0.991952 0.00203062 0)
(0.991037 0.00249333 0)
(0.993363 0.00240598 0)
(0.988566 0.0307608 0)
(0.987024 0.0301819 0)
(0.985338 0.0290726 0)
(0.983651 0.0271948 0)
(0.98214 0.0245993 0)
(0.981016 0.0215012 0)
(0.980396 0.0181803 0)
(0.980338 0.0148726 0)
(0.980823 0.0117783 0)
(0.981702 0.00899914 0)
(0.98287 0.00653981 0)
(0.984239 0.00438945 0)
(0.98576 0.00253412 0)
(0.987288 0.00105933 0)
(0.988578 0.000143041 0)
(0.989822 -0.000424579 0)
(0.990842 -0.000360123 0)
(0.991562 -0.000122374 0)
(0.992027 0.000406173 0)
(0.992076 0.00107955 0)
(0.991933 0.00174537 0)
(0.99184 0.00218875 0)
(0.990927 0.00262033 0)
(0.993254 0.0024918 0)
(0.988153 0.0311655 0)
(0.986588 0.0305717 0)
(0.984883 0.029444 0)
(0.983176 0.0275345 0)
(0.981652 0.0248908 0)
(0.980531 0.0217334 0)
(0.979935 0.0183517 0)
(0.979917 0.0149912 0)
(0.980452 0.0118575 0)
(0.981381 0.0090522 0)
(0.982597 0.00657561 0)
(0.984006 0.00441446 0)
(0.985565 0.00255384 0)
(0.987131 0.00108304 0)
(0.988451 0.000191145 0)
(0.989717 -0.00034561 0)
(0.99075 -0.000243027 0)
(0.991471 2.41728e-05 0)
(0.991935 0.000573813 0)
(0.991978 0.00126115 0)
(0.991827 0.00192384 0)
(0.991729 0.00234639 0)
(0.990819 0.00274412 0)
(0.993147 0.00257212 0)
(0.987738 0.0315803 0)
(0.986151 0.0309707 0)
(0.984426 0.029824 0)
(0.982698 0.0278822 0)
(0.981161 0.0251896 0)
(0.980043 0.0219708 0)
(0.979467 0.0185267 0)
(0.979488 0.0151118 0)
(0.980075 0.011938 0)
(0.981057 0.00910564 0)
(0.982319 0.0066109 0)
(0.98377 0.0044377 0)
(0.985365 0.00257053 0)
(0.986969 0.00110331 0)
(0.988319 0.00023698 0)
(0.989607 -0.000268852 0)
(0.990652 -0.000127415 0)
(0.991374 0.000170417 0)
(0.991837 0.000742082 0)
(0.991875 0.00144271 0)
(0.991718 0.00210123 0)
(0.991615 0.00250163 0)
(0.990709 0.00286444 0)
(0.993041 0.00264741 0)
(0.987321 0.0320058 0)
(0.985708 0.0313794 0)
(0.983961 0.030213 0)
(0.982212 0.0282376 0)
(0.980661 0.0254944 0)
(0.979547 0.0222132 0)
(0.978997 0.018706 0)
(0.97906 0.0152369 0)
(0.979698 0.0120234 0)
(0.980733 0.00916496 0)
(0.982043 0.00665251 0)
(0.983534 0.00446808 0)
(0.985167 0.00259567 0)
(0.986811 0.00113409 0)
(0.988191 0.000294394 0)
(0.9895 -0.000180418 0)
(0.990559 -8.4159e-07 0)
(0.99128 0.000327029 0)
(0.991743 0.000917984 0)
(0.991774 0.00162971 0)
(0.99161 0.00228101 0)
(0.991502 0.00265636 0)
(0.9906 0.00298168 0)
(0.992936 0.00271708 0)
(0.986901 0.0324419 0)
(0.985265 0.0317977 0)
(0.983495 0.0306105 0)
(0.981723 0.0286003 0)
(0.980159 0.0258054 0)
(0.979048 0.0224593 0)
(0.97852 0.0188868 0)
(0.978624 0.0153618 0)
(0.979317 0.0121079 0)
(0.980405 0.00922278 0)
(0.981762 0.00669204 0)
(0.983294 0.00449533 0)
(0.984965 0.00261707 0)
(0.986647 0.00116128 0)
(0.988057 0.000349656 0)
(0.989389 -9.38842e-05 0)
(0.99046 0.000124865 0)
(0.991181 0.000484136 0)
(0.991643 0.00109501 0)
(0.991669 0.00181705 0)
(0.991498 0.00245991 0)
(0.991387 0.00280867 0)
(0.99049 0.00309522 0)
(0.992834 0.00278156 0)
(0.986482 0.0328895 0)
(0.984816 0.0322257 0)
(0.983023 0.0310165 0)
(0.981228 0.0289701 0)
(0.979648 0.0261209 0)
(0.978541 0.0227088 0)
(0.978041 0.0190701 0)
(0.978189 0.0154894 0)
(0.978937 0.0121957 0)
(0.980079 0.00928456 0)
(0.981482 0.00673617 0)
(0.983056 0.00452874 0)
(0.984764 0.00264623 0)
(0.986486 0.00119868 0)
(0.987928 0.000416723 0)
(0.989281 5.46847e-06 0)
(0.990365 0.000262728 0)
(0.991086 0.000651258 0)
(0.991546 0.00127979 0)
(0.991566 0.00200875 0)
(0.991388 0.00263958 0)
(0.991274 0.00295873 0)
(0.990382 0.00320409 0)
(0.992733 0.00283918 0)
(0.986061 0.033348 0)
(0.984369 0.0326634 0)
(0.982549 0.0314316 0)
(0.980729 0.0293476 0)
(0.979135 0.0264424 0)
(0.978031 0.022961 0)
(0.977555 0.0192535 0)
(0.977748 0.0156151 0)
(0.978552 0.0122805 0)
(0.979748 0.00934273 0)
(0.981199 0.0067762 0)
(0.982813 0.00455749 0)
(0.984559 0.0026705 0)
(0.986321 0.00123202 0)
(0.987793 0.000481763 0)
(0.989168 0.000103299 0)
(0.990264 0.000400374 0)
(0.990985 0.000819365 0)
(0.991443 0.00146613 0)
(0.991459 0.00220092 0)
(0.991275 0.00281815 0)
(0.991158 0.00310592 0)
(0.990274 0.00330857 0)
(0.992635 0.0028912 0)
(0.98564 0.0338185 0)
(0.983917 0.0331116 0)
(0.98207 0.0318559 0)
(0.980225 0.0297326 0)
(0.978613 0.0267685 0)
(0.977514 0.023216 0)
(0.977067 0.0194383 0)
(0.977308 0.0157418 0)
(0.978168 0.0123671 0)
(0.979418 0.00940375 0)
(0.980917 0.00681997 0)
(0.982572 0.00459142 0)
(0.984356 0.00270243 0)
(0.986159 0.00127648 0)
(0.987663 0.000559514 0)
(0.989059 0.000213975 0)
(0.990168 0.000550041 0)
(0.990887 0.000998137 0)
(0.991344 0.00165954 0)
(0.991355 0.00239725 0)
(0.991164 0.00299755 0)
(0.991044 0.00325093 0)
(0.990167 0.0034087 0)
(0.992538 0.00293643 0)
(0.985219 0.0343011 0)
(0.983467 0.03357 0)
(0.98159 0.0322895 0)
(0.979717 0.0301254 0)
(0.978089 0.0271004 0)
(0.976994 0.0234731 0)
(0.976573 0.0196222 0)
(0.976861 0.0158658 0)
(0.97778 0.0124501 0)
(0.979086 0.00946066 0)
(0.980631 0.00685929 0)
(0.982327 0.00462029 0)
(0.984149 0.00272947 0)
(0.985992 0.00131718 0)
(0.987528 0.000635743 0)
(0.988945 0.000323584 0)
(0.990065 0.000699867 0)
(0.990784 0.00117838 0)
(0.99124 0.0018547 0)
(0.991246 0.00259418 0)
(0.99105 0.00317589 0)
(0.990928 0.00339298 0)
(0.990061 0.00350417 0)
(0.992445 0.00297596 0)
(0.9848 0.0347966 0)
(0.983014 0.0340396 0)
(0.981106 0.0327327 0)
(0.979204 0.0305258 0)
(0.977557 0.0274369 0)
(0.976467 0.023733 0)
(0.976078 0.0198076 0)
(0.976416 0.0159914 0)
(0.977393 0.0125355 0)
(0.978755 0.00952093 0)
(0.980348 0.00690269 0)
(0.982084 0.00465516 0)
(0.983945 0.00276487 0)
(0.98583 0.00136923 0)
(0.987397 0.000725054 0)
(0.988835 0.000447196 0)
(0.989968 0.000862753 0)
(0.990685 0.00136886 0)
(0.991138 0.00205716 0)
(0.991139 0.0027941 0)
(0.990937 0.00335326 0)
(0.990813 0.00353111 0)
(0.989955 0.00359384 0)
(0.992353 0.00300759 0)
(0.984383 0.0353047 0)
(0.982563 0.0345202 0)
(0.980622 0.033186 0)
(0.978689 0.0309348 0)
(0.977024 0.0277799 0)
(0.975937 0.0239956 0)
(0.975577 0.0199928 0)
(0.975965 0.0161149 0)
(0.977003 0.0126181 0)
(0.97842 0.00957785 0)
(0.98006 0.0069422 0)
(0.981838 0.0046857 0)
(0.983736 0.00279586 0)
(0.985663 0.00141765 0)
(0.987262 0.000813117 0)
(0.98872 0.000570387 0)
(0.989864 0.00102647 0)
(0.99058 0.00156122 0)
(0.991032 0.00226154 0)
(0.991029 0.00299432 0)
(0.990822 0.00352885 0)
(0.990697 0.00366541 0)
(0.989851 0.00367778 0)
(0.992265 0.00303283 0)
(0.983968 0.0358262 0)
(0.982111 0.035013 0)
(0.980134 0.0336498 0)
(0.978169 0.0313524 0)
(0.976482 0.0281284 0)
(0.9754 0.0242617 0)
(0.975074 0.0201801 0)
(0.975516 0.0162407 0)
(0.976615 0.0127043 0)
(0.978089 0.00963947 0)
(0.979776 0.00698736 0)
(0.981594 0.0047233 0)
(0.983532 0.00283636 0)
(0.985501 0.00147893 0)
(0.987131 0.000915476 0)
(0.98861 0.000707789 0)
(0.989765 0.0012028 0)
(0.990478 0.0017639 0)
(0.990928 0.00247156 0)
(0.99092 0.00319631 0)
(0.990708 0.00370275 0)
(0.990582 0.0037953 0)
(0.989747 0.0037559 0)
(0.992178 0.00305006 0)
(0.983556 0.036361 0)
(0.981663 0.0355176 0)
(0.979647 0.0341245 0)
(0.977647 0.0317792 0)
(0.975939 0.028484 0)
(0.974861 0.0245308 0)
(0.974567 0.0203675 0)
(0.975063 0.0163653 0)
(0.976225 0.0127888 0)
(0.977754 0.0096992 0)
(0.979488 0.00703012 0)
(0.981347 0.00475766 0)
(0.983323 0.00287333 0)
(0.985334 0.00153738 0)
(0.986996 0.00101721 0)
(0.988494 0.000845121 0)
(0.989661 0.00137992 0)
(0.990371 0.00196819 0)
(0.99082 0.00268265 0)
(0.990808 0.00339762 0)
(0.990592 0.00387384 0)
(0.990466 0.00392039 0)
(0.989644 0.00382733 0)
(0.992095 0.00306048 0)
(0.983148 0.0369099 0)
(0.981214 0.0360348 0)
(0.979159 0.0346102 0)
(0.977121 0.0322149 0)
(0.975389 0.0288449 0)
(0.974316 0.0248037 0)
(0.974059 0.0205577 0)
(0.974612 0.0164937 0)
(0.975837 0.0128789 0)
(0.977423 0.00976541 0)
(0.979204 0.00707978 0)
(0.981103 0.00480068 0)
(0.983118 0.00292098 0)
(0.985173 0.00160899 0)
(0.986866 0.00113313 0)
(0.988383 0.000997206 0)
(0.989561 0.00156992 0)
(0.990268 0.00218099 0)
(0.990714 0.00289828 0)
(0.990697 0.00359859 0)
(0.990477 0.00404081 0)
(0.990351 0.00403892 0)
(0.989543 0.00389135 0)
(0.992014 0.00306187 0)
(0.982746 0.0374724 0)
(0.98077 0.0365644 0)
(0.978672 0.0351074 0)
(0.976593 0.0326602 0)
(0.974838 0.0292134 0)
(0.973769 0.0250799 0)
(0.973546 0.0207488 0)
(0.974157 0.0166218 0)
(0.975447 0.0129686 0)
(0.977089 0.00983077 0)
(0.978917 0.00712765 0)
(0.980856 0.00484108 0)
(0.98291 0.00296554 0)
(0.985007 0.00167773 0)
(0.986731 0.00124814 0)
(0.988267 0.00114892 0)
(0.989455 0.00176026 0)
(0.99016 0.00239462 0)
(0.990604 0.00311418 0)
(0.990584 0.00379787 0)
(0.99036 0.00420378 0)
(0.990237 0.00415143 0)
(0.989443 0.00394745 0)
(0.991938 0.00305582 0)
(0.982349 0.0380493 0)
(0.980328 0.0371074 0)
(0.978184 0.0356162 0)
(0.976063 0.0331149 0)
(0.97428 0.0295876 0)
(0.973217 0.0253599 0)
(0.973034 0.0209428 0)
(0.973705 0.0167542 0)
(0.97506 0.0130643 0)
(0.976759 0.00990326 0)
(0.978633 0.00718319 0)
(0.980613 0.00489021 0)
(0.982706 0.0030214 0)
(0.984848 0.00176079 0)
(0.986602 0.00137781 0)
(0.988155 0.00131423 0)
(0.989354 0.00196147 0)
(0.990055 0.00261586 0)
(0.990496 0.0033326 0)
(0.990471 0.00399568 0)
(0.990244 0.00436227 0)
(0.990123 0.00425732 0)
(0.989345 0.00399656 0)
(0.991863 0.00304102 0)
(0.98196 0.0386402 0)
(0.979891 0.0376634 0)
(0.977698 0.0361372 0)
(0.975532 0.0335796 0)
(0.973722 0.0299691 0)
(0.972663 0.025643 0)
(0.972519 0.0211373 0)
(0.973251 0.0168863 0)
(0.974673 0.0131599 0)
(0.976427 0.00997517 0)
(0.978347 0.0072371 0)
(0.980367 0.00493653 0)
(0.982499 0.0030744 0)
(0.984683 0.00184134 0)
(0.986468 0.00150659 0)
(0.988039 0.00147873 0)
(0.989247 0.00216229 0)
(0.989945 0.0028374 0)
(0.990384 0.00355052 0)
(0.990356 0.00419111 0)
(0.990127 0.0045161 0)
(0.990009 0.00435652 0)
(0.989248 0.00403702 0)
(0.991793 0.00301867 0)
(0.981577 0.039246 0)
(0.979458 0.0382331 0)
(0.977213 0.03667 0)
(0.974999 0.0340535 0)
(0.973158 0.0303559 0)
(0.972105 0.0259296 0)
(0.972004 0.0213348 0)
(0.972801 0.017023 0)
(0.974289 0.0132622 0)
(0.976099 0.0100547 0)
(0.978065 0.00729844 0)
(0.980125 0.0049919 0)
(0.982297 0.00313926 0)
(0.984525 0.001936 0)
(0.986339 0.00164934 0)
(0.987927 0.00165687 0)
(0.989145 0.00237402 0)
(0.989838 0.00306484 0)
(0.990273 0.0037703 0)
(0.990242 0.00438354 0)
(0.990011 0.00466371 0)
(0.989896 0.00444747 0)
(0.989153 0.00406942 0)
(0.991726 0.00298702 0)
(0.981201 0.0398659 0)
(0.97903 0.0388162 0)
(0.97673 0.0372153 0)
(0.974464 0.0345374 0)
(0.972594 0.0307498 0)
(0.971546 0.0262189 0)
(0.971487 0.0215326 0)
(0.972349 0.0171597 0)
(0.973905 0.0133646 0)
(0.97577 0.0101334 0)
(0.97778 0.00735764 0)
(0.97988 0.00504435 0)
(0.982092 0.00320101 0)
(0.984363 0.00202767 0)
(0.986207 0.00179086 0)
(0.987811 0.00183443 0)
(0.989038 0.00258567 0)
(0.989727 0.00329253 0)
(0.990159 0.00398925 0)
(0.990126 0.0045728 0)
(0.989894 0.00480556 0)
(0.989784 0.00453047 0)
(0.989061 0.00409183 0)
(0.991663 0.0029472 0)
(0.980831 0.0405006 0)
(0.978604 0.0394133 0)
(0.976246 0.0377729 0)
(0.973926 0.0350308 0)
(0.972022 0.0311487 0)
(0.970982 0.0265109 0)
(0.970972 0.0217328 0)
(0.971902 0.0173007 0)
(0.973525 0.0134732 0)
(0.975445 0.0102192 0)
(0.9775 0.00742433 0)
(0.979641 0.0051055 0)
(0.981892 0.00327421 0)
(0.984207 0.00213403 0)
(0.98608 0.00194717 0)
(0.987699 0.00202541 0)
(0.988935 0.00280727 0)
(0.989618 0.00352615 0)
(0.990047 0.00420862 0)
(0.99001 0.00475815 0)
(0.989777 0.00494084 0)
(0.989672 0.00460507 0)
(0.98897 0.00410652 0)
(0.991603 0.00289839 0)
(0.980465 0.0411495 0)
(0.978182 0.0400242 0)
(0.975763 0.0383432 0)
(0.973386 0.035534 0)
(0.97145 0.0315541 0)
(0.970416 0.0268049 0)
(0.970453 0.0219324 0)
(0.971453 0.017441 0)
(0.973145 0.0135815 0)
(0.975119 0.0103037 0)
(0.977217 0.00748858 0)
(0.979398 0.00516331 0)
(0.981688 0.00334396 0)
(0.984047 0.00223765 0)
(0.985948 0.002103 0)
(0.987582 0.00221671 0)
(0.988826 0.00302933 0)
(0.989505 0.00376019 0)
(0.989931 0.00442647 0)
(0.989893 0.00493926 0)
(0.989661 0.00506899 0)
(0.989563 0.00467049 0)
(0.988882 0.00411016 0)
(0.991548 0.00284123 0)
(0.980103 0.0418131 0)
(0.977759 0.0406492 0)
(0.975276 0.0389259 0)
(0.97284 0.0360461 0)
(0.970868 0.0319635 0)
(0.969845 0.0271009 0)
(0.969936 0.0221338 0)
(0.971008 0.0175856 0)
(0.97277 0.0136962 0)
(0.974797 0.0103952 0)
(0.976939 0.00755961 0)
(0.97916 0.00522993 0)
(0.981491 0.00342568 0)
(0.983894 0.00235595 0)
(0.985822 0.00227336 0)
(0.98747 0.00242228 0)
(0.988721 0.00326206 0)
(0.989394 0.00399848 0)
(0.989816 0.00464383 0)
(0.989776 0.00511473 0)
(0.989544 0.00518854 0)
(0.989453 0.00472595 0)
(0.988796 0.00410534 0)
(0.991495 0.002775 0)
(0.979746 0.0424908 0)
(0.977339 0.0412881 0)
(0.974787 0.0395213 0)
(0.972288 0.0365681 0)
(0.970282 0.0323788 0)
(0.96927 0.0273979 0)
(0.969415 0.0223341 0)
(0.970562 0.0177294 0)
(0.972393 0.0138105 0)
(0.974472 0.010485 0)
(0.976657 0.00762746 0)
(0.978919 0.0052929 0)
(0.981289 0.00350413 0)
(0.983736 0.0024719 0)
(0.985691 0.00244374 0)
(0.987352 0.00262878 0)
(0.988611 0.00349549 0)
(0.989279 0.0042366 0)
(0.989698 0.00485863 0)
(0.989658 0.00528446 0)
(0.989428 0.00529923 0)
(0.989346 0.00477078 0)
(0.988713 0.00408826 0)
(0.991448 0.00270022 0)
(0.979393 0.0431835 0)
(0.976919 0.0419417 0)
(0.974294 0.0401295 0)
(0.97173 0.0370988 0)
(0.969687 0.0327974 0)
(0.968688 0.0276958 0)
(0.968893 0.0225353 0)
(0.970119 0.0178769 0)
(0.97202 0.0139302 0)
(0.974151 0.0105807 0)
(0.97638 0.00770182 0)
(0.978682 0.00536405 0)
(0.981093 0.0035946 0)
(0.983584 0.00260382 0)
(0.985566 0.00262984 0)
(0.987239 0.00284881 0)
(0.988505 0.00373759 0)
(0.989166 0.00447824 0)
(0.989581 0.00507117 0)
(0.989539 0.00544759 0)
(0.989311 0.00540126 0)
(0.989239 0.00480597 0)
(0.988632 0.00406355 0)
(0.991403 0.00261721 0)
(0.979044 0.0438904 0)
(0.976501 0.0426098 0)
(0.973799 0.0407512 0)
(0.971165 0.0376393 0)
(0.969086 0.0332211 0)
(0.968101 0.0279936 0)
(0.968368 0.0227342 0)
(0.969673 0.0180226 0)
(0.971644 0.0140484 0)
(0.973827 0.0106737 0)
(0.976098 0.00777235 0)
(0.978441 0.00543117 0)
(0.980893 0.00368196 0)
(0.983427 0.00273412 0)
(0.985436 0.0028168 0)
(0.98712 0.00307039 0)
(0.988392 0.00398044 0)
(0.989048 0.00471947 0)
(0.989461 0.00528018 0)
(0.989419 0.00560385 0)
(0.989196 0.00549328 0)
(0.989135 0.0048297 0)
(0.988555 0.00402599 0)
(0.991364 0.00252591 0)
(0.978699 0.0446124 0)
(0.976082 0.0432931 0)
(0.973298 0.0413859 0)
(0.970591 0.0381882 0)
(0.968473 0.0336469 0)
(0.967507 0.0282911 0)
(0.967842 0.0229334 0)
(0.969231 0.0181717 0)
(0.971273 0.014172 0)
(0.973505 0.0107722 0)
(0.97582 0.00784834 0)
(0.978205 0.00550657 0)
(0.980698 0.00378203 0)
(0.983276 0.00288024 0)
(0.98531 0.00301876 0)
(0.987004 0.0033059 0)
(0.988283 0.00423256 0)
(0.988931 0.00496282 0)
(0.98934 0.00548653 0)
(0.989298 0.00575262 0)
(0.98908 0.00557561 0)
(0.989031 0.00484309 0)
(0.98848 0.00398081 0)
(0.991328 0.00242695 0)
(0.978355 0.0453486 0)
(0.975662 0.0439913 0)
(0.972791 0.0420343 0)
(0.970008 0.0387468 0)
(0.967853 0.0340771 0)
(0.966907 0.0285874 0)
(0.967311 0.0231298 0)
(0.968786 0.0183188 0)
(0.970898 0.0142936 0)
(0.97318 0.0108672 0)
(0.975537 0.00791954 0)
(0.977964 0.00557764 0)
(0.980499 0.00387913 0)
(0.98312 0.003025 0)
(0.985179 0.00322183 0)
(0.986883 0.00354361 0)
(0.988167 0.00448594 0)
(0.988809 0.00520545 0)
(0.989216 0.0056885 0)
(0.989177 0.00589315 0)
(0.988965 0.00564634 0)
(0.98893 0.00484378 0)
(0.988409 0.00392187 0)
(0.991297 0.00231981 0)
(0.978015 0.0461002 0)
(0.975238 0.0447053 0)
(0.972275 0.0426962 0)
(0.969412 0.0393138 0)
(0.967219 0.0345084 0)
(0.966298 0.0288821 0)
(0.966779 0.0233256 0)
(0.968343 0.0184685 0)
(0.970525 0.0144193 0)
(0.972857 0.0109661 0)
(0.975257 0.00799573 0)
(0.977727 0.00565639 0)
(0.980303 0.00398876 0)
(0.982969 0.00318675 0)
(0.985052 0.00344097 0)
(0.986764 0.00379437 0)
(0.988053 0.00474664 0)
(0.988689 0.0054498 0)
(0.989092 0.00588652 0)
(0.989054 0.00602555 0)
(0.988849 0.00570754 0)
(0.988829 0.00483457 0)
(0.98834 0.00385617 0)
(0.991269 0.00220592 0)
(0.977683 0.046867 0)
(0.974817 0.0454356 0)
(0.971754 0.0433728 0)
(0.968806 0.0398904 0)
(0.966576 0.0349432 0)
(0.965681 0.0291744 0)
(0.966241 0.0235175 0)
(0.967897 0.0186155 0)
(0.970149 0.0145419 0)
(0.972528 0.0110602 0)
(0.974971 0.00806638 0)
(0.977484 0.00573049 0)
(0.980104 0.0040957 0)
(0.982812 0.003348 0)
(0.984919 0.003662 0)
(0.986639 0.00404787 0)
(0.987933 0.00500863 0)
(0.988563 0.00569312 0)
(0.988965 0.00607894 0)
(0.988931 0.00614821 0)
(0.988735 0.00575558 0)
(0.988732 0.00481157 0)
(0.988276 0.00377604 0)
(0.991247 0.00208408 0)
(0.977371 0.0476514 0)
(0.974404 0.0461836 0)
(0.97123 0.0440642 0)
(0.96819 0.0404754 0)
(0.965918 0.0353779 0)
(0.965055 0.0294639 0)
(0.965702 0.0237084 0)
(0.967452 0.0187648 0)
(0.969774 0.0146682 0)
(0.9722 0.0111576 0)
(0.974687 0.00814086 0)
(0.977245 0.00581252 0)
(0.979908 0.00421611 0)
(0.98266 0.00352586 0)
(0.984789 0.00389767 0)
(0.986516 0.00431432 0)
(0.987814 0.00527836 0)
(0.988437 0.00593696 0)
(0.988836 0.00626722 0)
(0.988805 0.00626214 0)
(0.98862 0.00579332 0)
(0.988635 0.00477824 0)
(0.988214 0.00368942 0)
(0.991228 0.00195626 0)
(0.977088 0.0484542 0)
(0.974009 0.0469508 0)
(0.970712 0.0447725 0)
(0.96757 0.041071 0)
(0.965256 0.0358157 0)
(0.964425 0.02975 0)
(0.96516 0.0238951 0)
(0.967005 0.0189112 0)
(0.969395 0.0147908 0)
(0.971867 0.0112493 0)
(0.974397 0.00820896 0)
(0.977001 0.00588987 0)
(0.979707 0.00433433 0)
(0.982501 0.00370369 0)
(0.984652 0.00413554 0)
(0.986385 0.00458396 0)
(0.987688 0.00554952 0)
(0.988305 0.00617906 0)
(0.988704 0.00644867 0)
(0.98868 0.0063647 0)
(0.988506 0.0058161 0)
(0.988542 0.00472986 0)
(0.988158 0.00358761 0)
(0.991216 0.00182072 0)
(0.976845 0.049278 0)
(0.97364 0.0477395 0)
(0.970204 0.0454986 0)
(0.966951 0.0416767 0)
(0.964589 0.0362533 0)
(0.963792 0.0300324 0)
(0.96462 0.0240804 0)
(0.966563 0.0190595 0)
(0.96902 0.0149155 0)
(0.971536 0.0113426 0)
(0.97411 0.00828061 0)
(0.97676 0.00597481 0)
(0.979509 0.00446595 0)
(0.982347 0.00389919 0)
(0.984519 0.00438922 0)
(0.986257 0.00486544 0)
(0.987563 0.00582601 0)
(0.988173 0.00642102 0)
(0.98857 0.00662487 0)
(0.988551 0.00645819 0)
(0.988392 0.00582909 0)
(0.988449 0.00467183 0)
(0.988104 0.00348029 0)
(0.991207 0.00168026 0)
(0.976646 0.0501237 0)
(0.973304 0.0485517 0)
(0.969716 0.0462453 0)
(0.966339 0.0422949 0)
(0.963926 0.0366942 0)
(0.963164 0.0303111 0)
(0.964085 0.0242613 0)
(0.966123 0.0192043 0)
(0.968644 0.0150352 0)
(0.971202 0.0114286 0)
(0.973818 0.00834524 0)
(0.976515 0.00605527 0)
(0.979308 0.00459597 0)
(0.982187 0.0040955 0)
(0.984379 0.00464598 0)
(0.986121 0.00515052 0)
(0.98743 0.00610349 0)
(0.988035 0.00666002 0)
(0.988432 0.00679232 0)
(0.988423 0.00653848 0)
(0.988279 0.00582568 0)
(0.98836 0.00459807 0)
(0.988056 0.00335767 0)
(0.991205 0.00153278 0)
(0.976498 0.0509939 0)
(0.973003 0.0493895 0)
(0.969247 0.0470133 0)
(0.965736 0.0429248 0)
(0.963265 0.0371347 0)
(0.962541 0.0305861 0)
(0.96356 0.0244413 0)
(0.965694 0.0193508 0)
(0.968276 0.0151566 0)
(0.970874 0.0115155 0)
(0.973533 0.00841244 0)
(0.976276 0.00614414 0)
(0.979112 0.00474072 0)
(0.982032 0.00430904 0)
(0.984242 0.00491699 0)
(0.985987 0.00544708 0)
(0.987297 0.00638644 0)
(0.987896 0.00689732 0)
(0.988293 0.00695406 0)
(0.988292 0.0066096 0)
(0.988165 0.0058126 0)
(0.988273 0.00451511 0)
(0.988012 0.00323053 0)
(0.991206 0.0013818 0)
(0.9764 0.0518896 0)
(0.97274 0.0502545 0)
(0.968802 0.0478052 0)
(0.965145 0.0435692 0)
(0.962616 0.0375787 0)
(0.961931 0.0308572 0)
(0.963048 0.0246174 0)
(0.965275 0.0194942 0)
(0.967913 0.0152725 0)
(0.970547 0.0115942 0)
(0.973247 0.00847201 0)
(0.976036 0.00622898 0)
(0.978915 0.00488482 0)
(0.981874 0.00452423 0)
(0.9841 0.00519144 0)
(0.985846 0.00574734 0)
(0.987158 0.0066698 0)
(0.987752 0.00712984 0)
(0.988151 0.00710498 0)
(0.988161 0.00666555 0)
(0.988055 0.00578137 0)
(0.98819 0.00441559 0)
(0.987974 0.00308802 0)
(0.991214 0.00122461 0)
(0.976358 0.0528133 0)
(0.972516 0.0511492 0)
(0.968379 0.048622 0)
(0.964565 0.0442271 0)
(0.961972 0.0380223 0)
(0.961331 0.0311244 0)
(0.962551 0.0247932 0)
(0.964872 0.0196393 0)
(0.967562 0.0153885 0)
(0.970229 0.0116722 0)
(0.97297 0.00853424 0)
(0.975805 0.0063222 0)
(0.978725 0.00504366 0)
(0.981722 0.00475799 0)
(0.983963 0.00548135 0)
(0.985708 0.00605758 0)
(0.98702 0.00695565 0)
(0.987607 0.0073596 0)
(0.988006 0.00724924 0)
(0.988028 0.00671215 0)
(0.987943 0.00574091 0)
(0.98811 0.0043075 0)
(0.98794 0.00294192 0)
(0.991226 0.0010651 0)
(0.976376 0.0537663 0)
(0.972335 0.0520758 0)
(0.96798 0.0494666 0)
(0.963997 0.0449008 0)
(0.961342 0.0384694 0)
(0.960747 0.0313876 0)
(0.962071 0.0249654 0)
(0.964481 0.0197807 0)
(0.967219 0.0154977 0)
(0.969916 0.0117409 0)
(0.972697 0.00858861 0)
(0.975576 0.00641165 0)
(0.978537 0.00520279 0)
(0.981568 0.00499495 0)
(0.983822 0.00577589 0)
(0.985564 0.00637166 0)
(0.986876 0.00724065 0)
(0.987457 0.00758232 0)
(0.98786 0.00737969 0)
(0.987896 0.00674131 0)
(0.987835 0.00568047 0)
(0.988034 0.00418202 0)
(0.987913 0.00278048 0)
(0.991245 0.000900226 0)
(0.97646 0.0547518 0)
(0.972199 0.0530369 0)
(0.967607 0.0503399 0)
(0.963441 0.0455891 0)
(0.960717 0.0389153 0)
(0.960175 0.031647 0)
(0.961609 0.025138 0)
(0.964108 0.0199235 0)
(0.96689 0.0156063 0)
(0.969616 0.0118084 0)
(0.972435 0.00864503 0)
(0.975359 0.00651028 0)
(0.978358 0.00537842 0)
(0.981422 0.0052506 0)
(0.983686 0.00608454 0)
(0.985424 0.00669522 0)
(0.986733 0.00752786 0)
(0.987307 0.00780053 0)
(0.987712 0.00750239 0)
(0.987763 0.00676051 0)
(0.987728 0.00561063 0)
(0.987962 0.00404848 0)
(0.987892 0.00261666 0)
(0.991269 0.000734723 0)
(0.976614 0.0557715 0)
(0.972112 0.0540349 0)
(0.96726 0.051245 0)
(0.962899 0.0462951 0)
(0.960106 0.0393645 0)
(0.959621 0.0319027 0)
(0.961165 0.0253081 0)
(0.963749 0.0200627 0)
(0.96657 0.0157074 0)
(0.969321 0.011866 0)
(0.972178 0.00869352 0)
(0.975146 0.00660587 0)
(0.978181 0.00555592 0)
(0.981275 0.00551122 0)
(0.983547 0.00639873 0)
(0.985279 0.00702253 0)
(0.986584 0.00781281 0)
(0.987153 0.00800846 0)
(0.987563 0.00760763 0)
(0.987631 0.00675861 0)
(0.987624 0.00551834 0)
(0.987896 0.00389674 0)
(0.987879 0.00243786 0)
(0.9913 0.000565006 0)
(0.976846 0.0568289 0)
(0.972078 0.0550731 0)
(0.966942 0.0521834 0)
(0.962368 0.0470171 0)
(0.959503 0.0398123 0)
(0.959082 0.0321548 0)
(0.960742 0.0254793 0)
(0.96341 0.0202031 0)
(0.966266 0.015806 0)
(0.96904 0.0119211 0)
(0.971934 0.0087449 0)
(0.974945 0.00671125 0)
(0.978016 0.00575045 0)
(0.981138 0.00579234 0)
(0.983415 0.00672871 0)
(0.985137 0.00735795 0)
(0.986437 0.00809683 0)
(0.986999 0.00821018 0)
(0.987412 0.00770356 0)
(0.987497 0.00674547 0)
(0.987521 0.00541658 0)
(0.987833 0.00373737 0)
(0.987872 0.00225752 0)
(0.991337 0.00039593 0)
(0.97716 0.0579252 0)
(0.9721 0.0561544 0)
(0.966654 0.0531586 0)
(0.961851 0.0477575 0)
(0.958915 0.040263 0)
(0.958563 0.0324038 0)
(0.960338 0.0256488 0)
(0.963085 0.0203394 0)
(0.965971 0.0158957 0)
(0.968765 0.0119656 0)
(0.971696 0.00878905 0)
(0.974749 0.00681522 0)
(0.977853 0.00594888 0)
(0.980999 0.00608059 0)
(0.983278 0.00706551 0)
(0.98499 0.00769673 0)
(0.986284 0.00837635 0)
(0.986841 0.00839806 0)
(0.98726 0.007778 0)
(0.987366 0.00670788 0)
(0.987424 0.00529034 0)
(0.987778 0.00355928 0)
(0.987874 0.00206267 0)
(0.991382 0.000223739 0)
(0.97756 0.0590639 0)
(0.972179 0.0572817 0)
(0.966395 0.0541717 0)
(0.961347 0.0485146 0)
(0.958336 0.0407113 0)
(0.958062 0.03265 0)
(0.959957 0.0258202 0)
(0.962781 0.020476 0)
(0.965692 0.0159821 0)
(0.968504 0.0120075 0)
(0.971472 0.0088367 0)
(0.974567 0.00693138 0)
(0.977702 0.00616738 0)
(0.980869 0.00638999 0)
(0.983148 0.00741684 0)
(0.984846 0.00804302 0)
(0.986131 0.00865467 0)
(0.986682 0.00857836 0)
(0.987106 0.00784209 0)
(0.987234 0.00665885 0)
(0.987327 0.00515511 0)
(0.987727 0.00337446 0)
(0.987883 0.00186759 0)
(0.991432 5.38774e-05 0)
(0.978049 0.0602462 0)
(0.972318 0.0584578 0)
(0.966166 0.0552263 0)
(0.960856 0.0492908 0)
(0.957773 0.0411617 0)
(0.957583 0.0328937 0)
(0.959598 0.0259906 0)
(0.962492 0.020608 0)
(0.965423 0.0160587 0)
(0.968251 0.0120388 0)
(0.971254 0.00887833 0)
(0.97439 0.00704861 0)
(0.977553 0.00639278 0)
(0.980739 0.00670886 0)
(0.983014 0.0077757 0)
(0.984697 0.00839191 0)
(0.985973 0.00892635 0)
(0.986519 0.00874113 0)
(0.986951 0.00788087 0)
(0.987104 0.00658235 0)
(0.987236 0.00499359 0)
(0.987684 0.00317058 0)
(0.987901 0.00165873 0)
(0.99149 -0.000117954 0)
(0.978629 0.061476 0)
(0.972515 0.0596865 0)
(0.965964 0.0563235 0)
(0.960374 0.0500835 0)
(0.957219 0.0416088 0)
(0.957124 0.0331354 0)
(0.959263 0.0261634 0)
(0.962224 0.0207393 0)
(0.96517 0.0161299 0)
(0.968013 0.0120667 0)
(0.971052 0.00892542 0)
(0.974227 0.00718026 0)
(0.977416 0.00663967 0)
(0.980616 0.00705078 0)
(0.982884 0.00815061 0)
(0.98455 0.00874714 0)
(0.985815 0.0091944 0)
(0.986354 0.00889517 0)
(0.986794 0.00790883 0)
(0.986974 0.00649372 0)
(0.987148 0.00482292 0)
(0.987647 0.00296006 0)
(0.987928 0.00144997 0)
(0.991553 -0.000286604 0)
(0.9793 0.0627541 0)
(0.97277 0.060971 0)
(0.965787 0.0574666 0)
(0.9599 0.0508941 0)
(0.956679 0.0420566 0)
(0.956687 0.0333753 0)
(0.958949 0.0263354 0)
(0.96197 0.0208643 0)
(0.964927 0.0161893 0)
(0.967782 0.0120836 0)
(0.970856 0.0089683 0)
(0.97407 0.00731605 0)
(0.977283 0.0068967 0)
(0.980493 0.00740482 0)
(0.982751 0.00853409 0)
(0.984397 0.00910406 0)
(0.98565 0.00945324 0)
(0.986185 0.00902773 0)
(0.986637 0.00790733 0)
(0.986846 0.00637422 0)
(0.987065 0.00462388 0)
(0.987617 0.00272995 0)
(0.987964 0.00122798 0)
(0.991625 -0.000456268 0)
(0.980064 0.0640835 0)
(0.973081 0.0623149 0)
(0.96563 0.0586565 0)
(0.959428 0.0517191 0)
(0.956145 0.042499 0)
(0.956269 0.0336137 0)
(0.95866 0.0265092 0)
(0.961737 0.020986 0)
(0.964701 0.0162418 0)
(0.967567 0.0120977 0)
(0.970677 0.00901826 0)
(0.973927 0.0074699 0)
(0.97716 0.00717961 0)
(0.980377 0.00778354 0)
(0.982621 0.00893312 0)
(0.984244 0.00946695 0)
(0.985484 0.00970874 0)
(0.986014 0.00915139 0)
(0.986477 0.00789405 0)
(0.986717 0.00624225 0)
(0.986984 0.00441588 0)
(0.987594 0.002494 0)
(0.988009 0.00100737 0)
(0.991702 -0.00062122 0)
(0.980921 0.0654647 0)
(0.973446 0.0637211 0)
(0.96549 0.0598958 0)
(0.958957 0.0525596 0)
(0.955623 0.0429405 0)
(0.955874 0.0338507 0)
(0.95839 0.0266815 0)
(0.961516 0.021099 0)
(0.964482 0.0162807 0)
(0.967359 0.0121013 0)
(0.970503 0.00906663 0)
(0.97379 0.00763197 0)
(0.97704 0.00747727 0)
(0.980259 0.00817791 0)
(0.982486 0.00934179 0)
(0.984085 0.0098303 0)
(0.985311 0.00995233 0)
(0.985838 0.00924931 0)
(0.986316 0.00784684 0)
(0.986591 0.00607616 0)
(0.986911 0.00417779 0)
(0.98758 0.00223836 0)
(0.988064 0.000774553 0)
(0.991787 -0.000785943 0)
(0.98187 0.0669015 0)
(0.97386 0.0651942 0)
(0.96536 0.061185 0)
(0.95848 0.0534114 0)
(0.955102 0.0433751 0)
(0.955495 0.0340867 0)
(0.958141 0.0268543 0)
(0.961313 0.0212059 0)
(0.964279 0.0163095 0)
(0.967167 0.0121016 0)
(0.970346 0.00912539 0)
(0.973666 0.00781569 0)
(0.97693 0.00780345 0)
(0.980147 0.00859993 0)
(0.982353 0.00976856 0)
(0.983925 0.0101997 0)
(0.985135 0.0101912 0)
(0.985659 0.00933697 0)
(0.986152 0.0077872 0)
(0.986465 0.00589645 0)
(0.98684 0.00393006 0)
(0.987573 0.00197662 0)
(0.98813 0.00054313 0)
(0.991877 -0.000945172 0)
(0.982905 0.0683942 0)
(0.97432 0.0667395 0)
(0.965234 0.0625275 0)
(0.957993 0.0542752 0)
(0.954589 0.0438071 0)
(0.955137 0.0343219 0)
(0.95791 0.0270237 0)
(0.961119 0.0213003 0)
(0.964081 0.0163218 0)
(0.96698 0.0120912 0)
(0.970194 0.00918584 0)
(0.973546 0.00801268 0)
(0.976821 0.00814952 0)
(0.980031 0.00904168 0)
(0.982213 0.0102069 0)
(0.983756 0.0105685 0)
(0.984951 0.0104141 0)
(0.985474 0.00939342 0)
(0.985987 0.00768889 0)
(0.986342 0.00567932 0)
(0.986777 0.00365072 0)
(0.987576 0.00169519 0)
(0.988207 0.000300521 0)
(0.991975 -0.00110318 0)
(0.984019 0.0699453 0)
(0.974815 0.0683618 0)
(0.9651 0.0639233 0)
(0.957486 0.0551463 0)
(0.954072 0.0442311 0)
(0.954791 0.0345562 0)
(0.957695 0.0271905 0)
(0.96094 0.0213832 0)
(0.963896 0.0163209 0)
(0.966807 0.0120783 0)
(0.970056 0.0092597 0)
(0.973439 0.00823694 0)
(0.97672 0.00853073 0)
(0.979919 0.009515 0)
(0.982073 0.0106654 0)
(0.983585 0.0109443 0)
(0.984762 0.0106322 0)
(0.985285 0.0094392 0)
(0.985818 0.00757665 0)
(0.986219 0.00544853 0)
(0.986718 0.00336268 0)
(0.987587 0.00140899 0)
(0.988295 6.07693e-05 0)
(0.992079 -0.00125456 0)
(0.985193 0.0715534 0)
(0.975332 0.0700658 0)
(0.964948 0.0653744 0)
(0.956954 0.056025 0)
(0.953555 0.0446523 0)
(0.95446 0.03479 0)
(0.957492 0.0273505 0)
(0.960765 0.0214484 0)
(0.963715 0.0163004 0)
(0.966637 0.0120556 0)
(0.969922 0.00933938 0)
(0.973334 0.00848088 0)
(0.976619 0.00893884 0)
(0.979801 0.0100135 0)
(0.981923 0.0111377 0)
(0.983403 0.0113182 0)
(0.984564 0.0108307 0)
(0.985089 0.00944878 0)
(0.985648 0.00742118 0)
(0.986099 0.00517784 0)
(0.986665 0.00304243 0)
(0.987608 0.00110389 0)
(0.988394 -0.000188502 0)
(0.992189 -0.00140348 0)
(0.986405 0.07322 0)
(0.975849 0.0718567 0)
(0.964755 0.0668791 0)
(0.956381 0.0569061 0)
(0.953022 0.0450658 0)
(0.954136 0.0350234 0)
(0.957299 0.0275039 0)
(0.960598 0.0214964 0)
(0.963541 0.0162622 0)
(0.966479 0.0120293 0)
(0.9698 0.00943668 0)
(0.973238 0.00875788 0)
(0.976522 0.0093868 0)
(0.979683 0.0105482 0)
(0.981771 0.0116341 0)
(0.983216 0.0117007 0)
(0.984358 0.0110243 0)
(0.984887 0.00944658 0)
(0.985473 0.00725181 0)
(0.985979 0.00489244 0)
(0.986619 0.00271259 0)
(0.98764 0.000793659 0)
(0.988506 -0.000435039 0)
(0.992306 -0.00154493 0)
(0.987618 0.0749427 0)
(0.976338 0.0737424 0)
(0.964501 0.068439 0)
(0.955755 0.0577897 0)
(0.952476 0.0454764 0)
(0.953814 0.0352557 0)
(0.957108 0.0276451 0)
(0.960428 0.0215198 0)
(0.963366 0.0161998 0)
(0.966321 0.0119929 0)
(0.969679 0.00954433 0)
(0.973142 0.00906194 0)
(0.976421 0.00986928 0)
(0.979557 0.011114 0)
(0.981605 0.012147 0)
(0.983015 0.0120805 0)
(0.984141 0.0111947 0)
(0.984676 0.00940316 0)
(0.985295 0.00703547 0)
(0.98586 0.00456471 0)
(0.986579 0.00234975 0)
(0.987681 0.000465031 0)
(0.98863 -0.000689763 0)
(0.992429 -0.00168268 0)
(0.988793 0.0767196 0)
(0.97676 0.0757275 0)
(0.964149 0.0700504 0)
(0.95505 0.0586705 0)
(0.951892 0.0458801 0)
(0.953483 0.0354855 0)
(0.956913 0.0277716 0)
(0.960256 0.0215159 0)
(0.963191 0.0161141 0)
(0.966169 0.0119536 0)
(0.969566 0.00967358 0)
(0.973051 0.0094068 0)
(0.976321 0.0104012 0)
(0.979426 0.0117234 0)
(0.981432 0.0126891 0)
(0.982804 0.0124714 0)
(0.983913 0.0113614 0)
(0.984457 0.00934914 0)
(0.985113 0.00680388 0)
(0.985742 0.00422218 0)
(0.986545 0.00197809 0)
(0.987734 0.000132683 0)
(0.988768 -0.000940248 0)
(0.992557 -0.00181176 0)
(0.989896 0.0785433 0)
(0.977082 0.0778189 0)
(0.963666 0.0717117 0)
(0.954246 0.059548 0)
(0.951266 0.0462824 0)
(0.953133 0.0357119 0)
(0.9567 0.0278767 0)
(0.960067 0.0214765 0)
(0.963005 0.0159969 0)
(0.966009 0.0119035 0)
(0.969446 0.00981782 0)
(0.972953 0.00978726 0)
(0.976211 0.0109778 0)
(0.979279 0.0123723 0)
(0.981241 0.0132518 0)
(0.982576 0.0128598 0)
(0.983669 0.0115022 0)
(0.984226 0.00925039 0)
(0.984924 0.00652192 0)
(0.985625 0.00383607 0)
(0.986518 0.00157376 0)
(0.987798 -0.000216776 0)
(0.988918 -0.00119698 0)
(0.99269 -0.00193596 0)
(0.990951 0.0804151 0)
(0.977294 0.0800238 0)
(0.963023 0.0734158 0)
(0.953314 0.060417 0)
(0.950568 0.0466808 0)
(0.952744 0.0359337 0)
(0.95646 0.0279573 0)
(0.959856 0.0213982 0)
(0.962806 0.0158465 0)
(0.965845 0.0118448 0)
(0.969325 0.00998531 0)
(0.972851 0.0102137 0)
(0.976093 0.0116096 0)
(0.979121 0.0130708 0)
(0.981035 0.0138494 0)
(0.982331 0.0132636 0)
(0.983409 0.011642 0)
(0.983983 0.00914048 0)
(0.984729 0.00622496 0)
(0.985507 0.00343397 0)
(0.986498 0.00115925 0)
(0.987873 -0.000570645 0)
(0.989082 -0.00144985 0)
(0.992824 -0.00205124 0)
(0.99206 0.0823533 0)
(0.977452 0.0823679 0)
(0.962231 0.075165 0)
(0.952253 0.0612789 0)
(0.949797 0.0470804 0)
(0.952305 0.036151 0)
(0.956173 0.0280091 0)
(0.959606 0.0212746 0)
(0.962576 0.0156559 0)
(0.965659 0.0117697 0)
(0.969186 0.010167 0)
(0.972731 0.0106784 0)
(0.975955 0.0122899 0)
(0.978939 0.0138115 0)
(0.980804 0.0144677 0)
(0.982062 0.0136618 0)
(0.983129 0.011751 0)
(0.983725 0.00898045 0)
(0.984525 0.00587434 0)
(0.985389 0.0029867 0)
(0.986484 0.000711908 0)
(0.987959 -0.000940916 0)
(0.989258 -0.00170763 0)
(0.992952 -0.00216079 0)
(0.99327 0.0843734 0)
(0.977639 0.084891 0)
(0.961338 0.0769697 0)
(0.951085 0.0621345 0)
(0.948953 0.0474779 0)
(0.95181 0.0363596 0)
(0.955838 0.0280304 0)
(0.959314 0.0211077 0)
(0.962318 0.0154317 0)
(0.965454 0.0116892 0)
(0.969033 0.0103745 0)
(0.972597 0.0111921 0)
(0.975799 0.0130283 0)
(0.978737 0.0146026 0)
(0.98055 0.0151191 0)
(0.981772 0.0140709 0)
(0.982829 0.0118534 0)
(0.983452 0.00880562 0)
(0.984313 0.00550331 0)
(0.985269 0.0025217 0)
(0.986474 0.00025469 0)
(0.988051 -0.00131439 0)
(0.989438 -0.0019603 0)
(0.993051 -0.00226053 0)
(0.993863 0.0864047 0)
(0.977643 0.0876232 0)
(0.960335 0.0788599 0)
(0.949855 0.0630055 0)
(0.948081 0.0478812 0)
(0.951284 0.0365544 0)
(0.955461 0.0280141 0)
(0.958981 0.0208964 0)
(0.962028 0.0151787 0)
(0.965226 0.0116105 0)
(0.96886 0.0106155 0)
(0.972444 0.0117608 0)
(0.975622 0.0138262 0)
(0.97851 0.0154399 0)
(0.980272 0.0157878 0)
(0.981459 0.0144647 0)
(0.98251 0.0119131 0)
(0.983164 0.00857038 0)
(0.98409 0.00507075 0)
(0.985142 0.00200823 0)
(0.986458 -0.000235468 0)
(0.988131 -0.00170267 0)
(0.989593 -0.00221537 0)
(0.993067 -0.00235308 0)
(0.990587 0.0881065 0)
(0.975989 0.0904482 0)
(0.958713 0.0808228 0)
(0.948442 0.0639253 0)
(0.947176 0.0483124 0)
(0.950756 0.0367381 0)
(0.955081 0.027954 0)
(0.958646 0.0206368 0)
(0.961741 0.0149004 0)
(0.965007 0.0115457 0)
(0.968697 0.0109106 0)
(0.972297 0.0124076 0)
(0.975446 0.0147045 0)
(0.97828 0.0163419 0)
(0.979985 0.0164972 0)
(0.981133 0.0148716 0)
(0.982174 0.0119641 0)
(0.982856 0.00831299 0)
(0.983842 0.0046135 0)
(0.984982 0.00147246 0)
(0.986397 -0.000738001 0)
(0.988136 -0.00209394 0)
(0.98964 -0.00246398 0)
(0.992878 -0.00243442 0)
(0.974641 0.0886151 0)
(0.968079 0.0928725 0)
(0.954512 0.0826465 0)
(0.946118 0.0648677 0)
(0.945997 0.0488081 0)
(0.950157 0.0369514 0)
(0.954691 0.0278807 0)
(0.958326 0.0203492 0)
(0.961484 0.0146104 0)
(0.964826 0.011504 0)
(0.968572 0.0112664 0)
(0.972181 0.0131398 0)
(0.975292 0.0156699 0)
(0.978057 0.0173122 0)
(0.97969 0.017239 0)
(0.980783 0.0152718 0)
(0.981793 0.0119757 0)
(0.982477 0.00799593 0)
(0.983496 0.00409773 0)
(0.984689 0.000892058 0)
(0.986157 -0.00126752 0)
(0.987899 -0.00249353 0)
(0.989371 -0.00270824 0)
(0.99224 -0.00250433 0)
(0.928319 0.0862367 0)
(0.943662 0.0937197 0)
(0.942713 0.0836719 0)
(0.940602 0.0655572 0)
(0.943499 0.0492893 0)
(0.948996 0.0372086 0)
(0.954058 0.0278537 0)
(0.957911 0.0201107 0)
(0.961208 0.0143871 0)
(0.964662 0.0115566 0)
(0.968474 0.0117408 0)
(0.972084 0.0140033 0)
(0.975135 0.0167609 0)
(0.977798 0.0183863 0)
(0.979317 0.0180567 0)
(0.9803 0.0157144 0)
(0.981217 0.0120034 0)
(0.981835 0.0076807 0)
(0.98281 0.0035761 0)
(0.983969 0.000308344 0)
(0.985397 -0.00179035 0)
(0.987024 -0.00287924 0)
(0.988353 -0.00293255 0)
(0.990723 -0.00255464 0)
(0.823621 0.0782272 0)
(0.884895 0.0908212 0)
(0.913437 0.0825682 0)
(0.926725 0.0653095 0)
(0.936928 0.0494179 0)
(0.945708 0.0373558 0)
(0.95222 0.0278265 0)
(0.956767 0.0199395 0)
(0.960462 0.0142827 0)
(0.964164 0.0117666 0)
(0.968104 0.0123959 0)
(0.971726 0.015054 0)
(0.974684 0.0180247 0)
(0.977176 0.0196036 0)
(0.978487 0.0189755 0)
(0.979243 0.0162142 0)
(0.979935 0.012052 0)
(0.980344 0.00736454 0)
(0.98113 0.00304972 0)
(0.982104 -0.000271005 0)
(0.983352 -0.00229807 0)
(0.984724 -0.00323904 0)
(0.985799 -0.00312695 0)
(0.987673 -0.00257796 0)
(0.629529 0.0611781 0)
(0.76829 0.0809167 0)
(0.851334 0.0771851 0)
(0.895157 0.0629686 0)
(0.920577 0.0485866 0)
(0.936624 0.037052 0)
(0.946663 0.0276002 0)
(0.953049 0.0197226 0)
(0.957802 0.0142354 0)
(0.962132 0.0121016 0)
(0.966393 0.0132182 0)
(0.970092 0.0162904 0)
(0.972922 0.0194725 0)
(0.975133 0.0209932 0)
(0.976071 0.020053 0)
(0.976394 0.0168528 0)
(0.976643 0.0122195 0)
(0.976623 0.00714873 0)
(0.977028 0.00261203 0)
(0.977654 -0.000771061 0)
(0.97862 -0.00273202 0)
(0.979691 -0.00353131 0)
(0.980535 -0.00326381 0)
(0.982258 -0.00255858 0)
(0.349711 0.0341664 0)
(0.579056 0.0603145 0)
(0.739396 0.0646047 0)
(0.832645 0.0568627 0)
(0.88498 0.0459059 0)
(0.914914 0.0358081 0)
(0.932237 0.0268745 0)
(0.942678 0.0192439 0)
(0.949837 0.0140594 0)
(0.955605 0.0123761 0)
(0.960638 0.0140115 0)
(0.964612 0.0175166 0)
(0.967327 0.0209244 0)
(0.969131 0.0224051 0)
(0.96948 0.0211736 0)
(0.969121 0.0175527 0)
(0.968682 0.0124647 0)
(0.968049 0.00702491 0)
(0.967993 0.00228071 0)
(0.968291 -0.00115651 0)
(0.969145 -0.00305414 0)
(0.970211 -0.00372074 0)
(0.971191 -0.00331814 0)
(0.973688 -0.00248092 0)
(0.0813387 0.0109111 0)
(0.334418 0.0292054 0)
(0.566543 0.0426227 0)
(0.724089 0.0453156 0)
(0.817065 0.040439 0)
(0.870015 0.0331601 0)
(0.900329 0.025435 0)
(0.918416 0.018393 0)
(0.930271 0.0136445 0)
(0.938919 0.0124073 0)
(0.94558 0.0144854 0)
(0.950272 0.018349 0)
(0.953043 0.0219496 0)
(0.954432 0.0234221 0)
(0.954076 0.0219946 0)
(0.952955 0.0180742 0)
(0.951843 0.0126572 0)
(0.950795 0.00695607 0)
(0.950692 0.00207591 0)
(0.951255 -0.00137867 0)
(0.95277 -0.00320559 0)
(0.954746 -0.00375821 0)
(0.956744 -0.00325843 0)
(0.961594 -0.00232757 0)
(-0.109826 -0.00069357 0)
(0.0375476 -0.0199917 0)
(0.31419 0.00540899 0)
(0.54987 0.0252566 0)
(0.699709 0.030568 0)
(0.787552 0.0282353 0)
(0.838754 0.0228676 0)
(0.869681 0.0170411 0)
(0.889651 0.0129879 0)
(0.903423 0.0121608 0)
(0.913148 0.0144526 0)
(0.919457 0.0183998 0)
(0.922918 0.0219906 0)
(0.9244 0.0233967 0)
(0.9238 0.0218727 0)
(0.922597 0.0178669 0)
(0.921685 0.0123878 0)
(0.921363 0.00668498 0)
(0.922573 0.00187208 0)
(0.924874 -0.00147283 0)
(0.928577 -0.00317618 0)
(0.933003 -0.00362082 0)
(0.937317 -0.00306872 0)
(0.946464 -0.00209013 0)
(-0.205778 -0.0277142 0)
(-0.081375 -0.0532463 0)
(0.0458302 -0.0342389 0)
(0.310694 -0.00234438 0)
(0.523686 0.0155293 0)
(0.656304 0.0202826 0)
(0.73628 0.0186363 0)
(0.785753 0.0149479 0)
(0.817886 0.0120931 0)
(0.839712 0.0117337 0)
(0.854723 0.0139278 0)
(0.864452 0.0174723 0)
(0.870358 0.0206188 0)
(0.873758 0.0217322 0)
(0.874805 0.0201577 0)
(0.875693 0.0163552 0)
(0.877254 0.0112285 0)
(0.879984 0.00595041 0)
(0.884751 0.00154876 0)
(0.890846 -0.00147127 0)
(0.898533 -0.00295484 0)
(0.907023 -0.00329138 0)
(0.914855 -0.00274289 0)
(0.929883 -0.00177012 0)
(-0.164923 -0.00484975 0)
(-0.0246944 -0.0505965 0)
(0.0129409 -0.0450755 0)
(0.131609 -0.0251243 0)
(0.327172 -0.00287434 0)
(0.490277 0.00923179 0)
(0.597021 0.0127533 0)
(0.66629 0.0123639 0)
(0.712896 0.0113572 0)
(0.745541 0.0115256 0)
(0.768871 0.0131776 0)
(0.785239 0.0156015 0)
(0.79705 0.0176188 0)
(0.805957 0.0180273 0)
(0.812187 0.0163599 0)
(0.818563 0.0130959 0)
(0.825626 0.00884585 0)
(0.833921 0.00455612 0)
(0.844165 0.00101782 0)
(0.855493 -0.00139818 0)
(0.868108 -0.00254528 0)
(0.881357 -0.00277416 0)
(0.893058 -0.00229107 0)
(0.914337 -0.00138241 0)
(-0.140088 -0.00267793 0)
(0.073203 -0.0488931 0)
(0.130637 -0.045244 0)
(0.177445 -0.0345177 0)
(0.255317 -0.0180689 0)
(0.364662 -0.00239048 0)
(0.465734 0.00666913 0)
(0.541074 0.0104705 0)
(0.597193 0.011655 0)
(0.640166 0.0120186 0)
(0.673696 0.0123042 0)
(0.699774 0.0126109 0)
(0.720867 0.0126925 0)
(0.738624 0.0120285 0)
(0.753195 0.0103378 0)
(0.767411 0.00806289 0)
(0.781628 0.00528195 0)
(0.796253 0.00256468 0)
(0.811941 0.000330952 0)
(0.828026 -0.00122396 0)
(0.844681 -0.00194079 0)
(0.861704 -0.00207336 0)
(0.876324 -0.00172552 0)
(0.902511 -0.000941368 0)
(0.00831151 -0.0308632 0)
(0.164644 -0.0545797 0)
(0.253159 -0.0473685 0)
(0.305196 -0.0359015 0)
(0.342357 -0.0231608 0)
(0.381474 -0.00953031 0)
(0.428034 0.00213573 0)
(0.479608 0.00944439 0)
(0.528327 0.0124966 0)
(0.572341 0.0124222 0)
(0.611242 0.0105139 0)
(0.644727 0.00797179 0)
(0.673552 0.00570915 0)
(0.698996 0.00398191 0)
(0.721122 0.00256239 0)
(0.741707 0.00173166 0)
(0.761385 0.000912671 0)
(0.78014 0.000205919 0)
(0.798707 -0.000409639 0)
(0.816919 -0.000925075 0)
(0.83492 -0.00115089 0)
(0.853149 -0.00120371 0)
(0.868564 -0.00105093 0)
(0.896745 -0.000449816 0)
(0.142167 -0.0522628 0)
(0.282764 -0.0645859 0)
(0.373523 -0.0520524 0)
(0.437052 -0.0371404 0)
(0.479055 -0.0237088 0)
(0.506154 -0.0117683 0)
(0.525723 -0.000908633 0)
(0.544255 0.00750517 0)
(0.568073 0.0115445 0)
(0.596443 0.0109725 0)
(0.626881 0.00717035 0)
(0.656759 0.00220212 0)
(0.684113 -0.00201095 0)
(0.709485 -0.00448611 0)
(0.732787 -0.00539097 0)
(0.753918 -0.00468175 0)
(0.77403 -0.00346914 0)
(0.79237 -0.00211297 0)
(0.809704 -0.00106869 0)
(0.826327 -0.000511127 0)
(0.842259 -0.000230916 0)
(0.858486 -0.00021355 0)
(0.872131 -0.0002889 0)
(0.898578 8.52615e-05 0)
(0.293176 -0.0731781 0)
(0.422121 -0.0775106 0)
(0.504034 -0.0582395 0)
(0.565127 -0.0395795 0)
(0.612717 -0.0248951 0)
(0.646151 -0.0134516 0)
(0.667087 -0.00369321 0)
(0.679655 0.00412949 0)
(0.689835 0.0082486 0)
(0.701854 0.00760939 0)
(0.716893 0.00315332 0)
(0.733911 -0.00288611 0)
(0.75059 -0.00810559 0)
(0.767357 -0.0109802 0)
(0.784165 -0.011465 0)
(0.799428 -0.00965179 0)
(0.814641 -0.00690202 0)
(0.828296 -0.00391907 0)
(0.840994 -0.00151858 0)
(0.853151 -4.24485e-05 0)
(0.864551 0.00069536 0)
(0.876411 0.00078171 0)
(0.886358 0.000492024 0)
(0.907879 0.000632381 0)
(0.467226 -0.0916755 0)
(0.568764 -0.0896799 0)
(0.634541 -0.0655989 0)
(0.685402 -0.0433564 0)
(0.728297 -0.0271649 0)
(0.76079 -0.0156278 0)
(0.782131 -0.00648952 0)
(0.794986 0.0006561 0)
(0.803501 0.0045212 0)
(0.810756 0.00405227 0)
(0.81841 -0.000141067 0)
(0.82658 -0.00606045 0)
(0.834093 -0.0113361 0)
(0.841938 -0.0142488 0)
(0.8505 -0.014533 0)
(0.858192 -0.0122412 0)
(0.866706 -0.00872955 0)
(0.874319 -0.00484329 0)
(0.8815 -0.00162852 0)
(0.88853 0.000445542 0)
(0.894971 0.00150755 0)
(0.901913 0.00165353 0)
(0.907646 0.00119769 0)
(0.922718 0.00113812 0)
(0.637306 -0.105903 0)
(0.702598 -0.0989358 0)
(0.746595 -0.0722195 0)
(0.783007 -0.0472958 0)
(0.816089 -0.0296633 0)
(0.842378 -0.0178111 0)
(0.86032 -0.00898194 0)
(0.871667 -0.00221949 0)
(0.87943 0.00157679 0)
(0.885664 0.00151627 0)
(0.891356 -0.0019979 0)
(0.896433 -0.00723533 0)
(0.900175 -0.012053 0)
(0.903583 -0.0147725 0)
(0.907089 -0.0150147 0)
(0.909828 -0.0127016 0)
(0.913456 -0.00907503 0)
(0.916566 -0.00495642 0)
(0.919651 -0.0014681 0)
(0.922828 0.000849085 0)
(0.925565 0.00207661 0)
(0.928682 0.00227764 0)
(0.931021 0.00173026 0)
(0.940062 0.00154716 0)
(0.774667 -0.114693 0)
(0.807441 -0.10462 0)
(0.829847 -0.0773031 0)
(0.851061 -0.0506257 0)
(0.873643 -0.0317343 0)
(0.893274 -0.0194899 0)
(0.907445 -0.0107948 0)
(0.916914 -0.00422075 0)
(0.923765 -0.000300542 0)
(0.929454 0.000191418 0)
(0.934582 -0.002513 0)
(0.93883 -0.0069291 0)
(0.941618 -0.0111624 0)
(0.943678 -0.0136676 0)
(0.945157 -0.013998 0)
(0.945826 -0.0119361 0)
(0.947061 -0.0085848 0)
(0.947885 -0.00465173 0)
(0.948868 -0.00124694 0)
(0.949999 0.00106825 0)
(0.950816 0.00235558 0)
(0.951819 0.00261378 0)
(0.952215 0.00205308 0)
(0.956905 0.00183087 0)
(0.868619 -0.118559 0)
(0.877955 -0.106692 0)
(0.883553 -0.0802592 0)
(0.892544 -0.0529564 0)
(0.906839 -0.03325 0)
(0.921479 -0.020665 0)
(0.932968 -0.0119948 0)
(0.941142 -0.00547017 0)
(0.947388 -0.00133372 0)
(0.952801 -0.000280928 0)
(0.957785 -0.00221925 0)
(0.9619 -0.00590267 0)
(0.96465 -0.00963225 0)
(0.966561 -0.0120051 0)
(0.967491 -0.0125342 0)
(0.967622 -0.0108464 0)
(0.968016 -0.00793921 0)
(0.968018 -0.00437778 0)
(0.968263 -0.00121986 0)
(0.968657 0.00100514 0)
(0.968874 0.00232329 0)
(0.969154 0.00266765 0)
(0.968898 0.00216912 0)
(0.971176 0.00198867 0)
(0.924386 -0.119262 0)
(0.919173 -0.106344 0)
(0.914088 -0.081418 0)
(0.915175 -0.0542679 0)
(0.924121 -0.0341296 0)
(0.93566 -0.0213062 0)
(0.945586 -0.0126518 0)
(0.953059 -0.00616295 0)
(0.959018 -0.00184407 0)
(0.964355 -0.000330569 0)
(0.969381 -0.00164238 0)
(0.973605 -0.00475384 0)
(0.976573 -0.00810964 0)
(0.978689 -0.0104322 0)
(0.97962 -0.0112043 0)
(0.979789 -0.00991453 0)
(0.980015 -0.00747721 0)
(0.979853 -0.00431759 0)
(0.97997 -0.00143209 0)
(0.980243 0.000691474 0)
(0.980489 0.00204232 0)
(0.980792 0.00250259 0)
(0.980648 0.00212281 0)
(0.982032 0.00204519 0)
(0.953537 -0.118223 0)
(0.940481 -0.104572 0)
(0.929894 -0.0812479 0)
(0.926725 -0.0547475 0)
(0.9326 -0.0344917 0)
(0.942354 -0.0215492 0)
(0.95143 -0.012956 0)
(0.958557 -0.00655123 0)
(0.964396 -0.00213517 0)
(0.969735 -0.000286243 0)
(0.974856 -0.00110793 0)
(0.979248 -0.00377253 0)
(0.982478 -0.00684737 0)
(0.984867 -0.00915545 0)
(0.98597 -0.0101682 0)
(0.986331 -0.00924504 0)
(0.986618 -0.00724353 0)
(0.986506 -0.00446359 0)
(0.986681 -0.00182992 0)
(0.987014 0.000205953 0)
(0.987446 0.00160095 0)
(0.988002 0.00219616 0)
(0.988238 0.00196682 0)
(0.989606 0.00203136 0)
(0.967156 -0.116236 0)
(0.950555 -0.102046 0)
(0.937822 -0.0802315 0)
(0.9327 -0.0547056 0)
(0.936848 -0.0345878 0)
(0.945524 -0.021634 0)
(0.954098 -0.0131443 0)
(0.961033 -0.00686124 0)
(0.966802 -0.00240581 0)
(0.972144 -0.000298192 0)
(0.97734 -0.000712901 0)
(0.981881 -0.00299754 0)
(0.985335 -0.00583248 0)
(0.987969 -0.00812614 0)
(0.98927 -0.00934428 0)
(0.989837 -0.00874462 0)
(0.99024 -0.00713151 0)
(0.990224 -0.00469353 0)
(0.990476 -0.00228286 0)
(0.990873 -0.000328783 0)
(0.991451 0.00110314 0)
(0.992233 0.0018298 0)
(0.99283 0.00175678 0)
(0.994548 0.0019784 0)
(0.973042 -0.113692 0)
(0.955256 -0.0991834 0)
(0.942104 -0.0787652 0)
(0.936206 -0.0544138 0)
(0.939287 -0.0346154 0)
(0.9472 -0.0217128 0)
(0.955411 -0.0133347 0)
(0.962205 -0.00718005 0)
(0.96791 -0.00271302 0)
(0.973231 -0.000393567 0)
(0.978464 -0.000452951 0)
(0.983109 -0.00239225 0)
(0.986735 -0.00500194 0)
(0.989566 -0.00726593 0)
(0.991046 -0.00865492 0)
(0.99179 -0.0083333 0)
(0.992304 -0.00706573 0)
(0.992372 -0.00494432 0)
(0.992675 -0.00273626 0)
(0.993095 -0.000863138 0)
(0.993738 0.000598908 0)
(0.994648 0.00144597 0)
(0.995485 0.0015233 0)
(0.997615 0.00190414 0)
(0.975594 -0.11082 0)
(0.95774 -0.0962486 0)
(0.944871 -0.0771239 0)
(0.938708 -0.0540439 0)
(0.941018 -0.0346767 0)
(0.948293 -0.0218485 0)
(0.956182 -0.0135601 0)
(0.962843 -0.00751553 0)
(0.968476 -0.00304039 0)
(0.973754 -0.000533145 0)
(0.978986 -0.000272145 0)
(0.983696 -0.00188928 0)
(0.987447 -0.00428054 0)
(0.990431 -0.00650247 0)
(0.992062 -0.00802895 0)
(0.992951 -0.00794938 0)
(0.99356 -0.00699074 0)
(0.993692 -0.00515611 0)
(0.994021 -0.00313617 0)
(0.99443 -0.00134862 0)
(0.995073 0.000127396 0)
(0.99602 0.00107612 0)
(0.996977 0.00128899 0)
(0.999456 0.00182124 0)
(0.976868 -0.107797 0)
(0.959404 -0.0933995 0)
(0.947026 -0.0754627 0)
(0.940797 -0.0536667 0)
(0.942474 -0.0347898 0)
(0.949161 -0.0220362 0)
(0.956739 -0.0138048 0)
(0.963266 -0.00784557 0)
(0.968822 -0.0033637 0)
(0.974042 -0.000691293 0)
(0.979252 -0.000145268 0)
(0.983997 -0.00146464 0)
(0.987841 -0.00364589 0)
(0.990946 -0.00581357 0)
(0.992705 -0.00745268 0)
(0.993711 -0.00758275 0)
(0.994397 -0.00690302 0)
(0.994576 -0.00533852 0)
(0.99491 -0.00349674 0)
(0.995285 -0.00179642 0)
(0.995885 -0.00031406 0)
(0.996811 0.000720952 0)
(0.9978 0.00105645 0)
(1.00054 0.00173147 0)
(0.977658 -0.104741 0)
(0.960763 -0.0906994 0)
(0.948899 -0.0738389 0)
(0.942681 -0.0532868 0)
(0.943811 -0.0349336 0)
(0.949939 -0.022253 0)
(0.957204 -0.0140485 0)
(0.963592 -0.00815125 0)
(0.969066 -0.00366248 0)
(0.974219 -0.000841587 0)
(0.979392 -3.97724e-05 0)
(0.984155 -0.00108469 0)
(0.98807 -0.00306505 0)
(0.991272 -0.00517146 0)
(0.993139 -0.00689997 0)
(0.994247 -0.00721647 0)
(0.994998 -0.00678889 0)
(0.995212 -0.00546789 0)
(0.995542 -0.00379792 0)
(0.995872 -0.00218966 0)
(0.99641 -0.000714948 0)
(0.997279 0.000389457 0)
(0.998246 0.000831477 0)
(1.00117 0.00163794 0)
(0.978226 -0.101718 0)
(0.961971 -0.0881541 0)
(0.950592 -0.0722623 0)
(0.944426 -0.0528883 0)
(0.945071 -0.0350795 0)
(0.950666 -0.0224763 0)
(0.957618 -0.0142778 0)
(0.963865 -0.00842557 0)
(0.969258 -0.00393399 0)
(0.974344 -0.000988639 0)
(0.979473 3.9055e-05 0)
(0.984242 -0.000754834 0)
(0.988212 -0.0025445 0)
(0.991496 -0.00458066 0)
(0.993458 -0.00637996 0)
(0.994655 -0.00685881 0)
(0.995461 -0.00665889 0)
(0.995703 -0.00556428 0)
(0.99602 -0.00406312 0)
(0.9963 -0.00254898 0)
(0.996767 -0.00108923 0)
(0.997564 7.20559e-05 0)
(0.998477 0.000609706 0)
(1.00153 0.00153869 0)
(0.978638 -0.0987521 0)
(0.96306 -0.0857415 0)
(0.952139 -0.0707254 0)
(0.946047 -0.0524563 0)
(0.94627 -0.0352092 0)
(0.951358 -0.0226958 0)
(0.957997 -0.0144906 0)
(0.964099 -0.00866954 0)
(0.969412 -0.0041766 0)
(0.974429 -0.00112364 0)
(0.979511 0.000106227 0)
(0.984277 -0.000455924 0)
(0.988289 -0.00206207 0)
(0.991643 -0.0040241 0)
(0.993689 -0.00587733 0)
(0.994967 -0.00649947 0)
(0.995824 -0.00650465 0)
(0.99609 -0.00561364 0)
(0.996396 -0.00427638 0)
(0.996627 -0.00286086 0)
(0.997021 -0.00142889 0)
(0.997739 -0.000224372 0)
(0.998583 0.000395319 0)
(1.00172 0.00143606 0)
(0.978917 -0.0958529 0)
(0.964033 -0.0834378 0)
(0.953547 -0.069222 0)
(0.947551 -0.0519846 0)
(0.947405 -0.0353109 0)
(0.952016 -0.0229052 0)
(0.958346 -0.0146879 0)
(0.964305 -0.0088884 0)
(0.96954 -0.00439802 0)
(0.974491 -0.00125694 0)
(0.979524 0.000150652 0)
(0.98428 -0.000200778 0)
(0.988326 -0.00163123 0)
(0.99174 -0.00351168 0)
(0.993865 -0.00540329 0)
(0.995218 -0.00614747 0)
(0.996122 -0.00633854 0)
(0.99641 -0.00563884 0)
(0.9967 -0.00446273 0)
(0.996884 -0.00314625 0)
(0.997206 -0.00174737 0)
(0.997844 -0.000509949 0)
(0.998611 0.000183589 0)
(1.00182 0.00132811 0)
(0.979067 -0.0930243 0)
(0.964889 -0.0812252 0)
(0.954824 -0.0677495 0)
(0.948942 -0.0514738 0)
(0.948482 -0.0353823 0)
(0.952646 -0.0231045 0)
(0.958672 -0.0148732 0)
(0.964484 -0.00908593 0)
(0.969643 -0.00459898 0)
(0.974529 -0.00138195 0)
(0.979513 0.000185764 0)
(0.984252 2.93476e-05 0)
(0.988322 -0.00123009 0)
(0.991789 -0.00302605 0)
(0.993986 -0.0049422 0)
(0.995409 -0.0057935 0)
(0.996358 -0.00615367 0)
(0.996669 -0.00562894 0)
(0.996948 -0.00460764 0)
(0.99709 -0.0033914 0)
(0.997345 -0.0020356 0)
(0.997905 -0.000776455 0)
(0.998591 -2.09827e-05 0)
(1.00185 0.00121708 0)
(0.979101 -0.0902721 0)
(0.965631 -0.0790924 0)
(0.955977 -0.0663083 0)
(0.950224 -0.0509277 0)
(0.949498 -0.0354207 0)
(0.953248 -0.0232922 0)
(0.958977 -0.0150496 0)
(0.964645 -0.00926835 0)
(0.969729 -0.00478677 0)
(0.974554 -0.00150815 0)
(0.979487 0.000200843 0)
(0.984207 0.000221794 0)
(0.988296 -0.000874024 0)
(0.991809 -0.00257904 0)
(0.994073 -0.00450602 0)
(0.995561 -0.00544633 0)
(0.996553 -0.00596004 0)
(0.996885 -0.00560148 0)
(0.997154 -0.00473122 0)
(0.997255 -0.00361433 0)
(0.997447 -0.00230539 0)
(0.997932 -0.00103319 0)
(0.998537 -0.000222694 0)
(1.00183 0.00110148 0)
(0.979026 -0.0876013 0)
(0.966264 -0.0770333 0)
(0.957018 -0.0649014 0)
(0.951408 -0.0503533 0)
(0.950462 -0.0354288 0)
(0.95383 -0.0234698 0)
(0.95927 -0.0152199 0)
(0.964791 -0.00943802 0)
(0.969801 -0.00496014 0)
(0.974566 -0.00162774 0)
(0.979447 0.000210252 0)
(0.984143 0.000397369 0)
(0.988245 -0.000539339 0)
(0.991798 -0.00215312 0)
(0.994121 -0.00408014 0)
(0.99567 -0.00509617 0)
(0.996703 -0.00574935 0)
(0.997059 -0.0055446 0)
(0.997323 -0.00481867 0)
(0.99739 -0.00380238 0)
(0.997523 -0.00254772 0)
(0.997937 -0.00127129 0)
(0.99846 -0.00041652 0)
(1.00178 0.000983718 0)
(0.978864 -0.0850178 0)
(0.9668 -0.0750439 0)
(0.957958 -0.0635303 0)
(0.952505 -0.0497563 0)
(0.951378 -0.0354056 0)
(0.954395 -0.0236355 0)
(0.959556 -0.0153857 0)
(0.964931 -0.00959939 0)
(0.969868 -0.0051255 0)
(0.974574 -0.00174975 0)
(0.979403 0.00020283 0)
(0.984072 0.000542514 0)
(0.988182 -0.000243319 0)
(0.991769 -0.00176155 0)
(0.994148 -0.00367773 0)
(0.995753 -0.0047538 0)
(0.996825 -0.00553257 0)
(0.997204 -0.00547371 0)
(0.997462 -0.00488818 0)
(0.997497 -0.00397119 0)
(0.997577 -0.00277291 0)
(0.997923 -0.00149965 0)
(0.998368 -0.00060672 0)
(1.00171 0.000862343 0)
(0.978629 -0.0825258 0)
(0.967255 -0.0731232 0)
(0.958818 -0.0621978 0)
(0.953529 -0.0491436 0)
(0.952259 -0.0353554 0)
(0.954955 -0.0237899 0)
(0.959844 -0.0155472 0)
(0.96507 -0.00975208 0)
(0.969932 -0.00528025 0)
(0.97458 -0.00186627 0)
(0.979353 0.000193559 0)
(0.983991 0.000675785 0)
(0.988105 3.57602e-05 0)
(0.991718 -0.00138622 0)
(0.994145 -0.00328406 0)
(0.995803 -0.00441077 0)
(0.996913 -0.00530314 0)
(0.997317 -0.00537818 0)
(0.997574 -0.00492679 0)
(0.997584 -0.00410909 0)
(0.997615 -0.0029723 0)
(0.997898 -0.00170943 0)
(0.998265 -0.00078837 0)
(1.00162 0.00073923 0)
(0.978352 -0.0801288 0)
(0.967648 -0.0712695 0)
(0.959611 -0.0609039 0)
(0.954494 -0.0485189 0)
(0.953108 -0.0352773 0)
(0.955512 -0.0239313 0)
(0.960138 -0.0157054 0)
(0.965216 -0.00990007 0)
(0.970002 -0.00542999 0)
(0.974592 -0.00198552 0)
(0.97931 0.000168153 0)
(0.983913 0.00078146 0)
(0.988025 0.000277946 0)
(0.991659 -0.0010449 0)
(0.994129 -0.00291453 0)
(0.995835 -0.00407797 0)
(0.996981 -0.00507104 0)
(0.997409 -0.00527185 0)
(0.997665 -0.00495003 0)
(0.997651 -0.0042297 0)
(0.997637 -0.00315584 0)
(0.997862 -0.00190987 0)
(0.998155 -0.00096596 0)
(1.00152 0.000613338 0)
(0.978051 -0.0778281 0)
(0.967998 -0.0694826 0)
(0.960356 -0.0596505 0)
(0.955414 -0.0478887 0)
(0.953939 -0.035176 0)
(0.956075 -0.0240605 0)
(0.960445 -0.0158599 0)
(0.965371 -0.0100423 0)
(0.970079 -0.00557116 0)
(0.974609 -0.00209929 0)
(0.979269 0.00014046 0)
(0.983834 0.000878009 0)
(0.98794 0.00050586 0)
(0.991585 -0.000718598 0)
(0.99409 -0.00255403 0)
(0.995841 -0.0037456 0)
(0.997021 -0.00482826 0)
(0.997475 -0.00514501 0)
(0.997735 -0.00494583 0)
(0.997703 -0.00432269 0)
(0.99765 -0.00331607 0)
(0.99782 -0.00209297 0)
(0.998041 -0.00113479 0)
(1.00141 0.000486812 0)
(0.977753 -0.0756243 0)
(0.968323 -0.0677604 0)
(0.961066 -0.0584359 0)
(0.956299 -0.0472549 0)
(0.954753 -0.0350504 0)
(0.956644 -0.0241757 0)
(0.960769 -0.0160113 0)
(0.965542 -0.0101821 0)
(0.970169 -0.00570948 0)
(0.974639 -0.00221595 0)
(0.979241 9.8847e-05 0)
(0.983764 0.000950592 0)
(0.987859 0.0007014 0)
(0.991511 -0.000424739 0)
(0.994048 -0.00221788 0)
(0.995839 -0.00342507 0)
(0.997051 -0.00458549 0)
(0.997528 -0.00501032 0)
(0.997791 -0.00492846 0)
(0.997742 -0.00439982 0)
(0.997653 -0.00346164 0)
(0.997772 -0.00226712 0)
(0.997924 -0.00129916 0)
(1.00129 0.000359054 0)
(0.97747 -0.0735156 0)
(0.968635 -0.0661025 0)
(0.961752 -0.0572609 0)
(0.957158 -0.0466221 0)
(0.95556 -0.0349055 0)
(0.957226 -0.0242772 0)
(0.961112 -0.0161578 0)
(0.965729 -0.0103169 0)
(0.970272 -0.00584091 0)
(0.974679 -0.00232754 0)
(0.97922 5.67659e-05 0)
(0.983699 0.00101685 0)
(0.987778 0.000887016 0)
(0.99143 -0.000141811 0)
(0.993993 -0.00188866 0)
(0.995819 -0.00310584 0)
(0.997059 -0.00433482 0)
(0.99756 -0.0048581 0)
(0.997831 -0.00488765 0)
(0.99777 -0.00445209 0)
(0.99765 -0.00358523 0)
(0.997722 -0.00242405 0)
(0.997807 -0.00145407 0)
(1.00117 0.000231736 0)
(0.977218 -0.0714997 0)
(0.968943 -0.064506 0)
(0.962421 -0.0561226 0)
(0.957997 -0.0459907 0)
(0.956359 -0.0347398 0)
(0.957818 -0.0243637 0)
(0.961475 -0.0163 0)
(0.965936 -0.01045 0)
(0.970391 -0.00597074 0)
(0.974735 -0.00244197 0)
(0.979214 2.6458e-06 0)
(0.983645 0.00106123 0)
(0.987703 0.00104397 0)
(0.991353 0.000112542 0)
(0.993938 -0.00158138 0)
(0.995797 -0.0027994 0)
(0.997063 -0.00408682 0)
(0.997587 -0.00470047 0)
(0.997862 -0.00483577 0)
(0.99779 -0.00448992 0)
(0.997641 -0.00369487 0)
(0.997669 -0.00257175 0)
(0.997691 -0.00160357 0)
(1.00104 0.000104512 0)
(0.977001 -0.0695733 0)
(0.969256 -0.0629702 0)
(0.96308 -0.0550214 0)
(0.958821 -0.0453645 0)
(0.957155 -0.0345583 0)
(0.958426 -0.0244362 0)
(0.961859 -0.0164364 0)
(0.966162 -0.0105789 0)
(0.970525 -0.00609435 0)
(0.974802 -0.00255107 0)
(0.979217 -5.09236e-05 0)
(0.983597 0.00110497 0)
(0.987629 0.00119546 0)
(0.99127 0.000358449 0)
(0.993874 -0.00128034 0)
(0.995761 -0.00249478 0)
(0.997051 -0.00383239 0)
(0.997597 -0.00452859 0)
(0.997882 -0.00476327 0)
(0.997803 -0.00450622 0)
(0.997629 -0.00378485 0)
(0.997617 -0.00270305 0)
(0.997577 -0.00174276 0)
(1.00092 -2.11818e-05 0)
(0.976827 -0.0677328 0)
(0.969577 -0.0614919 0)
(0.963731 -0.0539541 0)
(0.959633 -0.044743 0)
(0.957946 -0.0343593 0)
(0.959043 -0.0244933 0)
(0.962263 -0.0165676 0)
(0.966408 -0.0107067 0)
(0.970677 -0.0062174 0)
(0.974885 -0.00266304 0)
(0.979235 -0.000115195 0)
(0.983561 0.00112895 0)
(0.987563 0.00132051 0)
(0.991194 0.000577317 0)
(0.993813 -0.00100083 0)
(0.995726 -0.00220387 0)
(0.997038 -0.00358239 0)
(0.997605 -0.00435327 0)
(0.997897 -0.00468136 0)
(0.99781 -0.00450989 0)
(0.997613 -0.00386207 0)
(0.997564 -0.00282513 0)
(0.997466 -0.00187566 0)
(1.00079 -0.000145167 0)
(0.976694 -0.0659738 0)
(0.969908 -0.0600701 0)
(0.964379 -0.0529209 0)
(0.960435 -0.044129 0)
(0.958736 -0.0341478 0)
(0.959674 -0.024536 0)
(0.962687 -0.0166914 0)
(0.966672 -0.0108299 0)
(0.970842 -0.0063351 0)
(0.97498 -0.00277001 0)
(0.979263 -0.000177756 0)
(0.983533 0.00115096 0)
(0.9875 0.001441 0)
(0.991116 0.000789727 0)
(0.993745 -0.000726414 0)
(0.995681 -0.00191589 0)
(0.997012 -0.00332847 0)
(0.997601 -0.00416615 0)
(0.997902 -0.0045824 0)
(0.997812 -0.00449507 0)
(0.997596 -0.00392097 0)
(0.997514 -0.00293103 0)
(0.99736 -0.00199785 0)
(1.00067 -0.000266394 0)
(0.976609 -0.0642921 0)
(0.970254 -0.0587014 0)
(0.965022 -0.0519186 0)
(0.961228 -0.0435209 0)
(0.95952 -0.0339219 0)
(0.960311 -0.0245636 0)
(0.963127 -0.0168088 0)
(0.966954 -0.0109518 0)
(0.971024 -0.00645271 0)
(0.975089 -0.00287973 0)
(0.979304 -0.000249709 0)
(0.983517 0.00115484 0)
(0.987447 0.00153684 0)
(0.991044 0.000976816 0)
(0.993682 -0.000472691 0)
(0.995637 -0.00164245 0)
(0.996987 -0.00308113 0)
(0.997595 -0.00397768 0)
(0.997904 -0.00447598 0)
(0.997811 -0.00446886 0)
(0.997577 -0.00396752 0)
(0.997463 -0.00302759 0)
(0.997257 -0.00211364 0)
(1.00055 -0.000384705 0)
(0.976565 -0.0626837 0)
(0.970612 -0.0573848 0)
(0.965663 -0.0509475 0)
(0.962012 -0.0429216 0)
(0.960302 -0.0336861 0)
(0.960959 -0.0245772 0)
(0.963584 -0.0169179 0)
(0.967252 -0.0110689 0)
(0.971219 -0.00656503 0)
(0.975209 -0.00298422 0)
(0.979354 -0.000319313 0)
(0.983507 0.00115806 0)
(0.987397 0.00162949 0)
(0.990972 0.00115832 0)
(0.993614 -0.000223976 0)
(0.995586 -0.00137181 0)
(0.996951 -0.00283056 0)
(0.997579 -0.00378027 0)
(0.997899 -0.00435493 0)
(0.997805 -0.00442631 0)
(0.997557 -0.00399733 0)
(0.997416 -0.0031091 0)
(0.997159 -0.002219 0)
(1.00043 -0.00049976 0)
(0.976565 -0.0611444 0)
(0.970982 -0.0561168 0)
(0.9663 -0.0500043 0)
(0.962786 -0.0423291 0)
(0.961076 -0.0334385 0)
(0.961608 -0.0245766 0)
(0.964054 -0.0170202 0)
(0.967567 -0.0111847 0)
(0.971428 -0.00667782 0)
(0.975342 -0.00309157 0)
(0.979416 -0.000397355 0)
(0.983509 0.0011451 0)
(0.987357 0.00169954 0)
(0.990908 0.00131588 0)
(0.993551 4.45002e-06 0)
(0.995538 -0.00111611 0)
(0.996919 -0.00258781 0)
(0.997564 -0.00358315 0)
(0.997893 -0.00422778 0)
(0.997798 -0.00437314 0)
(0.997537 -0.00401536 0)
(0.99737 -0.00318127 0)
(0.997066 -0.00231747 0)
(1.00031 -0.000611129 0)
(0.976599 -0.0596698 0)
(0.971362 -0.0548965 0)
(0.966931 -0.0490897 0)
(0.963549 -0.041746 0)
(0.961846 -0.0331837 0)
(0.962265 -0.0245626 0)
(0.964536 -0.0171133 0)
(0.967894 -0.0112953 0)
(0.971649 -0.00678586 0)
(0.975485 -0.00319403 0)
(0.979487 -0.000472327 0)
(0.983518 0.00113257 0)
(0.987321 0.0017681 0)
(0.990844 0.00146982 0)
(0.993486 0.000228944 0)
(0.995484 -0.00086373 0)
(0.996877 -0.00234331 0)
(0.99754 -0.00337849 0)
(0.99788 -0.00408848 0)
(0.997788 -0.0043052 0)
(0.997517 -0.00401757 0)
(0.997328 -0.00323869 0)
(0.996979 -0.0024052 0)
(1.0002 -0.000718757 0)
(0.976671 -0.0582561 0)
(0.971752 -0.0537202 0)
(0.967556 -0.0482005 0)
(0.964302 -0.0411697 0)
(0.962606 -0.0329192 0)
(0.96292 -0.0245353 0)
(0.96503 -0.0171987 0)
(0.968237 -0.011404 0)
(0.971884 -0.00689451 0)
(0.97564 -0.00329932 0)
(0.97957 -0.00055491 0)
(0.983538 0.00110552 0)
(0.987295 0.00181601 0)
(0.990789 0.00160107 0)
(0.993426 0.00043352 0)
(0.995435 -0.000626844 0)
(0.996839 -0.00210781 0)
(0.997519 -0.00317526 0)
(0.997867 -0.00394427 0)
(0.997776 -0.0042275 0)
(0.997497 -0.00400868 0)
(0.997287 -0.00328684 0)
(0.996895 -0.00248585 0)
(1.0001 -0.00082203 0)
(0.97677 -0.0568999 0)
(0.972149 -0.0525875 0)
(0.968177 -0.0473378 0)
(0.965046 -0.0406033 0)
(0.963363 -0.0326498 0)
(0.963583 -0.0244961 0)
(0.965535 -0.0172748 0)
(0.968593 -0.0115073 0)
(0.97213 -0.00699824 0)
(0.975805 -0.00339961 0)
(0.979662 -0.000634173 0)
(0.983565 0.00108006 0)
(0.987274 0.00186358 0)
(0.990734 0.00172898 0)
(0.993365 0.000633918 0)
(0.99538 -0.000392941 0)
(0.996793 -0.0018706 0)
(0.997489 -0.00296606 0)
(0.997849 -0.00378943 0)
(0.997763 -0.00413734 0)
(0.997478 -0.00398611 0)
(0.99725 -0.00332177 0)
(0.996819 -0.00255633 0)
(0.999996 -0.000921392 0)
(0.976903 -0.055598 0)
(0.972556 -0.0514951 0)
(0.968794 -0.0464987 0)
(0.965781 -0.0400441 0)
(0.964113 -0.032373 0)
(0.964245 -0.0244452 0)
(0.966051 -0.0173436 0)
(0.968964 -0.0116088 0)
(0.97239 -0.00710293 0)
(0.975982 -0.00350289 0)
(0.979765 -0.000720392 0)
(0.983603 0.00104152 0)
(0.987262 0.00189162 0)
(0.990688 0.00183539 0)
(0.99331 0.000814992 0)
(0.99533 -0.0001744 0)
(0.996752 -0.00164286 0)
(0.997463 -0.00275919 0)
(0.997832 -0.00363095 0)
(0.997749 -0.00403882 0)
(0.997459 -0.00395353 0)
(0.997215 -0.0033478 0)
(0.996746 -0.00261961 0)
(0.999899 -0.00101566 0)
(0.977064 -0.0543472 0)
(0.972975 -0.0504427 0)
(0.969411 -0.0456845 0)
(0.966512 -0.039495 0)
(0.964861 -0.0320932 0)
(0.964914 -0.0243835 0)
(0.966578 -0.0174028 0)
(0.969346 -0.0117043 0)
(0.972662 -0.00720302 0)
(0.976169 -0.00360141 0)
(0.979876 -0.00080277 0)
(0.983648 0.00100515 0)
(0.987255 0.00192272 0)
(0.990642 0.00194121 0)
(0.993253 0.000993766 0)
(0.995275 4.1489e-05 0)
(0.996704 -0.00141416 0)
(0.997429 -0.00254717 0)
(0.997809 -0.00346422 0)
(0.997733 -0.00392956 0)
(0.997441 -0.00390825 0)
(0.997184 -0.00336094 0)
(0.99668 -0.0026725 0)
(0.999809 -0.00110529 0)
(0.97726 -0.0531447 0)
(0.973407 -0.0494268 0)
(0.970028 -0.0448922 0)
(0.967238 -0.0389532 0)
(0.965604 -0.0318075 0)
(0.965582 -0.0243113 0)
(0.967113 -0.0174544 0)
(0.969742 -0.0117976 0)
(0.972945 -0.00730392 0)
(0.976367 -0.00370279 0)
(0.979996 -0.000891454 0)
(0.983701 0.000956859 0)
(0.987257 0.00193516 0)
(0.990603 0.00202665 0)
(0.993201 0.00115397 0)
(0.995226 0.000241987 0)
(0.99666 -0.00119579 0)
(0.997399 -0.00233881 0)
(0.997788 -0.0032952 0)
(0.997718 -0.00381312 0)
(0.997423 -0.00385377 0)
(0.997155 -0.00336538 0)
(0.996618 -0.00271804 0)
(0.999722 -0.00118916 0)
(0.977485 -0.0519883 0)
(0.973854 -0.0484474 0)
(0.970647 -0.0441229 0)
(0.96796 -0.0384212 0)
(0.966345 -0.0315201 0)
(0.966255 -0.0242294 0)
(0.967655 -0.0174964 0)
(0.970146 -0.0118844 0)
(0.973237 -0.00739983 0)
(0.97657 -0.0037993 0)
(0.980123 -0.000976145 0)
(0.98376 0.000911457 0)
(0.987262 0.00195041 0)
(0.990564 0.00211168 0)
(0.993147 0.00131203 0)
(0.995171 0.000440422 0)
(0.99661 -0.000976639 0)
(0.997362 -0.00212718 0)
(0.997762 -0.00311908 0)
(0.9977 -0.00368778 0)
(0.997406 -0.00378853 0)
(0.997128 -0.00335858 0)
(0.996561 -0.00275406 0)
(0.999642 -0.00126842 0)
(0.977744 -0.0508752 0)
(0.974314 -0.047501 0)
(0.971266 -0.0433735 0)
(0.968675 -0.037896 0)
(0.967076 -0.0312277 0)
(0.966921 -0.0241383 0)
(0.968201 -0.0175312 0)
(0.970559 -0.0119689 0)
(0.973537 -0.00749665 0)
(0.976782 -0.00389876 0)
(0.980256 -0.00106669 0)
(0.983825 0.000855173 0)
(0.987273 0.00194843 0)
(0.990531 0.0021773 0)
(0.993099 0.00145199 0)
(0.995121 0.000623499 0)
(0.996565 -0.000768436 0)
(0.997329 -0.00192053 0)
(0.997738 -0.00294177 0)
(0.997684 -0.00355639 0)
(0.997391 -0.00371527 0)
(0.997104 -0.00334374 0)
(0.996508 -0.00278294 0)
(0.999565 -0.00134148 0)
(0.978026 -0.0498026 0)
(0.974782 -0.0465871 0)
(0.971882 -0.0426451 0)
(0.969381 -0.0373801 0)
(0.9678 -0.0309347 0)
(0.967586 -0.0240385 0)
(0.968748 -0.0175567 0)
(0.970975 -0.0120468 0)
(0.973841 -0.00758869 0)
(0.976997 -0.00399354 0)
(0.980393 -0.00115304 0)
(0.983893 0.00080211 0)
(0.987287 0.00194909 0)
(0.990499 0.00224379 0)
(0.993049 0.0015907 0)
(0.995067 0.000804397 0)
(0.996513 -0.000560224 0)
(0.997289 -0.00171124 0)
(0.99771 -0.00275928 0)
(0.997665 -0.00341729 0)
(0.997375 -0.00363208 0)
(0.997082 -0.00331802 0)
(0.996459 -0.00280214 0)
(0.999494 -0.00140919 0)
(0.978329 -0.0487676 0)
(0.975254 -0.0457022 0)
(0.972489 -0.0419344 0)
(0.970074 -0.0368705 0)
(0.968509 -0.0306374 0)
(0.968239 -0.0239306 0)
(0.969294 -0.0175752 0)
(0.971395 -0.0121221 0)
(0.974151 -0.00768155 0)
(0.977218 -0.00409131 0)
(0.980536 -0.00124498 0)
(0.983968 0.000738942 0)
(0.987306 0.00193419 0)
(0.990473 0.00229224 0)
(0.993004 0.00171221 0)
(0.995018 0.00097014 0)
(0.996467 -0.000363517 0)
(0.997254 -0.00150776 0)
(0.997684 -0.00257674 0)
(0.997648 -0.00327334 0)
(0.997361 -0.00354172 0)
(0.997062 -0.00328445 0)
(0.996415 -0.00281398 0)
(0.999427 -0.00146998 0)
(0.978641 -0.0477683 0)
(0.975725 -0.0448463 0)
(0.973087 -0.041243 0)
(0.970752 -0.0363699 0)
(0.969207 -0.0303404 0)
(0.968888 -0.0238152 0)
(0.969837 -0.0175849 0)
(0.971817 -0.0121909 0)
(0.974463 -0.00776962 0)
(0.977441 -0.00418473 0)
(0.980681 -0.00133305 0)
(0.984045 0.000679153 0)
(0.987328 0.00192187 0)
(0.990448 0.00234153 0)
(0.992958 0.00183273 0)
(0.994966 0.00113452 0)
(0.996415 -0.000166581 0)
(0.997213 -0.00130279 0)
(0.997653 -0.00239001 0)
(0.997629 -0.00312346 0)
(0.997347 -0.00344312 0)
(0.997045 -0.0032414 0)
(0.996375 -0.00281682 0)
(0.999367 -0.00152528 0)
(0.978965 -0.046803 0)
(0.976194 -0.0440168 0)
(0.973672 -0.0405683 0)
(0.971416 -0.0358758 0)
(0.969889 -0.0300405 0)
(0.969524 -0.0236936 0)
(0.970379 -0.0175889 0)
(0.972242 -0.0122578 0)
(0.974781 -0.0078592 0)
(0.977671 -0.00428184 0)
(0.980833 -0.00142689 0)
(0.984128 0.000609647 0)
(0.987357 0.00189478 0)
(0.990429 0.00237366 0)
(0.992918 0.00193676 0)
(0.994919 0.00128429 0)
(0.996369 1.8873e-05 0)
(0.997177 -0.00110423 0)
(0.997626 -0.00220406 0)
(0.997613 -0.00296994 0)
(0.997336 -0.00333839 0)
(0.99703 -0.00319103 0)
(0.996339 -0.00281237 0)
(0.99931 -0.00157324 0)
(0.979293 -0.0458702 0)
(0.976659 -0.0432142 0)
(0.974249 -0.0399122 0)
(0.972067 -0.0353912 0)
(0.970562 -0.0297426 0)
(0.970157 -0.0235662 0)
(0.970919 -0.0175855 0)
(0.97267 -0.012319 0)
(0.975104 -0.00794496 0)
(0.977905 -0.00437542 0)
(0.980988 -0.00151741 0)
(0.984216 0.000543119 0)
(0.987388 0.00187046 0)
(0.990412 0.00240749 0)
(0.992877 0.00204044 0)
(0.99487 0.00143281 0)
(0.996319 0.000204409 0)
(0.997136 -0.000904455 0)
(0.997595 -0.00201544 0)
(0.997594 -0.00281133 0)
(0.997324 -0.003226 0)
(0.997018 -0.00313149 0)
(0.996308 -0.00279892 0)
(0.999259 -0.00161512 0)
(0.979631 -0.0449676 0)
(0.977124 -0.0424359 0)
(0.974817 -0.0392724 0)
(0.972707 -0.034914 0)
(0.971223 -0.0294433 0)
(0.97078 -0.0234342 0)
(0.971459 -0.0175773 0)
(0.973103 -0.0123787 0)
(0.975433 -0.00803268 0)
(0.978146 -0.00447326 0)
(0.981151 -0.00161412 0)
(0.98431 0.000466967 0)
(0.987427 0.00183204 0)
(0.990403 0.00242453 0)
(0.992844 0.00212821 0)
(0.994827 0.00156697 0)
(0.996276 0.000378203 0)
(0.997101 -0.000711777 0)
(0.997569 -0.00182873 0)
(0.997579 -0.00265016 0)
(0.997316 -0.0031083 0)
(0.997009 -0.00306508 0)
(0.996281 -0.00277833 0)
(0.999213 -0.00164938 0)
(0.979977 -0.0440958 0)
(0.977589 -0.0416832 0)
(0.975381 -0.0386509 0)
(0.973339 -0.0344471 0)
(0.971878 -0.0291471 0)
(0.971403 -0.0232979 0)
(0.971999 -0.0175626 0)
(0.973538 -0.0124331 0)
(0.975767 -0.00811687 0)
(0.978391 -0.00456827 0)
(0.981318 -0.00170823 0)
(0.984408 0.000393439 0)
(0.987469 0.00179591 0)
(0.990396 0.00244458 0)
(0.992809 0.00221627 0)
(0.994782 0.00170054 0)
(0.996228 0.000552088 0)
(0.99706 -0.000519047 0)
(0.997539 -0.00163987 0)
(0.997561 -0.00248517 0)
(0.997307 -0.00298421 0)
(0.997002 -0.00299088 0)
(0.996258 -0.00274973 0)
(0.999173 -0.00167771 0)
(0.980338 -0.0432538 0)
(0.978059 -0.0409548 0)
(0.975942 -0.0380459 0)
(0.973964 -0.0339882 0)
(0.972524 -0.0288511 0)
(0.972018 -0.0231589 0)
(0.97254 -0.0175448 0)
(0.973979 -0.0124869 0)
(0.976107 -0.00820353 0)
(0.978644 -0.00466799 0)
(0.981493 -0.00180873 0)
(0.984514 0.000310498 0)
(0.987518 0.00174647 0)
(0.990397 0.00244769 0)
(0.992781 0.0022884 0)
(0.994742 0.00181957 0)
(0.996187 0.000713736 0)
(0.997027 -0.000334223 0)
(0.997514 -0.00145377 0)
(0.997547 -0.00231881 0)
(0.997301 -0.00285578 0)
(0.996998 -0.00291046 0)
(0.996239 -0.00271437 0)
(0.999136 -0.00169841 0)
(0.980708 -0.042441 0)
(0.978533 -0.0402509 0)
(0.976501 -0.0374589 0)
(0.974585 -0.03354 0)
(0.973167 -0.0285594 0)
(0.972633 -0.0230169 0)
(0.973081 -0.0175213 0)
(0.974423 -0.0125359 0)
(0.976453 -0.00828681 0)
(0.978902 -0.0047648 0)
(0.981672 -0.0019066 0)
(0.984624 0.000230239 0)
(0.987571 0.00169994 0)
(0.9904 0.00245445 0)
(0.992753 0.00236071 0)
(0.994701 0.00193739 0)
(0.996141 0.000874973 0)
(0.996988 -0.000149594 0)
(0.997485 -0.0012667 0)
(0.997531 -0.00214924 0)
(0.997294 -0.0027215 0)
(0.996995 -0.00282266 0)
(0.996224 -0.00267118 0)
(0.999106 -0.00171286 0)
(0.981094 -0.0416558 0)
(0.979011 -0.0395685 0)
(0.977059 -0.036887 0)
(0.975199 -0.0330997 0)
(0.973801 -0.028268 0)
(0.97324 -0.0228723 0)
(0.973621 -0.0174943 0)
(0.974871 -0.0125834 0)
(0.976804 -0.00837156 0)
(0.979166 -0.00486539 0)
(0.981857 -0.00201 0)
(0.984741 0.000141607 0)
(0.987631 0.00164135 0)
(0.99041 0.00244532 0)
(0.992732 0.00241709 0)
(0.994666 0.00204038 0)
(0.996103 0.00102326 0)
(0.996956 2.62741e-05 0)
(0.997461 -0.00108367 0)
(0.997519 -0.00197951 0)
(0.997291 -0.00258411 0)
(0.996996 -0.00272961 0)
(0.996212 -0.00262186 0)
(0.99908 -0.00171996 0)
(0.981487 -0.0408973 0)
(0.979493 -0.0389081 0)
(0.977615 -0.0363313 0)
(0.975809 -0.032669 0)
(0.974432 -0.0279802 0)
(0.973847 -0.0227243 0)
(0.974161 -0.017461 0)
(0.975321 -0.0126247 0)
(0.977159 -0.00845139 0)
(0.979434 -0.00496199 0)
(0.982047 -0.00210989 0)
(0.984861 5.64914e-05 0)
(0.987694 0.00158583 0)
(0.990423 0.00243825 0)
(0.992711 0.00247321 0)
(0.99463 0.00214207 0)
(0.996062 0.00117059 0)
(0.99692 0.000200486 0)
(0.997434 -0.000900612 0)
(0.997505 -0.00180808 0)
(0.997287 -0.00244272 0)
(0.996997 -0.00263104 0)
(0.996203 -0.00256615 0)
(0.999059 -0.00172145 0)
(0.981893 -0.0401642 0)
(0.979979 -0.038268 0)
(0.978168 -0.0357893 0)
(0.976413 -0.0322449 0)
(0.975052 -0.0276924 0)
(0.974444 -0.0225738 0)
(0.974699 -0.017424 0)
(0.975773 -0.0126637 0)
(0.977518 -0.00853143 0)
(0.979707 -0.00506103 0)
(0.982242 -0.00221392 0)
(0.984987 -3.56669e-05 0)
(0.987763 0.0015196 0)
(0.990442 0.00241678 0)
(0.992697 0.00251334 0)
(0.9946 0.00222899 0)
(0.996027 0.00130448 0)
(0.996891 0.000364969 0)
(0.997411 -0.000722835 0)
(0.997494 -0.00163801 0)
(0.997286 -0.0022999 0)
(0.997002 -0.00252867 0)
(0.996198 -0.00250532 0)
(0.999041 -0.00171619 0)
(0.982303 -0.0394555 0)
(0.980466 -0.0376473 0)
(0.978718 -0.0352616 0)
(0.97701 -0.0318293 0)
(0.975669 -0.0274077 0)
(0.97504 -0.0224195 0)
(0.975234 -0.0173803 0)
(0.976224 -0.0126957 0)
(0.977878 -0.00860539 0)
(0.979982 -0.00515454 0)
(0.982439 -0.00231316 0)
(0.985115 -0.000123422 0)
(0.987834 0.00145759 0)
(0.990462 0.00239822 0)
(0.992683 0.00255468 0)
(0.994567 0.00231449 0)
(0.995988 0.0014372 0)
(0.996856 0.000527573 0)
(0.997385 -0.000546274 0)
(0.997481 -0.00146695 0)
(0.997284 -0.00215415 0)
(0.997006 -0.00242159 0)
(0.996195 -0.00243855 0)
(0.999028 -0.00170519 0)
(0.982721 -0.0387697 0)
(0.980953 -0.0370438 0)
(0.979264 -0.0347453 0)
(0.9776 -0.031419 0)
(0.976274 -0.0271216 0)
(0.975625 -0.0222615 0)
(0.975765 -0.0173316 0)
(0.976676 -0.0127238 0)
(0.978242 -0.00867768 0)
(0.980262 -0.00524869 0)
(0.982641 -0.00241495 0)
(0.985249 -0.000216647 0)
(0.98791 0.00138645 0)
(0.990489 0.00236651 0)
(0.992675 0.00257982 0)
(0.99454 0.00238528 0)
(0.995955 0.00155606 0)
(0.996828 0.000679782 0)
(0.997364 -0.000376215 0)
(0.997472 -0.00129858 0)
(0.997286 -0.0020084 0)
(0.997015 -0.00231168 0)
(0.996195 -0.00236727 0)
(0.999019 -0.00168778 0)
(0.983141 -0.0381053 0)
(0.981439 -0.0364567 0)
(0.979805 -0.0342406 0)
(0.978182 -0.0310151 0)
(0.976874 -0.0268369 0)
(0.976207 -0.0220985 0)
(0.976293 -0.0172748 0)
(0.977126 -0.0127432 0)
(0.978605 -0.00874213 0)
(0.980542 -0.00533602 0)
(0.982845 -0.00251077 0)
(0.985384 -0.000304484 0)
(0.987988 0.00131973 0)
(0.990516 0.00233766 0)
(0.992667 0.00260594 0)
(0.994511 0.00245508 0)
(0.995919 0.00167359 0)
(0.996795 0.000829098 0)
(0.99734 -0.000207932 0)
(0.99746 -0.00113048 0)
(0.997285 -0.00186084 0)
(0.997022 -0.00219823 0)
(0.996197 -0.00229113 0)
(0.999014 -0.0016651 0)
(0.983565 -0.0374615 0)
(0.981923 -0.0358832 0)
(0.980339 -0.0337446 0)
(0.978755 -0.0306146 0)
(0.977461 -0.0265503 0)
(0.976776 -0.0219317 0)
(0.976815 -0.0172128 0)
(0.977575 -0.012758 0)
(0.978971 -0.008804 0)
(0.980826 -0.00542304 0)
(0.983052 -0.00260813 0)
(0.985524 -0.000396886 0)
(0.988071 0.00124484 0)
(0.990549 0.00229654 0)
(0.992664 0.002617 0)
(0.994487 0.00251053 0)
(0.995889 0.00177728 0)
(0.996769 0.000967553 0)
(0.99732 -4.69824e-05 0)
(0.997452 -0.000966332 0)
(0.997289 -0.00171413 0)
(0.997033 -0.00208279 0)
(0.996202 -0.00221125 0)
(0.999012 -0.00163671 0)
(0.983987 -0.0368363 0)
(0.982404 -0.0353245 0)
(0.980866 -0.0332589 0)
(0.979319 -0.0302196 0)
(0.978042 -0.0262649 0)
(0.977342 -0.0217601 0)
(0.977331 -0.0171432 0)
(0.97802 -0.0127646 0)
(0.979334 -0.00885803 0)
(0.981109 -0.00550286 0)
(0.98326 -0.00269942 0)
(0.985664 -0.0004839 0)
(0.988154 0.00117484 0)
(0.990583 0.00225871 0)
(0.992661 0.00262824 0)
(0.994462 0.00256464 0)
(0.995856 0.00187951 0)
(0.996738 0.00110326 0)
(0.997297 0.000111517 0)
(0.997441 -0.000802761 0)
(0.99729 -0.0015658 0)
(0.997044 -0.0019641 0)
(0.996208 -0.00212686 0)
(0.999015 -0.00160311 0)
(0.984412 -0.0362283 0)
(0.982881 -0.0347783 0)
(0.981385 -0.0327818 0)
(0.979872 -0.0298284 0)
(0.978609 -0.0259776 0)
(0.977894 -0.0215848 0)
(0.977841 -0.0170687 0)
(0.978463 -0.0127668 0)
(0.979698 -0.00890948 0)
(0.981394 -0.0055823 0)
(0.983471 -0.00279224 0)
(0.985807 -0.000575182 0)
(0.988241 0.0010973 0)
(0.99062 0.00220938 0)
(0.992663 0.00262527 0)
(0.994442 0.00260493 0)
(0.995828 0.00196827 0)
(0.996713 0.00122807 0)
(0.997278 0.000262078 0)
(0.997435 -0.000643962 0)
(0.997295 -0.00141914 0)
(0.997058 -0.00184418 0)
(0.996218 -0.00203932 0)
(0.99902 -0.00156438 0)
(0.984832 -0.0356376 0)
(0.983352 -0.0342461 0)
(0.981896 -0.0323143 0)
(0.980416 -0.0294425 0)
(0.979169 -0.0256919 0)
(0.978441 -0.0214055 0)
(0.978344 -0.016987 0)
(0.978901 -0.0127608 0)
(0.98006 -0.00895327 0)
(0.981678 -0.00565506 0)
(0.983681 -0.00287924 0)
(0.985951 -0.000661185 0)
(0.988329 0.00102417 0)
(0.990658 0.00216303 0)
(0.992664 0.00262285 0)
(0.99442 0.00264461 0)
(0.995797 0.00205555 0)
(0.996684 0.00134965 0)
(0.997257 0.000410161 0)
(0.997425 -0.000486406 0)
(0.997297 -0.00127167 0)
(0.99707 -0.00172188 0)
(0.996228 -0.00194812 0)
(0.999029 -0.00152087 0)
(0.985251 -0.0350635 0)
(0.983817 -0.0337265 0)
(0.982397 -0.0318544 0)
(0.980949 -0.0290602 0)
(0.979715 -0.0254053 0)
(0.978974 -0.0212239 0)
(0.97884 -0.0169019 0)
(0.979336 -0.0127515 0)
(0.980421 -0.00899514 0)
(0.981963 -0.00572778 0)
(0.983893 -0.00296767 0)
(0.986097 -0.000751141 0)
(0.988419 0.000944194 0)
(0.9907 0.00210622 0)
(0.99267 0.00260742 0)
(0.994403 0.00267153 0)
(0.995772 0.00213016 0)
(0.996661 0.00146062 0)
(0.99724 0.000550153 0)
(0.997419 -0.000334191 0)
(0.997304 -0.00112657 0)
(0.997086 -0.00159903 0)
(0.996242 -0.00185443 0)
(0.999041 -0.00147289 0)
(0.985665 -0.0345058 0)
(0.984275 -0.0332208 0)
(0.98289 -0.0314045 0)
(0.981471 -0.0286839 0)
(0.980253 -0.0251216 0)
(0.979501 -0.0210397 0)
(0.979328 -0.0168112 0)
(0.979765 -0.0127357 0)
(0.980778 -0.00903048 0)
(0.982246 -0.00579415 0)
(0.984104 -0.00305062 0)
(0.986243 -0.000835927 0)
(0.98851 0.000869298 0)
(0.990742 0.00205329 0)
(0.992675 0.0025932 0)
(0.994385 0.00269834 0)
(0.995743 0.00220394 0)
(0.996634 0.00156916 0)
(0.997219 0.000687642 0)
(0.997411 -0.000182942 0)
(0.997307 -0.000980553 0)
(0.997101 -0.00147372 0)
(0.996256 -0.00175723 0)
(0.999056 -0.00142013 0)
(0.986076 -0.0339639 0)
(0.984726 -0.0327272 0)
(0.983372 -0.0309634 0)
(0.981982 -0.0283123 0)
(0.980775 -0.024838 0)
(0.980014 -0.0208543 0)
(0.979809 -0.0167181 0)
(0.98019 -0.0127175 0)
(0.981134 -0.00906447 0)
(0.982529 -0.00586074 0)
(0.984316 -0.00313509 0)
(0.986391 -0.00092421 0)
(0.988603 0.000788495 0)
(0.990787 0.00199108 0)
(0.992684 0.00256734 0)
(0.994371 0.00271328 0)
(0.99572 0.00226616 0)
(0.996612 0.00166775 0)
(0.997203 0.00081704 0)
(0.997406 -3.73515e-05 0)
(0.997314 -0.00083733 0)
(0.997119 -0.00134831 0)
(0.996273 -0.00165799 0)
(0.999073 -0.00136346 0)
(0.98648 -0.0334376 0)
(0.985169 -0.0322469 0)
(0.983844 -0.0305322 0)
(0.982481 -0.0279474 0)
(0.98129 -0.0245579 0)
(0.98052 -0.0206672 0)
(0.98028 -0.0166202 0)
(0.980608 -0.012693 0)
(0.981485 -0.00909231 0)
(0.982809 -0.00592161 0)
(0.984527 -0.00321413 0)
(0.986538 -0.00100718 0)
(0.988695 0.00071267 0)
(0.990831 0.00193298 0)
(0.992692 0.00254371 0)
(0.994355 0.00273034 0)
(0.995692 0.00232818 0)
(0.996586 0.00176422 0)
(0.997184 0.000944552 0)
(0.997398 0.000107153 0)
(0.997318 -0.000693577 0)
(0.997134 -0.00122099 0)
(0.996289 -0.00155578 0)
(0.999093 -0.00130226 0)
(0.98688 -0.0329256 0)
(0.985604 -0.0317788 0)
(0.984306 -0.030109 0)
(0.982969 -0.0275869 0)
(0.98179 -0.0242788 0)
(0.981012 -0.0204799 0)
(0.980744 -0.016521 0)
(0.981022 -0.012667 0)
(0.981834 -0.00911928 0)
(0.983089 -0.0059829 0)
(0.984739 -0.00329448 0)
(0.986686 -0.0010932 0)
(0.988789 0.000631781 0)
(0.990878 0.00186695 0)
(0.992704 0.00250993 0)
(0.994343 0.00273639 0)
(0.995669 0.00237991 0)
(0.996565 0.0018517 0)
(0.997168 0.00106446 0)
(0.997393 0.000245926 0)
(0.997326 -0.000552994 0)
(0.997154 -0.00109417 0)
(0.996308 -0.00145198 0)
(0.999116 -0.00123772 0)
(0.987271 -0.0324286 0)
(0.98603 -0.0313234 0)
(0.984758 -0.0296956 0)
(0.983445 -0.0272332 0)
(0.982281 -0.0240039 0)
(0.981497 -0.0202921 0)
(0.981198 -0.0164183 0)
(0.981428 -0.0126362 0)
(0.982178 -0.00914106 0)
(0.983366 -0.00603875 0)
(0.984948 -0.00336983 0)
(0.986834 -0.00117403 0)
(0.988883 0.000556477 0)
(0.990925 0.00180598 0)
(0.992714 0.00247915 0)
(0.994329 0.00274503 0)
(0.995643 0.00243298 0)
(0.99654 0.00193863 0)
(0.997149 0.00118321 0)
(0.997386 0.000384371 0)
(0.997331 -0.000411549 0)
(0.997171 -0.000965357 0)
(0.996327 -0.0013452 0)
(0.99914 -0.00116869 0)
(0.987657 -0.031946 0)
(0.986446 -0.0308794 0)
(0.985199 -0.0292904 0)
(0.98391 -0.0268848 0)
(0.982757 -0.0237306 0)
(0.981967 -0.0201048 0)
(0.981645 -0.016315 0)
(0.98183 -0.0126046 0)
(0.98252 -0.00916253 0)
(0.983642 -0.00609542 0)
(0.985158 -0.00344686 0)
(0.986982 -0.00125789 0)
(0.988978 0.000476502 0)
(0.990973 0.00173801 0)
(0.992728 0.00243951 0)
(0.99432 0.0027444 0)
(0.995622 0.00247698 0)
(0.996519 0.00201761 0)
(0.997135 0.00129483 0)
(0.997382 0.000517153 0)
(0.997339 -0.000273496 0)
(0.997191 -0.000837552 0)
(0.996349 -0.00123729 0)
(0.999167 -0.0010969 0)
(0.988035 -0.0314778 0)
(0.986855 -0.0304473 0)
(0.98563 -0.0288946 0)
(0.984363 -0.0265434 0)
(0.983225 -0.0234618 0)
(0.982431 -0.0199175 0)
(0.982082 -0.0162087 0)
(0.982223 -0.0125684 0)
(0.982856 -0.00917928 0)
(0.983914 -0.00614757 0)
(0.985366 -0.00351939 0)
(0.987129 -0.00133706 0)
(0.989072 0.000401226 0)
(0.991021 0.00167489 0)
(0.992742 0.0024037 0)
(0.994309 0.00274695 0)
(0.995598 0.00252269 0)
(0.996496 0.00209633 0)
(0.997117 0.0014059 0)
(0.997375 0.000649559 0)
(0.997344 -0.000134777 0)
(0.997209 -0.000708196 0)
(0.996369 -0.00112687 0)
(0.999196 -0.00102073 0)
(0.988407 -0.0310224 0)
(0.987254 -0.0300259 0)
(0.986051 -0.0285061 0)
(0.984806 -0.0262071 0)
(0.983679 -0.0231954 0)
(0.982881 -0.0197318 0)
(0.98251 -0.0161029 0)
(0.982612 -0.0125322 0)
(0.983189 -0.00919641 0)
(0.984185 -0.00620108 0)
(0.985573 -0.00359394 0)
(0.987277 -0.00141963 0)
(0.989168 0.000321163 0)
(0.991071 0.00160519 0)
(0.992758 0.00235989 0)
(0.994301 0.00274109 0)
(0.995578 0.00255996 0)
(0.996476 0.00216765 0)
(0.997103 0.00151014 0)
(0.997371 0.000776255 0)
(0.997353 3.07856e-07 0)
(0.99723 -0.000580247 0)
(0.996393 -0.00101573 0)
(0.999227 -0.000942308 0)
(0.98877 -0.030581 0)
(0.987645 -0.0296156 0)
(0.986463 -0.0281272 0)
(0.985237 -0.0258778 0)
(0.984125 -0.022934 0)
(0.983324 -0.0195469 0)
(0.98293 -0.0159955 0)
(0.982992 -0.0124931 0)
(0.983516 -0.00920999 0)
(0.984453 -0.00625062 0)
(0.985778 -0.00366496 0)
(0.987423 -0.00149841 0)
(0.989262 0.00024557 0)
(0.99112 0.00154028 0)
(0.992773 0.00231981 0)
(0.994292 0.00273829 0)
(0.995555 0.00259945 0)
(0.996454 0.00223965 0)
(0.997086 0.00161433 0)
(0.997364 0.000903305 0)
(0.997358 0.000136491 0)
(0.997248 -0.000450258 0)
(0.996415 -0.000901823 0)
(0.999259 -0.000859464 0)
(0.989127 -0.0301528 0)
(0.988027 -0.0292155 0)
(0.986865 -0.0277563 0)
(0.985657 -0.0255548 0)
(0.984557 -0.0226755 0)
(0.983752 -0.0193644 0)
(0.983341 -0.0158892 0)
(0.983367 -0.0124546 0)
(0.98384 -0.00922462 0)
(0.984718 -0.00630218 0)
(0.985983 -0.00373878 0)
(0.98757 -0.00158111 0)
(0.989357 0.00016493 0)
(0.99117 0.00146891 0)
(0.992791 0.00227224 0)
(0.994287 0.00272752 0)
(0.995536 0.00263097 0)
(0.996435 0.00230469 0)
(0.997072 0.00171197 0)
(0.997361 0.00102475 0)
(0.997367 0.000268932 0)
(0.99727 -0.000321777 0)
(0.99644 -0.000787425 0)
(0.999294 -0.000774752 0)
(0.989476 -0.0297377 0)
(0.988401 -0.0288264 0)
(0.987257 -0.027395 0)
(0.986066 -0.0252391 0)
(0.98498 -0.0224223 0)
(0.984174 -0.0191831 0)
(0.983742 -0.0157816 0)
(0.983733 -0.0124133 0)
(0.984158 -0.00923608 0)
(0.984979 -0.00635064 0)
(0.986185 -0.00380948 0)
(0.987715 -0.00166053 0)
(0.989451 8.77401e-05 0)
(0.99122 0.00140185 0)
(0.992808 0.00222895 0)
(0.99428 0.00272021 0)
(0.995515 0.00266455 0)
(0.996413 0.00237061 0)
(0.997056 0.00181003 0)
(0.997354 0.00114655 0)
(0.997372 0.000402352 0)
(0.997288 -0.000191443 0)
(0.996462 -0.000670582 0)
(0.999329 -0.000685831 0)
(0.989817 -0.0293346 0)
(0.988764 -0.0284469 0)
(0.987638 -0.0270417 0)
(0.986464 -0.0249285 0)
(0.985389 -0.022172 0)
(0.984582 -0.0190044 0)
(0.984135 -0.0156755 0)
(0.984094 -0.0123728 0)
(0.984472 -0.00924856 0)
(0.985238 -0.00640095 0)
(0.986386 -0.00388261 0)
(0.98786 -0.00174356 0)
(0.989546 5.90639e-06 0)
(0.991271 0.00132906 0)
(0.992827 0.00217908 0)
(0.994276 0.00270555 0)
(0.995498 0.00269061 0)
(0.996394 0.00242969 0)
(0.997043 0.00190182 0)
(0.997351 0.0012627 0)
(0.997381 0.000531736 0)
(0.99731 -6.31272e-05 0)
(0.996488 -0.000553839 0)
(0.999367 -0.000595594 0)
(0.990148 -0.0289439 0)
(0.989119 -0.0280776 0)
(0.98801 -0.0266975 0)
(0.98685 -0.0246246 0)
(0.985789 -0.0219267 0)
(0.984982 -0.0188271 0)
(0.984518 -0.0155684 0)
(0.984445 -0.01233 0)
(0.984779 -0.00925778 0)
(0.985493 -0.00644748 0)
(0.986584 -0.00395234 0)
(0.988003 -0.00182286 0)
(0.98964 -7.15616e-05 0)
(0.991321 0.0012612 0)
(0.992845 0.00213369 0)
(0.994272 0.00269454 0)
(0.995478 0.0027194 0)
(0.996373 0.00249064 0)
(0.997026 0.00199433 0)
(0.997344 0.0013796 0)
(0.997386 0.000662157 0)
(0.997328 6.69471e-05 0)
(0.996512 -0.000434885 0)
(0.999405 -0.000501618 0)
(0.990471 -0.0285643 0)
(0.989463 -0.0277174 0)
(0.98837 -0.0263603 0)
(0.987226 -0.024326 0)
(0.986176 -0.021684 0)
(0.985369 -0.0186517 0)
(0.984892 -0.0154622 0)
(0.984791 -0.0122875 0)
(0.985082 -0.00926735 0)
(0.985745 -0.00649507 0)
(0.986782 -0.0040238 0)
(0.988147 -0.00190479 0)
(0.989734 -0.000152635 0)
(0.991372 0.00118868 0)
(0.992865 0.00208278 0)
(0.99427 0.0026769 0)
(0.995461 0.00274114 0)
(0.996355 0.00254498 0)
(0.997012 0.00208049 0)
(0.99734 0.00149057 0)
(0.997394 0.000788022 0)
(0.99735 0.000194319 0)
(0.996538 -0.000316761 0)
(0.999444 -0.000407394 0)
(0.990784 -0.0281959 0)
(0.989799 -0.0273665 0)
(0.988722 -0.0260311 0)
(0.987592 -0.0240333 0)
(0.986556 -0.0214453 0)
(0.985749 -0.018477 0)
(0.985257 -0.015354 0)
(0.985128 -0.0122412 0)
(0.985379 -0.00927264 0)
(0.985992 -0.00653828 0)
(0.986976 -0.00409074 0)
(0.988288 -0.00198203 0)
(0.989827 -0.00022902 0)
(0.991422 0.00112165 0)
(0.992885 0.00203754 0)
(0.994267 0.00266363 0)
(0.995443 0.00276552 0)
(0.996334 0.00260094 0)
(0.996996 0.00216758 0)
(0.997334 0.00160196 0)
(0.997399 0.000914495 0)
(0.997368 0.000322959 0)
(0.996562 -0.000197028 0)
(0.999485 -0.000309759 0)
(0.991091 -0.0278377 0)
(0.990125 -0.0270226 0)
(0.989063 -0.025708 0)
(0.987948 -0.0237443 0)
(0.986922 -0.0212081 0)
(0.986117 -0.0183034 0)
(0.985615 -0.0152458 0)
(0.985461 -0.0121941 0)
(0.985672 -0.00927704 0)
(0.986238 -0.00658113 0)
(0.987169 -0.00415775 0)
(0.98843 -0.00206041 0)
(0.98992 -0.000307569 0)
(0.991474 0.00105141 0)
(0.992907 0.00198808 0)
(0.994266 0.00264453 0)
(0.995427 0.00278329 0)
(0.996316 0.00265063 0)
(0.996982 0.00224834 0)
(0.997329 0.00170712 0)
(0.997406 0.00103585 0)
(0.997388 0.000448083 0)
(0.996589 -7.90083e-05 0)
(0.999526 -0.000212734 0)
(0.99139 -0.027489 0)
(0.990444 -0.0266868 0)
(0.989397 -0.0253915 0)
(0.988295 -0.0234597 0)
(0.987282 -0.020974 0)
(0.986478 -0.0181295 0)
(0.985963 -0.0151353 0)
(0.985784 -0.0121432 0)
(0.985959 -0.00927653 0)
(0.986479 -0.0066183 0)
(0.987359 -0.00421935 0)
(0.988569 -0.00213309 0)
(0.990013 -0.000379971 0)
(0.991525 0.000987574 0)
(0.992928 0.00194445 0)
(0.994265 0.00262991 0)
(0.99541 0.00280424 0)
(0.996296 0.0027025 0)
(0.996967 0.00233019 0)
(0.997322 0.00181299 0)
(0.997411 0.00115769 0)
(0.997406 0.000574157 0)
(0.996613 4.0174e-05 0)
(0.999568 -0.000113001 0)
(0.991682 -0.0271487 0)
(0.990755 -0.0263567 0)
(0.989722 -0.02508 0)
(0.988633 -0.0231773 0)
(0.98763 -0.0207404 0)
(0.986828 -0.0179561 0)
(0.986304 -0.0150241 0)
(0.986103 -0.0120911 0)
(0.986242 -0.00927468 0)
(0.986717 -0.00665454 0)
(0.987549 -0.00428052 0)
(0.988709 -0.00220615 0)
(0.990106 -0.000453761 0)
(0.991577 0.000921178 0)
(0.992951 0.00189716 0)
(0.994266 0.0026098 0)
(0.995395 0.0028187 0)
(0.996278 0.00274809 0)
(0.996952 0.00240558 0)
(0.997317 0.00191236 0)
(0.997417 0.00127394 0)
(0.997426 0.000696053 0)
(0.99664 0.000156935 0)
(0.999611 -1.46196e-05 0)
(0.991968 -0.0268169 0)
(0.991059 -0.026034 0)
(0.990039 -0.0247737 0)
(0.988963 -0.0228991 0)
(0.987971 -0.0205094 0)
(0.987171 -0.0177822 0)
(0.986637 -0.0149101 0)
(0.986413 -0.0120346 0)
(0.986518 -0.00926785 0)
(0.986951 -0.00668552 0)
(0.987735 -0.00433613 0)
(0.988847 -0.00227361 0)
(0.990198 -0.000522126 0)
(0.991628 0.000860712 0)
(0.992973 0.00185585 0)
(0.994266 0.00259407 0)
(0.995379 0.00283571 0)
(0.996258 0.00279532 0)
(0.996936 0.00248188 0)
(0.99731 0.00201201 0)
(0.997421 0.0013903 0)
(0.997443 0.000818524 0)
(0.996664 0.000274533 0)
(0.999653 8.65105e-05 0)
(0.992247 -0.026492 0)
(0.991354 -0.0257169 0)
(0.990348 -0.0244712 0)
(0.989284 -0.0226236 0)
(0.988301 -0.0202797 0)
(0.987503 -0.0176088 0)
(0.986962 -0.0147958 0)
(0.986718 -0.011977 0)
(0.986791 -0.00925993 0)
(0.987183 -0.0067158 0)
(0.987921 -0.00439135 0)
(0.988984 -0.00234164 0)
(0.99029 -0.000592105 0)
(0.99168 0.000797543 0)
(0.992997 0.00181072 0)
(0.994268 0.0025726 0)
(0.995365 0.00284593 0)
(0.99624 0.002836 0)
(0.996922 0.0025515 0)
(0.997304 0.0021049 0)
(0.997426 0.00150072 0)
(0.997462 0.000936265 0)
(0.996689 0.000389288 0)
(0.999696 0.000185865 0)
(0.99252 -0.0261746 0)
(0.991643 -0.0254059 0)
(0.990649 -0.0241736 0)
(0.989597 -0.0223523 0)
(0.988623 -0.0200527 0)
(0.987829 -0.0174356 0)
(0.987278 -0.0146799 0)
(0.987015 -0.0119167 0)
(0.987057 -0.00924813 0)
(0.98741 -0.00674136 0)
(0.988103 -0.00444201 0)
(0.98912 -0.00240476 0)
(0.990381 -0.000656848 0)
(0.991731 0.000739697 0)
(0.99302 0.00177045 0)
(0.994269 0.00255483 0)
(0.99535 0.00285871 0)
(0.996221 0.00287852 0)
(0.996906 0.00262211 0)
(0.997296 0.00219841 0)
(0.997429 0.00161138 0)
(0.997477 0.00105449 0)
(0.996712 0.000504559 0)
(0.999739 0.000287445 0)
(0.992786 -0.0258638 0)
(0.991923 -0.0251002 0)
(0.990941 -0.0238799 0)
(0.989901 -0.0220843 0)
(0.988935 -0.0198269 0)
(0.988144 -0.0172636 0)
(0.987587 -0.0145644 0)
(0.987306 -0.0118565 0)
(0.987318 -0.00923623 0)
(0.987634 -0.00676705 0)
(0.988283 -0.00449311 0)
(0.989255 -0.00246891 0)
(0.990473 -0.000723481 0)
(0.991783 0.000678941 0)
(0.993044 0.00172625 0)
(0.994271 0.00253137 0)
(0.995336 0.0028648 0)
(0.996203 0.00291448 0)
(0.996891 0.00268604 0)
(0.997289 0.00228514 0)
(0.997433 0.00171597 0)
(0.997495 0.00116764 0)
(0.996737 0.000616604 0)
(0.999783 0.000386745 0)
(0.993046 -0.0255601 0)
(0.992196 -0.0248009 0)
(0.991226 -0.0235915 0)
(0.990197 -0.0218214 0)
(0.989239 -0.0196047 0)
(0.988452 -0.0170925 0)
(0.987888 -0.0144481 0)
(0.987589 -0.0117939 0)
(0.987574 -0.00922109 0)
(0.987853 -0.00678897 0)
(0.988461 -0.00453991 0)
(0.989388 -0.00252853 0)
(0.990563 -0.000785697 0)
(0.991835 0.000623123 0)
(0.993068 0.00168719 0)
(0.994273 0.00251183 0)
(0.995321 0.00287334 0)
(0.996184 0.00295221 0)
(0.996874 0.00275111 0)
(0.99728 0.00237241 0)
(0.997435 0.00182082 0)
(0.997509 0.00128132 0)
(0.99676 0.000729102 0)
(0.999826 0.000488515 0)
(0.993299 -0.0252628 0)
(0.992461 -0.0245068 0)
(0.991503 -0.0233076 0)
(0.990484 -0.0215618 0)
(0.989533 -0.0193848 0)
(0.988749 -0.0169232 0)
(0.988181 -0.0143329 0)
(0.987867 -0.0117317 0)
(0.987825 -0.00920591 0)
(0.98807 -0.00681085 0)
(0.988637 -0.00458671 0)
(0.989521 -0.00258883 0)
(0.990653 -0.00084938 0)
(0.991887 0.000564929 0)
(0.993093 0.00164472 0)
(0.994277 0.00248714 0)
(0.995308 0.00287566 0)
(0.996166 0.00298366 0)
(0.996859 0.00280964 0)
(0.997272 0.00245293 0)
(0.997438 0.00191941 0)
(0.997525 0.00138956 0)
(0.996784 0.000837963 0)
(0.99987 0.000587607 0)
(0.993546 -0.0249723 0)
(0.992721 -0.0242186 0)
(0.991773 -0.0230291 0)
(0.990764 -0.0213076 0)
(0.989821 -0.0191693 0)
(0.989041 -0.0167559 0)
(0.988466 -0.0142178 0)
(0.988136 -0.0116681 0)
(0.98807 -0.00918785 0)
(0.988282 -0.00682856 0)
(0.98881 -0.00462916 0)
(0.989652 -0.00264426 0)
(0.990743 -0.000907742 0)
(0.991938 0.000512084 0)
(0.993117 0.00160714 0)
(0.994279 0.00246658 0)
(0.995294 0.00288119 0)
(0.996147 0.00301748 0)
(0.996842 0.00286973 0)
(0.997263 0.00253449 0)
(0.997439 0.00201835 0)
(0.997538 0.00149821 0)
(0.996805 0.000947011 0)
(0.999913 0.000688523 0)
(0.993785 -0.0246884 0)
(0.992972 -0.0239366 0)
(0.992035 -0.0227553 0)
(0.991036 -0.0210582 0)
(0.9901 -0.0189565 0)
(0.989323 -0.0165909 0)
(0.988746 -0.0141044 0)
(0.988402 -0.0116054 0)
(0.988311 -0.00916977 0)
(0.988492 -0.00684592 0)
(0.988982 -0.00467124 0)
(0.989783 -0.00269966 0)
(0.990832 -0.000966766 0)
(0.991991 0.000457597 0)
(0.993143 0.00156683 0)
(0.994283 0.00244165 0)
(0.995281 0.00288121 0)
(0.996129 0.00304537 0)
(0.996826 0.00292354 0)
(0.997254 0.00260943 0)
(0.997441 0.0021109 0)
(0.997553 0.00160102 0)
(0.996829 0.00105186 0)
(0.999957 0.000786057 0)
(0.99402 -0.024412 0)
(0.993218 -0.0236612 0)
(0.992291 -0.0224877 0)
(0.991301 -0.0208145 0)
(0.990373 -0.0187487 0)
(0.9896 -0.0164286 0)
(0.989017 -0.0139916 0)
(0.988659 -0.0115411 0)
(0.988546 -0.00914868 0)
(0.988697 -0.00685915 0)
(0.989151 -0.00470827 0)
(0.989912 -0.00274973 0)
(0.990921 -0.00102051 0)
(0.992042 0.000408761 0)
(0.993168 0.00153221 0)
(0.994286 0.00242146 0)
(0.995268 0.00288459 0)
(0.996111 0.00307574 0)
(0.996809 0.00297918 0)
(0.997244 0.00268547 0)
(0.99744 0.00220389 0)
(0.997565 0.00170416 0)
(0.996849 0.00115675 0)
(1 0.000885375 0)
(0.994248 -0.024143 0)
(0.993456 -0.023392 0)
(0.992539 -0.0222256 0)
(0.991559 -0.0205757 0)
(0.990637 -0.0185444 0)
(0.989868 -0.0162693 0)
(0.989283 -0.0138807 0)
(0.988913 -0.0114775 0)
(0.988779 -0.00912717 0)
(0.988901 -0.00687138 0)
(0.989319 -0.00474399 0)
(0.990041 -0.00279897 0)
(0.99101 -0.00107422 0)
(0.992095 0.000358974 0)
(0.993193 0.00149541 0)
(0.99429 0.00239746 0)
(0.995256 0.0028829 0)
(0.996093 0.00310037 0)
(0.996792 0.00302857 0)
(0.997234 0.00275488 0)
(0.997441 0.00229036 0)
(0.997578 0.00180117 0)
(0.996871 0.00125686 0)
(1.00004 0.000980667 0)
(0.99447 -0.0238819 0)
(0.99369 -0.0231301 0)
(0.992782 -0.0219706 0)
(0.991811 -0.0203432 0)
(0.990898 -0.0183457 0)
(0.990132 -0.0161135 0)
(0.989543 -0.0137712 0)
(0.989161 -0.011413 0)
(0.989006 -0.00910266 0)
(0.989101 -0.00687895 0)
(0.989485 -0.00477462 0)
(0.990168 -0.00284258 0)
(0.991098 -0.00112201 0)
(0.992147 0.000314869 0)
(0.993219 0.00146364 0)
(0.994294 0.00237797 0)
(0.995244 0.00288493 0)
(0.996075 0.0031276 0)
(0.996775 0.00307979 0)
(0.997223 0.00282556 0)
(0.997439 0.00237718 0)
(0.997589 0.00189814 0)
(0.996891 0.0013567 0)
(1.00009 0.0010769 0)
(0.994686 -0.0236289 0)
(0.993916 -0.0228755 0)
(0.993018 -0.0217221 0)
(0.992058 -0.0201162 0)
(0.991151 -0.0181512 0)
(0.99039 -0.0159609 0)
(0.989799 -0.0136637 0)
(0.989406 -0.0113494 0)
(0.989232 -0.00907767 0)
(0.9893 -0.00688537 0)
(0.989651 -0.00480396 0)
(0.990296 -0.00288527 0)
(0.991187 -0.00116977 0)
(0.9922 0.000269612 0)
(0.993245 0.0014294 0)
(0.994299 0.00235454 0)
(0.995232 0.0028818 0)
(0.996058 0.00314879 0)
(0.996758 0.00312439 0)
(0.997212 0.00288922 0)
(0.997439 0.00245711 0)
(0.9976 0.00198869 0)
(0.996914 0.00145133 0)
(1.00013 0.00116867 0)
(0.994897 -0.0233843 0)
(0.994138 -0.0226284 0)
(0.99325 -0.0214806 0)
(0.992299 -0.019895 0)
(0.991402 -0.0179618 0)
(0.990645 -0.0158111 0)
(0.99005 -0.0135568 0)
(0.989646 -0.011284 0)
(0.989454 -0.00904936 0)
(0.989496 -0.00688747 0)
(0.989814 -0.00482828 0)
(0.990423 -0.00292295 0)
(0.991275 -0.00121296 0)
(0.992253 0.000228956 0)
(0.993271 0.00139957 0)
(0.994303 0.00233483 0)
(0.995221 0.00288139 0)
(0.99604 0.00317191 0)
(0.99674 0.00317026 0)
(0.9972 0.00295362 0)
(0.997436 0.00253729 0)
(0.997609 0.00207922 0)
(0.996934 0.00154585 0)
(1.00017 0.00126222 0)
(0.995101 -0.0231474 0)
(0.994353 -0.022388 0)
(0.993475 -0.0212449 0)
(0.992536 -0.0196783 0)
(0.991647 -0.0177753 0)
(0.990894 -0.0156633 0)
(0.990299 -0.0134506 0)
(0.989886 -0.0112182 0)
(0.989675 -0.00901987 0)
(0.989691 -0.00688814 0)
(0.989978 -0.00485134 0)
(0.99055 -0.00296036 0)
(0.991364 -0.00125709 0)
(0.992307 0.00018609 0)
(0.993298 0.00136614 0)
(0.994308 0.0023102 0)
(0.99521 0.00287504 0)
(0.996023 0.00318832 0)
(0.996722 0.00320884 0)
(0.997189 0.00301052 0)
(0.997434 0.00261028 0)
(0.997618 0.00216316 0)
(0.996956 0.00163491 0)
(1.00021 0.0013512 0)
(0.995301 -0.0229173 0)
(0.994565 -0.0221537 0)
(0.993697 -0.0210142 0)
(0.992769 -0.0194656 0)
(0.99189 -0.0175919 0)
(0.991142 -0.0155164 0)
(0.990544 -0.0133435 0)
(0.99012 -0.01115 0)
(0.989892 -0.00898664 0)
(0.989884 -0.00688434 0)
(0.99014 -0.00487035 0)
(0.990676 -0.00299394 0)
(0.991453 -0.00129763 0)
(0.99236 0.000146192 0)
(0.993325 0.00133495 0)
(0.994312 0.00228772 0)
(0.995198 0.00287063 0)
(0.996005 0.0032059 0)
(0.996704 0.0032482 0)
(0.997176 0.00306807 0)
(0.99743 0.00268345 0)
(0.997625 0.00224699 0)
(0.996976 0.00172378 0)
(1.00025 0.00144076 0)
(0.995494 -0.0226921 0)
(0.994769 -0.0219234 0)
(0.993914 -0.0207867 0)
(0.992998 -0.0192545 0)
(0.992129 -0.0174086 0)
(0.991386 -0.015369 0)
(0.990788 -0.0132353 0)
(0.990355 -0.0110803 0)
(0.99011 -0.00895189 0)
(0.990078 -0.00687942 0)
(0.990302 -0.00488907 0)
(0.990802 -0.00302836 0)
(0.991542 -0.00134038 0)
(0.992414 0.000102702 0)
(0.993352 0.00129882 0)
(0.994317 0.0022593 0)
(0.995187 0.00285948 0)
(0.995988 0.00321603 0)
(0.996686 0.00327974 0)
(0.997162 0.0031178 0)
(0.997426 0.00274922 0)
(0.997633 0.00232404 0)
(0.996997 0.00180708 0)
(1.00029 0.00152487 0)
(0.995684 -0.0224702 0)
(0.994972 -0.0216957 0)
(0.994127 -0.0205608 0)
(0.993224 -0.0190439 0)
(0.992366 -0.017225 0)
(0.991628 -0.0152196 0)
(0.991027 -0.013124 0)
(0.990586 -0.0110069 0)
(0.990324 -0.00891328 0)
(0.990269 -0.00687095 0)
(0.990463 -0.0049046 0)
(0.990928 -0.00306046 0)
(0.99163 -0.00138165 0)
(0.992468 6.05323e-05 0)
(0.993379 0.00126387 0)
(0.994322 0.00223186 0)
(0.995177 0.00284898 0)
(0.99597 0.00322659 0)
(0.996667 0.00331159 0)
(0.997148 0.00316785 0)
(0.997421 0.00281526 0)
(0.997639 0.00240132 0)
(0.997015 0.00189056 0)
(1.00032 0.00161013 0)
(0.995869 -0.0222492 0)
(0.995168 -0.0214682 0)
(0.994336 -0.0203345 0)
(0.993447 -0.0188321 0)
(0.992599 -0.017039 0)
(0.991867 -0.0150676 0)
(0.991267 -0.0130102 0)
(0.990817 -0.010931 0)
(0.990539 -0.00887287 0)
(0.99046 -0.00686164 0)
(0.990624 -0.00492041 0)
(0.991054 -0.00309445 0)
(0.99172 -0.00142632 0)
(0.992523 1.36447e-05 0)
(0.993407 0.00122292 0)
(0.994327 0.00219757 0)
(0.995166 0.00283103 0)
(0.995952 0.00322918 0)
(0.996647 0.00333516 0)
(0.997133 0.0032098 0)
(0.997415 0.00287376 0)
(0.997644 0.00247169 0)
(0.997035 0.0019683 0)
(1.00036 0.00169014 0)
(0.996052 -0.0220273 0)
(0.995363 -0.0212398 0)
(0.994543 -0.0201069 0)
(0.993667 -0.0186182 0)
(0.992831 -0.0168507 0)
(0.992104 -0.0149124 0)
(0.991501 -0.0128927 0)
(0.991043 -0.0108516 0)
(0.99075 -0.00882904 0)
(0.990648 -0.00684941 0)
(0.990783 -0.00493449 0)
(0.99118 -0.00312741 0)
(0.991809 -0.00147049 0)
(0.992578 -3.33638e-05 0)
(0.993434 0.0011813 0)
(0.994332 0.00216298 0)
(0.995155 0.00281313 0)
(0.995935 0.00323163 0)
(0.996628 0.00335874 0)
(0.997118 0.00325204 0)
(0.997408 0.0029324 0)
(0.997648 0.00254217 0)
(0.997052 0.00204603 0)
(1.0004 0.00177078 0)
(0.996231 -0.0218026 0)
(0.995552 -0.0210088 0)
(0.994745 -0.0198767 0)
(0.993883 -0.0184016 0)
(0.993058 -0.0166591 0)
(0.992336 -0.0147542 0)
(0.991735 -0.0127727 0)
(0.99127 -0.0107704 0)
(0.99096 -0.0087844 0)
(0.990837 -0.00683756 0)
(0.990943 -0.00495028 0)
(0.991305 -0.00316339 0)
(0.991898 -0.0015191 0)
(0.992634 -8.60823e-05 0)
(0.993463 0.00113282 0)
(0.994338 0.0021209 0)
(0.995145 0.00278725 0)
(0.995917 0.00322561 0)
(0.996608 0.00337366 0)
(0.997102 0.00328588 0)
(0.997401 0.00298326 0)
(0.997652 0.0026055 0)
(0.99707 0.00211777 0)
(1.00043 0.00184583 0)
(0.99641 -0.021574 0)
(0.995741 -0.0207747 0)
(0.994945 -0.0196438 0)
(0.994096 -0.0181823 0)
(0.993283 -0.016465 0)
(0.992566 -0.0145929 0)
(0.991963 -0.01265 0)
(0.99149 -0.010687 0)
(0.991167 -0.00873824 0)
(0.991022 -0.00682498 0)
(0.991101 -0.00496581 0)
(0.99143 -0.00319989 0)
(0.991988 -0.00156887 0)
(0.992689 -0.000139967 0)
(0.993491 0.00108323 0)
(0.994343 0.00207782 0)
(0.995135 0.00276044 0)
(0.995899 0.00321884 0)
(0.996587 0.00338804 0)
(0.997085 0.00331959 0)
(0.997392 0.00303426 0)
(0.997653 0.00266918 0)
(0.997086 0.00218974 0)
(1.00046 0.00192224 0)
(0.996584 -0.0213408 0)
(0.995925 -0.0205369 0)
(0.99514 -0.0194081 0)
(0.994304 -0.0179607 0)
(0.993502 -0.0162686 0)
(0.992791 -0.0144303 0)
(0.992189 -0.0125264 0)
(0.991711 -0.0106031 0)
(0.991373 -0.00869242 0)
(0.991207 -0.0068137 0)
(0.991258 -0.00498362 0)
(0.991555 -0.00323994 0)
(0.992078 -0.00162344 0)
(0.992746 -0.000199761 0)
(0.993521 0.00102661 0)
(0.99435 0.00202706 0)
(0.995125 0.00272543 0)
(0.995882 0.00320336 0)
(0.996567 0.00339341 0)
(0.997068 0.00334456 0)
(0.997383 0.00307718 0)
(0.997655 0.00272539 0)
(0.997103 0.0022555 0)
(1.0005 0.0019929 0)
(0.996759 -0.0211034 0)
(0.996108 -0.0202964 0)
(0.995334 -0.0191708 0)
(0.99451 -0.0177381 0)
(0.993719 -0.0160718 0)
(0.993013 -0.014267 0)
(0.992409 -0.012402 0)
(0.991924 -0.0105183 0)
(0.991574 -0.00864589 0)
(0.991388 -0.00680207 0)
(0.991414 -0.00500192 0)
(0.991679 -0.00328076 0)
(0.992168 -0.0016789 0)
(0.992803 -0.000260891 0)
(0.993551 0.000968261 0)
(0.994357 0.001975 0)
(0.995117 0.00268951 0)
(0.995865 0.0031869 0)
(0.996546 0.00339814 0)
(0.99705 0.00336935 0)
(0.997373 0.00311999 0)
(0.997655 0.00278172 0)
(0.997118 0.00232116 0)
(1.00053 0.00206407 0)
(0.99693 -0.0208623 0)
(0.996287 -0.0200537 0)
(0.995523 -0.0189326 0)
(0.994711 -0.0175153 0)
(0.99393 -0.0158751 0)
(0.993229 -0.0141045 0)
(0.992627 -0.0122784 0)
(0.992137 -0.0104345 0)
(0.991774 -0.00860068 0)
(0.991569 -0.00679237 0)
(0.991569 -0.00502283 0)
(0.991804 -0.00332495 0)
(0.992258 -0.00173871 0)
(0.992862 -0.000327448 0)
(0.993582 0.000903365 0)
(0.994365 0.00191572 0)
(0.995109 0.00264569 0)
(0.995848 0.00316183 0)
(0.996526 0.0033939 0)
(0.997032 0.00338533 0)
(0.997363 0.00315459 0)
(0.997655 0.00283032 0)
(0.997133 0.00238044 0)
(1.00056 0.00212917 0)
(0.997101 -0.0206187 0)
(0.996466 -0.0198098 0)
(0.99571 -0.0186943 0)
(0.994909 -0.0172932 0)
(0.994138 -0.0156796 0)
(0.993442 -0.0139428 0)
(0.992839 -0.012155 0)
(0.992344 -0.0103508 0)
(0.991969 -0.00855581 0)
(0.991747 -0.00678317 0)
(0.991722 -0.00504416 0)
(0.991927 -0.00336985 0)
(0.992349 -0.00179946 0)
(0.992921 -0.000394801 0)
(0.993614 0.000837715 0)
(0.994374 0.00185564 0)
(0.995102 0.00260099 0)
(0.995832 0.00313608 0)
(0.996506 0.00338915 0)
(0.997014 0.00340117 0)
(0.997352 0.00318933 0)
(0.997654 0.0028795 0)
(0.997147 0.00243996 0)
(1.00059 0.00219546 0)
(0.997269 -0.0203732 0)
(0.99664 -0.0195653 0)
(0.995893 -0.0184567 0)
(0.995103 -0.0170726 0)
(0.994341 -0.0154857 0)
(0.99365 -0.0137832 0)
(0.993048 -0.0120333 0)
(0.99255 -0.0102685 0)
(0.992164 -0.00851216 0)
(0.991923 -0.00677532 0)
(0.991875 -0.00506708 0)
(0.992051 -0.00341703 0)
(0.99244 -0.00186337 0)
(0.992981 -0.000466261 0)
(0.993647 0.000766814 0)
(0.994384 0.00178952 0)
(0.995096 0.00254941 0)
(0.995817 0.00310264 0)
(0.996486 0.00337605 0)
(0.996996 0.00340862 0)
(0.99734 0.00321605 0)
(0.997652 0.00292086 0)
(0.997161 0.002493 0)
(1.00062 0.00225541 0)
(0.997436 -0.0201271 0)
(0.996814 -0.0193211 0)
(0.996074 -0.0182204 0)
(0.995294 -0.0168538 0)
(0.994541 -0.015294 0)
(0.993854 -0.0136251 0)
(0.993251 -0.0119124 0)
(0.992748 -0.0101863 0)
(0.992353 -0.00846826 0)
(0.992096 -0.00676693 0)
(0.992026 -0.00508968 0)
(0.992174 -0.00346372 0)
(0.992532 -0.00192666 0)
(0.993041 -0.000537406 0)
(0.993681 0.000695896 0)
(0.994395 0.00172368 0)
(0.995091 0.00249831 0)
(0.995803 0.00306946 0)
(0.996467 0.00336332 0)
(0.996978 0.00341659 0)
(0.997329 0.00324307 0)
(0.997649 0.00296266 0)
(0.997173 0.00254583 0)
(1.00065 0.00231543 0)
(0.997598 -0.0198804 0)
(0.996982 -0.0190774 0)
(0.99625 -0.0179855 0)
(0.99548 -0.016637 0)
(0.994736 -0.0151044 0)
(0.994053 -0.0134693 0)
(0.993453 -0.0117932 0)
(0.992946 -0.0101054 0)
(0.99254 -0.00842514 0)
(0.992268 -0.00675916 0)
(0.992175 -0.00511297 0)
(0.992296 -0.00351141 0)
(0.992623 -0.00199165 0)
(0.993103 -0.000611141 0)
(0.993716 0.000621321 0)
(0.994407 0.00165343 0)
(0.995086 0.00244183 0)
(0.995788 0.00302986 0)
(0.996447 0.00334333 0)
(0.996959 0.00341693 0)
(0.997316 0.00326248 0)
(0.997646 0.00299662 0)
(0.997186 0.00259183 0)
(1.00067 0.00236845 0)
(0.99776 -0.0196339 0)
(0.997149 -0.0188345 0)
(0.996424 -0.0177519 0)
(0.995663 -0.016422 0)
(0.994927 -0.0149168 0)
(0.994248 -0.0133148 0)
(0.993647 -0.0116744 0)
(0.993137 -0.0100244 0)
(0.992722 -0.00838164 0)
(0.992436 -0.00675063 0)
(0.992323 -0.00513499 0)
(0.992418 -0.00355781 0)
(0.992715 -0.00205538 0)
(0.993165 -0.000683346 0)
(0.993752 0.00054841 0)
(0.99442 0.00158477 0)
(0.995083 0.00238672 0)
(0.995775 0.00299159 0)
(0.996428 0.00332447 0)
(0.996941 0.00341847 0)
(0.997303 0.00328294 0)
(0.997642 0.00303155 0)
(0.997197 0.00263797 0)
(1.0007 0.00242209 0)
(0.997915 -0.0193872 0)
(0.997311 -0.018592 0)
(0.996594 -0.0175197 0)
(0.995842 -0.0162087 0)
(0.995113 -0.014731 0)
(0.994439 -0.0131621 0)
(0.99384 -0.0115568 0)
(0.993328 -0.0099441 0)
(0.992904 -0.00833832 0)
(0.992602 -0.00674184 0)
(0.992469 -0.00515654 0)
(0.992539 -0.00360409 0)
(0.992807 -0.0021196 0)
(0.993228 -0.000756791 0)
(0.993789 0.000473264 0)
(0.994434 0.00151307 0)
(0.995081 0.00232757 0)
(0.995762 0.00294816 0)
(0.996409 0.00329931 0)
(0.996922 0.00341321 0)
(0.99729 0.00329634 0)
(0.997637 0.00305897 0)
(0.997208 0.00267713 0)
(1.00072 0.00246845 0)
(0.998071 -0.0191409 0)
(0.997472 -0.0183503 0)
(0.996761 -0.0172887 0)
(0.996017 -0.0159971 0)
(0.995296 -0.0145467 0)
(0.994626 -0.0130102 0)
(0.994027 -0.0114395 0)
(0.993511 -0.00986374 0)
(0.993079 -0.00829424 0)
(0.992765 -0.0067315 0)
(0.992613 -0.00517632 0)
(0.992658 -0.00364819 0)
(0.992898 -0.00218133 0)
(0.99329 -0.000827919 0)
(0.993826 0.000400258 0)
(0.994448 0.00144382 0)
(0.995079 0.00227092 0)
(0.99575 0.00290679 0)
(0.996391 0.00327604 0)
(0.996904 0.0034097 0)
(0.997276 0.00331093 0)
(0.997631 0.00308727 0)
(0.997217 0.00271621 0)
(1.00074 0.00251425 0)
(0.99822 -0.0188945 0)
(0.997627 -0.0181091 0)
(0.996923 -0.0170587 0)
(0.996188 -0.0157868 0)
(0.995473 -0.0143637 0)
(0.994808 -0.0128596 0)
(0.994212 -0.011323 0)
(0.993693 -0.00978367 0)
(0.993253 -0.00824967 0)
(0.992926 -0.00672019 0)
(0.992756 -0.00519492 0)
(0.992777 -0.00369122 0)
(0.992989 -0.00224254 0)
(0.993353 -0.000899302 0)
(0.993864 0.000326004 0)
(0.994463 0.00137249 0)
(0.995078 0.00221104 0)
(0.995738 0.00286092 0)
(0.996371 0.00324706 0)
(0.996884 0.00339968 0)
(0.997261 0.00331854 0)
(0.997624 0.00310806 0)
(0.997226 0.00274809 0)
(1.00076 0.00255231 0)
(0.998368 -0.0186483 0)
(0.99778 -0.0178682 0)
(0.997082 -0.0168294 0)
(0.996354 -0.0155773 0)
(0.995647 -0.0141816 0)
(0.994986 -0.012709 0)
(0.994389 -0.011206 0)
(0.993867 -0.00970298 0)
(0.993421 -0.00820411 0)
(0.993082 -0.0067073 0)
(0.992894 -0.00521129 0)
(0.992893 -0.00373193 0)
(0.993078 -0.00230134 0)
(0.993416 -0.000968004 0)
(0.993901 0.000254541 0)
(0.994478 0.00130375 0)
(0.995077 0.00215335 0)
(0.995726 0.00281709 0)
(0.996353 0.00321979 0)
(0.996865 0.00339113 0)
(0.997246 0.00332724 0)
(0.997616 0.00312978 0)
(0.997234 0.00278007 0)
(1.00078 0.00259072 0)
(0.998507 -0.0184015 0)
(0.997925 -0.0176274 0)
(0.997234 -0.0166006 0)
(0.996514 -0.0153686 0)
(0.995814 -0.0140001 0)
(0.995157 -0.012559 0)
(0.994563 -0.0110893 0)
(0.994039 -0.0096218 0)
(0.993585 -0.00815747 0)
(0.993235 -0.00669295 0)
(0.993031 -0.00522602 0)
(0.993008 -0.00377131 0)
(0.993167 -0.00235941 0)
(0.993478 -0.00103674 0)
(0.993939 0.000181978 0)
(0.994494 0.00123292 0)
(0.995076 0.00209231 0)
(0.995713 0.00276863 0)
(0.996333 0.00318661 0)
(0.996844 0.00337586 0)
(0.997229 0.00332868 0)
(0.997607 0.00314377 0)
(0.997241 0.00280481 0)
(1.00079 0.00262126 0)
(0.998644 -0.0181548 0)
(0.998066 -0.0173867 0)
(0.997381 -0.0163723 0)
(0.996669 -0.0151606 0)
(0.995976 -0.0138192 0)
(0.995324 -0.0124088 0)
(0.99473 -0.0109724 0)
(0.994202 -0.00954016 0)
(0.993744 -0.00810959 0)
(0.993383 -0.00667666 0)
(0.993164 -0.00523864 0)
(0.99312 -0.00380827 0)
(0.993254 -0.00241487 0)
(0.99354 -0.00110314 0)
(0.993976 0.000111463 0)
(0.99451 0.0011642 0)
(0.995076 0.00203321 0)
(0.995702 0.00272157 0)
(0.996315 0.00315475 0)
(0.996824 0.00336158 0)
(0.997213 0.00333061 0)
(0.997598 0.00315821 0)
(0.997247 0.00282924 0)
(1.00081 0.00265138 0)
(0.998773 -0.0179077 0)
(0.998201 -0.0171461 0)
(0.997523 -0.0161443 0)
(0.996819 -0.0149531 0)
(0.996133 -0.0136386 0)
(0.995486 -0.0122592 0)
(0.994895 -0.010856 0)
(0.994365 -0.00945798 0)
(0.993901 -0.00806038 0)
(0.993531 -0.00665876 0)
(0.993297 -0.00524961 0)
(0.993233 -0.00384375 0)
(0.993343 -0.00246942 0)
(0.993603 -0.0011695 0)
(0.994016 3.98258e-05 0)
(0.994527 0.00109329 0)
(0.995077 0.00197054 0)
(0.995691 0.00266954 0)
(0.996296 0.00311679 0)
(0.996804 0.00334042 0)
(0.997195 0.00332517 0)
(0.997587 0.00316487 0)
(0.997254 0.00284646 0)
(1.00082 0.00267347 0)
(0.998902 -0.0176605 0)
(0.998335 -0.0169054 0)
(0.997664 -0.0159165 0)
(0.996967 -0.0147457 0)
(0.996288 -0.0134582 0)
(0.995646 -0.0121093 0)
(0.995054 -0.0107388 0)
(0.994523 -0.00937464 0)
(0.994055 -0.0080099 0)
(0.993676 -0.00663923 0)
(0.993428 -0.00525851 0)
(0.993345 -0.00387715 0)
(0.993431 -0.00252193 0)
(0.993667 -0.00123371 0)
(0.994056 -2.97559e-05 0)
(0.994546 0.00102398 0)
(0.99508 0.00190893 0)
(0.995683 0.0026184 0)
(0.996279 0.00307949 0)
(0.996785 0.00331991 0)
(0.997179 0.0033202 0)
(0.997577 0.00317204 0)
(0.997259 0.00286347 0)
(1.00084 0.00269619 0)
(0.999027 -0.0174126 0)
(0.998466 -0.0166645 0)
(0.997802 -0.0156887 0)
(0.997113 -0.0145387 0)
(0.996441 -0.0132778 0)
(0.995805 -0.0119596 0)
(0.995215 -0.0106216 0)
(0.994682 -0.00929019 0)
(0.994209 -0.0079578 0)
(0.993822 -0.00661793 0)
(0.99356 -0.00526563 0)
(0.993458 -0.00390915 0)
(0.993522 -0.00257362 0)
(0.993734 -0.00129796 0)
(0.994099 -0.000100576 0)
(0.994567 0.000952271 0)
(0.995085 0.00184355 0)
(0.995675 0.00256221 0)
(0.996263 0.00303595 0)
(0.996766 0.00329244 0)
(0.997162 0.00330783 0)
(0.997567 0.00317149 0)
(0.997265 0.00287341 0)
(1.00085 0.00271098 0)
(0.999154 -0.0171645 0)
(0.998598 -0.0164234 0)
(0.99794 -0.0154609 0)
(0.997259 -0.0143315 0)
(0.996594 -0.0130974 0)
(0.995962 -0.0118093 0)
(0.995373 -0.0105036 0)
(0.994838 -0.0092048 0)
(0.994361 -0.00790426 0)
(0.993966 -0.00659479 0)
(0.993691 -0.00527088 0)
(0.993571 -0.0039391 0)
(0.993613 -0.00262319 0)
(0.993802 -0.00136049 0)
(0.994144 -0.000170075 0)
(0.994591 0.000881824 0)
(0.995092 0.00177922 0)
(0.995669 0.00250665 0)
(0.996249 0.00299311 0)
(0.996749 0.00326547 0)
(0.997146 0.00329569 0)
(0.997556 0.00317132 0)
(0.99727 0.00288302 0)
(1.00086 0.00272583 0)
(0.999277 -0.0169156 0)
(0.998728 -0.0161819 0)
(0.998077 -0.015233 0)
(0.997403 -0.0141245 0)
(0.996745 -0.0129168 0)
(0.996119 -0.0116591 0)
(0.995532 -0.0103855 0)
(0.994995 -0.00911825 0)
(0.994515 -0.00784903 0)
(0.994112 -0.00656981 0)
(0.993824 -0.00527432 0)
(0.993687 -0.00396742 0)
(0.993706 -0.0026717 0)
(0.993872 -0.00142288 0)
(0.994191 -0.000240617 0)
(0.994617 0.000809193 0)
(0.995101 0.00171133 0)
(0.995665 0.00244631 0)
(0.996235 0.00294439 0)
(0.996732 0.00323185 0)
(0.99713 0.00327651 0)
(0.997546 0.00316393 0)
(0.997275 0.00288602 0)
(1.00087 0.00273295 0)
(0.999403 -0.0166664 0)
(0.998858 -0.0159399 0)
(0.998214 -0.0150047 0)
(0.997548 -0.0139169 0)
(0.996897 -0.0127357 0)
(0.996275 -0.0115078 0)
(0.995688 -0.0102662 0)
(0.99515 -0.00903017 0)
(0.994667 -0.00779223 0)
(0.994256 -0.0065431 0)
(0.993957 -0.00527572 0)
(0.993802 -0.00399378 0)
(0.993801 -0.00271835 0)
(0.993944 -0.00148342 0)
(0.99424 -0.000309477 0)
(0.994645 0.00073777 0)
(0.995113 0.00164418 0)
(0.995663 0.00238671 0)
(0.996224 0.00289624 0)
(0.996717 0.00319886 0)
(0.997115 0.00325805 0)
(0.997536 0.00315747 0)
(0.99728 0.00288926 0)
(1.00088 0.00274136 0)
(0.999525 -0.0164161 0)
(0.998986 -0.0156973 0)
(0.998349 -0.014776 0)
(0.997691 -0.013709 0)
(0.997046 -0.0125541 0)
(0.99643 -0.0113562 0)
(0.995846 -0.0101461 0)
(0.995307 -0.0089405 0)
(0.99482 -0.00773347 0)
(0.994402 -0.0065143 0)
(0.994091 -0.00527504 0)
(0.99392 -0.00401838 0)
(0.993898 -0.0027638 0)
(0.994019 -0.00154362 0)
(0.994292 -0.000379145 0)
(0.994675 0.000664453 0)
(0.995126 0.00157382 0)
(0.995662 0.00232273 0)
(0.996213 0.00284252 0)
(0.996702 0.00315953 0)
(0.997101 0.00323297 0)
(0.997526 0.00314429 0)
(0.997286 0.00288633 0)
(1.00088 0.00274225 0)
(0.999648 -0.0161653 0)
(0.999115 -0.0154542 0)
(0.998484 -0.0145468 0)
(0.997833 -0.0135006 0)
(0.997196 -0.0123717 0)
(0.996584 -0.0112034 0)
(0.996001 -0.0100243 0)
(0.995461 -0.00884886 0)
(0.994971 -0.00767316 0)
(0.994546 -0.00648386 0)
(0.994224 -0.00527265 0)
(0.994037 -0.00404107 0)
(0.993996 -0.0028073 0)
(0.994095 -0.00160225 0)
(0.994346 -0.000447547 0)
(0.994708 0.00059246 0)
(0.995142 0.00150464 0)
(0.995664 0.00225959 0)
(0.996205 0.00278971 0)
(0.996689 0.00312081 0)
(0.997087 0.00320852 0)
(0.997517 0.00313202 0)
(0.997292 0.00288348 0)
(1.00089 0.00274365 0)
(0.999768 -0.0159136 0)
(0.999241 -0.0152106 0)
(0.998618 -0.0143173 0)
(0.997975 -0.0132918 0)
(0.997344 -0.0121889 0)
(0.996737 -0.0110501 0)
(0.996158 -0.00990161 0)
(0.995617 -0.00875599 0)
(0.995124 -0.00761089 0)
(0.994692 -0.0064512 0)
(0.994359 -0.00526801 0)
(0.994157 -0.00406162 0)
(0.994095 -0.00284917 0)
(0.994173 -0.00166009 0)
(0.994403 -0.000516243 0)
(0.994743 0.000519164 0)
(0.99516 0.00143288 0)
(0.995668 0.0021927 0)
(0.996199 0.00273206 0)
(0.996677 0.00307624 0)
(0.997074 0.00317786 0)
(0.997507 0.00311339 0)
(0.997298 0.00287469 0)
(1.0009 0.00273733 0)
(0.999889 -0.0156613 0)
(0.999367 -0.0149663 0)
(0.99875 -0.0140871 0)
(0.998115 -0.0130823 0)
(0.997492 -0.0120052 0)
(0.99689 -0.0108954 0)
(0.996311 -0.00977708 0)
(0.99577 -0.00866161 0)
(0.995274 -0.00754726 0)
(0.994837 -0.00641682 0)
(0.994494 -0.0052612 0)
(0.994277 -0.00408002 0)
(0.994196 -0.002889 0)
(0.994254 -0.00171588 0)
(0.994461 -0.000582987 0)
(0.994781 0.000447414 0)
(0.995181 0.00136231 0)
(0.995674 0.00212704 0)
(0.996194 0.00267551 0)
(0.996667 0.00303276 0)
(0.997063 0.00314833 0)
(0.997499 0.00309593 0)
(0.997303 0.00286606 0)
(1.0009 0.00273253 0)
(1.00001 -0.015408 0)
(0.999491 -0.0147213 0)
(0.998882 -0.0138564 0)
(0.998254 -0.0128724 0)
(0.997638 -0.0118209 0)
(0.997041 -0.0107399 0)
(0.996467 -0.00965155 0)
(0.995925 -0.00856581 0)
(0.995426 -0.00748144 0)
(0.994983 -0.00637985 0)
(0.99463 -0.00525178 0)
(0.994398 -0.0040961 0)
(0.9943 -0.002927 0)
(0.994336 -0.00177056 0)
(0.994522 -0.000649567 0)
(0.994821 0.000374786 0)
(0.995204 0.00128963 0)
(0.995682 0.00205818 0)
(0.996191 0.00261465 0)
(0.996658 0.00298387 0)
(0.997051 0.00311286 0)
(0.99749 0.00307232 0)
(0.99731 0.00285166 0)
(1.00091 0.00271997 0)
(1.00012 -0.0151543 0)
(0.999615 -0.0144758 0)
(0.999012 -0.0136252 0)
(0.998393 -0.0126617 0)
(0.997784 -0.0116357 0)
(0.997191 -0.010583 0)
(0.996619 -0.00952433 0)
(0.996077 -0.00846834 0)
(0.995575 -0.00741389 0)
(0.995127 -0.00634114 0)
(0.994765 -0.00524048 0)
(0.99452 -0.00411009 0)
(0.994404 -0.00296284 0)
(0.994421 -0.00182334 0)
(0.994585 -0.000714384 0)
(0.994864 0.000303952 0)
(0.995229 0.00121862 0)
(0.995693 0.00199066 0)
(0.996191 0.00255526 0)
(0.996651 0.00293601 0)
(0.997042 0.00307815 0)
(0.997483 0.00304948 0)
(0.997316 0.00283699 0)
(1.00091 0.00270804 0)
(1.00024 -0.0148996 0)
(0.999736 -0.0142298 0)
(0.999141 -0.0133936 0)
(0.99853 -0.0124507 0)
(0.997927 -0.0114499 0)
(0.997341 -0.0104255 0)
(0.996772 -0.00939621 0)
(0.99623 -0.00836972 0)
(0.995726 -0.00734421 0)
(0.995273 -0.00629985 0)
(0.994902 -0.00522653 0)
(0.994643 -0.00412147 0)
(0.99451 -0.00299646 0)
(0.994507 -0.00187454 0)
(0.994651 -0.000778468 0)
(0.994909 0.00023288 0)
(0.995257 0.00114615 0)
(0.995705 0.00192051 0)
(0.996191 0.00249216 0)
(0.996645 0.00288309 0)
(0.997033 0.00303771 0)
(0.997476 0.00302078 0)
(0.997324 0.00281685 0)
(1.00091 0.00268844 0)
(1.00035 -0.0146446 0)
(0.999857 -0.0139833 0)
(0.999269 -0.0131615 0)
(0.998666 -0.012239 0)
(0.99807 -0.0112632 0)
(0.997489 -0.0102666 0)
(0.996923 -0.0092665 0)
(0.99638 -0.00826949 0)
(0.995874 -0.00727297 0)
(0.995417 -0.0062567 0)
(0.995038 -0.00521036 0)
(0.994767 -0.00413061 0)
(0.994617 -0.00302781 0)
(0.994596 -0.00192336 0)
(0.994719 -0.000840205 0)
(0.994956 0.000163788 0)
(0.995288 0.00107533 0)
(0.99572 0.00185206 0)
(0.996195 0.00243053 0)
(0.996641 0.00283149 0)
(0.997026 0.00299846 0)
(0.99747 0.00299323 0)
(0.997331 0.00279683 0)
(1.00092 0.00267071 0)
(1.00047 -0.0143887 0)
(0.999974 -0.0137362 0)
(0.999395 -0.0129289 0)
(0.9988 -0.0120269 0)
(0.998211 -0.0110759 0)
(0.997636 -0.0101069 0)
(0.997074 -0.0091357 0)
(0.996532 -0.00816774 0)
(0.996024 -0.00719946 0)
(0.995563 -0.00621087 0)
(0.995175 -0.00519137 0)
(0.994892 -0.00413704 0)
(0.994726 -0.00305677 0)
(0.994686 -0.00197032 0)
(0.994789 -0.000900901 0)
(0.995007 9.48102e-05 0)
(0.99532 0.00100348 0)
(0.995737 0.00178145 0)
(0.996199 0.00236557 0)
(0.996638 0.00277517 0)
(0.997019 0.00295376 0)
(0.997464 0.00296016 0)
(0.997339 0.00277175 0)
(1.00092 0.00264558 0)
(1.00058 -0.0141325 0)
(1.00009 -0.0134887 0)
(0.99952 -0.0126959 0)
(0.998933 -0.0118141 0)
(0.998352 -0.0108877 0)
(0.997781 -0.00994569 0)
(0.997222 -0.00900321 0)
(0.996681 -0.00806433 0)
(0.996172 -0.00712401 0)
(0.995707 -0.0061631 0)
(0.995312 -0.00517036 0)
(0.995017 -0.0041412 0)
(0.994836 -0.00308334 0)
(0.994778 -0.00201511 0)
(0.994861 -0.000959536 0)
(0.995059 2.79536e-05 0)
(0.995356 0.000933626 0)
(0.995757 0.00171249 0)
(0.996207 0.00230228 0)
(0.996638 0.00272005 0)
(0.997015 0.00291006 0)
(0.99746 0.00292809 0)
(0.997347 0.00274665 0)
(1.00092 0.00262164 0)
(1.00068 -0.0138758 0)
(1.00021 -0.013241 0)
(0.999643 -0.0124627 0)
(0.999064 -0.011601 0)
(0.99849 -0.0106989 0)
(0.997926 -0.00978389 0)
(0.997371 -0.00886963 0)
(0.996831 -0.00795933 0)
(0.99632 -0.00704629 0)
(0.995853 -0.00611277 0)
(0.99545 -0.0051466 0)
(0.995144 -0.00414247 0)
(0.994947 -0.00310722 0)
(0.994873 -0.00205774 0)
(0.994936 -0.0010168 0)
(0.995114 -3.84242e-05 0)
(0.995393 0.000863106 0)
(0.995778 0.0016417 0)
(0.996216 0.00223611 0)
(0.996639 0.00266058 0)
(0.997011 0.00286134 0)
(0.997456 0.00289093 0)
(0.997356 0.00271689 0)
(1.00092 0.00259042 0)
(1.00079 -0.0136188 0)
(1.00032 -0.0129929 0)
(0.999765 -0.0122291 0)
(0.999194 -0.0113873 0)
(0.998627 -0.0105092 0)
(0.998068 -0.0096206 0)
(0.997517 -0.00873444 0)
(0.996978 -0.00785242 0)
(0.996467 -0.00696664 0)
(0.995996 -0.00606054 0)
(0.995587 -0.00512066 0)
(0.99527 -0.0041414 0)
(0.99506 -0.00312866 0)
(0.994968 -0.00209784 0)
(0.995013 -0.00107163 0)
(0.995172 -0.000102753 0)
(0.995434 0.000794327 0)
(0.995803 0.00157269 0)
(0.996228 0.00217147 0)
(0.996642 0.0026026 0)
(0.997009 0.00281411 0)
(0.997454 0.0028552 0)
(0.997365 0.00268748 0)
(1.00093 0.00256165 0)
(1.0009 -0.0133614 0)
(1.00043 -0.0127445 0)
(0.999885 -0.0119952 0)
(0.999322 -0.0111733 0)
(0.998762 -0.010319 0)
(0.998209 -0.00945651 0)
(0.997663 -0.00859785 0)
(0.997126 -0.0077435 0)
(0.996614 -0.00688457 0)
(0.996141 -0.0060055 0)
(0.995726 -0.00509166 0)
(0.995399 -0.00413725 0)
(0.995174 -0.00314724 0)
(0.995066 -0.00213561 0)
(0.995092 -0.00112495 0)
(0.995232 -0.000166524 0)
(0.995476 0.000724977 0)
(0.995829 0.00150197 0)
(0.996241 0.00210403 0)
(0.996646 0.00254041 0)
(0.997008 0.00276197 0)
(0.997452 0.00281465 0)
(0.997375 0.00265375 0)
(1.00093 0.00252541 0)
(1.001 -0.0131039 0)
(1.00054 -0.012496 0)
(1 -0.0117611 0)
(0.999448 -0.0109588 0)
(0.998896 -0.0101277 0)
(0.998348 -0.00929091 0)
(0.997805 -0.00845949 0)
(0.997271 -0.00763258 0)
(0.996759 -0.00680043 0)
(0.996284 -0.00594863 0)
(0.995863 -0.00506075 0)
(0.995526 -0.00413091 0)
(0.995289 -0.0031635 0)
(0.995166 -0.0021713 0)
(0.995173 -0.00117637 0)
(0.995294 -0.000228436 0)
(0.995522 0.000657282 0)
(0.995858 0.00143252 0)
(0.996257 0.0020379 0)
(0.996653 0.00247918 0)
(0.99701 0.00271068 0)
(0.997452 0.00277494 0)
(0.997384 0.00261994 0)
(1.00093 0.00249088 0)
(1.0011 -0.0128462 0)
(1.00065 -0.0122475 0)
(1.00012 -0.011527 0)
(0.999572 -0.0107441 0)
(0.999027 -0.00993614 0)
(0.998486 -0.00912464 0)
(0.997948 -0.0083198 0)
(0.997416 -0.00751971 0)
(0.996905 -0.0067139 0)
(0.996427 -0.00588875 0)
(0.996001 -0.00502658 0)
(0.995656 -0.00412123 0)
(0.995406 -0.0031767 0)
(0.995267 -0.00220454 0)
(0.995256 -0.00122618 0)
(0.995359 -0.000289722 0)
(0.995569 0.000589007 0)
(0.995889 0.00136128 0)
(0.996274 0.00196889 0)
(0.996661 0.0024136 0)
(0.997012 0.00265429 0)
(0.997452 0.00273019 0)
(0.997396 0.00258174 0)
(1.00093 0.00244929 0)
(1.0012 -0.0125887 0)
(1.00075 -0.011999 0)
(1.00023 -0.0112927 0)
(0.999694 -0.0105289 0)
(0.999157 -0.00974362 0)
(0.998621 -0.00895699 0)
(0.998087 -0.00817846 0)
(0.997558 -0.00740469 0)
(0.997048 -0.00662519 0)
(0.996569 -0.00582662 0)
(0.996139 -0.00498987 0)
(0.995785 -0.00410901 0)
(0.995523 -0.00318742 0)
(0.995369 -0.00223539 0)
(0.995341 -0.00127386 0)
(0.995426 -0.000349401 0)
(0.995619 0.000521893 0)
(0.995923 0.00129108 0)
(0.996294 0.00190052 0)
(0.996672 0.00234876 0)
(0.997016 0.00259867 0)
(0.997454 0.00268606 0)
(0.997406 0.00254334 0)
(1.00093 0.00241036 0)
(1.00129 -0.0123311 0)
(1.00086 -0.0117506 0)
(1.00034 -0.0110585 0)
(0.999814 -0.0103136 0)
(0.999284 -0.0095507 0)
(0.998755 -0.00878863 0)
(0.998226 -0.00803563 0)
(0.997701 -0.00728755 0)
(0.997191 -0.00653385 0)
(0.996711 -0.0057611 0)
(0.996277 -0.0049495 0)
(0.995915 -0.00409327 0)
(0.995641 -0.00319501 0)
(0.995473 -0.00226373 0)
(0.995428 -0.00131988 0)
(0.995495 -0.000408451 0)
(0.995671 0.00045416 0)
(0.995958 0.00121896 0)
(0.996315 0.00182897 0)
(0.996683 0.00227943 0)
(0.997021 0.0025378 0)
(0.997456 0.00263666 0)
(0.997419 0.00250052 0)
(1.00093 0.00236443 0)
(1.00139 -0.0120739 0)
(1.00096 -0.0115024 0)
(1.00045 -0.0108244 0)
(0.999932 -0.0100981 0)
(0.99941 -0.00935708 0)
(0.998887 -0.00861893 0)
(0.998362 -0.00789098 0)
(0.99784 -0.00716821 0)
(0.997332 -0.00644001 0)
(0.996851 -0.00569301 0)
(0.996413 -0.00490675 0)
(0.996044 -0.00407516 0)
(0.99576 -0.00320033 0)
(0.995578 -0.00229014 0)
(0.995517 -0.00136423 0)
(0.995566 -0.000466031 0)
(0.995726 0.000387507 0)
(0.995996 0.00114735 0)
(0.99634 0.00175769 0)
(0.996697 0.00221025 0)
(0.997029 0.00247702 0)
(0.997461 0.00258721 0)
(0.997431 0.002457 0)
(1.00093 0.00232037 0)
(1.00148 -0.011817 0)
(1.00106 -0.0112546 0)
(1.00056 -0.0105906 0)
(1.00005 -0.0098827 0)
(0.999533 -0.00916328 0)
(0.999017 -0.00844866 0)
(0.998497 -0.00774506 0)
(0.99798 -0.00704695 0)
(0.997473 -0.00634374 0)
(0.996991 -0.00562175 0)
(0.996551 -0.00486055 0)
(0.996175 -0.0040536 0)
(0.99588 -0.0032025 0)
(0.995685 -0.00231395 0)
(0.995607 -0.00140673 0)
(0.995639 -0.000522709 0)
(0.995783 0.000320529 0)
(0.996036 0.00107411 0)
(0.996365 0.00168356 0)
(0.996713 0.00213685 0)
(0.997038 0.00241123 0)
(0.997465 0.00253264 0)
(0.997445 0.00240914 0)
(1.00093 0.00226934 0)
(1.00157 -0.0115607 0)
(1.00115 -0.0110073 0)
(1.00066 -0.010357 0)
(1.00016 -0.00966719 0)
(0.999655 -0.00896889 0)
(0.999144 -0.00827729 0)
(0.998629 -0.00759761 0)
(0.998116 -0.00692373 0)
(0.997611 -0.00624512 0)
(0.997129 -0.00554805 0)
(0.996686 -0.0048118 0)
(0.996304 -0.00402958 0)
(0.995999 -0.00320231 0)
(0.995792 -0.00233545 0)
(0.995699 -0.00144714 0)
(0.995714 -0.000577803 0)
(0.995841 0.000254724 0)
(0.996079 0.00100183 0)
(0.996394 0.00160993 0)
(0.996731 0.00206424 0)
(0.997049 0.00234618 0)
(0.997473 0.00247851 0)
(0.997458 0.002361 0)
(1.00093 0.00222148 0)
(1.00165 -0.0113047 0)
(1.00125 -0.0107604 0)
(1.00077 -0.0101238 0)
(1.00027 -0.00945188 0)
(0.999773 -0.00877444 0)
(0.99927 -0.00810543 0)
(0.998761 -0.00744901 0)
(0.998252 -0.00679868 0)
(0.997749 -0.00614424 0)
(0.997268 -0.00547128 0)
(0.996823 -0.0047597 0)
(0.996434 -0.00400219 0)
(0.99612 -0.00319887 0)
(0.9959 -0.00235409 0)
(0.995792 -0.00148529 0)
(0.995791 -0.000631459 0)
(0.995902 0.000189325 0)
(0.996123 0.000928805 0)
(0.996424 0.00153437 0)
(0.99675 0.00198844 0)
(0.997061 0.00227702 0)
(0.99748 0.00241996 0)
(0.997474 0.00230918 0)
(1.00092 0.00216725 0)
(1.00174 -0.0110496 0)
(1.00134 -0.0105142 0)
(1.00087 -0.00989112 0)
(1.00038 -0.00923676 0)
(0.99989 -0.00857965 0)
(0.999393 -0.00793269 0)
(0.99889 -0.00729899 0)
(0.998385 -0.00667194 0)
(0.997885 -0.00604134 0)
(0.997403 -0.00539222 0)
(0.996957 -0.00470533 0)
(0.996563 -0.00397244 0)
(0.99624 -0.00319299 0)
(0.996009 -0.00237039 0)
(0.995887 -0.00152121 0)
(0.99587 -0.000682938 0)
(0.995965 0.0001259 0)
(0.99617 0.000857327 0)
(0.996456 0.00146028 0)
(0.996771 0.00191407 0)
(0.997076 0.00220915 0)
(0.997491 0.00236228 0)
(0.997489 0.00225745 0)
(1.00093 0.00211601 0)
(1.00182 -0.0107953 0)
(1.00143 -0.0102689 0)
(1.00096 -0.00965923 0)
(1.00049 -0.00902214 0)
(1 -0.0083851 0)
(0.999514 -0.00775973 0)
(0.999017 -0.00714819 0)
(0.998517 -0.00654385 0)
(0.99802 -0.00593651 0)
(0.997539 -0.00531065 0)
(0.997091 -0.00464799 0)
(0.996692 -0.00393941 0)
(0.996361 -0.00318379 0)
(0.996119 -0.00238358 0)
(0.995983 -0.00155442 0)
(0.99595 -0.000732332 0)
(0.996029 6.36881e-05 0)
(0.996218 0.000786094 0)
(0.996489 0.00138547 0)
(0.996794 0.00183779 0)
(0.997092 0.00213837 0)
(0.997501 0.0023011 0)
(0.997506 0.00220277 0)
(1.00092 0.00205891 0)
(1.0019 -0.0105421 0)
(1.00151 -0.0100246 0)
(1.00106 -0.00942803 0)
(1.00059 -0.00880789 0)
(1.00012 -0.00819038 0)
(0.999633 -0.00758619 0)
(0.999142 -0.0069963 0)
(0.998646 -0.00641459 0)
(0.998152 -0.00583009 0)
(0.997673 -0.00522728 0)
(0.997224 -0.00458898 0)
(0.99682 -0.00390452 0)
(0.996482 -0.00317243 0)
(0.996229 -0.00239432 0)
(0.996079 -0.0015851 0)
(0.996031 -0.000779406 0)
(0.996095 3.66984e-06 0)
(0.996268 0.000717144 0)
(0.996526 0.00131266 0)
(0.99682 0.00176398 0)
(0.99711 0.00206999 0)
(0.997514 0.00224179 0)
(0.997523 0.00214893 0)
(1.00092 0.00200607 0)
(1.00197 -0.0102898 0)
(1.0016 -0.00978113 0)
(1.00115 -0.00919769 0)
(1.00069 -0.00859424 0)
(1.00023 -0.00799605 0)
(0.999749 -0.0074126 0)
(0.999265 -0.0068439 0)
(0.998775 -0.00628417 0)
(0.998284 -0.00572197 0)
(0.997806 -0.00514168 0)
(0.997356 -0.00452704 0)
(0.996948 -0.00386637 0)
(0.996603 -0.00315765 0)
(0.99634 -0.00240169 0)
(0.996177 -0.00161273 0)
(0.996115 -0.00082395 0)
(0.996163 -5.45635e-05 0)
(0.99632 0.000649126 0)
(0.996563 0.00123987 0)
(0.996846 0.00168917 0)
(0.99713 0.00199955 0)
(0.997527 0.0021796 0)
(0.997542 0.00209268 0)
(1.00092 0.00194783 0)
(1.00205 -0.0100389 0)
(1.00168 -0.00953894 0)
(1.00124 -0.00896834 0)
(1.00079 -0.00838124 0)
(1.00033 -0.00780188 0)
(0.999863 -0.00723846 0)
(0.999385 -0.00669056 0)
(0.9989 -0.00615256 0)
(0.998413 -0.00561225 0)
(0.997937 -0.00505443 0)
(0.997486 -0.00446327 0)
(0.997075 -0.003826 0)
(0.996723 -0.00314031 0)
(0.996451 -0.00240643 0)
(0.996276 -0.00163767 0)
(0.996199 -0.000865748 0)
(0.996233 -0.00011016 0)
(0.996375 0.000583481 0)
(0.996603 0.00116944 0)
(0.996875 0.00161682 0)
(0.997152 0.00193137 0)
(0.997543 0.00211905 0)
(0.99756 0.00203713 0)
(1.00092 0.00189318 0)
(1.00212 -0.0097892 0)
(1.00176 -0.00929805 0)
(1.00133 -0.00874015 0)
(1.00089 -0.00816916 0)
(1.00044 -0.00760814 0)
(0.999975 -0.00706434 0)
(0.999504 -0.00653673 0)
(0.999025 -0.0060198 0)
(0.998541 -0.00550089 0)
(0.998067 -0.00496503 0)
(0.997616 -0.00439659 0)
(0.997202 -0.00378224 0)
(0.996844 -0.00311946 0)
(0.996563 -0.00240777 0)
(0.996376 -0.00165951 0)
(0.996285 -0.000904928 0)
(0.996304 -0.000163858 0)
(0.99643 0.000518921 0)
(0.996644 0.00109923 0)
(0.996905 0.00154364 0)
(0.997174 0.00186126 0)
(0.997559 0.00205556 0)
(0.997581 0.0019791 0)
(1.00092 0.00183308 0)
(1.00218 -0.0095411 0)
(1.00183 -0.00905851 0)
(1.00141 -0.00851307 0)
(1.00098 -0.00795774 0)
(1.00054 -0.00741456 0)
(1.00008 -0.0068898 0)
(0.99962 -0.00638211 0)
(0.999145 -0.00588587 0)
(0.998666 -0.00538805 0)
(0.998194 -0.00487388 0)
(0.997743 -0.00432815 0)
(0.997327 -0.00373666 0)
(0.996963 -0.0030965 0)
(0.996675 -0.00240674 0)
(0.996476 -0.00167897 0)
(0.996372 -0.000941929 0)
(0.996377 -0.000215481 0)
(0.996488 0.000456495 0)
(0.996688 0.00103086 0)
(0.996938 0.00147272 0)
(0.9972 0.00179333 0)
(0.997577 0.00199383 0)
(0.997601 0.00192176 0)
(1.00092 0.00177738 0)
(1.00225 -0.00929438 0)
(1.0019 -0.00882035 0)
(1.00149 -0.00828716 0)
(1.00107 -0.00774718 0)
(1.00064 -0.00722141 0)
(1.00019 -0.00671528 0)
(0.999734 -0.00622701 0)
(0.999265 -0.00575086 0)
(0.99879 -0.00527363 0)
(0.998321 -0.00478071 0)
(0.997871 -0.00425693 0)
(0.997452 -0.00368793 0)
(0.997084 -0.00307028 0)
(0.996787 -0.00240255 0)
(0.996578 -0.00169556 0)
(0.99646 -0.000976528 0)
(0.996451 -0.00026533 0)
(0.996547 0.000395071 0)
(0.996732 0.000962612 0)
(0.996971 0.001401 0)
(0.997225 0.00172353 0)
(0.997596 0.00192914 0)
(0.997623 0.00186203 0)
(1.00092 0.00171646 0)
(1.00231 -0.00904942 0)
(1.00197 -0.00858374 0)
(1.00157 -0.00806253 0)
(1.00116 -0.00753746 0)
(1.00073 -0.00702863 0)
(1.00029 -0.00654058 0)
(0.999844 -0.0060713 0)
(0.999381 -0.0056149 0)
(0.998911 -0.00515791 0)
(0.998445 -0.00468595 0)
(0.997996 -0.00418404 0)
(0.997576 -0.0036373 0)
(0.997202 -0.00304191 0)
(0.996899 -0.00239617 0)
(0.996679 -0.00170998 0)
(0.996549 -0.00100898 0)
(0.996526 -0.000313169 0)
(0.996608 0.000335395 0)
(0.996779 0.000896105 0)
(0.997007 0.00133115 0)
(0.997254 0.0016555 0)
(0.997617 0.0018658 0)
(0.997645 0.00180285 0)
(1.00092 0.00165933 0)
(1.00237 -0.00880614 0)
(1.00204 -0.00834877 0)
(1.00165 -0.0078393 0)
(1.00124 -0.00732883 0)
(1.00083 -0.00683643 0)
(1.0004 -0.0063661 0)
(0.999953 -0.00591525 0)
(0.999496 -0.00547805 0)
(0.999031 -0.00504073 0)
(0.998567 -0.00458939 0)
(0.99812 -0.00410851 0)
(0.997699 -0.00358358 0)
(0.997322 -0.00301031 0)
(0.997012 -0.00238665 0)
(0.996781 -0.0017215 0)
(0.99664 -0.00103898 0)
(0.996603 -0.000359149 0)
(0.99667 0.000276881 0)
(0.996827 0.000829984 0)
(0.997044 0.0012608 0)
(0.997283 0.00158596 0)
(0.997639 0.00179975 0)
(0.99767 0.00174149 0)
(1.00092 0.00159724 0)
(1.00243 -0.00856482 0)
(1.0021 -0.00811548 0)
(1.00172 -0.00761746 0)
(1.00132 -0.0071211 0)
(1.00092 -0.00664477 0)
(1.00049 -0.00619154 0)
(1.00006 -0.00575892 0)
(0.999608 -0.00534052 0)
(0.999147 -0.00492269 0)
(0.998687 -0.0044915 0)
(0.998241 -0.00403146 0)
(0.99782 -0.00352819 0)
(0.997439 -0.00297674 0)
(0.997123 -0.00237487 0)
(0.996884 -0.00173076 0)
(0.99673 -0.0010669 0)
(0.996681 -0.000403133 0)
(0.996734 0.000220447 0)
(0.996877 0.000765678 0)
(0.997083 0.0011927 0)
(0.997315 0.0015187 0)
(0.997663 0.00173585 0)
(0.997693 0.00168124 0)
(1.00092 0.00153999 0)
(1.00248 -0.00832532 0)
(1.00217 -0.00788402 0)
(1.00179 -0.00739721 0)
(1.0014 -0.0069147 0)
(1.001 -0.00645393 0)
(1.00059 -0.00601747 0)
(1.00016 -0.00560254 0)
(0.999718 -0.00520235 0)
(0.999262 -0.00480347 0)
(0.998806 -0.00439202 0)
(0.998362 -0.00395213 0)
(0.997941 -0.00347001 0)
(0.997557 -0.00294009 0)
(0.997235 -0.00235999 0)
(0.996987 -0.00173704 0)
(0.996822 -0.00109215 0)
(0.99676 -0.000444897 0)
(0.996799 0.000165641 0)
(0.996928 0.000702268 0)
(0.997124 0.00112473 0)
(0.997347 0.00145059 0)
(0.997687 0.00166983 0)
(0.997719 0.0016194 0)
(1.00092 0.00147838 0)
(1.00253 -0.0080881 0)
(1.00223 -0.00765463 0)
(1.00186 -0.00717879 0)
(1.00148 -0.0067097 0)
(1.00109 -0.00626408 0)
(1.00068 -0.00584382 0)
(1.00026 -0.00544638 0)
(0.999824 -0.00506395 0)
(0.999374 -0.00468394 0)
(0.998922 -0.00429159 0)
(0.998481 -0.00387171 0)
(0.998059 -0.00341071 0)
(0.997673 -0.00290193 0)
(0.997346 -0.00234327 0)
(0.997089 -0.00174124 0)
(0.996914 -0.00111518 0)
(0.99684 -0.000484429 0)
(0.996865 0.000112972 0)
(0.996981 0.00064107 0)
(0.997166 0.00105911 0)
(0.997382 0.00138478 0)
(0.997713 0.00160594 0)
(0.997745 0.00155882 0)
(1.00092 0.00142113 0)
(1.00258 -0.00785344 0)
(1.00228 -0.00742789 0)
(1.00192 -0.00696281 0)
(1.00155 -0.00650677 0)
(1.00117 -0.00607567 0)
(1.00077 -0.00567124 0)
(1.00036 -0.00529053 0)
(0.999928 -0.00492533 0)
(0.999484 -0.00456351 0)
(0.999037 -0.00418979 0)
(0.998598 -0.00378928 0)
(0.998177 -0.00334856 0)
(0.997789 -0.0028606 0)
(0.997457 -0.00232329 0)
(0.997192 -0.00174223 0)
(0.997007 -0.00113521 0)
(0.996921 -0.00052136 0)
(0.996932 6.24105e-05 0)
(0.997035 0.00058133 0)
(0.997209 0.000994148 0)
(0.997417 0.00131863 0)
(0.99774 0.00154032 0)
(0.997773 0.00149694 0)
(1.00092 0.00135975 0)
(1.00263 -0.00762108 0)
(1.00234 -0.00720319 0)
(1.00199 -0.00674866 0)
(1.00162 -0.00630534 0)
(1.00125 -0.00588839 0)
(1.00086 -0.00549939 0)
(1.00045 -0.00513505 0)
(1.00003 -0.00478699 0)
(0.999591 -0.00444313 0)
(0.999148 -0.00408755 0)
(0.998713 -0.00370617 0)
(0.998293 -0.00328541 0)
(0.997903 -0.00281772 0)
(0.997566 -0.00230126 0)
(0.997295 -0.00174096 0)
(0.9971 -0.00115304 0)
(0.997002 -0.000556055 0)
(0.997001 1.42196e-05 0)
(0.997091 0.00052377 0)
(0.997254 0.000931713 0)
(0.997455 0.00125504 0)
(0.997769 0.00147734 0)
(0.9978 0.00143656 0)
(1.00093 0.00130337 0)
(1.00267 -0.00739152 0)
(1.00239 -0.00698143 0)
(1.00205 -0.00653703 0)
(1.00169 -0.00610582 0)
(1.00133 -0.0057026 0)
(1.00094 -0.00532856 0)
(1.00054 -0.00498015 0)
(1.00013 -0.00464873 0)
(0.999696 -0.00432225 0)
(0.999258 -0.00398436 0)
(0.998827 -0.00362145 0)
(0.998408 -0.00321988 0)
(0.998017 -0.00277204 0)
(0.997676 -0.00227631 0)
(0.997398 -0.00173681 0)
(0.997194 -0.00116815 0)
(0.997085 -0.000588313 0)
(0.997071 -3.19995e-05 0)
(0.997148 0.000467566 0)
(0.9973 0.000869929 0)
(0.997493 0.00119112 0)
(0.997798 0.00141268 0)
(0.99783 0.0013749 0)
(1.00093 0.00124293 0)
(1.00271 -0.00716355 0)
(1.00244 -0.00676061 0)
(1.0021 -0.00632601 0)
(1.00176 -0.00590676 0)
(1.0014 -0.00551715 0)
(1.00103 -0.00515785 0)
(1.00063 -0.00482524 0)
(1.00022 -0.00451044 0)
(0.999798 -0.00420115 0)
(0.999366 -0.00388069 0)
(0.998938 -0.00353591 0)
(0.998521 -0.0031536 0)
(0.998129 -0.00272547 0)
(0.997785 -0.00225013 0)
(0.9975 -0.00173115 0)
(0.997288 -0.00118155 0)
(0.997168 -0.0006188 0)
(0.997142 -7.64973e-05 0)
(0.997206 0.000413198 0)
(0.997348 0.000810031 0)
(0.997533 0.00112907 0)
(0.997829 0.00134993 0)
(0.997859 0.00131429 0)
(1.00093 0.00118644 0)
(1.00275 -0.00693745 0)
(1.00248 -0.00654163 0)
(1.00216 -0.00611653 0)
(1.00182 -0.00570904 0)
(1.00147 -0.00533271 0)
(1.0011 -0.00498804 0)
(1.00072 -0.00467086 0)
(1.00032 -0.00437217 0)
(0.999897 -0.00407943 0)
(0.999471 -0.00377595 0)
(0.999047 -0.00344899 0)
(0.998633 -0.00308528 0)
(0.998241 -0.00267657 0)
(0.997893 -0.00222152 0)
(0.997603 -0.001723 0)
(0.997382 -0.00119251 0)
(0.997252 -0.000647009 0)
(0.997214 -0.000119035 0)
(0.997266 0.000360243 0)
(0.997397 0.000750784 0)
(0.997574 0.0010667 0)
(0.997861 0.00128551 0)
(0.997891 0.00125233 0)
(1.00093 0.00112578 0)
(1.00279 -0.00671327 0)
(1.00253 -0.00632418 0)
(1.00221 -0.00590863 0)
(1.00188 -0.00551282 0)
(1.00154 -0.00514974 0)
(1.00118 -0.0048194 0)
(1.0008 -0.00451731 0)
(1.0004 -0.00423416 0)
(0.999994 -0.00395747 0)
(0.999574 -0.00367058 0)
(0.999155 -0.0033612 0)
(0.998743 -0.00301613 0)
(0.99835 -0.00262674 0)
(0.998 -0.00219163 0)
(0.997705 -0.00171333 0)
(0.997476 -0.00120182 0)
(0.997336 -0.000673409 0)
(0.997287 -0.000159578 0)
(0.997327 0.000309125 0)
(0.997448 0.00069357 0)
(0.997617 0.0010064 0)
(0.997894 0.00122346 0)
(0.997922 0.00119169 0)
(1.00094 0.00106965 0)
(1.00282 -0.00648976 0)
(1.00257 -0.0061078 0)
(1.00226 -0.00570253 0)
(1.00194 -0.00531866 0)
(1.0016 -0.00496876 0)
(1.00125 -0.00465244 0)
(1.00088 -0.00436487 0)
(1.00049 -0.00409644 0)
(1.00009 -0.00383508 0)
(0.999675 -0.00356427 0)
(0.99926 -0.00327224 0)
(0.998851 -0.00294532 0)
(0.99846 -0.00257489 0)
(0.998107 -0.00215944 0)
(0.997807 -0.00170115 0)
(0.997571 -0.00120853 0)
(0.997421 -0.000697212 0)
(0.99736 -0.000197827 0)
(0.997388 0.000259763 0)
(0.997499 0.000637405 0)
(0.99766 0.000946223 0)
(0.997928 0.00116027 0)
(0.997956 0.00113016 0)
(1.00094 0.00100981 0)
(1.00286 -0.00627022 0)
(1.00261 -0.00589591 0)
(1.00231 -0.00550059 0)
(1.00199 -0.00512812 0)
(1.00166 -0.00479073 0)
(1.00132 -0.00448783 0)
(1.00096 -0.00421381 0)
(1.00057 -0.00395937 0)
(1.00018 -0.00371252 0)
(0.999772 -0.00345751 0)
(0.999363 -0.00318229 0)
(0.998958 -0.00287351 0)
(0.998567 -0.00252206 0)
(0.998212 -0.00212597 0)
(0.997907 -0.00168726 0)
(0.997665 -0.00121322 0)
(0.997506 -0.000718882 0)
(0.997435 -0.000233988 0)
(0.997451 0.000212542 0)
(0.997552 0.000583305 0)
(0.997704 0.000888036 0)
(0.997964 0.00109927 0)
(0.997988 0.00107002 0)
(1.00095 0.000953955 0)
(1.00289 -0.00605391 0)
(1.00264 -0.0056869 0)
(1.00235 -0.00530128 0)
(1.00204 -0.00494006 0)
(1.00172 -0.00461494 0)
(1.00139 -0.00432475 0)
(1.00103 -0.00406352 0)
(1.00066 -0.00382237 0)
(1.00027 -0.00358959 0)
(0.999868 -0.0033499 0)
(0.999464 -0.0030913 0)
(0.999062 -0.00280011 0)
(0.998673 -0.00246723 0)
(0.998317 -0.00209012 0)
(0.998008 -0.00167066 0)
(0.997759 -0.00121504 0)
(0.997592 -0.000737722 0)
(0.99751 -0.000267574 0)
(0.997515 0.000167366 0)
(0.997606 0.000530503 0)
(0.99775 0.000830199 0)
(0.997999 0.0010374 0)
(0.998023 0.00100915 0)
(1.00095 0.000894559 0)
(1.00291 -0.00584075 0)
(1.00268 -0.00548091 0)
(1.00239 -0.00510478 0)
(1.00209 -0.00475441 0)
(1.00178 -0.00444087 0)
(1.00145 -0.00416268 0)
(1.0011 -0.00391378 0)
(1.00073 -0.00368557 0)
(1.00035 -0.00346641 0)
(0.999961 -0.00324176 0)
(0.999562 -0.00299926 0)
(0.999165 -0.00272552 0)
(0.998777 -0.00241116 0)
(0.99842 -0.00205273 0)
(0.998107 -0.00165226 0)
(0.997853 -0.00121492 0)
(0.997677 -0.000754536 0)
(0.997585 -0.000299039 0)
(0.997579 0.000124143 0)
(0.997661 0.000479765 0)
(0.997796 0.00077441 0)
(0.998036 0.000978013 0)
(0.998057 0.000949885 0)
(1.00096 0.000839758 0)
(1.00294 -0.00563082 0)
(1.00271 -0.00527788 0)
(1.00243 -0.00491084 0)
(1.00214 -0.00457088 0)
(1.00183 -0.00426855 0)
(1.00151 -0.00400187 0)
(1.00117 -0.00376488 0)
(1.00081 -0.00354916 0)
(1.00044 -0.00334322 0)
(1.00005 -0.00313308 0)
(0.999659 -0.00290629 0)
(0.999266 -0.00264953 0)
(0.99888 -0.00235313 0)
(0.998523 -0.00201301 0)
(0.998207 -0.00163128 0)
(0.997947 -0.00121216 0)
(0.997763 -0.000768776 0)
(0.997661 -0.000328243 0)
(0.997644 8.27253e-05 0)
(0.997716 0.000430217 0)
(0.997843 0.000719 0)
(0.998073 0.000917989 0)
(0.998094 0.000890201 0)
(1.00096 0.000781876 0)
(1.00296 -0.00542394 0)
(1.00274 -0.0050777 0)
(1.00247 -0.00471947 0)
(1.00218 -0.00438957 0)
(1.00188 -0.00409791 0)
(1.00157 -0.0038425 0)
(1.00123 -0.00361704 0)
(1.00088 -0.00341352 0)
(1.00052 -0.00322015 0)
(1.00014 -0.00302423 0)
(0.999752 -0.00281242 0)
(0.999364 -0.00257253 0)
(0.99898 -0.00229419 0)
(0.998623 -0.00197226 0)
(0.998304 -0.00160904 0)
(0.99804 -0.00120796 0)
(0.997849 -0.000781576 0)
(0.997738 -0.000356037 0)
(0.99771 4.28765e-05 0)
(0.997773 0.000382238 0)
(0.997892 0.00066523 0)
(0.998113 0.000860068 0)
(0.998129 0.000832084 0)
(1.00097 0.00072809 0)
(1.00298 -0.00522014 0)
(1.00276 -0.0048804 0)
(1.0025 -0.00453064 0)
(1.00222 -0.00421042 0)
(1.00193 -0.00392929 0)
(1.00162 -0.00368464 0)
(1.0013 -0.00347025 0)
(1.00095 -0.00327829 0)
(1.0006 -0.00309715 0)
(1.00022 -0.00291486 0)
(0.999844 -0.00271777 0)
(0.99946 -0.00249429 0)
(0.99908 -0.00223351 0)
(0.998723 -0.00192949 0)
(0.998402 -0.00158456 0)
(0.998133 -0.00120146 0)
(0.997935 -0.000792141 0)
(0.997814 -0.000381758 0)
(0.997777 4.75433e-06 0)
(0.99783 0.000335445 0)
(0.997941 0.00061194 0)
(0.998151 0.000801724 0)
(0.998167 0.00077365 0)
(1.00097 0.000671378 0)
(1.003 -0.00501928 0)
(1.00279 -0.00468587 0)
(1.00253 -0.00434435 0)
(1.00226 -0.00403356 0)
(1.00197 -0.00376245 0)
(1.00167 -0.00352808 0)
(1.00136 -0.00332449 0)
(1.00102 -0.00314357 0)
(1.00067 -0.00297432 0)
(1.00031 -0.00280523 0)
(0.999933 -0.00262243 0)
(0.999554 -0.00241522 0)
(0.999177 -0.00217182 0)
(0.998821 -0.00188558 0)
(0.998498 -0.00155888 0)
(0.998225 -0.00119371 0)
(0.998021 -0.000801389 0)
(0.997892 -0.000406012 0)
(0.997844 -3.19091e-05 0)
(0.997888 0.000290307 0)
(0.997991 0.00056042 0)
(0.998192 0.000745708 0)
(0.998204 0.000716976 0)
(1.00098 0.000619144 0)
(1.00301 -0.00482152 0)
(1.00281 -0.0044943 0)
(1.00256 -0.00416077 0)
(1.00229 -0.00385909 0)
(1.00202 -0.00359754 0)
(1.00172 -0.0033731 0)
(1.00141 -0.0031797 0)
(1.00109 -0.00300946 0)
(1.00074 -0.00285169 0)
(1.00039 -0.0026954 0)
(1.00002 -0.00252664 0)
(0.999646 -0.00233529 0)
(0.999273 -0.00210864 0)
(0.998918 -0.00183977 0)
(0.998594 -0.00153105 0)
(0.998317 -0.00118374 0)
(0.998107 -0.000808452 0)
(0.997969 -0.000428288 0)
(0.997912 -6.68812e-05 0)
(0.997947 0.00024641 0)
(0.998041 0.00050951 0)
(0.998232 0.000689491 0)
(0.998244 0.000660173 0)
(1.00099 0.000564198 0)
(1.00302 -0.00462673 0)
(1.00282 -0.00430556 0)
(1.00258 -0.00397985 0)
(1.00233 -0.00368684 0)
(1.00206 -0.00343444 0)
(1.00177 -0.00321953 0)
(1.00147 -0.00303595 0)
(1.00115 -0.00287597 0)
(1.00081 -0.00272937 0)
(1.00047 -0.00258545 0)
(1.0001 -0.0024304 0)
(0.999736 -0.00225442 0)
(0.999366 -0.00204452 0)
(0.999013 -0.001793 0)
(0.998688 -0.00150215 0)
(0.998408 -0.00117264 0)
(0.998192 -0.000814413 0)
(0.998046 -0.000449469 0)
(0.99798 -0.000100567 0)
(0.998007 0.000203828 0)
(0.998092 0.000460028 0)
(0.998274 0.00063517 0)
(0.998281 0.000604878 0)
(1.00099 0.000512974 0)
(1.00303 -0.00443498 0)
(1.00284 -0.00411976 0)
(1.00261 -0.00380153 0)
(1.00236 -0.00351684 0)
(1.00209 -0.00327328 0)
(1.00182 -0.00306743 0)
(1.00152 -0.00289329 0)
(1.00121 -0.00274317 0)
(1.00088 -0.00260743 0)
(1.00054 -0.00247552 0)
(1.00019 -0.0023339 0)
(0.999823 -0.0021729 0)
(0.999459 -0.00197919 0)
(0.999107 -0.00174462 0)
(0.998782 -0.00147139 0)
(0.998499 -0.00115961 0)
(0.998277 -0.00081851 0)
(0.998124 -0.000468874 0)
(0.998049 -0.00013273 0)
(0.998067 0.000162341 0)
(0.998144 0.000411069 0)
(0.998316 0.000580633 0)
(0.998322 0.000549304 0)
(1.001 0.000459008 0)
(1.00304 -0.00424613 0)
(1.00285 -0.00393671 0)
(1.00263 -0.00362572 0)
(1.00238 -0.00334909 0)
(1.00213 -0.00311397 0)
(1.00186 -0.00291689 0)
(1.00157 -0.00275182 0)
(1.00127 -0.00261135 0)
(1.00095 -0.00248612 0)
(1.00061 -0.00236588 0)
(1.00027 -0.00223722 0)
(0.999908 -0.0020907 0)
(0.999548 -0.00191279 0)
(0.999199 -0.00169512 0)
(0.998873 -0.00143954 0)
(0.998588 -0.00114556 0)
(0.998362 -0.000821594 0)
(0.998201 -0.000487171 0)
(0.998118 -0.000163765 0)
(0.998127 0.000122162 0)
(0.998197 0.000363541 0)
(0.998359 0.000528076 0)
(0.998361 0.000495373 0)
(1.00101 0.000409109 0)
(1.00305 -0.00406031 0)
(1.00287 -0.00375652 0)
(1.00264 -0.00345255 0)
(1.00241 -0.00318369 0)
(1.00216 -0.00295663 0)
(1.0019 -0.002768 0)
(1.00162 -0.00261163 0)
(1.00132 -0.00248052 0)
(1.00101 -0.0023654 0)
(1.00068 -0.00225652 0)
(1.00034 -0.00214039 0)
(0.999991 -0.00200806 0)
(0.999636 -0.0018453 0)
(0.999289 -0.00164409 0)
(0.998964 -0.00140585 0)
(0.998677 -0.00112958 0)
(0.998446 -0.000822766 0)
(0.998279 -0.000503718 0)
(0.998187 -0.000193245 0)
(0.998189 8.31998e-05 0)
(0.998249 0.00031677 0)
(0.998402 0.000475665 0)
(0.998404 0.000441566 0)
(1.00102 0.000357027 0)
(1.00305 -0.00387745 0)
(1.00288 -0.00357914 0)
(1.00266 -0.00328199 0)
(1.00243 -0.00302044 0)
(1.00219 -0.00280124 0)
(1.00194 -0.00262065 0)
(1.00166 -0.00247291 0)
(1.00138 -0.00235086 0)
(1.00107 -0.00224576 0)
(1.00075 -0.00214768 0)
(1.00042 -0.00204385 0)
(1.00007 -0.00192484 0)
(0.999721 -0.00177686 0)
(0.999377 -0.00159204 0)
(0.999052 -0.00137107 0)
(0.998764 -0.00111246 0)
(0.998529 -0.000822839 0)
(0.998356 -0.000519173 0)
(0.998256 -0.000221441 0)
(0.99825 4.55656e-05 0)
(0.998303 0.000271494 0)
(0.998447 0.00042524 0)
(0.998444 0.000389572 0)
(1.00103 0.000308759 0)
(1.00306 -0.00369748 0)
(1.00289 -0.00340454 0)
(1.00268 -0.00311391 0)
(1.00246 -0.00285955 0)
(1.00222 -0.00264781 0)
(1.00197 -0.00247512 0)
(1.00171 -0.00233573 0)
(1.00143 -0.00222246 0)
(1.00113 -0.00212694 0)
(1.00082 -0.00203932 0)
(1.00049 -0.00194732 0)
(1.00015 -0.00184129 0)
(0.999804 -0.00170759 0)
(0.999464 -0.00153862 0)
(0.99914 -0.0013345 0)
(0.99885 -0.00109338 0)
(0.998612 -0.000820931 0)
(0.998433 -0.000532631 0)
(0.998326 -0.000247799 0)
(0.998312 9.46678e-06 0)
(0.998357 0.000227364 0)
(0.998491 0.000375385 0)
(0.998487 0.000337945 0)
(1.00104 0.000258665 0)
(1.00306 -0.00352048 0)
(1.00289 -0.0032328 0)
(1.00269 -0.00294851 0)
(1.00248 -0.00270105 0)
(1.00225 -0.00249658 0)
(1.00201 -0.00233158 0)
(1.00175 -0.00220038 0)
(1.00147 -0.00209565 0)
(1.00118 -0.0020096 0)
(1.00088 -0.0019319 0)
(1.00056 -0.00185154 0)
(1.00022 -0.00175747 0)
(0.999885 -0.00163777 0)
(0.999548 -0.00148461 0)
(0.999225 -0.00129715 0)
(0.998935 -0.00107333 0)
(0.998694 -0.000817866 0)
(0.998509 -0.000544742 0)
(0.998396 -0.000272722 0)
(0.998375 -2.50155e-05 0)
(0.998411 0.000184989 0)
(0.998536 0.000327798 0)
(0.998528 0.000288489 0)
(1.00105 0.000212786 0)
(1.00306 -0.00334673 0)
(1.0029 -0.00306416 0)
(1.0027 -0.00278618 0)
(1.00249 -0.00254548 0)
(1.00227 -0.00234796 0)
(1.00204 -0.00219039 0)
(1.00179 -0.00206694 0)
(1.00152 -0.00197045 0)
(1.00124 -0.00189332 0)
(1.00094 -0.00182533 0)
(1.00062 -0.00175599 0)
(1.0003 -0.00167363 0)
(0.999964 -0.00156734 0)
(0.999631 -0.00142919 0)
(0.99931 -0.00125788 0)
(0.999019 -0.00105107 0)
(0.998775 -0.000812391 0)
(0.998586 -0.000554459 0)
(0.998466 -0.000295348 0)
(0.998437 -5.74694e-05 0)
(0.998466 0.000144281 0)
(0.998581 0.000281341 0)
(0.998572 0.000239962 0)
(1.00106 0.000165739 0)
(1.00306 -0.00317616 0)
(1.0029 -0.00289891 0)
(1.00271 -0.00262717 0)
(1.00251 -0.00239286 0)
(1.0023 -0.00220207 0)
(1.00207 -0.00205162 0)
(1.00182 -0.00193543 0)
(1.00156 -0.00184697 0)
(1.00129 -0.00177849 0)
(1.00099 -0.00172013 0)
(1.00069 -0.00166147 0)
(1.00037 -0.00159021 0)
(1.00004 -0.00149697 0)
(0.999711 -0.00137337 0)
(0.999392 -0.00121777 0)
(0.999101 -0.00102757 0)
(0.998855 -0.000805418 0)
(0.998661 -0.000562569 0)
(0.998535 -0.000316177 0)
(0.9985 -8.81185e-05 0)
(0.998521 0.000105482 0)
(0.998628 0.000237183 0)
(0.998614 0.000193688 0)
(1.00107 0.000122605 0)
(1.00305 -0.00300945 0)
(1.0029 -0.0027374 0)
(1.00272 -0.0024719 0)
(1.00252 -0.00224377 0)
(1.00232 -0.0020592 0)
(1.00209 -0.00191519 0)
(1.00186 -0.00180589 0)
(1.0016 -0.00172481 0)
(1.00133 -0.0016647 0)
(1.00105 -0.00161572 0)
(1.00075 -0.00156742 0)
(1.00044 -0.00150707 0)
(1.00012 -0.00142628 0)
(0.99979 -0.00131648 0)
(0.999473 -0.00117597 0)
(0.999182 -0.00100194 0)
(0.998934 -0.00079606 0)
(0.998737 -0.000568135 0)
(0.998605 -0.000334558 0)
(0.998563 -0.000116574 0)
(0.998577 6.85449e-05 0)
(0.998674 0.000194331 0)
(0.998659 0.000148319 0)
(1.00108 7.84665e-05 0)
(1.00305 -0.00284567 0)
(1.0029 -0.00257949 0)
(1.00272 -0.0023199 0)
(1.00254 -0.0020976 0)
(1.00234 -0.00191892 0)
(1.00212 -0.00178088 0)
(1.00189 -0.00167797 0)
(1.00164 -0.00160403 0)
(1.00138 -0.00155212 0)
(1.0011 -0.0015124 0)
(1.00081 -0.00147418 0)
(1.0005 -0.00142447 0)
(1.00019 -0.00135576 0)
(0.999867 -0.00125976 0)
(0.999551 -0.00113402 0)
(0.999262 -0.000975701 0)
(0.999013 -0.000785672 0)
(0.998812 -0.000572381 0)
(0.998674 -0.00035149 0)
(0.998626 -0.000143434 0)
(0.998633 3.32764e-05 0)
(0.998721 0.000153574 0)
(0.998702 0.000105154 0)
(1.0011 3.81954e-05 0)
(1.00304 -0.00268587 0)
(1.0029 -0.00242469 0)
(1.00273 -0.00217039 0)
(1.00255 -0.00195384 0)
(1.00235 -0.00178061 0)
(1.00214 -0.00164837 0)
(1.00192 -0.00155159 0)
(1.00168 -0.00148468 0)
(1.00142 -0.00144062 0)
(1.00115 -0.00140976 0)
(1.00087 -0.00138109 0)
(1.00057 -0.00134177 0)
(1.00026 -0.0012848 0)
(0.999942 -0.00120195 0)
(0.999629 -0.00109056 0)
(0.99934 -0.000947608 0)
(0.99909 -0.000773132 0)
(0.998886 -0.000574366 0)
(0.998744 -0.000366133 0)
(0.99869 -0.000168173 0)
(0.998689 -9.89323e-08 0)
(0.998768 0.000114219 0)
(0.998748 6.30628e-05 0)
(1.00111 -2.72931e-06 0)
(1.00303 -0.00252775 0)
(1.0029 -0.00227087 0)
(1.00273 -0.00202215 0)
(1.00256 -0.0018107 0)
(1.00237 -0.00164328 0)
(1.00216 -0.00151719 0)
(1.00194 -0.00142697 0)
(1.00171 -0.00136714 0)
(1.00146 -0.00133076 0)
(1.0012 -0.00130813 0)
(1.00092 -0.00128851 0)
(1.00063 -0.00125918 0)
(1.00033 -0.00121388 0)
(1.00001 -0.00114412 0)
(0.999704 -0.00104688 0)
(0.999417 -0.0009189 0)
(0.999166 -0.00075964 0)
(0.99896 -0.000575211 0)
(0.998813 -0.000379423 0)
(0.998753 -0.000191537 0)
(0.998745 -3.19958e-05 0)
(0.998815 7.66928e-05 0)
(0.998791 2.2987e-05 0)
(1.00112 -4.02198e-05 0)
(1.00302 -0.00237064 0)
(1.00289 -0.00211843 0)
(1.00274 -0.00187442 0)
(1.00257 -0.00166874 0)
(1.00238 -0.00150787 0)
(1.00218 -0.00138821 0)
(1.00197 -0.00130479 0)
(1.00174 -0.00125192 0)
(1.0015 -0.00122267 0)
(1.00124 -0.00120736 0)
(1.00097 -0.00119602 0)
(1.00069 -0.00117622 0)
(1.00039 -0.00114232 0)
(1.00009 -0.00108526 0)
(0.999778 -0.00100181 0)
(0.999493 -0.000888464 0)
(0.999242 -0.000744137 0)
(0.999033 -0.00057378 0)
(0.998882 -0.000390432 0)
(0.998816 -0.000212772 0)
(0.998801 -6.19683e-05 0)
(0.998863 4.06115e-05 0)
(0.998837 -1.61422e-05 0)
(1.00113 -7.82476e-05 0)
(1.00301 -0.002217 0)
(1.00289 -0.00196865 0)
(1.00274 -0.00172998 0)
(1.00257 -0.00153065 0)
(1.00239 -0.00137593 0)
(1.0022 -0.00126271 0)
(1.00199 -0.00118586 0)
(1.00177 -0.00113954 0)
(1.00153 -0.00111649 0)
(1.00128 -0.00110784 0)
(1.00102 -0.00110399 0)
(1.00075 -0.00109371 0)
(1.00046 -0.00107092 0)
(1.00015 -0.00102667 0)
(0.99985 -0.000956933 0)
(0.999566 -0.00085777 0)
(0.999315 -0.000727875 0)
(0.999105 -0.000571241 0)
(0.99895 -0.000400178 0)
(0.998879 -0.000232624 0)
(0.998857 -9.0533e-05 0)
(0.998911 6.37009e-06 0)
(0.998881 -5.30099e-05 0)
(1.00115 -0.000112705 0)
(1.003 -0.00206644 0)
(1.00288 -0.00182256 0)
(1.00274 -0.00158962 0)
(1.00258 -0.00139618 0)
(1.0024 -0.00124752 0)
(1.00221 -0.00114037 0)
(1.00201 -0.00106946 0)
(1.00179 -0.0010289 0)
(1.00156 -0.00101142 0)
(1.00132 -0.00100884 0)
(1.00107 -0.00101227 0)
(1.0008 -0.00101122 0)
(1.00052 -0.000999424 0)
(1.00022 -0.0009675 0)
(0.999921 -0.000911032 0)
(0.999639 -0.000825596 0)
(0.999388 -0.000709676 0)
(0.999176 -0.000566504 0)
(0.999019 -0.000407574 0)
(0.998943 -0.000250213 0)
(0.998914 -0.000116955 0)
(0.998959 -2.6173e-05 0)
(0.998928 -8.86266e-05 0)
(1.00116 -0.00014725 0)
(1.00299 -0.00191967 0)
(1.00287 -0.00168044 0)
(1.00273 -0.00145294 0)
(1.00258 -0.0012652 0)
(1.00241 -0.00112213 0)
(1.00223 -0.00102044 0)
(1.00203 -0.000954893 0)
(1.00182 -0.000919535 0)
(1.00159 -0.000907379 0)
(1.00136 -0.000910907 0)
(1.00112 -0.000921611 0)
(1.00086 -0.000929912 0)
(1.00058 -0.000928822 0)
(1.00028 -0.000909119 0)
(0.999988 -0.000865564 0)
(0.999709 -0.000793191 0)
(0.99946 -0.000690689 0)
(0.999247 -0.000560639 0)
(0.999086 -0.000413588 0)
(0.999005 -0.000266392 0)
(0.99897 -0.000141914 0)
(0.999007 -5.6943e-05 0)
(0.998972 -0.000122087 0)
(1.00118 -0.000178525 0)
(1.00298 -0.00177645 0)
(1.00286 -0.00154181 0)
(1.00273 -0.0013196 0)
(1.00258 -0.00113715 0)
(1.00241 -0.000999314 0)
(1.00224 -0.00090259 0)
(1.00204 -0.000841892 0)
(1.00184 -0.000811453 0)
(1.00162 -0.000804598 0)
(1.0014 -0.00081421 0)
(1.00116 -0.000832143 0)
(1.00091 -0.000849349 0)
(1.00063 -0.000858516 0)
(1.00035 -0.000850324 0)
(1.00006 -0.000818932 0)
(0.999779 -0.000759086 0)
(0.999531 -0.000669616 0)
(0.999317 -0.000552348 0)
(0.999154 -0.000417155 0)
(0.999068 -0.000280258 0)
(0.999027 -0.000164723 0)
(0.999055 -8.60684e-05 0)
(0.999019 -0.000154576 0)
(1.00119 -0.000209905 0)
(1.00296 -0.0016365 0)
(1.00285 -0.00140639 0)
(1.00272 -0.00118922 0)
(1.00258 -0.00101189 0)
(1.00242 -0.000878853 0)
(1.00224 -0.000786851 0)
(1.00206 -0.000730821 0)
(1.00186 -0.00070525 0)
(1.00165 -0.000703602 0)
(1.00143 -0.000719385 0)
(1.0012 -0.000744168 0)
(1.00095 -0.000770243 0)
(1.00069 -0.000788937 0)
(1.00041 -0.000792122 0)
(1.00012 -0.000772567 0)
(0.999846 -0.000724706 0)
(0.9996 -0.000647774 0)
(0.999386 -0.000543005 0)
(0.99922 -0.000419579 0)
(0.99913 -0.000292936 0)
(0.999083 -0.000186385 0)
(0.999104 -0.00011359 0)
(0.999064 -0.000184739 0)
(1.00121 -0.000238071 0)
(1.00295 -0.00149969 0)
(1.00284 -0.001274 0)
(1.00272 -0.00106175 0)
(1.00258 -0.000889159 0)
(1.00242 -0.000760825 0)
(1.00225 -0.000673306 0)
(1.00207 -0.000621736 0)
(1.00188 -0.000600757 0)
(1.00168 -0.000604217 0)
(1.00146 -0.000625758 0)
(1.00124 -0.000657172 0)
(1.001 -0.000691403 0)
(1.00074 -0.000719238 0)
(1.00047 -0.000733066 0)
(1.00018 -0.000724789 0)
(0.999913 -0.000688625 0)
(0.999668 -0.000623964 0)
(0.999454 -0.000531573 0)
(0.999286 -0.000419846 0)
(0.999192 -0.000303551 0)
(0.999139 -0.000206023 0)
(0.999152 -0.000139502 0)
(0.999111 -0.000213855 0)
(1.00123 -0.000266092 0)
(1.00293 -0.00136573 0)
(1.00283 -0.00114438 0)
(1.00271 -0.000936844 0)
(1.00257 -0.000768983 0)
(1.00242 -0.000645062 0)
(1.00226 -0.000561811 0)
(1.00208 -0.000514617 0)
(1.00189 -0.000497992 0)
(1.0017 -0.000506459 0)
(1.00149 -0.000533434 0)
(1.00128 -0.000571404 0)
(1.00104 -0.00061353 0)
(1.00079 -0.000650237 0)
(1.00052 -0.00067455 0)
(1.00024 -0.000677167 0)
(0.999978 -0.000652307 0)
(0.999735 -0.000599616 0)
(0.999521 -0.000519416 0)
(0.999351 -0.000419226 0)
(0.999253 -0.000313238 0)
(0.999195 -0.000224639 0)
(0.999201 -0.000164003 0)
(0.999156 -0.000240875 0)
(1.00125 -0.000291216 0)
(1.00291 -0.00123471 0)
(1.00282 -0.00101763 0)
(1.0027 -0.000814759 0)
(1.00257 -0.000651358 0)
(1.00242 -0.000531665 0)
(1.00226 -0.000452559 0)
(1.00209 -0.000409318 0)
(1.00191 -0.000396972 0)
(1.00172 -0.000410035 0)
(1.00152 -0.00044232 0)
(1.00131 -0.000486503 0)
(1.00109 -0.000536126 0)
(1.00084 -0.000581328 0)
(1.00058 -0.00061554 0)
(1.0003 -0.000628429 0)
(1.00004 -0.000614503 0)
(0.999801 -0.000573556 0)
(0.999588 -0.000505296 0)
(0.999416 -0.000416622 0)
(0.999315 -0.000320958 0)
(0.999251 -0.000241296 0)
(0.999249 -0.000187008 0)
(0.999204 -0.000267219 0)
(1.00126 -0.000316362 0)
(1.0029 -0.00110648 0)
(1.0028 -0.000893652 0)
(1.00268 -0.000695313 0)
(1.00256 -0.000536231 0)
(1.00242 -0.000420556 0)
(1.00226 -0.000345322 0)
(1.0021 -0.000305856 0)
(1.00192 -0.000297525 0)
(1.00174 -0.000315032 0)
(1.00155 -0.000352433 0)
(1.00135 -0.000402771 0)
(1.00113 -0.000459676 0)
(1.00088 -0.000513198 0)
(1.00063 -0.000556879 0)
(1.00036 -0.000579976 0)
(1.0001 -0.000576681 0)
(0.999865 -0.000547126 0)
(0.999653 -0.0004906 0)
(0.99948 -0.000413332 0)
(0.999375 -0.000327855 0)
(0.999306 -0.000257102 0)
(0.999298 -0.000208582 0)
(0.999248 -0.000291063 0)
(1.00128 -0.000338599 0)
(1.00288 -0.000981121 0)
(1.00278 -0.000772501 0)
(1.00267 -0.000578549 0)
(1.00255 -0.000423544 0)
(1.00241 -0.000311814 0)
(1.00226 -0.000240116 0)
(1.0021 -0.000204271 0)
(1.00194 -0.000199624 0)
(1.00176 -0.000221438 0)
(1.00157 -0.000263706 0)
(1.00138 -0.000319986 0)
(1.00116 -0.000383776 0)
(1.00093 -0.000445257 0)
(1.00068 -0.000497871 0)
(1.00042 -0.000530652 0)
(1.00016 -0.00053766 0)
(0.999929 -0.000519238 0)
(0.999717 -0.000474355 0)
(0.999544 -0.000408368 0)
(0.999435 -0.000333038 0)
(0.999362 -0.000271079 0)
(0.999346 -0.000228741 0)
(0.999296 -0.000314237 0)
(1.0013 -0.000360759 0)
(1.00286 -0.000858366 0)
(1.00277 -0.000653856 0)
(1.00266 -0.000464136 0)
(1.00254 -0.000313227 0)
(1.00241 -0.000205141 0)
(1.00226 -0.000136936 0)
(1.00211 -0.000104433 0)
(1.00195 -0.00010343 0)
(1.00177 -0.000129318 0)
(1.0016 -0.000176415 0)
(1.00141 -0.000238435 0)
(1.0012 -0.000308947 0)
(1.00097 -0.000378019 0)
(1.00073 -0.000439225 0)
(1.00047 -0.00048136 0)
(1.00022 -0.000498555 0)
(0.99999 -0.000491138 0)
(0.99978 -0.00045778 0)
(0.999606 -0.000402907 0)
(0.999495 -0.000337607 0)
(0.999416 -0.000284301 0)
(0.999394 -0.000247677 0)
(0.999341 -0.000335268 0)
(1.00132 -0.000380322 0)
(1.00283 -0.000738213 0)
(1.00275 -0.000537745 0)
(1.00264 -0.000352229 0)
(1.00253 -0.000205236 0)
(1.0024 -0.000100649 0)
(1.00226 -3.57551e-05 0)
(1.00211 -6.42405e-06 0)
(1.00196 -8.94264e-06 0)
(1.00179 -3.86894e-05 0)
(1.00162 -9.04519e-05 0)
(1.00143 -0.000157852 0)
(1.00123 -0.000234784 0)
(1.00101 -0.000310953 0)
(1.00077 -0.000380392 0)
(1.00053 -0.000431317 0)
(1.00028 -0.000458372 0)
(1.00005 -0.000461773 0)
(0.999842 -0.000439723 0)
(0.999667 -0.000395938 0)
(0.999554 -0.000340601 0)
(0.999471 -0.000295859 0)
(0.999442 -0.000265426 0)
(0.999389 -0.00035613 0)
(1.00134 -0.000399994 0)
(1.00281 -0.000620522 0)
(1.00273 -0.000424043 0)
(1.00263 -0.000242676 0)
(1.00252 -9.93447e-05 0)
(1.0024 1.81121e-06 0)
(1.00226 6.36343e-05 0)
(1.00212 8.97665e-05 0)
(1.00196 8.3866e-05 0)
(1.0018 5.01753e-05 0)
(1.00163 -6.02806e-06 0)
(1.00146 -7.88397e-05 0)
(1.00126 -0.000161634 0)
(1.00105 -0.00024475 0)
(1.00082 -0.000321694 0)
(1.00058 -0.000381328 0)
(1.00034 -0.000418235 0)
(1.00011 -0.000432311 0)
(0.999903 -0.000421452 0)
(0.999728 -0.000388619 0)
(0.999612 -0.000343047 0)
(0.999525 -0.00030676 0)
(0.99949 -0.000281753 0)
(0.999433 -0.000374126 0)
(1.00136 -0.000416928 0)
(1.00279 -0.000505264 0)
(1.00271 -0.000312764 0)
(1.00261 -0.000135286 0)
(1.00251 4.41193e-06 0)
(1.00239 0.000102335 0)
(1.00226 0.000161101 0)
(1.00212 0.000184064 0)
(1.00197 0.000174818 0)
(1.00181 0.000137363 0)
(1.00165 7.68852e-05 0)
(1.00148 -9.29819e-07 0)
(1.00129 -8.92382e-05 0)
(1.00108 -0.000178793 0)
(1.00086 -0.000262933 0)
(1.00063 -0.000330913 0)
(1.00039 -0.000377318 0)
(1.00017 -0.000401774 0)
(0.999963 -0.000402005 0)
(0.999788 -0.000379935 0)
(0.99967 -0.000343992 0)
(0.999579 -0.00031593 0)
(0.999539 -0.000296737 0)
(0.999482 -0.000391697 0)
(1.00138 -0.000433572 0)
(1.00277 -0.000392279 0)
(1.00269 -0.000203614 0)
(1.00259 -3.0004e-05 0)
(1.00249 0.000106157 0)
(1.00238 0.000200928 0)
(1.00225 0.000256547 0)
(1.00212 0.000276328 0)
(1.00197 0.000263666 0)
(1.00182 0.00022244 0)
(1.00167 0.000157861 0)
(1.0015 7.51621e-05 0)
(1.00132 -1.80437e-05 0)
(1.00112 -0.000113902 0)
(1.0009 -0.000204506 0)
(1.00067 -0.000280931 0)
(1.00044 -0.000336943 0)
(1.00022 -0.000371654 0)
(1.00002 -0.000382724 0)
(0.999846 -0.000371095 0)
(0.999726 -0.000344513 0)
(0.999632 -0.0003244 0)
(0.999586 -0.000310375 0)
(0.999526 -0.000406671 0)
(1.0014 -0.000447537 0)
(1.00274 -0.000281613 0)
(1.00267 -9.67799e-05 0)
(1.00258 7.29561e-05 0)
(1.00248 0.000205657 0)
(1.00237 0.000297147 0)
(1.00225 0.000349613 0)
(1.00212 0.000366263 0)
(1.00198 0.000350254 0)
(1.00183 0.000305542 0)
(1.00168 0.000237071 0)
(1.00152 0.000150059 0)
(1.00134 5.21462e-05 0)
(1.00115 -4.94763e-05 0)
(1.00094 -0.000146507 0)
(1.00072 -0.000231011 0)
(1.0005 -0.000296147 0)
(1.00028 -0.0003408 0)
(1.00008 -0.000362308 0)
(0.999904 -0.000360903 0)
(0.999783 -0.000343456 0)
(0.999686 -0.00033111 0)
(0.999634 -0.000322752 0)
(0.999575 -0.000421592 0)
(1.00142 -0.000461282 0)
(1.00272 -0.000173337 0)
(1.00264 7.56102e-06 0)
(1.00256 0.000173413 0)
(1.00246 0.000302514 0)
(1.00236 0.000390819 0)
(1.00224 0.000440211 0)
(1.00211 0.000453773 0)
(1.00198 0.000434464 0)
(1.00184 0.000386543 0)
(1.00169 0.000314331 0)
(1.00154 0.000223416 0)
(1.00137 0.000120966 0)
(1.00118 1.38628e-05 0)
(1.00098 -8.93754e-05 0)
(1.00076 -0.000181969 0)
(1.00054 -0.000256073 0)
(1.00033 -0.000310405 0)
(1.00013 -0.00034201 0)
(0.999961 -0.000350477 0)
(0.999838 -0.000341827 0)
(0.999738 -0.00033703 0)
(0.999681 -0.000333411 0)
(0.999619 -0.000433003 0)
(1.00145 -0.000472093 0)
(1.00269 -6.75807e-05 0)
(1.00262 0.000109322 0)
(1.00254 0.000271166 0)
(1.00245 0.000396813 0)
(1.00235 0.000481786 0)
(1.00223 0.000528182 0)
(1.00211 0.000538677 0)
(1.00198 0.000516542 0)
(1.00184 0.000465551 0)
(1.0017 0.000390103 0)
(1.00155 0.000295496 0)
(1.00139 0.000188786 0)
(1.00121 7.63986e-05 0)
(1.00101 -3.30308e-05 0)
(1.00081 -0.000133379 0)
(1.00059 -0.00021596 0)
(1.00038 -0.000279425 0)
(1.00019 -0.000320745 0)
(1.00002 -0.000338681 0)
(0.999893 -0.000338598 0)
(0.999791 -0.000341087 0)
(0.999729 -0.000342638 0)
(0.999667 -0.000444093 0)
(1.00147 -0.000482322 0)
(1.00266 3.5864e-05 0)
(1.0026 0.000208653 0)
(1.00252 0.000366591 0)
(1.00243 0.000488464 0)
(1.00233 0.000570293 0)
(1.00222 0.000613659 0)
(1.0021 0.000621249 0)
(1.00197 0.000596414 0)
(1.00184 0.000542609 0)
(1.00171 0.000464115 0)
(1.00156 0.000366082 0)
(1.00141 0.000255219 0)
(1.00124 0.000137681 0)
(1.00105 2.21192e-05 0)
(1.00085 -8.57483e-05 0)
(1.00064 -0.000176914 0)
(1.00043 -0.000249269 0)
(1.00024 -0.000299869 0)
(1.00007 -0.00032684 0)
(0.999947 -0.000335013 0)
(0.999842 -0.000344482 0)
(0.999776 -0.000350456 0)
(0.999711 -0.000452311 0)
(1.00149 -0.000489909 0)
(1.00264 0.00013721 0)
(1.00257 0.000305938 0)
(1.0025 0.000459728 0)
(1.00241 0.000578082 0)
(1.00232 0.000656638 0)
(1.00221 0.00069688 0)
(1.00209 0.000701844 0)
(1.00197 0.000674369 0)
(1.00184 0.000618061 0)
(1.00171 0.000536688 0)
(1.00158 0.000435503 0)
(1.00143 0.000320605 0)
(1.00126 0.000198097 0)
(1.00108 7.64826e-05 0)
(1.00088 -3.86054e-05 0)
(1.00068 -0.000137764 0)
(1.00048 -0.000218534 0)
(1.00029 -0.000277898 0)
(1.00013 -0.000313674 0)
(1 -0.000329909 0)
(0.999894 -0.00034623 0)
(0.999823 -0.000357194 0)
(0.99976 -0.000460846 0)
(1.00152 -0.0004972 0)
(1.00261 0.000236718 0)
(1.00255 0.000401273 0)
(1.00247 0.000551062 0)
(1.00239 0.000665757 0)
(1.0023 0.000741029 0)
(1.0022 0.000778405 0)
(1.00209 0.000780653 0)
(1.00197 0.000750714 0)
(1.00184 0.000691861 0)
(1.00172 0.000607835 0)
(1.00159 0.000503533 0)
(1.00145 0.000384768 0)
(1.00129 0.000257335 0)
(1.00111 0.000129848 0)
(1.00092 7.7091e-06 0)
(1.00072 -9.92244e-05 0)
(1.00053 -0.000188176 0)
(1.00034 -0.000255998 0)
(1.00018 -0.000300289 0)
(1.00005 -0.000324322 0)
(0.999944 -0.00034726 0)
(0.99987 -0.000362206 0)
(0.999803 -0.000465621 0)
(1.00154 -0.000502003 0)
(1.00258 0.000334382 0)
(1.00252 0.000494808 0)
(1.00245 0.00064056 0)
(1.00237 0.000751747 0)
(1.00228 0.00082379 0)
(1.00219 0.000858311 0)
(1.00208 0.000857861 0)
(1.00196 0.000825531 0)
(1.00184 0.000764195 0)
(1.00172 0.000677661 0)
(1.0016 0.000570301 0)
(1.00146 0.000447827 0)
(1.00131 0.000315584 0)
(1.00114 0.000182435 0)
(1.00095 5.35637e-05 0)
(1.00076 -6.06251e-05 0)
(1.00057 -0.000157238 0)
(1.00039 -0.000233207 0)
(1.00023 -0.0002857 0)
(1.00011 -0.000317385 0)
(0.999995 -0.000346747 0)
(0.999917 -0.000366162 0)
(0.999852 -0.0004706 0)
(1.00157 -0.00050626 0)
(1.00255 0.000429995 0)
(1.00249 0.00058627 0)
(1.00242 0.000728091 0)
(1.00235 0.000835661 0)
(1.00227 0.000904653 0)
(1.00217 0.000936271 0)
(1.00207 0.000933309 0)
(1.00195 0.000898505 0)
(1.00184 0.000834804 0)
(1.00172 0.000745644 0)
(1.0016 0.000635401 0)
(1.00147 0.000509104 0)
(1.00133 0.000372382 0)
(1.00116 0.000233541 0)
(1.00099 9.8471e-05 0)
(1.0008 -2.29237e-05 0)
(1.00062 -0.000127087 0)
(1.00044 -0.000210891 0)
(1.00028 -0.000271228 0)
(1.00016 -0.000310274 0)
(1.00004 -0.00034569 0)
(0.999963 -0.000368717 0)
(0.999896 -0.000472484 0)
(1.00159 -0.00050808 0)
(1.00252 0.000523679 0)
(1.00246 0.000675852 0)
(1.0024 0.000813603 0)
(1.00233 0.000917637 0)
(1.00225 0.000983399 0)
(1.00215 0.00101216 0)
(1.00205 0.00100664 0)
(1.00195 0.000969436 0)
(1.00184 0.000903442 0)
(1.00173 0.000811869 0)
(1.00161 0.000698849 0)
(1.00149 0.000568971 0)
(1.00135 0.000427845 0)
(1.00119 0.000283577 0)
(1.00102 0.000142431 0)
(1.00084 1.42567e-05 0)
(1.00066 -9.71936e-05 0)
(1.00049 -0.000188481 0)
(1.00033 -0.000256526 0)
(1.00021 -0.000302733 0)
(1.00009 -0.000344069 0)
(1.00001 -0.000371222 0)
(0.999944 -0.000475721 0)
(1.00162 -0.000510008 0)
(1.00249 0.00061545 0)
(1.00243 0.000763488 0)
(1.00237 0.000897209 0)
(1.0023 0.000997607 0)
(1.00223 0.00106011 0)
(1.00214 0.00108602 0)
(1.00204 0.00107792 0)
(1.00194 0.00103851 0)
(1.00183 0.000970391 0)
(1.00172 0.000876643 0)
(1.00161 0.000761035 0)
(1.0015 0.000627746 0)
(1.00136 0.000482458 0)
(1.00121 0.000332867 0)
(1.00105 0.000185955 0)
(1.00088 5.0947e-05 0)
(1.0007 -6.77944e-05 0)
(1.00053 -0.000166446 0)
(1.00038 -0.000242014 0)
(1.00026 -0.000295117 0)
(1.00014 -0.000342001 0)
(1.00006 -0.000372125 0)
(0.999988 -0.000475091 0)
(1.00165 -0.000509678 0)
(1.00246 0.000706667 0)
(1.0024 0.000850506 0)
(1.00234 0.000980072 0)
(1.00228 0.00107664 0)
(1.0022 0.00113564 0)
(1.00212 0.00115829 0)
(1.00202 0.00114734 0)
(1.00193 0.00110547 0)
(1.00182 0.00103525 0)
(1.00172 0.000939513 0)
(1.00162 0.000821622 0)
(1.0015 0.000685326 0)
(1.00138 0.000536183 0)
(1.00123 0.000381756 0)
(1.00108 0.000229349 0)
(1.00091 8.7938e-05 0)
(1.00074 -3.76986e-05 0)
(1.00058 -0.000143638 0)
(1.00043 -0.000226576 0)
(1.0003 -0.000286496 0)
(1.00019 -0.000338815 0)
(1.0001 -0.000372445 0)
(1.00004 -0.000475244 0)
(1.00167 -0.000508898 0)
(1.00243 0.000798172 0)
(1.00237 0.000937802 0)
(1.00232 0.0010631 0)
(1.00225 0.00115573 0)
(1.00218 0.00121107 0)
(1.0021 0.00123019 0)
(1.00201 0.00121611 0)
(1.00191 0.0011715 0)
(1.00182 0.00109885 0)
(1.00172 0.00100079 0)
(1.00162 0.000880431 0)
(1.00151 0.000740887 0)
(1.00139 0.000588088 0)
(1.00125 0.000428886 0)
(1.0011 0.000271674 0)
(1.00094 0.000123894 0)
(1.00078 -8.49208e-06 0)
(1.00062 -0.00012144 0)
(1.00047 -0.000211407 0)
(1.00035 -0.000277852 0)
(1.00024 -0.000335211 0)
(1.00015 -0.000371496 0)
(1.00008 -0.000472419 0)
(1.0017 -0.000506083 0)
(1.00239 0.000887461 0)
(1.00234 0.00102253 0)
(1.00229 0.00114334 0)
(1.00222 0.00123225 0)
(1.00215 0.00128417 0)
(1.00207 0.00130049 0)
(1.00199 0.0012837 0)
(1.0019 0.00123648 0)
(1.00181 0.00116128 0)
(1.00171 0.00106084 0)
(1.00162 0.000937792 0)
(1.00151 0.000794999 0)
(1.0014 0.000638508 0)
(1.00127 0.00047505 0)
(1.00112 0.000313335 0)
(1.00097 0.000159903 0)
(1.00082 2.12602e-05 0)
(1.00066 -9.83106e-05 0)
(1.00052 -0.00019517 0)
(1.0004 -0.000267966 0)
(1.00029 -0.000330426 0)
(1.00019 -0.000370113 0)
(1.00013 -0.000470872 0)
(1.00173 -0.000502995 0)
(1.00236 0.000973446 0)
(1.00231 0.00110359 0)
(1.00225 0.00122004 0)
(1.00219 0.00130492 0)
(1.00212 0.001354 0)
(1.00205 0.00136764 0)
(1.00197 0.0013489 0)
(1.00188 0.00129966 0)
(1.00179 0.00122211 0)
(1.00171 0.0011193 0)
(1.00162 0.000993207 0)
(1.00152 0.000847015 0)
(1.0014 0.00068675 0)
(1.00128 0.000519416 0)
(1.00115 0.000353651 0)
(1.001 0.000194848 0)
(1.00085 5.03472e-05 0)
(1.0007 -7.54839e-05 0)
(1.00056 -0.000178881 0)
(1.00045 -0.000257714 0)
(1.00033 -0.000324869 0)
(1.00024 -0.000366844 0)
(1.00017 -0.000465175 0)
(1.00176 -0.000498285 0)
(1.00233 0.0010531 0)
(1.00228 0.00117914 0)
(1.00222 0.00129128 0)
(1.00216 0.00137324 0)
(1.00209 0.00141893 0)
(1.00202 0.00143134 0)
(1.00195 0.00141111 0)
(1.00186 0.00136008 0)
(1.00178 0.00128054 0)
(1.0017 0.00117507 0)
(1.00161 0.00104576 0)
(1.00152 0.000896012 0)
(1.00141 0.000732427 0)
(1.00129 0.000561847 0)
(1.00117 0.000392597 0)
(1.00103 0.000229106 0)
(1.00088 7.94842e-05 0)
(1.00074 -5.21902e-05 0)
(1.0006 -0.000161673 0)
(1.00049 -0.000246258 0)
(1.00038 -0.000317966 0)
(1.00029 -0.000362815 0)
(1.00022 -0.000460287 0)
(1.00178 -0.000492772 0)
(1.00229 0.00113448 0)
(1.00224 0.00125488 0)
(1.00219 0.00136304 0)
(1.00213 0.00144018 0)
(1.00207 0.0014845 0)
(1.002 0.00149498 0)
(1.00193 0.00147303 0)
(1.00185 0.00141965 0)
(1.00177 0.00133733 0)
(1.00169 0.00122836 0)
(1.0016 0.00109508 0)
(1.00152 0.000941726 0)
(1.00142 0.000775224 0)
(1.00131 0.000602017 0)
(1.00119 0.00042965 0)
(1.00105 0.000261853 0)
(1.00092 0.000107123 0)
(1.00078 -3.00164e-05 0)
(1.00065 -0.000145067 0)
(1.00054 -0.000234963 0)
(1.00043 -0.000310687 0)
(1.00033 -0.00035748 0)
(1.00026 -0.000452348 0)
(1.00182 -0.000485739 0)
(1.00226 0.00121267 0)
(1.00221 0.00132923 0)
(1.00215 0.00143174 0)
(1.00209 0.00150652 0)
(1.00204 0.00154857 0)
(1.00197 0.00155749 0)
(1.0019 0.00153351 0)
(1.00183 0.0014772 0)
(1.00175 0.00139127 0)
(1.00167 0.00127816 0)
(1.0016 0.00114062 0)
(1.00151 0.000984243 0)
(1.00142 0.000815705 0)
(1.00132 0.000640623 0)
(1.0012 0.000465441 0)
(1.00108 0.000293647 0)
(1.00095 0.000134131 0)
(1.00081 -8.00351e-06 0)
(1.00069 -0.000128296 0)
(1.00058 -0.000223115 0)
(1.00047 -0.000302789 0)
(1.00038 -0.000352198 0)
(1.00031 -0.000446196 0)
(1.00184 -0.000478375 0)
(1.00222 0.0012835 0)
(1.00217 0.00139537 0)
(1.00211 0.00149522 0)
(1.00206 0.00156778 0)
(1.00201 0.00160805 0)
(1.00195 0.00161589 0)
(1.00188 0.00158904 0)
(1.0018 0.00152953 0)
(1.00173 0.00144009 0)
(1.00166 0.00132289 0)
(1.00159 0.00118202 0)
(1.00151 0.00102384 0)
(1.00142 0.000854321 0)
(1.00133 0.000677697 0)
(1.00122 0.000499673 0)
(1.0011 0.000323688 0)
(1.00098 0.000159354 0)
(1.00085 1.23803e-05 0)
(1.00073 -0.000112719 0)
(1.00062 -0.000211966 0)
(1.00052 -0.000294857 0)
(1.00042 -0.000345332 0)
(1.00036 -0.000435925 0)
(1.00188 -0.000469649 0)
(1.00218 0.0013544 0)
(1.00213 0.00146236 0)
(1.00208 0.00155945 0)
(1.00203 0.0016289 0)
(1.00198 0.00166736 0)
(1.00192 0.00167072 0)
(1.00185 0.00163982 0)
(1.00178 0.00157709 0)
(1.00171 0.00148419 0)
(1.00164 0.00136362 0)
(1.00157 0.00122095 0)
(1.0015 0.0010622 0)
(1.00143 0.000892195 0)
(1.00134 0.000713736 0)
(1.00124 0.000532518 0)
(1.00112 0.000352064 0)
(1.00101 0.000183253 0)
(1.00088 3.17918e-05 0)
(1.00077 -9.74968e-05 0)
(1.00067 -0.000200641 0)
(1.00057 -0.00028641 0)
(1.00047 -0.000338419 0)
(1.00041 -0.000427182 0)
(1.00191 -0.000460237 0)
(1.00213 0.0014261 0)
(1.00209 0.00153123 0)
(1.00204 0.00162404 0)
(1.002 0.00169081 0)
(1.00195 0.00172361 0)
(1.00189 0.00172152 0)
(1.00182 0.0016867 0)
(1.00175 0.00162057 0)
(1.00169 0.00152446 0)
(1.00162 0.00140214 0)
(1.00156 0.0012591 0)
(1.0015 0.00110035 0)
(1.00143 0.000929082 0)
(1.00135 0.000748023 0)
(1.00125 0.000562662 0)
(1.00115 0.000377874 0)
(1.00103 0.000204598 0)
(1.00092 4.90897e-05 0)
(1.00081 -8.36572e-05 0)
(1.00071 -0.000190022 0)
(1.00061 -0.000277869 0)
(1.00051 -0.000330184 0)
(1.00045 -0.000415221 0)
(1.00194 -0.000449243 0)
(1.00209 0.00149669 0)
(1.00205 0.00159689 0)
(1.00201 0.00168605 0)
(1.00197 0.00174719 0)
(1.00192 0.00177429 0)
(1.00186 0.0017678 0)
(1.00179 0.00172928 0)
(1.00173 0.00166005 0)
(1.00166 0.00156228 0)
(1.0016 0.00143991 0)
(1.00155 0.00129717 0)
(1.00149 0.00113772 0)
(1.00143 0.000964091 0)
(1.00135 0.000779524 0)
(1.00126 0.000589973 0)
(1.00117 0.000401243 0)
(1.00106 0.000224335 0)
(1.00095 6.58397e-05 0)
(1.00085 -6.96536e-05 0)
(1.00075 -0.000178667 0)
(1.00066 -0.000268572 0)
(1.00056 -0.000322126 0)
(1.0005 -0.000405533 0)
(1.00197 -0.000437904 0)
(1.00205 0.00156394 0)
(1.00201 0.00165997 0)
(1.00197 0.00174369 0)
(1.00193 0.00179919 0)
(1.00188 0.00182175 0)
(1.00182 0.00181149 0)
(1.00176 0.00176984 0)
(1.0017 0.00169869 0)
(1.00164 0.00160053 0)
(1.00159 0.00147828 0)
(1.00154 0.00133487 0)
(1.00149 0.00117327 0)
(1.00143 0.000996069 0)
(1.00136 0.00080778 0)
(1.00128 0.000614137 0)
(1.00118 0.000422632 0)
(1.00109 0.00024252 0)
(1.00098 8.15868e-05 0)
(1.00089 -5.60526e-05 0)
(1.0008 -0.000167328 0)
(1.0007 -0.000258592 0)
(1.00061 -0.000311645 0)
(1.00055 -0.000390647 0)
(1.002 -0.000425137 0)
(1.002 0.00162935 0)
(1.00197 0.00172045 0)
(1.00193 0.00179889 0)
(1.00189 0.00184969 0)
(1.00184 0.00186834 0)
(1.00179 0.0018548 0)
(1.00173 0.0018108 0)
(1.00167 0.00173823 0)
(1.00161 0.00163919 0)
(1.00157 0.00151575 0)
(1.00152 0.00137021 0)
(1.00148 0.00120547 0)
(1.00143 0.00102471 0)
(1.00136 0.000833183 0)
(1.00129 0.000636673 0)
(1.0012 0.000443184 0)
(1.00111 0.000260888 0)
(1.00102 9.81057e-05 0)
(1.00092 -4.13381e-05 0)
(1.00084 -0.000154756 0)
(1.00075 -0.000247559 0)
(1.00066 -0.000301124 0)
(1.0006 -0.000377795 0)
(1.00204 -0.000411996 0)
(1.00196 0.00169314 0)
(1.00192 0.0017794 0)
(1.00188 0.00185304 0)
(1.00184 0.0018996 0)
(1.0018 0.0019145 0)
(1.00175 0.00189805 0)
(1.00169 0.00185155 0)
(1.00164 0.00177687 0)
(1.00159 0.00167578 0)
(1.00155 0.00154985 0)
(1.00151 0.00140156 0)
(1.00147 0.00123365 0)
(1.00142 0.00105009 0)
(1.00136 0.000856147 0)
(1.0013 0.000657684 0)
(1.00122 0.000462872 0)
(1.00114 0.000278587 0)
(1.00105 0.00011404 0)
(1.00096 -2.72385e-05 0)
(1.00088 -0.000142758 0)
(1.0008 -0.000236593 0)
(1.0007 -0.000289316 0)
(1.00064 -0.000361631 0)
(1.00207 -0.000397906 0)
(1.00191 0.00175532 0)
(1.00187 0.00183681 0)
(1.00183 0.00190585 0)
(1.0018 0.00194804 0)
(1.00176 0.00195937 0)
(1.00171 0.00193956 0)
(1.00166 0.00189013 0)
(1.00161 0.00181269 0)
(1.00156 0.00170877 0)
(1.00153 0.00158023 0)
(1.00149 0.00142936 0)
(1.00146 0.00125919 0)
(1.00142 0.00107368 0)
(1.00137 0.000878213 0)
(1.0013 0.000678424 0)
(1.00124 0.000482516 0)
(1.00116 0.000296478 0)
(1.00108 0.000130372 0)
(1.001 -1.27986e-05 0)
(1.00093 -0.000130349 0)
(1.00085 -0.000225735 0)
(1.00075 -0.000278884 0)
(1.00069 -0.000348601 0)
(1.0021 -0.000384205 0)
(1.00186 0.00181628 0)
(1.00182 0.00189305 0)
(1.00179 0.00195727 0)
(1.00175 0.00199529 0)
(1.00171 0.00200259 0)
(1.00167 0.00197931 0)
(1.00162 0.00192654 0)
(1.00158 0.00184598 0)
(1.00154 0.00173918 0)
(1.0015 0.00160814 0)
(1.00148 0.00145506 0)
(1.00145 0.00128303 0)
(1.00141 0.00109596 0)
(1.00137 0.000899152 0)
(1.00131 0.00069817 0)
(1.00125 0.000501116 0)
(1.00119 0.000313417 0)
(1.00111 0.000145413 0)
(1.00104 3.88467e-07 0)
(1.00097 -0.000119136 0)
(1.00089 -0.000214926 0)
(1.0008 -0.000266991 0)
(1.00074 -0.000332833 0)
(1.00214 -0.000369354 0)
(1.0018 0.00187526 0)
(1.00177 0.00194713 0)
(1.00174 0.00200666 0)
(1.0017 0.00204011 0)
(1.00167 0.00204346 0)
(1.00163 0.00201632 0)
(1.00159 0.00196013 0)
(1.00154 0.00187626 0)
(1.00151 0.0017666 0)
(1.00148 0.00163297 0)
(1.00146 0.00147786 0)
(1.00143 0.00130406 0)
(1.00141 0.00111567 0)
(1.00137 0.00091767 0)
(1.00132 0.000715737 0)
(1.00127 0.000517679 0)
(1.00121 0.000328694 0)
(1.00115 0.000159175 0)
(1.00108 1.2809e-05 0)
(1.00101 -0.000108188 0)
(1.00094 -0.000204477 0)
(1.00085 -0.000256143 0)
(1.00079 -0.000318995 0)
(1.00218 -0.000354106 0)
(1.00175 0.00193214 0)
(1.00172 0.0019991 0)
(1.00168 0.00205355 0)
(1.00165 0.00208245 0)
(1.00162 0.00208142 0)
(1.00159 0.00205052 0)
(1.00155 0.00199069 0)
(1.00151 0.00190359 0)
(1.00148 0.00179101 0)
(1.00145 0.00165493 0)
(1.00144 0.00149773 0)
(1.00142 0.00132228 0)
(1.0014 0.00113253 0)
(1.00137 0.000933502 0)
(1.00133 0.000730754 0)
(1.00128 0.000532015 0)
(1.00123 0.000342133 0)
(1.00118 0.000171523 0)
(1.00112 2.40379e-05 0)
(1.00105 -9.80184e-05 0)
(1.00099 -0.000193688 0)
(1.0009 -0.000243735 0)
(1.00084 -0.000302942 0)
(1.00222 -0.000337761 0)
(1.00169 0.00198564 0)
(1.00166 0.00204738 0)
(1.00163 0.00209667 0)
(1.0016 0.00212063 0)
(1.00157 0.00211537 0)
(1.00154 0.00208055 0)
(1.0015 0.00201724 0)
(1.00147 0.00192706 0)
(1.00145 0.00181166 0)
(1.00143 0.00167322 0)
(1.00142 0.00151395 0)
(1.00141 0.00133692 0)
(1.00139 0.00114593 0)
(1.00137 0.000946153 0)
(1.00134 0.000742863 0)
(1.0013 0.000543933 0)
(1.00126 0.00035361 0)
(1.00121 0.000182655 0)
(1.00116 3.4659e-05 0)
(1.0011 -8.78184e-05 0)
(1.00104 -0.000183258 0)
(1.00095 -0.000232114 0)
(1.0009 -0.000287529 0)
(1.00225 -0.000320943 0)
(1.00163 0.00203612 0)
(1.0016 0.00209253 0)
(1.00157 0.00213635 0)
(1.00155 0.00215534 0)
(1.00152 0.00214559 0)
(1.00149 0.00210683 0)
(1.00146 0.0020401 0)
(1.00143 0.00194678 0)
(1.00141 0.00182872 0)
(1.0014 0.00168793 0)
(1.00139 0.00152671 0)
(1.00139 0.00134804 0)
(1.00138 0.00115597 0)
(1.00137 0.000955412 0)
(1.00135 0.00075201 0)
(1.00132 0.000552994 0)
(1.00128 0.000363125 0)
(1.00124 0.000192204 0)
(1.00119 4.40505e-05 0)
(1.00114 -7.85821e-05 0)
(1.00109 -0.000172571 0)
(1.00101 -0.000220874 0)
(1.00095 -0.000274649 0)
(1.0023 -0.000304139 0)
(1.00157 0.00208223 0)
(1.00154 0.00213321 0)
(1.00151 0.00217149 0)
(1.00149 0.00218534 0)
(1.00147 0.00217101 0)
(1.00144 0.00212826 0)
(1.00142 0.00205805 0)
(1.00139 0.00196174 0)
(1.00138 0.00184115 0)
(1.00137 0.00169811 0)
(1.00137 0.001535 0)
(1.00137 0.00135486 0)
(1.00137 0.00116189 0)
(1.00137 0.00096093 0)
(1.00135 0.000757753 0)
(1.00133 0.000559277 0)
(1.00131 0.000370412 0)
(1.00127 0.000200185 0)
(1.00123 5.2722e-05 0)
(1.00119 -6.93112e-05 0)
(1.00114 -0.000161993 0)
(1.00106 -0.000209422 0)
(1.001 -0.000260195 0)
(1.00234 -0.000285429 0)
(1.0015 0.00212456 0)
(1.00147 0.00217007 0)
(1.00145 0.00220272 0)
(1.00143 0.00221128 0)
(1.00141 0.00219224 0)
(1.00139 0.00214543 0)
(1.00137 0.0020717 0)
(1.00135 0.00197244 0)
(1.00134 0.00184931 0)
(1.00134 0.00170413 0)
(1.00135 0.00153926 0)
(1.00136 0.00135782 0)
(1.00136 0.00116416 0)
(1.00137 0.00096295 0)
(1.00136 0.000760431 0)
(1.00135 0.000562719 0)
(1.00133 0.000375712 0)
(1.00131 0.000206631 0)
(1.00128 6.00954e-05 0)
(1.00124 -6.08631e-05 0)
(1.00119 -0.000151331 0)
(1.00111 -0.00019845 0)
(1.00106 -0.000248107 0)
(1.00238 -0.000267559 0)
(1.00143 0.0021613 0)
(1.0014 0.0022014 0)
(1.00138 0.00222839 0)
(1.00137 0.00223165 0)
(1.00135 0.00220791 0)
(1.00133 0.00215701 0)
(1.00132 0.00207976 0)
(1.00131 0.00197763 0)
(1.0013 0.00185206 0)
(1.00131 0.00170491 0)
(1.00132 0.00153848 0)
(1.00134 0.00135606 0)
(1.00136 0.00116199 0)
(1.00137 0.000961016 0)
(1.00137 0.000759507 0)
(1.00137 0.0005633 0)
(1.00136 0.000378591 0)
(1.00134 0.000211417 0)
(1.00132 6.65398e-05 0)
(1.00129 -5.26703e-05 0)
(1.00125 -0.000140918 0)
(1.00117 -0.000186304 0)
(1.00112 -0.000232517 0)
(1.00242 -0.000247294 0)
(1.00135 0.00219286 0)
(1.00133 0.00222756 0)
(1.00131 0.00224888 0)
(1.0013 0.0022468 0)
(1.00129 0.00221835 0)
(1.00128 0.00216326 0)
(1.00127 0.00208259 0)
(1.00126 0.00197751 0)
(1.00126 0.00184964 0)
(1.00128 0.00170076 0)
(1.0013 0.00153304 0)
(1.00132 0.00135004 0)
(1.00135 0.00115584 0)
(1.00137 0.000955533 0)
(1.00138 0.000755347 0)
(1.00139 0.000561141 0)
(1.00139 0.000379326 0)
(1.00138 0.000214593 0)
(1.00136 7.19515e-05 0)
(1.00134 -4.53017e-05 0)
(1.0013 -0.000131275 0)
(1.00123 -0.000178033 0)
(1.00117 -0.000224587 0)
(1.00247 -0.000230908 0)
(1.00127 0.0022168 0)
(1.00125 0.00224626 0)
(1.00124 0.00226199 0)
(1.00123 0.00225468 0)
(1.00122 0.00222145 0)
(1.00122 0.00216236 0)
(1.00121 0.00207819 0)
(1.00121 0.00197039 0)
(1.00122 0.00184056 0)
(1.00124 0.00169017 0)
(1.00127 0.00152168 0)
(1.00131 0.00133851 0)
(1.00134 0.00114482 0)
(1.00137 0.000945644 0)
(1.00139 0.000747398 0)
(1.00141 0.000555897 0)
(1.00142 0.000377556 0)
(1.00142 0.000215967 0)
(1.00141 7.63478e-05 0)
(1.00139 -3.8249e-05 0)
(1.00136 -0.000121526 0)
(1.00129 -0.000167377 0)
(1.00124 -0.000211139 0)
(1.00252 -0.000210562 0)
(1.00118 0.00223361 0)
(1.00117 0.00225797 0)
(1.00116 0.00226826 0)
(1.00116 0.0022557 0)
(1.00116 0.00221789 0)
(1.00116 0.00215471 0)
(1.00116 0.00206727 0)
(1.00117 0.00195677 0)
(1.00118 0.00182516 0)
(1.00121 0.00167371 0)
(1.00125 0.00150489 0)
(1.00129 0.0013221 0)
(1.00134 0.00112942 0)
(1.00138 0.000931928 0)
(1.00141 0.000736185 0)
(1.00144 0.000548059 0)
(1.00146 0.000373751 0)
(1.00146 0.000216008 0)
(1.00146 7.9668e-05 0)
(1.00144 -3.19354e-05 0)
(1.00142 -0.000112595 0)
(1.00135 -0.000159891 0)
(1.0013 -0.000203742 0)
(1.00257 -0.000194403 0)
(1.00109 0.00224023 0)
(1.00108 0.00225985 0)
(1.00108 0.0022649 0)
(1.00108 0.00224747 0)
(1.00109 0.00220519 0)
(1.00109 0.00213831 0)
(1.0011 0.00204727 0)
(1.00112 0.00193501 0)
(1.00114 0.00180196 0)
(1.00118 0.00165005 0)
(1.00122 0.00148147 0)
(1.00128 0.00129962 0)
(1.00133 0.00110838 0)
(1.00138 0.000913247 0)
(1.00143 0.000720829 0)
(1.00147 0.000536998 0)
(1.00149 0.000367426 0)
(1.00151 0.000214251 0)
(1.00151 8.18881e-05 0)
(1.0015 -2.5954e-05 0)
(1.00148 -0.000103025 0)
(1.00142 -0.000148531 0)
(1.00137 -0.000189175 0)
(1.00262 -0.000172872 0)
(1.001 0.00223713 0)
(1.00099 0.00225226 0)
(1.00099 0.0022524 0)
(1.001 0.00223018 0)
(1.00101 0.00218378 0)
(1.00103 0.00211262 0)
(1.00104 0.00201996 0)
(1.00107 0.00190602 0)
(1.0011 0.00177229 0)
(1.00115 0.00162028 0)
(1.0012 0.00145231 0)
(1.00127 0.00127161 0)
(1.00133 0.00108227 0)
(1.00139 0.000890226 0)
(1.00145 0.000702182 0)
(1.0015 0.000523544 0)
(1.00154 0.000359413 0)
(1.00156 0.000211275 0)
(1.00157 8.34118e-05 0)
(1.00157 -2.07129e-05 0)
(1.00155 -9.54546e-05 0)
(1.00149 -0.000143176 0)
(1.00144 -0.00018411 0)
(1.00268 -0.000159274 0)
(1.00089 0.00221968 0)
(1.00089 0.00223078 0)
(1.0009 0.00222627 0)
(1.00091 0.00219964 0)
(1.00093 0.0021487 0)
(1.00096 0.002076 0)
(1.00099 0.00198188 0)
(1.00102 0.00186718 0)
(1.00106 0.00173346 0)
(1.00112 0.00158162 0)
(1.00118 0.00141455 0)
(1.00126 0.00123533 0)
(1.00133 0.0010487 0)
(1.00141 0.000860962 0)
(1.00147 0.000678739 0)
(1.00153 0.000506436 0)
(1.00158 0.00034861 0)
(1.00161 0.00020618 0)
(1.00163 8.35681e-05 0)
(1.00163 -1.60595e-05 0)
(1.00162 -8.71978e-05 0)
(1.00156 -0.000133604 0)
(1.00152 -0.000171302 0)
(1.00274 -0.000139102 0)
(1.00079 0.00218928 0)
(1.00079 0.00219667 0)
(1.00081 0.00218787 0)
(1.00083 0.00215668 0)
(1.00086 0.00210378 0)
(1.00089 0.00202965 0)
(1.00093 0.00193441 0)
(1.00097 0.00181986 0)
(1.00103 0.00168558 0)
(1.00109 0.00153406 0)
(1.00117 0.00136817 0)
(1.00125 0.00119121 0)
(1.00134 0.00100851 0)
(1.00143 0.000826781 0)
(1.00151 0.000651658 0)
(1.00158 0.000486757 0)
(1.00163 0.000335631 0)
(1.00167 0.000199412 0)
(1.0017 8.21957e-05 0)
(1.0017 -1.29395e-05 0)
(1.0017 -8.14187e-05 0)
(1.00163 -0.000129245 0)
(1.0016 -0.000166381 0)
(1.00281 -0.000127161 0)
(1.00067 0.00214059 0)
(1.00069 0.00214531 0)
(1.00071 0.00213289 0)
(1.00074 0.00209956 0)
(1.00078 0.00204529 0)
(1.00082 0.00196965 0)
(1.00087 0.00187456 0)
(1.00093 0.00175895 0)
(1.00099 0.00162468 0)
(1.00107 0.00147466 0)
(1.00115 0.00131123 0)
(1.00125 0.00113827 0)
(1.00135 0.000961727 0)
(1.00145 0.000787899 0)
(1.00155 0.000621164 0)
(1.00163 0.000464309 0)
(1.00169 0.000320402 0)
(1.00174 0.000190935 0)
(1.00177 7.98333e-05 0)
(1.00178 -9.86052e-06 0)
(1.00178 -7.39606e-05 0)
(1.00172 -0.000119641 0)
(1.00168 -0.000153613 0)
(1.00288 -0.000108393 0)
(1.00055 0.00206237 0)
(1.00058 0.00206485 0)
(1.00061 0.00205012 0)
(1.00065 0.00201508 0)
(1.0007 0.00195858 0)
(1.00076 0.00188255 0)
(1.00082 0.0017861 0)
(1.00089 0.0016704 0)
(1.00096 0.00153817 0)
(1.00105 0.00139147 0)
(1.00115 0.00123288 0)
(1.00126 0.00106695 0)
(1.00137 0.000899418 0)
(1.00149 0.000735473 0)
(1.00159 0.000578257 0)
(1.00169 0.000430338 0)
(1.00176 0.000294482 0)
(1.00181 0.000172766 0)
(1.00185 6.88272e-05 0)
(1.00186 -1.46661e-05 0)
(1.00186 -7.48744e-05 0)
(1.0018 -0.000120122 0)
(1.00177 -0.0001518 0)
(1.00295 -0.000101094 0)
(1.00043 0.00200347 0)
(1.00047 0.00200466 0)
(1.00051 0.00198895 0)
(1.00056 0.0019518 0)
(1.00063 0.00189433 0)
(1.0007 0.00181656 0)
(1.00077 0.00171918 0)
(1.00085 0.00160441 0)
(1.00094 0.00147442 0)
(1.00104 0.00133136 0)
(1.00116 0.00117846 0)
(1.00128 0.00102019 0)
(1.00141 0.000861295 0)
(1.00154 0.000705753 0)
(1.00165 0.00055621 0)
(1.00176 0.000415441 0)
(1.00184 0.000286405 0)
(1.0019 0.000171569 0)
(1.00194 7.41997e-05 0)
(1.00196 -3.64468e-06 0)
(1.00196 -5.97579e-05 0)
(1.0019 -0.000102778 0)
(1.00187 -0.000131886 0)
(1.00303 -7.95259e-05 0)
(1.00033 0.00179228 0)
(1.00038 0.00179835 0)
(1.00043 0.0017869 0)
(1.00049 0.00175422 0)
(1.00057 0.00170082 0)
(1.00065 0.00162761 0)
(1.00074 0.00153634 0)
(1.00083 0.0014292 0)
(1.00093 0.00130841 0)
(1.00104 0.00117663 0)
(1.00117 0.0010371 0)
(1.00131 0.000893341 0)
(1.00146 0.000749029 0)
(1.0016 0.000607346 0)
(1.00172 0.000470975 0)
(1.00183 0.000343141 0)
(1.00192 0.000226734 0)
(1.00199 0.000124316 0)
(1.00203 3.86183e-05 0)
(1.00206 -2.89936e-05 0)
(1.00206 -7.79172e-05 0)
(1.002 -0.000117096 0)
(1.00197 -0.000138978 0)
(1.00312 -7.50318e-05 0)
(1.00026 0.00174875 0)
(1.00032 0.00175866 0)
(1.00039 0.00174885 0)
(1.00047 0.00171594 0)
(1.00056 0.00166172 0)
(1.00065 0.00158831 0)
(1.00075 0.001498 0)
(1.00086 0.00139306 0)
(1.00097 0.00127622 0)
(1.0011 0.00115008 0)
(1.00124 0.00101735 0)
(1.0014 0.000880908 0)
(1.00155 0.000743699 0)
(1.0017 0.000608733 0)
(1.00183 0.000478935 0)
(1.00195 0.000357905 0)
(1.00205 0.000248387 0)
(1.00211 0.000152735 0)
(1.00216 7.29608e-05 0)
(1.00218 9.75087e-06 0)
(1.00218 -3.70187e-05 0)
(1.00212 -7.61597e-05 0)
(1.0021 -9.57289e-05 0)
(1.00323 -2.91723e-05 0)
(1.00026 0.00136536 0)
(1.00033 0.00138649 0)
(1.00039 0.00138535 0)
(1.00047 0.00136037 0)
(1.00056 0.00131507 0)
(1.00066 0.00125264 0)
(1.00077 0.00117549 0)
(1.00088 0.00108639 0)
(1.00101 0.000987612 0)
(1.00115 0.000881576 0)
(1.0013 0.000770306 0)
(1.00146 0.000655958 0)
(1.00162 0.000540992 0)
(1.00178 0.000428051 0)
(1.00192 0.000320208 0)
(1.00205 0.000220945 0)
(1.00215 0.000132571 0)
(1.00222 5.6976e-05 0)
(1.00227 -4.43932e-06 0)
(1.0023 -5.1976e-05 0)
(1.00229 -8.70482e-05 0)
(1.00223 -0.000116865 0)
(1.00221 -0.000122699 0)
(1.00332 -4.16059e-05 0)
(1.00028 0.00151518 0)
(1.00036 0.00152747 0)
(1.00044 0.00151271 0)
(1.00053 0.00147267 0)
(1.00063 0.00141319 0)
(1.00075 0.00133836 0)
(1.00087 0.0012517 0)
(1.00099 0.00115577 0)
(1.00113 0.00105339 0)
(1.00128 0.000946121 0)
(1.00144 0.000835434 0)
(1.00161 0.000722833 0)
(1.00178 0.00061025 0)
(1.00194 0.00049996 0)
(1.00209 0.000394999 0)
(1.00222 0.000298742 0)
(1.00232 0.000213184 0)
(1.0024 0.000139782 0)
(1.00244 7.93998e-05 0)
(1.00246 3.11835e-05 0)
(1.00245 -6.64531e-06 0)
(1.00238 -4.06266e-05 0)
(1.00237 -4.89235e-05 0)
(1.00346 2.72304e-05 0)
(1.00007 0.000960505 0)
(1.00015 0.000986175 0)
(1.00023 0.000981407 0)
(1.00033 0.000950074 0)
(1.00045 0.000899538 0)
(1.00058 0.000836219 0)
(1.00072 0.000764254 0)
(1.00087 0.000688711 0)
(1.00103 0.000611116 0)
(1.0012 0.0005332 0)
(1.00139 0.000455004 0)
(1.00158 0.000376776 0)
(1.00177 0.000299311 0)
(1.00195 0.000224064 0)
(1.00211 0.000153463 0)
(1.00226 9.01056e-05 0)
(1.00237 3.54147e-05 0)
(1.00246 -9.64557e-06 0)
(1.00252 -4.47922e-05 0)
(1.00254 -7.1354e-05 0)
(1.00254 -9.12215e-05 0)
(1.00247 -0.000108421 0)
(1.00247 -0.000101176 0)
(1.00354 -1.53133e-05 0)
(0.999239 0.00132708 0)
(0.999386 0.00132703 0)
(0.999536 0.00129651 0)
(0.999711 0.00123944 0)
(0.999909 0.00116331 0)
(1.00013 0.00107348 0)
(1.00035 0.000977936 0)
(1.00058 0.000880624 0)
(1.00082 0.000785152 0)
(1.00106 0.000693001 0)
(1.0013 0.000603873 0)
(1.00154 0.000517496 0)
(1.00177 0.000434063 0)
(1.00199 0.000354642 0)
(1.00219 0.000281208 0)
(1.00236 0.00021562 0)
(1.0025 0.000158633 0)
(1.0026 0.000110871 0)
(1.00267 7.23787e-05 0)
(1.0027 4.13926e-05 0)
(1.0027 1.5218e-05 0)
(1.00263 -7.72614e-06 0)
(1.00264 1.21565e-05 0)
(1.00369 0.000120475 0)
(0.998142 0.000251003 0)
(0.998383 0.000258593 0)
(0.998617 0.000255167 0)
(0.998875 0.000243378 0)
(0.99916 0.000223332 0)
(0.999467 0.000197494 0)
(0.999787 0.000168843 0)
(1.00011 0.000139749 0)
(1.00043 0.000113481 0)
(1.00075 8.932e-05 0)
(1.00106 6.66323e-05 0)
(1.00136 4.42637e-05 0)
(1.00165 2.15272e-05 0)
(1.00191 -9.81739e-07 0)
(1.00215 -2.18203e-05 0)
(1.00236 -3.97826e-05 0)
(1.00253 -5.43195e-05 0)
(1.00265 -6.46798e-05 0)
(1.00274 -7.06792e-05 0)
(1.00279 -7.4213e-05 0)
(1.00279 -7.80533e-05 0)
(1.00274 -7.86412e-05 0)
(1.00276 -2.44721e-05 0)
(1.00379 0.000114682 0)
(1.00246 0.000361322 0)
(1.00262 0.00032403 0)
(1.00276 0.000288052 0)
(1.0029 0.000256438 0)
(1.00304 0.00022671 0)
(1.00319 0.000200258 0)
(1.00334 0.000174753 0)
(1.00349 0.000152881 0)
(1.00363 0.000134193 0)
(1.00376 0.0001183 0)
(1.00388 0.000104527 0)
(1.00399 9.18079e-05 0)
(1.0041 7.94264e-05 0)
(1.00418 6.74003e-05 0)
(1.00424 5.61606e-05 0)
(1.00428 4.60532e-05 0)
(1.00428 3.72263e-05 0)
(1.00425 3.00295e-05 0)
(1.00418 2.46064e-05 0)
(1.00409 2.0016e-05 0)
(1.00397 1.47104e-05 0)
(1.00379 1.13848e-05 0)
(1.00372 3.9796e-05 0)
(1.00457 0.000110187 0)
(0.343999 -0.00104553 -1.21223e-17)
(0.356056 -0.0100844 1.03953e-17)
(0.32989 -0.0107222 5.58255e-18)
(0.27817 -0.00701032 3.1573e-17)
(0.203622 -0.00149881 -2.61232e-17)
(0.153739 0.00031757 6.94251e-17)
(0.0937207 0.00057684 -4.04135e-18)
(0.082545 -0.00321257 8.57724e-17)
(0.0529161 -0.00674771 -1.08412e-16)
(0.0458945 -0.0112601 1.98835e-17)
(0.0312366 -0.0126737 -7.61132e-17)
(0.046688 -0.0149188 -2.19129e-16)
(0.0569477 -0.0149281 -1.42036e-16)
(0.0719229 -0.0144365 3.182e-16)
(0.0782259 -0.0125728 6.42616e-17)
(0.0831904 -0.0110205 2.29738e-16)
(0.08642 -0.00935533 -7.60431e-18)
(0.0891309 -0.00788738 3.0839e-17)
(0.0904469 -0.00630117 -7.83494e-17)
(0.0928027 -0.00507576 -3.41635e-16)
(0.0898415 -0.00411054 1.24515e-16)
(0.082645 -0.00344541 1.16696e-16)
(0.0720248 -0.00307624 -5.25582e-17)
(0.0582837 -0.00284516 -1.13518e-16)
(0.0444883 -0.00283641 -1.07989e-16)
(0.0231663 -0.00174026 2.38254e-16)
(0.0319302 -0.00462312 1.61503e-16)
(-0.0298898 0.00358507 -1.82146e-16)
(0.087326 -0.0142056 -2.18163e-16)
(-0.0824773 0.0209924 -1.59664e-16)
(0.738349 0.0146568 1.31254e-18)
(0.758097 -0.0111739 -4.11765e-18)
(0.756012 -0.0216825 1.72639e-18)
(0.735156 -0.0210009 -5.25907e-18)
(0.688151 -0.013617 3.0064e-17)
(0.645521 -0.00869766 -8.14043e-18)
(0.584075 -0.00510208 -9.90746e-18)
(0.548884 -0.00871461 -9.76371e-17)
(0.504338 -0.0141517 1.75031e-17)
(0.474893 -0.0231829 -3.92899e-17)
(0.436404 -0.0303491 -8.43984e-18)
(0.410273 -0.0371048 3.67709e-17)
(0.39041 -0.0418203 7.33731e-17)
(0.372981 -0.04424 -8.00971e-17)
(0.353716 -0.0437271 -5.07336e-17)
(0.338746 -0.0421063 -4.16118e-17)
(0.326029 -0.0392212 -4.93733e-17)
(0.317342 -0.0359174 -5.67056e-17)
(0.307103 -0.0317626 -1.22846e-17)
(0.298308 -0.0274478 5.43855e-17)
(0.28613 -0.0232175 -5.7426e-17)
(0.270206 -0.0195643 -1.72758e-17)
(0.249176 -0.0165927 7.1384e-17)
(0.222773 -0.0143228 -2.05512e-16)
(0.193076 -0.0127243 1.50935e-16)
(0.150671 -0.0104836 -1.34226e-16)
(0.148147 -0.014076 1.10176e-16)
(0.031357 0.00053362 -2.11211e-16)
(0.20534 -0.0347654 -2.89299e-16)
(-0.0471338 0.0354506 -3.10606e-16)
(1.02473 0.0130205 -1.90044e-18)
(1.04033 -0.0169852 1.65184e-18)
(1.0442 -0.0290188 2.42911e-18)
(1.03611 -0.0279388 7.02081e-18)
(1.01062 -0.0188749 1.43933e-18)
(0.985052 -0.0128212 1.2985e-18)
(0.945215 -0.00906984 1.53632e-17)
(0.917016 -0.0141697 6.79717e-17)
(0.880946 -0.0223978 -2.36505e-18)
(0.851753 -0.0351811 -2.04991e-17)
(0.813323 -0.0467931 -1.412e-17)
(0.779534 -0.0576644 1.86057e-17)
(0.748901 -0.0663356 5.86279e-18)
(0.719307 -0.0720726 -9.26888e-17)
(0.689404 -0.0746463 4.54569e-17)
(0.663284 -0.0753682 -2.65873e-17)
(0.639577 -0.074127 -2.998e-17)
(0.619443 -0.0715471 9.57853e-18)
(0.598208 -0.0672701 -9.34298e-18)
(0.577347 -0.0620453 -4.15009e-18)
(0.55349 -0.0561656 -1.17839e-17)
(0.526413 -0.0503634 9.7094e-18)
(0.494131 -0.0447565 -1.54397e-16)
(0.456224 -0.0397286 -1.02805e-16)
(0.412494 -0.0351065 -9.06161e-18)
(0.359734 -0.0312693 1.04028e-16)
(0.329447 -0.030427 -1.45661e-16)
(0.21239 -0.0186047 1.58002e-16)
(0.338804 -0.0524287 6.19662e-17)
(0.0426413 0.0282722 3.54221e-16)
(1.15088 0.00146307 2.24913e-18)
(1.16956 -0.0252487 -4.76981e-19)
(1.18058 -0.0338294 -4.54517e-18)
(1.18076 -0.0294302 -3.59995e-18)
(1.17112 -0.0173993 -1.73704e-17)
(1.15828 -0.0100342 8.88155e-19)
(1.13714 -0.00658295 6.30706e-18)
(1.11986 -0.0138842 -2.4736e-17)
(1.09713 -0.0254725 -9.30121e-18)
(1.07612 -0.0424277 -1.09607e-17)
(1.04813 -0.0585129 -8.86575e-18)
(1.02161 -0.0736426 3.38057e-17)
(0.995871 -0.0861592 -4.67831e-17)
(0.970582 -0.0948712 9.62185e-17)
(0.945676 -0.0998118 1.62021e-17)
(0.922834 -0.102463 2.07696e-18)
(0.901154 -0.102743 6.95388e-17)
(0.880839 -0.101253 -4.5967e-17)
(0.859315 -0.0977639 -4.73144e-18)
(0.837119 -0.0929795 4.02252e-17)
(0.811993 -0.0872582 -3.60675e-20)
(0.783341 -0.081319 4.51255e-20)
(0.749464 -0.0752431 1.5359e-16)
(0.709716 -0.0694497 1.29708e-16)
(0.663011 -0.0637024 -1.43468e-16)
(0.609672 -0.0593453 -1.018e-16)
(0.56125 -0.0546811 1.12806e-16)
(0.460433 -0.0474205 -6.10239e-17)
(0.53047 -0.07225 9.50188e-17)
(0.194703 -0.000201089 2.48892e-17)
(1.18507 0.00342422 6.20336e-19)
(1.20628 -0.0185257 1.17975e-18)
(1.22026 -0.0255124 -4.57953e-19)
(1.22304 -0.0209221 -5.21787e-18)
(1.22022 -0.00943452 -6.92082e-19)
(1.21264 -0.00350342 1.02179e-17)
(1.20195 -0.00197428 -4.39496e-18)
(1.19163 -0.0121585 -5.30117e-18)
(1.17898 -0.0271096 6.01452e-18)
(1.16599 -0.0477927 1.49364e-17)
(1.14958 -0.0674812 1.46435e-17)
(1.13368 -0.0856026 -3.77862e-17)
(1.11771 -0.100463 7.32381e-17)
(1.10237 -0.11078 -3.04755e-17)
(1.08765 -0.116959 -4.32926e-17)
(1.0733 -0.120498 -1.97411e-17)
(1.05887 -0.121488 -1.67717e-17)
(1.04407 -0.120536 7.04347e-17)
(1.02783 -0.117584 6.58541e-17)
(1.01055 -0.113322 2.71645e-17)
(0.990823 -0.108192 -4.2813e-17)
(0.967838 -0.102856 -2.96903e-17)
(0.940499 -0.0974266 -8.11639e-17)
(0.908005 -0.092263 -2.58954e-18)
(0.869526 -0.0872056 1.25763e-17)
(0.825013 -0.0836238 5.73546e-18)
(0.77851 -0.078252 -4.32604e-17)
(0.698171 -0.075611 -7.50344e-17)
(0.73437 -0.0905647 -1.28598e-16)
(0.402649 -0.039248 -1.2825e-16)
(1.19324 -0.00428712 -2.9525e-18)
(1.21612 -0.0194521 1.85493e-18)
(1.23067 -0.0242544 -4.53425e-18)
(1.23295 -0.0201803 1.46681e-17)
(1.22947 -0.00955499 1.23532e-17)
(1.22059 -0.0053735 -1.9817e-17)
(1.2108 -0.00487418 -1.00968e-17)
(1.20101 -0.0166065 -1.33233e-17)
(1.19128 -0.0329368 3.14654e-18)
(1.18131 -0.0551367 -2.10969e-17)
(1.171 -0.0760579 -9.1843e-19)
(1.16208 -0.0948711 2.20725e-17)
(1.15367 -0.110053 -6.11769e-17)
(1.14675 -0.120325 -4.96929e-17)
(1.14088 -0.12642 -1.40879e-17)
(1.1346 -0.129806 5.16247e-17)
(1.12758 -0.130754 -1.49825e-17)
(1.11925 -0.129836 -5.30266e-17)
(1.10929 -0.127127 -1.57371e-17)
(1.09819 -0.123263 -7.08032e-18)
(1.08507 -0.118728 3.10166e-17)
(1.06918 -0.11413 4.9402e-18)
(1.05001 -0.109624 4.68962e-17)
(1.02688 -0.105513 -2.71139e-18)
(0.999644 -0.101731 -8.4962e-18)
(0.967038 -0.0994197 9.72968e-18)
(0.932904 -0.0951208 -1.25558e-17)
(0.873174 -0.0965452 5.80437e-17)
(0.894028 -0.103078 1.63583e-16)
(0.614067 -0.0772608 1.00762e-16)
(1.20275 -0.0237805 2.85098e-18)
(1.22637 -0.0312053 -2.25356e-18)
(1.24107 -0.0327451 -1.42726e-18)
(1.2427 -0.0283877 -8.05477e-18)
(1.23685 -0.0179779 6.66602e-18)
(1.22493 -0.0143491 1.00088e-17)
(1.21179 -0.0134353 -6.61365e-18)
(1.19917 -0.0245292 -8.63674e-18)
(1.18744 -0.0400174 -1.45606e-17)
(1.17635 -0.0613218 4.7913e-17)
(1.16646 -0.0813336 2.91778e-17)
(1.15927 -0.0991047 2.77202e-17)
(1.1537 -0.113332 2.30675e-17)
(1.15072 -0.122746 6.19629e-17)
(1.14953 -0.128274 3.16135e-17)
(1.14812 -0.131251 -3.02263e-17)
(1.14599 -0.132063 -9.59954e-20)
(1.14236 -0.131196 -3.24522e-18)
(1.1371 -0.12879 -5.06939e-17)
(1.13073 -0.125394 -1.27681e-17)
(1.12262 -0.121513 2.9325e-17)
(1.11213 -0.117692 3.46086e-18)
(1.09909 -0.114115 -2.42902e-18)
(1.08306 -0.111043 -1.01775e-16)
(1.06452 -0.10846 -3.71737e-17)
(1.04149 -0.107364 -1.71251e-17)
(1.01945 -0.104439 -8.02538e-18)
(0.976078 -0.108857 7.62713e-18)
(0.991884 -0.109516 -2.12609e-17)
(0.78226 -0.106406 -9.93137e-17)
(1.2169 -0.0361903 -1.78056e-18)
(1.24074 -0.0387784 -5.98148e-18)
(1.25574 -0.0380178 1.73754e-18)
(1.25729 -0.0333762 6.76641e-18)
(1.2499 -0.0235205 -1.46701e-17)
(1.23573 -0.0199424 1.06811e-17)
(1.21937 -0.0184331 -2.40289e-18)
(1.20373 -0.028079 8.55732e-19)
(1.18898 -0.0418869 1.52045e-17)
(1.17553 -0.0613538 2.38672e-17)
(1.16363 -0.0798239 -1.11542e-17)
(1.1552 -0.09628 -5.10998e-17)
(1.14918 -0.109572 -2.05813e-18)
(1.14649 -0.118447 -5.49238e-17)
(1.14623 -0.123866 -2.30459e-17)
(1.14632 -0.126931 -3.72373e-17)
(1.14607 -0.12807 9.04311e-18)
(1.14458 -0.127651 1.50758e-18)
(1.14167 -0.125856 2.39543e-17)
(1.13783 -0.123133 3.35385e-17)
(1.13248 -0.120003 -6.27493e-17)
(1.12501 -0.116956 1.78737e-17)
(1.11542 -0.114204 -5.02529e-17)
(1.10341 -0.111976 8.47868e-17)
(1.08983 -0.110271 5.23337e-17)
(1.0725 -0.110073 5.66278e-17)
(1.05789 -0.108134 5.63306e-17)
(1.02542 -0.114426 8.9639e-17)
(1.03749 -0.111372 -9.26103e-17)
(0.893283 -0.124176 7.0326e-17)
(1.23032 -0.0336044 5.91085e-19)
(1.25483 -0.035739 6.39128e-18)
(1.2707 -0.0350293 1.10706e-18)
(1.27287 -0.0311645 -1.75542e-17)
(1.26514 -0.0225886 -1.06296e-18)
(1.24983 -0.0193354 -1.35739e-17)
(1.23161 -0.0175667 1.69695e-17)
(1.21387 -0.0259294 -4.94403e-18)
(1.19686 -0.03819 -3.66422e-17)
(1.18143 -0.0559351 -7.14337e-17)
(1.16749 -0.073024 -3.17821e-17)
(1.15721 -0.0885883 9.67923e-18)
(1.14966 -0.101471 -2.09249e-17)
(1.14568 -0.110399 -3.02207e-18)
(1.14447 -0.116286 1.22561e-17)
(1.14403 -0.119969 3.32906e-17)
(1.14367 -0.121864 9.15339e-18)
(1.14241 -0.122218 3.77681e-17)
(1.14003 -0.121237 4.85552e-17)
(1.13695 -0.119287 -5.63445e-17)
(1.13258 -0.116914 1.25112e-17)
(1.12632 -0.114561 -3.24372e-17)
(1.1182 -0.112473 4.40951e-17)
(1.10798 -0.110855 6.35749e-18)
(1.0966 -0.109706 -2.59547e-17)
(1.08204 -0.110054 4.3746e-18)
(1.07058 -0.108651 -2.96039e-17)
(1.04474 -0.115862 -5.63297e-17)
(1.05115 -0.110758 9.73459e-17)
(0.956396 -0.132264 -4.22935e-17)
(1.23743 -0.0237999 -1.85278e-19)
(1.26345 -0.0276941 1.86861e-18)
(1.28108 -0.0287788 8.20886e-18)
(1.2847 -0.0268351 8.76076e-19)
(1.27776 -0.0200143 -3.0074e-19)
(1.26237 -0.0175023 6.31086e-18)
(1.24358 -0.0156445 -2.06609e-17)
(1.22473 -0.0230391 1.99399e-17)
(1.20648 -0.0339231 5.00508e-17)
(1.18981 -0.0501698 7.54796e-18)
(1.17457 -0.0659882 -4.52885e-18)
(1.16291 -0.0808062 7.53532e-18)
(1.15399 -0.0934333 6.85642e-17)
(1.14863 -0.102549 2.07136e-17)
(1.14607 -0.108997 3.78973e-17)
(1.14446 -0.113368 2.9143e-19)
(1.14319 -0.116038 8.04541e-18)
(1.14128 -0.117143 -2.5263e-17)
(1.13848 -0.116909 -4.59493e-17)
(1.13518 -0.115628 1.69978e-17)
(1.13078 -0.113868 1.13539e-17)
(1.12467 -0.112036 2.13965e-18)
(1.1169 -0.110409 -1.616e-17)
(1.10724 -0.109176 -1.17052e-17)
(1.0966 -0.108328 -3.16672e-17)
(1.08321 -0.108937 -6.45146e-18)
(1.07252 -0.107778 3.79657e-17)
(1.05055 -0.115186 -2.81179e-17)
(1.05065 -0.109243 -3.17793e-17)
(0.9877 -0.133919 4.53061e-18)
(1.23623 -0.0161483 -2.97553e-18)
(1.26401 -0.0217091 2.41891e-18)
(1.28395 -0.0248723 -7.62539e-18)
(1.28968 -0.0250951 5.06203e-18)
(1.28437 -0.0200434 8.23181e-20)
(1.26975 -0.0183051 -1.54645e-17)
(1.25137 -0.0163486 1.40484e-17)
(1.23229 -0.0228027 1.04841e-17)
(1.21367 -0.0323574 6.19986e-18)
(1.1965 -0.0471115 1.56098e-17)
(1.18078 -0.0615869 1.40113e-17)
(1.16845 -0.075519 -2.9499e-17)
(1.15877 -0.0877234 -4.78415e-17)
(1.15252 -0.0968209 2.37366e-17)
(1.14897 -0.103605 6.98581e-19)
(1.14636 -0.108446 -2.70452e-17)
(1.14416 -0.111676 -1.48167e-18)
(1.14146 -0.113329 1.80344e-17)
(1.13799 -0.113637 6.32074e-18)
(1.13414 -0.112829 -3.18219e-17)
(1.1293 -0.111494 3.2509e-18)
(1.12289 -0.11 -2.06731e-17)
(1.11497 -0.108655 -5.29877e-19)
(1.10531 -0.107629 -8.36749e-17)
(1.09477 -0.106908 1.09891e-16)
(1.08181 -0.107572 -9.91704e-17)
(1.07098 -0.106502 -8.01724e-17)
(1.05123 -0.113621 1.52516e-17)
(1.04624 -0.107559 2.35102e-17)
(1.00105 -0.131993 1.73093e-17)
(1.22884 -0.012104 5.50707e-18)
(1.25777 -0.0188978 -3.6027e-18)
(1.27976 -0.0238996 -2.44426e-18)
(1.28768 -0.0261435 -6.23142e-18)
(1.28425 -0.0227519 1.88723e-18)
(1.27089 -0.0216658 7.7552e-18)
(1.25346 -0.0196114 -8.23747e-18)
(1.23477 -0.0250678 -1.20823e-18)
(1.21643 -0.0333083 4.51967e-18)
(1.19936 -0.0465208 2.07525e-17)
(1.18379 -0.0596217 -5.23605e-18)
(1.17145 -0.072526 8.17476e-18)
(1.16164 -0.084123 1.50394e-17)
(1.15513 -0.0929962 2.50349e-18)
(1.15113 -0.099887 -4.11307e-17)
(1.14796 -0.104973 3.93623e-17)
(1.14518 -0.108549 -1.31539e-17)
(1.14191 -0.110554 -2.1127e-17)
(1.1379 -0.111236 -2.1843e-17)
(1.13354 -0.110757 4.37837e-17)
(1.12824 -0.109718 -8.94663e-18)
(1.12143 -0.108451 2.53327e-17)
(1.1132 -0.107288 2.38643e-17)
(1.10334 -0.106375 9.52448e-17)
(1.09266 -0.105697 -1.10493e-16)
(1.07983 -0.106308 3.15773e-17)
(1.06867 -0.10526 -1.37428e-18)
(1.05019 -0.111833 -6.32518e-17)
(1.04186 -0.105977 -2.8626e-17)
(1.0056 -0.12836 1.15025e-17)
(1.21933 -0.00914634 -1.3308e-18)
(1.24839 -0.0174053 3.18296e-18)
(1.27152 -0.0243028 6.31487e-18)
(1.28104 -0.0285323 1.06947e-17)
(1.27911 -0.0268087 1.36644e-17)
(1.26692 -0.0263119 -2.14122e-18)
(1.25047 -0.0241967 -3.3536e-18)
(1.23238 -0.0286111 1.3452e-17)
(1.21458 -0.0355662 -3.36327e-17)
(1.19795 -0.0472039 -4.68157e-17)
(1.18293 -0.0589126 -1.04005e-17)
(1.17103 -0.0707198 4.31401e-17)
(1.16159 -0.0816014 2.74614e-17)
(1.15532 -0.0901278 -9.3547e-18)
(1.15139 -0.0969878 1.61305e-17)
(1.14815 -0.102191 -1.46106e-17)
(1.14521 -0.105992 -2.80155e-17)
(1.1417 -0.108248 -1.04181e-17)
(1.13742 -0.109213 1.81935e-17)
(1.13276 -0.108994 -1.13002e-17)
(1.12714 -0.108196 2.63408e-17)
(1.12002 -0.107117 2.66409e-17)
(1.11151 -0.106104 -5.73868e-17)
(1.10145 -0.105281 -7.67405e-17)
(1.09058 -0.104633 8.70871e-17)
(1.07777 -0.105166 3.28905e-20)
(1.06631 -0.104132 6.86285e-17)
(1.04857 -0.110079 5.35052e-17)
(1.03824 -0.104547 1.4233e-17)
(1.00639 -0.124082 -4.40306e-17)
(1.21089 -0.00526042 -1.86012e-18)
(1.2393 -0.015392 -5.08513e-18)
(1.26263 -0.0244663 2.96432e-18)
(1.27298 -0.030864 -6.51355e-18)
(1.27186 -0.0309933 -1.03704e-17)
(1.26043 -0.0312105 1.15478e-17)
(1.24459 -0.0291779 2.37025e-17)
(1.22695 -0.0326311 -3.75864e-17)
(1.20961 -0.0383789 -4.29519e-18)
(1.19347 -0.04848 3.81878e-17)
(1.17908 -0.0588356 5.35961e-17)
(1.16777 -0.0695219 -2.48229e-17)
(1.15892 -0.0796235 -2.19373e-17)
(1.15318 -0.0877227 -1.2913e-17)
(1.14962 -0.0944537 -1.70751e-17)
(1.14664 -0.0996785 6.56588e-18)
(1.14385 -0.103616 3.59963e-17)
(1.14041 -0.106051 2.51717e-17)
(1.13613 -0.107245 3.24592e-18)
(1.1314 -0.107252 4.52128e-18)
(1.12564 -0.106676 -1.25196e-17)
(1.11837 -0.105776 -2.3556e-17)
(1.1097 -0.104911 4.31985e-17)
(1.09949 -0.104184 9.6739e-17)
(1.08849 -0.10358 -4.39325e-17)
(1.07569 -0.104047 2.66977e-17)
(1.06398 -0.103047 -1.45094e-17)
(1.04675 -0.108382 -4.91154e-17)
(1.03518 -0.103231 -6.63218e-17)
(1.00579 -0.119703 6.45992e-17)
(1.20444 -0.000526074 1.55078e-18)
(1.23194 -0.0126455 2.98737e-18)
(1.25493 -0.0240531 2.64157e-18)
(1.26555 -0.0327448 3.92298e-18)
(1.26469 -0.0348888 9.34321e-19)
(1.25359 -0.0359852 -5.79145e-18)
(1.2379 -0.0342117 3.43405e-18)
(1.22041 -0.0368407 1.19588e-17)
(1.20325 -0.0414911 1.5954e-17)
(1.18742 -0.050123 -3.84812e-17)
(1.17351 -0.059155 -2.2382e-17)
(1.16272 -0.0687133 -3.2634e-17)
(1.15446 -0.0779837 -8.98356e-19)
(1.14929 -0.0855841 4.27857e-19)
(1.14624 -0.0921013 -2.20702e-17)
(1.14367 -0.0972715 -3.67452e-17)
(1.14121 -0.101276 -5.26698e-18)
(1.13804 -0.103839 -7.71676e-18)
(1.13393 -0.105218 -3.0678e-17)
(1.12932 -0.105422 -4.46879e-17)
(1.12359 -0.105048 -6.53735e-18)
(1.11631 -0.104322 -3.26663e-17)
(1.10759 -0.103607 -8.36373e-18)
(1.09735 -0.102983 -5.62308e-17)
(1.08628 -0.102437 1.42773e-17)
(1.07352 -0.102855 5.57312e-17)
(1.06164 -0.101909 -5.93611e-17)
(1.04481 -0.106671 2.86292e-17)
(1.0324 -0.101922 2.49372e-17)
(1.00472 -0.115468 -2.45185e-17)
(1.19943 0.00423176 9.2708e-19)
(1.22609 -0.00961035 2.90296e-18)
(1.24865 -0.0232499 -3.54422e-18)
(1.25935 -0.0342042 -2.29773e-18)
(1.25854 -0.0384132 6.28943e-18)
(1.24755 -0.0405167 -5.60195e-18)
(1.23177 -0.039167 -1.88991e-17)
(1.21417 -0.0411412 5.27481e-19)
(1.19695 -0.0448286 1.5481e-17)
(1.18123 -0.0520927 1.95077e-17)
(1.16758 -0.0598707 1.92629e-17)
(1.15711 -0.0683119 5.43238e-17)
(1.14927 -0.0767158 -1.50681e-17)
(1.14457 -0.0837563 -2.72261e-18)
(1.14194 -0.0899783 -1.19537e-17)
(1.13978 -0.0950114 6.66837e-17)
(1.13769 -0.0990053 -9.82426e-18)
(1.13484 -0.101633 -7.8072e-18)
(1.131 -0.103146 5.03126e-17)
(1.12659 -0.103514 3.32558e-17)
(1.121 -0.103322 1.57893e-17)
(1.1138 -0.102758 1.42883e-17)
(1.10514 -0.102187 2.34299e-18)
(1.09495 -0.101668 4.74003e-17)
(1.0839 -0.101187 -2.52033e-17)
(1.07124 -0.101566 -7.30452e-17)
(1.05926 -0.100681 9.26783e-17)
(1.04281 -0.104909 6.21994e-17)
(1.02977 -0.100549 7.27036e-17)
(1.00352 -0.111462 -2.32251e-17)
(1.195 0.00811934 -1.60467e-19)
(1.22094 -0.00696851 -1.9831e-18)
(1.24312 -0.022502 -1.3212e-18)
(1.25391 -0.0354874 -1.36316e-18)
(1.25319 -0.0416524 -1.46748e-17)
(1.24229 -0.0447883 3.21493e-18)
(1.22636 -0.0439641 -7.34242e-18)
(1.20856 -0.0454322 -9.78224e-18)
(1.19114 -0.0482835 -3.17336e-17)
(1.17535 -0.0542864 3.77317e-17)
(1.16178 -0.0608725 -4.86913e-17)
(1.15146 -0.0682218 -2.3249e-17)
(1.1439 -0.0757459 1.12871e-17)
(1.13952 -0.0821854 -8.25452e-19)
(1.13722 -0.0880507 5.37481e-17)
(1.13539 -0.092886 -2.67067e-17)
(1.13364 -0.0968108 -1.04781e-18)
(1.1311 -0.0994531 2.91722e-17)
(1.12755 -0.101058 -2.08751e-17)
(1.12337 -0.101559 1.25263e-18)
(1.11797 -0.101522 -9.17032e-18)
(1.11091 -0.101106 3.77048e-17)
(1.10237 -0.100669 -3.93423e-17)
(1.09229 -0.10025 5.45957e-18)
(1.08132 -0.0998352 -5.00806e-18)
(1.06881 -0.10018 -1.34242e-17)
(1.0568 -0.0993543 -2.05649e-17)
(1.04074 -0.103082 -3.24484e-17)
(1.02722 -0.0990651 -9.60778e-17)
(1.00228 -0.107688 2.80862e-17)
(1.19071 0.0109053 -1.53599e-18)
(1.21599 -0.00495154 -3.66847e-18)
(1.23784 -0.0219459 -3.87005e-18)
(1.24879 -0.0366303 -9.19718e-19)
(1.24826 -0.0445518 4.02278e-18)
(1.23755 -0.0486913 1.20832e-17)
(1.22155 -0.0484563 -1.10273e-18)
(1.20355 -0.0495616 -1.3883e-17)
(1.1859 -0.051713 -1.34753e-17)
(1.17 -0.0565874 -2.30338e-17)
(1.15642 -0.0620863 3.75215e-17)
(1.14613 -0.0684016 -2.53064e-18)
(1.13871 -0.0750568 -9.09067e-19)
(1.13453 -0.0808755 -1.35628e-17)
(1.13244 -0.0863385 -2.98759e-18)
(1.13085 -0.0909219 -6.29577e-18)
(1.12936 -0.0947207 -2.88311e-17)
(1.12708 -0.0973297 -2.93268e-17)
(1.12378 -0.0989843 1.47215e-17)
(1.11983 -0.0995877 4.05129e-18)
(1.11462 -0.0996852 -2.35951e-18)
(1.10773 -0.0994013 -3.04539e-17)
(1.09933 -0.0990876 2.5554e-17)
(1.0894 -0.098762 -1.7149e-17)
(1.07856 -0.0984115 2.86477e-17)
(1.06624 -0.0987254 -3.92175e-17)
(1.05426 -0.0979532 -2.82409e-17)
(1.03858 -0.101214 -2.39882e-17)
(1.02473 -0.0974841 1.16539e-16)
(1.00101 -0.10413 -4.68342e-17)
(1.18639 0.0128629 1.85344e-18)
(1.21099 -0.00338799 -1.53723e-18)
(1.23253 -0.0214229 2.12085e-18)
(1.24366 -0.0374636 4.82996e-18)
(1.2434 -0.0469271 -2.95143e-18)
(1.23296 -0.0520337 -1.91072e-17)
(1.21695 -0.0524472 1.50922e-17)
(1.1988 -0.0533382 5.81413e-17)
(1.18092 -0.0549319 5.65626e-17)
(1.16487 -0.0588234 -7.2512e-18)
(1.15123 -0.0633422 -5.38192e-17)
(1.14093 -0.0686993 2.86792e-17)
(1.1336 -0.0745187 3.87679e-18)
(1.12956 -0.0797183 4.37122e-17)
(1.12763 -0.0847579 5.90785e-18)
(1.12623 -0.089062 -2.42504e-17)
(1.12496 -0.0927036 1.5897e-17)
(1.12291 -0.0952506 1.10028e-17)
(1.11983 -0.0969275 2.26487e-17)
(1.11609 -0.0976097 -1.25538e-17)
(1.11105 -0.0978212 9.04924e-18)
(1.10433 -0.0976566 -6.51517e-18)
(1.09609 -0.0974562 1.39595e-17)
(1.08633 -0.0972183 -4.32575e-17)
(1.07564 -0.096929 -5.31298e-17)
(1.06354 -0.0972131 2.85567e-17)
(1.05163 -0.0964883 2.16091e-17)
(1.03635 -0.0993128 4.68852e-17)
(1.02229 -0.0958151 -5.31041e-17)
(0.99971 -0.100762 3.10425e-17)
(1.18208 0.0144881 -1.46538e-18)
(1.20598 -0.00193335 1.66846e-18)
(1.22719 -0.0206953 -3.61279e-18)
(1.23851 -0.0378168 2.78816e-18)
(1.23858 -0.048644 1.53228e-18)
(1.22848 -0.0547019 1.11993e-17)
(1.21254 -0.0558265 1.10694e-18)
(1.1943 -0.0566605 -3.3182e-17)
(1.17623 -0.0578514 -3.10334e-17)
(1.16003 -0.0609238 -7.09417e-18)
(1.14632 -0.0645971 3.08892e-17)
(1.13596 -0.0690911 7.48569e-21)
(1.12867 -0.0741236 2.7578e-18)
(1.12471 -0.0787186 1.07578e-17)
(1.12289 -0.0833211 -2.06968e-17)
(1.12164 -0.0873197 4.88704e-17)
(1.12053 -0.0907712 4.11148e-17)
(1.11868 -0.0932273 -3.7492e-17)
(1.1158 -0.0948989 -1.04754e-17)
(1.11223 -0.0956408 -7.66243e-18)
(1.10737 -0.0959517 2.72894e-17)
(1.1008 -0.0958951 2.7219e-17)
(1.09272 -0.0957986 -5.44762e-18)
(1.08314 -0.095642 1.90798e-17)
(1.07261 -0.0954099 6.31851e-17)
(1.06073 -0.095665 -3.3826e-17)
(1.04893 -0.0949812 -2.90257e-17)
(1.03406 -0.0974002 -3.55824e-17)
(1.01989 -0.0940879 -2.254e-18)
(0.998396 -0.0975647 9.18312e-19)
(1.17778 0.0161172 1.28409e-19)
(1.20093 -0.000317946 6.85582e-18)
(1.2218 -0.0195714 1.07537e-18)
(1.23329 -0.0375698 3.06837e-18)
(1.23371 -0.0496317 7.93072e-18)
(1.22398 -0.0566429 -1.6366e-17)
(1.20816 -0.0585429 -1.32504e-17)
(1.18985 -0.0594738 4.5233e-18)
(1.1716 -0.0604086 -9.66094e-18)
(1.15527 -0.0628176 6.09189e-18)
(1.14146 -0.0657638 7.97455e-18)
(1.13103 -0.0694837 -3.23051e-17)
(1.12377 -0.0737865 1.45367e-17)
(1.11988 -0.0778017 -2.68749e-17)
(1.11816 -0.0819673 -1.99629e-17)
(1.11703 -0.085652 -1.99152e-17)
(1.11609 -0.0888988 -4.09408e-17)
(1.11442 -0.0912485 3.97082e-17)
(1.11171 -0.0928992 -4.0784e-17)
(1.10832 -0.0936856 3.1773e-17)
(1.10361 -0.0940815 -6.64583e-17)
(1.0972 -0.0941229 -5.96887e-18)
(1.08927 -0.0941218 8.49419e-18)
(1.07986 -0.0940404 -3.094e-17)
(1.0695 -0.0938614 3.40106e-17)
(1.05786 -0.0940879 6.6991e-17)
(1.04619 -0.0934373 6.55678e-17)
(1.03173 -0.0954793 -3.07702e-17)
(1.01753 -0.0923122 3.90173e-17)
(0.997064 -0.0945215 -3.16436e-17)
(1.17353 0.0177732 2.63141e-18)
(1.19594 0.00143115 -4.23409e-19)
(1.21644 -0.0181357 4.32822e-18)
(1.22808 -0.0368441 -1.40463e-17)
(1.22887 -0.0500197 -5.17338e-18)
(1.21955 -0.0579783 1.29809e-17)
(1.20392 -0.0606974 1.50362e-17)
(1.18559 -0.0618571 2.76578e-17)
(1.16721 -0.0626679 1.06186e-17)
(1.15075 -0.0645596 2.88085e-17)
(1.13685 -0.066897 -1.56322e-17)
(1.12634 -0.0699314 -3.00982e-17)
(1.11907 -0.0735552 -3.87313e-17)
(1.11521 -0.0770111 -2.81771e-17)
(1.11354 -0.0807357 8.89766e-19)
(1.11251 -0.0840901 -2.28062e-17)
(1.1117 -0.0871095 2.50733e-17)
(1.11018 -0.0893327 2.69359e-17)
(1.10765 -0.0909426 -1.75227e-18)
(1.10442 -0.0917602 -4.40403e-17)
(1.09985 -0.0922302 3.87813e-17)
(1.09358 -0.0923603 1.40626e-17)
(1.08581 -0.092446 1.64047e-17)
(1.07657 -0.0924331 8.09063e-17)
(1.06638 -0.0923022 1.05333e-18)
(1.05498 -0.0924992 3.09537e-18)
(1.04344 -0.0918748 -4.43501e-18)
(1.02938 -0.0935668 3.02343e-17)
(1.01523 -0.0905116 4.92576e-18)
(0.99573 -0.0916233 6.14514e-17)
(1.16933 0.0193776 -3.62284e-18)
(1.19097 0.00323887 -8.45738e-18)
(1.21108 -0.0164728 -4.53048e-18)
(1.22285 -0.0357426 8.69744e-18)
(1.22402 -0.049914 -1.26726e-18)
(1.21512 -0.0588009 3.05354e-18)
(1.1997 -0.0623649 -1.68295e-17)
(1.18139 -0.063857 -4.85629e-17)
(1.16289 -0.0646498 -9.2124e-18)
(1.14631 -0.0661432 1.74479e-19)
(1.13231 -0.0679634 1.78349e-17)
(1.12172 -0.0703841 3.2604e-17)
(1.11444 -0.073375 2.45675e-17)
(1.1106 -0.0762928 2.40005e-17)
(1.10898 -0.0795798 4.39459e-18)
(1.10804 -0.0826005 5.87699e-18)
(1.10736 -0.0853844 -2.45887e-17)
(1.10599 -0.0874714 -1.75887e-17)
(1.10361 -0.0890299 1.85557e-17)
(1.10053 -0.0898661 4.52222e-17)
(1.09612 -0.0903983 -2.09851e-17)
(1.08999 -0.0906086 -1.72519e-17)
(1.08236 -0.0907733 -4.2905e-17)
(1.0733 -0.0908228 -1.10341e-17)
(1.06328 -0.0907352 -3.18449e-17)
(1.05211 -0.0909022 -3.46594e-17)
(1.04073 -0.0902961 5.50265e-18)
(1.02705 -0.0916629 -1.54848e-17)
(1.013 -0.0886911 -4.85177e-17)
(0.994406 -0.0888589 5.31741e-18)
(1.16524 0.0208177 4.05009e-18)
(1.1861 0.00495694 2.23934e-18)
(1.2058 -0.0147664 5.8822e-18)
(1.21768 -0.0344572 -6.39401e-18)
(1.21924 -0.0494966 -2.87626e-18)
(1.21079 -0.0592718 7.03593e-19)
(1.19564 -0.0636809 3.57838e-18)
(1.17739 -0.0655822 1.58064e-17)
(1.15882 -0.0664431 3.37498e-17)
(1.14215 -0.0676433 -1.54328e-17)
(1.12806 -0.0690324 -1.41786e-17)
(1.11737 -0.0709062 -2.90127e-18)
(1.11005 -0.0733036 1.36961e-17)
(1.10619 -0.0756989 2.02781e-18)
(1.10458 -0.0785445 2.93147e-18)
(1.1037 -0.0812186 1.4927e-17)
(1.10312 -0.083749 1.92858e-17)
(1.10188 -0.0856842 -3.25801e-18)
(1.09964 -0.0871745 -2.59818e-17)
(1.09671 -0.0880184 -1.70011e-17)
(1.09243 -0.0886034 -4.19413e-18)
(1.08645 -0.0888851 4.30692e-18)
(1.07898 -0.0891205 2.03831e-17)
(1.07009 -0.0892255 1.6453e-17)
(1.06025 -0.0891755 -6.33468e-17)
(1.0493 -0.089311 3.86263e-17)
(1.03808 -0.0887164 -1.45019e-17)
(1.02477 -0.0897817 4.55608e-17)
(1.01088 -0.0868693 -5.8965e-17)
(0.993118 -0.0862241 -4.58846e-17)
(1.16124 0.0220887 -6.69973e-18)
(1.18131 0.00658202 -5.33401e-18)
(1.20058 -0.0130266 3.16801e-19)
(1.21254 -0.0330147 1.00013e-19)
(1.21447 -0.0488112 8.27292e-18)
(1.20648 -0.0594309 -1.00481e-17)
(1.19162 -0.0646735 2.9006e-18)
(1.17346 -0.0670394 2.71291e-18)
(1.15483 -0.0680339 -3.11331e-17)
(1.13807 -0.0690235 -2.97596e-17)
(1.12389 -0.0700475 -1.90739e-17)
(1.11311 -0.0714287 4.35871e-18)
(1.10575 -0.073275 -4.77423e-17)
(1.10188 -0.0751704 7.5557e-18)
(1.10028 -0.0775824 1.12028e-17)
(1.09945 -0.0799112 3.05661e-17)
(1.09897 -0.0821849 9.50715e-19)
(1.09784 -0.0839617 -1.91531e-17)
(1.09574 -0.085377 7.90555e-18)
(1.09296 -0.086218 5.84701e-18)
(1.08882 -0.0868446 3.62681e-17)
(1.08298 -0.087189 1.83584e-17)
(1.07566 -0.0874871 2.57213e-17)
(1.06695 -0.0876408 -9.17522e-17)
(1.05728 -0.0876231 1.06925e-16)
(1.04656 -0.0877261 -5.87369e-18)
(1.03552 -0.0871356 -6.93321e-17)
(1.02257 -0.0879214 8.4902e-18)
(1.00887 -0.0850476 4.61144e-17)
(0.991879 -0.0837106 3.1946e-17)
(1.15737 0.023154 4.16346e-18)
(1.17666 0.00804678 5.34287e-18)
(1.19548 -0.0113515 3.0109e-18)
(1.2075 -0.0315217 2.04547e-18)
(1.2098 -0.047964 -1.01336e-17)
(1.20229 -0.0593741 1.55323e-17)
(1.18775 -0.0654266 -6.44775e-18)
(1.16973 -0.0682963 3.38002e-17)
(1.1511 -0.0694779 1.54131e-17)
(1.13428 -0.0703312 2.09562e-17)
(1.12001 -0.0710541 2.17961e-17)
(1.10915 -0.0719974 7.86851e-18)
(1.10172 -0.0733301 -1.17508e-17)
(1.0978 -0.0747456 1.53943e-17)
(1.09617 -0.0767277 3.7441e-17)
(1.09536 -0.078706 -3.18813e-17)
(1.09495 -0.0807121 9.02754e-18)
(1.09392 -0.08232 7.24115e-18)
(1.09194 -0.0836472 3.24914e-18)
(1.08929 -0.0844766 2.61058e-17)
(1.08528 -0.0851364 -4.96498e-17)
(1.07959 -0.0855346 -4.95043e-17)
(1.07242 -0.0858865 -2.88858e-17)
(1.06389 -0.0860817 3.95266e-17)
(1.05441 -0.0860899 -6.55338e-17)
(1.04392 -0.0861584 -1.6201e-17)
(1.03306 -0.0855656 1.32885e-17)
(1.02046 -0.0860931 -8.55832e-18)
(1.00699 -0.0832403 6.29098e-17)
(0.990714 -0.081315 -9.19592e-18)
(1.15363 0.0240444 -2.02123e-18)
(1.17212 0.00939085 3.83919e-18)
(1.19047 -0.00970142 -2.71297e-18)
(1.20251 -0.0299538 1.73846e-18)
(1.20518 -0.0469468 1.1134e-17)
(1.19813 -0.059098 -1.31973e-17)
(1.18394 -0.0659346 -1.45974e-18)
(1.16606 -0.0693307 -4.21975e-17)
(1.14743 -0.0707379 -2.44255e-17)
(1.13056 -0.0715104 2.34069e-17)
(1.11622 -0.0719819 -8.57097e-18)
(1.10527 -0.0725345 -2.22857e-17)
(1.09779 -0.0733943 3.21115e-17)
(1.09382 -0.0743568 -1.41871e-17)
(1.09216 -0.0759255 -4.73504e-17)
(1.09138 -0.0775632 -1.77154e-17)
(1.09103 -0.0793061 -3.51086e-17)
(1.09009 -0.0807444 1.84563e-17)
(1.08823 -0.0819803 -1.58358e-17)
(1.0857 -0.0827891 -2.28375e-17)
(1.08183 -0.0834721 3.0226e-17)
(1.07628 -0.0839158 1.18455e-17)
(1.06928 -0.0843138 2.96842e-18)
(1.06093 -0.0845435 2.3294e-17)
(1.05164 -0.084572 2.79943e-17)
(1.04138 -0.0846046 5.77686e-17)
(1.03071 -0.0840033 2.79626e-18)
(1.01845 -0.0842924 7.24548e-18)
(1.00523 -0.0814459 -1.46325e-17)
(0.989629 -0.0790289 2.24355e-17)
(1.15004 0.02474 -4.4275e-20)
(1.16775 0.0105673 -1.0287e-19)
(1.18562 -0.00815956 -6.08891e-18)
(1.19766 -0.0284056 -3.90922e-18)
(1.20067 -0.0458498 3.46893e-18)
(1.1941 -0.0586841 1.9891e-18)
(1.18028 -0.0662689 2.11558e-17)
(1.1626 -0.0702025 1.77778e-17)
(1.14403 -0.0718641 3.70531e-17)
(1.12713 -0.072606 -9.06826e-18)
(1.11273 -0.0728739 2.41197e-17)
(1.10169 -0.0730816 -7.6266e-18)
(1.09413 -0.0735051 1.1703e-17)
(1.09008 -0.0740392 2.71366e-17)
(1.08837 -0.0752059 3.09449e-17)
(1.08758 -0.0765062 2.0613e-17)
(1.08725 -0.0779832 2.75566e-17)
(1.08639 -0.0792476 -4.88585e-17)
(1.08463 -0.0803833 8.84096e-18)
(1.08222 -0.081165 -2.44266e-17)
(1.07847 -0.0818638 7.82848e-18)
(1.07307 -0.0823443 1.19177e-17)
(1.06622 -0.0827796 2.23953e-17)
(1.05806 -0.0830364 2.33495e-17)
(1.04896 -0.0830788 1.48118e-17)
(1.03894 -0.0830733 -3.2238e-17)
(1.02848 -0.0824582 8.20089e-18)
(1.01655 -0.0825276 -2.06448e-17)
(1.00362 -0.0796754 -5.37661e-17)
(0.988638 -0.0768484 -4.35808e-17)
(1.14658 0.0252813 8.46575e-19)
(1.16351 0.0116266 -1.76466e-18)
(1.18089 -0.00667598 -3.62865e-21)
(1.19288 -0.0268422 -7.99335e-18)
(1.19622 -0.0446533 -1.13875e-17)
(1.19011 -0.0581162 4.56466e-18)
(1.17668 -0.06641 -5.45127e-18)
(1.15921 -0.070879 -2.01276e-17)
(1.1407 -0.0728123 -3.59271e-17)
(1.12379 -0.0735596 -1.64284e-17)
(1.10934 -0.0736618 -6.46932e-18)
(1.09822 -0.0735649 1.47761e-17)
(1.0906 -0.0735945 9.67989e-18)
(1.08647 -0.0737322 -5.09237e-17)
(1.0847 -0.0745204 -1.43908e-17)
(1.08389 -0.0755004 -2.54588e-17)
(1.0836 -0.0767218 -2.42637e-17)
(1.0828 -0.0778158 3.36481e-18)
(1.08113 -0.0788518 3.50417e-17)
(1.07883 -0.0795998 1.94247e-17)
(1.07521 -0.0803051 -1.91135e-17)
(1.06994 -0.0808144 -2.79411e-17)
(1.06326 -0.081279 -5.48395e-17)
(1.05529 -0.0815557 -5.96335e-17)
(1.04638 -0.081606 2.06031e-17)
(1.0366 -0.081561 1.80671e-17)
(1.02635 -0.0809263 6.54928e-17)
(1.01476 -0.0807934 6.18521e-18)
(1.00212 -0.0779259 2.3692e-17)
(0.987737 -0.0747648 2.25512e-17)
(1.14329 0.0256562 -2.45944e-18)
(1.15946 0.0125214 -7.50765e-18)
(1.17632 -0.00533132 4.0211e-18)
(1.18825 -0.0253517 4.30592e-18)
(1.1919 -0.043441 -5.30838e-18)
(1.18625 -0.0574656 -7.47646e-18)
(1.17322 -0.0664199 -1.59316e-17)
(1.15601 -0.0714143 2.68551e-17)
(1.13763 -0.0736315 -1.47187e-18)
(1.12074 -0.0744179 -1.47848e-18)
(1.10625 -0.074391 -1.50102e-17)
(1.09506 -0.0740297 1.21649e-17)
(1.08736 -0.0737018 2.89139e-18)
(1.08313 -0.0734721 1.69496e-17)
(1.08127 -0.0738998 2.51923e-17)
(1.08041 -0.0745691 1.7492e-17)
(1.08011 -0.0755384 4.60866e-17)
(1.07935 -0.076462 2.37481e-17)
(1.07775 -0.0773925 1.7915e-17)
(1.07555 -0.0781021 -5.04738e-18)
(1.07204 -0.0788079 1.78794e-17)
(1.06692 -0.0793371 3.01168e-17)
(1.0604 -0.0798222 4.67753e-18)
(1.05261 -0.080111 -1.01707e-17)
(1.04391 -0.0801626 -1.38658e-17)
(1.03436 -0.0800752 -1.7295e-17)
(1.02433 -0.0794163 -6.07005e-18)
(1.01307 -0.0790976 -2.74647e-17)
(1.00075 -0.0762068 -1.4729e-17)
(0.986932 -0.0727741 -2.10951e-17)
(1.14013 0.0259047 4.36054e-18)
(1.15555 0.0132991 4.57061e-18)
(1.17189 -0.00406814 1.44474e-18)
(1.18371 -0.0238822 2.90657e-18)
(1.18763 -0.0421746 1.3883e-18)
(1.18243 -0.0566983 7.04801e-18)
(1.16982 -0.0662654 1.16398e-17)
(1.15287 -0.0717684 9.31653e-18)
(1.13461 -0.0742767 -4.43358e-18)
(1.11776 -0.0751276 1.03673e-17)
(1.10326 -0.0750032 2.76586e-17)
(1.09201 -0.0744149 -4.0031e-19)
(1.08424 -0.0737697 -5.96229e-18)
(1.07992 -0.073206 -2.03544e-17)
(1.07797 -0.0733006 -2.77339e-17)
(1.07707 -0.0736802 -1.36865e-18)
(1.07677 -0.0744111 -4.36863e-17)
(1.07603 -0.075171 1.96934e-17)
(1.0745 -0.0759985 -2.45565e-17)
(1.07238 -0.0766643 3.11106e-17)
(1.06899 -0.077362 1.30622e-17)
(1.064 -0.0779038 -1.60274e-17)
(1.05763 -0.0784015 3.31635e-17)
(1.05004 -0.0786955 6.61403e-17)
(1.04154 -0.0787424 -8.46322e-17)
(1.03223 -0.0786111 -4.44249e-18)
(1.02242 -0.0779231 -1.65549e-17)
(1.01148 -0.0774337 -2.98754e-17)
(0.999487 -0.0745143 -2.71328e-17)
(0.986215 -0.0708683 3.09127e-17)
(1.13713 0.0260164 -3.0248e-18)
(1.15182 0.0139217 6.19691e-18)
(1.16763 -0.00295031 5.91849e-19)
(1.17933 -0.022502 8.63305e-18)
(1.1835 -0.0409156 1.0664e-17)
(1.17874 -0.0558668 -1.04476e-17)
(1.16656 -0.0659956 9.91494e-19)
(1.14992 -0.0719912 -3.76224e-17)
(1.13184 -0.0747998 3.03255e-17)
(1.11505 -0.075744 -1.34204e-17)
(1.10054 -0.075555 3.67854e-18)
(1.08925 -0.0747748 4.20604e-18)
(1.0814 -0.0738454 -2.40983e-17)
(1.07697 -0.0729749 1.78392e-17)
(1.07491 -0.0727547 -2.72516e-17)
(1.07394 -0.0728561 3.24478e-18)
(1.07359 -0.0733551 1.50574e-17)
(1.07287 -0.0739535 -1.26549e-18)
(1.07138 -0.0746742 -4.63793e-18)
(1.06934 -0.0752925 -9.78407e-18)
(1.06605 -0.0759767 -4.17777e-17)
(1.06119 -0.0765229 6.91287e-18)
(1.05498 -0.0770252 4.34479e-18)
(1.04757 -0.0773172 2.19523e-18)
(1.03927 -0.0773532 1.82098e-17)
(1.0302 -0.0771754 1.42558e-17)
(1.02062 -0.0764547 -1.23097e-17)
(1.00999 -0.0758084 7.34828e-17)
(0.998336 -0.0728564 3.15883e-17)
(0.985588 -0.0690439 -3.2638e-17)
(1.13426 0.0260255 -1.38405e-18)
(1.14823 0.0144388 -8.50907e-18)
(1.1635 -0.00191399 4.03843e-19)
(1.17505 -0.0211509 -8.80916e-18)
(1.17944 -0.0396161 -1.24492e-17)
(1.1751 -0.0549314 1.78985e-17)
(1.16334 -0.0655745 -1.17199e-17)
(1.14701 -0.0720442 3.07539e-17)
(1.12912 -0.0751602 -8.33711e-19)
(1.11241 -0.0762219 3.11581e-17)
(1.09791 -0.0759987 -4.98865e-17)
(1.08658 -0.0750602 2.11244e-17)
(1.07866 -0.0738834 -2.55266e-17)
(1.07414 -0.0727363 1.94275e-17)
(1.07198 -0.0722268 5.90772e-17)
(1.07094 -0.0720701 -2.45344e-17)
(1.07056 -0.0723509 1.73049e-17)
(1.06984 -0.0727946 -1.29813e-17)
(1.06839 -0.0734121 -7.76854e-19)
(1.06641 -0.0739788 -2.04012e-17)
(1.06321 -0.0746421 -1.3472e-20)
(1.05848 -0.075186 9.82466e-18)
(1.05242 -0.0756858 1.20892e-18)
(1.0452 -0.0759694 -8.01155e-17)
(1.0371 -0.0759891 7.12499e-17)
(1.02826 -0.0757635 3.4242e-17)
(1.01891 -0.0750062 3.95157e-17)
(1.0086 -0.074216 -5.3833e-17)
(0.997285 -0.0712291 -1.43221e-17)
(0.985041 -0.0672938 1.13836e-17)
(1.13154 0.0259252 5.72753e-18)
(1.14483 0.014819 3.57757e-18)
(1.15955 -0.00101756 -2.40397e-18)
(1.17092 -0.0198969 -3.95773e-18)
(1.17551 -0.0383425 4.53187e-18)
(1.17159 -0.0539528 -3.10235e-18)
(1.16027 -0.0650598 1.2649e-17)
(1.14429 -0.071984 -1.32231e-17)
(1.12661 -0.0754139 1.14086e-17)
(1.11001 -0.0766173 -4.74147e-17)
(1.09553 -0.076388 2.46482e-17)
(1.08417 -0.0753223 -7.08889e-18)
(1.07619 -0.0739272 3.59088e-17)
(1.07154 -0.0725285 3.08041e-18)
(1.06926 -0.0717472 -4.24306e-18)
(1.06813 -0.0713434 3.95494e-17)
(1.06769 -0.0714124 -1.64191e-19)
(1.06695 -0.0717043 -1.8683e-17)
(1.06553 -0.0722156 4.32932e-18)
(1.0636 -0.0727281 -2.45566e-18)
(1.06048 -0.0733661 3.25898e-17)
(1.05587 -0.0739004 -1.65547e-17)
(1.04996 -0.0743904 -8.76201e-18)
(1.04292 -0.074659 5.84623e-17)
(1.03502 -0.0746569 -2.58144e-17)
(1.02642 -0.0743812 -6.29461e-17)
(1.0173 -0.0735845 -1.02947e-16)
(1.0073 -0.0726625 1.56985e-17)
(0.996329 -0.0696392 3.08336e-17)
(0.984574 -0.065615 -1.21493e-17)
(1.12895 0.025747 -1.00123e-18)
(1.14156 0.0151127 4.47378e-18)
(1.15574 -0.000198253 -1.83881e-18)
(1.16691 -0.018685 7.41494e-19)
(1.17166 -0.0370562 -3.67165e-18)
(1.16812 -0.0529037 -3.91621e-19)
(1.15724 -0.064427 -2.84696e-18)
(1.1416 -0.0717801 -1.22042e-17)
(1.12416 -0.0755236 -3.72032e-17)
(1.10766 -0.0768851 8.6023e-18)
(1.09323 -0.0766749 3.52983e-17)
(1.08185 -0.0755118 -3.20921e-17)
(1.07381 -0.0739317 2.70063e-17)
(1.06906 -0.0723099 -2.37407e-17)
(1.06667 -0.0712812 -5.39944e-18)
(1.06546 -0.0706496 -2.54861e-17)
(1.06496 -0.0705199 -3.72747e-17)
(1.0642 -0.0706666 3.76882e-19)
(1.06279 -0.0710755 -3.86161e-18)
(1.06091 -0.0715299 4.55645e-19)
(1.05787 -0.0721362 -8.61878e-18)
(1.05337 -0.0726552 2.44895e-17)
(1.0476 -0.0731293 -3.04004e-17)
(1.04074 -0.0733777 -1.20827e-17)
(1.03304 -0.0733493 -3.13982e-17)
(1.02466 -0.0730226 -1.23312e-17)
(1.01578 -0.0721837 2.89243e-18)
(1.00608 -0.071141 1.8278e-17)
(0.995455 -0.0680821 -5.79493e-17)
(0.984173 -0.064001 1.26592e-17)
(1.1265 0.0254848 8.24374e-19)
(1.13845 0.0152954 -2.20571e-18)
(1.15209 0.000498922 4.56167e-18)
(1.16305 -0.017572 9.09226e-18)
(1.16794 -0.035815 1.36758e-17)
(1.16478 -0.0518378 -1.16145e-17)
(1.15434 -0.0637271 -4.42274e-18)
(1.13908 -0.0714827 4.23156e-18)
(1.12189 -0.0755386 1.48777e-17)
(1.10554 -0.0770745 -1.11823e-17)
(1.09116 -0.0769066 -2.44435e-17)
(1.07978 -0.0756728 1.71178e-17)
(1.07167 -0.0739344 -1.60472e-17)
(1.06681 -0.0721127 -1.58494e-18)
(1.06428 -0.0708536 -2.04522e-17)
(1.06296 -0.0700058 4.06298e-19)
(1.06239 -0.0696849 4.46915e-17)
(1.0616 -0.06969 2.58844e-17)
(1.06018 -0.0699942 -2.72105e-18)
(1.05834 -0.0703886 1.6622e-17)
(1.05537 -0.0709594 -1.35821e-17)
(1.05097 -0.0714569 9.21331e-18)
(1.04534 -0.071909 9.20549e-18)
(1.03865 -0.0721318 -3.50744e-18)
(1.03115 -0.0720724 1.70121e-17)
(1.02299 -0.0716932 3.17214e-17)
(1.01435 -0.0708106 8.33695e-17)
(1.00495 -0.0696573 4.23295e-17)
(0.994661 -0.0665638 2.31195e-17)
(0.983839 -0.0624498 -1.56632e-17)
(1.12416 0.0251641 -3.81318e-18)
(1.13547 0.0154101 3.13528e-18)
(1.14857 0.00113489 -6.54633e-18)
(1.1593 -0.016501 -1.33628e-18)
(1.1643 -0.0345751 -3.83839e-18)
(1.16149 -0.0507224 9.18843e-18)
(1.15147 -0.0629312 -9.27401e-19)
(1.13658 -0.0710592 -8.86544e-18)
(1.11967 -0.0754205 1.74516e-17)
(1.10347 -0.0771415 4.53084e-17)
(1.08916 -0.0770375 7.03385e-18)
(1.07778 -0.07576 -1.8468e-17)
(1.06963 -0.073894 -2.16871e-17)
(1.06466 -0.0718994 -1.68389e-17)
(1.06202 -0.070434 6.39021e-18)
(1.0606 -0.0693891 2.72809e-17)
(1.05996 -0.0688903 -1.90624e-17)
(1.05912 -0.0687607 -4.17292e-18)
(1.0577 -0.0689645 -2.42282e-17)
(1.05589 -0.069296 -1.0256e-17)
(1.05298 -0.0698257 1.60169e-17)
(1.04868 -0.0702968 -3.53787e-17)
(1.04319 -0.070722 2.86549e-17)
(1.03666 -0.0709146 -5.18067e-17)
(1.02935 -0.0708208 -5.96364e-18)
(1.02141 -0.0703885 -6.45364e-18)
(1.013 -0.0694604 -7.31099e-17)
(1.00389 -0.0682059 -5.54362e-18)
(0.993939 -0.0650801 3.52619e-17)
(0.983559 -0.0609558 4.62009e-17)
(1.12195 0.0247823 8.79638e-19)
(1.13265 0.0154309 -5.70693e-18)
(1.14522 0.00165996 8.5389e-18)
(1.1557 -0.0155299 -4.11303e-18)
(1.16079 -0.0333927 -4.68634e-18)
(1.15831 -0.049609 -1.28543e-17)
(1.14873 -0.0620895 1.19838e-17)
(1.13424 -0.0705605 3.73299e-17)
(1.11763 -0.0752199 -3.02611e-17)
(1.10161 -0.0771348 -9.18325e-18)
(1.08739 -0.0771111 -9.3325e-18)
(1.07602 -0.0758131 2.01257e-17)
(1.06781 -0.0738436 -8.49531e-18)
(1.06274 -0.0716989 5.5135e-17)
(1.05996 -0.0700453 -7.38849e-18)
(1.05842 -0.0688158 -2.76874e-17)
(1.05768 -0.0681478 1.75607e-17)
(1.05679 -0.0678879 -3.44989e-17)
(1.05536 -0.06799 3.32702e-17)
(1.05356 -0.0682574 -3.37615e-18)
(1.05071 -0.0687431 -1.79333e-17)
(1.04651 -0.0691823 7.1977e-18)
(1.04114 -0.069575 -4.00753e-17)
(1.03478 -0.069733 3.40398e-17)
(1.02765 -0.0696008 -2.69388e-17)
(1.01993 -0.0691143 -2.22271e-18)
(1.01174 -0.0681397 6.20662e-17)
(1.00291 -0.0667925 -9.43029e-17)
(0.993292 -0.0636365 6.43296e-18)
(0.983336 -0.059518 -2.10403e-17)
(1.11983 0.0243595 3.13989e-20)
(1.12995 0.0153921 4.40326e-18)
(1.14199 0.0021219 -6.76541e-18)
(1.1522 -0.014608 6.09616e-18)
(1.15734 -0.0322266 -8.1994e-18)
(1.15517 -0.0484674 2.8166e-18)
(1.14601 -0.0611776 2.66731e-18)
(1.13191 -0.0699613 -3.9783e-17)
(1.11561 -0.0749073 3.2636e-17)
(1.09978 -0.0770196 2.71946e-18)
(1.08566 -0.0770906 8.13159e-18)
(1.07433 -0.0757932 -2.29351e-18)
(1.06609 -0.0737471 1.1603e-17)
(1.06091 -0.0714781 -4.91493e-17)
(1.05801 -0.0696598 -2.79852e-17)
(1.05637 -0.0682649 -1.80582e-17)
(1.05554 -0.0674407 -3.01287e-17)
(1.05459 -0.0670577 5.0669e-17)
(1.05314 -0.0670628 -1.90145e-18)
(1.05136 -0.0672638 6.49683e-18)
(1.04856 -0.0677006 -3.46292e-18)
(1.04444 -0.0681038 -2.56705e-19)
(1.0392 -0.0684599 5.14561e-17)
(1.033 -0.0685794 3.54568e-17)
(1.02605 -0.0684061 8.41392e-17)
(1.01853 -0.0678652 -3.69445e-17)
(1.01057 -0.0668431 -3.83808e-17)
(1.00202 -0.0654113 1.01928e-16)
(0.992718 -0.0622286 -6.6236e-17)
(0.983164 -0.0581321 3.0675e-18)
(1.11783 0.0238937 -1.52835e-19)
(1.12739 0.0152749 -4.40757e-18)
(1.13891 0.0024846 5.70611e-18)
(1.14884 -0.0137757 -4.88295e-18)
(1.15402 -0.0311156 5.791e-18)
(1.15214 -0.0473348 7.21922e-19)
(1.14339 -0.060235 -1.64945e-17)
(1.12971 -0.069306 3.97168e-17)
(1.11375 -0.0745305 -2.23658e-17)
(1.09813 -0.0768448 -2.63421e-17)
(1.08413 -0.077022 2.45596e-18)
(1.07283 -0.0757414 2.62931e-17)
(1.06456 -0.0736376 8.69241e-18)
(1.05928 -0.071263 4.38659e-17)
(1.05625 -0.069296 3.89556e-17)
(1.05447 -0.0677482 5.15737e-17)
(1.05354 -0.0667775 5.52605e-18)
(1.05252 -0.0662768 -3.72629e-17)
(1.05104 -0.0661846 -1.82994e-18)
(1.04926 -0.0663186 9.72696e-18)
(1.04651 -0.0667044 2.24773e-17)
(1.04248 -0.0670669 2.69153e-18)
(1.03736 -0.067382 -2.53855e-17)
(1.03131 -0.0674596 -2.9863e-17)
(1.02454 -0.0672421 -4.2039e-17)
(1.01723 -0.0666462 -3.29603e-18)
(1.00949 -0.0655767 1.36176e-17)
(1.0012 -0.0640675 -5.87267e-17)
(0.992217 -0.0608612 3.98015e-17)
(0.983048 -0.0567977 9.85659e-18)
(1.11592 0.0234007 -1.26165e-18)
(1.12494 0.0151115 1.72725e-18)
(1.13595 0.00279748 -4.29523e-18)
(1.14559 -0.0129808 -4.19039e-18)
(1.15077 -0.0300162 1.09036e-17)
(1.14915 -0.0461783 4.99801e-18)
(1.1408 -0.0592344 3.62573e-18)
(1.12752 -0.0685674 -1.65801e-17)
(1.11189 -0.0740597 8.48325e-18)
(1.0965 -0.076578 3.84556e-17)
(1.08264 -0.0768727 -1.27901e-17)
(1.07139 -0.0756255 -2.35362e-17)
(1.06311 -0.0734848 -1.29309e-17)
(1.05774 -0.071025 -9.15832e-18)
(1.05459 -0.06893 -2.35455e-17)
(1.0527 -0.0672468 -4.24993e-17)
(1.05166 -0.0661422 -2.46928e-19)
(1.05056 -0.0655312 2.08886e-17)
(1.04905 -0.0653471 1.5875e-17)
(1.04727 -0.065413 -1.19022e-18)
(1.04456 -0.0657442 8.24448e-18)
(1.04062 -0.0660631 -1.35445e-17)
(1.03562 -0.0663339 1.57606e-17)
(1.02972 -0.0663668 -7.84317e-19)
(1.02313 -0.0661031 8.48249e-18)
(1.01602 -0.0654528 5.91266e-17)
(1.00849 -0.0643355 1.13013e-17)
(1.00047 -0.0627559 3.15474e-18)
(0.991787 -0.0595294 1.80155e-17)
(0.982981 -0.055511 -1.4679e-17)
(1.11411 0.0228804 2.20489e-18)
(1.12261 0.0148875 -1.97117e-18)
(1.13312 0.00302414 1.6042e-18)
(1.14247 -0.0122712 6.03651e-18)
(1.14763 -0.0289774 2.50611e-18)
(1.14626 -0.0450438 -4.94054e-19)
(1.13831 -0.0582196 6.37241e-18)
(1.12544 -0.0677883 -2.01258e-17)
(1.11017 -0.0735365 3.67329e-18)
(1.09502 -0.0762578 -2.66081e-17)
(1.0813 -0.0766758 4.71632e-18)
(1.07012 -0.0754748 -4.02753e-18)
(1.06182 -0.0733125 1.45079e-17)
(1.05636 -0.0707848 -3.31846e-17)
(1.05308 -0.0685774 1.42786e-17)
(1.05106 -0.0667715 -2.03739e-18)
(1.04991 -0.0655432 -1.3375e-18)
(1.04873 -0.0648282 -3.23244e-18)
(1.04717 -0.0645529 -2.1911e-17)
(1.04538 -0.0645513 -1.54426e-17)
(1.0427 -0.0648264 -7.45211e-18)
(1.03884 -0.065098 3.21564e-18)
(1.03395 -0.065321 -2.51763e-17)
(1.02821 -0.0653061 9.01012e-18)
(1.02179 -0.064994 -1.1007e-17)
(1.01488 -0.0642889 -2.44009e-17)
(1.00757 -0.0631244 -2.83695e-17)
(0.999797 -0.0614808 1.1825e-17)
(0.991419 -0.0582371 1.87759e-18)
(0.982966 -0.0542711 7.02133e-18)
(1.11237 0.0223445 -9.10244e-19)
(1.12039 0.0146326 -1.97967e-18)
(1.1304 0.00320456 -6.02043e-18)
(1.13944 -0.0116104 5.79881e-18)
(1.14456 -0.0279729 -9.44208e-18)
(1.14341 -0.0439132 -3.83724e-18)
(1.13584 -0.0571734 4.015e-18)
(1.12338 -0.0669469 9.55709e-18)
(1.10845 -0.0729323 -1.89573e-17)
(1.09355 -0.0758501 6.2921e-18)
(1.07999 -0.0763963 9.15984e-18)
(1.06889 -0.0752533 1.9061e-17)
(1.06059 -0.0730891 1.1088e-17)
(1.05506 -0.0705144 5.08863e-18)
(1.05166 -0.0682157 -1.07527e-17)
(1.04953 -0.0663049 4.15298e-18)
(1.04826 -0.0649659 -8.37093e-18)
(1.047 -0.0641548 -1.97338e-18)
(1.04539 -0.0637943 1.15501e-17)
(1.04358 -0.0637248 8.77614e-18)
(1.04093 -0.0639412 -1.1835e-17)
(1.03714 -0.0641629 2.63507e-17)
(1.03236 -0.0643352 -2.33759e-18)
(1.02676 -0.0642704 -8.36635e-18)
(1.02051 -0.0639082 3.1141e-18)
(1.0138 -0.063149 3.86487e-17)
(1.00671 -0.0619374 3.57137e-17)
(0.999186 -0.0602358 5.8764e-18)
(0.991102 -0.0569789 -5.77254e-17)
(0.98299 -0.0530741 4.5949e-19)
(1.11071 0.0217932 2.96645e-18)
(1.11826 0.0143383 1.74313e-18)
(1.12781 0.00331487 4.61674e-18)
(1.13653 -0.0110322 -1.25132e-17)
(1.1416 -0.0270386 9.26701e-18)
(1.14066 -0.042821 9.0454e-18)
(1.13345 -0.0561291 -7.01305e-18)
(1.12141 -0.0660764 1.10084e-17)
(1.10686 -0.0722803 -1.01496e-17)
(1.09222 -0.0753874 -5.01676e-18)
(1.07883 -0.0760636 -2.42326e-17)
(1.06781 -0.0749879 -2.03238e-18)
(1.05952 -0.0728357 -2.51891e-17)
(1.05391 -0.0702305 1.48428e-17)
(1.05038 -0.0678564 5.36282e-18)
(1.04812 -0.0658548 1.15557e-17)
(1.04674 -0.064417 2.45881e-17)
(1.04538 -0.0635173 1.73936e-17)
(1.04372 -0.0630739 -1.54865e-17)
(1.04189 -0.0629376 -1.67452e-17)
(1.03925 -0.0630945 1.18203e-17)
(1.03553 -0.0632633 -1.76279e-17)
(1.03085 -0.0633821 2.78684e-17)
(1.02539 -0.0632648 1.74174e-17)
(1.0193 -0.0628508 2.19126e-18)
(1.01278 -0.0620372 -3.19765e-17)
(1.0059 -0.0607795 -4.22158e-17)
(0.998624 -0.059025 8.31145e-18)
(0.990827 -0.0557584 2.8726e-17)
(0.983051 -0.0519187 -1.73667e-17)
(1.10912 0.0212328 -2.39284e-18)
(1.11623 0.0140264 -1.43739e-18)
(1.12531 0.00339583 -5.09698e-19)
(1.13371 -0.0104925 -4.11392e-18)
(1.1387 -0.0261381 -1.84662e-17)
(1.13794 -0.0417398 1.94805e-18)
(1.13109 -0.0550632 1.69153e-18)
(1.11945 -0.0651526 8.95462e-18)
(1.10526 -0.0715532 8.25211e-18)
(1.0909 -0.0748407 -9.27728e-18)
(1.0777 -0.0756496 1.04632e-17)
(1.06677 -0.074652 5.93168e-18)
(1.05849 -0.0725285 1.21884e-17)
(1.05282 -0.0699111 2.00835e-18)
(1.04919 -0.0674819 -2.21382e-17)
(1.04681 -0.0654072 6.8628e-18)
(1.04532 -0.0638841 7.68717e-19)
(1.04386 -0.0629047 -1.26926e-17)
(1.04215 -0.0623849 -1.99831e-18)
(1.04029 -0.0621827 -1.03576e-17)
(1.03767 -0.0622784 8.13727e-18)
(1.034 -0.0623927 8.43987e-19)
(1.02942 -0.0624559 -1.74023e-17)
(1.02408 -0.0622844 -6.28235e-18)
(1.01816 -0.0618172 -4.92817e-17)
(1.01181 -0.0609499 -6.78274e-18)
(1.00514 -0.0596464 3.13315e-17)
(0.998106 -0.0578436 -2.79151e-17)
(0.990587 -0.0545709 -2.82605e-18)
(0.983136 -0.0508011 2.83397e-19)
(1.10759 0.0206635 -3.18283e-18)
(1.11429 0.0136848 4.70002e-18)
(1.12292 0.00342488 3.72262e-18)
(1.13099 -0.0100219 1.21332e-17)
(1.1359 -0.0253049 1.73085e-17)
(1.13531 -0.0407037 -9.26457e-18)
(1.1288 -0.0540108 1.17463e-18)
(1.11757 -0.0642117 -3.28798e-17)
(1.10377 -0.0707872 3.70336e-17)
(1.08969 -0.0742438 2.4579e-17)
(1.07668 -0.0751832 -6.61834e-18)
(1.06586 -0.0742711 -4.41556e-17)
(1.0576 -0.0721882 2.08993e-17)
(1.05186 -0.0695744 7.76193e-18)
(1.04811 -0.0671057 4.41773e-17)
(1.04561 -0.0649721 -1.17739e-17)
(1.044 -0.0633758 -1.52683e-17)
(1.04245 -0.0623249 -5.94135e-19)
(1.04067 -0.0617316 1.10122e-17)
(1.03879 -0.0614654 3.18604e-17)
(1.03617 -0.0614999 -1.20246e-17)
(1.03255 -0.0615573 1.78404e-17)
(1.02806 -0.0615625 1.66222e-18)
(1.02285 -0.0613347 -1.97839e-17)
(1.01708 -0.0608129 3.38903e-17)
(1.01091 -0.0598915 -2.45497e-17)
(1.00443 -0.0585431 -2.93804e-17)
(0.99763 -0.0566963 -3.89925e-17)
(0.990379 -0.0534203 2.61695e-17)
(0.983243 -0.049721 5.83454e-18)
(1.10613 0.020091 3.342e-18)
(1.11243 0.0133288 -4.28074e-18)
(1.12061 0.00343038 -3.26811e-18)
(1.12836 -0.00958852 -1.06914e-17)
(1.13316 -0.0245117 -1.77246e-17)
(1.13271 -0.0396925 -1.92883e-19)
(1.12653 -0.0529556 -8.23005e-19)
(1.1157 -0.0632376 5.62597e-18)
(1.10227 -0.0699638 -2.03916e-17)
(1.08848 -0.0735762 -1.01117e-17)
(1.07568 -0.0746441 -2.04807e-17)
(1.06498 -0.0738239 9.66621e-18)
(1.05675 -0.0717966 -4.98324e-17)
(1.05096 -0.0692043 -2.17791e-18)
(1.04711 -0.0667153 -3.86683e-17)
(1.0445 -0.0645392 1.00843e-17)
(1.04277 -0.062882 3.04146e-17)
(1.04113 -0.0617677 -5.53707e-18)
(1.03929 -0.0611076 4.07233e-18)
(1.03737 -0.0607788 6.18172e-18)
(1.03476 -0.0607509 -1.77346e-17)
(1.03119 -0.0607501 1.17983e-17)
(1.02679 -0.0606956 -4.22133e-18)
(1.0217 -0.0604101 3.38107e-17)
(1.01607 -0.0598327 3.41169e-19)
(1.01007 -0.058858 3.25752e-17)
(1.00378 -0.057465 1.5315e-17)
(0.9972 -0.0555776 5.95663e-17)
(0.990206 -0.0523024 -5.30795e-17)
(0.983368 -0.0486757 -3.04624e-17)
(1.10471 0.0195195 -2.33372e-18)
(1.11064 0.0129516 2.50903e-18)
(1.1184 0.00339085 -4.87284e-18)
(1.12582 -0.00921891 1.27258e-17)
(1.1305 -0.0237825 1.66531e-17)
(1.13019 -0.0387274 1.35293e-17)
(1.12433 -0.051919 1.11143e-17)
(1.1139 -0.0622542 1.56962e-17)
(1.10086 -0.0691106 6.8945e-18)
(1.08737 -0.0728671 -2.09949e-17)
(1.07478 -0.0740607 5.00539e-17)
(1.0642 -0.0733371 -5.22889e-18)
(1.056 -0.0713751 2.61826e-17)
(1.05016 -0.0688168 -2.35179e-17)
(1.04621 -0.066321 3.73321e-17)
(1.04348 -0.0641154 -1.65906e-19)
(1.04163 -0.0624089 -2.71295e-17)
(1.03989 -0.0612393 -6.69409e-18)
(1.03799 -0.0605155 -1.81885e-17)
(1.03603 -0.0601259 -3.5616e-17)
(1.03343 -0.0600359 3.7529e-17)
(1.02991 -0.0599753 -3.97772e-17)
(1.02559 -0.0598594 1.91071e-17)
(1.02062 -0.0595149 -3.36931e-17)
(1.01513 -0.058881 -3.69311e-17)
(1.00929 -0.0578531 -2.61505e-17)
(1.00318 -0.0564168 6.83709e-18)
(0.996816 -0.0544922 -1.25025e-17)
(0.990069 -0.0512206 1.9176e-17)
(0.983515 -0.047666 -4.48666e-18)
(1.10335 0.0189553 2.96777e-19)
(1.10892 0.0125659 3.03311e-18)
(1.11627 0.00332759 8.27059e-18)
(1.12336 -0.00888392 5.54091e-18)
(1.1279 -0.0230862 -9.23538e-18)
(1.1277 -0.0377787 -5.7624e-18)
(1.12214 -0.0508732 -1.77105e-17)
(1.1121 -0.0612353 -3.04872e-18)
(1.09944 -0.0682021 6.33552e-18)
(1.08625 -0.0720934 3.30107e-17)
(1.07389 -0.0734133 -8.79937e-18)
(1.06344 -0.0727935 1.07201e-17)
(1.05529 -0.0709088 6.75492e-18)
(1.04941 -0.0683986 1.2288e-17)
(1.04538 -0.0659122 -1.97331e-17)
(1.04254 -0.0636913 -9.8564e-18)
(1.04057 -0.0619468 -1.3245e-17)
(1.03874 -0.0607293 -5.1353e-18)
(1.03677 -0.0599482 -1.55171e-18)
(1.03478 -0.0594997 6.58222e-18)
(1.03218 -0.0593474 8.16701e-19)
(1.02871 -0.0592265 1.8217e-17)
(1.02447 -0.0590484 -3.50882e-17)
(1.01961 -0.058644 7.93907e-18)
(1.01425 -0.0579533 3.85436e-17)
(1.00857 -0.0568732 4.04565e-17)
(1.00264 -0.0553943 -1.44043e-17)
(0.996481 -0.0534356 3.12128e-17)
(0.98997 -0.0501706 3.74526e-17)
(0.983681 -0.0466892 2.28843e-17)
(1.10203 0.0184005 2.47127e-18)
(1.10726 0.0121641 -3.53032e-18)
(1.11421 0.00321997 -4.22089e-18)
(1.12098 -0.00860919 -1.48698e-17)
(1.12539 -0.0224473 3.38329e-18)
(1.12529 -0.036869 2.03515e-18)
(1.12002 -0.0498406 6.2806e-18)
(1.11036 -0.0602045 1.00077e-17)
(1.09808 -0.0672632 -1.57561e-17)
(1.08521 -0.0712794 -1.87621e-17)
(1.07307 -0.0727237 -2.76092e-17)
(1.06276 -0.0722134 9.14997e-18)
(1.05466 -0.0704146 -7.30107e-18)
(1.04874 -0.0679641 -1.76661e-17)
(1.04462 -0.0654992 -1.18895e-17)
(1.04168 -0.0632745 -3.80353e-18)
(1.0396 -0.0615022 3.01894e-18)
(1.03767 -0.0602444 -5.29667e-18)
(1.03564 -0.0594092 1.68698e-17)
(1.03361 -0.058904 5.91411e-18)
(1.03101 -0.05869 -6.48152e-18)
(1.02758 -0.0585078 -9.3941e-18)
(1.02342 -0.0582666 3.5213e-17)
(1.01866 -0.0578015 4.72408e-18)
(1.01344 -0.0570535 -2.48349e-17)
(1.00791 -0.0559215 -4.86404e-17)
(1.00215 -0.0544015 4.87398e-17)
(0.996192 -0.0524117 -2.2272e-17)
(0.989909 -0.0491553 -3.22669e-17)
(0.983872 -0.0457463 2.41192e-17)
(1.10074 0.0178548 -1.11815e-18)
(1.10566 0.0117576 -7.49154e-19)
(1.11222 0.00308994 2.6914e-18)
(1.11867 -0.00836865 1.00863e-17)
(1.12293 -0.0218419 -5.34533e-18)
(1.12292 -0.0359793 -8.63744e-19)
(1.11792 -0.0488058 5.52268e-18)
(1.10863 -0.0591481 -8.04848e-18)
(1.09673 -0.0662803 2.19915e-17)
(1.08417 -0.0704115 2.0075e-17)
(1.07226 -0.0719789 7.12443e-18)
(1.0621 -0.0715827 -1.63823e-17)
(1.05405 -0.0698814 -1.07944e-17)
(1.04811 -0.0675042 3.48857e-17)
(1.04392 -0.0650749 -9.93845e-18)
(1.04087 -0.0628584 1.60175e-17)
(1.03869 -0.0610674 9.60724e-18)
(1.03667 -0.0597753 2.839e-18)
(1.03458 -0.0588918 -8.43412e-18)
(1.0325 -0.0583321 1.79633e-17)
(1.02991 -0.0580567 -2.2886e-17)
(1.02652 -0.0578131 2.86047e-17)
(1.02243 -0.057508 -3.12381e-17)
(1.01778 -0.056982 -2.42146e-17)
(1.01269 -0.0561767 7.77591e-18)
(1.00731 -0.0549939 -7.88664e-18)
(1.00171 -0.0534334 -5.83741e-17)
(0.995949 -0.051415 1.73897e-17)
(0.989885 -0.0481701 -5.60291e-18)
(0.984084 -0.0448349 5.96351e-18)
(1.09949 0.0173173 1.44764e-18)
(1.10411 0.0113422 -3.01391e-19)
(1.1103 0.00292848 2.89393e-18)
(1.11643 -0.00817506 -7.49899e-18)
(1.12055 -0.0212847 5.99275e-18)
(1.12061 -0.0351262 -5.81858e-18)
(1.11588 -0.0477885 -3.30518e-18)
(1.10696 -0.0580894 1.07769e-18)
(1.09543 -0.0652796 -6.33257e-18)
(1.08319 -0.0695167 -2.82958e-17)
(1.07152 -0.0712047 -1.96099e-17)
(1.0615 -0.0709254 1.219e-17)
(1.05352 -0.0693274 1.49933e-18)
(1.04756 -0.0670313 1.1154e-17)
(1.04328 -0.0646465 4.1497e-18)
(1.04014 -0.0624475 -1.61989e-17)
(1.03785 -0.0606468 5.51065e-18)
(1.03574 -0.0593269 1.24054e-17)
(1.03358 -0.0583981 -1.92798e-17)
(1.03147 -0.0577858 -1.33543e-17)
(1.02887 -0.0574498 1.4869e-17)
(1.02552 -0.0571445 -3.30696e-17)
(1.02151 -0.0567755 4.09142e-18)
(1.01696 -0.0561883 9.62248e-18)
(1.01199 -0.0553258 3.77308e-17)
(1.00676 -0.0540929 6.20115e-17)
(1.00132 -0.0524937 2.01592e-17)
(0.995746 -0.0504493 -4.29425e-17)
(0.989894 -0.0472176 2.45103e-17)
(0.98432 -0.0439554 -1.57109e-18)
(1.09827 0.0167881 -8.82115e-19)
(1.10261 0.010927 -1.4582e-18)
(1.10844 0.00275675 -2.22086e-18)
(1.11426 -0.00800066 2.58e-18)
(1.11821 -0.0207484 2.92746e-18)
(1.11834 -0.0342864 -8.31956e-18)
(1.11385 -0.0467694 4.04791e-19)
(1.10528 -0.0570123 -1.20266e-17)
(1.09413 -0.0642466 -4.88372e-18)
(1.0822 -0.0685825 1.82676e-17)
(1.07077 -0.0703906 3.38819e-17)
(1.06091 -0.0702322 2.66906e-17)
(1.05299 -0.0687445 6.00645e-18)
(1.04702 -0.066538 -1.17115e-17)
(1.04269 -0.0642081 1.54105e-17)
(1.03946 -0.0620357 2.03799e-17)
(1.03706 -0.0602325 -6.38416e-18)
(1.03487 -0.05889 6.76465e-18)
(1.03265 -0.0579208 -1.3906e-18)
(1.0305 -0.0572583 1.34668e-17)
(1.0279 -0.0568628 -3.29874e-18)
(1.02458 -0.0564964 1.13976e-17)
(1.02064 -0.0560637 9.67773e-18)
(1.01619 -0.0554157 2.30898e-17)
(1.01135 -0.0544967 -3.65995e-17)
(1.00626 -0.0532152 -6.70651e-17)
(1.00098 -0.0515781 3.84643e-18)
(0.995582 -0.04951 6.25041e-17)
(0.989934 -0.0462935 -2.60663e-17)
(0.984574 -0.0431051 -1.9729e-17)
(1.09707 0.0162687 1.15897e-18)
(1.10114 0.0105074 1.57614e-18)
(1.10663 0.00256292 -5.64994e-18)
(1.11215 -0.00786262 -6.38269e-18)
(1.11595 -0.0202527 -5.47125e-18)
(1.11613 -0.0334805 3.91506e-19)
(1.11188 -0.0457702 -1.60697e-19)
(1.10365 -0.0559386 -6.07992e-19)
(1.09286 -0.0632033 -2.74472e-17)
(1.08125 -0.0676286 -1.98608e-17)
(1.07007 -0.069553 -1.05685e-17)
(1.06037 -0.0695174 -2.68902e-17)
(1.05253 -0.0681437 -1.50253e-17)
(1.04655 -0.0660327 -1.60143e-17)
(1.04215 -0.063765 1.03347e-17)
(1.03883 -0.0616269 -2.70557e-17)
(1.03634 -0.0598288 7.61247e-18)
(1.03406 -0.0584699 1.31562e-18)
(1.03178 -0.0574634 3.93517e-18)
(1.02959 -0.0567528 -9.49155e-18)
(1.02698 -0.056299 5.3484e-18)
(1.0237 -0.0558718 1.0026e-17)
(1.01983 -0.0553758 1.48568e-19)
(1.01548 -0.0546674 -9.24653e-18)
(1.01075 -0.0536923 3.45322e-17)
(1.0058 -0.0523629 3.30793e-17)
(1.00068 -0.0506899 -2.74719e-17)
(0.995452 -0.0486005 -2.04096e-17)
(0.990001 -0.0454003 4.42315e-17)
(0.984848 -0.0422844 -2.07413e-17)
(1.0959 0.0157602 -1.65056e-18)
(1.09972 0.0100905 -2.4552e-18)
(1.10487 0.00236097 3.5181e-18)
(1.1101 -0.0077434 9.5351e-18)
(1.11373 -0.0197806 8.63571e-19)
(1.11395 -0.0326947 5.89584e-18)
(1.10992 -0.0447794 -2.12927e-18)
(1.10202 -0.0548584 9.86647e-19)
(1.09159 -0.0621393 1.9005e-17)
(1.08029 -0.066645 4.90177e-18)
(1.06936 -0.0686819 2.16901e-17)
(1.05982 -0.0687698 2.00537e-17)
(1.05206 -0.0675163 2.289e-18)
(1.04609 -0.0655091 -1.39942e-18)
(1.04164 -0.0633124 -4.13585e-19)
(1.03825 -0.0612161 2.0617e-17)
(1.03566 -0.059429 -1.71918e-17)
(1.0333 -0.0580577 -1.565e-17)
(1.03096 -0.0570189 3.34259e-17)
(1.02873 -0.0562632 -5.10508e-18)
(1.02612 -0.0557527 -9.78756e-18)
(1.02288 -0.0552657 -6.16997e-18)
(1.01907 -0.0547068 6.75589e-18)
(1.01481 -0.0539387 -1.43371e-17)
(1.0102 -0.0529084 -1.17902e-17)
(1.00538 -0.0515327 4.58687e-17)
(1.00041 -0.0498245 1.17533e-17)
(0.995355 -0.0477156 -1.52922e-17)
(0.990091 -0.0445338 -3.6934e-17)
(0.985135 -0.0414909 -5.30177e-18)
(1.09474 0.0152633 1.83074e-19)
(1.09832 0.00967424 6.5445e-18)
(1.10317 0.00214423 -2.16205e-18)
(1.10811 -0.00765345 3.75746e-18)
(1.11158 -0.0193447 1.61556e-18)
(1.11183 -0.0319426 -4.30867e-18)
(1.108 -0.0438121 5.01306e-18)
(1.10043 -0.0537882 1.16216e-17)
(1.09035 -0.0610725 2.05778e-17)
(1.07936 -0.0656489 2.77945e-17)
(1.06868 -0.0677935 -3.30194e-17)
(1.05932 -0.0680037 -3.92374e-17)
(1.05164 -0.066872 2.58654e-17)
(1.04568 -0.0649719 6.33232e-18)
(1.04117 -0.0628515 -1.95807e-17)
(1.03771 -0.0608036 2.11921e-17)
(1.03503 -0.0590347 1.20068e-17)
(1.03259 -0.057657 7.0277e-18)
(1.0302 -0.0565891 3.47305e-18)
(1.02793 -0.0557906 1.46355e-17)
(1.02531 -0.055225 -1.48156e-17)
(1.0221 -0.0546792 -3.44813e-18)
(1.01836 -0.0540587 -6.30019e-19)
(1.01419 -0.0532317 3.36998e-17)
(1.0097 -0.0521473 -9.04936e-18)
(1.005 -0.0507265 -4.0799e-17)
(1.00017 -0.0489851 1.63743e-17)
(0.995283 -0.0468584 1.30236e-17)
(0.990203 -0.0436963 4.18479e-18)
(0.985437 -0.0407247 5.06881e-17)
(1.09359 0.014778 1.20465e-18)
(1.09696 0.00926554 -6.36051e-18)
(1.10151 0.00192775 4.21243e-18)
(1.10617 -0.00757227 1.90492e-19)
(1.10948 -0.0189232 -9.67515e-18)
(1.10974 -0.0312045 -3.47064e-18)
(1.10611 -0.0428513 -9.22529e-18)
(1.09883 -0.0527135 7.50401e-19)
(1.0891 -0.0599901 -1.34873e-17)
(1.07842 -0.0646301 2.64854e-18)
(1.068 -0.0668792 3.41145e-17)
(1.0588 -0.0672121 3.30381e-17)
(1.05122 -0.0662048 -9.41689e-18)
(1.04527 -0.0644163 2.26737e-19)
(1.04074 -0.0623784 1.21979e-18)
(1.03721 -0.0603848 -3.07205e-17)
(1.03445 -0.0586391 -7.57394e-18)
(1.03193 -0.0572589 3.0206e-18)
(1.02948 -0.0561667 -3.06862e-17)
(1.02717 -0.0553287 1.21446e-17)
(1.02455 -0.0547105 2.24469e-17)
(1.02137 -0.0541077 -1.64682e-17)
(1.01769 -0.0534269 6.98758e-18)
(1.01361 -0.0525426 -9.5823e-18)
(1.00923 -0.0514054 -9.35621e-18)
(1.00466 -0.0499412 -9.33608e-18)
(0.999971 -0.0481677 -6.71053e-18)
(0.995238 -0.0460251 -4.64951e-18)
(0.990332 -0.0428838 1.5279e-17)
(0.985747 -0.039983 -4.53127e-17)
(1.09246 0.014304 -3.03339e-18)
(1.09562 0.0088611 -5.9893e-19)
(1.09989 0.00170295 -2.05968e-18)
(1.10428 -0.00751281 -1.6689e-17)
(1.10743 -0.0185315 -3.99628e-19)
(1.1077 -0.0304963 2.52808e-18)
(1.10425 -0.0419132 -7.01872e-20)
(1.09727 -0.0516504 -5.26614e-19)
(1.08787 -0.0589077 -1.39425e-17)
(1.07751 -0.0636016 -2.03286e-17)
(1.06733 -0.0659495 -1.09104e-17)
(1.05831 -0.0664038 -3.04187e-17)
(1.05083 -0.0655209 -2.2611e-17)
(1.0449 -0.0638462 -1.70149e-17)
(1.04033 -0.0618951 1.3187e-17)
(1.03674 -0.0599613 4.3944e-18)
(1.0339 -0.0582451 4.22834e-18)
(1.03132 -0.0568684 9.52176e-18)
(1.02882 -0.0557552 -7.94586e-18)
(1.02647 -0.0548803 -1.93965e-17)
(1.02384 -0.0542117 5.58954e-18)
(1.02068 -0.0535535 2.80859e-17)
(1.01706 -0.0528141 -2.55848e-17)
(1.01307 -0.0518737 -8.56029e-18)
(1.00879 -0.0506852 3.17757e-17)
(1.00435 -0.0491788 4.41843e-17)
(0.999793 -0.0473752 1.39563e-17)
(0.995214 -0.0452184 -5.94719e-17)
(0.990476 -0.0420985 -3.43093e-17)
(0.986067 -0.0392665 1.62693e-17)
(1.09134 0.0138414 4.48277e-18)
(1.09431 0.00846549 -1.97158e-18)
(1.0983 0.00147963 6.43619e-19)
(1.10244 -0.00746196 6.8407e-18)
(1.10542 -0.018156 1.4226e-17)
(1.10569 -0.0298062 1.69586e-17)
(1.10241 -0.040988 6.32145e-18)
(1.09571 -0.0505906 -9.84961e-18)
(1.08664 -0.0578177 -1.7304e-17)
(1.07658 -0.062557 7.85619e-18)
(1.06666 -0.0649986 1.17798e-17)
(1.05782 -0.0655719 1.39967e-18)
(1.05043 -0.0648159 6.31645e-19)
(1.04454 -0.0632596 7.58429e-18)
(1.03995 -0.0614005 1.52889e-17)
(1.0363 -0.059531 3.01039e-18)
(1.0334 -0.0578482 -1.00624e-17)
(1.03074 -0.056478 -8.26179e-18)
(1.02819 -0.0553487 -9.96218e-20)
(1.02581 -0.054441 8.33279e-18)
(1.02316 -0.0537246 -1.44199e-17)
(1.02004 -0.0530131 -8.36814e-18)
(1.01648 -0.0522167 1.70888e-17)
(1.01256 -0.0512217 1.7723e-17)
(1.00839 -0.0499833 4.37903e-18)
(1.00406 -0.0484366 -2.03641e-17)
(0.999641 -0.0466037 1.97398e-18)
(0.99521 -0.044434 4.5124e-17)
(0.990633 -0.0413369 2.80147e-17)
(0.986391 -0.0385726 9.05866e-18)
(1.09023 0.0133903 -2.46007e-18)
(1.09302 0.00807705 1.04093e-17)
(1.09676 0.00125295 -5.15283e-19)
(1.10064 -0.00742756 5.71008e-18)
(1.10346 -0.0178064 3.87953e-18)
(1.10374 -0.029145 -9.75715e-18)
(1.10061 -0.040087 -2.67448e-18)
(1.09419 -0.0495462 3.5764e-18)
(1.08543 -0.0567328 2.04966e-17)
(1.07567 -0.0615083 -2.47262e-17)
(1.066 -0.0640376 -1.36145e-17)
(1.05734 -0.0647264 -1.08322e-18)
(1.05006 -0.064096 7.03588e-18)
(1.0442 -0.0626583 7.34745e-18)
(1.03959 -0.0608937 -1.09934e-17)
(1.0359 -0.0590932 -1.28732e-18)
(1.03292 -0.0574496 -9.15341e-18)
(1.03021 -0.0560914 2.29488e-17)
(1.02761 -0.0549493 1.38994e-17)
(1.02519 -0.0540113 -2.892e-17)
(1.02254 -0.0532497 -4.09674e-18)
(1.01944 -0.052487 9.85908e-18)
(1.01593 -0.0516357 -3.24261e-18)
(1.01209 -0.0505881 -4.59453e-18)
(1.00802 -0.0493015 -3.27897e-17)
(1.00381 -0.0477159 1.68858e-18)
(0.999511 -0.0458558 -1.50246e-17)
(0.995223 -0.0436746 1.89251e-17)
(0.9908 -0.0406011 1.61947e-17)
(0.98672 -0.0379018 1.23611e-18)
(1.08913 0.0129515 3.82783e-19)
(1.09175 0.0077008 -9.3974e-19)
(1.09524 0.00103403 3.17253e-18)
(1.09889 -0.00739417 2.43803e-18)
(1.10155 -0.0174664 -1.02532e-17)
(1.10181 -0.0284974 6.78605e-18)
(1.09882 -0.0391972 9.96874e-19)
(1.09266 -0.0485062 8.7714e-18)
(1.08421 -0.0556438 1.25718e-18)
(1.07474 -0.0604488 2.07764e-17)
(1.06532 -0.0630613 3.51002e-18)
(1.05685 -0.0638639 1.60647e-17)
(1.04968 -0.063359 -1.43447e-18)
(1.04387 -0.0620413 -1.77019e-17)
(1.03925 -0.0603744 -1.37142e-17)
(1.03552 -0.0586458 3.40598e-18)
(1.03248 -0.0570447 3.62097e-17)
(1.02971 -0.0557012 -3.02327e-17)
(1.02706 -0.0545508 6.84074e-18)
(1.0246 -0.0535865 1.40666e-17)
(1.02195 -0.0527829 3.89565e-18)
(1.01887 -0.0519717 -3.90249e-18)
(1.01541 -0.0510677 7.46387e-18)
(1.01166 -0.0499695 -6.7219e-18)
(1.00768 -0.0486367 -2.07024e-17)
(1.00357 -0.0470144 -6.42928e-18)
(0.999404 -0.0451283 2.06402e-17)
(0.995253 -0.0429367 -1.83398e-17)
(0.990977 -0.0398874 7.25769e-19)
(0.987051 -0.0372515 9.03254e-19)
(1.08803 0.0125235 1.12483e-18)
(1.09049 0.00733246 9.03881e-20)
(1.09376 0.000815734 -6.08415e-19)
(1.09718 -0.0073716 -1.03843e-17)
(1.09968 -0.017148 2.25509e-18)
(1.09993 -0.0278766 -1.9497e-18)
(1.09708 -0.038332 8.49158e-19)
(1.09116 -0.0474832 -1.6748e-17)
(1.08301 -0.054562 -1.93842e-17)
(1.07383 -0.0593871 -1.35068e-17)
(1.06466 -0.0620762 -1.99394e-17)
(1.05637 -0.0629893 1.14802e-17)
(1.04932 -0.0626074 -4.07951e-18)
(1.04355 -0.0614094 2.09337e-17)
(1.03893 -0.0598422 6.9522e-18)
(1.03516 -0.0581895 2.14803e-18)
(1.03207 -0.0566357 -2.38953e-17)
(1.02924 -0.0553123 7.11833e-18)
(1.02655 -0.0541569 -1.88431e-18)
(1.02406 -0.0531689 -5.5426e-18)
(1.0214 -0.052326 -1.65355e-18)
(1.01834 -0.0514688 -5.62314e-18)
(1.01494 -0.0505147 -2.02045e-17)
(1.01125 -0.049368 1.17074e-17)
(1.00736 -0.047991 2.63719e-17)
(1.00337 -0.0463334 -4.55639e-17)
(0.999313 -0.0444232 -5.12157e-17)
(0.995296 -0.0422228 5.56907e-18)
(0.991162 -0.0391981 1.08945e-17)
(0.987386 -0.0366224 -2.74307e-17)
(1.08693 0.0121069 5.65436e-19)
(1.08925 0.00697502 -3.54365e-19)
(1.09231 0.000604946 1.07711e-18)
(1.0955 -0.00734992 7.2801e-18)
(1.09785 -0.0168401 7.95542e-18)
(1.09807 -0.0272729 -9.8761e-19)
(1.09535 -0.0374837 -3.06903e-18)
(1.08966 -0.0464717 4.69191e-18)
(1.0818 -0.0534833 1.85371e-17)
(1.07291 -0.0583206 5.32907e-18)
(1.06398 -0.0610796 -4.83463e-19)
(1.05588 -0.0620992 -1.03399e-17)
(1.04895 -0.0618403 1.1694e-17)
(1.04323 -0.0607639 6.50204e-19)
(1.03862 -0.0592988 -2.37683e-17)
(1.03482 -0.057724 4.96541e-18)
(1.03168 -0.0562198 2.56438e-17)
(1.0288 -0.0549186 -1.06152e-17)
(1.02607 -0.0537626 1.32076e-17)
(1.02355 -0.0527554 2.03576e-17)
(1.02088 -0.0518766 -3.15958e-18)
(1.01785 -0.0509761 -1.63176e-17)
(1.01449 -0.0499741 2.75169e-17)
(1.01087 -0.048781 -2.41374e-17)
(1.00707 -0.0473616 1.13646e-17)
(1.00318 -0.0456707 1.98173e-17)
(0.999242 -0.0437375 5.60513e-17)
(0.995353 -0.0415291 -9.51802e-18)
(0.991353 -0.0385298 -3.57892e-17)
(0.987719 -0.0360126 6.6008e-18)
(1.08584 0.0117007 -5.09118e-18)
(1.08802 0.00662676 -5.04784e-18)
(1.09088 0.000397402 -5.63544e-18)
(1.09386 -0.00733538 1.12869e-18)
(1.09607 -0.01655 -1.26028e-17)
(1.09626 -0.0266936 -1.99327e-18)
(1.09365 -0.0366602 7.58361e-18)
(1.08819 -0.0454805 -3.01337e-18)
(1.08061 -0.0524171 9.20978e-18)
(1.072 -0.0572583 -1.73773e-17)
(1.06332 -0.0600805 2.33679e-17)
(1.0554 -0.0612009 1.1391e-17)
(1.04859 -0.0610613 4.5399e-18)
(1.04293 -0.0601043 -1.55912e-17)
(1.03832 -0.0587417 2.52286e-17)
(1.0345 -0.0572477 -2.14749e-17)
(1.03132 -0.0557975 -4.58403e-18)
(1.02839 -0.0545232 1.05364e-17)
(1.02563 -0.0533699 -4.2357e-18)
(1.02308 -0.052346 -1.62759e-19)
(1.02039 -0.0514343 9.87003e-18)
(1.01738 -0.0504932 1.76385e-17)
(1.01407 -0.0494462 -1.2748e-19)
(1.01052 -0.0482092 2.48227e-17)
(1.00681 -0.0467497 6.0176e-18)
(1.00301 -0.0450273 6.65525e-18)
(0.999186 -0.043073 -5.24034e-17)
(0.99542 -0.0408579 2.64898e-17)
(0.99155 -0.0378844 -1.18387e-17)
(0.988053 -0.0354226 1.69497e-17)
(1.08475 0.0113069 1.51719e-18)
(1.08681 0.00629282 1.95665e-18)
(1.08947 0.000200809 -1.39572e-18)
(1.09226 -0.00731756 5.84827e-18)
(1.09432 -0.0162647 7.78156e-18)
(1.09448 -0.026125 4.05332e-18)
(1.09197 -0.0358492 1.05426e-18)
(1.08673 -0.0444995 3.81827e-18)
(1.07942 -0.0513565 -2.50649e-17)
(1.07107 -0.0561962 2.00415e-17)
(1.06263 -0.0590769 4.20896e-18)
(1.0549 -0.0602948 -1.97762e-18)
(1.04821 -0.0602717 1.93718e-17)
(1.04262 -0.0594328 2.3248e-17)
(1.03803 -0.058173 -3.48641e-18)
(1.0342 -0.0567605 2.35056e-17)
(1.03098 -0.0553657 -1.19215e-17)
(1.02801 -0.0541202 -3.32688e-18)
(1.02521 -0.0529733 -8.80563e-18)
(1.02263 -0.0519371 5.18997e-19)
(1.01994 -0.050996 5.45361e-18)
(1.01695 -0.0500176 3.44824e-18)
(1.01368 -0.0489283 -1.60109e-17)
(1.0102 -0.04765 -1.46531e-17)
(1.00657 -0.0461527 -3.64269e-18)
(1.00287 -0.044401 9.04068e-18)
(0.999145 -0.0424269 6.41059e-17)
(0.995498 -0.0402062 -3.58114e-17)
(0.991751 -0.0372586 1.63914e-17)
(0.988385 -0.0348501 2.33735e-17)
(1.08366 0.0109237 -1.46747e-18)
(1.0856 0.00596947 -2.79156e-18)
(1.08809 8.15492e-06 -1.89549e-18)
(1.09069 -0.00730599 7.60933e-19)
(1.0926 -0.0159948 -3.46091e-19)
(1.09274 -0.0255773 -1.4562e-17)
(1.09033 -0.0350595 -6.27168e-18)
(1.08529 -0.0435368 -7.41675e-19)
(1.07824 -0.0503081 1.3788e-17)
(1.07016 -0.0551394 -1.3136e-18)
(1.06196 -0.0580724 -3.20802e-17)
(1.05441 -0.0593831 -9.04272e-18)
(1.04785 -0.0594724 -1.12424e-17)
(1.04233 -0.0587489 -1.95684e-17)
(1.03775 -0.0575916 -8.94056e-18)
(1.03391 -0.0562626 1.13537e-17)
(1.03065 -0.0549266 -1.4389e-18)
(1.02765 -0.0537142 -6.51069e-18)
(1.02483 -0.0525767 2.38508e-17)
(1.02222 -0.0515303 -1.81301e-17)
(1.01952 -0.050563 -9.8165e-19)
(1.01655 -0.0495502 -9.68404e-18)
(1.01332 -0.0484217 2.15562e-17)
(1.0099 -0.0471047 7.7944e-18)
(1.00634 -0.0455719 4.61772e-18)
(1.00274 -0.0437928 3.20476e-17)
(0.999117 -0.0418008 -3.70155e-17)
(0.995583 -0.0395759 8.1507e-18)
(0.991955 -0.0366542 3.36502e-17)
(0.988717 -0.034296 -2.07673e-17)
(1.08258 0.0105523 4.74115e-19)
(1.0844 0.00565966 4.30356e-18)
(1.08673 -0.000175279 3.36841e-18)
(1.08914 -0.00729347 -9.48837e-18)
(1.09092 -0.0157321 -1.12872e-17)
(1.09103 -0.0250431 1.90803e-17)
(1.08871 -0.0342855 -7.99125e-19)
(1.08386 -0.042588 5.33105e-18)
(1.07706 -0.0492687 9.01988e-18)
(1.06923 -0.0540858 1.36604e-18)
(1.06126 -0.0570651 1.43893e-17)
(1.0539 -0.0584638 1.10506e-17)
(1.04747 -0.0586636 -1.70252e-17)
(1.04202 -0.0580554 2.0809e-17)
(1.03748 -0.0570007 1.11888e-17)
(1.03363 -0.0557552 -2.82356e-17)
(1.03035 -0.0544787 -1.19258e-17)
(1.02732 -0.0533004 1.1785e-17)
(1.02447 -0.0521761 -3.00699e-17)
(1.02183 -0.0511242 -7.80053e-18)
(1.01913 -0.0501343 -7.56577e-18)
(1.01617 -0.0490901 -9.32265e-18)
(1.01299 -0.0479249 -1.38513e-17)
(1.00962 -0.0465716 -4.01941e-18)
(1.00614 -0.0450056 -1.24424e-17)
(1.00263 -0.043201 -4.23805e-17)
(0.999103 -0.0411923 -7.81151e-18)
(0.995678 -0.0389636 -6.02894e-18)
(0.992162 -0.0360685 -4.79323e-17)
(0.989044 -0.0337586 3.78486e-18)
(1.08149 0.0101903 2.40254e-18)
(1.08322 0.00536004 -1.25934e-18)
(1.08539 -0.000353089 1.42532e-18)
(1.08763 -0.00728397 4.88858e-18)
(1.08928 -0.0154818 -1.83181e-18)
(1.08935 -0.0245286 -1.79663e-17)
(1.08712 -0.0335344 6.91324e-18)
(1.08245 -0.0416607 -9.83488e-18)
(1.07589 -0.0482456 2.97025e-18)
(1.06832 -0.053041 -1.53341e-17)
(1.06058 -0.0560598 -6.97751e-18)
(1.0534 -0.0575396 -2.34624e-17)
(1.0471 -0.0578449 5.73956e-18)
(1.04173 -0.0573484 -1.7857e-18)
(1.03721 -0.0563956 5.62322e-18)
(1.03337 -0.0552353 -1.06444e-17)
(1.03006 -0.0540219 1.07559e-17)
(1.02701 -0.0528819 -8.23658e-18)
(1.02413 -0.0517736 1.42754e-17)
(1.02148 -0.0507185 8.64979e-18)
(1.01876 -0.0497087 9.8392e-18)
(1.01583 -0.0486363 2.23213e-17)
(1.01268 -0.0474376 -8.28868e-18)
(1.00937 -0.0460509 -2.13396e-17)
(1.00596 -0.0444541 -1.59306e-17)
(1.00253 -0.042626 -1.64651e-17)
(0.999099 -0.0406025 3.24603e-17)
(0.995778 -0.0383713 1.56921e-17)
(0.992372 -0.0355031 2.69283e-17)
(0.989369 -0.0332388 -7.60624e-18)
(1.08041 0.0098398 5.12139e-19)
(1.08204 0.00507423 2.5624e-18)
(1.08406 -0.000518816 3.43066e-19)
(1.08615 -0.00726779 -5.71823e-18)
(1.08767 -0.0152323 5.49896e-18)
(1.0877 -0.0240227 5.44835e-18)
(1.08554 -0.032797 -7.62725e-18)
(1.08105 -0.0407483 2.26339e-18)
(1.07472 -0.0472344 -1.35506e-17)
(1.06739 -0.0520029 3.55025e-17)
(1.05988 -0.0550547 1.07435e-17)
(1.05289 -0.0566108 -2.78853e-18)
(1.04672 -0.057017 1.38618e-17)
(1.04143 -0.0566294 -9.24289e-18)
(1.03695 -0.0557776 -1.78546e-17)
(1.03311 -0.0547025 2.46577e-17)
(1.02979 -0.0535531 2.45539e-17)
(1.02671 -0.0524529 5.65217e-18)
(1.02382 -0.0513643 -9.01439e-18)
(1.02114 -0.0503103 1.51026e-17)
(1.01842 -0.0492848 -2.27732e-17)
(1.01551 -0.0481874 1.08374e-18)
(1.01239 -0.0469583 -1.58792e-17)
(1.00914 -0.0455408 2.72332e-17)
(1.0058 -0.0439156 1.79991e-17)
(1.00245 -0.0420662 4.7518e-18)
(0.999109 -0.0400292 -2.43055e-17)
(0.995888 -0.0377964 7.18271e-18)
(0.992584 -0.0349549 -4.98195e-18)
(0.98969 -0.0327345 2.18229e-18)
(1.07932 0.00949795 -1.28287e-18)
(1.08087 0.00479706 1.41198e-18)
(1.08276 -0.000679076 2.18977e-18)
(1.08469 -0.00725199 1.06514e-17)
(1.08609 -0.0149908 2.13113e-18)
(1.08609 -0.0235326 2.81795e-18)
(1.084 -0.0320802 6.25304e-19)
(1.07968 -0.0398571 1.08248e-17)
(1.07357 -0.0462405 -5.59512e-18)
(1.06648 -0.0509751 -3.66623e-18)
(1.05919 -0.054052 -1.65448e-18)
(1.05238 -0.055677 2.65164e-17)
(1.04634 -0.0561778 -1.99317e-17)
(1.04113 -0.055895 -8.04285e-18)
(1.03669 -0.0551429 -8.47564e-18)
(1.03286 -0.0541546 -6.29885e-18)
(1.02953 -0.0530724 -7.53637e-18)
(1.02644 -0.0520169 -1.1493e-17)
(1.02352 -0.0509512 7.39593e-19)
(1.02083 -0.0499011 -2.01175e-18)
(1.01811 -0.048863 1.81598e-17)
(1.01521 -0.047744 -1.05651e-17)
(1.01213 -0.0464876 3.03185e-17)
(1.00893 -0.0450422 -2.01781e-18)
(1.00566 -0.0433912 7.39155e-18)
(1.00238 -0.0415223 2.5721e-17)
(0.999129 -0.0394738 3.22031e-17)
(0.996002 -0.0372407 1.91773e-18)
(0.992797 -0.034426 -2.68426e-17)
(0.990009 -0.0322468 -4.52312e-18)
(1.07824 0.00916677 2.40267e-18)
(1.0797 0.00453157 -6.52766e-18)
(1.08147 -0.000829465 -5.3219e-18)
(1.08325 -0.00723078 -1.74742e-17)
(1.08454 -0.0147506 -8.85613e-19)
(1.0845 -0.0230516 2.79355e-18)
(1.08248 -0.0313785 5.65789e-18)
(1.07831 -0.0389832 -8.04245e-18)
(1.07242 -0.0452616 6.06555e-18)
(1.06556 -0.049957 -1.05574e-17)
(1.05848 -0.0530518 -2.22964e-17)
(1.05185 -0.0547391 -3.11314e-18)
(1.04595 -0.05533 1.80776e-17)
(1.04083 -0.0551495 1.94199e-18)
(1.03644 -0.0544956 3.51949e-17)
(1.03262 -0.0535932 -3.05861e-18)
(1.02928 -0.0525789 -4.57169e-18)
(1.02617 -0.051569 2.24394e-17)
(1.02324 -0.0505306 1.62789e-17)
(1.02053 -0.0494893 -9.73138e-18)
(1.01781 -0.0484429 1.924e-19)
(1.01493 -0.0473057 2.91934e-18)
(1.01189 -0.046025 -1.89111e-17)
(1.00874 -0.0445542 4.85613e-18)
(1.00553 -0.0428795 -2.21061e-17)
(1.00233 -0.0409931 -1.0291e-17)
(0.999159 -0.038934 -2.82845e-17)
(0.996124 -0.0367012 -1.76956e-17)
(0.993012 -0.0339135 2.02822e-17)
(0.990323 -0.0317741 2.0731e-17)
(1.07715 0.00884326 -1.87116e-18)
(1.07854 0.00427462 9.97244e-19)
(1.08019 -0.000973084 5.1142e-18)
(1.08185 -0.00720791 1.1533e-17)
(1.08302 -0.0145166 7.7496e-19)
(1.08295 -0.0225851 -4.33662e-19)
(1.08099 -0.0306968 1.38245e-19)
(1.07697 -0.0381311 5.49109e-18)
(1.07128 -0.0443019 1.21773e-17)
(1.06464 -0.0489522 3.53953e-18)
(1.05778 -0.052058 3.37189e-17)
(1.05133 -0.0537994 -1.31655e-17)
(1.04556 -0.0544736 -2.16529e-17)
(1.04053 -0.0543899 -1.84123e-19)
(1.03618 -0.0538318 -1.0725e-17)
(1.03239 -0.053016 8.63873e-18)
(1.02904 -0.0520722 -8.24298e-18)
(1.02592 -0.0511121 -1.59554e-17)
(1.02299 -0.0501039 -2.39839e-17)
(1.02026 -0.0490742 -6.70325e-18)
(1.01754 -0.0480229 1.7343e-18)
(1.01467 -0.0468711 1.21557e-17)
(1.01166 -0.0455696 1.149e-17)
(1.00856 -0.0440764 -2.17769e-17)
(1.00542 -0.0423807 2.64431e-17)
(1.00229 -0.0404788 3.99403e-17)
(0.999196 -0.038411 -1.01787e-17)
(0.996249 -0.0361797 3.52572e-17)
(0.993227 -0.0334193 -1.26175e-18)
(0.990634 -0.0313174 -1.40519e-17)
(1.07607 0.00853003 -1.07674e-18)
(1.07739 0.00403122 -3.6269e-18)
(1.07893 -0.00110323 -4.59665e-18)
(1.08046 -0.00717619 -4.54491e-18)
(1.08153 -0.0142814 5.48979e-18)
(1.08142 -0.0221258 -2.51754e-18)
(1.07951 -0.0300286 -5.67139e-18)
(1.07564 -0.037295 -2.33425e-18)
(1.07014 -0.043357 -1.69928e-19)
(1.06373 -0.0479585 6.81228e-19)
(1.05707 -0.0510699 -1.13915e-17)
(1.0508 -0.05286 -7.45229e-18)
(1.04516 -0.0536121 8.30218e-18)
(1.04022 -0.053621 2.26072e-17)
(1.03593 -0.0531561 3.72946e-18)
(1.03216 -0.0524251 8.79462e-18)
(1.02882 -0.0515517 6.39237e-18)
(1.02569 -0.0506422 1.94452e-17)
(1.02274 -0.0496676 -9.77145e-18)
(1.02 -0.0486539 -3.66005e-18)
(1.01728 -0.0476019 -6.36195e-18)
(1.01443 -0.0464391 -1.09036e-17)
(1.01145 -0.04512 1.44271e-17)
(1.0084 -0.0436073 2.35336e-18)
(1.00532 -0.0418931 -2.95448e-17)
(1.00226 -0.0399777 2.19917e-18)
(0.999241 -0.0379026 -1.70042e-17)
(0.996377 -0.0356736 -3.10876e-17)
(0.993442 -0.0329404 1.84707e-17)
(0.990939 -0.0308748 -2.85891e-18)
(1.07498 0.00822329 1.70968e-18)
(1.07624 0.00379714 5.49498e-18)
(1.07768 -0.00122513 3.57705e-18)
(1.07909 -0.00714237 -7.57908e-18)
(1.08007 -0.014053 -6.77681e-18)
(1.07992 -0.0216815 -3.53306e-18)
(1.07807 -0.02938 5.35618e-18)
(1.07432 -0.0364791 -2.51855e-19)
(1.06903 -0.0424291 -8.44102e-18)
(1.06282 -0.0469764 -1.61387e-17)
(1.05637 -0.0500869 6.57543e-19)
(1.05027 -0.0519195 2.0707e-17)
(1.04476 -0.0527433 -6.46334e-18)
(1.03991 -0.0528401 -3.67011e-17)
(1.03567 -0.052466 3.57016e-18)
(1.03193 -0.0518202 -2.86004e-17)
(1.0286 -0.051019 -2.44913e-17)
(1.02546 -0.0501638 -6.84649e-18)
(1.02251 -0.0492253 1.32373e-17)
(1.01977 -0.0482299 1.79281e-17)
(1.01704 -0.0471803 2.39666e-18)
(1.0142 -0.04601 -8.86972e-18)
(1.01126 -0.0446767 -2.9861e-17)
(1.00825 -0.0431475 3.44531e-20)
(1.00523 -0.0414173 7.14821e-18)
(1.00223 -0.0394905 -8.95238e-19)
(0.99929 -0.0374099 1.78226e-17)
(0.996507 -0.0351845 -3.4489e-17)
(0.993654 -0.0324785 2.49702e-18)
(0.991238 -0.0304471 1.32068e-17)
(1.0739 0.0079259 4.69246e-19)
(1.0751 0.00357584 1.37279e-18)
(1.07645 -0.00133523 -5.10765e-18)
(1.07775 -0.00710281 1.01588e-17)
(1.07863 -0.0138273 -3.39936e-18)
(1.07845 -0.0212477 1.09178e-17)
(1.07664 -0.0287465 -1.13088e-17)
(1.07303 -0.0356795 7.77441e-19)
(1.06791 -0.0415156 1.8207e-17)
(1.06191 -0.0460045 -6.33693e-18)
(1.05566 -0.0491091 -2.12571e-17)
(1.04972 -0.0509791 -8.20745e-18)
(1.04435 -0.0518708 1.53713e-17)
(1.0396 -0.0520529 -2.78725e-18)
(1.03542 -0.0517675 -1.93307e-17)
(1.03171 -0.0512046 1.58039e-17)
(1.02838 -0.050475 2.0612e-17)
(1.02525 -0.0496739 1.04929e-18)
(1.0223 -0.0487747 1.04939e-17)
(1.01954 -0.0478021 -8.80808e-18)
(1.01682 -0.046759 -2.70451e-18)
(1.014 -0.0455845 1.40288e-17)
(1.01108 -0.04424 1.90143e-17)
(1.00812 -0.0426969 1.03741e-17)
(1.00515 -0.040953 -3.87054e-19)
(1.00222 -0.0390165 -1.33828e-17)
(0.999345 -0.0369314 1.93166e-17)
(0.996639 -0.0347099 3.44123e-17)
(0.993864 -0.0320313 -2.58656e-17)
(0.991531 -0.0300328 -2.95974e-17)
(1.07282 0.00763478 -3.96606e-19)
(1.07397 0.00336268 -4.13931e-18)
(1.07523 -0.00143858 3.65796e-18)
(1.07643 -0.00706173 3.6261e-18)
(1.07722 -0.0136073 3.37535e-18)
(1.077 -0.0208263 -6.2734e-18)
(1.07524 -0.0281295 6.85118e-18)
(1.07175 -0.0348973 3.18401e-18)
(1.06681 -0.0406175 -2.39004e-17)
(1.06101 -0.0450444 1.52349e-17)
(1.05495 -0.0481385 3.57453e-17)
(1.04918 -0.0500401 -8.45501e-18)
(1.04394 -0.0509946 3.95223e-19)
(1.03928 -0.0512573 3.20098e-18)
(1.03516 -0.0510578 -1.15815e-17)
(1.03149 -0.0505777 -1.25231e-17)
(1.02817 -0.0499206 5.17555e-18)
(1.02505 -0.0491763 1.09958e-17)
(1.0221 -0.0483182 1.53479e-17)
(1.01934 -0.04737 1.14565e-17)
(1.01661 -0.046336 -9.98727e-18)
(1.01381 -0.0451607 -4.83958e-18)
(1.01092 -0.0438083 -1.92234e-17)
(1.008 -0.0422543 2.25166e-18)
(1.00508 -0.0404992 7.34277e-18)
(1.00221 -0.0385552 -3.19028e-17)
(0.999405 -0.0364674 -2.27598e-17)
(0.996771 -0.0342512 2.08436e-18)
(0.994071 -0.0316002 3.45234e-17)
(0.991817 -0.0296327 3.27925e-17)
(1.07174 0.00735374 -2.31026e-20)
(1.07284 0.00316141 4.17119e-18)
(1.07402 -0.00153147 -1.02626e-18)
(1.07512 -0.00701414 -9.17279e-18)
(1.07583 -0.0133861 7.65109e-18)
(1.07558 -0.0204091 -6.42291e-18)
(1.07386 -0.0275211 9.788e-19)
(1.07049 -0.0341262 -2.61739e-20)
(1.06572 -0.0397312 -1.12902e-17)
(1.06011 -0.044095 -1.18279e-17)
(1.05424 -0.0471761 -1.06815e-17)
(1.04864 -0.0491066 8.91999e-18)
(1.04353 -0.0501199 -2.11473e-17)
(1.03896 -0.0504596 2.82368e-17)
(1.03491 -0.0503429 2.3538e-17)
(1.03127 -0.0499427 1.27636e-17)
(1.02797 -0.0493567 4.71906e-18)
(1.02485 -0.0486683 -9.64148e-18)
(1.0219 -0.0478531 -1.6319e-18)
(1.01914 -0.0469327 -1.1757e-17)
(1.01642 -0.0459112 1.26422e-17)
(1.01363 -0.0447381 -1.36425e-17)
(1.01078 -0.0433809 1.78587e-17)
(1.00789 -0.0418187 -7.08155e-18)
(1.00503 -0.0400549 4.33663e-18)
(1.00221 -0.0381054 1.28095e-17)
(0.999472 -0.0360163 1.17453e-17)
(0.996907 -0.0338059 1.7311e-17)
(0.994277 -0.0311824 -3.26922e-17)
(0.992096 -0.029245 -1.17465e-17)
(1.07066 0.00707906 -9.67295e-19)
(1.07172 0.00296671 -1.14752e-18)
(1.07283 -0.00162006 -3.07808e-18)
(1.07384 -0.00696582 3.51246e-18)
(1.07446 -0.0131686 -2.76207e-19)
(1.07418 -0.0200001 1.16727e-17)
(1.0725 -0.0269241 6.93055e-19)
(1.06924 -0.0333682 -1.91658e-18)
(1.06464 -0.0388579 2.63893e-17)
(1.05921 -0.043157 5.40356e-19)
(1.05353 -0.0462223 7.84672e-18)
(1.04809 -0.048178 -4.19071e-18)
(1.04311 -0.0492459 1.79827e-17)
(1.03863 -0.0496585 1.09859e-18)
(1.03464 -0.0496218 -1.84387e-17)
(1.03105 -0.0493004 6.05186e-18)
(1.02777 -0.0487854 2.11223e-18)
(1.02466 -0.0481548 -2.72541e-17)
(1.02172 -0.0473832 -2.26914e-17)
(1.01896 -0.0464916 1.37807e-18)
(1.01625 -0.0454847 7.65737e-18)
(1.01348 -0.0443166 1.61101e-17)
(1.01065 -0.0429574 -1.42181e-17)
(1.0078 -0.0413899 -8.54268e-18)
(1.00498 -0.0396198 1.39582e-17)
(1.00222 -0.0376667 -2.00576e-18)
(0.999544 -0.0355782 2.79944e-18)
(0.997044 -0.033375 -2.5615e-17)
(0.994482 -0.030779 2.54065e-17)
(0.992371 -0.0288701 -1.48782e-17)
(1.06959 0.00681374 -2.01938e-18)
(1.0706 0.00278216 -3.44718e-19)
(1.07164 -0.00170072 1.39585e-18)
(1.07257 -0.00691329 1.82123e-18)
(1.07312 -0.0129511 -6.9131e-19)
(1.07281 -0.0195957 -6.73239e-18)
(1.07117 -0.0263358 -2.11121e-18)
(1.06802 -0.0326219 5.6059e-18)
(1.06357 -0.0379975 -7.90721e-18)
(1.05832 -0.0422316 2.02487e-17)
(1.05282 -0.0452792 -2.64177e-17)
(1.04754 -0.0472577 -8.24031e-18)
(1.04268 -0.0483775 1.55929e-17)
(1.0383 -0.0488603 -3.15063e-17)
(1.03438 -0.0489006 1.53715e-17)
(1.03083 -0.0486544 -2.50533e-17)
(1.02757 -0.0482083 -2.60587e-17)
(1.02448 -0.0476334 1.1198e-18)
(1.02154 -0.0469071 2.2657e-17)
(1.01879 -0.046047 6.66551e-18)
(1.01608 -0.0450577 -1.88419e-17)
(1.01333 -0.0438972 -1.27187e-17)
(1.01053 -0.0425385 -5.54694e-18)
(1.00772 -0.040968 1.78826e-17)
(1.00495 -0.0391937 -1.68597e-17)
(1.00224 -0.037239 -5.84873e-18)
(0.999622 -0.035152 -3.56697e-17)
(0.997185 -0.0329563 -2.09336e-17)
(0.994685 -0.030388 2.34461e-18)
(0.992639 -0.0285063 8.90305e-18)
(1.06852 0.00655367 1.49774e-18)
(1.06949 0.00260365 6.85465e-20)
(1.07047 -0.00177652 2.56672e-18)
(1.07132 -0.00685883 -2.28692e-18)
(1.0718 -0.0127361 -8.78775e-18)
(1.07146 -0.0191986 5.38266e-18)
(1.06986 -0.0257589 4.70549e-18)
(1.06681 -0.0318897 -4.62153e-18)
(1.06251 -0.0371521 1.3328e-18)
(1.05744 -0.0413206 -1.87967e-17)
(1.05211 -0.0443486 2.0508e-17)
(1.04698 -0.0463457 -2.89734e-18)
(1.04225 -0.0475136 -2.27729e-17)
(1.03797 -0.0480622 -1.30286e-19)
(1.03411 -0.0481762 -7.01275e-18)
(1.0306 -0.0480037 1.0101e-17)
(1.02737 -0.0476257 1.13703e-17)
(1.0243 -0.0471073 -6.85643e-19)
(1.02137 -0.0464263 -1.60968e-17)
(1.01862 -0.0455981 -5.75222e-18)
(1.01593 -0.0446279 1.01874e-17)
(1.01319 -0.0434775 1.65344e-17)
(1.01042 -0.042122 1.60019e-17)
(1.00765 -0.0405512 -1.44376e-17)
(1.00493 -0.0387752 1.61969e-17)
(1.00227 -0.0368208 6.53296e-18)
(0.999704 -0.0347374 2.72606e-17)
(0.997326 -0.0325505 5.17417e-17)
(0.994886 -0.0300099 -2.11528e-17)
(0.992903 -0.028154 1.68903e-17)
(1.06745 0.0063019 1.02001e-18)
(1.06838 0.00243579 -2.92885e-18)
(1.06931 -0.00184214 8.67853e-19)
(1.07009 -0.00679714 4.30104e-18)
(1.0705 -0.0125187 -5.93633e-19)
(1.07014 -0.0188048 -4.09568e-18)
(1.06857 -0.0251906 1.17015e-18)
(1.06562 -0.0311699 3.29252e-18)
(1.06147 -0.0363215 7.08951e-18)
(1.05656 -0.0404246 1.36149e-18)
(1.0514 -0.0434318 -2.39093e-17)
(1.04642 -0.0454458 2.36919e-17)
(1.04181 -0.046658 1.54647e-17)
(1.03763 -0.0472685 2.05217e-17)
(1.03384 -0.0474522 -1.54031e-18)
(1.03037 -0.0473495 2.34037e-17)
(1.02717 -0.0470368 1.83364e-17)
(1.02412 -0.046573 2.32702e-18)
(1.02121 -0.0459377 1.3636e-17)
(1.01847 -0.0451436 -2.27755e-18)
(1.01578 -0.0441949 8.47247e-18)
(1.01306 -0.0430569 -1.2084e-17)
(1.01032 -0.0417071 -1.02161e-17)
(1.00759 -0.0401383 4.50018e-18)
(1.00491 -0.0383629 -2.00742e-17)
(1.0023 -0.036411 1.49572e-17)
(0.999791 -0.0343325 1.19442e-17)
(0.99747 -0.0321553 -2.98234e-17)
(0.995087 -0.0296419 -7.25818e-18)
(0.993161 -0.0278114 -2.90083e-17)
(1.06638 0.00605426 -6.93253e-19)
(1.06728 0.0022738 5.42794e-18)
(1.06816 -0.00190198 -3.34206e-18)
(1.06887 -0.00673244 -1.05227e-17)
(1.06923 -0.0123033 9.50172e-18)
(1.06884 -0.0184184 2.93678e-19)
(1.0673 -0.0246345 -1.17553e-17)
(1.06444 -0.0304652 1.45024e-18)
(1.06043 -0.0355069 -2.85371e-18)
(1.05569 -0.0395437 5.34937e-18)
(1.05069 -0.0425276 1.93964e-18)
(1.04586 -0.0445549 -1.81062e-17)
(1.04137 -0.0458071 1.25828e-21)
(1.03728 -0.0464755 -2.12928e-17)
(1.03356 -0.0467257 -1.51221e-18)
(1.03014 -0.0466911 -1.63295e-18)
(1.02697 -0.0464425 -3.63372e-17)
(1.02394 -0.0460339 3.18958e-17)
(1.02105 -0.045444 -2.02371e-17)
(1.01832 -0.0446839 -1.49022e-17)
(1.01564 -0.043758 -2.15689e-17)
(1.01295 -0.0426345 3.25777e-18)
(1.01023 -0.0412929 3.31564e-18)
(1.00754 -0.0397287 1.40293e-17)
(1.0049 -0.0379562 -1.35291e-18)
(1.00234 -0.0360087 -2.44587e-17)
(0.99988 -0.033937 2.21244e-17)
(0.997613 -0.0317708 -1.68193e-17)
(0.995284 -0.029285 5.83594e-19)
(0.993414 -0.0274785 3.45603e-17)
(1.06532 0.00581429 1.16788e-19)
(1.06619 0.00212126 -2.52777e-18)
(1.06702 -0.00195308 1.13911e-18)
(1.06767 -0.00666264 1.03475e-17)
(1.06797 -0.0120882 -3.03418e-18)
(1.06756 -0.0180384 3.47469e-18)
(1.06605 -0.0240899 2.42411e-18)
(1.06329 -0.0297757 -4.13743e-19)
(1.05941 -0.0347089 2.77509e-18)
(1.05482 -0.0386789 1.35785e-17)
(1.04998 -0.0416375 -9.58805e-19)
(1.04529 -0.0436751 1.63065e-17)
(1.04093 -0.0449646 -4.69395e-18)
(1.03693 -0.0456876 1.74113e-17)
(1.03328 -0.0460009 1.59592e-17)
(1.02991 -0.0460303 -1.12234e-17)
(1.02678 -0.0458434 2.07627e-17)
(1.02377 -0.0454873 -1.62122e-17)
(1.02089 -0.0449437 3.7639e-18)
(1.01817 -0.0442196 1.84613e-17)
(1.01551 -0.0433187 2.16237e-17)
(1.01284 -0.042212 -1.46936e-17)
(1.01015 -0.0408807 -1.19045e-17)
(1.00749 -0.0393233 -1.85144e-19)
(1.00489 -0.0375556 1.00959e-17)
(1.00238 -0.0356145 1.57699e-17)
(0.999972 -0.0335506 -3.98872e-17)
(0.997757 -0.0313959 2.34444e-17)
(0.995479 -0.0289376 3.2297e-17)
(0.993662 -0.0271538 -2.98723e-17)
(1.06427 0.00557845 1.59526e-19)
(1.06511 0.00197403 7.57347e-19)
(1.06589 -0.00199923 3.21176e-18)
(1.06649 -0.00659054 -6.29324e-18)
(1.06674 -0.0118755 3.47423e-18)
(1.0663 -0.0176663 -1.21139e-18)
(1.06483 -0.023558 2.82037e-18)
(1.06215 -0.0291018 -2.37493e-18)
(1.0584 -0.0339275 -2.40808e-17)
(1.05396 -0.0378299 -1.77292e-17)
(1.04928 -0.040761 2.3927e-17)
(1.04472 -0.0428047 -1.1376e-17)
(1.04048 -0.0441276 3.82689e-18)
(1.03657 -0.0449009 -5.6081e-18)
(1.03299 -0.045274 -1.73354e-17)
(1.02968 -0.0453655 -7.99213e-18)
(1.02657 -0.0452389 -2.02461e-17)
(1.0236 -0.0449357 1.45744e-17)
(1.02074 -0.0444376 4.68568e-19)
(1.01804 -0.0437494 -1.82283e-17)
(1.01539 -0.0428744 6.9469e-18)
(1.01274 -0.0417865 1.2074e-17)
(1.01008 -0.0404678 1.02914e-17)
(1.00745 -0.0389197 -8.0063e-18)
(1.0049 -0.0371592 -2.54121e-18)
(1.00243 -0.0352268 8.88637e-18)
(1.00007 -0.0331725 1.72529e-17)
(0.9979 -0.031031 -2.85783e-18)
(0.99567 -0.0286005 -3.20622e-17)
(0.993905 -0.0268374 1.19988e-17)
(1.06322 0.00535009 -1.64106e-18)
(1.06403 0.00183611 1.66838e-19)
(1.06477 -0.00203696 -1.53543e-18)
(1.06532 -0.00651276 2.37841e-18)
(1.06552 -0.0116622 -1.0926e-17)
(1.06507 -0.0172987 -4.77968e-18)
(1.06362 -0.023036 -6.98098e-19)
(1.06102 -0.0284414 1.12249e-18)
(1.0574 -0.033162 1.40817e-17)
(1.05311 -0.0369968 -4.03892e-18)
(1.04857 -0.0398991 -5.29152e-19)
(1.04415 -0.0419469 -7.44113e-18)
(1.04002 -0.0432992 -1.57189e-17)
(1.03621 -0.0441187 -1.01105e-18)
(1.0327 -0.0445475 1.83636e-17)
(1.02944 -0.0446974 -1.20885e-19)
(1.02638 -0.0446281 2.25234e-17)
(1.02343 -0.0443754 -1.498e-17)
(1.0206 -0.043923 2.43539e-18)
(1.0179 -0.0432721 2.52332e-17)
(1.01527 -0.042425 -2.18941e-17)
(1.01264 -0.0413577 -9.08472e-18)
(1.01001 -0.0400539 -7.40777e-18)
(1.00742 -0.0385175 1.92378e-18)
(1.0049 -0.0367664 -9.72026e-18)
(1.00248 -0.0348446 -1.58611e-17)
(1.00016 -0.0328016 -2.90876e-17)
(0.998043 -0.0306742 1.32743e-17)
(0.99586 -0.0282719 8.04869e-18)
(0.994143 -0.0265283 -5.78487e-18)
(1.06218 0.0051252 8.50707e-19)
(1.06296 0.00170237 1.94045e-18)
(1.06366 -0.00207076 2.08828e-18)
(1.06417 -0.0064329 4.35072e-18)
(1.06433 -0.0114505 6.51883e-18)
(1.06386 -0.0169374 -1.79062e-18)
(1.06244 -0.0225245 1.90133e-18)
(1.05992 -0.0277945 -7.66097e-18)
(1.05641 -0.0324111 -3.40866e-18)
(1.05226 -0.0361776 2.05755e-17)
(1.04787 -0.0390489 6.65928e-18)
(1.04358 -0.0410976 4.40194e-18)
(1.03956 -0.0424752 -6.51793e-18)
(1.03584 -0.0433371 1.48712e-17)
(1.03241 -0.0438183 -2.44232e-17)
(1.0292 -0.0440244 3.42641e-18)
(1.02617 -0.0440108 -3.73453e-21)
(1.02326 -0.0438088 1.75626e-18)
(1.02045 -0.0434012 -7.21129e-19)
(1.01778 -0.0427874 -2.11207e-17)
(1.01516 -0.041969 -7.15591e-19)
(1.01255 -0.0409243 -6.75387e-18)
(1.00995 -0.0396375 4.65869e-18)
(1.0074 -0.038115 1.93888e-18)
(1.00492 -0.0363758 -6.79315e-19)
(1.00253 -0.0344666 3.03226e-18)
(1.00026 -0.0324368 5.94966e-18)
(0.998185 -0.0303253 9.27542e-18)
(0.996046 -0.0279521 1.16837e-17)
(0.994375 -0.0262265 -2.06203e-17)
(1.06114 0.00490729 -2.70189e-19)
(1.06189 0.00157623 -3.37533e-18)
(1.06257 -0.00209771 -3.2607e-18)
(1.06303 -0.00634907 -9.78717e-18)
(1.06315 -0.0112388 -3.52714e-18)
(1.06267 -0.0165812 -1.69995e-18)
(1.06128 -0.0220227 -3.14291e-18)
(1.05883 -0.0271609 7.77396e-18)
(1.05544 -0.0316751 9.40254e-18)
(1.05142 -0.0353734 -6.14873e-18)
(1.04717 -0.0382121 -2.72746e-17)
(1.04301 -0.0402591 1.75111e-18)
(1.0391 -0.0416599 8.07906e-18)
(1.03548 -0.0425608 -1.64371e-17)
(1.03211 -0.0430911 1.99116e-17)
(1.02896 -0.0433494 5.40615e-18)
(1.02597 -0.0433893 3.09975e-18)
(1.02309 -0.0432351 2.42544e-18)
(1.02031 -0.0428729 -1.44911e-17)
(1.01765 -0.0422975 8.41764e-18)
(1.01506 -0.0415096 1.17839e-17)
(1.01247 -0.0404893 1.6666e-17)
(1.0099 -0.0392213 9.91085e-18)
(1.00738 -0.037715 -2.13408e-17)
(1.00493 -0.0359892 -3.92783e-18)
(1.00259 -0.0340948 1.43867e-17)
(1.00036 -0.0320789 3.74385e-17)
(0.998327 -0.0299847 -1.43402e-17)
(0.99623 -0.0276405 1.12216e-17)
(0.994602 -0.0259317 9.37177e-18)
(1.06011 0.00469272 8.4393e-19)
(1.06084 0.00145373 -3.78368e-18)
(1.06148 -0.00212156 1.22613e-18)
(1.06191 -0.00626378 4.46649e-18)
(1.062 -0.0110291 -4.34782e-18)
(1.0615 -0.0162312 1.63971e-18)
(1.06013 -0.0215312 5.42106e-19)
(1.05776 -0.0265404 -7.13375e-19)
(1.05447 -0.0309536 -9.98699e-18)
(1.05059 -0.0345831 -4.24029e-18)
(1.04647 -0.0373874 2.0623e-17)
(1.04244 -0.039429 1.54337e-17)
(1.03864 -0.0408492 1.85646e-17)
(1.0351 -0.0417852 9.50092e-18)
(1.03181 -0.0423611 -5.56057e-18)
(1.02871 -0.0426692 4.98223e-19)
(1.02577 -0.0427605 -1.00879e-17)
(1.02292 -0.0426533 -3.7075e-18)
(1.02017 -0.0423358 2.84818e-17)
(1.01754 -0.0417986 7.49118e-18)
(1.01496 -0.0410424 8.39948e-18)
(1.0124 -0.0400485 1.684e-18)
(1.00985 -0.038802 -6.83448e-18)
(1.00736 -0.0373144 1.17573e-17)
(1.00495 -0.0356047 1.06872e-17)
(1.00265 -0.0337272 -6.87618e-18)
(1.00046 -0.0317275 -3.14494e-17)
(0.998467 -0.0296524 4.07372e-18)
(0.99641 -0.0273382 -3.59277e-18)
(0.994825 -0.0256448 2.05028e-17)
(1.05908 0.00448436 -1.80216e-18)
(1.05979 0.00133911 1.99966e-18)
(1.06041 -0.00213902 -1.33506e-19)
(1.0608 -0.00617348 2.05783e-18)
(1.06085 -0.0108188 1.2723e-17)
(1.06035 -0.015884 -4.56082e-18)
(1.05901 -0.0210478 5.4151e-18)
(1.0567 -0.0259308 -1.56499e-18)
(1.05352 -0.0302457 -6.24448e-18)
(1.04976 -0.0338063 -9.53201e-18)
(1.04577 -0.0365757 3.36024e-19)
(1.04187 -0.0386104 -1.72748e-17)
(1.03817 -0.0400453 -2.52531e-17)
(1.03473 -0.0410119 -5.70968e-18)
(1.03151 -0.0416296 1.71698e-17)
(1.02847 -0.0419843 -4.50841e-18)
(1.02557 -0.0421242 -8.19637e-18)
(1.02275 -0.042062 1.18152e-17)
(1.02003 -0.0417879 -2.99553e-17)
(1.01742 -0.0412889 1.09918e-17)
(1.01486 -0.0405654 -4.68699e-21)
(1.01233 -0.0395993 5.82621e-18)
(1.00981 -0.0383766 -1.80713e-18)
(1.00735 -0.0369101 -1.70642e-18)
(1.00498 -0.0352196 -3.97627e-18)
(1.00271 -0.0333614 -2.34115e-17)
(1.00056 -0.0313802 -1.71803e-18)
(0.998607 -0.0293259 -1.17738e-17)
(0.996589 -0.0270434 5.33688e-18)
(0.995043 -0.0253649 -3.09159e-17)
(1.05807 0.00427908 1.0436e-18)
(1.05876 0.0012271 4.74075e-18)
(1.05934 -0.00215401 -4.69978e-18)
(1.05971 -0.00608252 -9.63704e-19)
(1.05973 -0.0106102 -6.95291e-18)
(1.05921 -0.0155425 1.51694e-17)
(1.0579 -0.0205731 -7.21461e-19)
(1.05566 -0.0253325 -2.44061e-18)
(1.05258 -0.0295496 9.86119e-18)
(1.04894 -0.0330407 1.97145e-17)
(1.04508 -0.0357728 2.75017e-18)
(1.0413 -0.0377972 -7.69367e-18)
(1.03771 -0.0392426 2.89038e-17)
(1.03435 -0.040236 -3.1652e-18)
(1.0312 -0.0408921 -4.24957e-18)
(1.02822 -0.0412906 -1.17686e-17)
(1.02536 -0.0414774 -2.45655e-18)
(1.02258 -0.0414591 -5.68849e-18)
(1.01989 -0.0412277 7.22778e-18)
(1.01731 -0.0407664 -1.05446e-17)
(1.01477 -0.0400765 -1.74307e-17)
(1.01226 -0.0391401 -1.18422e-17)
(1.00977 -0.0379438 1.89008e-17)
(1.00735 -0.0365013 3.73187e-18)
(1.00501 -0.0348328 1.11547e-17)
(1.00278 -0.0329965 1.64659e-17)
(1.00066 -0.0310366 2.48877e-17)
(0.998745 -0.0290053 -1.73264e-17)
(0.996765 -0.026756 -3.82803e-17)
(0.995255 -0.0250927 5.51529e-18)
(1.05706 0.00408016 1.88112e-18)
(1.05773 0.00112102 -3.45944e-18)
(1.05829 -0.00216386 4.51662e-19)
(1.05863 -0.00598861 -3.13408e-18)
(1.05863 -0.0104013 -7.34346e-20)
(1.0581 -0.0152045 -8.62224e-18)
(1.05682 -0.020105 -7.09995e-18)
(1.05464 -0.0247435 2.20274e-18)
(1.05166 -0.0288635 1.05909e-18)
(1.04813 -0.0322844 -7.66588e-18)
(1.0444 -0.0349772 -2.02829e-17)
(1.04072 -0.036988 1.09297e-17)
(1.03724 -0.0384416 -2.00711e-17)
(1.03397 -0.0394593 -3.64653e-18)
(1.03089 -0.0401508 -1.11516e-17)
(1.02796 -0.0405909 1.9467e-17)
(1.02516 -0.0408214 9.12577e-18)
(1.02242 -0.0408462 9.06267e-18)
(1.01975 -0.0406564 1.25921e-17)
(1.01719 -0.040234 -1.1523e-17)
(1.01468 -0.039579 1.45004e-17)
(1.0122 -0.0386736 -4.38365e-18)
(1.00974 -0.0375057 -4.53705e-18)
(1.00735 -0.0360891 1.03983e-17)
(1.00504 -0.0344456 4.81517e-18)
(1.00284 -0.0326331 -4.39779e-18)
(1.00076 -0.030697 -8.06623e-18)
(0.998883 -0.0286903 1.97275e-17)
(0.996939 -0.0264757 3.40549e-20)
(0.995463 -0.024828 1.52621e-17)
(1.05606 0.0038843 7.81687e-19)
(1.05671 0.00101738 1.12757e-18)
(1.05725 -0.00217187 7.40258e-18)
(1.05756 -0.00589466 8.77481e-18)
(1.05754 -0.0101947 -2.93672e-18)
(1.05701 -0.0148724 -8.39411e-19)
(1.05575 -0.0196456 9.51173e-18)
(1.05364 -0.0241652 -5.64424e-18)
(1.05074 -0.0281881 4.87324e-18)
(1.04733 -0.0315377 -4.77714e-19)
(1.04371 -0.0341881 -2.43215e-18)
(1.04016 -0.0361814 -1.19654e-17)
(1.03677 -0.0376395 6.03414e-18)
(1.03359 -0.0386782 1.57777e-17)
(1.03058 -0.0394024 -1.06997e-17)
(1.02771 -0.0398821 -6.86435e-18)
(1.02495 -0.0401553 7.80528e-18)
(1.02225 -0.0402227 -2.3674e-17)
(1.01962 -0.0400746 -8.25287e-19)
(1.01709 -0.0396912 1.81016e-17)
(1.0146 -0.0390723 -6.0383e-18)
(1.01214 -0.0381998 1.57143e-17)
(1.00971 -0.0370629 3.37108e-18)
(1.00735 -0.0356748 -1.20374e-17)
(1.00507 -0.0340589 -1e-17)
(1.00291 -0.0322726 8.58756e-18)
(1.00086 -0.0303626 1.30667e-17)
(0.999017 -0.0283822 1.20555e-17)
(0.997109 -0.0262036 1.92531e-17)
(0.995667 -0.0245721 3.78563e-18)
(1.05507 0.00369586 2.87191e-19)
(1.0557 0.00092045 -1.80256e-18)
(1.05622 -0.00217365 -6.9861e-20)
(1.05651 -0.00579707 -2.31169e-18)
(1.05647 -0.00998667 1.99267e-18)
(1.05593 -0.0145427 -2.58879e-18)
(1.0547 -0.019191 -7.79183e-18)
(1.05265 -0.0235948 -3.42586e-18)
(1.04984 -0.0275211 -7.51289e-18)
(1.04654 -0.0307993 -5.80494e-18)
(1.04304 -0.0334053 2.0532e-17)
(1.03959 -0.0353794 2.40763e-17)
(1.0363 -0.0368385 -1.00436e-18)
(1.0332 -0.037895 -6.61174e-18)
(1.03027 -0.0386494 -1.87212e-18)
(1.02745 -0.0391668 3.69248e-18)
(1.02474 -0.0394808 -1.42339e-17)
(1.02208 -0.0395903 1.64044e-17)
(1.01948 -0.0394833 -1.01805e-17)
(1.01698 -0.03914 -1.13238e-17)
(1.01451 -0.0385583 -6.07994e-18)
(1.01208 -0.0377202 -1.48931e-17)
(1.00968 -0.0366159 -1.58167e-17)
(1.00735 -0.0352584 3.73678e-18)
(1.00511 -0.0336724 -1.3736e-18)
(1.00298 -0.0319144 9.19605e-18)
(1.00097 -0.0300325 -1.63202e-17)
(0.999151 -0.0280798 -1.45795e-17)
(0.997277 -0.0259386 1.04988e-18)
(0.995865 -0.0243242 1.86234e-17)
(1.05409 0.00351045 -3.06585e-18)
(1.0547 0.000825721 2.96058e-18)
(1.0552 -0.00217371 -1.30552e-18)
(1.05547 -0.00569956 -9.71547e-18)
(1.05541 -0.00978054 3.38389e-18)
(1.05488 -0.0142181 5.42342e-18)
(1.05367 -0.0187439 -1.28557e-18)
(1.05167 -0.023034 6.21124e-18)
(1.04896 -0.0268639 8.58085e-18)
(1.04576 -0.0300701 6.65965e-18)
(1.04237 -0.0326291 -1.06438e-17)
(1.03903 -0.034581 -1.64997e-17)
(1.03584 -0.0360377 9.48662e-18)
(1.03282 -0.0371092 -2.02471e-18)
(1.02995 -0.0378916 1.57724e-17)
(1.02719 -0.038445 3.46981e-18)
(1.02453 -0.0387999 1.07635e-17)
(1.02191 -0.0389512 -2.69093e-18)
(1.01935 -0.038886 -2.27335e-18)
(1.01687 -0.0385825 -1.41727e-17)
(1.01443 -0.038039 6.79958e-18)
(1.01203 -0.0372364 8.04253e-18)
(1.00966 -0.0361666 1.18264e-17)
(1.00736 -0.0348415 -6.99989e-18)
(1.00515 -0.0332874 2.90212e-18)
(1.00305 -0.0315595 -2.95528e-18)
(1.00107 -0.0297077 -1.06105e-17)
(0.999281 -0.0277839 -2.25534e-17)
(0.997441 -0.025681 4.81569e-18)
(0.996058 -0.0240846 -3.49893e-17)
(1.05311 0.00333171 1.47248e-18)
(1.05371 0.00073726 -4.06362e-18)
(1.0542 -0.00216889 1.07944e-18)
(1.05445 -0.0055991 6.64425e-18)
(1.05437 -0.00957407 7.72046e-19)
(1.05384 -0.0138961 -3.42079e-18)
(1.05266 -0.0183023 -2.13288e-18)
(1.05072 -0.0224811 -6.19349e-18)
(1.04808 -0.0262159 -6.02378e-18)
(1.04499 -0.0293499 1.08641e-17)
(1.0417 -0.0318607 5.84289e-18)
(1.03847 -0.033788 4.10893e-18)
(1.03537 -0.0352406 -1.77571e-17)
(1.03243 -0.0363254 1.98114e-17)
(1.02963 -0.0371336 5.77324e-18)
(1.02693 -0.0377217 -5.54233e-19)
(1.02431 -0.0381145 -1.35576e-17)
(1.02173 -0.038308 -1.90324e-17)
(1.01921 -0.0382844 -6.47487e-18)
(1.01676 -0.0380227 1.47112e-17)
(1.01435 -0.0375187 -7.5227e-18)
(1.01197 -0.0367529 -4.37985e-18)
(1.00963 -0.0357187 -5.30167e-18)
(1.00736 -0.0344269 7.02146e-18)
(1.00518 -0.0329061 -4.22402e-18)
(1.00312 -0.0312091 -1.58453e-17)
(1.00116 -0.0293884 1.3744e-17)
(0.99941 -0.0274936 1.18284e-17)
(0.997602 -0.0254293 -4.05714e-18)
(0.996247 -0.0238518 1.71821e-18)
(1.05215 0.00315601 1.01372e-18)
(1.05273 0.000651192 -1.46514e-18)
(1.0532 -0.00216267 -4.86608e-18)
(1.05344 -0.0054987 -5.32452e-18)
(1.05335 -0.00936966 5.37649e-18)
(1.05282 -0.0135789 2.30354e-18)
(1.05167 -0.0178684 1.85878e-18)
(1.04978 -0.0219387 3.715e-18)
(1.04723 -0.02558 -4.2723e-18)
(1.04423 -0.028642 -1.11091e-17)
(1.04105 -0.0311032 4.11118e-18)
(1.03791 -0.0330038 -6.4219e-18)
(1.0349 -0.0344499 1.10517e-17)
(1.03204 -0.0355458 -1.36499e-17)
(1.02931 -0.036378 -1.57322e-17)
(1.02666 -0.0369995 -1.51429e-17)
(1.02409 -0.0374306 1.59599e-17)
(1.02156 -0.0376663 1.70664e-17)
(1.01907 -0.0376844 1.89471e-17)
(1.01665 -0.0374641 -7.90402e-19)
(1.01427 -0.0369998 1.11728e-17)
(1.01192 -0.0362711 1.4255e-17)
(1.00961 -0.0352731 5.54441e-18)
(1.00737 -0.0340152 7.92311e-18)
(1.00522 -0.0325284 4.68363e-18)
(1.00318 -0.0308629 8.44028e-18)
(1.00126 -0.0290741 2.70777e-18)
(0.999536 -0.0272086 1.32719e-17)
(0.99776 -0.0251829 1.33011e-17)
(0.99643 -0.023625 1.2533e-17)
(1.0512 0.00298847 -3.03225e-18)
(1.05176 0.000571774 4.40091e-18)
(1.05222 -0.00215061 2.41048e-19)
(1.05244 -0.00539577 7.10733e-18)
(1.05235 -0.00916441 -9.94381e-18)
(1.05182 -0.0132649 -6.45092e-18)
(1.05069 -0.0174404 6.91351e-18)
(1.04886 -0.0214067 3.91265e-18)
(1.04638 -0.0249567 1.31988e-17)
(1.04348 -0.0279493 -1.14592e-18)
(1.0404 -0.0303608 6.86368e-18)
(1.03736 -0.0322345 -4.2545e-18)
(1.03444 -0.033673 -1.18662e-17)
(1.03165 -0.034778 -1.17658e-17)
(1.02898 -0.0356314 -7.78864e-18)
(1.0264 -0.0362839 1.80183e-17)
(1.02387 -0.0367506 -1.94089e-18)
(1.02138 -0.0370275 -8.79512e-18)
(1.01892 -0.0370872 -2.85471e-20)
(1.01654 -0.0369098 -7.52592e-18)
(1.01418 -0.0364858 -9.17327e-18)
(1.01186 -0.0357948 2.04634e-18)
(1.00958 -0.034833 2.82008e-18)
(1.00737 -0.0336091 -1.79991e-17)
(1.00526 -0.0321561 -1.61111e-18)
(1.00325 -0.0305221 -1.51698e-18)
(1.00136 -0.0287646 -4.78915e-18)
(0.999661 -0.0269277 3.26592e-18)
(0.997915 -0.0249396 2.96968e-18)
(0.99661 -0.0234018 -1.03328e-18)
(1.05025 0.0028238 2.58209e-18)
(1.0508 0.000494768 -2.64716e-18)
(1.05125 -0.00213763 -1.42565e-18)
(1.05146 -0.00529326 -1.74918e-18)
(1.05136 -0.00896141 1.07653e-17)
(1.05084 -0.0129552 -8.47635e-19)
(1.04973 -0.0170199 -4.92214e-18)
(1.04795 -0.0208856 -1.04545e-18)
(1.04555 -0.0243475 -1.57355e-18)
(1.04274 -0.0272729 -7.42266e-18)
(1.03976 -0.0296358 -1.23365e-17)
(1.03681 -0.0314823 2.77666e-17)
(1.03397 -0.032912 4.42212e-18)
(1.03126 -0.0340242 -1.00018e-18)
(1.02865 -0.0348969 5.27551e-18)
(1.02612 -0.0355785 -2.38136e-17)
(1.02364 -0.0360799 2.55773e-18)
(1.02119 -0.0363968 1.78391e-18)
(1.01878 -0.0364971 -4.16622e-19)
(1.01642 -0.0363608 -3.01148e-18)
(1.0141 -0.0359761 2.40035e-18)
(1.01181 -0.0353221 -1.02783e-17)
(1.00956 -0.034396 -1.27991e-17)
(1.00738 -0.0332059 -1.04884e-17)
(1.00529 -0.0317864 -1.32087e-17)
(1.00332 -0.0301838 7.32902e-20)
(1.00145 -0.0284575 -4.07877e-18)
(0.999783 -0.0266489 1.54625e-17)
(0.998067 -0.0246975 -2.03916e-17)
(0.996786 -0.0231804 -7.49192e-18)
(1.04932 0.00266593 4.11633e-19)
(1.04985 0.000424401 -6.83666e-19)
(1.05029 -0.00211983 3.13998e-18)
(1.05049 -0.00518893 1.18955e-18)
(1.05038 -0.00875971 -6.27829e-18)
(1.04987 -0.0126503 6.85335e-18)
(1.04879 -0.0166077 -2.45054e-18)
(1.04706 -0.0203767 2.36146e-18)
(1.04473 -0.0237542 -7.58474e-18)
(1.04201 -0.0266155 4.44528e-18)
(1.03912 -0.028932 -7.41612e-19)
(1.03626 -0.0307525 -2.31765e-17)
(1.03351 -0.032173 -2.03867e-18)
(1.03087 -0.0332906 1.12066e-17)
(1.02832 -0.0341797 -1.97649e-18)
(1.02584 -0.0348869 5.81535e-18)
(1.02341 -0.0354195 6.39495e-18)
(1.021 -0.0357734 1.17733e-17)
(1.01862 -0.0359129 1.07123e-17)
(1.0163 -0.0358174 2.21683e-18)
(1.014 -0.0354716 -1.17464e-18)
(1.01175 -0.0348543 -7.30951e-18)
(1.00953 -0.0339632 -1.07733e-17)
(1.00738 -0.0328065 1.00356e-17)
(1.00533 -0.0314197 7.05463e-18)
(1.00338 -0.029848 -2.92679e-18)
(1.00155 -0.0281518 -2.8044e-18)
(0.999905 -0.0263707 -1.60394e-17)
(0.998218 -0.0244543 -4.92273e-19)
(0.99696 -0.0229582 -2.15278e-18)
(1.0484 0.00251031 -8.16291e-19)
(1.04892 0.000356192 1.48142e-19)
(1.04934 -0.00210101 1.04176e-20)
(1.04953 -0.00508453 -5.99281e-18)
(1.04943 -0.00856058 3.13423e-18)
(1.04892 -0.0123508 -2.96144e-18)
(1.04787 -0.0162052 7.1877e-18)
(1.04618 -0.0198806 -4.16091e-18)
(1.04392 -0.023177 7.36897e-18)
(1.04128 -0.0259764 9.1868e-19)
(1.03849 -0.0282483 -2.05443e-18)
(1.03572 -0.0300434 1.28386e-17)
(1.03304 -0.0314546 -8.76694e-18)
(1.03047 -0.0325765 9.70336e-18)
(1.02798 -0.0334802 6.92994e-18)
(1.02556 -0.0342108 9.82288e-18)
(1.02317 -0.0347727 -2.00202e-17)
(1.02081 -0.0351612 -3.07344e-18)
(1.01847 -0.035337 -1.10878e-17)
(1.01618 -0.035279 1.74839e-17)
(1.01391 -0.0349694 5.04816e-18)
(1.01169 -0.0343872 -5.09919e-20)
(1.0095 -0.0335299 1.51098e-17)
(1.00739 -0.0324059 3.31518e-18)
(1.00537 -0.0310513 1.34828e-18)
(1.00345 -0.0295104 1.05692e-17)
(1.00164 -0.027844 -4.83442e-18)
(1.00003 -0.0260903 -2.22787e-17)
(0.998367 -0.024208 -2.02295e-17)
(0.997131 -0.0227334 1.44912e-17)
(1.04749 0.00236031 1.03106e-19)
(1.04799 0.00029313 1.87851e-18)
(1.0484 -0.00207819 2.41615e-18)
(1.04859 -0.00497774 4.03032e-18)
(1.04848 -0.00836267 -7.4819e-18)
(1.04798 -0.0120573 2.78386e-18)
(1.04696 -0.0158139 -2.788e-18)
(1.04532 -0.0194001 -2.53316e-18)
(1.04313 -0.0226188 -4.53907e-18)
(1.04057 -0.0253582 -1.74232e-18)
(1.03786 -0.0275871 1.35328e-17)
(1.03518 -0.0293577 -3.59498e-18)
(1.03258 -0.0307591 2.44386e-17)
(1.03007 -0.0318838 2.16787e-18)
(1.02765 -0.0327998 -5.15316e-18)
(1.02527 -0.0335505 5.19369e-18)
(1.02293 -0.0341379 1.17234e-17)
(1.02061 -0.0345571 1.4033e-18)
(1.01831 -0.0347666 -1.63144e-17)
(1.01605 -0.0347443 -1.13407e-17)
(1.01382 -0.0344695 -3.3082e-18)
(1.01163 -0.033921 -1.02837e-17)
(1.00947 -0.0330964 -3.27442e-18)
(1.00739 -0.0320044 7.94592e-18)
(1.0054 -0.0306812 -5.05218e-18)
(1.00352 -0.0291707 -2.13827e-17)
(1.00174 -0.0275333 1.69502e-17)
(1.00015 -0.0258065 1.98706e-17)
(0.998516 -0.023957 9.82836e-19)
(0.997301 -0.0225041 -2.08739e-17)
(1.04659 0.0022121 -1.08833e-18)
(1.04708 0.000230611 1.96097e-18)
(1.04748 -0.00205534 -2.171e-18)
(1.04766 -0.00487049 2.46513e-19)
(1.04755 -0.00816644 -1.51019e-18)
(1.04707 -0.0117694 1.01523e-18)
(1.04607 -0.0154339 -4.69833e-18)
(1.04447 -0.0189348 2.29289e-18)
(1.04234 -0.0220786 2.30737e-19)
(1.03987 -0.0247591 1.30178e-17)
(1.03724 -0.0269454 -1.6998e-17)
(1.03464 -0.028691 -9.99013e-18)
(1.03211 -0.0300821 -9.4001e-18)
(1.02967 -0.0312085 -2.18211e-17)
(1.0273 -0.0321353 1.62312e-18)
(1.02498 -0.0329044 -1.47279e-17)
(1.02268 -0.0335155 -5.61177e-18)
(1.0204 -0.0339627 -6.99685e-18)
(1.01814 -0.0342026 1.32698e-17)
(1.01592 -0.034212 9.17875e-18)
(1.01373 -0.0339689 -1.49448e-17)
(1.01156 -0.033452 1.29989e-17)
(1.00945 -0.0326586 4.37347e-18)
(1.0074 -0.0315979 -2.64514e-18)
(1.00544 -0.0303057 1.54102e-17)
(1.00358 -0.0288255 2.16526e-17)
(1.00183 -0.0272173 -1.13564e-17)
(1.00027 -0.0255176 -1.36819e-17)
(0.998664 -0.0237003 2.26235e-17)
(0.997468 -0.0222695 3.65335e-17)
(1.0457 0.00206893 3.15664e-19)
(1.04617 0.000171953 -2.09706e-18)
(1.04657 -0.00202984 3.84181e-20)
(1.04674 -0.00476169 8.45002e-19)
(1.04664 -0.00797183 1.00116e-18)
(1.04616 -0.011488 -7.77699e-19)
(1.04519 -0.0150659 2.92865e-18)
(1.04364 -0.0184859 5.14312e-19)
(1.04157 -0.0215578 1.53743e-18)
(1.03917 -0.0241805 -1.07878e-17)
(1.03663 -0.0263245 2.84484e-18)
(1.03411 -0.0280445 3.13232e-18)
(1.03165 -0.0294239 -1.41528e-17)
(1.02927 -0.0305503 2.45201e-17)
(1.02696 -0.0314856 8.30144e-18)
(1.02468 -0.0322703 1.87844e-17)
(1.02243 -0.0329018 1.26281e-17)
(1.0202 -0.0333736 -1.37034e-17)
(1.01797 -0.0336412 -5.03708e-18)
(1.01579 -0.0336806 -6.61835e-18)
(1.01363 -0.0334675 -2.35989e-18)
(1.0115 -0.0329809 2.83145e-18)
(1.00942 -0.0322179 -1.34673e-17)
(1.0074 -0.0311878 -8.71252e-18)
(1.00548 -0.0299261 7.67678e-18)
(1.00365 -0.0284761 -1.01945e-17)
(1.00193 -0.0268967 6.78066e-18)
(1.00039 -0.0252241 1.01881e-17)
(0.998811 -0.0234383 -1.1949e-17)
(0.997634 -0.0220296 -2.10732e-17)
(1.04483 0.0019277 7.30076e-19)
(1.04528 0.000114183 -3.02679e-18)
(1.04567 -0.00200439 4.44718e-19)
(1.04584 -0.00465364 1.09783e-18)
(1.04574 -0.00778022 6.55619e-18)
(1.04527 -0.0112128 -1.14408e-18)
(1.04432 -0.0147083 2.96138e-18)
(1.04281 -0.0180505 1.70416e-18)
(1.04081 -0.0210527 3.25146e-18)
(1.03848 -0.0236182 -5.54383e-19)
(1.03602 -0.02572 -3.66112e-18)
(1.03357 -0.0274136 5.23068e-18)
(1.03119 -0.0287803 1.34435e-17)
(1.02887 -0.0299051 -1.78547e-17)
(1.02661 -0.0308476 -4.5045e-18)
(1.02438 -0.031646 -7.75345e-18)
(1.02218 -0.0322962 -5.33278e-19)
(1.01998 -0.0327903 1.32096e-17)
(1.0178 -0.0330829 -1.43095e-18)
(1.01566 -0.033149 -3.35205e-19)
(1.01353 -0.0329634 2.67329e-17)
(1.01144 -0.0325053 -8.00602e-19)
(1.00939 -0.0317715 1.45374e-17)
(1.00741 -0.0307716 1.37338e-17)
(1.00551 -0.0295404 -1.9383e-17)
(1.00372 -0.0281208 1.41012e-17)
(1.00202 -0.0265707 4.22754e-18)
(1.00051 -0.0249258 9.27355e-18)
(0.998957 -0.0231715 1.87418e-17)
(0.997798 -0.0217849 1.68994e-17)
(1.04396 0.00179136 -2.30377e-19)
(1.0444 6.06334e-05 -3.89168e-19)
(1.04478 -0.00197666 -1.60785e-18)
(1.04495 -0.00454609 -5.68576e-18)
(1.04485 -0.00759252 -4.87257e-18)
(1.04439 -0.0109448 3.26363e-18)
(1.04346 -0.0143609 -2.02267e-18)
(1.042 -0.0176277 4.99785e-18)
(1.04006 -0.0205619 -6.4338e-18)
(1.0378 -0.0230714 1.03372e-17)
(1.03542 -0.0251318 4.35697e-18)
(1.03304 -0.0267989 4.9816e-18)
(1.03073 -0.0281518 -1.11874e-17)
(1.02847 -0.0292737 -2.38942e-20)
(1.02626 -0.0302211 -5.10244e-18)
(1.02409 -0.0310306 -1.50818e-17)
(1.02193 -0.0316964 -1.45771e-17)
(1.01977 -0.0322098 5.14202e-18)
(1.01763 -0.0325251 5.87682e-19)
(1.01552 -0.0326163 3.73973e-18)
(1.01343 -0.0324571 -2.31535e-17)
(1.01138 -0.0320268 1.35929e-17)
(1.00936 -0.0313216 -9.3043e-18)
(1.00742 -0.0303518 -1.14568e-17)
(1.00555 -0.0291511 9.78992e-18)
(1.00378 -0.027762 -2.11871e-18)
(1.00212 -0.0262412 -7.1676e-18)
(1.00063 -0.0246243 -1.44427e-17)
(0.999103 -0.0229013 -1.40308e-17)
(0.997961 -0.0215365 -3.4301e-18)
(1.04311 0.00165709 2.47645e-19)
(1.04354 8.01318e-06 4.64498e-18)
(1.04391 -0.00194976 2.05244e-18)
(1.04407 -0.00444137 8.29056e-18)
(1.04397 -0.00740971 -2.63682e-18)
(1.04353 -0.0106832 8.4775e-19)
(1.04262 -0.0140214 1.63138e-18)
(1.0412 -0.0172138 -5.44551e-18)
(1.03932 -0.0200815 1.53712e-18)
(1.03713 -0.0225359 -6.34833e-18)
(1.03482 -0.0245556 -1.19505e-17)
(1.03252 -0.0261963 -9.20994e-18)
(1.03027 -0.0275354 2.52462e-17)
(1.02807 -0.0286534 2.12841e-18)
(1.02591 -0.0296045 -5.25719e-18)
(1.02378 -0.0304235 1.21082e-17)
(1.02167 -0.0311031 4.40697e-18)
(1.01956 -0.0316336 -6.37852e-18)
(1.01746 -0.031969 3.63681e-19)
(1.01539 -0.0320828 7.2832e-19)
(1.01333 -0.0319479 2.11912e-17)
(1.01131 -0.0315439 -1.30085e-17)
(1.00934 -0.0308669 6.50108e-18)
(1.00742 -0.0299268 -7.91447e-18)
(1.00559 -0.0287567 -2.06727e-18)
(1.00385 -0.0273986 -1.2292e-17)
(1.00221 -0.0259078 8.95481e-19)
(1.00074 -0.0243196 1.12814e-17)
(0.999247 -0.0226284 2.44393e-17)
(0.998122 -0.0212854 -1.20131e-17)
(1.04227 0.00152745 -1.21121e-18)
(1.04268 -4.1331e-05 1.98238e-19)
(1.04304 -0.00192187 -5.1093e-18)
(1.04321 -0.00433826 -2.40892e-18)
(1.04311 -0.00723094 8.02572e-19)
(1.04267 -0.0104274 -9.49599e-18)
(1.04179 -0.0136893 -4.80718e-18)
(1.04041 -0.0168087 3.74782e-18)
(1.03858 -0.0196112 -6.55146e-18)
(1.03647 -0.0220121 -2.60957e-18)
(1.03423 -0.0239924 9.90325e-18)
(1.032 -0.0256076 -7.21803e-18)
(1.02981 -0.0269326 -2.2392e-17)
(1.02767 -0.0280458 9.64854e-18)
(1.02557 -0.0289989 1.34665e-17)
(1.02348 -0.0298248 -1.62158e-18)
(1.02141 -0.0305156 9.46243e-18)
(1.01934 -0.0310603 -1.93082e-18)
(1.01728 -0.0314138 2.33809e-18)
(1.01525 -0.0315486 8.99645e-18)
(1.01323 -0.031437 -2.5057e-18)
(1.01125 -0.0310589 7.3136e-18)
(1.00931 -0.0304095 2.95347e-18)
(1.00743 -0.0294993 9.12847e-18)
(1.00563 -0.02836 -2.58698e-18)
(1.00392 -0.0270331 -8.80972e-18)
(1.0023 -0.0255725 3.53108e-19)
(1.00086 -0.0240135 -1.04366e-17)
(0.99939 -0.0223542 1.62162e-18)
(0.998281 -0.0210326 1.21418e-17)
(1.04144 0.00139978 3.71394e-21)
(1.04184 -9.02832e-05 -4.66691e-19)
(1.0422 -0.00189514 1.12442e-18)
(1.04236 -0.00423759 -8.3736e-18)
(1.04226 -0.00705584 7.28201e-18)
(1.04183 -0.0101765 8.4941e-18)
(1.04098 -0.0133632 -2.02039e-18)
(1.03964 -0.0164109 -3.75662e-19)
(1.03786 -0.0191497 6.80432e-18)
(1.03582 -0.0214982 3.73555e-18)
(1.03365 -0.0234402 6.65107e-19)
(1.03148 -0.0250302 6.22507e-18)
(1.02935 -0.0263411 7.15993e-18)
(1.02727 -0.0274488 -3.02861e-18)
(1.02521 -0.0284028 5.62577e-18)
(1.02318 -0.0292343 3.46551e-18)
(1.02115 -0.0299344 -1.15987e-17)
(1.01913 -0.0304916 3.70298e-18)
(1.01711 -0.0308607 -7.77922e-18)
(1.01511 -0.0310144 -1.08899e-17)
(1.01314 -0.0309243 -2.96276e-18)
(1.01119 -0.0305707 -1.57676e-17)
(1.00928 -0.0299485 -1.6084e-17)
(1.00743 -0.0290679 -5.29864e-18)
(1.00566 -0.0279595 -1.09509e-17)
(1.00398 -0.0266643 1.76501e-17)
(1.00239 -0.0252346 4.35973e-18)
(1.00097 -0.0237056 -1.2576e-18)
(0.99953 -0.0220787 -3.39068e-17)
(0.998436 -0.0207788 -1.77316e-17)
(1.04063 0.00127645 1.31952e-18)
(1.04101 -0.000136386 -1.9166e-18)
(1.04136 -0.00186739 1.47159e-19)
(1.04151 -0.0041379 6.54132e-18)
(1.04142 -0.00688373 -7.81583e-18)
(1.041 -0.00993031 -4.5484e-18)
(1.04017 -0.0130436 1.09718e-18)
(1.03887 -0.0160214 -2.02144e-18)
(1.03715 -0.0186982 -2.24424e-18)
(1.03517 -0.020996 -7.91975e-18)
(1.03307 -0.0229006 1.09479e-17)
(1.03096 -0.0244659 1.3811e-17)
(1.02889 -0.0257623 -6.66667e-18)
(1.02687 -0.0268635 -1.67802e-17)
(1.02487 -0.0278167 -3.23893e-18)
(1.02288 -0.0286515 -1.16969e-17)
(1.0209 -0.0293587 -4.21238e-19)
(1.01891 -0.0299259 -5.83579e-18)
(1.01694 -0.0303091 1.07242e-17)
(1.01498 -0.0304803 -1.01563e-18)
(1.01304 -0.0304109 -4.73741e-18)
(1.01113 -0.0300813 1.17798e-17)
(1.00925 -0.029486 1.52451e-17)
(1.00744 -0.0286349 -2.57583e-18)
(1.0057 -0.0275576 3.79493e-18)
(1.00404 -0.0262943 -1.09359e-17)
(1.00248 -0.0248958 -4.20081e-18)
(1.00109 -0.0233971 6.60626e-18)
(0.999667 -0.0218029 -9.11492e-18)
(0.998589 -0.0205245 -3.31117e-18)
(1.03982 0.00115502 -6.71114e-19)
(1.04019 -0.000182204 3.3287e-18)
(1.04053 -0.00184086 2.41721e-18)
(1.04069 -0.00404074 -3.97014e-18)
(1.04059 -0.00671531 1.05097e-18)
(1.04019 -0.00968894 7.86042e-18)
(1.03938 -0.0127301 -2.26025e-19)
(1.03812 -0.0156392 -3.05964e-18)
(1.03646 -0.0182555 1.65106e-18)
(1.03453 -0.0205037 5.893e-18)
(1.0325 -0.0223716 -8.49291e-18)
(1.03045 -0.0239121 -1.50057e-17)
(1.02844 -0.0251936 5.45336e-18)
(1.02647 -0.0262873 -2.86581e-19)
(1.02451 -0.0272385 3.57098e-18)
(1.02257 -0.0280755 1.08149e-17)
(1.02064 -0.0287882 1.63187e-17)
(1.0187 -0.0293641 3.06735e-18)
(1.01676 -0.0297596 1.3514e-19)
(1.01484 -0.0299466 -2.37643e-18)
(1.01294 -0.0298965 -9.6517e-19)
(1.01106 -0.02959 -3.6761e-18)
(1.00922 -0.029021 -1.84089e-18)
(1.00744 -0.0281992 4.59096e-18)
(1.00573 -0.027153 1.13637e-17)
(1.00411 -0.0259218 -8.70355e-18)
(1.00257 -0.024555 1.12874e-18)
(1.0012 -0.0230873 8.43494e-18)
(0.999802 -0.0215264 1.49871e-17)
(0.998737 -0.0202697 -2.17119e-18)
(1.03903 0.00103778 7.3876e-19)
(1.03939 -0.000225394 -3.65913e-18)
(1.03972 -0.00181367 6.40853e-19)
(1.03987 -0.00394484 4.41579e-18)
(1.03978 -0.00654982 3.04159e-19)
(1.03938 -0.00945197 -3.78295e-18)
(1.0386 -0.0124225 5.34993e-19)
(1.03738 -0.0152648 3.64676e-19)
(1.03576 -0.0178222 1.4156e-18)
(1.0339 -0.0200223 -1.34382e-17)
(1.03193 -0.0218543 6.90491e-18)
(1.02994 -0.02337 4.85377e-18)
(1.02799 -0.0246358 -9.54999e-19)
(1.02607 -0.0257208 1.73188e-17)
(1.02417 -0.0266684 -4.99805e-19)
(1.02227 -0.0275055 5.89605e-18)
(1.02038 -0.028222 -7.53056e-18)
(1.01848 -0.0288048 1.81771e-18)
(1.01659 -0.0292113 -1.06111e-17)
(1.01471 -0.0294134 5.48904e-18)
(1.01284 -0.0293821 -5.42315e-18)
(1.011 -0.0290982 -2.06273e-18)
(1.0092 -0.0285553 -6.64512e-18)
(1.00745 -0.0277627 -4.33145e-18)
(1.00577 -0.0267477 -4.40227e-18)
(1.00417 -0.0255487 7.90618e-18)
(1.00266 -0.0242138 -9.36999e-18)
(1.00131 -0.0227774 -4.58542e-18)
(0.999935 -0.0212498 6.47799e-19)
(0.998884 -0.0200148 2.82357e-18)
(1.03825 0.000922522 -1.27761e-18)
(1.03859 -0.000268212 2.68371e-18)
(1.03892 -0.00178764 -9.9514e-19)
(1.03907 -0.00385127 7.92107e-19)
(1.03898 -0.00638755 5.04555e-19)
(1.03859 -0.00921918 -1.81417e-19)
(1.03783 -0.0121202 8.7804e-19)
(1.03665 -0.0148972 4.28943e-18)
(1.03509 -0.0173973 -1.74222e-18)
(1.03328 -0.0195503 7.51958e-18)
(1.03137 -0.0213468 -3.48104e-18)
(1.02944 -0.0228374 1.28583e-19)
(1.02754 -0.0240868 -4.14858e-19)
(1.02567 -0.0251619 -8.03409e-18)
(1.02382 -0.0261046 -9.7609e-19)
(1.02197 -0.0269407 -5.1054e-18)
(1.02012 -0.0276598 -7.3491e-18)
(1.01827 -0.0282484 -9.19595e-18)
(1.01642 -0.0286649 4.81501e-18)
(1.01458 -0.0288808 -4.32098e-18)
(1.01275 -0.0288672 1.21164e-17)
(1.01094 -0.0286053 1.08475e-17)
(1.00917 -0.0280879 1.72673e-17)
(1.00745 -0.0273243 -1.90216e-18)
(1.0058 -0.0263403 -3.25695e-18)
(1.00423 -0.0251736 2.0691e-18)
(1.00275 -0.0238709 1.59128e-17)
(1.00141 -0.0224663 5.56624e-18)
(1.00006 -0.0209724 -7.39961e-20)
(0.999026 -0.0197596 2.13155e-18)
(1.03748 0.000811335 6.09797e-19)
(1.03781 -0.000308544 -3.30493e-18)
(1.03813 -0.00176082 1.23908e-18)
(1.03827 -0.00375851 -2.3498e-18)
(1.03819 -0.00622761 6.16083e-19)
(1.03781 -0.00899029 -7.59066e-19)
(1.03708 -0.0118237 6.39485e-18)
(1.03593 -0.0145371 -2.84897e-18)
(1.03441 -0.0169817 1.01691e-18)
(1.03267 -0.0190888 2.44681e-18)
(1.03081 -0.0208503 -3.28939e-18)
(1.02894 -0.0223156 6.7464e-18)
(1.02709 -0.0235475 1.01169e-17)
(1.02527 -0.0246114 1.54345e-17)
(1.02347 -0.0255477 -1.81233e-18)
(1.02167 -0.026381 6.07736e-18)
(1.01986 -0.0271012 3.01723e-18)
(1.01805 -0.0276943 4.89652e-18)
(1.01624 -0.0281198 8.28129e-18)
(1.01444 -0.0283489 5.5429e-18)
(1.01265 -0.0283528 1.49014e-19)
(1.01088 -0.0281125 -4.27336e-18)
(1.00914 -0.0276206 -1.59432e-17)
(1.00745 -0.0268857 1.26196e-17)
(1.00583 -0.0259327 -4.80367e-18)
(1.00429 -0.0247983 1.21194e-17)
(1.00283 -0.0235279 5.96847e-18)
(1.00152 -0.0221551 -3.89912e-18)
(1.00019 -0.0206948 7.34501e-18)
(0.999165 -0.0195042 2.2558e-17)
(1.03673 0.000702042 1.51926e-19)
(1.03704 -0.000348595 5.39556e-19)
(1.03735 -0.00173507 -8.31349e-19)
(1.03749 -0.00366792 -9.72878e-19)
(1.03741 -0.00607091 -1.2446e-18)
(1.03705 -0.00876586 2.83214e-18)
(1.03633 -0.0115329 -2.08937e-18)
(1.03522 -0.0141843 6.19251e-18)
(1.03375 -0.0165745 -4.28997e-18)
(1.03206 -0.0186365 5.32182e-18)
(1.03026 -0.0203631 -5.033e-18)
(1.02844 -0.0218024 1.51133e-18)
(1.02665 -0.0230161 -1.03835e-17)
(1.02488 -0.0240675 -2.50045e-17)
(1.02312 -0.0249963 -6.01722e-19)
(1.02137 -0.0258259 -6.15115e-18)
(1.01961 -0.0265463 -1.24704e-17)
(1.01784 -0.0271432 -7.44709e-19)
(1.01607 -0.0275767 5.89955e-18)
(1.01431 -0.0278182 -1.42611e-17)
(1.01255 -0.0278387 -1.82978e-17)
(1.01081 -0.0276194 -9.45082e-18)
(1.00911 -0.0271523 8.69873e-18)
(1.00745 -0.0264458 9.11555e-18)
(1.00586 -0.0255236 8.31956e-18)
(1.00434 -0.0244216 -8.83019e-18)
(1.0029 -0.0231835 -2.16572e-17)
(1.00161 -0.0218428 -1.48657e-17)
(1.00031 -0.0204165 -9.63501e-18)
(0.999297 -0.0192482 -1.43135e-17)
(1.03598 0.000596723 -1.68808e-19)
(1.03629 -0.000386219 4.599e-18)
(1.03659 -0.00170852 6.69499e-19)
(1.03673 -0.00357817 -1.93611e-19)
(1.03664 -0.00591667 1.03828e-18)
(1.03629 -0.00854554 -4.11498e-18)
(1.0356 -0.0112479 -3.09798e-18)
(1.03452 -0.0138388 -4.27104e-18)
(1.0331 -0.016176 -1.56502e-19)
(1.03146 -0.0181938 -1.40896e-17)
(1.02971 -0.0198857 2.11097e-18)
(1.02795 -0.0212988 5.25128e-18)
(1.02621 -0.0224933 -2.22152e-18)
(1.02448 -0.0235312 1.11272e-17)
(1.02277 -0.0244512 2.50616e-18)
(1.02107 -0.0252759 -5.67449e-18)
(1.01935 -0.0259952 1.18434e-17)
(1.01763 -0.026595 6.07902e-18)
(1.0159 -0.0270358 -5.79102e-18)
(1.01417 -0.0272892 1.5625e-17)
(1.01245 -0.027326 1.52953e-17)
(1.01075 -0.0271273 6.01768e-18)
(1.00908 -0.0266849 1.38438e-18)
(1.00745 -0.0260065 -8.70267e-18)
(1.00588 -0.0251149 -3.78893e-19)
(1.00439 -0.0240449 -3.86703e-18)
(1.00298 -0.0228392 6.45596e-18)
(1.00171 -0.0215306 1.49593e-17)
(1.00042 -0.020138 1.12492e-18)
(0.999425 -0.0189918 -3.54874e-18)
(1.03525 0.000493424 5.65197e-19)
(1.03554 -0.000423309 2.02926e-19)
(1.03583 -0.00168285 5.39782e-19)
(1.03597 -0.0034905 4.6714e-18)
(1.03589 -0.00576567 2.40185e-18)
(1.03555 -0.00832971 5.72128e-18)
(1.03488 -0.0109687 2.45914e-18)
(1.03383 -0.0135002 -7.51443e-18)
(1.03246 -0.0157852 -3.93169e-18)
(1.03087 -0.0177592 4.84905e-19)
(1.02917 -0.0194165 9.86644e-18)
(1.02746 -0.020803 1.73353e-18)
(1.02577 -0.0219776 4.90781e-18)
(1.02409 -0.0230013 1.8821e-18)
(1.02243 -0.0239117 -5.62052e-18)
(1.02077 -0.0247307 1.01225e-17)
(1.0191 -0.0254484 6.94348e-18)
(1.01741 -0.0260504 -8.57937e-18)
(1.01573 -0.0264979 -4.84461e-18)
(1.01404 -0.0267623 -1.60433e-19)
(1.01236 -0.0268147 -1.09299e-18)
(1.01069 -0.0266359 -8.78434e-19)
(1.00905 -0.0262175 1.6138e-18)
(1.00745 -0.0255668 -5.28228e-19)
(1.00591 -0.0247054 6.35802e-18)
(1.00444 -0.0236673 6.06033e-18)
(1.00305 -0.0224939 1.25916e-18)
(1.0018 -0.0212173 4.1804e-18)
(1.00054 -0.0198587 9.15372e-18)
(0.999547 -0.0187348 1.50362e-17)
(1.03453 0.000394058 -1.16442e-18)
(1.03481 -0.000458021 -3.29727e-18)
(1.03509 -0.00165637 1.56794e-18)
(1.03523 -0.00340358 -3.29009e-18)
(1.03515 -0.00561698 4.91682e-18)
(1.03482 -0.00811773 -6.01897e-18)
(1.03417 -0.0106947 2.05037e-19)
(1.03315 -0.0131683 3.68728e-18)
(1.03182 -0.0154022 4.47172e-18)
(1.03028 -0.0173334 5.878e-18)
(1.02864 -0.0189563 -2.0922e-17)
(1.02698 -0.020316 -2.19008e-17)
(1.02533 -0.0214704 4.43461e-18)
(1.02371 -0.022479 3.28348e-18)
(1.02209 -0.0233788 1.22273e-18)
(1.02047 -0.0241912 -1.49709e-17)
(1.01884 -0.0249064 -1.65829e-17)
(1.0172 -0.0255098 -4.04859e-18)
(1.01556 -0.0259634 1.0851e-17)
(1.01391 -0.0262384 -1.24631e-17)
(1.01226 -0.0263059 -3.12873e-19)
(1.01063 -0.0261466 1.014e-17)
(1.00902 -0.0257518 -5.93493e-18)
(1.00745 -0.0251283 -1.25598e-17)
(1.00594 -0.0242967 -1.42365e-17)
(1.0045 -0.0232901 -1.01971e-18)
(1.00313 -0.0221488 -1.25592e-18)
(1.00189 -0.0209041 -1.42598e-17)
(1.00065 -0.0195792 -6.79086e-18)
(0.999668 -0.0184775 -1.96365e-17)
(1.03382 0.000296672 -1.23944e-19)
(1.03408 -0.000492332 -5.24806e-20)
(1.03436 -0.00163085 -4.10747e-18)
(1.03449 -0.0033188 2.21263e-18)
(1.03442 -0.00547155 -2.45197e-18)
(1.0341 -0.00791021 -3.27355e-18)
(1.03347 -0.0104264 9.21093e-19)
(1.03249 -0.012843 8.78954e-18)
(1.0312 -0.0150267 -3.12437e-18)
(1.02971 -0.0169154 1.26007e-17)
(1.02811 -0.0185042 5.71287e-18)
(1.0265 -0.0198369 5.99845e-18)
(1.0249 -0.0209706 3.38253e-18)
(1.02332 -0.0219636 7.42615e-18)
(1.02175 -0.0228523 -2.85166e-18)
(1.02017 -0.0236575 7.10241e-19)
(1.01859 -0.0243696 2.57116e-18)
(1.01699 -0.0249738 2.43091e-17)
(1.01538 -0.0254327 -1.12567e-17)
(1.01377 -0.0257175 1.35039e-17)
(1.01216 -0.0257993 -8.5016e-18)
(1.01057 -0.0256589 -7.31288e-18)
(1.00899 -0.0252869 4.2794e-18)
(1.00745 -0.02469 9.18819e-18)
(1.00597 -0.0238878 1.05329e-17)
(1.00455 -0.0229124 -3.14266e-19)
(1.0032 -0.0218028 -2.64256e-18)
(1.00198 -0.0205901 1.39905e-17)
(1.00076 -0.0192986 5.50752e-18)
(0.999786 -0.0182195 -1.20477e-17)
(1.03312 0.000203133 6.09034e-19)
(1.03337 -0.000524344 6.31614e-19)
(1.03364 -0.0016046 3.16774e-18)
(1.03377 -0.0032348 -7.34779e-19)
(1.0337 -0.0053284 -6.29176e-18)
(1.03339 -0.00770645 2.37575e-18)
(1.03278 -0.0101632 -1.59247e-19)
(1.03183 -0.0125242 -7.43815e-18)
(1.03058 -0.0146587 1.40662e-18)
(1.02914 -0.0165058 -1.9021e-17)
(1.02759 -0.0180608 2.10525e-18)
(1.02603 -0.0193667 9.63082e-20)
(1.02448 -0.0204793 5.2376e-18)
(1.02294 -0.0214562 -1.24096e-17)
(1.02141 -0.0223331 1.2634e-17)
(1.01988 -0.0231302 5.16279e-18)
(1.01833 -0.0238384 -2.93123e-19)
(1.01678 -0.0244426 -1.90229e-17)
(1.01521 -0.0249063 1.07661e-17)
(1.01364 -0.0252004 -9.30651e-18)
(1.01207 -0.025296 9.03558e-18)
(1.0105 -0.0251738 -7.61327e-18)
(1.00896 -0.0248243 -3.83474e-18)
(1.00745 -0.0242535 1.24968e-17)
(1.00599 -0.0234801 -1.37782e-17)
(1.0046 -0.0225354 8.15832e-19)
(1.00327 -0.0214573 1.00006e-17)
(1.00207 -0.020276 -7.66864e-18)
(1.00087 -0.0190177 -3.38985e-18)
(0.999905 -0.017961 2.66342e-18)
(1.03244 0.000111666 7.6962e-19)
(1.03268 -0.000555748 -3.61847e-18)
(1.03294 -0.00157915 6.37909e-19)
(1.03307 -0.00315281 1.40988e-18)
(1.033 -0.0051884 2.41705e-18)
(1.0327 -0.00750701 3.53457e-18)
(1.0321 -0.00990544 -2.86391e-18)
(1.03119 -0.0122117 2.24174e-18)
(1.02998 -0.0142978 4.68514e-19)
(1.02858 -0.0161038 2.10773e-17)
(1.02708 -0.0176253 8.75302e-18)
(1.02556 -0.0189042 1.51011e-18)
(1.02405 -0.0199957 -1.27221e-17)
(1.02256 -0.020956 9.5345e-18)
(1.02107 -0.0218206 -6.90846e-18)
(1.01958 -0.0226093 -5.17759e-18)
(1.01808 -0.0233129 1.37709e-17)
(1.01656 -0.0239166 1.99231e-18)
(1.01504 -0.0243842 -1.46794e-17)
(1.0135 -0.0246868 1.96895e-18)
(1.01197 -0.0247955 7.22957e-18)
(1.01044 -0.0246908 1.96849e-18)
(1.00893 -0.024363 1.01632e-18)
(1.00745 -0.0238176 -1.6569e-17)
(1.00602 -0.0230725 1.91394e-17)
(1.00465 -0.0221581 -1.28451e-17)
(1.00335 -0.021111 -1.21592e-18)
(1.00216 -0.0199612 -2.82025e-18)
(1.00098 -0.0187357 -1.03899e-19)
(1.00002 -0.0177017 -7.66758e-19)
(1.03176 2.4026e-05 -1.00408e-18)
(1.03199 -0.000584891 2.16666e-18)
(1.03224 -0.00155294 -1.85002e-18)
(1.03237 -0.00307151 -2.98187e-18)
(1.03231 -0.0050505 5.82169e-18)
(1.03201 -0.00731108 -8.37599e-19)
(1.03144 -0.00965256 -1.61503e-18)
(1.03055 -0.0119054 3.59966e-18)
(1.02938 -0.0139441 3.34143e-18)
(1.02802 -0.0157097 -1.37239e-17)
(1.02657 -0.0171982 -1.72105e-18)
(1.0251 -0.0184504 -1.12523e-18)
(1.02363 -0.0195205 -1.11884e-17)
(1.02218 -0.0204639 -3.80995e-18)
(1.02074 -0.0213157 6.40706e-18)
(1.01929 -0.0220951 7.31731e-18)
(1.01783 -0.0227935 -4.95952e-18)
(1.01635 -0.0233959 6.76825e-18)
(1.01486 -0.0238668 7.7883e-18)
(1.01337 -0.0241773 5.6988e-18)
(1.01187 -0.0242985 -1.09402e-17)
(1.01037 -0.0242108 2.93392e-18)
(1.0089 -0.0239042 2.11034e-18)
(1.00745 -0.0233837 8.80129e-18)
(1.00604 -0.0226664 -1.59522e-17)
(1.0047 -0.0217817 2.00673e-17)
(1.00342 -0.0207653 6.11844e-18)
(1.00225 -0.0196464 -7.03843e-18)
(1.00109 -0.0184532 1.11639e-19)
(1.00014 -0.0174417 3.11141e-17)
(1.0311 -6.15799e-05 4.73149e-20)
(1.03131 -0.000613563 3.64795e-18)
(1.03156 -0.00152761 9.59453e-19)
(1.03168 -0.00299226 -2.40716e-19)
(1.03162 -0.00491576 -4.61444e-18)
(1.03134 -0.00711944 -5.2171e-18)
(1.03079 -0.00940501 3.24477e-18)
(1.02992 -0.0116053 -6.10322e-18)
(1.02879 -0.0135974 4.28893e-18)
(1.02748 -0.0153231 5.61158e-18)
(1.02607 -0.0167787 -1.07707e-17)
(1.02464 -0.0180042 4.03559e-18)
(1.02322 -0.0190529 1.07278e-17)
(1.02181 -0.0199792 -1.2196e-18)
(1.0204 -0.0208177 1.94234e-18)
(1.019 -0.0215874 -9.27374e-18)
(1.01758 -0.0222801 -7.03218e-20)
(1.01614 -0.0228806 -8.9855e-18)
(1.01469 -0.0233542 -8.78827e-18)
(1.01323 -0.0236717 -4.51101e-18)
(1.01177 -0.0238047 3.06027e-18)
(1.01031 -0.0237332 4.62933e-18)
(1.00886 -0.023447 -1.33795e-17)
(1.00744 -0.0229507 -4.77449e-18)
(1.00607 -0.0222605 1.63431e-17)
(1.00475 -0.0214051 -2.17054e-17)
(1.00349 -0.020419 3.9557e-19)
(1.00234 -0.0193308 1.3486e-17)
(1.00119 -0.0181697 -4.31258e-19)
(1.00026 -0.0171807 -6.68012e-18)
(1.03045 -0.000143433 -5.50519e-20)
(1.03065 -0.000640043 -3.09589e-18)
(1.03089 -0.00150158 9.86757e-20)
(1.03101 -0.00291372 5.87338e-19)
(1.03095 -0.0047831 -2.14253e-19)
(1.03068 -0.00693122 2.79139e-18)
(1.03014 -0.00916218 1.71427e-18)
(1.02931 -0.0113112 -7.85481e-19)
(1.02821 -0.0132575 -4.83817e-18)
(1.02694 -0.0149442 -8.20025e-18)
(1.02558 -0.0163675 1.67051e-17)
(1.02419 -0.0175665 1.72864e-18)
(1.02281 -0.0185936 5.98169e-18)
(1.02144 -0.0195025 4.02675e-18)
(1.02007 -0.0203273 -7.43853e-18)
(1.01871 -0.0210868 1.66718e-17)
(1.01732 -0.0217731 -8.53012e-18)
(1.01593 -0.022371 8.09224e-18)
(1.01452 -0.0228465 1.17823e-17)
(1.0131 -0.0231706 1.89188e-18)
(1.01167 -0.0233147 -7.29063e-18)
(1.01024 -0.0232588 -6.4866e-18)
(1.00883 -0.0229924 4.80114e-18)
(1.00744 -0.0225198 6.04116e-18)
(1.00609 -0.0218563 -5.10624e-18)
(1.0048 -0.0210295 9.62248e-19)
(1.00356 -0.0200732 -9.26595e-18)
(1.00243 -0.0190153 -1.17738e-18)
(1.0013 -0.0178857 1.15751e-17)
(1.00037 -0.0169192 -5.82936e-18)
(1.02981 -0.000223184 3.2995e-19)
(1.03 -0.000665859 3.27979e-18)
(1.03023 -0.00147628 -4.61643e-18)
(1.03035 -0.00283712 2.12001e-19)
(1.03029 -0.00465347 1.40502e-18)
(1.03003 -0.00674715 3.35352e-19)
(1.02951 -0.00892451 -5.94312e-18)
(1.0287 -0.0110231 2.22077e-18)
(1.02764 -0.0129244 -5.67842e-18)
(1.02641 -0.0145725 1.02025e-17)
(1.02509 -0.0159637 -1.74159e-17)
(1.02374 -0.0171363 -8.08965e-18)
(1.0224 -0.0181419 4.93924e-18)
(1.02107 -0.0190332 -3.87979e-18)
(1.01975 -0.0198441 -5.86363e-18)
(1.01842 -0.020593 -1.50254e-17)
(1.01707 -0.0212724 -1.63212e-18)
(1.01572 -0.0218672 -1.12503e-17)
(1.01435 -0.022344 -7.99006e-18)
(1.01296 -0.0226738 -4.48691e-18)
(1.01157 -0.0228282 -6.15082e-19)
(1.01017 -0.0227871 6.27825e-18)
(1.00879 -0.0225399 4.59602e-19)
(1.00743 -0.0220902 -1.57328e-17)
(1.00611 -0.0214526 -4.24162e-18)
(1.00484 -0.0206541 3.01816e-18)
(1.00363 -0.0197271 1.30945e-18)
(1.00251 -0.0186991 -5.74208e-18)
(1.0014 -0.0176007 -8.02132e-18)
(1.00048 -0.0166565 4.52037e-18)
(1.02918 -0.000299219 1.83399e-20)
(1.02936 -0.000689525 -2.64798e-18)
(1.02958 -0.00145026 1.74973e-18)
(1.0297 -0.00276114 -4.78853e-20)
(1.02965 -0.00452577 -2.37647e-18)
(1.02939 -0.00656629 6.63552e-18)
(1.02889 -0.00869131 -6.26538e-21)
(1.02811 -0.0107406 -2.64233e-19)
(1.02708 -0.0125979 4.30296e-18)
(1.02588 -0.0142081 -5.55306e-18)
(1.0246 -0.0155678 9.60053e-18)
(1.0233 -0.0167143 7.67326e-18)
(1.022 -0.0176984 -1.45222e-17)
(1.02071 -0.0185719 -1.31116e-17)
(1.01942 -0.0193685 4.75287e-18)
(1.01813 -0.0201063 9.67313e-18)
(1.01683 -0.0207783 7.30761e-19)
(1.01551 -0.0213694 9.12911e-18)
(1.01417 -0.0218468 -2.67389e-19)
(1.01282 -0.0221818 -7.66868e-18)
(1.01146 -0.0223459 -3.45184e-18)
(1.01011 -0.0223191 -2.38568e-18)
(1.00875 -0.0220904 9.15254e-19)
(1.00743 -0.021663 1.00214e-17)
(1.00613 -0.0210509 9.32524e-18)
(1.00489 -0.0202799 6.84693e-18)
(1.00369 -0.0193818 -1.04707e-17)
(1.0026 -0.0183831 -8.62131e-18)
(1.00151 -0.0173153 -1.50971e-18)
(1.0006 -0.0163932 -1.84509e-17)
(1.02856 -0.000373202 1.2902e-19)
(1.02873 -0.000712681 1.12003e-19)
(1.02895 -0.00142506 -7.9119e-20)
(1.02906 -0.00268713 1.12855e-18)
(1.02901 -0.0044011 -1.60461e-18)
(1.02876 -0.00638952 -8.43318e-18)
(1.02827 -0.00846317 8.3396e-18)
(1.02752 -0.010464 -2.21463e-20)
(1.02653 -0.012278 3.69741e-18)
(1.02537 -0.0138508 -4.20913e-18)
(1.02413 -0.0151792 8.51964e-18)
(1.02287 -0.0162997 -2.38658e-18)
(1.0216 -0.0172623 1.03402e-17)
(1.02035 -0.018118 6.72928e-18)
(1.0191 -0.0189002 -2.57149e-19)
(1.01785 -0.0196266 -2.65052e-18)
(1.01658 -0.0202907 1.10666e-17)
(1.0153 -0.0208776 3.24351e-18)
(1.014 -0.0213551 6.61915e-18)
(1.01268 -0.0216944 1.69438e-18)
(1.01136 -0.0218675 1.10222e-17)
(1.01004 -0.0218542 -1.2758e-17)
(1.00872 -0.0216432 6.24806e-18)
(1.00742 -0.0212374 5.8964e-18)
(1.00615 -0.02065 -1.85848e-17)
(1.00493 -0.0199061 3.6866e-18)
(1.00376 -0.0190362 8.07709e-19)
(1.00268 -0.0180666 -1.25516e-18)
(1.00161 -0.017029 -5.86595e-18)
(1.00071 -0.0161289 1.04928e-17)
(1.02795 -0.000443569 -5.51025e-19)
(1.02811 -0.000733759 -7.83291e-19)
(1.02832 -0.0013992 1.17065e-18)
(1.02843 -0.00261377 -3.65521e-18)
(1.02839 -0.00427834 3.29548e-18)
(1.02815 -0.00621588 6.99603e-18)
(1.02767 -0.00823936 -5.50053e-18)
(1.02694 -0.0101928 4.6466e-18)
(1.02598 -0.0119644 -7.77896e-18)
(1.02486 -0.0135006 6.11041e-18)
(1.02366 -0.0147983 -7.04584e-18)
(1.02243 -0.0158931 8.22458e-18)
(1.02121 -0.0168343 -3.55781e-18)
(1.02 -0.0176721 -2.37192e-18)
(1.01878 -0.0184395 6.59251e-18)
(1.01756 -0.0191542 1.23096e-18)
(1.01633 -0.01981 -1.2108e-17)
(1.01509 -0.0203921 -5.96568e-18)
(1.01382 -0.020869 -1.23304e-17)
(1.01255 -0.0212122 1.24059e-17)
(1.01126 -0.0213937 5.62136e-18)
(1.00996 -0.0213932 1.30291e-17)
(1.00868 -0.0211994 2.31901e-18)
(1.00741 -0.0208146 6.31652e-18)
(1.00617 -0.0202513 9.2686e-19)
(1.00497 -0.0195337 -1.41819e-18)
(1.00382 -0.0186917 1.39075e-17)
(1.00276 -0.0177505 6.02695e-18)
(1.00171 -0.0167425 5.07419e-18)
(1.00082 -0.0158641 -1.37105e-17)
(1.02736 -0.000511849 9.68555e-19)
(1.0275 -0.000754151 1.60705e-18)
(1.02771 -0.00137402 6.59488e-19)
(1.02782 -0.00254226 8.70856e-20)
(1.02777 -0.00415848 -1.28394e-18)
(1.02754 -0.0060462 2.32945e-18)
(1.02708 -0.00802044 -4.11085e-19)
(1.02638 -0.00992744 -6.55042e-18)
(1.02544 -0.0116573 4.25965e-18)
(1.02436 -0.0131573 -7.75128e-18)
(1.0232 -0.0144245 -6.08021e-19)
(1.02201 -0.0154939 -7.20714e-19)
(1.02082 -0.0164138 -3.83397e-18)
(1.01964 -0.0172336 3.84897e-18)
(1.01847 -0.0179861 -3.8325e-18)
(1.01728 -0.0186888 -7.55978e-18)
(1.01609 -0.0193359 -2.01902e-18)
(1.01488 -0.0199129 7.65516e-18)
(1.01365 -0.0203886 1.87926e-17)
(1.01241 -0.020735 -6.40069e-18)
(1.01115 -0.0209241 -1.46256e-17)
(1.00989 -0.0209357 2.32591e-20)
(1.00864 -0.0207583 -1.27294e-18)
(1.00739 -0.0203937 -6.46062e-18)
(1.00618 -0.0198539 8.75503e-18)
(1.00501 -0.0191621 7.058e-18)
(1.00388 -0.0183472 -1.69377e-17)
(1.00284 -0.017434 -4.99605e-19)
(1.00181 -0.0164552 2.09971e-18)
(1.00092 -0.0155984 2.06157e-17)
(1.02677 -0.000576529 -1.21678e-18)
(1.0269 -0.000772488 -2.04264e-18)
(1.0271 -0.00134812 -1.95392e-18)
(1.02721 -0.0024713 4.3299e-18)
(1.02717 -0.0040404 -3.86436e-18)
(1.02694 -0.00587946 -3.15692e-18)
(1.0265 -0.00780562 5.22345e-18)
(1.02582 -0.00966718 5.27333e-19)
(1.02492 -0.0113562 -2.42107e-18)
(1.02387 -0.0128207 1.11282e-17)
(1.02274 -0.0140581 5.53178e-18)
(1.02159 -0.0151022 -1.55538e-18)
(1.02044 -0.016001 7.93237e-18)
(1.0193 -0.0168029 9.62151e-18)
(1.01815 -0.0175404 2.23254e-18)
(1.017 -0.0182308 5.68386e-18)
(1.01584 -0.0188688 2.89344e-19)
(1.01467 -0.0194402 -2.55839e-18)
(1.01348 -0.0199143 -6.95893e-19)
(1.01227 -0.0202632 -1.11078e-19)
(1.01105 -0.0204595 5.74908e-18)
(1.00982 -0.0204825 -1.70111e-18)
(1.00859 -0.0203209 3.92009e-18)
(1.00738 -0.0199759 2.74194e-18)
(1.00619 -0.0194589 -9.17961e-18)
(1.00505 -0.0187922 -4.70647e-19)
(1.00394 -0.0180038 3.44951e-18)
(1.00292 -0.0171181 2.74611e-18)
(1.0019 -0.0161678 -3.90984e-18)
(1.00103 -0.0153322 -6.32199e-18)
(1.0262 -0.000639177 5.18472e-19)
(1.02632 -0.000790297 1.27029e-18)
(1.02651 -0.001323 1.61868e-18)
(1.02662 -0.00240221 -1.12488e-18)
(1.02658 -0.00392519 3.40684e-18)
(1.02636 -0.00571661 -2.74847e-19)
(1.02593 -0.00759562 2.14797e-18)
(1.02527 -0.00941254 2.53119e-18)
(1.0244 -0.0110613 7.73743e-18)
(1.02338 -0.012491 -4.60802e-18)
(1.02229 -0.0136987 -1.44697e-17)
(1.02118 -0.0147179 4.16527e-18)
(1.02006 -0.0155956 -9.08842e-19)
(1.01895 -0.0163795 -3.85482e-19)
(1.01784 -0.0171019 -4.96404e-18)
(1.01673 -0.0177799 1.03302e-18)
(1.0156 -0.0184086 9.90537e-18)
(1.01446 -0.0189738 9.18703e-18)
(1.0133 -0.0194458 2.95413e-19)
(1.01213 -0.0197967 1.18973e-18)
(1.01094 -0.0199993 7.36239e-18)
(1.00974 -0.0200332 -1.18271e-17)
(1.00855 -0.0198865 -1.61365e-17)
(1.00737 -0.0195604 -2.27395e-18)
(1.00621 -0.0190654 1.35553e-17)
(1.00508 -0.0184232 -7.67144e-19)
(1.004 -0.0176609 6.29127e-18)
(1.00299 -0.0168021 -2.4274e-19)
(1.002 -0.0158798 -7.21782e-18)
(1.00113 -0.0150652 3.45253e-18)
(1.02563 -0.000698334 7.9999e-20)
(1.02574 -0.000806122 -4.53328e-19)
(1.02593 -0.00129722 -1.30508e-18)
(1.02604 -0.00233371 -4.36656e-19)
(1.02599 -0.00381174 1.33466e-18)
(1.02579 -0.00555664 -2.05781e-18)
(1.02537 -0.00738958 -3.54967e-18)
(1.02473 -0.00916289 -8.84466e-19)
(1.02389 -0.0107724 -1.65988e-18)
(1.0229 -0.0121678 2.07322e-18)
(1.02185 -0.0133464 -2.05838e-18)
(1.02077 -0.014341 -1.10936e-17)
(1.01969 -0.0151978 -3.35923e-18)
(1.01861 -0.0159638 -5.28052e-18)
(1.01753 -0.016671 5.88812e-18)
(1.01645 -0.0173364 1.22215e-18)
(1.01536 -0.0179554 1.88815e-18)
(1.01425 -0.0185142 -3.85304e-20)
(1.01313 -0.0189835 -8.84709e-18)
(1.01199 -0.0193359 -1.15776e-18)
(1.01083 -0.0195444 -2.77746e-18)
(1.00967 -0.0195884 2.01701e-17)
(1.0085 -0.0194562 3.77718e-18)
(1.00735 -0.0191482 -1.14952e-17)
(1.00621 -0.0186747 -2.30253e-18)
(1.00511 -0.0180563 -7.78289e-18)
(1.00405 -0.0173193 -3.04048e-18)
(1.00307 -0.0164868 1.10538e-18)
(1.00209 -0.015592 7.64565e-18)
(1.00123 -0.014798 1.09483e-17)
(1.02508 -0.000755448 -3.56358e-19)
(1.02518 -0.000821249 -1.44401e-19)
(1.02536 -0.00127206 -1.82359e-18)
(1.02546 -0.00226694 -1.18379e-18)
(1.02542 -0.00370105 1.69609e-18)
(1.02522 -0.00540041 1.9472e-18)
(1.02482 -0.00718819 -1.45678e-18)
(1.0242 -0.00891868 2.13629e-19)
(1.02339 -0.0104895 -6.55482e-18)
(1.02243 -0.0118511 -2.74375e-18)
(1.02141 -0.013001 2.00271e-18)
(1.02036 -0.0139713 1.65168e-18)
(1.01932 -0.0148074 -4.19701e-18)
(1.01827 -0.0155555 5.787e-18)
(1.01723 -0.0162474 -9.40119e-18)
(1.01618 -0.0169 -8.30954e-18)
(1.01512 -0.0175091 1.96057e-18)
(1.01405 -0.0180611 -1.46775e-17)
(1.01296 -0.0185273 -2.74327e-18)
(1.01185 -0.0188806 1.66235e-18)
(1.01072 -0.0190943 4.06191e-18)
(1.00959 -0.0191478 -1.45761e-17)
(1.00845 -0.0190292 6.17813e-18)
(1.00733 -0.0187387 4.42911e-18)
(1.00622 -0.0182859 5.48389e-18)
(1.00514 -0.0176906 -1.02885e-17)
(1.0041 -0.0169784 -4.87117e-18)
(1.00314 -0.0161716 -4.35729e-18)
(1.00218 -0.0153037 -4.32097e-18)
(1.00133 -0.0145302 -1.77983e-17)
(1.02453 -0.000809105 3.62731e-19)
(1.02463 -0.000834428 -1.11246e-18)
(1.0248 -0.00124623 1.97284e-19)
(1.0249 -0.00220068 2.56953e-18)
(1.02486 -0.00359197 -3.83863e-18)
(1.02467 -0.00524689 -6.53997e-19)
(1.02428 -0.00699055 5.26292e-18)
(1.02368 -0.0086792 2.69606e-18)
(1.02289 -0.0102122 2.54087e-18)
(1.02197 -0.0115407 -4.11501e-18)
(1.02098 -0.0126625 1.33017e-17)
(1.01997 -0.0136087 -2.63997e-18)
(1.01895 -0.0144242 8.73798e-18)
(1.01794 -0.0151546 -1.88673e-17)
(1.01693 -0.0158313 8.13086e-18)
(1.01591 -0.016471 3.29008e-19)
(1.01489 -0.0170699 -9.52261e-18)
(1.01384 -0.0176148 2.75602e-18)
(1.01278 -0.0180775 8.42891e-18)
(1.01171 -0.0184312 3.97623e-18)
(1.01061 -0.0186496 -7.85638e-18)
(1.00951 -0.018712 4.00676e-18)
(1.00841 -0.0186065 2.78589e-19)
(1.00731 -0.0183328 1.00752e-17)
(1.00623 -0.0179 -5.03129e-18)
(1.00517 -0.0173272 1.63535e-17)
(1.00415 -0.016639 1.59865e-17)
(1.0032 -0.0158574 2.49792e-18)
(1.00226 -0.0150157 6.70069e-19)
(1.00143 -0.0142622 8.1387e-18)
(1.024 -0.000860789 -3.58763e-19)
(1.02409 -0.000847079 1.46056e-18)
(1.02425 -0.0012211 3.10438e-19)
(1.02435 -0.00213617 1.43302e-18)
(1.02431 -0.00348562 -6.43939e-19)
(1.02413 -0.00509705 -4.04003e-18)
(1.02375 -0.00679748 -8.92655e-18)
(1.02317 -0.00844506 -2.67197e-18)
(1.02241 -0.00994081 1.4446e-18)
(1.02152 -0.0112368 9.1886e-18)
(1.02056 -0.0123307 -5.94283e-18)
(1.01958 -0.0132532 -4.96849e-18)
(1.01859 -0.0140483 -1.47237e-17)
(1.01761 -0.014761 1.38364e-17)
(1.01663 -0.0154224 -3.83569e-18)
(1.01565 -0.0160491 1.09239e-17)
(1.01465 -0.0166377 4.78144e-18)
(1.01364 -0.0171751 2.54006e-18)
(1.01261 -0.0176339 5.42133e-18)
(1.01157 -0.0179876 -7.34832e-18)
(1.0105 -0.01821 -6.26035e-18)
(1.00943 -0.0182806 9.17805e-18)
(1.00835 -0.0181875 1.6829e-18)
(1.00728 -0.0179299 6.84708e-19)
(1.00623 -0.0175165 -4.23848e-18)
(1.0052 -0.0169654 -1.01711e-17)
(1.0042 -0.0163007 -3.15733e-18)
(1.00327 -0.0155436 4.12295e-18)
(1.00235 -0.0147275 5.05298e-18)
(1.00152 -0.0139938 -1.57419e-17)
(1.02348 -0.000909167 1.10672e-20)
(1.02355 -0.000857869 -1.28967e-18)
(1.02372 -0.00119536 4.91576e-18)
(1.02381 -0.00207219 -2.68166e-18)
(1.02378 -0.00338088 -8.67766e-20)
(1.02359 -0.00494985 4.6551e-18)
(1.02323 -0.00660804 2.61547e-18)
(1.02267 -0.0082155 -4.81596e-19)
(1.02193 -0.00967487 -3.45348e-18)
(1.02107 -0.010939 -2.76186e-18)
(1.02014 -0.0120055 5.9536e-18)
(1.01919 -0.0129046 9.26779e-18)
(1.01824 -0.0136797 1.02243e-18)
(1.01729 -0.0143748 -2.89167e-19)
(1.01634 -0.0150209 7.94975e-19)
(1.01538 -0.0156345 -1.26655e-17)
(1.01442 -0.0162126 -8.41418e-18)
(1.01344 -0.0167424 8.48978e-18)
(1.01244 -0.0171969 -5.24617e-18)
(1.01142 -0.0175501 1.08183e-17)
(1.01039 -0.017776 3.96964e-18)
(1.00935 -0.0178544 -1.4809e-17)
(1.0083 -0.017773 -7.99928e-18)
(1.00726 -0.0175308 -5.57655e-18)
(1.00623 -0.017136 1.07549e-18)
(1.00522 -0.0166061 2.48946e-18)
(1.00425 -0.0159641 -7.26038e-18)
(1.00333 -0.015231 5.84572e-18)
(1.00243 -0.0144399 -5.92692e-19)
(1.00162 -0.0137256 1.15023e-17)
(1.02297 -0.000955591 2.52531e-19)
(1.02303 -0.000867977 4.23398e-19)
(1.02319 -0.00117019 -3.30334e-18)
(1.02328 -0.00200985 8.61315e-19)
(1.02325 -0.00327874 3.93714e-18)
(1.02307 -0.00480618 -5.98695e-19)
(1.02272 -0.00642299 -3.97065e-18)
(1.02218 -0.00799108 -2.23144e-18)
(1.02146 -0.0094147 -8.3759e-19)
(1.02063 -0.0106474 -2.59761e-18)
(1.01973 -0.011687 -7.03472e-18)
(1.01881 -0.0125629 -4.59781e-18)
(1.01788 -0.0133181 1.47744e-17)
(1.01696 -0.0139957 -1.88525e-20)
(1.01604 -0.0146266 -2.62153e-18)
(1.01512 -0.0152271 9.30453e-18)
(1.01418 -0.0157945 1.80205e-17)
(1.01324 -0.0163163 -6.75679e-18)
(1.01227 -0.0167662 -4.46876e-18)
(1.01128 -0.0171184 -8.08471e-18)
(1.01028 -0.0173474 6.78853e-18)
(1.00927 -0.0174328 -1.64718e-18)
(1.00825 -0.0173625 -3.81867e-18)
(1.00723 -0.0171351 4.75012e-19)
(1.00623 -0.0167582 -2.9886e-18)
(1.00524 -0.0162486 7.44404e-18)
(1.00429 -0.0156289 8.35649e-18)
(1.0034 -0.0149191 -8.46776e-18)
(1.00251 -0.0141524 8.46111e-18)
(1.00171 -0.0134571 -2.71175e-18)
(1.02246 -0.000998711 -1.21481e-19)
(1.02252 -0.000876235 2.19856e-19)
(1.02267 -0.00114435 -6.6869e-19)
(1.02276 -0.00194794 -2.48416e-18)
(1.02273 -0.00317808 -5.88643e-18)
(1.02256 -0.00466499 -2.7282e-19)
(1.02222 -0.00624139 2.21534e-18)
(1.02169 -0.00777101 6.13726e-18)
(1.021 -0.00915968 2.68924e-18)
(1.02019 -0.0103617 4.92057e-18)
(1.01932 -0.0113748 -7.0763e-18)
(1.01843 -0.012228 7.18461e-18)
(1.01754 -0.0129635 -6.75638e-18)
(1.01665 -0.0136238 -8.02042e-19)
(1.01576 -0.0142396 -1.01306e-17)
(1.01486 -0.0148269 3.95152e-18)
(1.01395 -0.0153835 -1.29872e-17)
(1.01303 -0.0158972 4.83843e-19)
(1.0121 -0.0163422 -4.93329e-18)
(1.01114 -0.016693 1.10163e-17)
(1.01017 -0.0169246 1.39124e-18)
(1.00918 -0.0170165 7.65198e-18)
(1.00819 -0.0169567 -1.49269e-18)
(1.0072 -0.0167434 -8.57716e-18)
(1.00622 -0.0163838 6.62485e-18)
(1.00526 -0.015894 -3.76345e-18)
(1.00433 -0.0152956 -7.14478e-18)
(1.00345 -0.0146085 8.72699e-18)
(1.00259 -0.0138656 -2.801e-18)
(1.0018 -0.0131889 1.07594e-17)
(1.02197 -0.00103995 5.10253e-19)
(1.02202 -0.000883986 1.49697e-18)
(1.02216 -0.00111917 1.43082e-18)
(1.02225 -0.00188768 1.71025e-18)
(1.02222 -0.00307998 9.36789e-18)
(1.02205 -0.00452728 1.46589e-18)
(1.02173 -0.0060641 4.88125e-19)
(1.02122 -0.00755599 -4.1299e-18)
(1.02055 -0.00891032 2.6733e-18)
(1.01977 -0.0100821 -5.99794e-18)
(1.01893 -0.0110692 1.18703e-17)
(1.01806 -0.0118999 -7.10427e-20)
(1.0172 -0.0126159 4.86357e-18)
(1.01633 -0.013259 -1.06801e-17)
(1.01547 -0.0138597 7.06458e-18)
(1.0146 -0.0144338 4.72932e-20)
(1.01373 -0.0149795 1.13568e-17)
(1.01284 -0.0154848 4.79839e-18)
(1.01193 -0.0159245 -5.69065e-18)
(1.011 -0.0162736 -8.68168e-18)
(1.01006 -0.0165072 -1.47066e-17)
(1.0091 -0.0166052 8.6656e-18)
(1.00814 -0.0165552 1.08064e-17)
(1.00717 -0.0163553 9.43363e-18)
(1.00622 -0.0160123 1.71235e-18)
(1.00528 -0.0155415 4.07169e-18)
(1.00437 -0.014964 -4.05574e-19)
(1.00351 -0.014299 -3.6154e-18)
(1.00266 -0.0135791 3.55881e-18)
(1.00188 -0.0129207 -4.82729e-18)
(1.02149 -0.00107806 2.09371e-19)
(1.02153 -0.000889979 -9.86466e-19)
(1.02167 -0.0010934 6.85626e-19)
(1.02175 -0.00182788 -1.48298e-18)
(1.02172 -0.00298335 -3.53265e-18)
(1.02156 -0.00439197 -5.18654e-18)
(1.02124 -0.00589014 4.31366e-18)
(1.02075 -0.00734518 -1.22071e-18)
(1.0201 -0.00866593 1.95284e-18)
(1.01935 -0.00980809 -9.15362e-19)
(1.01853 -0.0107696 -1.23321e-17)
(1.0177 -0.0115783 -3.48599e-18)
(1.01686 -0.0122751 -1.41242e-18)
(1.01603 -0.0129013 2.16649e-18)
(1.01519 -0.0134869 -2.65844e-18)
(1.01435 -0.0140479 -6.30957e-18)
(1.0135 -0.0145826 -1.5943e-17)
(1.01264 -0.0150794 -1.67576e-17)
(1.01176 -0.0155136 2.10739e-18)
(1.01086 -0.0158606 3.58882e-18)
(1.00994 -0.0160959 9.61395e-18)
(1.00902 -0.0161992 -1.21769e-17)
(1.00808 -0.0161585 -1.76613e-18)
(1.00714 -0.0159715 -1.35682e-17)
(1.00621 -0.0156445 -9.10912e-18)
(1.00529 -0.015192 -5.71213e-18)
(1.0044 -0.0146346 -6.93047e-18)
(1.00356 -0.013991 -1.08324e-17)
(1.00273 -0.0132937 -3.12805e-18)
(1.00197 -0.0126532 -6.98301e-18)
(1.02101 -0.00111432 -7.80371e-19)
(1.02105 -0.000895315 3.23244e-19)
(1.02118 -0.00106815 -3.87593e-19)
(1.02126 -0.00176961 9.04387e-19)
(1.02123 -0.00288916 -1.88706e-18)
(1.02108 -0.00425999 1.38161e-18)
(1.02077 -0.00572031 -4.53503e-18)
(1.02029 -0.00713922 1.1417e-18)
(1.01967 -0.00842701 -2.02211e-19)
(1.01894 -0.00954008 -2.77464e-18)
(1.01815 -0.0104764 1.01868e-17)
(1.01734 -0.0112633 -6.426e-19)
(1.01653 -0.0119411 9.94869e-19)
(1.01572 -0.0125505 1.99491e-18)
(1.01491 -0.0131213 -1.37147e-18)
(1.0141 -0.0136691 6.76594e-18)
(1.01328 -0.0141927 1.88745e-17)
(1.01244 -0.0146808 2.8615e-18)
(1.01159 -0.0151092 7.10692e-18)
(1.01072 -0.0154537 2.72301e-18)
(1.00983 -0.0156901 1.34931e-18)
(1.00893 -0.0157984 8.9909e-18)
(1.00802 -0.0157664 2.65276e-18)
(1.0071 -0.0155915 1.82009e-17)
(1.0062 -0.0152797 1.98756e-18)
(1.00531 -0.014845 1.01224e-18)
(1.00444 -0.0143071 1.43376e-17)
(1.00361 -0.0136843 -6.65956e-19)
(1.0028 -0.0130088 -7.04668e-18)
(1.00205 -0.0123858 4.11913e-18)
(1.02055 -0.00114746 -1.99223e-20)
(1.02058 -0.000898916 -2.07669e-19)
(1.0207 -0.00104226 -6.29984e-19)
(1.02078 -0.00171171 1.41635e-18)
(1.02076 -0.00279629 -2.25802e-19)
(1.0206 -0.00413027 -1.3651e-18)
(1.02031 -0.00555365 -8.75186e-19)
(1.01984 -0.00693726 5.31702e-18)
(1.01924 -0.00819284 -6.06165e-18)
(1.01853 -0.00927744 2.30885e-18)
(1.01777 -0.0101891 -5.61761e-18)
(1.01699 -0.0109547 1.9955e-18)
(1.0162 -0.0116138 -1.72618e-18)
(1.01542 -0.0122066 -4.93691e-18)
(1.01464 -0.0127625 7.19239e-18)
(1.01385 -0.0132972 -1.44302e-17)
(1.01306 -0.0138098 -1.52987e-17)
(1.01225 -0.014289 -3.79861e-18)
(1.01142 -0.0147115 -5.06383e-18)
(1.01058 -0.0150532 -5.13226e-18)
(1.00972 -0.0152904 -1.04535e-18)
(1.00884 -0.0154032 -1.44702e-18)
(1.00796 -0.0153793 -7.74458e-18)
(1.00707 -0.015216 -1.13401e-17)
(1.00618 -0.0149189 8.10853e-18)
(1.00532 -0.0145011 -4.11275e-18)
(1.00447 -0.0139821 -3.2923e-18)
(1.00366 -0.0133795 7.33501e-18)
(1.00287 -0.0127253 5.09453e-18)
(1.00212 -0.0121193 2.564e-18)
(1.0201 -0.00117885 4.57684e-19)
(1.02011 -0.000902043 1.3804e-19)
(1.02024 -0.00101698 -1.57766e-18)
(1.02031 -0.00165534 5.22092e-19)
(1.02029 -0.00270583 -1.10125e-18)
(1.02014 -0.0040038 2.80106e-18)
(1.01985 -0.00539102 6.74722e-19)
(1.0194 -0.00674005 -4.22828e-20)
(1.01882 -0.00796402 6.05021e-18)
(1.01814 -0.00902065 5.49781e-18)
(1.0174 -0.00990809 8.60433e-18)
(1.01664 -0.0106525 -1.2187e-17)
(1.01588 -0.0112932 1.49429e-19)
(1.01512 -0.0118696 1.35583e-17)
(1.01437 -0.0124108 -2.50375e-18)
(1.01361 -0.0129324 3.7717e-18)
(1.01284 -0.0134338 -1.79524e-19)
(1.01205 -0.0139041 4.45921e-18)
(1.01125 -0.0143203 7.89732e-18)
(1.01044 -0.0146589 1.4316e-18)
(1.0096 -0.0148965 -4.1739e-18)
(1.00875 -0.0150132 -4.74422e-18)
(1.00789 -0.0149969 8.81989e-18)
(1.00703 -0.0148446 8.64074e-18)
(1.00617 -0.0145614 -1.08482e-17)
(1.00532 -0.01416 1.56585e-18)
(1.00449 -0.0136592 3.48887e-18)
(1.00371 -0.0130762 -4.85491e-18)
(1.00293 -0.0124425 2.70624e-18)
(1.0022 -0.0118533 -2.8087e-18)
(1.01965 -0.00120732 -2.04906e-19)
(1.01966 -0.000903551 -1.9279e-19)
(1.01978 -0.000991149 4.2207e-18)
(1.01985 -0.00159939 -3.39023e-18)
(1.01983 -0.0026167 4.92427e-19)
(1.01969 -0.00387952 -4.08062e-18)
(1.01941 -0.00523144 -2.70703e-18)
(1.01897 -0.0065467 -6.82343e-18)
(1.01841 -0.00773978 -4.29732e-18)
(1.01774 -0.00876905 -6.64675e-18)
(1.01703 -0.00963273 -3.85908e-18)
(1.0163 -0.0103565 1.77239e-17)
(1.01556 -0.0109791 -3.77893e-18)
(1.01483 -0.0115392 -5.18865e-18)
(1.0141 -0.0120659 3.3685e-18)
(1.01336 -0.0125745 5.21256e-18)
(1.01262 -0.0130647 1.21324e-17)
(1.01186 -0.013526 1.21266e-17)
(1.01109 -0.0139358 -4.38434e-18)
(1.0103 -0.0142711 -1.25736e-18)
(1.00949 -0.0145086 -2.81433e-18)
(1.00866 -0.0146289 3.91913e-18)
(1.00783 -0.0146197 -9.22983e-18)
(1.00699 -0.0144778 1.39323e-18)
(1.00615 -0.0142079 5.94987e-18)
(1.00533 -0.0138223 3.93297e-18)
(1.00452 -0.0133391 -7.17838e-18)
(1.00375 -0.012775 6.53554e-18)
(1.00299 -0.0121613 3.04343e-18)
(1.00227 -0.0115884 -2.12398e-18)
(1.01921 -0.0012341 2.88018e-19)
(1.01922 -0.000904447 4.88087e-20)
(1.01933 -0.000965802 -5.87316e-19)
(1.0194 -0.00154486 2.11135e-18)
(1.01938 -0.00252984 1.9231e-18)
(1.01924 -0.00375835 4.97863e-18)
(1.01897 -0.00507573 7.85054e-18)
(1.01855 -0.00635791 6.99072e-18)
(1.018 -0.00752069 5.3343e-18)
(1.01736 -0.00852311 3.71108e-18)
(1.01667 -0.00936342 7.1938e-19)
(1.01596 -0.0100669 -1.02083e-17)
(1.01525 -0.0106715 6.01324e-18)
(1.01454 -0.0112156 -4.22694e-18)
(1.01384 -0.0117278 3.95574e-18)
(1.01312 -0.0122235 -3.7537e-18)
(1.0124 -0.0127025 -5.12186e-18)
(1.01167 -0.0131546 2.37495e-18)
(1.01092 -0.0135578 5.14129e-18)
(1.01016 -0.0138895 6.27278e-18)
(1.00937 -0.0141266 1.37275e-19)
(1.00857 -0.01425 1.89193e-18)
(1.00776 -0.0142473 1.00088e-18)
(1.00695 -0.0141152 -3.09398e-18)
(1.00613 -0.0138581 -5.23583e-19)
(1.00533 -0.0134876 -6.62807e-18)
(1.00454 -0.0130213 5.6743e-19)
(1.00379 -0.0124755 5.96755e-18)
(1.00305 -0.0118812 -8.99936e-18)
(1.00234 -0.0113242 6.82172e-18)
(1.01879 -0.00125795 2.79591e-19)
(1.01878 -0.000903717 -1.21576e-18)
(1.01889 -0.000939835 -2.61597e-18)
(1.01896 -0.00149065 5.28682e-19)
(1.01894 -0.00244418 3.47064e-19)
(1.0188 -0.00363924 -4.99628e-19)
(1.01854 -0.00492291 -2.51185e-18)
(1.01813 -0.00617278 -9.14833e-18)
(1.0176 -0.00730597 -3.9168e-18)
(1.01698 -0.00828213 -3.82387e-18)
(1.01632 -0.00909957 -2.66278e-18)
(1.01563 -0.00978308 3.07923e-18)
(1.01495 -0.0103702 -2.25514e-18)
(1.01426 -0.0108985 3.91823e-18)
(1.01357 -0.0113965 -1.13884e-18)
(1.01289 -0.0118793 1.26066e-17)
(1.01219 -0.0123472 1.66164e-18)
(1.01148 -0.0127901 -1.12991e-17)
(1.01076 -0.0131865 4.74521e-18)
(1.01002 -0.0135143 -4.02783e-18)
(1.00926 -0.0137508 2.56582e-18)
(1.00848 -0.0138768 -4.34529e-18)
(1.0077 -0.0138802 1.09866e-18)
(1.0069 -0.0137573 -8.62065e-19)
(1.00611 -0.0135124 1.89589e-18)
(1.00533 -0.0131565 -2.62144e-18)
(1.00456 -0.0127065 1.67416e-18)
(1.00383 -0.0121785 -6.44533e-18)
(1.00311 -0.0116029 1.082e-18)
(1.00241 -0.0110614 -4.53639e-18)
(1.01837 -0.00128018 -1.07522e-18)
(1.01836 -0.000902556 9.04307e-19)
(1.01846 -0.000914437 9.67913e-19)
(1.01853 -0.00143785 -3.39765e-20)
(1.0185 -0.00236074 2.2903e-18)
(1.01838 -0.00352315 -1.51796e-19)
(1.01812 -0.00477386 2.58376e-18)
(1.01773 -0.0059921 1.78677e-18)
(1.01721 -0.00709629 -2.0846e-18)
(1.01662 -0.0080467 3.54984e-18)
(1.01597 -0.00884166 2.74452e-18)
(1.01531 -0.00950555 -6.80544e-18)
(1.01464 -0.0100753 -5.51463e-18)
(1.01398 -0.010588 1.79383e-19)
(1.01332 -0.0110718 -1.06488e-17)
(1.01265 -0.0115419 -1.04806e-18)
(1.01198 -0.0119986 -4.23296e-18)
(1.01129 -0.0124322 1.47326e-18)
(1.0106 -0.0128218 -8.86769e-19)
(1.00988 -0.0131454 -3.44537e-19)
(1.00914 -0.0133808 3.5996e-18)
(1.00839 -0.0135091 -4.98877e-18)
(1.00763 -0.013518 1.4301e-18)
(1.00686 -0.0134039 -9.94097e-18)
(1.00609 -0.0131706 3.88489e-18)
(1.00533 -0.0128285 2.47078e-18)
(1.00458 -0.0123943 1.08633e-18)
(1.00386 -0.0118834 3.19451e-18)
(1.00316 -0.011326 7.41937e-19)
(1.00247 -0.0107995 1.00663e-17)
(1.01796 -0.00129971 1.08276e-18)
(1.01794 -0.000899891 7.14676e-19)
(1.01804 -0.00088851 7.58837e-19)
(1.01811 -0.00138541 -2.08495e-18)
(1.01808 -0.00227851 -2.69342e-18)
(1.01796 -0.00340905 -2.43369e-18)
(1.01771 -0.00462759 3.74998e-19)
(1.01733 -0.00581495 6.50798e-18)
(1.01683 -0.0068908 3.95619e-18)
(1.01625 -0.00781603 2.10023e-18)
(1.01563 -0.00858902 -9.1452e-19)
(1.01499 -0.00923369 7.99368e-18)
(1.01435 -0.00978646 6.14262e-18)
(1.01371 -0.0102838 4.22082e-18)
(1.01306 -0.0107537 -2.92266e-18)
(1.01242 -0.0112112 -6.90194e-18)
(1.01177 -0.0116567 2.32675e-18)
(1.01111 -0.012081 1.9933e-18)
(1.01043 -0.0124636 -2.8529e-18)
(1.00974 -0.0127829 -5.63897e-18)
(1.00903 -0.013017 -2.61085e-18)
(1.0083 -0.0131472 6.56436e-18)
(1.00756 -0.0131613 -5.22257e-18)
(1.00681 -0.0130554 6.95224e-18)
(1.00606 -0.012833 -1.47593e-18)
(1.00532 -0.0125043 5.39782e-18)
(1.00459 -0.0120852 -7.78621e-18)
(1.0039 -0.0115909 -1.26703e-17)
(1.00321 -0.011051 -3.26898e-18)
(1.00254 -0.0105393 -1.91554e-17)
(1.01756 -0.00131768 -7.26109e-19)
(1.01754 -0.000896657 -1.2444e-18)
(1.01763 -0.000863023 -1.99443e-18)
(1.01769 -0.00133428 1.69837e-18)
(1.01767 -0.00219838 -5.1871e-18)
(1.01755 -0.00329784 4.88926e-18)
(1.01731 -0.00448491 -2.07421e-18)
(1.01694 -0.00564206 -4.32505e-18)
(1.01646 -0.00669015 -1.99429e-18)
(1.0159 -0.00759069 -4.1945e-18)
(1.01529 -0.0083421 3.33686e-18)
(1.01467 -0.00896788 -5.67033e-18)
(1.01405 -0.0095039 -3.35012e-19)
(1.01343 -0.00998616 -1.11032e-17)
(1.01282 -0.0104423 6.47121e-18)
(1.01219 -0.0108871 2.66365e-18)
(1.01157 -0.0113216 1.67633e-19)
(1.01093 -0.0117365 -1.77908e-18)
(1.01027 -0.0121119 -1.14936e-17)
(1.0096 -0.0124267 1.91993e-19)
(1.00891 -0.0126592 1.105e-17)
(1.00821 -0.0127908 -1.8599e-18)
(1.00749 -0.0128095 7.10144e-18)
(1.00677 -0.0127114 -1.06608e-18)
(1.00604 -0.0124995 -7.92892e-18)
(1.00532 -0.0121835 -1.48258e-19)
(1.00461 -0.011779 1.37707e-17)
(1.00393 -0.0113006 1.20405e-17)
(1.00326 -0.0107777 1.14354e-18)
(1.0026 -0.0102804 1.26181e-17)
(1.01717 -0.00133294 7.70027e-20)
(1.01714 -0.00089192 1.21337e-18)
(1.01723 -0.00083695 3.52916e-19)
(1.01729 -0.00128341 -1.05362e-18)
(1.01727 -0.00211932 2.82657e-18)
(1.01715 -0.00318848 -1.91194e-18)
(1.01691 -0.00434487 8.60027e-20)
(1.01656 -0.00547251 -8.76382e-19)
(1.01609 -0.00649349 2.90608e-18)
(1.01555 -0.00736991 -1.04844e-18)
(1.01496 -0.00810023 -2.23622e-18)
(1.01437 -0.00870753 9.17744e-18)
(1.01377 -0.00922716 3.83891e-18)
(1.01317 -0.00969457 7.65018e-18)
(1.01257 -0.0101371 6.69434e-18)
(1.01197 -0.0105695 -2.07569e-19)
(1.01136 -0.010993 -6.81059e-18)
(1.01074 -0.0113986 3.29516e-18)
(1.01011 -0.0117668 6.56358e-18)
(1.00946 -0.0120768 -2.38841e-18)
(1.0088 -0.0123074 -1.50208e-17)
(1.00812 -0.0124402 -3.89993e-19)
(1.00742 -0.0124633 2.15645e-18)
(1.00672 -0.0123723 -7.03144e-18)
(1.00601 -0.0121704 7.39304e-18)
(1.00531 -0.0118666 4.35556e-18)
(1.00462 -0.011476 -1.19829e-17)
(1.00395 -0.0110131 -6.62482e-19)
(1.0033 -0.0105067 -6.6966e-18)
(1.00265 -0.0100232 -2.24474e-18)
(1.01678 -0.00134674 2.01226e-19)
(1.01675 -0.000886799 -1.6477e-19)
(1.01684 -0.000811403 1.65002e-19)
(1.01689 -0.00123384 1.32921e-18)
(1.01687 -0.00204231 -1.52548e-19)
(1.01675 -0.00308192 -1.16853e-18)
(1.01653 -0.00420832 -3.41362e-20)
(1.01618 -0.00530712 3.91185e-18)
(1.01573 -0.00630156 -5.77198e-18)
(1.01521 -0.00715434 -1.98099e-19)
(1.01464 -0.00786395 -5.50288e-18)
(1.01406 -0.00845309 -5.63604e-18)
(1.01348 -0.00895657 -8.64319e-18)
(1.0129 -0.00940934 -7.48509e-18)
(1.01233 -0.00983843 -4.95006e-18)
(1.01175 -0.0102586 -2.33852e-18)
(1.01116 -0.0106711 6.98904e-18)
(1.01056 -0.0110672 -6.63586e-18)
(1.00995 -0.0114281 4.47865e-18)
(1.00933 -0.0117332 1.12666e-17)
(1.00868 -0.0119616 1.34515e-17)
(1.00802 -0.0120952 -3.79426e-18)
(1.00735 -0.0121221 6.1428e-18)
(1.00667 -0.0120379 8.60142e-18)
(1.00598 -0.0118454 -1.77277e-18)
(1.0053 -0.0115533 -8.37623e-19)
(1.00462 -0.0111761 4.38926e-18)
(1.00398 -0.010728 5.90031e-18)
(1.00334 -0.0102375 3.19761e-18)
(1.00271 -0.00976758 9.82548e-18)
(1.01641 -0.00135809 1.34651e-19)
(1.01637 -0.000880327 -1.19418e-19)
(1.01645 -0.000785376 8.90593e-20)
(1.0165 -0.00118459 -8.07097e-19)
(1.01648 -0.00196638 3.13841e-18)
(1.01637 -0.00297717 -1.15027e-18)
(1.01615 -0.00407432 9.58815e-20)
(1.01581 -0.00514494 -2.76231e-18)
(1.01538 -0.00611346 2.94562e-18)
(1.01487 -0.00694315 5.7373e-19)
(1.01432 -0.00763253 3.79456e-18)
(1.01376 -0.00820391 -4.56904e-18)
(1.0132 -0.00869159 -6.40337e-18)
(1.01265 -0.00913 -1.55062e-18)
(1.01209 -0.0095459 6.72099e-18)
(1.01153 -0.00995391 -2.84839e-18)
(1.01096 -0.0103555 2.90931e-19)
(1.01039 -0.0107423 2.11758e-18)
(1.0098 -0.0110958 -1.06998e-17)
(1.00919 -0.0113959 -1.33432e-17)
(1.00857 -0.0116219 -7.45704e-19)
(1.00793 -0.011756 -3.30139e-18)
(1.00728 -0.0117864 -8.43745e-18)
(1.00661 -0.0117085 4.79623e-18)
(1.00595 -0.0115249 5.55006e-18)
(1.00529 -0.0112439 -9.26578e-18)
(1.00463 -0.0108797 -3.68345e-18)
(1.004 -0.0104459 -4.01628e-18)
(1.00338 -0.00997074 1.53854e-18)
(1.00276 -0.009514 -4.59363e-18)
(1.01604 -0.00136806 6.3039e-20)
(1.016 -0.00087334 -4.60844e-19)
(1.01607 -0.000759741 2.48888e-18)
(1.01613 -0.00113652 3.69358e-19)
(1.0161 -0.00189237 -3.23508e-19)
(1.01599 -0.00287508 -2.10199e-18)
(1.01578 -0.00394365 -1.53205e-18)
(1.01546 -0.00498672 -1.07159e-18)
(1.01503 -0.00592988 -1.21166e-19)
(1.01454 -0.00673695 -5.45202e-19)
(1.01401 -0.00740649 -1.17308e-18)
(1.01347 -0.00796044 2.48882e-18)
(1.01293 -0.00843258 9.70888e-18)
(1.01239 -0.00885684 8.23249e-18)
(1.01185 -0.0092597 -4.60554e-18)
(1.01131 -0.00965568 8.32353e-18)
(1.01077 -0.0100465 -6.71513e-18)
(1.01021 -0.0104239 -2.14983e-19)
(1.00964 -0.0107699 1.00261e-17)
(1.00906 -0.0110647 -2.19401e-18)
(1.00845 -0.0112882 -1.23195e-17)
(1.00783 -0.0114225 1.60543e-17)
(1.0072 -0.0114559 1.53191e-18)
(1.00656 -0.0113839 -1.26464e-17)
(1.00591 -0.0112087 -1.21976e-17)
(1.00527 -0.0109384 1.2891e-17)
(1.00463 -0.0105865 5.47913e-18)
(1.00402 -0.0101665 -1.96002e-18)
(1.00342 -0.00970609 9.3247e-18)
(1.00281 -0.00926213 6.67243e-18)
(1.01568 -0.00137551 -7.95751e-20)
(1.01563 -0.000864961 1.20812e-18)
(1.01571 -0.000733545 -3.11656e-18)
(1.01576 -0.00108867 1.8473e-19)
(1.01573 -0.00181933 -3.65621e-19)
(1.01563 -0.00277466 4.52303e-19)
(1.01542 -0.00381536 1.83043e-18)
(1.0151 -0.00483155 -2.72599e-18)
(1.01469 -0.00574994 -4.08952e-18)
(1.01422 -0.00653493 1.59735e-18)
(1.01371 -0.0071851 -2.25693e-18)
(1.01319 -0.00772201 4.64531e-18)
(1.01266 -0.00817897 -6.03195e-18)
(1.01214 -0.00858937 4.78087e-18)
(1.01162 -0.00897943 -4.51605e-18)
(1.0111 -0.00936358 -1.3339e-17)
(1.01057 -0.00974367 1.02189e-17)
(1.01004 -0.0101118 1.71941e-18)
(1.00949 -0.0104502 -2.25327e-18)
(1.00892 -0.0107398 1.12652e-17)
(1.00834 -0.0109604 8.74565e-18)
(1.00774 -0.0110947 -5.55106e-18)
(1.00713 -0.0111309 -4.05438e-19)
(1.00651 -0.0110643 -4.55299e-19)
(1.00588 -0.0108971 -1.73467e-18)
(1.00525 -0.0106369 -1.53828e-17)
(1.00463 -0.0102969 -2.03605e-18)
(1.00404 -0.00989027 -7.24481e-18)
(1.00345 -0.00944411 -5.81394e-18)
(1.00285 -0.00901253 -6.66531e-18)
(1.01533 -0.00138166 1.70314e-19)
(1.01528 -0.000856243 -1.50675e-18)
(1.01535 -0.000707826 2.08431e-18)
(1.01539 -0.00104199 -2.35234e-18)
(1.01537 -0.00174814 -2.88747e-18)
(1.01527 -0.00267681 4.05325e-18)
(1.01506 -0.00369029 -3.63712e-18)
(1.01476 -0.00468022 2.84848e-18)
(1.01436 -0.00557439 4.92387e-18)
(1.0139 -0.00633777 4.22693e-19)
(1.01341 -0.00696896 1.94446e-18)
(1.0129 -0.00748917 -2.63932e-18)
(1.0124 -0.00793119 6.90409e-18)
(1.01189 -0.00832795 1.97575e-18)
(1.01139 -0.00870538 8.89069e-19)
(1.01089 -0.00907779 1.55714e-17)
(1.01038 -0.00944723 -2.36414e-18)
(1.00986 -0.00980601 3.4858e-18)
(1.00933 -0.0101369 -4.75774e-18)
(1.00879 -0.010421 -9.6835e-19)
(1.00822 -0.0106386 -9.17033e-18)
(1.00765 -0.0107725 1.67182e-18)
(1.00705 -0.010811 -8.64904e-18)
(1.00645 -0.0107496 9.88685e-18)
(1.00584 -0.0105899 2.04975e-18)
(1.00524 -0.0103393 3.33373e-18)
(1.00463 -0.0100107 -1.86017e-18)
(1.00405 -0.00961686 1.70149e-18)
(1.00348 -0.00918444 -5.71376e-18)
(1.0029 -0.00876482 6.40246e-19)
(1.01499 -0.00138557 -7.52389e-19)
(1.01493 -0.000846287 -1.45048e-19)
(1.01499 -0.000681662 -1.29892e-18)
(1.01504 -0.0009956 -2.46441e-19)
(1.01502 -0.00167793 1.87155e-18)
(1.01491 -0.00258059 9.481e-19)
(1.01472 -0.0035675 -1.14004e-19)
(1.01442 -0.00453179 -2.3499e-18)
(1.01404 -0.00540232 -4.79739e-18)
(1.01359 -0.0061446 4.99035e-18)
(1.01311 -0.00675727 -2.40444e-18)
(1.01263 -0.00726117 -1.95594e-18)
(1.01214 -0.00768861 -9.28121e-18)
(1.01165 -0.00807203 -2.82452e-18)
(1.01117 -0.00843707 -1.06808e-18)
(1.01068 -0.00879796 -6.03956e-18)
(1.01019 -0.00915689 -4.90997e-18)
(1.00969 -0.00950642 -8.87593e-18)
(1.00918 -0.00982973 4.71128e-18)
(1.00865 -0.0101083 -2.67654e-18)
(1.00811 -0.0103227 1.0736e-17)
(1.00755 -0.010456 3.35293e-18)
(1.00698 -0.0104967 6.62537e-18)
(1.00639 -0.0104399 -8.02933e-18)
(1.0058 -0.0102873 4.07012e-18)
(1.00522 -0.0100459 1.02503e-17)
(1.00463 -0.00972829 7.22886e-18)
(1.00406 -0.00934674 9.25448e-18)
(1.00351 -0.00892756 9.84636e-18)
(1.00294 -0.00851973 -1.60384e-17)
(1.01465 -0.00138826 2.78836e-19)
(1.01459 -0.000835858 8.77963e-20)
(1.01465 -0.000655839 1.91166e-18)
(1.01469 -0.000950265 1.74803e-18)
(1.01467 -0.00160946 -7.69056e-19)
(1.01457 -0.00248677 1.16574e-18)
(1.01438 -0.00344776 3.51195e-18)
(1.01409 -0.004387 1.92188e-18)
(1.01372 -0.00523443 4.64933e-18)
(1.01329 -0.00595608 -2.7679e-18)
(1.01283 -0.00655062 -1.20027e-19)
(1.01236 -0.00703855 -1.58781e-18)
(1.01188 -0.00745167 9.13506e-18)
(1.01141 -0.00782197 -3.59136e-18)
(1.01095 -0.0081748 4.21917e-18)
(1.01048 -0.00852428 -9.91151e-18)
(1.01001 -0.00887276 8.24936e-18)
(1.00953 -0.00921305 2.53708e-19)
(1.00903 -0.00952872 1.95846e-18)
(1.00852 -0.00980161 9.44164e-19)
(1.008 -0.0100127 -3.0919e-18)
(1.00746 -0.0101451 -9.15249e-18)
(1.0069 -0.0101875 3.4993e-18)
(1.00634 -0.0101351 1.51609e-18)
(1.00576 -0.00998918 -6.48718e-18)
(1.00519 -0.00975654 -9.31732e-18)
(1.00462 -0.00944932 5.33546e-19)
(1.00407 -0.00907962 -9.04243e-18)
(1.00353 -0.00867328 -6.279e-18)
(1.00298 -0.00827688 1.20868e-17)
(1.01432 -0.00138864 6.67813e-19)
(1.01426 -0.000824158 7.00499e-20)
(1.01432 -0.00062949 -3.39346e-18)
(1.01436 -0.000905102 9.08309e-19)
(1.01433 -0.00154183 9.83712e-19)
(1.01423 -0.00239445 -2.34179e-18)
(1.01405 -0.00333015 8.81146e-19)
(1.01377 -0.00424496 -1.56186e-18)
(1.01341 -0.00506986 2.05114e-18)
(1.01299 -0.00577139 -3.68032e-18)
(1.01255 -0.00634824 3.73998e-18)
(1.01209 -0.00682058 -9.98562e-19)
(1.01163 -0.00721973 -2.08933e-18)
(1.01118 -0.0075772 5.09109e-20)
(1.01073 -0.00791807 -7.18258e-18)
(1.01028 -0.00825635 5.60857e-18)
(1.00982 -0.00859455 -1.35755e-17)
(1.00936 -0.00892568 3.10246e-18)
(1.00888 -0.00923376 -1.30701e-18)
(1.00839 -0.00950094 2.55668e-18)
(1.00789 -0.00970853 5.01024e-18)
(1.00736 -0.00983988 -5.78198e-18)
(1.00683 -0.00988379 -3.26209e-18)
(1.00628 -0.00983531 1.61541e-19)
(1.00572 -0.00969573 5.5174e-18)
(1.00517 -0.00947142 6.53969e-18)
(1.00462 -0.00917419 -7.39763e-18)
(1.00408 -0.00881586 3.19847e-18)
(1.00356 -0.00842185 -2.96818e-19)
(1.00301 -0.00803674 -5.80244e-18)
(1.014 -0.00138788 -3.28321e-19)
(1.01393 -0.000812162 3.92892e-19)
(1.01399 -0.000603566 1.00745e-18)
(1.01403 -0.000860982 -6.74043e-19)
(1.014 -0.00147587 2.22876e-18)
(1.01391 -0.00230444 7.53857e-19)
(1.01373 -0.00321549 -4.38138e-18)
(1.01346 -0.00410646 -6.14361e-19)
(1.01311 -0.00490934 -2.52934e-18)
(1.0127 -0.00559122 1.29932e-18)
(1.01227 -0.00615077 -1.88769e-18)
(1.01183 -0.00660785 5.95747e-18)
(1.01139 -0.00699329 2.23631e-18)
(1.01095 -0.00733814 -3.25114e-18)
(1.01052 -0.00766722 9.74781e-18)
(1.01008 -0.00799443 1.86627e-18)
(1.00964 -0.00832241 4.8742e-19)
(1.0092 -0.00864441 1.8401e-18)
(1.00874 -0.00894484 -9.50733e-19)
(1.00826 -0.0092062 -7.42769e-18)
(1.00777 -0.00941013 -1.80908e-18)
(1.00727 -0.00954019 7.72973e-18)
(1.00675 -0.00958529 8.60551e-18)
(1.00622 -0.00954043 -3.54323e-19)
(1.00568 -0.00940676 5.77454e-18)
(1.00514 -0.00919032 -6.294e-18)
(1.00461 -0.00890263 3.39603e-18)
(1.00409 -0.00855518 -6.82873e-18)
(1.00358 -0.00817312 4.16067e-19)
(1.00305 -0.00779895 -9.43624e-19)
(1.01369 -0.00138513 -3.81204e-19)
(1.01362 -0.000799074 4.08256e-19)
(1.01367 -0.000577247 3.4251e-19)
(1.0137 -0.000817121 -6.68876e-19)
(1.01368 -0.00141078 -1.787e-20)
(1.01359 -0.0022159 -2.31875e-18)
(1.01341 -0.00310289 -1.94416e-18)
(1.01315 -0.00397059 4.84608e-18)
(1.01281 -0.00475199 3.20288e-18)
(1.01242 -0.00541468 3.06014e-18)
(1.012 -0.00595738 2.60628e-18)
(1.01157 -0.00639956 -3.12274e-18)
(1.01115 -0.00677163 -8.09137e-18)
(1.01073 -0.00710417 2.55076e-18)
(1.01031 -0.00742171 -7.84268e-18)
(1.00989 -0.00773806 -7.89428e-19)
(1.00946 -0.00805599 1.74862e-18)
(1.00903 -0.00836898 -7.6348e-19)
(1.00859 -0.0086618 -4.11332e-18)
(1.00813 -0.00891733 7.4628e-18)
(1.00766 -0.00911749 -1.68986e-18)
(1.00717 -0.00924609 1.06524e-18)
(1.00667 -0.00929214 -5.81758e-18)
(1.00616 -0.00925061 -3.4767e-18)
(1.00564 -0.00912248 1.26401e-18)
(1.00512 -0.00891353 1.21845e-18)
(1.0046 -0.00863493 -2.09072e-18)
(1.00409 -0.00829791 7.55602e-18)
(1.00359 -0.00792718 -1.18583e-18)
(1.00308 -0.00756373 -6.82505e-19)
(1.01338 -0.00138133 2.07799e-19)
(1.01331 -0.000785555 -1.19562e-18)
(1.01335 -0.000551212 3.63217e-20)
(1.01339 -0.000774186 1.43742e-18)
(1.01336 -0.00134725 -6.22547e-18)
(1.01327 -0.00212954 1.15519e-18)
(1.0131 -0.00299306 2.6484e-18)
(1.01285 -0.00383805 1.6139e-18)
(1.01252 -0.00459849 -3.46465e-18)
(1.01214 -0.00524245 -1.00845e-18)
(1.01173 -0.00576865 2.86614e-18)
(1.01132 -0.00619627 3.37109e-18)
(1.01091 -0.00655523 4.98221e-18)
(1.0105 -0.00687569 -4.25845e-18)
(1.0101 -0.00718187 9.88543e-18)
(1.0097 -0.0074875 -4.51147e-18)
(1.00929 -0.00779547 7.71543e-18)
(1.00887 -0.00809947 3.18889e-18)
(1.00845 -0.00838467 9.54505e-18)
(1.00801 -0.00863428 -3.41509e-18)
(1.00755 -0.00883053 -1.96341e-18)
(1.00708 -0.00895746 -5.28264e-18)
(1.0066 -0.0090042 1.92733e-19)
(1.0061 -0.00896567 1.35523e-17)
(1.00559 -0.00884272 -2.03866e-18)
(1.00509 -0.00864084 7.07331e-19)
(1.00458 -0.00837088 1.87103e-18)
(1.00409 -0.00804378 4.30266e-18)
(1.00361 -0.00768401 -5.04904e-18)
(1.0031 -0.00733062 -4.32738e-18)
(1.01308 -0.0013754 -4.43156e-19)
(1.01301 -0.000770865 3.07291e-19)
(1.01305 -0.000524673 -1.04961e-19)
(1.01308 -0.000731377 -1.13698e-18)
(1.01306 -0.00128445 4.49752e-18)
(1.01297 -0.00204451 -1.27205e-18)
(1.0128 -0.00288516 5.16639e-18)
(1.01255 -0.00370799 6.00973e-19)
(1.01223 -0.00444798 -1.01534e-18)
(1.01186 -0.00507368 2.27334e-18)
(1.01147 -0.00558382 -6.67557e-18)
(1.01108 -0.00599725 -4.01377e-18)
(1.01068 -0.00634343 4.05451e-18)
(1.01029 -0.00665208 4.90261e-18)
(1.0099 -0.00694717 -8.21277e-18)
(1.00951 -0.0072423 7.28624e-18)
(1.00912 -0.00754048 3.8634e-19)
(1.00872 -0.00783562 4.18933e-18)
(1.00831 -0.00811326 -5.65526e-18)
(1.00788 -0.00835695 1.22919e-18)
(1.00744 -0.00854921 -2.92557e-18)
(1.00699 -0.00867433 2.88282e-18)
(1.00652 -0.00872155 -8.70867e-18)
(1.00604 -0.00868575 -8.23793e-19)
(1.00555 -0.00856764 3.80097e-18)
(1.00506 -0.00837246 6.51116e-18)
(1.00457 -0.00811073 -8.70895e-18)
(1.00409 -0.00779309 -7.52725e-18)
(1.00362 -0.00744377 5.37791e-18)
(1.00313 -0.00709946 1.43602e-18)
(1.01279 -0.00136848 6.0295e-19)
(1.01271 -0.000755907 8.18993e-19)
(1.01275 -0.000498496 5.10658e-20)
(1.01278 -0.000689476 2.47988e-18)
(1.01276 -0.00122313 -1.35758e-18)
(1.01267 -0.00196156 1.06302e-18)
(1.01251 -0.00277991 -3.25641e-18)
(1.01226 -0.00358116 -6.26102e-18)
(1.01195 -0.0043012 5.87217e-20)
(1.0116 -0.00490908 -1.89371e-18)
(1.01122 -0.00540352 4.06078e-18)
(1.01083 -0.00580307 4.22095e-18)
(1.01045 -0.00613674 -2.1863e-18)
(1.01007 -0.00643382 -3.26141e-18)
(1.0097 -0.00671799 -2.29907e-18)
(1.00932 -0.00700275 -4.3678e-18)
(1.00895 -0.00729123 2.2205e-18)
(1.00856 -0.00757756 -7.47471e-18)
(1.00817 -0.00784764 -2.69787e-18)
(1.00776 -0.00808534 -4.23694e-18)
(1.00733 -0.00827349 6.23956e-19)
(1.00689 -0.00839662 -5.60433e-18)
(1.00644 -0.00844406 1.07933e-17)
(1.00598 -0.00841071 1.79008e-18)
(1.0055 -0.0082971 -1.18754e-17)
(1.00503 -0.00810825 -1.27413e-17)
(1.00455 -0.00785433 1.31161e-17)
(1.00409 -0.0075458 5.22636e-18)
(1.00363 -0.00720613 6.79154e-18)
(1.00315 -0.00687051 6.90173e-18)
(1.01251 -0.00135977 -2.91653e-19)
(1.01242 -0.000739961 2.01352e-19)
(1.01246 -0.00047195 -1.1039e-18)
(1.01249 -0.000647797 -2.65116e-18)
(1.01246 -0.00116259 1.92673e-18)
(1.01238 -0.00187992 -1.67435e-18)
(1.01222 -0.00267652 -6.11465e-19)
(1.01198 -0.00345668 3.34077e-18)
(1.01168 -0.00415726 1.34e-18)
(1.01134 -0.00474776 -2.38937e-18)
(1.01097 -0.00522691 -2.28912e-18)
(1.0106 -0.00561294 -5.32896e-20)
(1.01023 -0.00593443 -4.97491e-18)
(1.00987 -0.00622022 6.52659e-18)
(1.0095 -0.00649373 8.64529e-18)
(1.00914 -0.00676835 6.20119e-18)
(1.00878 -0.00704733 -3.94024e-18)
(1.00841 -0.00732498 -1.05785e-18)
(1.00803 -0.00758757 -3.0349e-18)
(1.00763 -0.00781929 5.86511e-18)
(1.00722 -0.00800328 1.2221e-18)
(1.0068 -0.0081243 6.29219e-18)
(1.00636 -0.0081718 -4.00097e-19)
(1.00591 -0.00814064 -6.70961e-18)
(1.00546 -0.00803125 6.93125e-18)
(1.005 -0.00784838 7.70319e-18)
(1.00454 -0.00760193 -1.10633e-17)
(1.00408 -0.00730209 -6.70462e-19)
(1.00364 -0.00697173 -3.9424e-18)
(1.00317 -0.0066445 2.49362e-18)
(1.01223 -0.00135013 6.2298e-19)
(1.01214 -0.000723608 -1.83876e-19)
(1.01217 -0.000445619 1.90422e-18)
(1.0122 -0.000606905 4.85506e-19)
(1.01218 -0.0011034 -1.02019e-18)
(1.01209 -0.00180022 2.59537e-18)
(1.01194 -0.00257562 1.10369e-18)
(1.01171 -0.00333523 -1.94229e-18)
(1.01142 -0.00401683 -2.38236e-18)
(1.01108 -0.00459037 -5.34632e-19)
(1.01073 -0.0050546 1.16894e-18)
(1.01037 -0.00542743 -3.96047e-18)
(1.01001 -0.005737 4.86141e-18)
(1.00966 -0.00601174 -9.76705e-18)
(1.00931 -0.00627478 -9.54288e-18)
(1.00896 -0.00653941 -3.06497e-18)
(1.00861 -0.00680898 3.19229e-19)
(1.00826 -0.00707802 -4.49189e-18)
(1.00789 -0.00733313 2.90165e-19)
(1.00751 -0.00755884 1.54439e-18)
(1.00712 -0.00773857 1.50273e-18)
(1.00671 -0.00785731 -5.10957e-19)
(1.00628 -0.00790464 -5.55966e-18)
(1.00585 -0.00787542 -4.33318e-18)
(1.00541 -0.00776994 -2.47155e-18)
(1.00496 -0.00759274 -5.8746e-18)
(1.00452 -0.00735342 8.99941e-18)
(1.00408 -0.00706193 -3.94041e-18)
(1.00365 -0.00674063 -7.40688e-19)
(1.00319 -0.00642168 -2.61881e-18)
(1.01196 -0.00133857 -4.55429e-19)
(1.01187 -0.000706185 -4.28185e-19)
(1.0119 -0.00041881 -1.0745e-19)
(1.01192 -0.000566099 7.21579e-20)
(1.0119 -0.00104485 1.73692e-18)
(1.01181 -0.00172169 -3.94953e-18)
(1.01166 -0.00247643 -3.77582e-18)
(1.01144 -0.003216 2.19754e-18)
(1.01116 -0.0038791 -1.40486e-18)
(1.01083 -0.00443612 7.18344e-19)
(1.01049 -0.00488581 -5.87521e-20)
(1.01014 -0.0052458 3.09191e-18)
(1.0098 -0.00554376 -3.10466e-18)
(1.00946 -0.00580773 1.47029e-18)
(1.00912 -0.00606055 7.02783e-18)
(1.00879 -0.00631542 3.39585e-18)
(1.00845 -0.00657578 2.5767e-18)
(1.00811 -0.00683634 1.10692e-17)
(1.00775 -0.00708406 1.99788e-19)
(1.00739 -0.00730378 -1.06634e-17)
(1.00701 -0.00747922 -1.03519e-18)
(1.00661 -0.0075956 2.98638e-19)
(1.00621 -0.00764261 -2.49125e-18)
(1.00579 -0.00761512 7.30205e-18)
(1.00536 -0.00751328 -3.51593e-18)
(1.00493 -0.00734145 4.95779e-18)
(1.0045 -0.00710895 -7.26317e-18)
(1.00407 -0.00682552 -3.73194e-19)
(1.00366 -0.00651304 6.40569e-18)
(1.00321 -0.00620225 -3.05922e-18)
(1.01169 -0.00132615 -1.21119e-19)
(1.0116 -0.000688512 -6.08645e-19)
(1.01163 -0.000392293 -1.10311e-18)
(1.01165 -0.000526063 7.85079e-19)
(1.01162 -0.000987588 -2.31654e-18)
(1.01154 -0.00164499 -2.33264e-19)
(1.01139 -0.00237962 2.62903e-18)
(1.01118 -0.00309968 -1.84641e-18)
(1.0109 -0.00374475 6.16807e-18)
(1.01059 -0.00428568 9.64776e-19)
(1.01026 -0.0047212 2.29163e-18)
(1.00992 -0.00506864 8.49179e-19)
(1.00959 -0.00535526 -5.15666e-19)
(1.00926 -0.00560868 3.89025e-18)
(1.00894 -0.00585148 3.41083e-19)
(1.00862 -0.00609673 -5.2114e-18)
(1.00829 -0.00634798 -1.29637e-18)
(1.00796 -0.00660013 -6.21069e-18)
(1.00762 -0.00684048 8.27687e-18)
(1.00727 -0.00705419 4.32921e-18)
(1.0069 -0.00722525 -9.62249e-19)
(1.00652 -0.00733913 -6.47927e-18)
(1.00613 -0.00738564 6.34187e-18)
(1.00572 -0.00735963 -6.23548e-18)
(1.00531 -0.00726118 7.96264e-18)
(1.00489 -0.00709442 5.58733e-18)
(1.00447 -0.00686844 3.8203e-18)
(1.00406 -0.00659275 -9.21456e-19)
(1.00366 -0.00628882 -1.41877e-17)
(1.00323 -0.00598602 7.30607e-18)
(1.01143 -0.00131216 -1.82744e-19)
(1.01134 -0.000669977 9.72377e-19)
(1.01136 -0.000365451 -2.17445e-19)
(1.01138 -0.000486222 -8.58496e-19)
(1.01136 -0.00093101 -7.10596e-19)
(1.01128 -0.00156947 4.96832e-19)
(1.01113 -0.00228446 -4.37858e-20)
(1.01092 -0.00298547 1.9549e-18)
(1.01066 -0.00361296 -2.48612e-18)
(1.01035 -0.0041382 2.6109e-18)
(1.01003 -0.00455992 -2.40651e-18)
(1.0097 -0.00489515 -4.51332e-18)
(1.00938 -0.00517074 8.26421e-19)
(1.00907 -0.00541389 2.65774e-18)
(1.00876 -0.00564691 -1.99219e-18)
(1.00845 -0.00588278 6.90843e-18)
(1.00814 -0.00612511 -2.37165e-18)
(1.00782 -0.00636901 7.36713e-18)
(1.00749 -0.0066021 1.59006e-19)
(1.00715 -0.00680983 -3.09599e-18)
(1.0068 -0.0069765 -1.36802e-18)
(1.00643 -0.00708781 8.61452e-18)
(1.00605 -0.00713368 -6.22212e-18)
(1.00566 -0.00710898 4.63495e-18)
(1.00526 -0.00701368 7.88743e-19)
(1.00486 -0.00685174 -1.18867e-17)
(1.00445 -0.006632 -3.13834e-18)
(1.00405 -0.00636375 -1.81842e-18)
(1.00366 -0.00606808 7.87434e-18)
(1.00324 -0.00577315 3.69751e-18)
(1.01118 -0.00129737 5.8011e-19)
(1.01108 -0.000651053 -8.58229e-19)
(1.01111 -0.000338749 2.57935e-18)
(1.01112 -0.000447027 1.65641e-18)
(1.0111 -0.000875595 1.45955e-18)
(1.01102 -0.00149563 5.75785e-18)
(1.01088 -0.0021915 1.88917e-19)
(1.01067 -0.00287396 -1.2616e-18)
(1.01041 -0.00348433 7.51165e-19)
(1.01012 -0.00399429 -4.67072e-18)
(1.00981 -0.00440256 1.70196e-18)
(1.00949 -0.0047259 3.996e-18)
(1.00918 -0.00499072 4.67892e-18)
(1.00888 -0.00522383 2.51755e-18)
(1.00858 -0.00544727 -2.72688e-18)
(1.00828 -0.0056739 1.81083e-18)
(1.00798 -0.00590744 6.24602e-18)
(1.00768 -0.00614317 -2.97391e-18)
(1.00736 -0.00636902 2.23144e-18)
(1.00703 -0.00657078 5.27771e-19)
(1.00669 -0.006733 -2.57777e-18)
(1.00634 -0.00684162 -1.88929e-18)
(1.00597 -0.0068867 9.75359e-20)
(1.0056 -0.0068631 -2.27365e-18)
(1.00521 -0.00677071 -1.04912e-17)
(1.00482 -0.00661332 1.10968e-17)
(1.00443 -0.00639953 3.29396e-18)
(1.00404 -0.00613843 3.35693e-19)
(1.00366 -0.00585072 -4.91437e-19)
(1.00325 -0.00556337 -4.84954e-18)
(1.01093 -0.00128084 -5.11432e-19)
(1.01083 -0.000631138 3.96978e-19)
(1.01086 -0.00031158 -2.22634e-18)
(1.01087 -0.000407871 -1.21759e-18)
(1.01084 -0.000820717 1.35969e-18)
(1.01077 -0.00142282 -4.95066e-18)
(1.01063 -0.00210007 1.61034e-18)
(1.01043 -0.00276445 -1.56973e-19)
(1.01018 -0.00335813 1.44947e-18)
(1.00989 -0.00385321 5.64118e-18)
(1.00959 -0.0042484 -6.16538e-20)
(1.00928 -0.00456016 -1.71695e-18)
(1.00899 -0.0048145 -6.03098e-18)
(1.00869 -0.00503784 -3.21631e-18)
(1.00841 -0.00525194 4.30187e-19)
(1.00812 -0.00546957 -8.61315e-18)
(1.00783 -0.00569451 -9.92677e-18)
(1.00754 -0.00592221 -1.83976e-18)
(1.00723 -0.00614095 5.25391e-19)
(1.00692 -0.00633678 9.69968e-18)
(1.00659 -0.00649456 6.53586e-18)
(1.00625 -0.00660044 5.11514e-18)
(1.0059 -0.00664461 1.55986e-18)
(1.00553 -0.00662196 -3.05801e-19)
(1.00516 -0.00653228 7.48297e-18)
(1.00478 -0.0063792 -6.27555e-18)
(1.0044 -0.0061711 -7.04845e-19)
(1.00402 -0.00591685 3.14339e-18)
(1.00366 -0.00563679 -1.43147e-18)
(1.00326 -0.00535682 -1.12125e-17)
(1.01069 -0.00126354 -2.41214e-19)
(1.01059 -0.000610972 3.83135e-19)
(1.01061 -0.000284623 -7.56699e-19)
(1.01063 -0.000369341 -7.68841e-19)
(1.0106 -0.000766929 -9.40984e-19)
(1.01052 -0.00135161 2.67983e-18)
(1.01039 -0.00201075 -4.80462e-18)
(1.01019 -0.00265753 -1.27946e-18)
(1.00995 -0.00323498 -3.98695e-18)
(1.00967 -0.00371557 -3.78897e-18)
(1.00937 -0.00409803 -2.6148e-18)
(1.00908 -0.00439851 -9.09639e-22)
(1.00879 -0.00464263 1.83464e-19)
(1.00851 -0.00485642 -2.8622e-18)
(1.00823 -0.00506137 1.39455e-18)
(1.00796 -0.00527015 2.94043e-18)
(1.00768 -0.00548661 8.261e-18)
(1.0074 -0.00570638 -2.22231e-18)
(1.00711 -0.00591804 -6.55887e-18)
(1.00681 -0.00610795 -1.91784e-18)
(1.00649 -0.00626123 -5.53447e-18)
(1.00616 -0.00636428 -1.11084e-17)
(1.00582 -0.00640741 2.86668e-19)
(1.00547 -0.00638552 -6.16597e-19)
(1.00511 -0.00629833 -4.8298e-18)
(1.00474 -0.0061493 2.75653e-18)
(1.00437 -0.00594662 4.58373e-18)
(1.00401 -0.00569894 -4.50339e-18)
(1.00365 -0.0054262 2.62978e-18)
(1.00326 -0.00515335 -5.63789e-19)
(1.01046 -0.00124485 7.084e-19)
(1.01036 -0.000590029 9.32337e-20)
(1.01037 -0.000257356 1.5656e-18)
(1.01039 -0.000330968 2.29283e-18)
(1.01036 -0.000713743 -1.44708e-18)
(1.01028 -0.00128144 -1.64915e-18)
(1.01015 -0.00192289 3.37219e-18)
(1.00996 -0.0025525 -1.3369e-18)
(1.00972 -0.00311411 4.82216e-19)
(1.00945 -0.00358059 3.59211e-18)
(1.00917 -0.00395064 -1.47799e-18)
(1.00888 -0.00424016 1.06903e-18)
(1.0086 -0.00447435 3.73767e-18)
(1.00833 -0.00467886 2.20487e-18)
(1.00807 -0.00487491 1.30144e-18)
(1.0078 -0.00507506 7.01222e-19)
(1.00754 -0.00528323 -8.70234e-18)
(1.00726 -0.00549523 1.87014e-18)
(1.00698 -0.00569994 2.05144e-18)
(1.00669 -0.00588399 -6.4292e-18)
(1.00639 -0.0060328 6.66175e-18)
(1.00607 -0.00613298 6.98323e-18)
(1.00574 -0.00617498 2.55431e-18)
(1.0054 -0.00615372 -4.62167e-18)
(1.00505 -0.00606883 2.81996e-18)
(1.0047 -0.00592365 3.90249e-18)
(1.00434 -0.00572613 -5.82692e-19)
(1.00399 -0.00548473 9.29293e-18)
(1.00365 -0.00521903 8.95989e-20)
(1.00327 -0.0049531 1.56797e-17)
(1.01023 -0.00122545 -9.10598e-21)
(1.01013 -0.00056869 1.4255e-19)
(1.01014 -0.000230141 -1.09208e-18)
(1.01015 -0.000293092 -1.44448e-18)
(1.01012 -0.000661522 -4.35149e-21)
(1.01005 -0.00121272 -8.18823e-20)
(1.00992 -0.00183696 1.85872e-18)
(1.00973 -0.00244986 3.41298e-18)
(1.0095 -0.00299606 1.47387e-18)
(1.00924 -0.00344882 -1.93133e-18)
(1.00896 -0.00380681 4.23071e-18)
(1.00869 -0.00408567 -1.82736e-19)
(1.00842 -0.00431018 2.23322e-18)
(1.00816 -0.00450563 1.64534e-18)
(1.0079 -0.00469297 2.07597e-18)
(1.00765 -0.00488466 4.82919e-18)
(1.00739 -0.00508468 8.82887e-18)
(1.00713 -0.005289 4.19493e-18)
(1.00686 -0.00548681 -1.28731e-18)
(1.00658 -0.00566503 2.37852e-18)
(1.00629 -0.00580933 -1.1879e-21)
(1.00598 -0.00590657 4.71504e-18)
(1.00567 -0.00594732 2.71992e-18)
(1.00534 -0.00592652 9.16645e-18)
(1.005 -0.00584374 4.85783e-18)
(1.00466 -0.00570217 -5.94838e-18)
(1.00431 -0.00550955 1.79272e-18)
(1.00397 -0.00527415 -6.24393e-20)
(1.00364 -0.00501519 -6.63127e-18)
(1.00327 -0.00475591 2.50727e-18)
(1.01001 -0.00120447 -1.15667e-19)
(1.0099 -0.000546436 -7.13406e-19)
(1.00991 -0.000202471 2.33427e-19)
(1.00992 -0.000255213 4.09549e-19)
(1.00989 -0.000609745 1.75916e-18)
(1.00982 -0.00114488 -2.03375e-18)
(1.00969 -0.00175236 1.2883e-18)
(1.00951 -0.00234899 -6.02075e-19)
(1.00929 -0.00288018 -2.71168e-18)
(1.00903 -0.00331958 1.65304e-18)
(1.00877 -0.00366584 -4.41121e-19)
(1.0085 -0.00393433 -2.10158e-18)
(1.00824 -0.00414945 -4.33812e-18)
(1.00799 -0.00433609 -2.92861e-18)
(1.00774 -0.00451496 3.72456e-20)
(1.0075 -0.0046984 -6.52472e-18)
(1.00725 -0.00489046 -7.05764e-18)
(1.007 -0.00508727 -4.02483e-18)
(1.00674 -0.0052783 1.16196e-18)
(1.00647 -0.00545076 4.38666e-18)
(1.00619 -0.00559059 -8.15751e-18)
(1.0059 -0.00568487 -3.11513e-18)
(1.00559 -0.00572429 -3.07923e-18)
(1.00527 -0.00570384 -7.70754e-19)
(1.00495 -0.005623 -5.10877e-18)
(1.00462 -0.00548484 1.15868e-18)
(1.00428 -0.00529689 -1.88444e-18)
(1.00395 -0.00506723 2.09896e-18)
(1.00363 -0.00481473 9.15194e-18)
(1.00327 -0.00456187 -1.15393e-17)
(1.00979 -0.0011828 -2.30924e-21)
(1.00968 -0.000523912 5.67255e-19)
(1.00969 -0.000174919 4.42725e-19)
(1.0097 -0.000217811 -1.57645e-18)
(1.00967 -0.00055886 -7.88189e-19)
(1.0096 -0.0010784 4.02158e-18)
(1.00947 -0.0016696 -4.18745e-19)
(1.0093 -0.00225041 1.73283e-18)
(1.00908 -0.00276701 -1.14527e-18)
(1.00883 -0.00319343 -3.5391e-18)
(1.00857 -0.0035283 5.23603e-19)
(1.00832 -0.00378671 2.59712e-18)
(1.00806 -0.00399268 -7.99854e-19)
(1.00782 -0.00417073 4.0687e-18)
(1.00758 -0.00434132 -3.07683e-18)
(1.00735 -0.00451667 2.8172e-18)
(1.00711 -0.00470089 3.23964e-18)
(1.00687 -0.00489029 1.47314e-18)
(1.00662 -0.00507461 -7.78548e-18)
(1.00636 -0.00524133 -1.5179e-18)
(1.00609 -0.00537667 6.55804e-18)
(1.00581 -0.00546792 -5.16482e-18)
(1.00551 -0.00550592 -3.57372e-18)
(1.00521 -0.00548565 -2.84831e-19)
(1.00489 -0.00540658 6.45183e-18)
(1.00457 -0.0052716 -1.13454e-18)
(1.00425 -0.00508808 -2.62625e-18)
(1.00393 -0.00486392 -4.51466e-18)
(1.00362 -0.00461757 -1.95038e-18)
(1.00327 -0.00437088 7.4864e-18)
(1.00958 -0.00115994 -3.06646e-20)
(1.00947 -0.000500709 2.98506e-19)
(1.00948 -0.000147084 7.67725e-20)
(1.00949 -0.000180532 1.86979e-18)
(1.00945 -0.000508494 -1.38964e-18)
(1.00938 -0.00101283 1.08955e-18)
(1.00926 -0.00158813 -6.31057e-19)
(1.00909 -0.00215349 -2.03067e-18)
(1.00888 -0.00265587 3.73763e-18)
(1.00864 -0.00306964 1.69353e-18)
(1.00838 -0.00339343 -2.4085e-18)
(1.00813 -0.00364205 1.8318e-18)
(1.00789 -0.00383913 1.66311e-18)
(1.00766 -0.00400884 -3.31798e-18)
(1.00743 -0.00417138 8.44979e-19)
(1.0072 -0.00433886 -5.9976e-18)
(1.00698 -0.00451545 8.58376e-19)
(1.00675 -0.0046976 -4.90697e-18)
(1.00651 -0.00487533 -2.09248e-19)
(1.00626 -0.00503641 7.38824e-19)
(1.006 -0.0051673 1.53842e-18)
(1.00572 -0.00525552 4.29775e-18)
(1.00544 -0.00529203 8.81163e-18)
(1.00514 -0.00527186 -5.01744e-18)
(1.00484 -0.00519439 -5.13751e-18)
(1.00453 -0.00506242 -1.92644e-18)
(1.00422 -0.00488313 -1.13453e-18)
(1.00391 -0.00466421 -3.75491e-18)
(1.00361 -0.00442379 -1.9049e-18)
(1.00327 -0.00418306 -6.32304e-18)
(1.00937 -0.00113644 1.1156e-20)
(1.00926 -0.000477092 -3.49641e-20)
(1.00927 -0.000119205 -1.5797e-18)
(1.00927 -0.000143599 -1.21303e-19)
(1.00924 -0.000458896 1.36671e-18)
(1.00917 -0.000948468 -3.56098e-19)
(1.00905 -0.00150832 -7.16328e-19)
(1.00889 -0.00205867 -2.62787e-18)
(1.00868 -0.00254722 2.26081e-18)
(1.00844 -0.00294872 2.15363e-18)
(1.0082 -0.00326175 7.80088e-19)
(1.00796 -0.00350086 -1.84782e-18)
(1.00772 -0.0036893 2.63792e-18)
(1.0075 -0.00385089 -1.28284e-18)
(1.00728 -0.00400557 -9.19411e-19)
(1.00706 -0.00416535 -5.63839e-19)
(1.00684 -0.00433443 -1.81191e-18)
(1.00662 -0.00450944 1.32467e-18)
(1.00639 -0.00468066 9.3624e-18)
(1.00615 -0.00483613 -8.71912e-18)
(1.0059 -0.00496257 -1.8488e-18)
(1.00564 -0.00504771 -3.98156e-18)
(1.00536 -0.00508265 -8.83124e-18)
(1.00508 -0.00506245 7.06021e-18)
(1.00479 -0.00498642 -1.60263e-18)
(1.00449 -0.00485727 3.0285e-18)
(1.00419 -0.00468198 2.24605e-18)
(1.00389 -0.00446809 3.26549e-19)
(1.00359 -0.00423333 4.29052e-18)
(1.00327 -0.00399829 1.10256e-17)
(1.00917 -0.0011115 -2.73516e-19)
(1.00906 -0.000452611 -7.85958e-19)
(1.00907 -9.08647e-05 2.05234e-18)
(1.00907 -0.000106611 -7.14719e-19)
(1.00904 -0.000409648 -2.05712e-19)
(1.00897 -0.000884864 -1.98678e-18)
(1.00885 -0.00142967 -4.65311e-18)
(1.00869 -0.0019654 4.59644e-18)
(1.00848 -0.00244051 -5.07363e-18)
(1.00826 -0.00283006 -5.94496e-18)
(1.00802 -0.00313262 -1.19694e-19)
(1.00779 -0.00336249 -2.25903e-18)
(1.00756 -0.00354255 -4.43695e-18)
(1.00734 -0.00369626 3.60643e-18)
(1.00713 -0.00384329 -5.29999e-19)
(1.00692 -0.00399557 2.40792e-18)
(1.00671 -0.00415734 -4.03774e-18)
(1.0065 -0.00432537 1.78228e-18)
(1.00628 -0.00449022 -8.51953e-19)
(1.00605 -0.00464018 1.84645e-18)
(1.00581 -0.00476221 3.73226e-19)
(1.00556 -0.00484429 1.02059e-18)
(1.00529 -0.00487761 -3.20039e-18)
(1.00502 -0.00485728 4.97917e-19)
(1.00473 -0.00478258 1.09355e-20)
(1.00444 -0.00465608 -9.76001e-19)
(1.00415 -0.00448462 9.12336e-19)
(1.00386 -0.00427554 -3.3108e-18)
(1.00358 -0.00404622 1.84159e-18)
(1.00326 -0.00381667 -4.59686e-18)
(1.00898 -0.00108592 3.74423e-19)
(1.00886 -0.000427821 2.89257e-19)
(1.00887 -6.25387e-05 -2.99409e-20)
(1.00887 -6.9945e-05 9.87984e-19)
(1.00884 -0.000361098 -4.93784e-19)
(1.00877 -0.000822387 1.97965e-18)
(1.00865 -0.00135258 5.09347e-18)
(1.00849 -0.00187412 1.92134e-18)
(1.0083 -0.00233617 -6.12196e-20)
(1.00807 -0.00271414 5.33399e-18)
(1.00784 -0.00300655 1.74832e-18)
(1.00762 -0.00322746 -2.07634e-18)
(1.0074 -0.00339937 6.24138e-19)
(1.00719 -0.0035454 -2.19171e-18)
(1.00699 -0.00368498 2.79238e-18)
(1.00679 -0.00382992 2.83188e-18)
(1.00659 -0.00398451 2.82722e-18)
(1.00638 -0.00414567 -5.79215e-18)
(1.00617 -0.00430422 3.85602e-18)
(1.00595 -0.0044487 3.56419e-18)
(1.00572 -0.00456634 -7.43278e-18)
(1.00547 -0.00464531 -2.75294e-18)
(1.00522 -0.00467694 8.9158e-18)
(1.00495 -0.00465638 -3.44009e-18)
(1.00468 -0.00458286 -1.40472e-18)
(1.0044 -0.00445884 2.34761e-18)
(1.00412 -0.00429101 -6.99917e-19)
(1.00384 -0.00408656 5.10352e-18)
(1.00356 -0.00386245 -1.03006e-17)
(1.00325 -0.00363823 -9.65934e-18)
(1.00879 -0.00105927 -3.32707e-19)
(1.00867 -0.000402403 4.69422e-19)
(1.00867 -3.39248e-05 -4.33552e-19)
(1.00868 -3.33556e-05 -1.53496e-18)
(1.00864 -0.000312981 -8.40698e-19)
(1.00857 -0.000760693 -4.90292e-18)
(1.00846 -0.00127663 -1.34969e-18)
(1.00831 -0.00178432 -5.8773e-18)
(1.00811 -0.00223363 3.95053e-18)
(1.0079 -0.0026003 -4.45585e-18)
(1.00767 -0.00288284 -1.16176e-18)
(1.00745 -0.00309505 3.03459e-18)
(1.00724 -0.00325905 1.42499e-18)
(1.00704 -0.00339764 -9.3363e-19)
(1.00685 -0.00352998 -4.69929e-18)
(1.00665 -0.00366779 -3.74669e-19)
(1.00646 -0.00381539 -1.4222e-18)
(1.00626 -0.00396985 4.1616e-18)
(1.00606 -0.00412224 -7.90428e-18)
(1.00585 -0.00426135 -3.22237e-18)
(1.00563 -0.00437466 3.93482e-18)
(1.00539 -0.00445054 -1.18286e-18)
(1.00514 -0.00448047 -2.32174e-18)
(1.00489 -0.0044596 2.84348e-18)
(1.00462 -0.00438715 3.2301e-18)
(1.00436 -0.00426549 -1.96964e-18)
(1.00408 -0.00410114 2.20958e-19)
(1.00381 -0.00390112 6.05802e-19)
(1.00355 -0.00368203 3.15477e-18)
(1.00325 -0.00346314 1.72025e-18)
(1.0086 -0.00103202 4.95465e-20)
(1.00849 -0.000376528 -6.16045e-19)
(1.00849 -5.15868e-06 -4.72744e-19)
(1.00849 3.04424e-06 6.81917e-19)
(1.00845 -0.000265436 1.12764e-18)
(1.00838 -0.000699977 1.05253e-18)
(1.00827 -0.00120207 -1.20447e-18)
(1.00812 -0.0016963 2.41215e-18)
(1.00793 -0.00213326 -4.46182e-19)
(1.00772 -0.00248898 6.09905e-19)
(1.00751 -0.00276196 2.70334e-18)
(1.00729 -0.00296573 -7.94558e-19)
(1.00709 -0.00312207 -9.47769e-19)
(1.0069 -0.00325342 -9.56717e-19)
(1.00671 -0.00337871 2.08363e-18)
(1.00652 -0.00350955 -3.76914e-18)
(1.00634 -0.00365031 -1.41417e-18)
(1.00615 -0.00379819 -3.78953e-19)
(1.00595 -0.0039445 7.64359e-18)
(1.00575 -0.00407829 2.94248e-18)
(1.00554 -0.00418728 3.41485e-18)
(1.00531 -0.00426006 1.51611e-18)
(1.00507 -0.00428822 -2.24119e-18)
(1.00482 -0.00426696 -4.22754e-18)
(1.00457 -0.00419546 -5.23865e-19)
(1.00431 -0.00407599 -6.29694e-19)
(1.00405 -0.00391495 -4.92961e-18)
(1.00378 -0.00371917 -5.31165e-18)
(1.00353 -0.00350504 -5.22644e-18)
(1.00324 -0.00329143 5.81879e-18)
(1.00842 -0.00100346 -2.87266e-19)
(1.00831 -0.000349828 1.81621e-19)
(1.0083 2.40814e-05 -1.03895e-18)
(1.0083 3.95539e-05 -2.99754e-22)
(1.00827 -0.000218149 8.68512e-19)
(1.0082 -0.00063989 2.69647e-18)
(1.00809 -0.00112851 -2.42384e-18)
(1.00794 -0.00160965 -4.79885e-19)
(1.00776 -0.00203458 -2.57462e-18)
(1.00756 -0.00237966 6.99968e-19)
(1.00735 -0.00264334 -5.63495e-18)
(1.00714 -0.00283892 2.55723e-18)
(1.00694 -0.00298782 -2.10011e-18)
(1.00675 -0.00311215 6.68009e-19)
(1.00657 -0.0032306 1.79742e-18)
(1.00639 -0.00335468 5.31015e-18)
(1.00622 -0.00348877 2.3792e-18)
(1.00604 -0.00363022 3.75787e-18)
(1.00585 -0.0037706 -3.84878e-18)
(1.00565 -0.00389918 6.9767e-19)
(1.00545 -0.00400392 1.15628e-18)
(1.00523 -0.00407363 1.46601e-18)
(1.005 -0.0041 3.77676e-18)
(1.00476 -0.00407831 -2.51878e-18)
(1.00452 -0.00400768 -3.5363e-18)
(1.00427 -0.0038903 1.46656e-18)
(1.00401 -0.00373241 3.99039e-18)
(1.00376 -0.00354074 3.12245e-18)
(1.00351 -0.00333136 1.68919e-18)
(1.00322 -0.00312301 -8.26124e-18)
(1.00825 -0.000974272 4.20914e-19)
(1.00813 -0.000322756 -2.39533e-19)
(1.00813 5.34255e-05 1.76027e-18)
(1.00812 7.59009e-05 5.5942e-19)
(1.00809 -0.000171363 -4.67486e-19)
(1.00802 -0.000580697 -9.63864e-19)
(1.00791 -0.00105625 1.12733e-18)
(1.00777 -0.00152469 1.68072e-19)
(1.00759 -0.00193796 1.34496e-18)
(1.00739 -0.00227273 -1.24989e-18)
(1.00719 -0.00252742 3.95027e-18)
(1.00699 -0.00271507 -3.3324e-18)
(1.0068 -0.00285677 4.80935e-18)
(1.00661 -0.00297429 8.57909e-19)
(1.00644 -0.00308607 -1.15314e-18)
(1.00627 -0.00320353 -1.61427e-18)
(1.0061 -0.00333109 2.38866e-18)
(1.00593 -0.00346623 -7.11234e-18)
(1.00575 -0.00360076 -4.25807e-18)
(1.00556 -0.00372419 -4.50513e-18)
(1.00536 -0.0038247 -8.30991e-18)
(1.00515 -0.00389133 5.97016e-18)
(1.00493 -0.00391588 3.99009e-18)
(1.0047 -0.00389368 6.89728e-18)
(1.00446 -0.0038238 6.30813e-18)
(1.00422 -0.00370838 -9.55758e-19)
(1.00397 -0.0035535 -8.7797e-19)
(1.00373 -0.00336572 2.73546e-18)
(1.00349 -0.00316091 8.47784e-18)
(1.00321 -0.00295769 -5.70141e-18)
(1.00808 -0.00094416 -2.35407e-19)
(1.00796 -0.000295112 2.17514e-19)
(1.00795 8.30624e-05 -1.38935e-19)
(1.00795 0.000112222 -5.98282e-19)
(1.00791 -0.000124922 -1.36692e-18)
(1.00785 -0.000522163 3.08725e-21)
(1.00774 -0.00098496 2.10971e-18)
(1.0076 -0.00144101 9.40682e-21)
(1.00743 -0.00184291 -1.0301e-19)
(1.00723 -0.00216764 -8.28879e-19)
(1.00703 -0.00241358 -2.44256e-19)
(1.00684 -0.00259353 -3.02601e-19)
(1.00665 -0.00272824 -4.62693e-18)
(1.00648 -0.00283915 -1.44427e-19)
(1.00631 -0.00294447 2.23898e-18)
(1.00615 -0.00305552 1.57313e-18)
(1.00598 -0.00317674 4.29672e-19)
(1.00582 -0.00330573 8.37903e-19)
(1.00565 -0.00343455 7.40389e-18)
(1.00546 -0.00355294 3.98752e-18)
(1.00527 -0.00364932 3.54843e-18)
(1.00507 -0.0037129 -1.34629e-18)
(1.00486 -0.00373565 -1.24847e-18)
(1.00464 -0.0037129 -6.68084e-18)
(1.00441 -0.00364373 -3.96399e-18)
(1.00417 -0.00353017 -1.4381e-18)
(1.00394 -0.00337816 1.73011e-18)
(1.0037 -0.00319411 -1.04848e-18)
(1.00347 -0.00299371 -1.0886e-19)
(1.0032 -0.00279509 1.56452e-17)
(1.00791 -0.00091344 2.99806e-19)
(1.00779 -0.000266949 2.49765e-19)
(1.00779 0.00011297 1.0253e-19)
(1.00778 0.000148514 -6.45339e-19)
(1.00774 -7.88548e-05 1.1278e-19)
(1.00768 -0.000464376 -1.06509e-18)
(1.00757 -0.000914799 -1.26769e-18)
(1.00744 -0.00135883 2.39211e-18)
(1.00727 -0.00174972 6.48398e-19)
(1.00708 -0.00206473 1.64179e-18)
(1.00688 -0.0023022 2.11198e-18)
(1.00669 -0.00247472 -3.34863e-19)
(1.00652 -0.00260266 3.85833e-18)
(1.00635 -0.00270716 3.47443e-19)
(1.00619 -0.00280621 4.03259e-19)
(1.00603 -0.00291099 -4.1196e-18)
(1.00587 -0.00302601 -2.69593e-18)
(1.00571 -0.00314898 -2.22599e-19)
(1.00555 -0.00327219 -4.05657e-18)
(1.00537 -0.00338561 2.92812e-18)
(1.00519 -0.00347788 -2.38579e-18)
(1.00499 -0.00353844 2.48323e-18)
(1.00479 -0.00355935 -5.42928e-18)
(1.00458 -0.00353601 3.70498e-18)
(1.00435 -0.00346746 5.44458e-18)
(1.00413 -0.00335565 6.00497e-19)
(1.0039 -0.00320638 -4.39383e-18)
(1.00367 -0.00302593 -2.29873e-18)
(1.00344 -0.00282946 -2.64588e-18)
(1.00318 -0.00263489 -1.34144e-18)
(1.00775 -0.000881508 2.91341e-19)
(1.00763 -0.000237975 -5.47942e-19)
(1.00762 0.000143385 -8.78737e-19)
(1.00762 0.000184986 1.39709e-18)
(1.00758 -3.29458e-05 -4.14931e-19)
(1.00751 -0.000407088 -5.06114e-19)
(1.00741 -0.000845478 3.92912e-18)
(1.00728 -0.00127782 -2.19098e-18)
(1.00711 -0.00165799 1.01005e-18)
(1.00693 -0.00196355 3.55827e-18)
(1.00674 -0.00219281 -3.48193e-18)
(1.00655 -0.0023581 2.71344e-18)
(1.00638 -0.00247948 -3.04831e-19)
(1.00622 -0.00257778 1.34282e-18)
(1.00606 -0.00267073 -5.17992e-18)
(1.00591 -0.00276944 1.2165e-18)
(1.00576 -0.00287842 1.15645e-18)
(1.00561 -0.00299553 3.31422e-18)
(1.00545 -0.00311327 3.71371e-18)
(1.00528 -0.00322183 -7.61246e-18)
(1.0051 -0.0033101 8.5684e-18)
(1.00492 -0.00336768 -2.37531e-18)
(1.00472 -0.00338677 -5.52638e-19)
(1.00451 -0.00336283 1.14417e-18)
(1.0043 -0.00329486 -2.489e-18)
(1.00408 -0.00318474 4.55127e-18)
(1.00386 -0.00303813 -1.26618e-19)
(1.00364 -0.0028611 7.46573e-18)
(1.00342 -0.0026684 -4.98334e-18)
(1.00317 -0.00247759 -8.35788e-18)
(1.0076 -0.00084893 -8.35334e-20)
(1.00748 -0.000208539 8.23206e-19)
(1.00746 0.000174037 2.11389e-18)
(1.00746 0.00022146 -6.0193e-19)
(1.00742 1.26574e-05 2.01928e-18)
(1.00735 -0.000350471 2.03651e-18)
(1.00725 -0.000777206 -2.90725e-18)
(1.00712 -0.00119822 5.40896e-19)
(1.00696 -0.00156802 -1.58533e-19)
(1.00678 -0.00186444 -2.64592e-18)
(1.00659 -0.00208576 -5.30802e-19)
(1.00642 -0.00224407 2.57063e-19)
(1.00625 -0.0023591 1.84314e-19)
(1.00609 -0.00245138 -1.52473e-18)
(1.00594 -0.00253841 1.50843e-18)
(1.0058 -0.00263119 1.64632e-18)
(1.00565 -0.00273428 -1.37459e-18)
(1.00551 -0.00284565 3.3908e-18)
(1.00535 -0.00295801 -1.01389e-17)
(1.00519 -0.00306179 1.53678e-18)
(1.00502 -0.00314609 -3.42319e-18)
(1.00484 -0.00320071 -2.97709e-18)
(1.00465 -0.00321798 -1.62493e-18)
(1.00445 -0.0031934 -5.63848e-18)
(1.00425 -0.00312596 7.23059e-19)
(1.00404 -0.00301744 -7.78586e-18)
(1.00382 -0.00287339 -5.74182e-19)
(1.0036 -0.0026997 -7.90086e-18)
(1.0034 -0.00251066 8.51299e-18)
(1.00315 -0.00232358 6.58468e-18)
(1.00745 -0.000815508 -5.37485e-19)
(1.00732 -0.000178541 -7.69006e-19)
(1.00731 0.000205019 -2.349e-18)
(1.0073 0.000257979 -1.283e-18)
(1.00726 5.80136e-05 -1.07771e-18)
(1.0072 -0.000294387 -1.5661e-18)
(1.0071 -0.000709752 -3.83164e-19)
(1.00697 -0.00111971 -3.19634e-18)
(1.00681 -0.0014794 -2.83078e-18)
(1.00664 -0.00176691 -5.27458e-19)
(1.00646 -0.0019805 -5.56205e-19)
(1.00628 -0.00213203 1.57736e-18)
(1.00612 -0.00224091 -1.0022e-18)
(1.00597 -0.00232735 3.82731e-18)
(1.00583 -0.00240865 4.3979e-18)
(1.00569 -0.0024957 -3.67511e-18)
(1.00555 -0.00259307 6.17872e-19)
(1.00541 -0.00269885 -3.61592e-19)
(1.00526 -0.00280598 4.51506e-18)
(1.0051 -0.00290511 -1.88715e-18)
(1.00494 -0.00298553 1.18464e-18)
(1.00477 -0.00303727 1.82993e-18)
(1.00458 -0.00305275 1.43672e-19)
(1.00439 -0.00302754 8.84683e-18)
(1.00419 -0.00296059 -1.04758e-18)
(1.00399 -0.00285364 4.47933e-19)
(1.00378 -0.00271209 4.11665e-18)
(1.00357 -0.00254167 6.76699e-19)
(1.00337 -0.00235628 3.26018e-19)
(1.00313 -0.00217302 3.60265e-19)
(1.0073 -0.000781438 4.21853e-19)
(1.00717 -0.000147933 -4.29941e-19)
(1.00716 0.000236403 6.27647e-19)
(1.00715 0.000294634 9.59844e-19)
(1.00711 0.000103191 4.57228e-20)
(1.00705 -0.000238825 1.31798e-18)
(1.00695 -0.000643169 1.2977e-18)
(1.00682 -0.00104242 4.79e-18)
(1.00667 -0.00139231 -8.0882e-19)
(1.0065 -0.00167122 2.54525e-18)
(1.00632 -0.00187735 3.66842e-18)
(1.00615 -0.00202234 -3.1565e-18)
(1.006 -0.00212528 2.63706e-18)
(1.00585 -0.00220608 -5.05935e-18)
(1.00571 -0.00228181 -6.84765e-19)
(1.00558 -0.00236328 -1.0534e-18)
(1.00544 -0.00245507 2.64029e-18)
(1.00531 -0.0025554 -7.43033e-19)
(1.00517 -0.0026574 1.38835e-18)
(1.00502 -0.00275194 -2.93184e-19)
(1.00486 -0.00282855 3.15464e-18)
(1.00469 -0.00287742 -5.40094e-19)
(1.00452 -0.00289113 4.59962e-18)
(1.00433 -0.00286526 -3.26257e-18)
(1.00414 -0.00279877 -3.30354e-19)
(1.00394 -0.00269332 -9.07839e-19)
(1.00374 -0.00255419 -1.42908e-18)
(1.00354 -0.00238696 -5.35875e-20)
(1.00335 -0.00220519 -9.37994e-18)
(1.00311 -0.0020258 -1.27099e-17)
(1.00716 -0.000746238 -5.43485e-19)
(1.00703 -0.000116518 4.79626e-19)
(1.00702 0.000268335 -2.89246e-19)
(1.00701 0.000331541 1.19091e-18)
(1.00697 0.000148314 1.64282e-18)
(1.0069 -0.00018363 -5.86712e-19)
(1.0068 -0.000577266 -1.78694e-18)
(1.00668 -0.000966109 -5.96538e-19)
(1.00653 -0.00130649 3.13159e-18)
(1.00636 -0.00157703 -6.02565e-19)
(1.00619 -0.00177592 -1.64735e-18)
(1.00603 -0.00191456 -9.30618e-19)
(1.00588 -0.00201175 -3.64566e-18)
(1.00573 -0.00208708 -4.38565e-19)
(1.0056 -0.00215741 -3.86009e-18)
(1.00547 -0.00223347 3.92529e-18)
(1.00534 -0.00231984 -1.59793e-18)
(1.00521 -0.00241486 -2.27295e-18)
(1.00508 -0.00251187 -1.10453e-18)
(1.00493 -0.00260195 8.28818e-18)
(1.00478 -0.00267484 -8.91103e-18)
(1.00462 -0.00272092 2.16005e-19)
(1.00445 -0.00273288 -4.59311e-20)
(1.00427 -0.00270637 -2.39897e-18)
(1.00409 -0.00264033 -2.14169e-18)
(1.0039 -0.00253635 6.99387e-18)
(1.0037 -0.00239958 2.05887e-18)
(1.00351 -0.00223549 5.52518e-18)
(1.00332 -0.0020573 3.9616e-18)
(1.00309 -0.00188186 3.57347e-18)
(1.00702 -0.000710334 6.98904e-19)
(1.00689 -8.45266e-05 1.52845e-19)
(1.00688 0.00030065 1.23396e-18)
(1.00686 0.000368621 -1.72371e-19)
(1.00682 0.000193327 -6.37681e-19)
(1.00676 -0.000128879 -8.93735e-20)
(1.00666 -0.000512157 3.39656e-18)
(1.00654 -0.000890931 -6.6437e-19)
(1.00639 -0.00122211 9.25168e-19)
(1.00623 -0.00148458 -9.04657e-19)
(1.00606 -0.00167648 -1.64215e-19)
(1.00591 -0.00180901 2.91036e-18)
(1.00576 -0.00190063 2.96705e-19)
(1.00562 -0.00197068 1.33722e-18)
(1.00549 -0.00203578 1.11548e-18)
(1.00537 -0.00210657 -2.27582e-18)
(1.00524 -0.00218765 -2.01248e-18)
(1.00512 -0.00227748 1.83527e-18)
(1.00499 -0.00236961 -3.62669e-19)
(1.00485 -0.0024553 2.17784e-18)
(1.00471 -0.00252453 4.79114e-18)
(1.00455 -0.00256785 1.66653e-18)
(1.00439 -0.00257808 -6.77631e-18)
(1.00421 -0.00255091 1.16219e-18)
(1.00404 -0.00248528 6.85032e-18)
(1.00385 -0.00238271 -2.73158e-19)
(1.00367 -0.00224824 2.22189e-18)
(1.00348 -0.00208719 -3.89051e-18)
(1.00329 -0.00191253 -2.25331e-18)
(1.00307 -0.00174097 1.12055e-17)
(1.00688 -0.00067366 -4.07113e-19)
(1.00676 -5.19797e-05 6.5545e-20)
(1.00674 0.000333335 -2.35616e-19)
(1.00673 0.000405819 -4.40377e-19)
(1.00668 0.000238195 1.98595e-19)
(1.00662 -7.45337e-05 4.66233e-19)
(1.00653 -0.000447709 -1.16359e-19)
(1.00641 -0.000816656 9.22871e-19)
(1.00626 -0.00113886 -2.31671e-18)
(1.0061 -0.00139347 -1.58147e-18)
(1.00594 -0.00157857 5.03066e-20)
(1.00579 -0.00170516 -5.70077e-19)
(1.00564 -0.0017914 -9.99705e-19)
(1.00551 -0.00185632 3.91089e-18)
(1.00539 -0.00191636 7.71101e-20)
(1.00527 -0.00198204 9.27939e-19)
(1.00515 -0.00205801 1.11899e-18)
(1.00503 -0.0021428 7.46028e-19)
(1.0049 -0.00223018 1.76377e-18)
(1.00477 -0.00231162 -4.16336e-18)
(1.00463 -0.00237729 3.93208e-18)
(1.00448 -0.00241793 -5.8356e-18)
(1.00432 -0.00242647 5.70916e-18)
(1.00416 -0.00239867 -8.8174e-19)
(1.00398 -0.00233343 -6.78552e-18)
(1.00381 -0.00223225 -7.7448e-18)
(1.00363 -0.00210003 -7.1293e-18)
(1.00344 -0.00194197 -1.69069e-18)
(1.00326 -0.00177074 6.38109e-19)
(1.00305 -0.00160304 2.99714e-18)
(1.00675 -0.000636263 8.70962e-20)
(1.00663 -1.87131e-05 5.00612e-20)
(1.00661 0.000366563 -3.76089e-19)
(1.00659 0.000443319 -1.11258e-18)
(1.00655 0.000283074 2.35284e-19)
(1.00648 -2.04937e-05 9.05266e-19)
(1.00639 -0.000383887 -3.09952e-18)
(1.00628 -0.000743322 -7.60342e-19)
(1.00613 -0.00105685 1.22225e-18)
(1.00598 -0.00130387 -2.52678e-19)
(1.00582 -0.00148242 2.23114e-18)
(1.00567 -0.00160329 -3.22692e-18)
(1.00553 -0.00168434 1.22495e-18)
(1.0054 -0.00174432 -2.9267e-18)
(1.00528 -0.00179946 -1.81999e-18)
(1.00517 -0.00186019 1.7565e-18)
(1.00505 -0.00193117 -1.98499e-18)
(1.00494 -0.00201105 -3.15145e-18)
(1.00482 -0.00209379 1.14868e-18)
(1.00469 -0.00217105 9.93077e-19)
(1.00455 -0.00223322 -1.06407e-18)
(1.00441 -0.00227122 1.82395e-18)
(1.00426 -0.0022781 2.38577e-18)
(1.0041 -0.00224966 -1.08789e-18)
(1.00393 -0.0021848 -1.50235e-18)
(1.00376 -0.00208495 5.52818e-18)
(1.00359 -0.00195493 4.45003e-18)
(1.00341 -0.00179978 7.12394e-20)
(1.00324 -0.00163192 7.02641e-18)
(1.00303 -0.00146799 1.55761e-18)
(1.00663 -0.000597782 -2.11322e-19)
(1.0065 1.53872e-05 3.5035e-19)
(1.00648 0.0004004 -4.05379e-19)
(1.00646 0.000481158 1.77656e-18)
(1.00642 0.000328007 -1.88142e-18)
(1.00635 3.33115e-05 -1.3701e-18)
(1.00627 -0.000320586 1.67218e-18)
(1.00615 -0.000670782 -8.26947e-19)
(1.00601 -0.000975884 1.27219e-18)
(1.00586 -0.00121552 -5.41233e-19)
(1.0057 -0.00138772 -2.85776e-18)
(1.00556 -0.00150304 1.61874e-18)
(1.00542 -0.00157906 -1.38277e-18)
(1.0053 -0.00163425 -7.2939e-19)
(1.00518 -0.00168464 1.44675e-18)
(1.00507 -0.00174057 1.2472e-18)
(1.00496 -0.0018067 3.91239e-18)
(1.00485 -0.00188182 1.22859e-18)
(1.00473 -0.00196005 -1.2718e-18)
(1.00461 -0.00203326 -3.35158e-19)
(1.00448 -0.00209204 -9.26414e-19)
(1.00434 -0.00212747 6.40366e-19)
(1.0042 -0.00213273 -6.15403e-18)
(1.00404 -0.00210368 5.38432e-20)
(1.00388 -0.0020392 -3.56417e-19)
(1.00371 -0.00194067 -1.58733e-18)
(1.00355 -0.0018128 3.65526e-19)
(1.00337 -0.00166053 6.17446e-18)
(1.00321 -0.00149595 -3.48028e-18)
(1.00301 -0.00133579 -1.40399e-17)
(1.0065 -0.000558491 3.17517e-19)
(1.00638 5.02078e-05 -4.34016e-19)
(1.00636 0.000434782 -3.13669e-19)
(1.00634 0.000519342 -1.04958e-18)
(1.00629 0.000373021 1.57257e-18)
(1.00623 8.68836e-05 8.3753e-19)
(1.00614 -0.000257842 -6.56079e-19)
(1.00603 -0.000599107 1.06588e-18)
(1.00589 -0.000896066 -1.71676e-18)
(1.00574 -0.00112859 1.90644e-18)
(1.00559 -0.00129466 5.34182e-20)
(1.00545 -0.00140464 1.21114e-18)
(1.00532 -0.00147581 1.47134e-19)
(1.0052 -0.00152638 1.04443e-18)
(1.00508 -0.00157217 1.8171e-18)
(1.00498 -0.00162344 -2.61228e-18)
(1.00487 -0.00168487 -1.11364e-18)
(1.00476 -0.00175534 1.42014e-18)
(1.00465 -0.00182916 -1.98886e-18)
(1.00453 -0.00189841 -1.8007e-18)
(1.00441 -0.00195385 -2.19879e-18)
(1.00428 -0.00198677 -4.75331e-19)
(1.00413 -0.00199044 5.0934e-18)
(1.00398 -0.00196077 5.08607e-18)
(1.00383 -0.00189666 -1.92976e-18)
(1.00367 -0.00179941 4.25851e-18)
(1.0035 -0.00167364 3.06074e-18)
(1.00334 -0.00152418 -6.42343e-19)
(1.00318 -0.00136286 -5.25973e-18)
(1.00299 -0.00120637 8.36594e-18)
(1.00639 -0.000518451 -3.68407e-19)
(1.00626 8.56204e-05 -2.31673e-19)
(1.00624 0.000469602 2.82949e-20)
(1.00622 0.000557736 -1.56538e-19)
(1.00617 0.000418 -1.34695e-19)
(1.00611 0.000140185 1.24531e-19)
(1.00602 -0.000195596 -1.47482e-18)
(1.00591 -0.000528144 -2.85808e-18)
(1.00577 -0.000817156 -2.2241e-18)
(1.00563 -0.00104274 5.05804e-19)
(1.00548 -0.00120285 -3.49501e-19)
(1.00534 -0.00130764 -1.69541e-18)
(1.00521 -0.00137411 2.2107e-18)
(1.0051 -0.00142022 1.05303e-18)
(1.00499 -0.00146157 -1.67923e-18)
(1.00488 -0.00150833 1.03752e-18)
(1.00478 -0.0015652 6.05038e-19)
(1.00468 -0.00163116 -2.91914e-19)
(1.00457 -0.00170072 -6.31419e-19)
(1.00446 -0.00176612 4.30256e-19)
(1.00434 -0.00181834 8.38036e-19)
(1.00421 -0.00184882 2.13186e-18)
(1.00407 -0.00185096 3.15229e-18)
(1.00393 -0.00182072 -4.54976e-18)
(1.00378 -0.00175697 5.13281e-18)
(1.00362 -0.001661 -1.69771e-19)
(1.00346 -0.00153731 -7.54502e-19)
(1.0033 -0.00139062 -4.53687e-18)
(1.00315 -0.00123247 7.11808e-18)
(1.00296 -0.00107963 -1.58727e-18)
(1.00627 -0.000477568 -3.10058e-20)
(1.00614 0.000121893 -1.9321e-19)
(1.00612 0.000505118 3.00267e-19)
(1.0061 0.0005966 -3.80165e-19)
(1.00605 0.000463177 1.54252e-19)
(1.00599 0.000193391 -4.24783e-19)
(1.0059 -0.00013374 2.11099e-19)
(1.00579 -0.000457857 2.47031e-18)
(1.00566 -0.000739191 3.15185e-18)
(1.00552 -0.000958085 -1.13533e-18)
(1.00537 -0.00111245 -1.85084e-19)
(1.00524 -0.00121227 4.72077e-19)
(1.00511 -0.00127423 4.21318e-19)
(1.005 -0.00131603 -2.23297e-18)
(1.00489 -0.00135308 -1.01347e-19)
(1.00479 -0.00139548 -3.23246e-19)
(1.0047 -0.00144793 -8.50285e-19)
(1.0046 -0.00150951 -4.57293e-19)
(1.00449 -0.00157491 1.98929e-18)
(1.00439 -0.00163656 -7.55896e-19)
(1.00427 -0.00168562 -1.65083e-18)
(1.00414 -0.00171371 -3.43929e-19)
(1.00401 -0.00171435 -3.67665e-18)
(1.00387 -0.00168354 -3.49077e-19)
(1.00373 -0.00162017 6.90466e-19)
(1.00358 -0.00152545 -2.4045e-18)
(1.00342 -0.0014038 -2.35549e-18)
(1.00327 -0.00125983 -1.50913e-18)
(1.00312 -0.00110481 -4.43735e-18)
(1.00294 -0.000955499 -7.6379e-19)
(1.00616 -0.000435635 1.9236e-20)
(1.00603 0.00015903 2.59729e-19)
(1.00601 0.000541308 4.78529e-19)
(1.00598 0.000635892 8.56635e-19)
(1.00594 0.000508525 -7.60728e-19)
(1.00587 0.000246508 -2.38173e-19)
(1.00579 -7.22307e-05 1.63768e-18)
(1.00568 -0.00038816 -1.40553e-18)
(1.00555 -0.000662036 3.81899e-19)
(1.00541 -0.000874434 8.01408e-19)
(1.00527 -0.00102324 -1.7456e-19)
(1.00514 -0.00111822 -1.41343e-18)
(1.00502 -0.00117581 -2.42788e-18)
(1.00491 -0.00121345 4.25759e-19)
(1.0048 -0.00124636 -1.18602e-18)
(1.00471 -0.00128453 -6.02077e-19)
(1.00461 -0.00133269 -9.9549e-20)
(1.00452 -0.00139002 -1.25286e-18)
(1.00442 -0.00145139 -2.38522e-18)
(1.00431 -0.0015094 8.44637e-19)
(1.0042 -0.0015554 9.8288e-19)
(1.00408 -0.0015812 7.13549e-19)
(1.00395 -0.00158039 -4.80255e-19)
(1.00382 -0.00154906 -1.43351e-18)
(1.00368 -0.00148606 -3.44114e-18)
(1.00353 -0.0013926 8.61453e-19)
(1.00338 -0.00127298 9.49172e-19)
(1.00323 -0.00113169 3.87052e-18)
(1.00309 -0.000979724 -1.0329e-18)
(1.00291 -0.000833889 -2.64422e-18)
(1.00605 -0.000392755 1.88079e-19)
(1.00592 0.000197053 3.54888e-19)
(1.0059 0.000578214 -2.65019e-19)
(1.00587 0.000675708 -8.1628e-19)
(1.00583 0.000554149 -2.24812e-19)
(1.00576 0.000299613 -3.94524e-19)
(1.00568 -1.10273e-05 -7.11803e-19)
(1.00557 -0.000319048 1.90752e-18)
(1.00544 -0.000585727 -7.77843e-19)
(1.00531 -0.000791868 2.18259e-18)
(1.00517 -0.000935323 -1.37779e-18)
(1.00504 -0.00102567 4.58626e-18)
(1.00492 -0.00107907 1.1832e-18)
(1.00481 -0.00111271 1.06794e-18)
(1.00471 -0.00114161 2.37242e-18)
(1.00462 -0.00117569 6.07563e-19)
(1.00453 -0.00121968 1.42745e-18)
(1.00444 -0.00127288 -1.02845e-18)
(1.00434 -0.00133031 2.17297e-18)
(1.00424 -0.00138477 1.08481e-18)
(1.00413 -0.0014278 6.34094e-19)
(1.00402 -0.00145134 -1.3375e-18)
(1.00389 -0.00144913 1.81039e-18)
(1.00376 -0.00141728 5.63536e-19)
(1.00363 -0.00135468 5.00537e-18)
(1.00349 -0.00126245 -2.19656e-19)
(1.00334 -0.00114482 8.06841e-21)
(1.0032 -0.00100618 4.69306e-19)
(1.00305 -0.000857202 4.77642e-18)
(1.00288 -0.000714722 2.94616e-18)
(1.00595 -0.000349134 -2.91602e-19)
(1.00582 0.000235707 4.2882e-19)
(1.00579 0.000615633 -5.25e-19)
(1.00577 0.000715842 2.70423e-19)
(1.00572 0.000599877 4.49348e-19)
(1.00565 0.000352613 7.82095e-20)
(1.00557 4.98746e-05 2.97554e-19)
(1.00547 -0.000250424 2.23532e-19)
(1.00534 -0.000510077 -1.42436e-18)
(1.00521 -0.000710119 -4.50187e-18)
(1.00507 -0.000848373 6.77233e-21)
(1.00495 -0.000934232 -4.88361e-18)
(1.00483 -0.000983582 -1.72579e-18)
(1.00473 -0.00101336 -2.61261e-18)
(1.00463 -0.00103839 -5.28648e-19)
(1.00454 -0.00106853 -1.41431e-18)
(1.00445 -0.0011085 -1.13857e-19)
(1.00436 -0.00115771 9.31032e-19)
(1.00427 -0.00121134 3.13941e-19)
(1.00417 -0.00126236 -9.32506e-19)
(1.00407 -0.00130251 5.82331e-19)
(1.00395 -0.00132389 2.02326e-19)
(1.00383 -0.00132033 -1.57367e-18)
(1.00371 -0.00128803 1.40044e-19)
(1.00358 -0.00122583 -2.8864e-18)
(1.00344 -0.00113484 -8.17382e-19)
(1.0033 -0.0010192 7.00257e-19)
(1.00316 -0.00088316 -1.24758e-18)
(1.00302 -0.000737095 -7.24179e-19)
(1.00286 -0.000597892 -1.72806e-18)
(1.00585 -0.00030451 1.37661e-19)
(1.00572 0.000275395 -1.98713e-19)
(1.00569 0.000653931 6.44317e-19)
(1.00566 0.00075664 -3.36284e-19)
(1.00562 0.000646017 -2.88964e-19)
(1.00555 0.000405762 6.52547e-19)
(1.00547 0.000110663 -8.84925e-19)
(1.00536 -0.000182165 -8.9073e-19)
(1.00524 -0.000435033 2.06914e-18)
(1.00511 -0.0006292 4.01611e-18)
(1.00498 -0.000762461 1.99589e-18)
(1.00485 -0.000844019 5.21127e-18)
(1.00474 -0.000889489 3.05374e-19)
(1.00464 -0.00091556 3.30007e-19)
(1.00455 -0.000936874 2.0249e-18)
(1.00446 -0.000963195 -1.51716e-19)
(1.00437 -0.000999278 6.24482e-19)
(1.00429 -0.00104461 2.31208e-18)
(1.0042 -0.00109454 6.99746e-19)
(1.0041 -0.00114223 2.29809e-18)
(1.004 -0.00117958 -9.83181e-19)
(1.00389 -0.00119886 1.06234e-18)
(1.00378 -0.00119401 -1.72874e-18)
(1.00365 -0.00116126 1.39391e-18)
(1.00353 -0.00109948 -1.12307e-18)
(1.0034 -0.00100973 1.70525e-18)
(1.00326 -0.000896051 -4.80052e-18)
(1.00312 -0.000762583 -2.93582e-18)
(1.00299 -0.000619393 7.36719e-19)
(1.00283 -0.000483391 1.18519e-19)
(1.00576 -0.000258787 1.33736e-19)
(1.00562 0.000316047 -1.40602e-19)
(1.00559 0.000693034 5.94745e-19)
(1.00557 0.000798025 -1.91071e-19)
(1.00552 0.000692512 -3.16665e-21)
(1.00545 0.000459031 -9.34557e-19)
(1.00537 0.00017134 -1.38226e-21)
(1.00527 -0.000114237 -2.10638e-19)
(1.00515 -0.000360519 -3.68107e-22)
(1.00502 -0.000548988 -1.86198e-18)
(1.00489 -0.000677416 1.63248e-18)
(1.00476 -0.000754819 -2.0289e-18)
(1.00465 -0.000796547 1.83957e-18)
(1.00455 -0.000819045 1.68159e-18)
(1.00446 -0.000836774 -1.92916e-18)
(1.00438 -0.000859415 -7.30934e-20)
(1.0043 -0.000891737 -1.53715e-18)
(1.00421 -0.000933318 -1.82106e-18)
(1.00413 -0.000979684 4.40198e-19)
(1.00404 -0.00102415 -5.63783e-19)
(1.00394 -0.00105881 -6.38574e-19)
(1.00383 -0.00107607 -3.96427e-19)
(1.00372 -0.00107 -5.32565e-19)
(1.0036 -0.00103686 -6.95331e-19)
(1.00348 -0.000975521 -9.61957e-19)
(1.00335 -0.000887014 9.49981e-19)
(1.00322 -0.000775293 1.76096e-18)
(1.00309 -0.000644378 4.40116e-18)
(1.00296 -0.000504036 5.29508e-19)
(1.0028 -0.000371252 1.05339e-18)
(1.00566 -0.000211914 3.09689e-19)
(1.00553 0.000357815 -3.18012e-19)
(1.0055 0.000733096 -3.02629e-19)
(1.00547 0.000840187 5.94695e-19)
(1.00542 0.000739558 1.60496e-18)
(1.00535 0.00051259 2.23516e-19)
(1.00527 0.000232046 1.16419e-18)
(1.00517 -4.65249e-05 1.06288e-18)
(1.00505 -0.000286441 -2.50381e-18)
(1.00492 -0.000469419 1.56611e-18)
(1.0048 -0.000593199 -1.56145e-18)
(1.00468 -0.000666614 -1.66666e-20)
(1.00457 -0.000704752 -6.89346e-19)
(1.00447 -0.00072382 1.02803e-18)
(1.00438 -0.000738093 -4.59752e-19)
(1.0043 -0.00075718 1.39759e-18)
(1.00422 -0.000785857 1.518e-18)
(1.00414 -0.000823808 1.14726e-18)
(1.00406 -0.000866713 4.59447e-19)
(1.00397 -0.00090806 -3.86916e-18)
(1.00387 -0.000940105 7.56812e-19)
(1.00377 -0.000955427 -2.16003e-18)
(1.00366 -0.00094817 1.15006e-18)
(1.00355 -0.000914677 -7.25147e-19)
(1.00343 -0.000853807 1.10939e-18)
(1.0033 -0.000766552 -5.76168e-18)
(1.00318 -0.000656782 -1.03377e-18)
(1.00305 -0.000528412 -5.91087e-18)
(1.00292 -0.000390955 1.81137e-19)
(1.00277 -0.000261438 -1.59383e-18)
(1.00557 -0.000164206 -4.13565e-19)
(1.00544 0.000400354 2.97734e-19)
(1.0054 0.00077384 -9.26658e-19)
(1.00538 0.000882869 -8.09456e-19)
(1.00533 0.000786931 -1.0149e-18)
(1.00526 0.00056629 2.04048e-19)
(1.00518 0.000292712 -5.5442e-19)
(1.00508 2.09813e-05 -1.32606e-18)
(1.00496 -0.000212733 6.35647e-19)
(1.00484 -0.000390365 -2.55392e-18)
(1.00471 -0.000509638 2.3434e-18)
(1.00459 -0.000579196 5.25099e-19)
(1.00449 -0.000613878 5.56501e-19)
(1.00439 -0.000629644 -3.47063e-18)
(1.00431 -0.000640595 4.9286e-20)
(1.00423 -0.000656262 -1.70833e-18)
(1.00415 -0.000681439 -2.98097e-18)
(1.00407 -0.000715898 -5.74257e-19)
(1.00399 -0.000755478 -2.9059e-19)
(1.00391 -0.000793824 3.76227e-18)
(1.00381 -0.000823371 -8.07072e-19)
(1.00371 -0.000836838 1.18509e-18)
(1.00361 -0.000828478 1.32285e-18)
(1.0035 -0.000794679 2.43602e-18)
(1.00338 -0.000734309 1.22293e-21)
(1.00326 -0.000648319 2.38819e-18)
(1.00314 -0.000540505 3.57867e-18)
(1.00301 -0.000414684 8.95417e-18)
(1.00289 -0.000280121 -1.6673e-18)
(1.00274 -0.000153899 1.24172e-18)
(1.00549 -0.000115257 7.78194e-20)
(1.00535 0.000444191 -8.18734e-19)
(1.00532 0.000815758 4.54828e-19)
(1.00529 0.000926532 1.88832e-18)
(1.00524 0.000835068 -8.40451e-19)
(1.00517 0.000620525 -7.72351e-19)
(1.00509 0.000353696 6.1669e-19)
(1.00499 8.85851e-05 -9.54601e-19)
(1.00487 -0.00013913 2.01764e-18)
(1.00475 -0.000311616 2.89312e-18)
(1.00463 -0.000426558 -1.44637e-18)
(1.00451 -0.000492429 -3.32256e-18)
(1.00441 -0.000523796 5.33068e-19)
(1.00432 -0.000536395 4.90359e-19)
(1.00423 -0.000544141 5.56038e-19)
(1.00416 -0.000556509 -8.41433e-19)
(1.00408 -0.000578297 2.51505e-18)
(1.004 -0.000609379 -2.69298e-18)
(1.00393 -0.000645738 -4.92379e-20)
(1.00384 -0.00068119 -3.40177e-18)
(1.00375 -0.000708325 -4.94694e-19)
(1.00365 -0.000720022 6.83269e-19)
(1.00355 -0.000710623 9.38903e-19)
(1.00344 -0.000676577 -1.19181e-18)
(1.00333 -0.000616743 2.56e-18)
(1.00322 -0.000532052 -2.61764e-20)
(1.0031 -0.000426206 -3.30611e-18)
(1.00297 -0.000302944 -4.91273e-18)
(1.00285 -0.00017129 -4.14974e-18)
(1.00271 -4.83568e-05 -2.20857e-18)
(1.00541 -6.52017e-05 2.22506e-19)
(1.00526 0.000489062 1.00179e-18)
(1.00523 0.000858589 1.01382e-19)
(1.0052 0.000970952 -2.2936e-18)
(1.00515 0.000883756 1.39731e-18)
(1.00508 0.000675121 9.38276e-19)
(1.005 0.000414823 -4.91057e-19)
(1.0049 0.00015615 -2.44567e-19)
(1.00479 -6.57636e-05 -2.01899e-18)
(1.00467 -0.00023326 -2.8577e-18)
(1.00455 -0.000344041 -2.44041e-18)
(1.00443 -0.000406352 -1.46873e-19)
(1.00433 -0.000434548 -2.45008e-18)
(1.00424 -0.000444089 1.7528e-21)
(1.00416 -0.000448768 7.58262e-19)
(1.00408 -0.00045795 4.97038e-19)
(1.00401 -0.000476484 -1.56802e-18)
(1.00394 -0.000504297 1.98009e-18)
(1.00386 -0.000537561 -1.25745e-18)
(1.00378 -0.000570209 3.3689e-18)
(1.00369 -0.000595038 -5.79536e-19)
(1.0036 -0.000605028 -5.16755e-19)
(1.0035 -0.000594663 -3.40994e-18)
(1.00339 -0.000560403 8.3226e-21)
(1.00328 -0.000501152 -1.94597e-18)
(1.00317 -0.000417763 1.92265e-18)
(1.00305 -0.000313904 9.62018e-19)
(1.00293 -0.000193189 4.00446e-19)
(1.00282 -6.44083e-05 6.18368e-18)
(1.00268 5.52854e-05 1.979e-18)
(1.00533 -1.36332e-05 -2.27023e-19)
(1.00518 0.000535418 -2.76015e-19)
(1.00515 0.000902822 4.81705e-19)
(1.00512 0.00101658 1.60269e-18)
(1.00506 0.000933492 -2.08791e-18)
(1.005 0.000730486 3.96299e-20)
(1.00492 0.000476523 6.73039e-19)
(1.00482 0.000224013 2.08176e-19)
(1.00471 7.72477e-06 7.23814e-19)
(1.00459 -0.000155038 1.44867e-18)
(1.00447 -0.000261816 2.70903e-18)
(1.00436 -0.000320797 2.24206e-18)
(1.00426 -0.000345957 2.43389e-18)
(1.00417 -0.000352656 1.70767e-18)
(1.00409 -0.000354393 4.31029e-19)
(1.00402 -0.000360588 1.25922e-18)
(1.00394 -0.000375976 -1.34669e-18)
(1.00387 -0.000400695 1.37538e-18)
(1.0038 -0.000430941 5.70844e-19)
(1.00372 -0.000460923 -1.27531e-18)
(1.00363 -0.000483484 -2.58176e-19)
(1.00354 -0.000491869 -2.5398e-19)
(1.00344 -0.000480544 3.47314e-18)
(1.00334 -0.000446143 6.31172e-19)
(1.00324 -0.000387454 7.65445e-19)
(1.00313 -0.000305421 -1.86096e-18)
(1.00301 -0.000203513 -1.04259e-19)
(1.0029 -8.53542e-05 -1.8614e-18)
(1.00279 4.05979e-05 3.26193e-19)
(1.00265 0.000157118 -1.92199e-18)
(1.00525 3.84885e-05 1.97583e-19)
(1.00511 0.000582438 -6.7174e-19)
(1.00507 0.000947686 -3.25196e-19)
(1.00504 0.00106288 -3.44349e-19)
(1.00498 0.00098375 1.61815e-18)
(1.00492 0.000786362 -1.83044e-19)
(1.00484 0.000538549 -1.47858e-18)
(1.00474 0.00029219 6.87106e-19)
(1.00463 8.13586e-05 -7.28914e-19)
(1.00451 -7.66458e-05 9.02311e-19)
(1.00439 -0.000179547 -2.89451e-18)
(1.00428 -0.000235161 -1.83746e-18)
(1.00418 -0.000257436 -1.27866e-18)
(1.0041 -0.000261321 -2.27763e-18)
(1.00402 -0.000260353 -2.19216e-18)
(1.00395 -0.000263676 3.79588e-19)
(1.00388 -0.000276219 1.32827e-18)
(1.00381 -0.000297996 -1.24415e-18)
(1.00374 -0.000325529 -1.17227e-18)
(1.00366 -0.000352975 -1.81536e-18)
(1.00358 -0.000373531 1.23939e-18)
(1.00349 -0.000380388 1.17204e-18)
(1.00339 -0.000368308 -4.40301e-19)
(1.00329 -0.000333785 1.08002e-18)
(1.00319 -0.000275808 -2.0251e-18)
(1.00308 -0.000195102 -9.21863e-21)
(1.00297 -9.52439e-05 1.42526e-18)
(1.00286 2.04017e-05 2.10401e-18)
(1.00275 0.000143494 -4.20061e-18)
(1.00262 0.000256914 -1.3165e-18)
(1.00518 9.25213e-05 -1.79747e-20)
(1.00503 0.000631423 5.33563e-19)
(1.005 0.000994551 1.56558e-19)
(1.00496 0.00111089 -4.11886e-20)
(1.00491 0.00103557 -7.18656e-20)
(1.00484 0.000843397 -2.30664e-19)
(1.00476 0.000601531 5.9582e-19)
(1.00466 0.000360864 1.66444e-18)
(1.00455 0.000155292 1.3619e-18)
(1.00444 1.68326e-06 -1.86273e-18)
(1.00432 -9.7375e-05 3.07593e-18)
(1.00421 -0.00014981 2.19884e-18)
(1.00411 -0.000169114 5.54802e-19)
(1.00403 -0.000170329 3.87251e-19)
(1.00395 -0.000166597 1.83657e-18)
(1.00388 -0.00016726 -1.74724e-18)
(1.00382 -0.000176984 1.66255e-19)
(1.00375 -0.000196101 -1.85844e-19)
(1.00368 -0.000220994 1.50066e-18)
(1.0036 -0.000246205 1.82168e-18)
(1.00352 -0.000264826 1.3069e-18)
(1.00343 -0.000270435 -1.46109e-18)
(1.00334 -0.000257639 -1.10546e-18)
(1.00324 -0.000223235 -6.64647e-19)
(1.00314 -0.000165975 -8.78432e-20)
(1.00304 -8.6806e-05 1.15501e-18)
(1.00293 1.10241e-05 -5.45379e-19)
(1.00282 0.000123989 5.83165e-19)
(1.00271 0.000244316 2.52678e-18)
(1.00259 0.000354724 1.60213e-18)
(1.00511 0.000146655 -8.01778e-20)
(1.00496 0.000681155 -7.39935e-20)
(1.00492 0.00104234 -6.18913e-19)
(1.00489 0.0011605 -1.20078e-19)
(1.00483 0.00108893 2.11823e-19)
(1.00476 0.000902359 6.98514e-19)
(1.00468 0.00066604 -2.85754e-19)
(1.00459 0.000431138 -1.83643e-18)
(1.00448 0.000230189 -1.10463e-18)
(1.00436 8.09903e-05 2.83144e-19)
(1.00425 -1.47553e-05 7.76806e-19)
(1.00414 -6.38109e-05 -6.3687e-19)
(1.00405 -8.04903e-05 7.93176e-19)
(1.00396 -7.87331e-05 1.76432e-18)
(1.00389 -7.25572e-05 6.6422e-19)
(1.00382 -7.03169e-05 1.55461e-18)
(1.00375 -7.76301e-05 1.47924e-18)
(1.00369 -9.39489e-05 8.30591e-19)
(1.00362 -0.000116697 6.75492e-19)
(1.00354 -0.0001396 -4.64568e-19)
(1.00346 -0.000156819 -1.55345e-18)
(1.00338 -0.000161122 -1.34146e-19)
(1.00329 -0.000148128 -1.99293e-19)
(1.00319 -0.000113766 -2.07371e-21)
(1.0031 -5.77151e-05 1.45094e-19)
(1.00299 2.00382e-05 1.76076e-18)
(1.00289 0.000115366 -6.37656e-20)
(1.00278 0.000225842 -6.82159e-19)
(1.00268 0.000343123 -2.65698e-18)
(1.00255 0.000450585 6.17287e-19)
(1.00504 0.000204541 -1.30502e-19)
(1.00489 0.000733331 2.28774e-19)
(1.00486 0.00109313 5.08597e-19)
(1.00482 0.00121203 3.02895e-19)
(1.00476 0.00114504 -5.76809e-19)
(1.00469 0.000963157 7.28483e-19)
(1.00461 0.000733269 1.03656e-18)
(1.00452 0.000503048 -4.8661e-19)
(1.00441 0.000307395 -1.00959e-19)
(1.00429 0.000161336 -8.78581e-19)
(1.00418 6.95169e-05 -2.75952e-18)
(1.00407 2.26541e-05 7.99331e-19)
(1.00398 9.33475e-06 -1.29189e-18)
(1.0039 1.30484e-05 1.8363e-18)
(1.00382 2.2493e-05 -1.91348e-18)
(1.00376 2.6689e-05 1.07638e-18)
(1.00369 2.25961e-05 -3.02865e-18)
(1.00363 8.09537e-06 5.7484e-19)
(1.00356 -1.17612e-05 -7.83212e-19)
(1.00349 -3.33984e-05 1.26404e-18)
(1.00341 -4.85207e-05 1.19847e-19)
(1.00333 -5.25849e-05 -1.32447e-18)
(1.00324 -3.87245e-05 1.56134e-19)
(1.00315 -5.47522e-06 -1.88495e-18)
(1.00305 5.00423e-05 2.13541e-21)
(1.00295 0.000125273 -1.54488e-18)
(1.00285 0.000218749 -2.13262e-18)
(1.00274 0.000325749 1.72596e-19)
(1.00264 0.000440627 1.67553e-19)
(1.00252 0.000545677 -2.97372e-18)
(1.00498 0.000260942 7.1925e-20)
(1.00483 0.000785815 -4.33555e-19)
(1.00479 0.00114302 -2.7439e-19)
(1.00475 0.00126366 -4.84317e-19)
(1.0047 0.00119986 8.14698e-19)
(1.00463 0.0010239 -6.7057e-19)
(1.00454 0.000799287 -1.38009e-18)
(1.00445 0.000575191 8.03909e-19)
(1.00434 0.000383683 6.06443e-19)
(1.00422 0.000242115 1.317e-18)
(1.00411 0.000152939 1.95957e-18)
(1.00401 0.000109477 4.7388e-20)
(1.00392 9.82124e-05 1.81452e-18)
(1.00384 0.000105073 -3.50406e-19)
(1.00376 0.000116552 1.29743e-18)
(1.0037 0.000123924 -3.97572e-19)
(1.00363 0.000121858 2.83415e-18)
(1.00357 0.000110395 8.66849e-20)
(1.0035 9.22164e-05 -2.25785e-19)
(1.00343 7.30404e-05 -5.30788e-19)
(1.00336 5.87785e-05 2.52591e-18)
(1.00328 5.61242e-05 2.90782e-18)
(1.00319 6.96075e-05 -2.4123e-18)
(1.0031 0.000102895 4.40856e-20)
(1.003 0.000156588 7.51823e-19)
(1.00291 0.000230424 -1.73565e-18)
(1.0028 0.000320867 3.2942e-19)
(1.0027 0.000425677 -1.49004e-18)
(1.00261 0.000538478 -5.59052e-19)
(1.00249 0.000641012 2.39616e-18)
(1.00491 0.000318219 -9.83876e-21)
(1.00476 0.000838731 5.05859e-19)
(1.00473 0.00119307 5.62186e-19)
(1.00469 0.0013148 4.1255e-19)
(1.00463 0.00125387 1.24944e-19)
(1.00456 0.00108321 2.61974e-19)
(1.00448 0.000863825 5.3482e-19)
(1.00438 0.000645653 5.49119e-19)
(1.00427 0.000458645 -6.12363e-19)
(1.00416 0.000321564 1.66851e-19)
(1.00405 0.000235328 8.53961e-20)
(1.00395 0.000195098 -6.02782e-19)
(1.00385 0.000185994 -2.4e-18)
(1.00377 0.000195726 -3.48429e-18)
(1.0037 0.000209321 7.04699e-19)
(1.00364 0.000219633 -6.25092e-19)
(1.00358 0.000219753 1.12242e-18)
(1.00351 0.00021115 -2.96394e-18)
(1.00345 0.000194864 -1.23618e-19)
(1.00338 0.000177998 1.37731e-18)
(1.0033 0.000164822 -4.41393e-18)
(1.00322 0.000163424 -3.0906e-18)
(1.00314 0.000176737 2.78451e-18)
(1.00305 0.000209895 -1.06748e-19)
(1.00296 0.000261981 1.95048e-18)
(1.00286 0.000334343 1.13867e-18)
(1.00276 0.00042211 7.53691e-19)
(1.00266 0.000525135 1.4381e-18)
(1.00257 0.00063497 1.80509e-18)
(1.00246 0.000734525 3.46788e-19)
(1.00485 0.000381054 1.14243e-19)
(1.0047 0.000895717 -1.32935e-19)
(1.00467 0.00124805 -1.49897e-19)
(1.00463 0.0013691 8.87444e-21)
(1.00457 0.0013117 -1.04418e-18)
(1.0045 0.00114437 -8.90826e-19)
(1.00442 0.000930924 3.06486e-19)
(1.00432 0.000717005 -1.20396e-18)
(1.00421 0.000535699 1.21582e-18)
(1.0041 0.000401758 -7.25862e-19)
(1.00399 0.00031974 -1.65948e-18)
(1.00389 0.000281286 2.48685e-18)
(1.0038 0.000275394 -1.30491e-18)
(1.00372 0.000286415 4.22578e-18)
(1.00365 0.000303098 7.45048e-21)
(1.00358 0.000314826 -5.91462e-19)
(1.00352 0.000318174 -3.59527e-18)
(1.00346 0.000311011 3.25341e-19)
(1.00339 0.000297735 -7.20595e-19)
(1.00332 0.000281799 -1.55362e-18)
(1.00325 0.000270835 3.5064e-18)
(1.00317 0.00026929 1.41376e-18)
(1.00309 0.000283537 -8.00794e-19)
(1.003 0.000315143 1.14963e-18)
(1.00291 0.000366792 -1.43043e-18)
(1.00282 0.000436297 -1.05097e-18)
(1.00272 0.000522666 -6.08742e-19)
(1.00262 0.000622116 1.67757e-18)
(1.00253 0.000728924 -1.0368e-18)
(1.00242 0.000825032 4.00792e-19)
(1.00479 0.000443734 -2.63325e-20)
(1.00464 0.000955562 1.52362e-19)
(1.00461 0.00130579 2.6696e-19)
(1.00457 0.00142812 -1.3317e-19)
(1.00451 0.00137326 -1.12228e-19)
(1.00444 0.00121049 1.0351e-18)
(1.00435 0.00100141 -7.38683e-19)
(1.00426 0.000792805 1.2846e-18)
(1.00415 0.000615651 -1.25589e-18)
(1.00403 0.000486016 1.78113e-19)
(1.00393 0.000406693 7.46423e-19)
(1.00383 0.000371036 -3.68279e-18)
(1.00374 0.000366682 2.5276e-18)
(1.00366 0.000379817 -9.27265e-19)
(1.00359 0.000397836 -3.6354e-18)
(1.00353 0.000411765 -1.19796e-18)
(1.00347 0.000416629 3.26237e-18)
(1.0034 0.00041175 2.17057e-18)
(1.00334 0.000399824 6.40957e-19)
(1.00327 0.000385705 -6.31259e-19)
(1.0032 0.000375307 -1.51954e-18)
(1.00312 0.000374519 -1.55987e-19)
(1.00304 0.000388064 1.46315e-18)
(1.00295 0.000419111 -1.03232e-18)
(1.00286 0.000468716 -6.98227e-19)
(1.00277 0.000536677 2.08301e-18)
(1.00268 0.000619901 2.42303e-18)
(1.00258 0.000717151 -2.58234e-18)
(1.00249 0.000819329 -5.96202e-19)
(1.00239 0.000910931 -3.90059e-18)
(1.00474 0.000508553 -8.51552e-20)
(1.00459 0.00101792 -1.62639e-19)
(1.00455 0.001367 -5.59507e-19)
(1.00452 0.00149055 -8.14662e-20)
(1.00446 0.00143874 5.76622e-20)
(1.00438 0.00128013 -7.69252e-19)
(1.0043 0.00107566 -5.20815e-19)
(1.0042 0.000871743 -4.23654e-19)
(1.00409 0.000698903 4.11101e-19)
(1.00398 0.000572961 3.14438e-19)
(1.00387 0.000496507 -1.0405e-18)
(1.00377 0.000463031 1.60192e-18)
(1.00368 0.000460311 -1.94102e-18)
(1.00361 0.00047486 -1.61321e-18)
(1.00354 0.000494211 1.42889e-18)
(1.00347 0.000509576 6.15657e-19)
(1.00341 0.000515917 8.97184e-20)
(1.00335 0.000512548 -1.14511e-18)
(1.00329 0.000501945 -6.57505e-19)
(1.00322 0.000488888 1.10266e-18)
(1.00315 0.000479062 -1.04572e-18)
(1.00307 0.000478306 9.52979e-19)
(1.00299 0.000491243 -1.24484e-18)
(1.0029 0.000521067 1.04065e-18)
(1.00282 0.000569016 -1.47044e-20)
(1.00272 0.000634682 -5.27375e-19)
(1.00263 0.000716217 3.5573e-19)
(1.00254 0.000809043 3.20505e-19)
(1.00245 0.000907335 7.41819e-19)
(1.00235 0.000995954 1.15283e-18)
(1.00468 0.000574156 1.85099e-19)
(1.00453 0.00108175 -1.09499e-19)
(1.0045 0.00143023 -1.6214e-19)
(1.00446 0.00155531 5.98736e-19)
(1.0044 0.00150676 5.39279e-20)
(1.00433 0.00135234 3.69415e-20)
(1.00424 0.00115247 1.72667e-18)
(1.00414 0.00095302 2.28806e-19)
(1.00403 0.000784263 5.63478e-19)
(1.00392 0.00066169 -1.50707e-19)
(1.00381 0.000587871 7.52876e-19)
(1.00371 0.000556285 -3.45593e-19)
(1.00363 0.000554975 1.42225e-18)
(1.00355 0.000570612 4.68582e-19)
(1.00348 0.000591009 2.02468e-18)
(1.00342 0.000607414 2.93025e-18)
(1.00336 0.000614891 -2.04179e-18)
(1.0033 0.000612611 1.75149e-18)
(1.00323 0.000603008 -3.58179e-19)
(1.00317 0.000590638 -2.29216e-18)
(1.0031 0.000581131 6.93079e-19)
(1.00302 0.000580138 -5.404e-19)
(1.00294 0.000592317 -1.09652e-18)
(1.00285 0.00062078 -2.1634e-18)
(1.00277 0.000666924 2.11723e-18)
(1.00268 0.000730594 8.4099e-19)
(1.00259 0.000809259 -7.61874e-19)
(1.0025 0.000899084 1.02373e-18)
(1.00241 0.000994852 -1.4123e-18)
(1.00231 0.00107929 4.79459e-18)
(1.00462 0.000640319 -2.66563e-20)
(1.00448 0.00114689 1.82585e-19)
(1.00444 0.00149531 -1.78879e-19)
(1.00441 0.00162227 -5.64467e-19)
(1.00434 0.00157716 6.68313e-20)
(1.00427 0.00142705 -6.19088e-19)
(1.00418 0.00123174 -4.25245e-19)
(1.00409 0.00103663 6.47974e-20)
(1.00397 0.000871721 -1.36515e-20)
(1.00386 0.000752287 7.47068e-19)
(1.00375 0.000680876 -2.22215e-19)
(1.00366 0.00065101 4.86722e-19)
(1.00357 0.000650935 7.22134e-19)
(1.0035 0.000667494 1.41171e-18)
(1.00343 0.000688711 -1.93194e-18)
(1.00337 0.000705914 -3.39589e-18)
(1.00331 0.000714225 8.90294e-19)
(1.00325 0.000712741 -2.54676e-18)
(1.00318 0.000703814 1.68367e-18)
(1.00312 0.000691858 2.28563e-18)
(1.00304 0.000682387 -6.03151e-19)
(1.00297 0.000680953 1.82972e-18)
(1.00289 0.000692119 2.83864e-19)
(1.00281 0.00071907 1.83094e-18)
(1.00272 0.000763017 -1.32705e-18)
(1.00263 0.000824366 9.31242e-20)
(1.00255 0.000899463 -1.11158e-18)
(1.00246 0.000986525 -4.2458e-19)
(1.00237 0.00107747 3.46684e-19)
(1.00227 0.00115659 1.25214e-18)
(1.00456 0.000706534 -1.89284e-19)
(1.00442 0.00121311 -1.7193e-19)
(1.00439 0.00156204 1.5675e-19)
(1.00435 0.00169125 8.11082e-20)
(1.00429 0.00164979 1.92614e-19)
(1.00421 0.00150405 1.35044e-18)
(1.00413 0.00131326 -2.73228e-19)
(1.00403 0.00112238 -8.38831e-19)
(1.00392 0.000961111 -4.50801e-19)
(1.0038 0.000844583 2.60603e-19)
(1.0037 0.00077534 1.20528e-18)
(1.0036 0.000746983 -5.21144e-19)
(1.00351 0.000747935 -7.2185e-19)
(1.00344 0.000765216 -2.84054e-18)
(1.00337 0.000787027 4.04792e-19)
(1.00331 0.000804789 1.99554e-18)
(1.00325 0.000813668 -2.5695e-18)
(1.00319 0.000812715 1.3029e-18)
(1.00313 0.000804201 -5.09443e-19)
(1.00306 0.000792415 -1.65687e-18)
(1.00299 0.000782766 3.00095e-18)
(1.00292 0.000780679 -2.31725e-18)
(1.00284 0.000790686 7.42414e-19)
(1.00275 0.000815843 1.03881e-18)
(1.00267 0.000857547 -1.85347e-18)
(1.00259 0.000915636 8.28458e-19)
(1.0025 0.000987954 9.65757e-19)
(1.00241 0.00107031 -9.31127e-19)
(1.00233 0.00115677 2.6334e-18)
(1.00223 0.00123228 9.09953e-19)
(1.00449 0.000772131 1.54281e-19)
(1.00436 0.00127974 3.2432e-20)
(1.00433 0.00162989 4.08001e-19)
(1.00429 0.00176183 3.39774e-20)
(1.00423 0.00172433 -2.75992e-19)
(1.00416 0.00158319 1.84304e-19)
(1.00407 0.00139705 -1.06392e-19)
(1.00397 0.00121043 7.96382e-19)
(1.00386 0.00105277 1.77088e-19)
(1.00375 0.000939076 -1.43637e-18)
(1.00364 0.000871906 -1.44455e-18)
(1.00354 0.00084496 2.88728e-20)
(1.00346 0.000846832 6.63982e-19)
(1.00338 0.000864715 1.26469e-18)
(1.00332 0.000886972 4.54918e-19)
(1.00326 0.000905114 -2.33033e-18)
(1.0032 0.000914352 6.63153e-19)
(1.00314 0.000913699 9.53188e-19)
(1.00308 0.00090535 -5.42875e-20)
(1.00301 0.00089349 4.36903e-20)
(1.00294 0.000883418 -5.82904e-19)
(1.00286 0.00088046 1.21069e-18)
(1.00279 0.000889065 1.27388e-18)
(1.0027 0.000912275 -8.86649e-19)
(1.00262 0.0009514 2.31895e-18)
(1.00254 0.00100637 -5.62742e-19)
(1.00245 0.00107466 -1.31741e-18)
(1.00237 0.00115361 2.27906e-18)
(1.00228 0.0012366 1.38728e-19)
(1.00218 0.00130845 -4.4909e-18)
(1.00442 0.000836223 -1.37527e-19)
(1.0043 0.00134607 -4.34933e-20)
(1.00427 0.00169829 8.16918e-20)
(1.00423 0.00183352 2.13423e-19)
(1.00417 0.00180035 -3.92987e-20)
(1.00409 0.00166404 -1.57636e-18)
(1.00401 0.00148268 4.06063e-19)
(1.00391 0.00130038 -3.29747e-20)
(1.0038 0.00114633 -3.40374e-19)
(1.00369 0.00103542 5.23806e-19)
(1.00358 0.000970247 1.2566e-18)
(1.00348 0.000944612 2.17721e-20)
(1.0034 0.000947286 -3.42803e-19)
(1.00333 0.000965635 5.01897e-19)
(1.00326 0.000988176 -7.179e-19)
(1.0032 0.00100651 3.97514e-18)
(1.00314 0.0010159 5.87045e-19)
(1.00308 0.00101532 -8.24303e-19)
(1.00302 0.0010069 -2.94298e-19)
(1.00295 0.000994727 -1.70836e-19)
(1.00288 0.000984002 -2.39094e-18)
(1.00281 0.000979948 1.72317e-18)
(1.00273 0.000986964 -1.98001e-18)
(1.00265 0.00100802 1.25286e-18)
(1.00257 0.00104447 -1.0728e-18)
(1.00249 0.00109606 -1.10455e-18)
(1.00241 0.00116056 3.33767e-20)
(1.00232 0.00123529 -2.56096e-18)
(1.00224 0.00131429 -3.45474e-18)
(1.00214 0.00138277 -3.58249e-18)
(1.00433 0.000898116 3.39609e-20)
(1.00422 0.00141124 3.36094e-20)
(1.0042 0.00176636 -3.24703e-19)
(1.00416 0.00190548 -3.46972e-19)
(1.0041 0.00187709 1.90647e-19)
(1.00403 0.00174593 1.13371e-18)
(1.00394 0.0015696 -6.86427e-19)
(1.00385 0.00139181 -5.88279e-20)
(1.00374 0.00124152 1.15325e-19)
(1.00362 0.00113351 -8.16439e-20)
(1.00352 0.0010704 -9.0796e-19)
(1.00342 0.00104612 -8.07621e-19)
(1.00334 0.00104959 -5.74513e-19)
(1.00327 0.00106836 9.64935e-19)
(1.0032 0.00109109 -5.47531e-19)
(1.00314 0.00110949 6.5129e-20)
(1.00309 0.00111885 -1.10439e-19)
(1.00303 0.00111813 5.34591e-19)
(1.00296 0.0011094 4.93584e-19)
(1.0029 0.00109665 1.87151e-20)
(1.00283 0.00108501 -3.02113e-19)
(1.00275 0.00107961 -2.05935e-18)
(1.00268 0.00108478 2.13541e-18)
(1.0026 0.00110348 -1.73071e-18)
(1.00252 0.00113701 2.23178e-18)
(1.00244 0.00118521 -6.54321e-19)
(1.00236 0.00124564 4.36425e-19)
(1.00227 0.00131626 1.53044e-18)
(1.00219 0.00139116 -1.84675e-19)
(1.0021 0.0014556 2.94049e-18)
(1.00423 0.000956643 -4.31595e-20)
(1.00413 0.00147411 2.55048e-19)
(1.00411 0.00183297 4.3449e-19)
(1.00408 0.00197666 -2.54255e-19)
(1.00402 0.00195358 3.36496e-19)
(1.00395 0.00182798 -7.83073e-19)
(1.00387 0.00165701 8.50157e-20)
(1.00377 0.00148398 -3.27433e-19)
(1.00367 0.00133765 -4.84503e-19)
(1.00355 0.00123268 -1.43815e-20)
(1.00345 0.00117172 -7.16919e-19)
(1.00336 0.00114881 1.79484e-18)
(1.00328 0.00115307 7.06893e-19)
(1.0032 0.00117219 -8.64239e-19)
(1.00314 0.001195 8.5819e-19)
(1.00308 0.00121331 -1.82066e-18)
(1.00303 0.00122246 7.11266e-20)
(1.00297 0.0012214 1.20011e-18)
(1.0029 0.00121213 1.98545e-19)
(1.00284 0.00119859 -5.74683e-19)
(1.00277 0.0011858 1.54107e-18)
(1.0027 0.00117882 9.89625e-19)
(1.00262 0.00118193 -2.0732e-18)
(1.00254 0.00119806 9.00134e-19)
(1.00246 0.00122852 -4.6296e-19)
(1.00238 0.00127311 1.7278e-18)
(1.0023 0.00132962 1.8149e-18)
(1.00222 0.00139582 -1.49679e-18)
(1.00214 0.0014663 2.94005e-18)
(1.00205 0.00152639 3.72034e-18)
(1.00412 0.00101069 6.69821e-20)
(1.00403 0.0015332 -1.93401e-19)
(1.00402 0.00189655 -8.07526e-19)
(1.00399 0.00204548 6.59145e-19)
(1.00394 0.00202831 -3.09777e-19)
(1.00387 0.00190885 8.50653e-19)
(1.00379 0.00174375 1.5044e-19)
(1.00369 0.00157596 5.22238e-22)
(1.00359 0.00143399 9.43686e-19)
(1.00348 0.00133239 -2.53616e-19)
(1.00338 0.00127385 4.33609e-19)
(1.00329 0.00125252 -1.73225e-18)
(1.00321 0.00125767 4.8182e-19)
(1.00314 0.0012772 8.00676e-20)
(1.00308 0.00130009 6.32908e-19)
(1.00302 0.00131824 5.67351e-19)
(1.00296 0.00132707 -1.85093e-19)
(1.00291 0.00132551 -2.46247e-18)
(1.00284 0.00131553 9.2306e-19)
(1.00278 0.00130098 1.988e-18)
(1.00271 0.00128682 1.16703e-18)
(1.00264 0.00127804 -1.60705e-18)
(1.00256 0.00127886 2.47254e-18)
(1.00248 0.0012922 -1.98031e-18)
(1.00241 0.00131938 -2.86994e-19)
(1.00233 0.00136027 -5.53592e-19)
(1.00225 0.00141255 -2.58826e-18)
(1.00217 0.00147437 1.04263e-18)
(1.00209 0.00154024 -5.81501e-19)
(1.002 0.0015958 -5.25987e-21)
(1.00398 0.00105914 9.24102e-20)
(1.00391 0.00158715 -5.99116e-20)
(1.00391 0.0019556 1.04517e-19)
(1.00388 0.0021104 -1.82219e-19)
(1.00383 0.00209974 -2.66132e-20)
(1.00377 0.00198701 -5.97916e-19)
(1.00369 0.00182837 7.06167e-19)
(1.0036 0.00166637 -4.36783e-20)
(1.0035 0.00152924 -6.54454e-19)
(1.0034 0.00143144 9.41009e-19)
(1.0033 0.00137564 5.13779e-19)
(1.00321 0.00135611 8.07427e-19)
(1.00313 0.00136232 -5.37736e-19)
(1.00306 0.00138234 -6.37672e-21)
(1.00301 0.00140532 -8.32201e-19)
(1.00295 0.00142329 -8.17276e-19)
(1.00289 0.00143171 4.73676e-19)
(1.00284 0.00142954 6.72012e-19)
(1.00278 0.0014187 2.78971e-19)
(1.00271 0.00140299 -1.84525e-19)
(1.00265 0.00138729 -3.11955e-21)
(1.00258 0.00137652 5.02236e-19)
(1.0025 0.00137488 -5.83007e-19)
(1.00242 0.00138525 2.17829e-18)
(1.00235 0.00140899 -8.66916e-19)
(1.00227 0.00144596 -5.9944e-19)
(1.00219 0.00149404 1.54974e-18)
(1.00211 0.00155129 2.19012e-19)
(1.00204 0.00161246 5.15589e-19)
(1.00195 0.00166357 -5.76125e-18)
(1.00382 0.00110132 -2.29154e-19)
(1.00378 0.00163473 -6.79539e-20)
(1.00378 0.0020086 3.44926e-19)
(1.00376 0.00216978 -3.44376e-19)
(1.00371 0.00216625 -2.63054e-19)
(1.00365 0.00206093 9.38971e-20)
(1.00358 0.00190944 -3.97892e-19)
(1.0035 0.0017539 2.34362e-19)
(1.0034 0.00162226 8.85447e-19)
(1.0033 0.00152883 -4.71844e-19)
(1.00321 0.00147628 7.60471e-19)
(1.00312 0.00145899 -3.08175e-19)
(1.00305 0.0014666 4.23597e-19)
(1.00299 0.00148736 3.61167e-19)
(1.00293 0.00151062 -3.0597e-19)
(1.00288 0.0015285 9.52446e-20)
(1.00282 0.00153655 5.23077e-19)
(1.00277 0.00153375 -6.75056e-19)
(1.00271 0.00152197 -2.05199e-18)
(1.00265 0.00150499 -1.36668e-20)
(1.00258 0.00148761 -3.17985e-18)
(1.00251 0.0014747 -8.34675e-20)
(1.00244 0.00147042 -8.03321e-19)
(1.00236 0.00147766 1.8161e-19)
(1.00229 0.00149778 1.58037e-18)
(1.00221 0.00153072 -8.3478e-19)
(1.00214 0.00157437 -5.88617e-19)
(1.00206 0.00162698 -3.88083e-19)
(1.00198 0.00168342 8.98162e-20)
(1.0019 0.00173014 1.9693e-18)
(1.00364 0.00113629 1.29634e-19)
(1.00361 0.00167464 1.25095e-19)
(1.00362 0.00205397 7.25467e-20)
(1.00361 0.0022219 2.62833e-19)
(1.00357 0.00222609 -1.37685e-20)
(1.00352 0.00212884 2.32762e-19)
(1.00345 0.00198522 -3.06199e-19)
(1.00338 0.00183686 3.28883e-19)
(1.00329 0.00171137 1.78309e-19)
(1.00319 0.00162291 3.55865e-19)
(1.0031 0.00157413 -1.34706e-19)
(1.00302 0.00155952 5.30378e-19)
(1.00295 0.00156888 -2.33617e-20)
(1.0029 0.00159067 -1.39176e-18)
(1.00284 0.00161439 1.84793e-19)
(1.00279 0.00163232 -2.28632e-19)
(1.00274 0.00164007 -8.96053e-19)
(1.00269 0.00163665 1.27545e-18)
(1.00263 0.00162394 3.70203e-19)
(1.00257 0.00160563 -5.8897e-19)
(1.00251 0.0015865 2.97371e-18)
(1.00244 0.00157136 2.1847e-18)
(1.00237 0.00156435 -2.38313e-18)
(1.00229 0.00156834 -1.92617e-18)
(1.00222 0.00158475 -9.32403e-19)
(1.00215 0.00161353 9.64775e-19)
(1.00207 0.00165269 -1.5192e-18)
(1.002 0.00170059 -1.1863e-18)
(1.00193 0.00175225 -6.77415e-19)
(1.00184 0.00179464 3.00551e-18)
(1.00344 0.00116371 -1.1684e-19)
(1.00343 0.00170586 -2.05134e-19)
(1.00345 0.00209028 -1.08299e-19)
(1.00344 0.00226512 3.58913e-19)
(1.00341 0.00227749 6.70563e-19)
(1.00336 0.00218904 1.00735e-19)
(1.00331 0.0020541 -2.72492e-19)
(1.00324 0.00191377 -1.60912e-19)
(1.00316 0.00179527 -1.06657e-18)
(1.00307 0.00171255 -9.74679e-19)
(1.00299 0.00166826 -3.89183e-19)
(1.00291 0.00165694 -6.82966e-20)
(1.00285 0.00166858 1.09645e-19)
(1.0028 0.00169183 6.9601e-19)
(1.00275 0.00171637 1.16806e-18)
(1.0027 0.00173461 -2.73309e-19)
(1.00266 0.00174227 2.37218e-19)
(1.00261 0.00173837 -1.0781e-18)
(1.00255 0.00172479 1.91128e-19)
(1.00249 0.0017052 -3.40787e-19)
(1.00243 0.00168431 -9.50968e-19)
(1.00237 0.00166689 -2.7832e-18)
(1.0023 0.00165708 2.01095e-18)
(1.00222 0.00165775 5.7991e-20)
(1.00215 0.00167033 -6.63546e-19)
(1.00208 0.00169485 8.87682e-19)
(1.00201 0.00172939 2.62036e-18)
(1.00194 0.00177247 8.56373e-19)
(1.00187 0.00181921 -1.64704e-18)
(1.00178 0.00185719 -2.35195e-18)
(1.00322 0.00118326 2.17751e-19)
(1.00322 0.00172762 1.87956e-19)
(1.00325 0.00211645 1.61519e-19)
(1.00325 0.00229808 -6.83347e-19)
(1.00322 0.00231894 -4.40869e-19)
(1.00319 0.00223981 9.36056e-22)
(1.00314 0.00211426 -5.51885e-20)
(1.00308 0.00198273 -1.11423e-19)
(1.00301 0.00187201 4.42466e-19)
(1.00293 0.00179578 3.25901e-19)
(1.00285 0.00175663 -2.7911e-19)
(1.00279 0.0017492 -7.63508e-19)
(1.00273 0.00176362 -1.57767e-18)
(1.00268 0.00178875 5.10926e-19)
(1.00264 0.00181446 -9.18694e-19)
(1.0026 0.00183331 1.18633e-18)
(1.00256 0.0018411 7.23155e-19)
(1.00251 0.00183691 9.57189e-19)
(1.00246 0.00182259 8.80279e-20)
(1.00241 0.0018018 -1.94018e-19)
(1.00235 0.00177922 -2.00398e-19)
(1.00228 0.00175958 1.69235e-18)
(1.00222 0.00174698 -8.57156e-19)
(1.00215 0.00174431 1.02489e-18)
(1.00208 0.00175306 1.70025e-18)
(1.00201 0.00177327 -3.30518e-18)
(1.00194 0.00180316 -8.78003e-19)
(1.00187 0.00184134 -5.67199e-19)
(1.0018 0.00188305 1.51431e-18)
(1.00172 0.0019165 -6.26185e-19)
(1.00298 0.00119576 -5.18285e-20)
(1.003 0.00174018 8.55093e-20)
(1.00303 0.00213232 5.1159e-20)
(1.00303 0.00232037 5.72716e-19)
(1.00302 0.00234977 4.28454e-20)
(1.00299 0.00228034 1.09919e-19)
(1.00295 0.00216476 3.46745e-19)
(1.0029 0.00204272 2.00118e-19)
(1.00284 0.0019405 3.13359e-19)
(1.00277 0.0018715 -4.00804e-19)
(1.0027 0.00183822 -8.49427e-19)
(1.00265 0.00183535 1.12463e-18)
(1.0026 0.00185319 6.30578e-19)
(1.00256 0.00188077 -7.4623e-19)
(1.00252 0.00190816 -4.16473e-19)
(1.00249 0.00192805 -1.1267e-18)
(1.00245 0.00193636 6.02923e-20)
(1.00241 0.00193219 -2.6191e-19)
(1.00236 0.00191741 4.96859e-19)
(1.00231 0.00189564 5.44888e-19)
(1.00226 0.00187152 6.19316e-19)
(1.0022 0.00184977 -5.21514e-20)
(1.00213 0.00183445 9.93913e-19)
(1.00207 0.00182849 5.21094e-19)
(1.002 0.0018334 -1.05368e-18)
(1.00194 0.0018493 1.35959e-18)
(1.00187 0.00187445 -8.80842e-19)
(1.0018 0.00190767 -6.03701e-19)
(1.00174 0.0019442 1.07998e-18)
(1.00166 0.00197296 -7.311e-19)
(1.00272 0.00120044 8.19736e-21)
(1.00275 0.00174304 -1.72101e-19)
(1.00279 0.00213748 -1.89341e-19)
(1.0028 0.00233151 -1.86097e-19)
(1.00279 0.00236942 -2.40271e-19)
(1.00277 0.0023099 4.21844e-20)
(1.00274 0.00220462 6.41939e-20)
(1.0027 0.0020925 -8.55961e-20)
(1.00265 0.00199925 -2.33746e-19)
(1.00259 0.00193796 6.57424e-20)
(1.00253 0.00191102 2.28233e-19)
(1.00248 0.00191317 5.89423e-20)
(1.00244 0.00193487 -1.97162e-19)
(1.00241 0.00196532 5.79307e-19)
(1.00238 0.00199479 7.1536e-20)
(1.00236 0.00201612 9.0363e-19)
(1.00233 0.00202531 -3.69764e-19)
(1.00229 0.00202151 5.45728e-20)
(1.00225 0.00200658 -1.62127e-19)
(1.00221 0.00198411 1.13506e-18)
(1.00216 0.0019587 -1.22838e-18)
(1.0021 0.00193504 -7.65294e-19)
(1.00204 0.00191719 -9.21271e-20)
(1.00198 0.00190808 -7.93103e-19)
(1.00192 0.00190926 -1.45929e-18)
(1.00185 0.00192091 6.26408e-19)
(1.00179 0.00194145 1.50691e-18)
(1.00173 0.00196971 1.43715e-18)
(1.00167 0.00200103 -3.58646e-19)
(1.00159 0.00202511 1.08482e-18)
(1.00244 0.00119766 -5.34677e-20)
(1.00248 0.00173691 -8.5576e-20)
(1.00253 0.00213286 -4.04825e-20)
(1.00254 0.00233244 3.00771e-19)
(1.00254 0.00237869 4.37421e-19)
(1.00253 0.00232906 -6.46302e-19)
(1.00251 0.0022342 2.64215e-19)
(1.00248 0.00213217 8.52984e-20)
(1.00244 0.00204812 -1.7425e-19)
(1.00239 0.00199482 1.31726e-18)
(1.00234 0.00197455 8.99159e-19)
(1.0023 0.00198209 -9.5038e-19)
(1.00227 0.00200805 1.41931e-18)
(1.00225 0.00204183 -1.86994e-19)
(1.00223 0.00207387 7.87305e-19)
(1.00221 0.00209712 -1.95472e-19)
(1.00219 0.00210768 1.03205e-18)
(1.00216 0.00210471 -3.71653e-19)
(1.00213 0.00209006 1.51112e-20)
(1.00209 0.00206728 -3.87204e-19)
(1.00205 0.00204094 2.32827e-19)
(1.00199 0.00201567 -8.93443e-19)
(1.00194 0.00199554 -3.72248e-19)
(1.00188 0.00198347 3.99631e-19)
(1.00182 0.00198108 2.13895e-19)
(1.00177 0.00198862 -9.20211e-19)
(1.00171 0.00200456 -1.16737e-18)
(1.00165 0.00202795 7.09832e-19)
(1.00159 0.00205408 -2.95081e-18)
(1.00152 0.00207346 4.88217e-19)
(1.00216 0.00118592 -2.80633e-20)
(1.0022 0.00172194 1.74375e-19)
(1.00225 0.00211955 -3.46624e-20)
(1.00227 0.0023246 -2.50545e-19)
(1.00227 0.00237894 -2.39068e-19)
(1.00227 0.00233887 1.80379e-19)
(1.00226 0.00225402 -2.30899e-19)
(1.00224 0.00216168 -8.17441e-20)
(1.00221 0.00208649 -2.43073e-19)
(1.00217 0.00204091 -6.828e-19)
(1.00213 0.00202714 1.0815e-19)
(1.0021 0.00204002 9.32317e-19)
(1.00208 0.00207032 -1.5307e-18)
(1.00207 0.00210761 -5.4546e-19)
(1.00206 0.00214247 -5.58921e-19)
(1.00205 0.00216799 -3.77502e-19)
(1.00204 0.0021803 -8.82952e-20)
(1.00202 0.00217859 1.95469e-19)
(1.00199 0.00216466 -5.16933e-19)
(1.00196 0.00214202 3.70836e-19)
(1.00192 0.00211516 1.80117e-19)
(1.00188 0.00208868 7.83177e-19)
(1.00183 0.00206661 -6.50907e-19)
(1.00178 0.00205191 -3.78664e-19)
(1.00172 0.00204623 1.29402e-18)
(1.00167 0.00204988 9.55172e-20)
(1.00162 0.00206148 1.00421e-18)
(1.00156 0.00208014 -1.39574e-18)
(1.00151 0.00210121 1.53795e-18)
(1.00145 0.0021161 1.08432e-18)
(1.00188 0.00116515 2.55262e-20)
(1.00192 0.00170024 -4.66278e-20)
(1.00196 0.00210079 1.40688e-20)
(1.00198 0.00231161 -1.82699e-19)
(1.00198 0.00237371 -1.7133e-19)
(1.00199 0.00234244 -6.89817e-20)
(1.00199 0.00226661 -2.72473e-19)
(1.00198 0.0021829 -1.35989e-19)
(1.00195 0.00211556 -1.36953e-20)
(1.00193 0.00207685 -5.66932e-19)
(1.0019 0.00206895 -3.38664e-20)
(1.00188 0.0020868 -2.52909e-19)
(1.00187 0.0021213 8.73682e-19)
(1.00187 0.00216216 2.50117e-19)
(1.00187 0.00220011 4.39437e-19)
(1.00187 0.00222829 4.74677e-19)
(1.00187 0.00224286 -3.81937e-19)
(1.00186 0.00224296 -3.78363e-19)
(1.00184 0.00223033 4.93982e-19)
(1.00182 0.00220838 -1.32314e-18)
(1.00179 0.00218154 1.09386e-18)
(1.00175 0.00215434 -3.32642e-20)
(1.00171 0.00213078 1.64231e-18)
(1.00166 0.00211383 5.72418e-19)
(1.00162 0.00210517 -1.21649e-18)
(1.00157 0.00210522 7.25166e-19)
(1.00152 0.00211266 -1.37109e-18)
(1.00147 0.00212679 -1.58144e-19)
(1.00143 0.00214294 7.87821e-19)
(1.00137 0.00215345 6.83071e-19)
(1.0016 0.00113356 -2.59986e-20)
(1.00163 0.00167314 -4.47091e-20)
(1.00167 0.00207946 -1.84939e-19)
(1.00168 0.00229699 8.94097e-20)
(1.00168 0.00236652 4.3414e-19)
(1.00169 0.00234288 4.41741e-19)
(1.0017 0.00227439 6.25055e-19)
(1.00169 0.0021974 1.58244e-19)
(1.00168 0.00213601 4.91992e-19)
(1.00166 0.00210245 4.87051e-19)
(1.00164 0.002099 -1.41559e-19)
(1.00163 0.00212072 7.88678e-20)
(1.00164 0.00215868 6.5706e-20)
(1.00165 0.00220273 6.51555e-19)
(1.00166 0.00224366 4.84867e-19)
(1.00167 0.00227464 -4.93556e-19)
(1.00168 0.00229178 -2.4344e-19)
(1.00168 0.00229414 -5.7051e-19)
(1.00168 0.00228333 -6.70021e-19)
(1.00166 0.00226265 3.97466e-19)
(1.00164 0.00223641 -9.97188e-19)
(1.00161 0.00220905 5.27557e-20)
(1.00158 0.00218453 -5.05119e-20)
(1.00154 0.00216581 -9.91138e-19)
(1.0015 0.00215462 4.48806e-19)
(1.00146 0.00215145 2.79351e-19)
(1.00142 0.00215512 6.99543e-19)
(1.00137 0.00216502 7.70404e-19)
(1.00133 0.0021765 -1.26637e-18)
(1.00128 0.00218292 -1.15129e-18)
(1.00133 0.00109513 -3.95027e-22)
(1.00135 0.00164583 2.0682e-19)
(1.00137 0.00206087 1.69272e-19)
(1.00137 0.00228578 -5.83642e-20)
(1.00137 0.00236194 -2.95019e-19)
(1.00137 0.00234417 -3.07849e-19)
(1.00138 0.00228067 -3.44011e-19)
(1.00138 0.00220778 7.0312e-20)
(1.00137 0.00214975 -8.61464e-20)
(1.00136 0.002119 -5.45082e-19)
(1.00136 0.00211805 1.21401e-19)
(1.00136 0.00214216 -6.45262e-19)
(1.00138 0.00218256 -3.25155e-19)
(1.0014 0.00222922 -1.60549e-19)
(1.00143 0.00227295 -2.90213e-19)
(1.00146 0.00230685 1.82125e-19)
(1.00148 0.00232694 2.40146e-19)
(1.00149 0.00233209 1.04124e-18)
(1.0015 0.00232375 8.37279e-19)
(1.00149 0.00230502 9.31048e-19)
(1.00148 0.00228006 6.34812e-19)
(1.00146 0.0022532 4.34118e-20)
(1.00144 0.00222833 -1.65104e-18)
(1.00141 0.00220839 1.70043e-18)
(1.00137 0.00219515 -8.19018e-20)
(1.00134 0.00218918 -1.04519e-18)
(1.00131 0.0021894 5.85341e-19)
(1.00127 0.00219536 -7.57735e-19)
(1.00124 0.00220243 1.15247e-18)
(1.00119 0.002205 -1.3859e-18)
(1.00107 0.00105987 5.32237e-20)
(1.00106 0.00162625 -2.25136e-19)
(1.00106 0.00205069 7.51316e-20)
(1.00104 0.00228199 1.1674e-19)
(1.00103 0.00236269 8.0878e-20)
(1.00103 0.00234799 2.29254e-19)
(1.00104 0.00228628 2.18462e-19)
(1.00104 0.00221419 5.19451e-20)
(1.00104 0.00215631 -4.44886e-19)
(1.00104 0.00212548 3.43247e-19)
(1.00105 0.00212454 -6.31572e-19)
(1.00107 0.00214906 1.41102e-19)
(1.0011 0.00219046 -1.52382e-19)
(1.00113 0.00223877 -7.36676e-19)
(1.00118 0.00228477 -5.56852e-19)
(1.00122 0.00232146 -4.07206e-19)
(1.00125 0.00234464 -2.07695e-19)
(1.00128 0.00235296 -7.40988e-19)
(1.0013 0.00234759 1.6894e-19)
(1.00131 0.00233142 -5.18096e-19)
(1.00131 0.0023084 -4.54357e-19)
(1.0013 0.00228268 -2.02184e-19)
(1.00128 0.00225808 7.65327e-19)
(1.00126 0.00223751 -8.5745e-19)
(1.00124 0.00222276 6.34064e-19)
(1.00121 0.00221448 1.0908e-18)
(1.00118 0.00221172 -8.32981e-20)
(1.00116 0.0022142 7.68943e-19)
(1.00113 0.00221726 -1.41672e-19)
(1.00109 0.00221643 1.08634e-18)
(1.00081 0.00105157 -4.01209e-20)
(1.00075 0.0016291 6.95955e-20)
(1.00073 0.00205678 1.21173e-19)
(1.00069 0.00228899 -3.06286e-19)
(1.00067 0.00236942 -1.9939e-19)
(1.00066 0.00235353 -5.36354e-19)
(1.00067 0.0022898 -5.54813e-20)
(1.00068 0.00221508 -2.91559e-19)
(1.00069 0.00215437 2.3361e-19)
(1.0007 0.00212093 -4.09803e-19)
(1.00072 0.00211799 3.91804e-19)
(1.00075 0.0021414 6.4473e-19)
(1.00079 0.00218274 4.96784e-20)
(1.00085 0.00223208 2.96776e-19)
(1.00091 0.00228013 -1.04238e-19)
(1.00096 0.00231966 5.68225e-19)
(1.00102 0.00234623 -5.01415e-19)
(1.00106 0.00235818 -2.014e-20)
(1.00109 0.00235637 -1.15175e-18)
(1.00111 0.00234338 2.56264e-19)
(1.00112 0.00232292 8.72013e-19)
(1.00112 0.00229896 2.21033e-19)
(1.00112 0.0022752 1.4289e-22)
(1.00111 0.00225449 2.32898e-19)
(1.00109 0.00223869 -5.47094e-21)
(1.00108 0.0022285 1.67331e-19)
(1.00106 0.0022231 -7.80969e-19)
(1.00104 0.00222239 4.60921e-23)
(1.00102 0.00222175 -2.08949e-19)
(1.00099 0.00221778 5.36594e-19)
(1.00051 0.00109982 2.27118e-20)
(1.00041 0.00167037 4.85954e-22)
(1.00036 0.00208504 -2.74926e-19)
(1.00031 0.00230577 4.17109e-19)
(1.00027 0.00237691 8.72944e-20)
(1.00027 0.00235342 4.28962e-19)
(1.00028 0.00228321 -4.68809e-19)
(1.00029 0.0022028 -3.55149e-20)
(1.00031 0.00213714 4.93412e-19)
(1.00033 0.00209961 3.31796e-19)
(1.00037 0.00209364 1.14992e-19)
(1.00041 0.00211524 -6.06917e-19)
(1.00047 0.00215608 1.39614e-19)
(1.00055 0.00220619 -7.00935e-20)
(1.00062 0.00225617 1.18792e-19)
(1.00069 0.00229859 6.46358e-20)
(1.00076 0.0023287 4.02501e-19)
(1.00082 0.00234452 7.74762e-19)
(1.00087 0.00234656 3.0701e-19)
(1.0009 0.00233709 -9.00434e-19)
(1.00092 0.00231955 -3.17584e-19)
(1.00093 0.0022977 6.89786e-19)
(1.00094 0.00227512 -2.29162e-20)
(1.00094 0.00225462 2.86775e-19)
(1.00093 0.00223808 -1.18346e-18)
(1.00092 0.0022263 1.01687e-19)
(1.00092 0.0022186 9.53958e-19)
(1.00091 0.00221509 2.70315e-20)
(1.0009 0.00221109 -4.28273e-19)
(1.00087 0.00220433 -1.13486e-18)
(1.00013 0.00122901 4.36281e-20)
(1 0.00176222 4.37265e-20)
(0.999941 0.00213834 1.22858e-19)
(0.999889 0.00232806 -2.39189e-19)
(0.99986 0.00237623 -2.47911e-20)
(0.999859 0.0023366 -8.8448e-20)
(0.999877 0.0022554 3.42745e-19)
(0.999902 0.00216766 1.32513e-19)
(0.99993 0.00209725 -8.12208e-20)
(0.999965 0.00205684 -2.07985e-19)
(1.00001 0.00204943 -7.85952e-20)
(1.00007 0.0020708 -2.18467e-19)
(1.00015 0.00211249 -3.1489e-19)
(1.00024 0.00216444 -2.26399e-19)
(1.00033 0.00221712 -2.55652e-19)
(1.00042 0.00226294 -1.26145e-19)
(1.0005 0.00229692 1.6798e-19)
(1.00057 0.0023168 -2.23525e-19)
(1.00063 0.0023228 2.0075e-19)
(1.00068 0.00231691 2.45866e-19)
(1.00071 0.00230231 -4.0748e-19)
(1.00074 0.00228257 -1.04593e-18)
(1.00075 0.00226116 1.43003e-19)
(1.00076 0.00224085 -6.32075e-19)
(1.00076 0.00222358 1.25901e-18)
(1.00077 0.00221023 -6.06769e-19)
(1.00077 0.00220033 -6.23683e-19)
(1.00077 0.00219409 4.26412e-19)
(1.00078 0.00218693 5.62737e-19)
(1.00076 0.00217755 -1.04326e-18)
(0.999669 0.0014343 -3.79451e-20)
(0.999528 0.00190031 -9.95755e-20)
(0.99948 0.0022114 8.57067e-20)
(0.999452 0.00234766 2.46519e-20)
(0.999445 0.00235605 -9.27038e-20)
(0.999463 0.00228959 -3.09082e-20)
(0.999495 0.0021924 -1.67036e-19)
(0.999531 0.00209688 -1.54555e-20)
(0.999568 0.0020243 -2.8069e-19)
(0.999611 0.00198519 -1.00217e-19)
(0.999667 0.00198093 -4.40648e-19)
(0.999739 0.00200623 1.47281e-19)
(0.999826 0.00205203 5.31604e-19)
(0.999925 0.00210799 -3.53444e-20)
(1.00003 0.00216453 2.25874e-19)
(1.00013 0.00221404 -3.00412e-19)
(1.00023 0.00225154 -2.37278e-19)
(1.00031 0.00227472 1.45955e-19)
(1.00038 0.0022837 6.42859e-20)
(1.00044 0.00228031 4.143e-19)
(1.00048 0.00226759 -3.48369e-19)
(1.00052 0.00224902 2.16573e-19)
(1.00054 0.00222797 2.04809e-21)
(1.00056 0.00220725 9.16112e-20)
(1.00058 0.00218883 -6.28449e-19)
(1.00059 0.00217375 -2.59117e-19)
(1.00061 0.00216163 -3.61868e-19)
(1.00062 0.00215297 -8.95455e-19)
(1.00064 0.00214315 -7.80957e-19)
(1.00063 0.00213183 1.66298e-18)
(0.999158 0.00166773 -1.82466e-20)
(0.999021 0.00205783 1.8794e-19)
(0.999007 0.00229164 2.88633e-20)
(0.999021 0.0023592 1.55058e-19)
(0.999055 0.00231335 1.83827e-19)
(0.999104 0.00220919 1.71143e-19)
(0.999157 0.0020903 -7.67186e-20)
(0.999205 0.00198658 -1.85152e-19)
(0.999247 0.00191575 -1.44072e-20)
(0.999291 0.00188454 3.53726e-19)
(0.999345 0.00189103 2.29106e-20)
(0.999416 0.00192744 3.23017e-21)
(0.999504 0.00198321 -3.75071e-19)
(0.999606 0.00204729 5.41812e-19)
(0.999715 0.00210996 -8.249e-20)
(0.999825 0.00216379 4.47631e-19)
(0.999929 0.00220411 2.40933e-19)
(1.00002 0.00222889 -5.0071e-19)
(1.00011 0.00223846 1.69643e-19)
(1.00018 0.00223477 -6.38962e-19)
(1.00023 0.00222095 2.18505e-19)
(1.00028 0.00220052 -2.20853e-19)
(1.00032 0.00217695 -1.08418e-19)
(1.00035 0.00215313 8.34517e-20)
(1.00038 0.00213117 3.21395e-20)
(1.00041 0.00211226 4.49281e-19)
(1.00043 0.00209625 3.32901e-19)
(1.00046 0.00208376 2.45997e-19)
(1.00049 0.00207027 1.43455e-18)
(1.0005 0.00205571 -3.52157e-19)
(0.998682 0.00185026 2.84672e-20)
(0.998545 0.00218882 -8.8912e-20)
(0.998557 0.00235915 -1.18378e-19)
(0.998613 0.00236134 -8.36934e-20)
(0.998691 0.00225726 4.93956e-20)
(0.998775 0.00210813 -1.53802e-19)
(0.998851 0.00196097 3.9357e-19)
(0.99891 0.0018459 2.86145e-19)
(0.998952 0.00177787 1.63635e-20)
(0.998987 0.00175911 5.77318e-20)
(0.999029 0.00178287 2.80751e-19)
(0.999086 0.00183736 1.9535e-19)
(0.999163 0.00190925 1.42809e-19)
(0.999257 0.00198611 -1.09105e-19)
(0.999364 0.00205789 -5.65608e-20)
(0.999476 0.00211755 -7.86333e-20)
(0.999587 0.00216109 -6.70828e-19)
(0.999692 0.00218722 3.01389e-19)
(0.999786 0.00219685 -4.36393e-19)
(0.999869 0.00219244 4.08362e-19)
(0.999941 0.00217741 1.22465e-19)
(1 0.00215549 5.58273e-19)
(1.00006 0.00213026 -1.91524e-19)
(1.0001 0.0021047 4.09244e-19)
(1.00015 0.00208098 2.44116e-19)
(1.0002 0.00206034 -1.88523e-19)
(1.00024 0.00204267 1.5184e-19)
(1.00029 0.00202872 2.00173e-19)
(1.00034 0.00201396 -9.71753e-19)
(1.00036 0.00199934 3.5695e-19)
(0.998324 0.00195091 -3.23195e-20)
(0.998152 0.00226772 1.52631e-20)
(0.998148 0.00240351 -8.38046e-22)
(0.998212 0.00236267 -2.29076e-20)
(0.998311 0.00221191 -8.91401e-21)
(0.99842 0.00201897 1.10741e-19)
(0.998517 0.00183813 -2.16591e-19)
(0.998588 0.00170446 -1.97666e-19)
(0.998631 0.00163361 -2.67559e-20)
(0.998657 0.00162461 -2.84863e-21)
(0.998681 0.00166543 3.08591e-19)
(0.998719 0.00173869 1.61604e-19)
(0.998778 0.00182662 7.44254e-20)
(0.998861 0.00191402 -1.41651e-19)
(0.998963 0.00198971 -4.25544e-20)
(0.999079 0.0020468 -2.14331e-19)
(0.9992 0.00208222 2.28949e-19)
(0.99932 0.00209605 1.88051e-19)
(0.999433 0.00209063 4.13385e-21)
(0.999538 0.00206975 -5.16763e-19)
(0.999632 0.00203803 4.82089e-20)
(0.999716 0.00200014 7.57438e-20)
(0.999792 0.00196037 4.74039e-19)
(0.999863 0.00192221 -8.5607e-20)
(0.999932 0.00188812 -5.08678e-19)
(0.999999 0.00185945 3.70513e-20)
(1.00006 0.00183606 -2.22874e-19)
(1.00013 0.00181857 8.60101e-20)
(1.0002 0.00180235 -1.1023e-20)
(1.00025 0.00178695 -9.59773e-19)
(0.998027 0.00203468 -3.84286e-21)
(0.99779 0.00231773 -6.73751e-20)
(0.997731 0.0024274 1.90799e-20)
(0.99776 0.00236748 5.69433e-20)
(0.99784 0.00219384 -1.11866e-19)
(0.997949 0.00197001 -1.00809e-19)
(0.99806 0.00175517 7.24156e-20)
(0.998151 0.00159352 4.35348e-20)
(0.99821 0.00150814 2.55152e-19)
(0.998241 0.00150086 7.30902e-20)
(0.99826 0.00155788 5.78236e-20)
(0.998286 0.00165729 -2.52422e-19)
(0.998332 0.00177598 1.15346e-20)
(0.998404 0.00189387 -5.07967e-20)
(0.998503 0.0019962 9.12313e-20)
(0.998623 0.00207374 1.25952e-19)
(0.998757 0.00212244 1.72553e-19)
(0.998897 0.00214237 -3.06088e-19)
(0.999036 0.00213665 1.28813e-19)
(0.999169 0.00211033 8.33652e-20)
(0.999294 0.00206952 2.60974e-20)
(0.99941 0.0020204 -3.28463e-19)
(0.999518 0.00196862 5.87291e-20)
(0.999621 0.00191877 -2.91138e-19)
(0.99972 0.00187409 1.18632e-20)
(0.999816 0.00183645 -4.06203e-21)
(0.99991 0.0018059 2.11906e-19)
(1 0.00178309 -1.01864e-19)
(1.0001 0.00176324 3.4941e-19)
(1.00016 0.00174365 1.33302e-18)
(0.997608 0.00224782 3.57068e-20)
(0.997329 0.00242198 6.27979e-21)
(0.997244 0.00245356 3.93919e-20)
(0.997238 0.00236468 -3.67539e-20)
(0.997278 0.00218721 1.25671e-20)
(0.997362 0.00195613 6.72971e-21)
(0.997479 0.00171569 2.50546e-22)
(0.997605 0.00151047 -1.09532e-19)
(0.997715 0.00137229 -1.29223e-19)
(0.997801 0.00131289 -3.42553e-19)
(0.997866 0.00132599 -1.56215e-19)
(0.997925 0.00139354 3.4223e-19)
(0.997995 0.00149306 -2.38828e-20)
(0.998085 0.00160252 1.00154e-19)
(0.998199 0.00170375 1.05799e-19)
(0.998334 0.00178359 -5.5348e-20)
(0.998484 0.00183447 2.18882e-19)
(0.998641 0.00185384 -8.24968e-21)
(0.998799 0.00184344 1.75759e-19)
(0.998954 0.0018081 4.06395e-19)
(0.999101 0.00175464 -3.41758e-19)
(0.99924 0.00169049 2.11478e-19)
(0.999371 0.00162286 -3.00956e-19)
(0.999496 0.00155779 5.82646e-19)
(0.999617 0.00149985 -2.97018e-19)
(0.999734 0.00145178 -1.14799e-19)
(0.999847 0.00141421 -2.60449e-19)
(0.999953 0.00138778 -2.20157e-19)
(1.00007 0.00136739 1.63129e-19)
(1.00015 0.00134746 -5.46207e-19)
(0.996912 0.00260327 -2.97539e-20)
(0.996663 0.00261011 7.66006e-21)
(0.996663 0.00248212 -7.51786e-20)
(0.996717 0.00230409 2.14173e-20)
(0.996758 0.00211315 7.15161e-20)
(0.996808 0.00191606 1.95189e-20)
(0.996899 0.00172405 2.40588e-20)
(0.997031 0.00155857 3.13652e-19)
(0.997183 0.00144102 -1.35018e-20)
(0.997332 0.00138367 -1.59791e-21)
(0.997471 0.00138774 -2.00421e-19)
(0.997603 0.00144523 9.98948e-21)
(0.997737 0.001542 -1.55954e-19)
(0.99788 0.00166049 -1.59173e-19)
(0.998035 0.00178263 -1.25757e-19)
(0.998199 0.00189215 1.78906e-20)
(0.998369 0.00197671 -3.14078e-19)
(0.998539 0.00202893 1.28526e-20)
(0.998706 0.00204668 -7.66585e-20)
(0.998866 0.00203237 5.03024e-20)
(0.999019 0.00199188 -1.34915e-19)
(0.999165 0.0019329 -1.38368e-19)
(0.999306 0.00186368 1.53585e-19)
(0.999442 0.00179178 -3.80479e-19)
(0.999577 0.00172329 5.51641e-20)
(0.999708 0.00166246 9.66845e-20)
(0.999836 0.001611 5.70224e-19)
(0.999957 0.00157068 2.31383e-19)
(1.00008 0.0015366 -3.48769e-19)
(1.00017 0.0015022 -3.07629e-19)
(0.995981 0.00277137 9.21976e-21)
(0.995686 0.00273067 2.39737e-20)
(0.995789 0.00248267 5.73109e-20)
(0.996018 0.00215793 -4.8685e-20)
(0.996201 0.00182669 -6.09915e-20)
(0.996327 0.00152065 -2.40856e-20)
(0.996453 0.00125769 -9.11297e-20)
(0.996611 0.0010436 -1.56719e-20)
(0.996798 0.000876947 -6.11468e-20)
(0.996998 0.000754981 3.60304e-20)
(0.997203 0.000678732 1.73737e-19)
(0.997411 0.00065035 -8.47167e-20)
(0.997621 0.000669554 1.36651e-19)
(0.997829 0.000729522 1.05926e-19)
(0.998029 0.000817766 1.14361e-19)
(0.998215 0.000917763 5.83314e-20)
(0.998383 0.00101349 1.34798e-19)
(0.998532 0.00109165 6.91488e-20)
(0.998663 0.00114438 8.84209e-20)
(0.998781 0.00116894 -1.66819e-19)
(0.998891 0.00116762 2.82911e-19)
(0.998998 0.00114567 -1.71592e-19)
(0.999105 0.00111029 -7.93073e-20)
(0.999217 0.00106862 -1.61701e-19)
(0.999334 0.00102713 3.06788e-19)
(0.999457 0.000990547 1.07038e-19)
(0.999582 0.000961509 -2.536e-19)
(0.999707 0.000942693 -1.4584e-19)
(0.999842 0.000929506 1.05014e-19)
(0.99995 0.000920162 2.24345e-19)
(0.994297 0.00271661 -1.93365e-21)
(0.993788 0.00257426 -1.24327e-20)
(0.993792 0.00240116 -9.05309e-22)
(0.993998 0.00223127 3.04151e-20)
(0.9942 0.00201026 2.13537e-20)
(0.994375 0.00177391 4.07655e-20)
(0.994559 0.00158113 -2.20869e-20)
(0.994762 0.00145097 -4.1601e-20)
(0.994977 0.00136284 -1.77762e-20)
(0.995207 0.00129377 6.80837e-20)
(0.995464 0.0012351 3.67413e-20)
(0.995754 0.00119508 -2.73483e-21)
(0.996067 0.00118481 2.27987e-20)
(0.996385 0.00121135 -3.21925e-20)
(0.996683 0.00127095 -1.53561e-20)
(0.996943 0.00135303 -8.42366e-21)
(0.997156 0.00144186 1.0718e-19)
(0.997323 0.00152336 -7.11228e-20)
(0.997454 0.00158588 -8.04329e-20)
(0.99756 0.00162397 -6.52622e-20)
(0.997657 0.001636 7.82846e-22)
(0.997754 0.0016253 1.19495e-19)
(0.997863 0.00159657 -7.99252e-20)
(0.997988 0.00155641 2.02517e-19)
(0.998134 0.00151018 -4.47991e-21)
(0.998297 0.00146318 -8.87721e-20)
(0.998476 0.00141804 1.79689e-19)
(0.998663 0.0013785 -7.05632e-20)
(0.998872 0.0013419 -7.72655e-20)
(0.999048 0.00131453 1.25111e-19)
(0.990642 0.00371977 -3.58142e-21)
(0.990814 0.00241958 2.02466e-20)
(0.991444 0.00156184 -2.66115e-20)
(0.991846 0.00109598 3.93646e-20)
(0.992009 0.000732277 7.56185e-21)
(0.992167 0.000403821 -5.1697e-20)
(0.992397 0.000161455 -2.92776e-20)
(0.992639 1.81234e-05 -5.72289e-21)
(0.992847 -5.82562e-05 5.41062e-21)
(0.993043 -0.000110688 2.91605e-22)
(0.993275 -0.000157716 -1.34755e-21)
(0.993573 -0.000198809 -5.3947e-20)
(0.993931 -0.000220222 7.20821e-21)
(0.994315 -0.000213145 6.3106e-21)
(0.994683 -0.000173811 2.61416e-20)
(0.995002 -0.000109394 -3.19851e-20)
(0.995255 -2.93479e-05 -4.4118e-20)
(0.995443 5.29869e-05 -8.46303e-20)
(0.995581 0.000128719 -1.11338e-19)
(0.995689 0.000189857 3.40664e-20)
(0.995789 0.000234697 -2.89674e-20)
(0.9959 0.00026235 7.68206e-20)
(0.996034 0.000276461 1.67123e-20)
(0.996202 0.000279495 4.81381e-20)
(0.996404 0.000276315 -9.95844e-20)
(0.996641 0.000269087 -6.38586e-20)
(0.996906 0.000260006 6.93319e-20)
(0.997192 0.000251687 -5.41167e-20)
(0.99752 0.000243175 -8.63794e-20)
(0.997818 0.000236152 -1.10856e-19)
(0.98936 0.00452421 -9.55879e-22)
(0.991048 0.00350007 -7.34892e-21)
(0.993344 0.0027588 -8.00717e-21)
(0.99468 0.00231635 -1.0926e-20)
(0.995261 0.00199006 -3.21895e-20)
(0.995716 0.00171259 4.23611e-20)
(0.996247 0.00149856 -1.05124e-20)
(0.996753 0.00134688 4.39061e-20)
(0.997152 0.00124096 -1.66541e-20)
(0.997474 0.00115483 2.76244e-20)
(0.997804 0.00107829 -2.70575e-21)
(0.998197 0.0010069 3.56731e-21)
(0.998656 0.000946861 -1.87336e-20)
(0.99914 0.000899619 -5.39279e-20)
(0.999599 0.000868376 3.5263e-20)
(0.999989 0.000848613 -2.03876e-20)
(1.00029 0.000838004 4.98136e-20)
(1.0005 0.000829364 -3.95277e-20)
(1.00064 0.000820238 1.31163e-19)
(1.00074 0.000805436 -7.05908e-20)
(1.00081 0.000785238 -9.36314e-20)
(1.00089 0.000757472 1.0738e-19)
(1.00098 0.000724537 -2.05128e-20)
(1.0011 0.000685983 -2.07023e-20)
(1.00126 0.000644722 6.43046e-20)
(1.00144 0.000600696 -1.01791e-19)
(1.00164 0.000554683 -2.33919e-20)
(1.00185 0.00050844 1.60371e-19)
(1.00207 0.000460453 -6.82222e-20)
(1.00227 0.000409171 1.58664e-20)
(0.308119 0.466146 -5.64876e-16)
(0.445574 0.499201 -6.42291e-16)
(0.402292 0.271781 -1.41428e-16)
(0.288941 0.109039 1.01597e-16)
(0.242205 0.0495656 3.72955e-17)
(0.252358 0.0495747 -8.77044e-17)
(0.27047 0.0547877 1.24712e-17)
(0.245382 0.0216255 4.96714e-17)
(0.0751268 -0.0489001 7.21888e-17)
(-0.109005 -0.052849 8.53308e-17)
(-0.088694 -0.00450424 -6.99059e-17)
(0.0422013 0.0400779 2.22109e-17)
(0.137995 0.0457575 -2.07003e-17)
(0.221494 0.0363592 3.97788e-18)
(0.297973 0.0169545 3.0105e-18)
(0.363835 0.440135 5.60628e-16)
(0.768106 0.502883 5.34294e-16)
(0.871897 0.381589 -1.43336e-16)
(0.800512 0.269351 1.38806e-16)
(0.745467 0.186592 -1.12277e-16)
(0.717304 0.134061 2.57944e-17)
(0.688417 0.0961948 -7.53124e-17)
(0.638487 0.0542282 -6.94012e-19)
(0.508986 -0.00396377 1.8784e-17)
(0.367697 -0.00331483 1.61368e-17)
(0.39407 0.0525422 -7.11088e-18)
(0.490186 0.0934805 -5.01281e-17)
(0.582308 0.100411 9.7239e-18)
(0.643402 0.0836293 -6.98985e-18)
(0.702017 0.0481785 -2.06722e-18)
(0.38461 0.378845 -1.78384e-16)
(0.803702 0.474578 -1.95136e-16)
(1.01447 0.419281 1.41322e-16)
(1.04306 0.341434 -1.366e-16)
(1.03653 0.247351 4.14907e-17)
(1.0277 0.176473 -3.9234e-18)
(1.00273 0.129221 1.45741e-16)
(0.957102 0.0985732 -3.54855e-17)
(0.879348 0.0728649 -3.8639e-17)
(0.831999 0.0839218 -4.92033e-17)
(0.860088 0.112617 -5.28444e-18)
(0.906536 0.127302 4.84187e-18)
(0.944558 0.118632 2.76304e-18)
(0.97102 0.0935915 9.05356e-18)
(1.00248 0.0517134 1.18247e-18)
(0.411706 0.329154 2.34595e-16)
(0.778913 0.472675 -1.31754e-16)
(1.02535 0.424013 -9.43103e-17)
(1.09715 0.337056 2.64067e-16)
(1.10835 0.236692 -1.7854e-17)
(1.12573 0.172061 -5.42634e-17)
(1.14682 0.139786 -6.89849e-17)
(1.15325 0.130974 5.99475e-17)
(1.13417 0.127904 2.90319e-17)
(1.12647 0.132856 2.7703e-17)
(1.13016 0.130568 -6.10237e-18)
(1.126 0.121426 1.02651e-17)
(1.11758 0.102421 -4.82577e-18)
(1.11794 0.0762617 -9.51851e-18)
(1.13253 0.0367383 1.11875e-18)
(0.435861 0.28771 -2.87767e-16)
(0.765247 0.461522 3.4528e-16)
(1.02592 0.406258 5.17318e-17)
(1.11907 0.300238 -3.67199e-16)
(1.12347 0.219255 -4.99723e-17)
(1.13506 0.173612 8.78728e-17)
(1.17485 0.154633 2.40125e-17)
(1.21754 0.152484 -4.7086e-17)
(1.2414 0.150624 8.82138e-18)
(1.24715 0.139697 1.13665e-17)
(1.22878 0.119074 1.39311e-17)
(1.19585 0.102267 -9.56976e-18)
(1.16642 0.0840049 7.7896e-18)
(1.15728 0.0647278 6.40617e-19)
(1.16689 0.0329477 -4.70717e-19)
(0.458514 0.255272 2.67623e-16)
(0.762114 0.442104 -3.08218e-16)
(1.02454 0.401198 1.87218e-16)
(1.13839 0.299942 1.77421e-16)
(1.14471 0.252396 1.09057e-16)
(1.14531 0.22419 -6.1131e-17)
(1.17726 0.210302 5.8012e-17)
(1.22273 0.193692 -2.96706e-17)
(1.25665 0.168625 -2.64482e-17)
(1.26495 0.132314 -3.99768e-18)
(1.23983 0.0949947 -3.59645e-18)
(1.20161 0.07107 -5.89515e-18)
(1.17062 0.053339 -3.01445e-18)
(1.16228 0.041139 4.24375e-18)
(1.17339 0.0178595 -2.65219e-18)
(0.480202 0.229238 -1.7876e-16)
(0.761417 0.418534 -2.29351e-16)
(1.01419 0.407488 -2.12611e-16)
(1.1353 0.351823 -1.08771e-16)
(1.15781 0.322445 -4.25595e-17)
(1.15984 0.29712 2.29916e-17)
(1.18172 0.275074 -9.67826e-17)
(1.21885 0.227864 1.5973e-17)
(1.25023 0.166878 5.31407e-17)
(1.25846 0.0981286 -2.71536e-17)
(1.23582 0.0446413 -3.75235e-18)
(1.20165 0.0168171 1.02808e-18)
(1.17459 0.00409575 -2.83644e-18)
(1.16864 0.00143942 5.49955e-18)
(1.18174 -0.0109183 1.03455e-18)
(0.50178 0.207117 -4.97904e-18)
(0.754742 0.402509 4.76627e-16)
(0.990284 0.410606 -9.0613e-17)
(1.11035 0.397604 -1.90414e-17)
(1.15033 0.369439 -3.34952e-17)
(1.16185 0.335936 8.42138e-17)
(1.18194 0.29322 3.595e-17)
(1.21539 0.213162 -1.79104e-17)
(1.24621 0.122765 -9.43278e-17)
(1.25722 0.0362264 2.6526e-17)
(1.23954 -0.0175556 6.49696e-18)
(1.2099 -0.037514 1.57284e-17)
(1.18591 -0.0384318 3.8657e-18)
(1.18139 -0.0297733 -9.79586e-18)
(1.19556 -0.0310916 -4.90325e-19)
(0.523709 0.186766 -9.08929e-17)
(0.748933 0.391395 -4.41293e-16)
(0.973972 0.396585 5.48442e-16)
(1.09393 0.389181 9.93378e-17)
(1.14189 0.3545 -7.15305e-17)
(1.15947 0.313536 -2.2391e-17)
(1.18175 0.255798 -4.33923e-17)
(1.21573 0.163321 2.69585e-17)
(1.24807 0.0678049 -1.59188e-17)
(1.26165 -0.0118465 -3.08523e-17)
(1.24737 -0.0521726 3.62723e-18)
(1.22031 -0.0607229 -5.97146e-18)
(1.19761 -0.0522997 -1.61771e-17)
(1.19364 -0.0367577 -5.03249e-18)
(1.20854 -0.0318202 1.53789e-18)
(0.546055 0.167016 1.74834e-16)
(0.744264 0.381074 3.82017e-16)
(0.965239 0.384079 -2.85337e-16)
(1.0905 0.35646 -1.66393e-16)
(1.14148 0.311101 1.84267e-16)
(1.16144 0.265836 -7.16597e-17)
(1.18371 0.210248 3.47383e-17)
(1.21607 0.132232 -2.08194e-17)
(1.24839 0.0534498 2.83784e-17)
(1.26354 -0.0102853 1.34619e-17)
(1.25162 -0.0424856 -1.56479e-17)
(1.22587 -0.0497971 7.57743e-18)
(1.20326 -0.0421392 1.06968e-17)
(1.19921 -0.0270623 4.72612e-18)
(1.21469 -0.0216934 1.31735e-18)
(0.568147 0.14846 -3.88341e-17)
(0.739881 0.369176 -2.56511e-16)
(0.954785 0.380607 2.1662e-16)
(1.08928 0.330997 1.56815e-16)
(1.14496 0.275408 -9.46841e-17)
(1.1661 0.229976 1.95844e-17)
(1.18557 0.188656 1.68611e-17)
(1.2136 0.13692 -1.77084e-17)
(1.24405 0.0795784 8.01263e-18)
(1.26001 0.0248217 -4.77316e-19)
(1.24979 -0.0111984 1.02477e-17)
(1.22452 -0.0267891 -6.55808e-18)
(1.20132 -0.0263359 1.43307e-17)
(1.19662 -0.015709 6.46937e-18)
(1.21238 -0.0126487 -2.49305e-18)
(0.58931 0.131754 -1.38046e-17)
(0.737387 0.354065 7.68692e-18)
(0.944028 0.378406 -1.78869e-16)
(1.08657 0.318175 -3.28345e-17)
(1.14787 0.256616 -5.57507e-17)
(1.17002 0.212072 4.06715e-17)
(1.18645 0.18376 2.19157e-17)
(1.20995 0.153373 4.85251e-17)
(1.23772 0.111531 7.01403e-17)
(1.25343 0.0595237 -4.64599e-17)
(1.24381 0.0163843 5.73829e-18)
(1.21837 -0.00807197 -7.87066e-18)
(1.19438 -0.0144838 -2.21939e-17)
(1.18874 -0.00813848 2.31699e-18)
(1.2044 -0.00742771 -6.81904e-19)
(0.609214 0.116918 -2.18226e-17)
(0.736797 0.336564 1.86243e-16)
(0.933925 0.374693 -9.07674e-17)
(1.08032 0.31633 -7.42577e-17)
(1.14649 0.25257 2.08782e-17)
(1.17071 0.206142 -5.74687e-17)
(1.18635 0.182265 -3.17298e-19)
(1.20696 0.163115 1.31935e-17)
(1.23198 0.130707 -9.17872e-17)
(1.24631 0.0809427 7.54614e-17)
(1.23641 0.0341213 5.21351e-18)
(1.21073 0.00476601 1.35686e-18)
(1.18632 -0.00566962 1.64288e-17)
(1.17979 -0.00224734 -1.62116e-17)
(1.19504 -0.00332907 3.97366e-18)
(0.627839 0.103734 -1.64603e-19)
(0.737154 0.318491 1.16652e-16)
(0.924042 0.369644 -1.03351e-16)
(1.07097 0.319468 2.75166e-17)
(1.14107 0.255446 1.00538e-16)
(1.16841 0.205424 3.44675e-17)
(1.18556 0.179562 -4.77443e-17)
(1.20504 0.164226 1.96916e-17)
(1.22755 0.137717 1.51232e-17)
(1.23998 0.0918837 -3.84046e-17)
(1.22959 0.0455653 9.14342e-18)
(1.20406 0.014927 1.18216e-17)
(1.17976 0.00269909 5.22786e-18)
(1.17259 0.00425442 -1.68606e-18)
(1.18727 0.00178094 -2.49288e-18)
(0.645309 0.0919804 -1.01637e-17)
(0.737948 0.300878 -5.09579e-16)
(0.914584 0.363224 2.70909e-16)
(1.06069 0.322243 7.73738e-17)
(1.13387 0.259442 -1.21059e-16)
(1.1643 0.207083 -3.08072e-17)
(1.1839 0.17716 5.09001e-17)
(1.20342 0.161383 -5.67849e-17)
(1.224 0.138492 -2.21654e-17)
(1.23469 0.0975126 -1.99087e-17)
(1.22407 0.0540579 -1.39944e-18)
(1.1991 0.0240595 6.19786e-19)
(1.17523 0.0111461 4.1076e-18)
(1.16759 0.0113588 8.35455e-18)
(1.18166 0.0076919 -8.85983e-19)
(0.661737 0.0815113 7.5993e-18)
(0.739077 0.283981 4.05893e-16)
(0.905599 0.355688 -3.07903e-16)
(1.05039 0.323425 1.76917e-17)
(1.12602 0.263326 2.47728e-17)
(1.15893 0.210647 -1.06793e-17)
(1.18096 0.176793 2.45018e-18)
(1.20132 0.158298 4.06435e-17)
(1.22078 0.137284 3.25053e-17)
(1.23028 0.100945 1.19239e-17)
(1.21975 0.0609569 -1.64893e-17)
(1.19549 0.0321368 -1.8593e-17)
(1.1721 0.0188935 -2.04735e-19)
(1.16403 0.0180303 3.15938e-19)
(1.17747 0.0133812 -1.22637e-19)
(0.677184 0.072216 -1.24663e-17)
(0.740629 0.267759 -1.69842e-16)
(0.89706 0.347355 3.46788e-16)
(1.0402 0.32337 -1.62399e-16)
(1.11793 0.266901 5.84134e-17)
(1.15276 0.215276 6.99622e-17)
(1.17683 0.178559 3.49926e-17)
(1.19848 0.156673 -7.68484e-18)
(1.2176 0.136275 -8.52864e-18)
(1.22646 0.103479 1.02845e-17)
(1.21618 0.0663532 1.0684e-17)
(1.1926 0.0384755 2.71375e-17)
(1.16959 0.0249508 -6.30365e-18)
(1.16107 0.0232219 4.36143e-18)
(1.17383 0.0178605 2.40684e-18)
(0.691699 0.0639895 -1.8329e-18)
(0.742663 0.252197 -1.87671e-16)
(0.888981 0.338466 -6.34415e-17)
(1.03014 0.322362 1.21823e-16)
(1.10981 0.269901 -4.21868e-17)
(1.14622 0.220091 -3.48836e-18)
(1.17186 0.18187 -6.56687e-17)
(1.19493 0.156937 1.90664e-17)
(1.21428 0.136128 -8.26186e-18)
(1.22293 0.105285 -3.48574e-18)
(1.21299 0.0699108 -1.72565e-17)
(1.19001 0.042562 -3.52839e-17)
(1.1673 0.0288572 -1.0342e-17)
(1.15831 0.0265715 3.83518e-19)
(1.17038 0.0208723 2.02428e-18)
(0.70533 0.0567323 1.83845e-17)
(0.745207 0.237297 1.92647e-16)
(0.881436 0.329157 -7.91957e-17)
(1.02024 0.320543 -5.55811e-17)
(1.10175 0.272129 9.28605e-17)
(1.13959 0.224478 -3.68659e-17)
(1.16636 0.185956 1.00796e-17)
(1.19078 0.15868 -3.07408e-17)
(1.21074 0.136556 3.68977e-17)
(1.21949 0.106096 2.13481e-17)
(1.20995 0.0714876 1.35837e-17)
(1.18751 0.044471 2.22416e-17)
(1.16506 0.0308504 3.70174e-18)
(1.1556 0.028395 1.60928e-19)
(1.16694 0.0227381 -7.18337e-19)
(0.718126 0.0503486 1.30325e-17)
(0.748247 0.223073 1.5794e-16)
(0.874509 0.319504 1.49369e-17)
(1.01054 0.318055 9.57357e-18)
(1.09381 0.273499 -1.22561e-17)
(1.13306 0.228033 -4.45684e-17)
(1.16062 0.190081 -9.01418e-18)
(1.18621 0.161116 4.00506e-17)
(1.20697 0.137001 -1.57641e-17)
(1.21605 0.105833 -2.64531e-17)
(1.20699 0.0714527 -3.63595e-17)
(1.18508 0.0448336 -1.61455e-18)
(1.16285 0.0316289 -1.26141e-17)
(1.15296 0.029351 1.35038e-18)
(1.16358 0.0240285 -3.27011e-18)
(0.730139 0.0447486 -2.24714e-17)
(0.751748 0.209538 1.68275e-16)
(0.868275 0.309559 5.9868e-17)
(1.00107 0.314965 -1.68456e-16)
(1.08599 0.274086 -1.09586e-16)
(1.12669 0.230679 7.09756e-17)
(1.15484 0.193781 3.14241e-17)
(1.18137 0.163584 -8.55957e-17)
(1.20302 0.137168 -8.32343e-18)
(1.21258 0.10481 -1.72516e-18)
(1.20405 0.0705099 -3.17413e-18)
(1.18268 0.0444412 -3.6064e-17)
(1.16069 0.0318776 7.52709e-18)
(1.15036 0.0299839 9.36225e-19)
(1.16023 0.0251703 -1.80151e-18)
(0.741421 0.0398497 7.95194e-18)
(0.755661 0.196696 -2.35051e-16)
(0.862785 0.299366 -2.88423e-16)
(0.991909 0.311277 3.28867e-16)
(1.07824 0.274032 4.16409e-17)
(1.1205 0.232492 -2.57547e-17)
(1.14913 0.196756 -4.57863e-17)
(1.17642 0.165654 6.39691e-17)
(1.19891 0.137041 -3.91548e-17)
(1.20905 0.10348 -8.6022e-18)
(1.2011 0.0692801 5.69698e-19)
(1.1803 0.0438325 3.24457e-17)
(1.15856 0.0319663 7.57275e-18)
(1.14785 0.0305052 -1.45639e-17)
(1.15698 0.0262442 5.50067e-19)
(0.752019 0.0355749 -8.32684e-18)
(0.759932 0.184549 1.8069e-17)
(0.858054 0.288984 1.93327e-16)
(0.983125 0.306989 -2.71013e-16)
(1.07056 0.273425 2.56067e-17)
(1.11445 0.233552 2.50139e-17)
(1.14356 0.198889 -4.27813e-17)
(1.17141 0.167203 -7.85226e-18)
(1.19466 0.136776 6.2743e-17)
(1.2054 0.102202 3.96192e-17)
(1.19812 0.0681219 2.6109e-17)
(1.17792 0.04325 1.56061e-17)
(1.15647 0.0320069 -2.21325e-18)
(1.14541 0.0309329 1.47524e-17)
(1.15379 0.0272249 6.18384e-18)
(0.761983 0.0318538 6.061e-17)
(0.764509 0.173091 -6.52223e-18)
(0.854076 0.278481 -1.01474e-16)
(0.974772 0.302113 1.91323e-16)
(1.06296 0.272291 -1.03755e-17)
(1.10853 0.233932 2.4738e-17)
(1.13815 0.200209 7.39806e-17)
(1.1664 0.168257 9.93882e-18)
(1.19029 0.13648 -1.70449e-17)
(1.20166 0.101125 -7.6306e-20)
(1.19509 0.0671509 1.42071e-17)
(1.17556 0.0427496 -6.8243e-18)
(1.15445 0.0320067 -1.84842e-18)
(1.14307 0.0312307 -2.39676e-18)
(1.15072 0.028014 -3.03145e-18)
(0.771355 0.028622 -7.27652e-17)
(0.769339 0.162308 8.33498e-18)
(0.850822 0.267932 1.8107e-16)
(0.966895 0.29668 -9.81907e-17)
(1.05547 0.270645 3.31666e-17)
(1.10273 0.233728 -4.55251e-17)
(1.13291 0.200828 -3.63399e-17)
(1.16141 0.168885 1.82878e-17)
(1.18581 0.136205 -1.99165e-17)
(1.19781 0.100297 -7.52907e-18)
(1.19202 0.0664149 8.71061e-18)
(1.17321 0.0423721 1.9683e-17)
(1.15247 0.0319935 5.41722e-18)
(1.14083 0.0314159 -5.75541e-19)
(1.14773 0.0286459 1.71865e-18)
(0.780178 0.0258212 4.95594e-17)
(0.774371 0.152184 -3.20464e-20)
(0.848256 0.257404 -1.85362e-16)
(0.959523 0.290736 1.50301e-16)
(1.04812 0.268506 -8.96364e-17)
(1.09702 0.233026 4.90462e-18)
(1.12781 0.200869 3.15307e-17)
(1.15646 0.169158 -1.10341e-17)
(1.18126 0.135967 2.05339e-17)
(1.19388 0.0997171 4.23427e-18)
(1.18891 0.0659178 -2.7986e-17)
(1.17087 0.0421251 -1.8105e-17)
(1.15056 0.0319784 -3.67146e-18)
(1.1387 0.0314936 -5.46298e-18)
(1.1449 0.0290835 -1.10576e-17)
(0.788492 0.0233986 -5.41993e-17)
(0.779558 0.142695 -7.01553e-17)
(0.846333 0.24696 2.37675e-16)
(0.952675 0.284343 -7.18406e-17)
(1.04095 0.265904 5.05523e-17)
(1.09139 0.231912 -1.55519e-17)
(1.12285 0.200451 9.56418e-18)
(1.15157 0.169142 -1.9317e-17)
(1.17665 0.135766 3.86729e-17)
(1.18987 0.0993658 -1.45554e-17)
(1.18575 0.0656526 1.43635e-17)
(1.16854 0.0420177 2.72248e-17)
(1.1487 0.0319791 3.3105e-18)
(1.13666 0.0314862 1.10425e-17)
(1.14214 0.0293848 2.19345e-18)
(0.796333 0.021307 3.01433e-17)
(0.784856 0.13382 3.33773e-17)
(0.845007 0.236656 -8.57536e-17)
(0.946358 0.277565 2.958e-17)
(1.03396 0.262873 2.839e-17)
(1.08583 0.230452 -4.34489e-17)
(1.11801 0.199676 -6.92796e-17)
(1.14676 0.16889 -2.58416e-17)
(1.17202 0.135589 1.19097e-17)
(1.1858 0.0992046 -3.9813e-17)
(1.18256 0.065588 -1.15585e-17)
(1.16622 0.0420327 -4.05738e-17)
(1.1469 0.0319921 -4.22282e-18)
(1.13473 0.0313952 -1.03159e-17)
(1.13954 0.0295145 1.18115e-17)
(0.803735 0.019504 2.35671e-17)
(0.790227 0.125531 -4.35619e-18)
(0.844227 0.22654 -1.73356e-17)
(0.940573 0.270473 -1.88498e-17)
(1.0272 0.259449 -6.56559e-17)
(1.08034 0.228702 6.0448e-17)
(1.11326 0.198623 4.00865e-17)
(1.14201 0.168441 -1.19794e-17)
(1.16738 0.135418 -2.98424e-17)
(1.18168 0.0991954 5.36734e-17)
(1.17932 0.0657002 1.52345e-17)
(1.16389 0.0421673 -1.4307e-17)
(1.14514 0.0320294 -3.62877e-17)
(1.13289 0.0312418 -1.52223e-18)
(1.13703 0.0295351 -4.3428e-18)
(0.810731 0.017952 -4.88585e-17)
(0.795635 0.117801 2.80181e-17)
(0.843946 0.216653 -1.44601e-16)
(0.935311 0.263134 5.69541e-17)
(1.02068 0.255672 5.97413e-17)
(1.07492 0.226707 2.18607e-18)
(1.1086 0.197355 -3.94113e-17)
(1.13735 0.16783 5.94489e-17)
(1.16276 0.135238 -2.08853e-18)
(1.17754 0.0993007 3.18944e-17)
(1.17607 0.0659558 -1.80736e-17)
(1.16158 0.0424021 3.39031e-17)
(1.14342 0.0320873 1.2054e-19)
(1.13114 0.0310317 1.31284e-17)
(1.13466 0.0294193 -2.2017e-18)
(0.817349 0.0166173 -2.75995e-17)
(0.801048 0.110602 -5.65857e-17)
(0.844114 0.20703 1.87634e-16)
(0.930561 0.255612 -1.251e-16)
(1.01442 0.251583 -9.21319e-17)
(1.06958 0.224498 2.94714e-17)
(1.10401 0.195916 5.80326e-17)
(1.13276 0.16708 -2.38864e-18)
(1.15816 0.135031 3.01186e-18)
(1.17337 0.0994852 -7.69476e-17)
(1.17279 0.0663295 1.88393e-17)
(1.15925 0.0427296 -2.11061e-17)
(1.14173 0.0321736 4.60305e-17)
(1.12947 0.030783 -2.55765e-17)
(1.13236 0.0292286 1.1425e-18)
(0.823617 0.0154705 3.25558e-17)
(0.80644 0.103905 1.72134e-17)
(0.844685 0.197698 -2.64273e-16)
(0.926306 0.247969 6.71165e-17)
(1.00843 0.247218 -3.28234e-17)
(1.06431 0.222102 9.2676e-18)
(1.0995 0.194342 2.08582e-18)
(1.12826 0.166211 -6.08811e-17)
(1.1536 0.134785 2.18731e-17)
(1.16921 0.0997195 9.45261e-17)
(1.16949 0.0667916 1.07074e-18)
(1.15693 0.0431302 1.64531e-17)
(1.14008 0.0322817 -4.03248e-17)
(1.12787 0.0304998 3.02004e-17)
(1.13021 0.0289361 -5.52237e-18)
(0.82956 0.0144855 3.28693e-17)
(0.811785 0.0976823 -2.57267e-17)
(0.845615 0.188678 1.29041e-16)
(0.922528 0.240257 7.29602e-17)
(1.00272 0.242614 1.80288e-16)
(1.05914 0.219538 -1.02068e-16)
(1.09505 0.192656 -3.01425e-17)
(1.12384 0.165237 3.59016e-17)
(1.1491 0.134489 7.53001e-18)
(1.16506 0.0999768 -6.69835e-17)
(1.16618 0.0673208 1.12056e-17)
(1.1546 0.043596 -3.4719e-17)
(1.13845 0.032417 4.98248e-17)
(1.12633 0.0301967 -1.53141e-17)
(1.12812 0.028596 3.1579e-18)
(0.8352 0.0136395 -4.21472e-17)
(0.817066 0.0919042 4.57924e-17)
(0.846862 0.179986 1.72867e-17)
(0.919206 0.232527 -2.07845e-17)
(0.997311 0.237807 -4.5311e-17)
(1.05406 0.216821 3.44873e-17)
(1.09066 0.190874 2.73219e-17)
(1.1195 0.164171 -1.50067e-17)
(1.14465 0.134137 -8.28318e-17)
(1.16093 0.100238 1.34199e-17)
(1.16287 0.0678947 -5.89877e-17)
(1.15227 0.0441115 2.32985e-17)
(1.13683 0.0325758 -1.47201e-17)
(1.12486 0.0298803 1.50868e-17)
(1.12615 0.0281838 5.04829e-18)
(0.84056 0.0129126 4.11826e-17)
(0.822264 0.0865431 -2.77368e-17)
(0.848387 0.171632 1.01897e-16)
(0.916316 0.22482 -1.07185e-16)
(0.992196 0.232829 -8.57162e-17)
(1.04909 0.213963 3.17277e-17)
(1.08633 0.189007 -7.19534e-18)
(1.11525 0.163021 3.65516e-17)
(1.14028 0.133721 2.65084e-18)
(1.15682 0.100483 -1.85963e-18)
(1.15955 0.0684956 4.83274e-17)
(1.14993 0.044668 1.01675e-17)
(1.13522 0.0327603 2.63896e-17)
(1.12343 0.0295605 -2.5469e-17)
(1.12425 0.0277464 -3.24567e-18)
(0.845659 0.0122875 -1.74511e-17)
(0.827366 0.0815717 6.8919e-17)
(0.850154 0.163623 -1.29265e-16)
(0.913835 0.217175 -2.8633e-17)
(0.987382 0.22771 -4.42401e-17)
(1.04425 0.210977 -7.6854e-17)
(1.08207 0.187064 -8.0503e-17)
(1.11107 0.161796 -4.88161e-17)
(1.13598 0.133241 6.25734e-17)
(1.15276 0.1007 -4.04037e-17)
(1.15624 0.0691066 -5.25973e-17)
(1.14758 0.0452519 1.06012e-17)
(1.13362 0.0329644 -2.34156e-17)
(1.12204 0.0292413 1.27051e-17)
(1.12245 0.0272604 2.77976e-18)
(0.850515 0.0117491 -3.10261e-17)
(0.83236 0.0769637 -1.0177e-16)
(0.85213 0.155961 9.46206e-17)
(0.911739 0.209623 1.26484e-16)
(0.982871 0.22248 2.08664e-16)
(1.03954 0.207869 2.78043e-17)
(1.07787 0.185049 2.87282e-17)
(1.10698 0.1605 4.27822e-20)
(1.13176 0.132693 -5.71466e-17)
(1.14874 0.100877 8.84799e-17)
(1.15294 0.0697142 1.56861e-17)
(1.14523 0.0458548 -7.05462e-18)
(1.13203 0.0331886 -2.70605e-17)
(1.12069 0.0289291 2.33364e-17)
(1.1207 0.0267666 -1.28331e-17)
(0.855145 0.0112847 6.8847e-17)
(0.837239 0.0726938 1.14374e-16)
(0.854283 0.148645 -4.20012e-17)
(0.910003 0.202191 1.06021e-18)
(0.978662 0.217166 -1.89953e-16)
(1.03497 0.204651 8.36181e-17)
(1.07375 0.182965 4.11851e-19)
(1.10296 0.159141 4.5756e-17)
(1.12762 0.13208 -7.54485e-18)
(1.14478 0.101008 -6.50793e-17)
(1.14965 0.0703075 -5.80112e-19)
(1.14287 0.0464682 -1.23278e-17)
(1.13043 0.0334303 8.70221e-19)
(1.11937 0.0286297 -8.05623e-18)
(1.11904 0.0262468 1.22555e-17)
(0.859565 0.0108829 -4.95876e-17)
(0.841994 0.0687378 -4.3032e-17)
(0.856587 0.141672 4.79017e-18)
(0.908604 0.194902 -1.31401e-16)
(0.974751 0.211791 1.45925e-16)
(1.03055 0.201331 -1.24547e-16)
(1.06969 0.180815 9.5159e-17)
(1.09902 0.15772 -2.39578e-17)
(1.12356 0.1314 -5.33641e-19)
(1.14086 0.101084 1.27224e-18)
(1.14638 0.0708759 3.21396e-17)
(1.1405 0.0470841 -6.97119e-18)
(1.12883 0.0336876 -8.98539e-18)
(1.11807 0.0283452 -2.96574e-18)
(1.11742 0.0257345 -2.15351e-18)
(0.863788 0.0105342 -2.50894e-17)
(0.846622 0.0650726 -1.67543e-17)
(0.859015 0.135035 4.2418e-17)
(0.907517 0.187776 5.08509e-17)
(0.971134 0.20638 -1.54092e-16)
(1.02629 0.197918 9.43836e-17)
(1.06571 0.1786 -2.30224e-17)
(1.09516 0.156243 -4.96675e-17)
(1.11959 0.130656 4.01497e-18)
(1.13702 0.101103 3.30433e-17)
(1.14313 0.071412 -1.64432e-17)
(1.13813 0.0476949 1.1066e-17)
(1.12722 0.0339561 8.47425e-18)
(1.11679 0.0280783 1.0005e-17)
(1.11588 0.0252109 -8.72917e-19)
(0.867827 0.0102303 4.37335e-17)
(0.851119 0.0616765 -3.53806e-17)
(0.861544 0.128726 -9.52409e-17)
(0.906718 0.180826 1.66559e-16)
(0.967804 0.200953 4.35535e-17)
(1.02219 0.194421 -7.04127e-18)
(1.06182 0.176323 5.94458e-18)
(1.09138 0.154711 -2.84375e-17)
(1.1157 0.129849 2.70534e-17)
(1.13323 0.101061 -1.62891e-17)
(1.13991 0.0719079 3.6412e-17)
(1.13576 0.0482933 1.80645e-18)
(1.12561 0.034233 -4.03039e-18)
(1.11552 0.0278292 -2.50571e-17)
(1.11436 0.024703 -1.07348e-17)
(0.871695 0.0099644 -1.94394e-17)
(0.855484 0.058529 1.98633e-17)
(0.864153 0.122737 5.43164e-17)
(0.906185 0.174066 -2.14708e-16)
(0.964754 0.195529 -4.89059e-19)
(1.01827 0.190851 -1.2331e-16)
(1.05801 0.173985 -6.25683e-17)
(1.08768 0.153128 5.88979e-18)
(1.1119 0.128982 -5.86306e-17)
(1.12951 0.100958 -3.93428e-17)
(1.13672 0.0723605 -2.84057e-17)
(1.13339 0.0488762 -3.58955e-17)
(1.12398 0.0345177 7.65675e-18)
(1.11427 0.0276023 4.01455e-19)
(1.11291 0.0241958 1.59775e-17)
(0.875402 0.00973032 2.6044e-17)
(0.859716 0.0556109 3.21409e-17)
(0.866825 0.117058 -4.07427e-17)
(0.905897 0.167504 1.33203e-17)
(0.961975 0.190126 8.11611e-17)
(1.01452 0.187216 5.43058e-17)
(1.0543 0.171588 -4.68938e-17)
(1.08405 0.151496 3.75137e-17)
(1.10818 0.128057 6.72914e-17)
(1.12586 0.100791 3.69246e-17)
(1.13356 0.0727639 -1.66786e-17)
(1.13102 0.0494368 3.30518e-17)
(1.12235 0.034806 -9.56309e-18)
(1.11302 0.027395 3.85156e-17)
(1.11149 0.0237098 3.87232e-18)
(0.878959 0.00952312 -3.61213e-17)
(0.863815 0.0529039 -1.2539e-17)
(0.869541 0.111675 1.10173e-16)
(0.905831 0.161146 1.10484e-16)
(0.959457 0.184759 3.50768e-17)
(1.01095 0.183526 8.41084e-18)
(1.05068 0.169135 5.0457e-17)
(1.08051 0.149817 4.35319e-17)
(1.10455 0.127077 3.62645e-17)
(1.12228 0.100563 -2.60064e-17)
(1.13044 0.0731165 -1.04237e-17)
(1.12865 0.0499718 -3.98001e-17)
(1.12071 0.0350951 1.72597e-17)
(1.11177 0.0272089 -1.25736e-17)
(1.11011 0.023229 -9.90656e-18)
(0.882374 0.00933847 5.52861e-17)
(0.867783 0.0503915 2.79748e-17)
(0.872288 0.106579 -5.77485e-17)
(0.905968 0.154998 6.10302e-18)
(0.95719 0.179444 -9.70959e-17)
(1.00755 0.179791 6.38856e-17)
(1.04716 0.16663 -1.92083e-17)
(1.07704 0.148093 8.40865e-18)
(1.101 0.126044 -1.75498e-17)
(1.11877 0.100272 6.49717e-17)
(1.12735 0.0734141 4.01863e-17)
(1.12629 0.0504756 3.77819e-17)
(1.11905 0.035381 -4.04945e-18)
(1.11053 0.0270412 -6.96756e-18)
(1.10876 0.02277 7.70114e-18)
(0.885656 0.00917274 5.57089e-18)
(0.871621 0.0480579 -2.40535e-17)
(0.875052 0.101756 2.37756e-17)
(0.906288 0.149061 -6.15976e-17)
(0.955162 0.174192 -3.89624e-17)
(1.00434 0.176022 3.71004e-17)
(1.04375 0.164074 3.54679e-17)
(1.07365 0.146326 6.65423e-17)
(1.09753 0.124962 -5.28116e-17)
(1.11533 0.0999214 -3.28487e-17)
(1.12431 0.073658 -2.83142e-17)
(1.12394 0.0509485 6.59066e-18)
(1.11739 0.0356642 -1.11269e-17)
(1.10928 0.0268952 3.70031e-18)
(1.10744 0.0223213 3.95839e-18)
(0.888813 0.00902282 -2.35786e-17)
(0.875332 0.0458888 -2.28191e-17)
(0.877822 0.0971943 -5.88952e-17)
(0.906775 0.143337 8.48411e-18)
(0.953364 0.169014 -2.24285e-17)
(1.00131 0.172227 2.72426e-17)
(1.04045 0.161473 5.08005e-17)
(1.07035 0.144518 -3.52429e-17)
(1.09415 0.123832 2.22888e-17)
(1.11197 0.099511 2.94451e-17)
(1.1213 0.073845 6.81595e-18)
(1.12159 0.0513853 -3.82098e-18)
(1.11571 0.0359397 3.6979e-17)
(1.10803 0.0267659 -9.55379e-18)
(1.10614 0.0218955 -1.20823e-17)
(0.891853 0.00888616 -5.51778e-18)
(0.87892 0.0438705 1.47844e-17)
(0.880587 0.092881 -2.05387e-17)
(0.90741 0.137824 1.28022e-17)
(0.951782 0.163921 8.56897e-17)
(0.998452 0.168417 -1.37065e-16)
(1.03726 0.15883 1.39968e-17)
(1.06713 0.142672 1.18164e-17)
(1.09085 0.122658 1.87059e-17)
(1.10868 0.0990447 -8.18692e-17)
(1.11834 0.0739767 4.45199e-17)
(1.11925 0.0517856 -1.19277e-17)
(1.11403 0.0362063 -2.91645e-17)
(1.10678 0.0266539 -3.0817e-17)
(1.10486 0.0214813 1.048e-17)
(0.89478 0.00876057 -2.44014e-17)
(0.882386 0.0419911 4.72382e-19)
(0.88334 0.0888038 3.6519e-17)
(0.908178 0.132522 3.46468e-18)
(0.950405 0.15892 5.39928e-17)
(0.995772 0.164599 8.16228e-17)
(1.03418 0.156149 9.58985e-18)
(1.06399 0.140789 -5.97242e-17)
(1.08763 0.121441 -1.61282e-18)
(1.10546 0.0985223 4.16546e-17)
(1.11543 0.0740509 -4.55662e-17)
(1.11693 0.0521453 -1.88e-17)
(1.11234 0.0364598 -3.25754e-17)
(1.10552 0.0265546 1.0724e-18)
(1.1036 0.0210899 -1.42999e-17)
(0.897602 0.00864422 4.39198e-17)
(0.885735 0.0402387 -6.30634e-19)
(0.886072 0.0849504 7.72275e-18)
(0.909064 0.127426 -1.36951e-17)
(0.949222 0.15402 -1.09586e-16)
(0.993265 0.160783 -1.25826e-17)
(1.03121 0.153436 -8.50152e-17)
(1.06093 0.138871 6.0323e-17)
(1.08449 0.120184 -3.29901e-18)
(1.10231 0.0979482 -3.53672e-17)
(1.11256 0.0740712 4.56994e-17)
(1.11462 0.0524668 5.31629e-17)
(1.11065 0.0367015 -1.62092e-17)
(1.10425 0.0264705 1.14678e-17)
(1.10236 0.0207115 1.19768e-17)
(0.900324 0.00853557 7.0242e-18)
(0.888971 0.0386035 3.40915e-17)
(0.888778 0.081309 -2.14956e-17)
(0.910054 0.122534 -3.16606e-17)
(0.948221 0.149225 3.62911e-17)
(0.990927 0.156978 1.78154e-17)
(1.02837 0.150694 -2.17648e-17)
(1.05796 0.136922 -1.04634e-16)
(1.08143 0.118889 -6.19621e-18)
(1.09924 0.0973227 8.03435e-17)
(1.10974 0.0740359 -3.36942e-17)
(1.11232 0.0527461 -1.37469e-17)
(1.10895 0.0369269 6.99925e-17)
(1.10299 0.0263963 5.53588e-18)
(1.10113 0.0203541 -4.49029e-18)
(0.902952 0.00843332 -5.61396e-17)
(0.892097 0.0370753 -5.58714e-17)
(0.891451 0.0778677 3.42243e-17)
(0.911135 0.117841 2.03421e-17)
(0.94739 0.144542 -2.47839e-17)
(0.988754 0.15319 -5.68455e-17)
(1.02564 0.147929 5.51008e-17)
(1.05508 0.134944 4.86369e-17)
(1.07845 0.117559 1.38812e-18)
(1.09624 0.0966498 -8.60616e-17)
(1.10697 0.0739481 5.60269e-18)
(1.11005 0.0529848 -1.34412e-17)
(1.10724 0.0371359 -9.68984e-18)
(1.10171 0.0263322 1.13501e-17)
(1.09991 0.0200081 -5.523e-18)
(0.905489 0.00833643 -4.12829e-19)
(0.895117 0.0356458 1.00905e-17)
(0.894087 0.0746154 1.45547e-17)
(0.912296 0.113342 7.65948e-18)
(0.946718 0.139973 5.09357e-17)
(0.986741 0.149427 1.24669e-17)
(1.02302 0.145145 4.36931e-17)
(1.05228 0.132938 1.85035e-17)
(1.07554 0.116196 1.9685e-17)
(1.0933 0.0959301 2.27309e-17)
(1.10425 0.073807 8.16549e-18)
(1.10779 0.05318 -3.10957e-18)
(1.10553 0.0373249 4.75463e-17)
(1.10042 0.0262738 -3.97367e-18)
(1.0987 0.0196806 -5.58938e-18)
(0.90794 0.00824395 2.81712e-17)
(0.898034 0.0343066 1.11998e-17)
(0.896682 0.0715412 -4.92607e-17)
(0.913526 0.109032 -4.52966e-17)
(0.946194 0.135521 -3.04275e-17)
(0.984882 0.145696 2.09175e-17)
(1.02053 0.142348 -1.00899e-16)
(1.04957 0.130908 2.5211e-17)
(1.07272 0.114802 -2.95094e-17)
(1.09044 0.0951677 8.39665e-17)
(1.10158 0.0736167 -1.5671e-17)
(1.10556 0.0533351 -6.6576e-18)
(1.10382 0.0374958 -3.43727e-17)
(1.09913 0.0262228 -6.83361e-18)
(1.0975 0.0193635 1.45325e-17)
(0.910309 0.00815512 9.32012e-19)
(0.900853 0.0330509 -2.23603e-17)
(0.899233 0.0686351 -1.8088e-17)
(0.914815 0.104904 1.27712e-16)
(0.945807 0.13119 -2.01696e-17)
(0.983173 0.142003 -6.00426e-17)
(1.01815 0.139543 9.36653e-17)
(1.04695 0.128856 5.2352e-19)
(1.06997 0.113379 2.98061e-17)
(1.08765 0.0943635 -3.8224e-17)
(1.09896 0.0733767 -9.53577e-19)
(1.10335 0.0534475 4.60905e-17)
(1.10212 0.0376449 1.11835e-17)
(1.09784 0.0261745 1.42732e-17)
(1.0963 0.0190616 -1.2301e-17)
(0.912601 0.00806926 -4.3501e-18)
(0.903578 0.0318714 4.05557e-17)
(0.901737 0.0658867 -6.63164e-17)
(0.916152 0.100954 -3.04094e-17)
(0.945548 0.12698 1.2558e-16)
(0.981608 0.138354 8.90169e-19)
(1.01589 0.136733 -1.84666e-17)
(1.04441 0.126786 -2.22956e-17)
(1.0673 0.11193 -3.55991e-17)
(1.08493 0.0935211 -7.37279e-17)
(1.09639 0.0730904 -7.18287e-17)
(1.10116 0.0535195 -5.6939e-17)
(1.10041 0.0377727 -1.43027e-17)
(1.09654 0.0261289 -5.35143e-18)
(1.09511 0.0187672 6.04547e-18)
(0.914817 0.00798583 6.61128e-18)
(0.906211 0.0307625 -1.07746e-17)
(0.904193 0.063287 5.82758e-17)
(0.917531 0.0971739 -1.0359e-16)
(0.945406 0.122892 -9.06717e-17)
(0.98018 0.134754 -6.37887e-17)
(1.01374 0.133924 -2.35796e-17)
(1.04197 0.124699 2.98583e-18)
(1.0647 0.110456 -1.85032e-17)
(1.08228 0.0926412 8.28382e-17)
(1.09387 0.0727577 3.89887e-18)
(1.099 0.0535496 6.65012e-18)
(1.09871 0.0378768 -4.80623e-17)
(1.09523 0.0260825 2.24817e-17)
(1.09392 0.0184859 3.34817e-18)
(0.916962 0.00790431 -3.08391e-17)
(0.908757 0.0297182 -9.13097e-18)
(0.906599 0.0608269 4.79715e-17)
(0.918944 0.0935588 5.68859e-17)
(0.945372 0.118927 2.78628e-17)
(0.978884 0.131206 -9.62802e-19)
(1.01171 0.131121 2.99298e-17)
(1.0396 0.122599 -4.27766e-18)
(1.06218 0.108959 3.71901e-17)
(1.07969 0.0917279 -2.28617e-17)
(1.0914 0.0723828 2.11535e-17)
(1.09686 0.0535413 2.2485e-17)
(1.09701 0.0379591 4.38997e-17)
(1.09392 0.0260362 -2.11265e-17)
(1.09273 0.0182105 1.47566e-18)
(0.919039 0.00782435 2.58892e-17)
(0.911219 0.0287339 7.20176e-18)
(0.908954 0.0584982 -3.14113e-17)
(0.920383 0.0901019 -4.26658e-17)
(0.945438 0.115083 -1.98984e-17)
(0.977713 0.127716 6.60455e-17)
(1.00978 0.128327 -4.22689e-17)
(1.03733 0.120488 1.72005e-18)
(1.05973 0.107443 3.69589e-17)
(1.07717 0.0907817 2.86603e-17)
(1.08898 0.0719659 9.68646e-17)
(1.09475 0.0534931 4.39724e-17)
(1.09532 0.0380172 -1.16145e-17)
(1.09261 0.0259866 -7.28495e-18)
(1.09155 0.0179455 8.36673e-18)
(0.921051 0.00774556 -1.83111e-17)
(0.9136 0.0278045 -3.27164e-19)
(0.911257 0.0562926 9.30428e-18)
(0.921842 0.0867971 3.48853e-17)
(0.945593 0.11136 -7.29113e-17)
(0.976662 0.124286 -2.19299e-17)
(1.00796 0.125546 -3.34508e-17)
(1.03514 0.118369 -2.40446e-17)
(1.05736 0.105908 -3.45136e-17)
(1.07471 0.0898062 -8.97615e-17)
(1.08661 0.0715101 -7.90143e-17)
(1.09267 0.0534076 -1.12663e-16)
(1.09364 0.0380519 -1.86462e-17)
(1.09129 0.0259337 5.4463e-18)
(1.09037 0.0176838 -8.94456e-18)
(0.922999 0.0076677 -2.79681e-18)
(0.915904 0.0269261 -3.14097e-17)
(0.913507 0.054203 9.58919e-18)
(0.923316 0.083638 2.83981e-17)
(0.945832 0.107757 1.1039e-16)
(0.975723 0.12092 -4.5945e-17)
(1.00625 0.122783 1.83409e-17)
(1.03304 0.116245 -2.64947e-17)
(1.05506 0.104357 -3.09915e-17)
(1.07233 0.088802 7.82989e-17)
(1.0843 0.071016 2.55341e-17)
(1.09062 0.0532843 5.4488e-17)
(1.09196 0.0380619 6.93429e-18)
(1.08997 0.0258752 -2.18886e-17)
(1.08919 0.0174305 -2.50583e-17)
(0.924887 0.00759048 3.68117e-18)
(0.918133 0.0260946 8.77603e-17)
(0.915705 0.0522219 -8.18595e-18)
(0.9248 0.0806187 2.29212e-17)
(0.946145 0.104272 -3.14733e-17)
(0.974892 0.11762 1.18538e-16)
(1.00464 0.120041 2.99611e-17)
(1.03102 0.114119 5.39414e-17)
(1.05283 0.102792 1.95339e-17)
(1.07 0.0877728 -7.00995e-17)
(1.08203 0.0704874 -1.52631e-17)
(1.0886 0.0531264 3.22169e-17)
(1.0903 0.0380489 1.08922e-17)
(1.08865 0.0258115 1.43723e-17)
(1.08801 0.0171795 5.08555e-18)
(0.926717 0.00751372 1.36085e-18)
(0.92029 0.0253069 -4.07505e-17)
(0.91785 0.0503432 3.24665e-17)
(0.926288 0.0777329 -9.13869e-17)
(0.946527 0.100903 -6.95189e-17)
(0.974163 0.114388 2.78391e-17)
(1.00313 0.117323 8.16776e-18)
(1.02908 0.111993 1.93224e-16)
(1.05067 0.101214 -6.5516e-18)
(1.06774 0.0867193 1.79155e-17)
(1.07982 0.0699247 3.0558e-18)
(1.08661 0.0529335 -1.85887e-18)
(1.08865 0.0380115 3.60433e-17)
(1.08733 0.0257407 -1.61566e-17)
(1.08683 0.0169348 1.99639e-17)
(0.928492 0.00743719 2.31877e-17)
(0.922378 0.0245592 -6.63166e-17)
(0.919943 0.0485601 -6.45299e-17)
(0.927777 0.0749749 3.90292e-17)
(0.946969 0.0976481 4.7548e-18)
(0.973528 0.111226 -9.68549e-17)
(1.00171 0.114633 -1.71118e-17)
(1.02723 0.10987 -2.03723e-16)
(1.04858 0.0996267 1.80457e-17)
(1.06554 0.0856444 5.00474e-17)
(1.07765 0.0693309 -4.01112e-17)
(1.08465 0.0527078 6.8252e-18)
(1.08701 0.0379509 -7.57134e-17)
(1.08601 0.0256622 2.69999e-17)
(1.08565 0.0166904 -2.4216e-17)
(0.930212 0.00736078 -2.08338e-17)
(0.9244 0.0238491 9.87825e-17)
(0.921984 0.0468674 2.46059e-17)
(0.929264 0.0723389 -3.46923e-18)
(0.947467 0.0945048 4.73545e-17)
(0.972984 0.108136 3.88249e-17)
(1.00039 0.111972 -1.18588e-17)
(1.02545 0.107752 1.40539e-16)
(1.04656 0.0980306 -4.25083e-17)
(1.0634 0.0845492 -1.11041e-17)
(1.07554 0.0687069 2.3455e-17)
(1.08273 0.0524497 3.0815e-17)
(1.08538 0.0378664 4.96649e-17)
(1.0847 0.0255751 -2.72628e-17)
(1.08447 0.0164512 2.38609e-17)
(0.931881 0.00728429 1.49376e-17)
(0.926359 0.0231735 6.47136e-19)
(0.923973 0.045259 4.74872e-18)
(0.930745 0.0698195 7.50565e-17)
(0.948014 0.0914705 1.34897e-17)
(0.972523 0.105117 -5.10098e-17)
(0.999159 0.109345 -4.25344e-17)
(1.02376 0.105642 -1.99947e-16)
(1.04461 0.0964285 -5.52607e-17)
(1.06132 0.0834365 -1.74377e-17)
(1.07347 0.0680557 6.45979e-17)
(1.08083 0.052162 -1.00382e-16)
(1.08377 0.0377598 -1.83706e-17)
(1.08338 0.0254793 4.24865e-17)
(1.08329 0.016211 -5.36425e-18)
(0.9335 0.00720769 -9.61824e-18)
(0.928256 0.0225304 -2.84975e-17)
(0.925912 0.0437303 6.04109e-17)
(0.932216 0.0674111 -1.48652e-16)
(0.948604 0.0885425 2.26125e-17)
(0.972141 0.102171 7.89649e-17)
(0.998013 0.106753 1.52072e-16)
(1.02214 0.103542 5.98269e-17)
(1.04273 0.0948217 5.6381e-17)
(1.0593 0.0823073 -2.30841e-17)
(1.07145 0.0673784 -8.94137e-17)
(1.07897 0.0518448 3.96652e-17)
(1.08217 0.0376305 -3.16626e-17)
(1.08207 0.025374 -6.91503e-17)
(1.08212 0.015974 -1.2507e-17)
(0.935071 0.00713081 -8.49488e-19)
(0.930094 0.0219171 1.49796e-17)
(0.9278 0.0422761 -5.32502e-17)
(0.933677 0.0651086 1.27328e-17)
(0.949233 0.085718 -5.12553e-18)
(0.971833 0.0992988 -2.29959e-17)
(0.996949 0.104198 -2.29179e-16)
(1.02059 0.101454 2.02348e-16)
(1.04091 0.0932124 2.55027e-17)
(1.05734 0.0811641 8.65444e-18)
(1.06948 0.0666771 5.3392e-17)
(1.07714 0.0515003 3.72495e-18)
(1.08059 0.0374796 3.71012e-17)
(1.08076 0.025259 3.96052e-17)
(1.08095 0.015735 2.21681e-17)
(0.936596 0.00705366 4.5037e-18)
(0.931876 0.0213319 1.13493e-17)
(0.929639 0.0408923 5.43675e-17)
(0.935124 0.062907 3.29742e-17)
(0.949895 0.0829939 -3.56756e-17)
(0.971593 0.0964995 -8.97224e-19)
(0.995965 0.101683 7.60995e-17)
(1.01913 0.0993804 -3.03381e-16)
(1.03916 0.0916019 1.1084e-18)
(1.05544 0.0800078 1.42134e-17)
(1.06756 0.0659532 1.59093e-17)
(1.07535 0.0511292 1.49987e-17)
(1.07903 0.0373071 -1.60809e-17)
(1.07945 0.0251341 -2.24109e-17)
(1.07977 0.0154994 -7.45912e-18)
(0.938076 0.00697611 -5.91296e-18)
(0.933603 0.0207725 -1.23415e-17)
(0.93143 0.0395743 -4.46628e-17)
(0.936555 0.0608016 1.96763e-17)
(0.950588 0.0803676 -7.83768e-17)
(0.971418 0.0937731 1.57388e-17)
(0.995056 0.0992081 1.82481e-16)
(1.01773 0.0973228 1.33139e-16)
(1.03747 0.0899924 1.66036e-17)
(1.05359 0.078841 3.24817e-17)
(1.06569 0.0652092 -8.7539e-18)
(1.07358 0.0507337 -5.57887e-17)
(1.07748 0.0371144 3.90938e-17)
(1.07815 0.0249991 -1.78446e-17)
(1.0786 0.0152615 1.38397e-17)
(0.939514 0.00689821 1.8974e-17)
(0.935277 0.0202377 1.47129e-17)
(0.933174 0.0383186 -2.41421e-17)
(0.937969 0.0587877 -2.15254e-17)
(0.951305 0.0778358 1.3069e-16)
(0.971301 0.0911195 -8.79683e-18)
(0.99422 0.0967756 -2.5414e-16)
(1.0164 0.0952831 -7.40291e-17)
(1.03585 0.0883851 -3.88785e-18)
(1.0518 0.0776647 -6.91504e-17)
(1.06386 0.064446 -3.69404e-17)
(1.07185 0.0503146 3.24863e-17)
(1.07595 0.0369018 -1.72919e-17)
(1.07686 0.024854 4.88032e-17)
(1.07744 0.0150256 -1.06607e-17)
(0.94091 0.00681983 -2.95235e-17)
(0.9369 0.0197252 -4.15843e-17)
(0.934871 0.0371211 -2.89859e-17)
(0.939364 0.0568609 1.10647e-16)
(0.952045 0.0753956 -3.52251e-17)
(0.971239 0.0885379 -2.76812e-17)
(0.993452 0.0943864 1.93358e-16)
(1.01514 0.0932632 1.24897e-16)
(1.03428 0.0867821 -1.34152e-16)
(1.05007 0.0764809 5.89407e-18)
(1.06208 0.0636657 2.20739e-17)
(1.07016 0.0498736 1.15398e-17)
(1.07444 0.0366702 3.54652e-17)
(1.07557 0.0246982 -5.36192e-18)
(1.07627 0.0147866 8.49562e-18)
(0.942267 0.00674105 4.91311e-18)
(0.938475 0.0192343 -5.25133e-18)
(0.936522 0.0359788 1.20499e-16)
(0.94074 0.055017 -1.18571e-16)
(0.952802 0.073044 -1.98372e-17)
(0.971229 0.0860278 9.80014e-17)
(0.992751 0.0920417 -4.53389e-17)
(1.01394 0.0912645 -1.46028e-16)
(1.03277 0.0851844 3.90101e-17)
(1.04838 0.0752906 4.8251e-18)
(1.06035 0.0628695 4.78664e-17)
(1.0685 0.0494118 5.4309e-17)
(1.07295 0.0364201 -4.70906e-17)
(1.07429 0.0245326 -1.17055e-18)
(1.07511 0.0145496 -2.45045e-17)
(0.943585 0.00666179 -4.40416e-18)
(0.940002 0.0187629 5.27849e-17)
(0.938129 0.0348879 -3.93671e-17)
(0.942094 0.0532519 -2.12702e-17)
(0.953575 0.070778 -1.30164e-17)
(0.971264 0.0835882 -1.11573e-16)
(0.992112 0.0897422 9.62409e-17)
(1.01281 0.0892885 4.74195e-17)
(1.03133 0.0835938 -6.23191e-17)
(1.04675 0.0740959 1.87396e-17)
(1.05865 0.0620594 -7.88052e-17)
(1.06687 0.0489309 -5.93455e-17)
(1.07148 0.0361528 2.90583e-17)
(1.07302 0.0243567 3.48816e-17)
(1.07395 0.0143088 -9.65629e-19)
(0.944866 0.00658212 -4.38311e-18)
(0.941484 0.0183103 -5.42181e-17)
(0.939692 0.0338461 -7.15297e-17)
(0.943427 0.0515619 9.64173e-17)
(0.95436 0.0685946 4.75423e-17)
(0.971343 0.0812181 1.08756e-16)
(0.991531 0.0874886 -2.47577e-16)
(1.01174 0.0873365 8.59122e-17)
(1.02994 0.0820116 2.36314e-16)
(1.04518 0.0728977 -1.16868e-18)
(1.05701 0.0612365 1.48037e-16)
(1.06527 0.0484319 1.4166e-17)
(1.07003 0.0358687 3.01528e-17)
(1.07176 0.0241712 -2.5862e-17)
(1.0728 0.0140688 2.88712e-18)
(0.946111 0.00650199 2.50028e-17)
(0.942922 0.017875 3.31733e-18)
(0.941213 0.03285 3.38228e-17)
(0.944738 0.0499432 -5.67891e-17)
(0.955155 0.066491 -9.08325e-17)
(0.971462 0.0789164 -1.81487e-17)
(0.991007 0.0852814 8.64198e-17)
(1.01073 0.0854098 -1.39168e-16)
(1.0286 0.0804392 -1.59717e-16)
(1.04365 0.0716977 2.49364e-17)
(1.0554 0.0604025 -3.43452e-17)
(1.06371 0.0479162 -1.91871e-18)
(1.0686 0.0355687 -8.42304e-18)
(1.07051 0.0239755 -1.41157e-17)
(1.07165 0.0138254 2.61926e-17)
(0.947322 0.00642149 -1.20065e-18)
(0.944318 0.0174562 -2.35966e-17)
(0.942693 0.0318974 2.21063e-17)
(0.946025 0.0483923 3.81265e-17)
(0.955957 0.0644641 7.43032e-17)
(0.971617 0.0766819 -9.67552e-17)
(0.990536 0.083121 3.73231e-17)
(1.00977 0.0835095 1.89486e-16)
(1.02732 0.0788776 1.23063e-16)
(1.04217 0.0704969 -7.24545e-17)
(1.05384 0.0595585 -5.02783e-17)
(1.06218 0.047385 -3.25452e-17)
(1.06719 0.0352537 3.17828e-17)
(1.06927 0.0237709 8.3773e-18)
(1.07051 0.0135841 -1.30856e-17)
(0.948499 0.00634058 -1.1759e-17)
(0.945672 0.0170526 2.12849e-17)
(0.944132 0.0309854 2.66233e-17)
(0.947288 0.046906 -4.32265e-17)
(0.956764 0.0625114 -1.37734e-17)
(0.971804 0.0745132 -1.11875e-17)
(0.990115 0.0810075 5.09962e-17)
(1.00887 0.0816365 -1.56668e-17)
(1.02609 0.0773283 -8.22744e-18)
(1.04074 0.069297 -1.40829e-17)
(1.05232 0.058706 5.44785e-17)
(1.06068 0.0468397 9.02254e-17)
(1.06581 0.0349245 -1.36871e-16)
(1.06804 0.0235567 -8.98685e-18)
(1.06937 0.0133396 1.9648e-17)
(0.949645 0.00625937 1.98158e-18)
(0.946988 0.0166636 -4.45446e-17)
(0.945532 0.0301121 -3.35071e-18)
(0.948528 0.045481 9.67725e-18)
(0.957574 0.0606298 2.58553e-17)
(0.972022 0.0724091 1.00494e-16)
(0.989741 0.078941 -7.77761e-17)
(1.00803 0.0797916 -2.40581e-16)
(1.02492 0.0757922 1.7933e-17)
(1.03936 0.0680987 1.4521e-16)
(1.05084 0.0578463 -9.07283e-18)
(1.05921 0.0462815 -1.13343e-16)
(1.06444 0.034582 5.38496e-17)
(1.06682 0.0233338 4.32582e-17)
(1.06824 0.0130961 -3.07775e-17)
(0.950759 0.00617782 6.6233e-18)
(0.948265 0.0162881 7.00976e-17)
(0.946893 0.029275 -3.30933e-17)
(0.949743 0.0441144 1.72156e-17)
(0.958385 0.058817 -1.31125e-17)
(0.972267 0.0703681 -7.39802e-19)
(0.989412 0.0769214 4.79352e-18)
(1.00723 0.0779758 8.90865e-17)
(1.02379 0.0742704 -1.36483e-16)
(1.03802 0.0669036 3.19963e-18)
(1.04941 0.0569806 -6.16447e-17)
(1.05778 0.0457112 7.66479e-17)
(1.0631 0.0342268 7.41498e-18)
(1.06561 0.0231021 -6.01184e-17)
(1.06712 0.0128495 3.96097e-17)
(0.951844 0.00609606 -3.17196e-17)
(0.949505 0.0159255 1.55474e-17)
(0.948217 0.0284724 -1.23794e-18)
(0.950934 0.0428033 2.01323e-17)
(0.959195 0.05707 -4.46868e-17)
(0.972536 0.0683888 -6.20744e-17)
(0.989124 0.0749487 3.87363e-17)
(1.00648 0.0761896 1.92812e-16)
(1.02271 0.0727638 -6.99361e-17)
(1.03673 0.0657124 -1.5722e-16)
(1.04801 0.05611 2.15218e-17)
(1.05637 0.0451303 -2.99006e-18)
(1.06177 0.0338602 3.29571e-17)
(1.06441 0.0228627 8.15327e-18)
(1.066 0.0126046 -5.63669e-17)
(0.952899 0.00601406 2.54381e-17)
(0.95071 0.0155748 1.07432e-17)
(0.949505 0.027702 1.45697e-17)
(0.952101 0.0415449 -2.79733e-17)
(0.960004 0.0553865 5.40574e-17)
(0.972828 0.0664696 4.45126e-17)
(0.988875 0.0730225 -5.75151e-17)
(1.00578 0.0744336 -1.03031e-16)
(1.02168 0.0712736 1.47707e-16)
(1.03548 0.0645264 7.19981e-17)
(1.04665 0.0552357 -3.96579e-17)
(1.055 0.0445398 -6.09506e-17)
(1.06047 0.0334825 4.1147e-17)
(1.06323 0.0226151 2.21255e-17)
(1.06489 0.0123565 8.07642e-18)
(0.953927 0.00593196 -1.36133e-17)
(0.951881 0.0152356 -8.43279e-18)
(0.950757 0.0269625 -2.14806e-17)
(0.953243 0.0403368 -7.82335e-18)
(0.960809 0.053764 -3.37135e-17)
(0.973139 0.0646091 -2.19827e-17)
(0.988664 0.0711425 3.42227e-17)
(1.00512 0.0727083 -7.8777e-17)
(1.02069 0.0698002 1.00873e-16)
(1.03427 0.0633464 5.76299e-17)
(1.04533 0.0543588 1.05088e-17)
(1.05366 0.0439407 8.3368e-17)
(1.05919 0.033095 -8.03335e-17)
(1.06206 0.0223606 -1.07714e-17)
(1.06379 0.0121093 2.09336e-17)
(0.954928 0.00584974 3.50294e-17)
(0.953018 0.0149071 -6.67077e-17)
(0.951975 0.0262517 4.58677e-17)
(0.954361 0.0391764 4.3356e-17)
(0.961609 0.0522001 1.25174e-17)
(0.973468 0.0628057 3.03553e-17)
(0.988486 0.0693084 8.82896e-18)
(1.0045 0.071014 -1.58546e-17)
(1.01975 0.0683446 -2.07054e-17)
(1.03311 0.0621735 -1.25663e-16)
(1.04404 0.0534802 -3.87745e-17)
(1.05235 0.043334 -1.10515e-16)
(1.05793 0.032698 6.19854e-17)
(1.0609 0.0220987 -2.3123e-18)
(1.0627 0.0118595 -6.55149e-18)
(0.955903 0.00576752 1.72419e-17)
(0.954123 0.0145889 6.33583e-17)
(0.953159 0.0255686 -5.11723e-17)
(0.955454 0.0380615 -7.37318e-18)
(0.962404 0.0506924 -1.86007e-18)
(0.973813 0.061058 -4.64485e-17)
(0.988341 0.0675196 2.4755e-17)
(1.00393 0.0693511 7.20219e-17)
(1.01885 0.0669074 -1.20453e-17)
(1.03198 0.0610084 8.9267e-17)
(1.0428 0.052601 1.60611e-17)
(1.05107 0.0427207 8.53777e-17)
(1.0567 0.0322927 -3.9915e-17)
(1.05976 0.021831 3.30601e-17)
(1.06161 0.0116115 1.64368e-17)
(0.956853 0.0056853 -5.53984e-17)
(0.955198 0.0142801 -2.57258e-17)
(0.954311 0.0249112 2.1732e-17)
(0.956524 0.0369897 1.13049e-17)
(0.963192 0.0492388 -2.28364e-17)
(0.974171 0.0593643 -3.39995e-17)
(0.988226 0.0657756 -1.73168e-17)
(1.00339 0.0677197 -1.45038e-17)
(1.01798 0.0654894 -1.27971e-16)
(1.0309 0.0598521 -4.05429e-18)
(1.04159 0.0517221 1.3686e-17)
(1.04982 0.0421018 -1.16299e-16)
(1.05548 0.0318795 1.50393e-17)
(1.05863 0.0215566 -2.63642e-17)
(1.06054 0.0113611 -2.30523e-17)
(0.957778 0.00560322 3.55553e-17)
(0.956242 0.0139807 -3.2487e-17)
(0.955431 0.0242785 -5.23064e-18)
(0.957569 0.0359592 -5.8821e-17)
(0.963972 0.0478371 -4.99066e-17)
(0.974542 0.0577232 2.28312e-17)
(0.988138 0.0640758 1.18148e-16)
(1.00289 0.0661201 -1.74126e-17)
(1.01716 0.0640909 3.39667e-17)
(1.02986 0.0587052 6.29974e-17)
(1.04041 0.0508444 8.64898e-17)
(1.0486 0.0414782 2.75181e-17)
(1.05429 0.0314595 1.66684e-17)
(1.05751 0.0212771 9.18015e-18)
(1.05947 0.0111121 -5.41112e-18)
(0.95868 0.00552127 -4.63891e-17)
(0.957258 0.0136897 6.28368e-17)
(0.956521 0.0236689 -2.76442e-17)
(0.958591 0.0349677 6.53962e-17)
(0.964744 0.0464852 6.57265e-17)
(0.974922 0.0561331 8.78472e-17)
(0.988077 0.0624194 -1.89153e-17)
(1.00243 0.0645523 -8.75004e-17)
(1.01638 0.0627126 6.08822e-17)
(1.02885 0.0575685 -3.99446e-17)
(1.03927 0.0499686 -5.14281e-17)
(1.04741 0.0408505 9.79052e-17)
(1.05312 0.031033 -1.0196e-16)
(1.05641 0.020992 -6.4758e-17)
(1.05842 0.0108613 1.51678e-17)
(0.95956 0.00543956 3.90701e-17)
(0.958245 0.0134071 -4.08026e-17)
(0.957581 0.0230815 2.2411e-17)
(0.959589 0.0340136 -3.3464e-17)
(0.965507 0.045181 -8.30295e-18)
(0.975312 0.0545926 -1.08134e-16)
(0.988039 0.060806 -6.30202e-18)
(1.002 0.0630163 1.6524e-16)
(1.01563 0.0613548 -7.33408e-17)
(1.02788 0.0564426 -9.37669e-17)
(1.03816 0.0490957 -1.04158e-16)
(1.04625 0.04022 -3.75054e-17)
(1.05197 0.0306012 3.55898e-17)
(1.05532 0.0207027 6.77186e-17)
(1.05737 0.0106128 1.53042e-18)
(0.960418 0.00535812 -2.45284e-17)
(0.959206 0.0131322 -3.79066e-19)
(0.958611 0.0225148 1.05587e-17)
(0.960564 0.0330949 3.24977e-17)
(0.966261 0.0439228 -6.41877e-17)
(0.975709 0.0531 8.88846e-17)
(0.988024 0.0592346 -1.53941e-16)
(1.00159 0.0615121 -2.74937e-17)
(1.01492 0.060018 1.03938e-16)
(1.02694 0.0553282 4.70193e-17)
(1.03708 0.0482263 1.40367e-16)
(1.04511 0.039587 7.24902e-17)
(1.05085 0.0301644 3.35374e-17)
(1.05425 0.0204086 -9.11063e-17)
(1.05634 0.0103628 2.74039e-19)
(0.961255 0.00527704 2.34865e-17)
(0.960141 0.0128648 -2.04851e-17)
(0.959614 0.0219682 -2.42175e-17)
(0.961516 0.0322101 5.31855e-17)
(0.967004 0.0427086 1.01185e-16)
(0.976112 0.0516541 -1.2227e-16)
(0.98803 0.0577046 7.26444e-17)
(1.00122 0.0600395 4.50242e-17)
(1.01424 0.0587025 -2.08469e-16)
(1.02604 0.0542258 1.50497e-17)
(1.03604 0.0473612 1.65645e-17)
(1.044 0.0389526 -9.3588e-17)
(1.04974 0.0297235 -6.03385e-17)
(1.05319 0.020111 5.53004e-17)
(1.05531 0.0101149 1.85986e-17)
(0.962071 0.00519635 2.51937e-17)
(0.96105 0.0126044 3.63825e-17)
(0.960589 0.0214401 -4.46755e-17)
(0.962446 0.0313575 -1.64829e-16)
(0.967737 0.0415367 7.79798e-17)
(0.97652 0.0502533 1.93608e-16)
(0.988055 0.0562152 -4.48735e-17)
(1.00088 0.0585985 -1.00984e-16)
(1.0136 0.0574086 1.73912e-16)
(1.02517 0.053136 3.50671e-17)
(1.03503 0.046501 -2.28355e-17)
(1.04292 0.0383173 4.40961e-17)
(1.04866 0.0292788 3.62746e-18)
(1.05215 0.0198096 3.96184e-18)
(1.0543 0.0098661 -4.50107e-17)
(0.962867 0.00511614 -2.60989e-17)
(0.961936 0.0123509 -1.53412e-17)
(0.961538 0.0209302 2.28246e-17)
(0.963353 0.0305355 -1.12821e-17)
(0.968459 0.0404053 -1.25317e-16)
(0.976932 0.0488962 -1.86014e-16)
(0.988097 0.0547656 3.68213e-17)
(1.00057 0.0571889 7.4469e-18)
(1.01298 0.0561364 6.95105e-17)
(1.02433 0.0520591 -3.8774e-17)
(1.03404 0.0456464 8.95065e-18)
(1.04187 0.0376821 -1.74989e-18)
(1.04759 0.0288314 2.45652e-17)
(1.05112 0.0195058 2.06838e-17)
(1.0533 0.00962003 3.49196e-17)
(0.963645 0.00503643 7.6682e-18)
(0.962797 0.0121037 4.87788e-18)
(0.962462 0.020437 1.03875e-18)
(0.964239 0.0297428 1.72429e-16)
(0.969169 0.0393128 9.39646e-17)
(0.977347 0.0475815 6.47879e-17)
(0.988155 0.0533548 5.18175e-18)
(1.00028 0.0558104 1.1166e-16)
(1.0124 0.0548863 -1.51816e-17)
(1.02352 0.0509958 -8.71348e-17)
(1.03309 0.0447979 -8.68406e-17)
(1.04084 0.0370473 4.67572e-17)
(1.04655 0.0283814 1.70781e-17)
(1.05011 0.0191989 -1.50755e-17)
(1.05231 0.00937362 1.25111e-18)
(0.964404 0.0049573 -1.58725e-17)
(0.963636 0.0118628 -1.01635e-17)
(0.96336 0.0199601 2.60606e-17)
(0.965104 0.028978 8.90663e-19)
(0.969868 0.0382576 -1.14109e-16)
(0.977764 0.0463078 3.5643e-17)
(0.988229 0.0519823 -1.8647e-17)
(1.00001 0.0544627 -2.74692e-17)
(1.01184 0.0536583 -1.50449e-16)
(1.02275 0.0499463 -8.24791e-18)
(1.03217 0.0439561 1.83929e-19)
(1.03984 0.0364137 -1.21463e-16)
(1.04553 0.0279297 4.20898e-17)
(1.04911 0.0188902 2.51322e-17)
(1.05133 0.00912995 1.49049e-17)
(0.965145 0.00487878 1.27539e-17)
(0.964453 0.0116276 -1.26215e-17)
(0.964234 0.0194985 6.96056e-18)
(0.965947 0.0282398 -9.2223e-17)
(0.970555 0.0372383 3.5333e-17)
(0.978182 0.0450737 5.83534e-17)
(0.988315 0.0506469 2.39441e-17)
(0.999767 0.0531455 -8.69502e-17)
(1.01132 0.0524525 -1.34028e-16)
(1.022 0.048911 2.51375e-16)
(1.03127 0.0431215 1.21528e-17)
(1.03886 0.0357817 1.01126e-16)
(1.04453 0.0274765 -1.06498e-17)
(1.04813 0.0185793 3.09433e-17)
(1.05036 0.00888665 -4.09234e-17)
(0.965869 0.00480094 2.38058e-18)
(0.965249 0.0113983 3.58858e-17)
(0.965085 0.0190516 6.11424e-18)
(0.96677 0.027527 -2.24418e-17)
(0.971231 0.0362533 -1.85524e-18)
(0.9786 0.0438781 -7.52778e-17)
(0.988414 0.0493481 -2.91791e-19)
(0.999545 0.0518586 6.23772e-17)
(1.01081 0.0512689 2.60392e-16)
(1.02128 0.0478903 -3.35704e-18)
(1.0304 0.0422946 7.668e-17)
(1.03791 0.0351522 -2.06622e-17)
(1.04355 0.0270228 1.81811e-17)
(1.04716 0.0182675 2.71241e-17)
(1.04941 0.00864666 -6.60465e-18)
(0.966576 0.00472379 -1.18743e-17)
(0.966024 0.0111743 -3.46213e-17)
(0.965913 0.0186185 -6.55874e-17)
(0.967573 0.0268384 1.03233e-16)
(0.971894 0.0353013 6.08858e-17)
(0.979017 0.0427195 7.18333e-17)
(0.988525 0.0480847 5.84892e-17)
(0.999343 0.0506014 -3.55028e-17)
(1.01034 0.0501077 -2.38836e-16)
(1.02059 0.0468843 -1.30837e-17)
(1.02956 0.0414757 -5.16949e-17)
(1.03698 0.0345253 9.4458e-18)
(1.04258 0.0265686 -2.76418e-18)
(1.04621 0.0179542 -1.02069e-16)
(1.04847 0.00840726 4.04499e-17)
(0.967267 0.00464741 -2.85907e-17)
(0.96678 0.0109556 -4.32036e-17)
(0.966719 0.0181988 1.76758e-17)
(0.968356 0.0261729 -7.96043e-17)
(0.972545 0.034381 4.51171e-17)
(0.979434 0.0415968 2.53878e-17)
(0.988645 0.0468562 -1.65267e-16)
(0.99916 0.0493737 1.43752e-17)
(1.00988 0.0489688 2.93196e-16)
(1.01992 0.0458934 -1.65659e-16)
(1.02875 0.0406655 -4.84401e-17)
(1.03607 0.0339019 -8.14961e-18)
(1.04164 0.0261148 -1.21193e-16)
(1.04527 0.0176405 -3.44951e-17)
(1.04754 0.00817073 -4.32395e-17)
(0.967943 0.00457181 3.34755e-19)
(0.967516 0.0107418 4.72895e-17)
(0.967504 0.0177916 -2.47336e-17)
(0.96912 0.0255295 6.54999e-17)
(0.973183 0.0334911 -9.92445e-17)
(0.979849 0.0405089 -2.85739e-17)
(0.988775 0.0456615 1.39599e-16)
(0.998995 0.048175 -6.94841e-18)
(1.00946 0.0478521 -6.83511e-17)
(1.01928 0.0449177 1.43449e-16)
(1.02795 0.039864 1.29583e-16)
(1.03519 0.0332821 -6.593e-17)
(1.04072 0.0256613 9.99674e-17)
(1.04435 0.0173263 1.08476e-16)
(1.04662 0.00793505 3.67451e-17)
(0.968603 0.00449704 -3.92109e-18)
(0.968234 0.010533 -5.25326e-17)
(0.968268 0.0173968 5.47852e-17)
(0.969865 0.0249072 -2.86897e-17)
(0.97381 0.0326303 -7.80543e-18)
(0.980261 0.0394544 3.2311e-17)
(0.988913 0.0444998 1.52593e-17)
(0.998846 0.0470049 2.37937e-17)
(1.00905 0.0467575 1.4728e-17)
(1.01867 0.0439574 -4.98255e-17)
(1.02719 0.0390718 -1.96482e-16)
(1.03433 0.0326666 4.40441e-17)
(1.03982 0.0252092 -4.63954e-17)
(1.04345 0.0170124 -7.64243e-17)
(1.04572 0.00770289 -2.49662e-17)
(0.969248 0.00442312 3.53188e-17)
(0.968934 0.0103287 1.09621e-16)
(0.969012 0.0170132 -5.72685e-18)
(0.970591 0.024305 2.31506e-17)
(0.974424 0.0317975 9.11136e-17)
(0.980671 0.0384324 -1.0638e-16)
(0.989058 0.0433704 -3.76687e-17)
(0.998713 0.0458629 -1.04298e-16)
(1.00866 0.045685 -7.32488e-17)
(1.01807 0.0430127 -1.8203e-16)
(1.02645 0.0382891 -1.25688e-19)
(1.03349 0.0320556 4.26813e-18)
(1.03894 0.0247583 1.57564e-17)
(1.04256 0.0166985 3.43055e-17)
(1.04483 0.00747197 9.40648e-18)
(0.969879 0.00435009 -2.61886e-18)
(0.969616 0.0101291 -8.5723e-17)
(0.969736 0.0166409 1.49949e-17)
(0.9713 0.0237221 -5.96641e-17)
(0.975026 0.0309916 -1.4243e-16)
(0.981077 0.0374418 7.67567e-17)
(0.989209 0.0422723 -3.26329e-17)
(0.998595 0.0447486 4.68837e-18)
(1.0083 0.0446345 -5.72331e-17)
(1.0175 0.0420838 -2.38298e-17)
(1.02573 0.0375163 9.76532e-18)
(1.03268 0.0314497 3.51272e-17)
(1.03807 0.0243093 -2.44128e-17)
(1.04168 0.0163854 6.68038e-19)
(1.04396 0.00724435 9.87422e-18)
(0.970496 0.00427798 1.45592e-17)
(0.970282 0.00993368 5.43114e-17)
(0.970442 0.016279 -6.92433e-18)
(0.971991 0.0231577 5.39861e-17)
(0.975616 0.0302116 1.06242e-16)
(0.98148 0.0364814 -6.82568e-17)
(0.989367 0.0412047 2.66203e-18)
(0.998491 0.0436614 3.78546e-17)
(1.00795 0.0436057 1.07774e-16)
(1.01696 0.0411705 1.35384e-16)
(1.02503 0.0367535 1.48061e-16)
(1.03188 0.030849 -2.23799e-17)
(1.03722 0.0238624 -3.63806e-17)
(1.04082 0.0160728 -5.50482e-17)
(1.04309 0.00701805 1.60054e-17)
(0.9711 0.0042068 1.49458e-17)
(0.970931 0.00974261 -4.59536e-17)
(0.97113 0.0159274 8.33974e-17)
(0.972665 0.0226109 -2.38163e-17)
(0.976193 0.0294563 -8.27627e-17)
(0.981878 0.0355502 9.46529e-17)
(0.98953 0.0401669 7.7132e-17)
(0.998399 0.042601 3.94989e-17)
(1.00762 0.0425985 6.47885e-17)
(1.01643 0.0402732 -1.13797e-16)
(1.02435 0.0360011 -1.53103e-17)
(1.03111 0.0302541 -1.91433e-17)
(1.0364 0.0234183 4.74994e-17)
(1.03998 0.0157616 5.59595e-17)
(1.04224 0.00679524 -4.54241e-17)
(0.971691 0.00413657 -2.06875e-17)
(0.971565 0.00955553 -2.83203e-18)
(0.9718 0.0155854 -6.48606e-17)
(0.973322 0.022081 5.93027e-18)
(0.976759 0.0287249 1.27295e-16)
(0.982273 0.0346473 -1.28677e-16)
(0.989697 0.0391581 7.52724e-18)
(0.99832 0.0415667 6.10416e-17)
(1.00731 0.0416127 -7.94102e-17)
(1.01592 0.0393916 1.65556e-16)
(1.0237 0.035259 -1.41342e-16)
(1.03036 0.029665 -1.04618e-17)
(1.03559 0.0229767 1.04089e-16)
(1.03915 0.0154515 -5.36417e-17)
(1.04141 0.00657384 3.84661e-18)
(0.972269 0.00406733 -9.23814e-18)
(0.972184 0.00937252 3.27173e-17)
(0.972452 0.0152527 -6.34949e-18)
(0.973962 0.0215673 2.37775e-17)
(0.977313 0.0280163 -1.65317e-16)
(0.982663 0.0337718 -3.48566e-17)
(0.989868 0.0381774 -4.47895e-17)
(0.998252 0.0405582 -4.86925e-17)
(1.00701 0.0406481 -7.67941e-18)
(1.01544 0.038526 -8.38203e-17)
(1.02307 0.0345278 1.2969e-16)
(1.02962 0.0290822 1.26323e-17)
(1.03479 0.0225385 -1.38449e-16)
(1.03834 0.0151432 9.58774e-17)
(1.04058 0.00635584 9.01439e-18)
(0.972835 0.00399907 -2.99562e-20)
(0.972787 0.00919327 5.97641e-18)
(0.973088 0.0149289 1.353e-17)
(0.974587 0.021069 -9.39226e-17)
(0.977855 0.0273298 7.4685e-17)
(0.983048 0.0329226 1.48752e-16)
(0.990042 0.037224 -4.29558e-17)
(0.998194 0.0395748 1.1e-17)
(1.00674 0.0397044 -1.63405e-17)
(1.01497 0.0376762 -9.26666e-17)
(1.02245 0.0338073 2.66733e-17)
(1.02891 0.0285058 -8.42022e-17)
(1.03402 0.0221035 5.3572e-18)
(1.03754 0.0148364 -8.94557e-18)
(1.03977 0.00613963 3.8353e-17)
(0.973389 0.00393182 5.15762e-18)
(0.973377 0.00901784 4.65147e-17)
(0.973708 0.0146138 2.12918e-17)
(0.975196 0.0205857 1.7998e-17)
(0.978385 0.0266644 9.86627e-18)
(0.983428 0.0320988 -3.02926e-17)
(0.990218 0.0362973 6.74944e-17)
(0.998146 0.0386162 -8.91246e-17)
(1.00647 0.0387814 -8.37409e-18)
(1.01452 0.0368423 1.81032e-16)
(1.02186 0.0330978 -1.19406e-16)
(1.02821 0.0279363 1.59179e-16)
(1.03326 0.0216725 5.2766e-17)
(1.03675 0.0145319 4.16231e-18)
(1.03898 0.00592714 -2.06387e-17)
(0.973931 0.00386557 -1.79365e-17)
(0.973953 0.00884598 -9.92417e-17)
(0.974313 0.0143068 -3.24258e-17)
(0.975791 0.0201166 5.69682e-18)
(0.978904 0.0260194 -5.1288e-18)
(0.983803 0.0312997 -7.63607e-17)
(0.990397 0.0353965 -3.72049e-17)
(0.998107 0.0376817 5.14554e-17)
(1.00622 0.0378789 -6.47044e-17)
(1.01409 0.0360242 -8.00947e-17)
(1.02128 0.0323994 -3.01199e-17)
(1.02753 0.0273736 -2.16437e-16)
(1.03252 0.0212451 2.83184e-17)
(1.03598 0.0142294 -4.99442e-17)
(1.03819 0.00571655 -2.05707e-17)
(0.974462 0.00380034 1.02735e-17)
(0.974515 0.00867774 1.0989e-17)
(0.974902 0.0140078 1.20425e-17)
(0.97637 0.0196613 9.04794e-17)
(0.979411 0.025394 2.30286e-17)
(0.984172 0.0305244 4.68363e-17)
(0.990578 0.0345208 1.69543e-17)
(0.998077 0.0367708 -5.64993e-17)
(1.00599 0.0369965 2.38119e-17)
(1.01367 0.0352219 2.13759e-17)
(1.02072 0.0317121 -6.26749e-18)
(1.02687 0.0268181 2.03752e-16)
(1.0318 0.0208221 -9.3703e-17)
(1.03522 0.0139295 -1.35585e-17)
(1.03742 0.00550954 4.9208e-17)
(0.974982 0.00373613 2.51363e-17)
(0.975064 0.00851289 2.7126e-17)
(0.975477 0.0137163 -8.87608e-18)
(0.976935 0.019219 -7.77475e-17)
(0.979907 0.0247874 -2.39246e-17)
(0.984536 0.0297721 -6.18377e-17)
(0.99076 0.0336696 6.4988e-18)
(0.998054 0.0358831 7.14235e-17)
(1.00576 0.036134 1.28484e-16)
(1.01327 0.0344352 7.50458e-17)
(1.02018 0.0310361 -2.47483e-17)
(1.02623 0.0262697 4.33142e-18)
(1.03109 0.0204032 1.59019e-16)
(1.03448 0.0136321 3.77436e-17)
(1.03666 0.0053047 -3.26511e-17)
(0.975491 0.00367295 -2.20352e-17)
(0.975601 0.00835146 -1.59369e-17)
(0.976038 0.0134324 -1.56666e-17)
(0.977487 0.0187894 -1.91305e-17)
(0.980393 0.0241988 -1.02112e-17)
(0.984894 0.0290419 4.65976e-18)
(0.990943 0.0328421 -9.88354e-17)
(0.998039 0.0350181 -9.94396e-17)
(1.00555 0.0352912 -1.12348e-16)
(1.01289 0.033664 -9.37011e-17)
(1.01966 0.0303714 1.99525e-16)
(1.0256 0.025729 -4.01713e-17)
(1.0304 0.0199891 -1.13864e-16)
(1.03376 0.0133376 5.75766e-17)
(1.03591 0.00510375 1.4893e-19)
(0.97599 0.00361079 4.22773e-18)
(0.976126 0.00819326 7.64571e-17)
(0.976585 0.0131554 -5.25118e-17)
(0.978024 0.0183719 1.1799e-17)
(0.980867 0.0236278 1.95809e-17)
(0.985247 0.0283332 -2.3166e-18)
(0.991127 0.0320376 6.15846e-18)
(0.99803 0.0341751 1.63672e-17)
(1.00535 0.0344676 -5.80985e-17)
(1.01252 0.0329083 1.28451e-16)
(1.01916 0.029718 -2.8289e-17)
(1.025 0.0251958 1.09287e-16)
(1.02972 0.0195796 5.03577e-17)
(1.03304 0.0130458 -1.21895e-16)
(1.03518 0.00490512 -1.46158e-17)
(0.976479 0.00354965 -3.96104e-18)
(0.976639 0.00803834 -1.13995e-16)
(0.977118 0.0128854 4.87739e-17)
(0.978549 0.0179662 1.19442e-17)
(0.981331 0.0230735 6.82865e-17)
(0.985593 0.0276453 2.88004e-17)
(0.991311 0.0312556 9.17398e-17)
(0.998028 0.0333538 4.97522e-17)
(1.00516 0.033663 1.63597e-16)
(1.01216 0.0321679 -1.24656e-16)
(1.01866 0.029076 -1.75726e-16)
(1.0244 0.0246703 -2.39799e-16)
(1.02906 0.0191752 -8.20647e-17)
(1.03234 0.0127573 -3.31877e-17)
(1.03446 0.00471026 3.61231e-17)
(0.976957 0.00348954 2.86419e-17)
(0.97714 0.0078865 5.17848e-17)
(0.977639 0.0126219 -4.46029e-18)
(0.97906 0.0175716 5.93156e-17)
(0.981784 0.0225354 -6.24984e-17)
(0.985934 0.0269773 1.35637e-16)
(0.991494 0.0304953 -6.72887e-17)
(0.998031 0.0325536 -2.99181e-17)
(1.00499 0.032877 -4.94593e-17)
(1.01182 0.0314428 -1.55054e-16)
(1.01819 0.0284454 1.48991e-16)
(1.02383 0.0241526 1.48747e-16)
(1.02841 0.0187756 6.7905e-17)
(1.03166 0.0124718 1.5413e-16)
(1.03375 0.00451795 -6.67301e-18)
(0.977427 0.00343044 -1.61302e-17)
(0.97763 0.00773777 -8.06963e-18)
(0.978147 0.0123649 4.54866e-17)
(0.979559 0.0171879 -5.61512e-17)
(0.982227 0.0220129 3.54108e-17)
(0.986269 0.0263287 -1.8834e-16)
(0.991678 0.0297561 4.06634e-17)
(0.998039 0.0317741 1.43496e-18)
(1.00482 0.0321095 -7.17768e-17)
(1.0115 0.0307326 1.98278e-16)
(1.01773 0.0278261 -3.666e-17)
(1.02326 0.0236429 -1.9818e-16)
(1.02778 0.0183814 -1.62092e-18)
(1.03098 0.0121899 -3.41353e-17)
(1.03305 0.00432969 -2.31837e-17)
(0.977887 0.00337235 -2.11686e-17)
(0.97811 0.007592 3.51958e-18)
(0.978643 0.012114 1.93684e-17)
(0.980047 0.0168146 1.44566e-17)
(0.982661 0.0215054 -1.65428e-16)
(0.986598 0.0256989 2.32851e-17)
(0.991861 0.0290374 -7.11322e-17)
(0.998053 0.0310147 1.07015e-16)
(1.00466 0.0313599 -5.04006e-17)
(1.01118 0.0300374 5.99793e-17)
(1.01728 0.0272182 -1.00723e-16)
(1.02272 0.0231411 1.03902e-17)
(1.02716 0.0179923 2.32043e-17)
(1.03033 0.0119114 -2.53921e-17)
(1.03236 0.00414413 6.1139e-18)
(0.978337 0.00331527 1.58996e-17)
(0.978579 0.00744921 3.51796e-17)
(0.979128 0.0118691 -7.9449e-17)
(0.980522 0.0164514 3.3485e-17)
(0.983084 0.0210124 1.14157e-16)
(0.986921 0.0250871 1.50284e-16)
(0.992043 0.0283386 1.60997e-16)
(0.998071 0.0302749 8.66601e-18)
(1.00451 0.0306281 1.50959e-16)
(1.01088 0.0293569 -3.25752e-17)
(1.01685 0.0266216 4.67947e-17)
(1.02219 0.0226474 7.29604e-17)
(1.02656 0.0176088 -5.88837e-18)
(1.02968 0.0116366 -2.32443e-20)
(1.03169 0.00396256 -3.8924e-17)
(0.978779 0.00325919 2.85878e-18)
(0.979038 0.00730926 -2.56156e-17)
(0.979601 0.01163 8.83806e-17)
(0.980985 0.0160978 -2.84917e-17)
(0.983497 0.0205334 -4.57223e-17)
(0.987238 0.0244928 -1.18943e-16)
(0.992224 0.0276592 -8.65233e-17)
(0.998093 0.0295543 -2.30953e-16)
(1.00437 0.0299137 3.40855e-17)
(1.01059 0.0286909 -3.47915e-17)
(1.01643 0.0260362 4.03094e-17)
(1.02167 0.0221618 1.21448e-16)
(1.02597 0.0172307 -3.91799e-17)
(1.02905 0.0113654 2.05818e-17)
(1.03103 0.00378386 1.94833e-17)
(0.979213 0.00320409 -6.80311e-18)
(0.979486 0.00717214 3.52445e-19)
(0.980062 0.0113966 -5.822e-17)
(0.981438 0.0157536 -5.48582e-17)
(0.983902 0.0200678 5.38978e-17)
(0.98755 0.0239154 -1.19389e-16)
(0.992404 0.0269984 -7.97098e-17)
(0.998118 0.0288525 7.70084e-17)
(1.00424 0.0292163 -1.5063e-16)
(1.01031 0.0280393 -1.1445e-18)
(1.01603 0.0254621 2.06446e-17)
(1.02116 0.0216845 2.12669e-16)
(1.0254 0.0168584 -9.72071e-17)
(1.02843 0.0110981 -9.07608e-17)
(1.03038 0.00360943 -2.75512e-18)
(0.979637 0.00314997 1.90236e-18)
(0.979926 0.00703777 -4.32189e-17)
(0.980513 0.0111686 -4.0483e-18)
(0.98188 0.0154184 1.62585e-16)
(0.984296 0.0196153 -1.00127e-16)
(0.987855 0.0233544 1.72939e-16)
(0.992582 0.0263559 -7.313e-17)
(0.998147 0.0281688 1.50286e-16)
(1.00411 0.0285357 -1.45197e-17)
(1.01004 0.0274019 -1.87787e-16)
(1.01563 0.0248991 4.56577e-17)
(1.02067 0.0212152 -3.96002e-16)
(1.02483 0.0164917 8.67912e-17)
(1.02782 0.0108347 -5.01746e-17)
(1.02974 0.003438 2.2437e-17)
(0.980054 0.00309683 -1.96607e-17)
(0.980356 0.00690613 1.9895e-17)
(0.980954 0.010946 1.45786e-17)
(0.982311 0.015092 -1.52493e-16)
(0.984682 0.0191753 1.59386e-16)
(0.988155 0.0228091 -2.942e-17)
(0.992759 0.0257311 1.18707e-16)
(0.998179 0.027503 -1.26261e-16)
(1.00399 0.0278714 -9.05433e-17)
(1.00978 0.0267784 -8.37575e-18)
(1.01525 0.0243472 1.71851e-16)
(1.0202 0.0207541 -2.85381e-17)
(1.02429 0.0161308 -1.32665e-17)
(1.02722 0.0105753 9.54475e-17)
(1.02912 0.00327073 -1.4742e-18)
(0.980462 0.00304464 2.27408e-17)
(0.980776 0.00677712 -2.82413e-17)
(0.981385 0.0107284 -5.03701e-18)
(0.982732 0.014774 -3.38614e-17)
(0.985059 0.0187474 -1.83239e-16)
(0.988448 0.0222792 -1.49736e-18)
(0.992934 0.0251234 1.74713e-17)
(0.998214 0.0268545 -1.24617e-17)
(1.00388 0.0272233 1.19061e-17)
(1.00953 0.0261688 5.32999e-17)
(1.01489 0.0238063 -1.8009e-18)
(1.01973 0.0203012 7.73164e-17)
(1.02375 0.0157756 1.55857e-16)
(1.02664 0.0103199 1.12221e-16)
(1.0285 0.00310662 1.78334e-17)
(0.980863 0.00299339 -7.30181e-18)
(0.981188 0.00665072 2.7045e-17)
(0.981805 0.0105159 -3.76615e-17)
(0.983143 0.0144641 1.81874e-16)
(0.985428 0.0183313 -4.92478e-18)
(0.988736 0.0217641 7.75005e-18)
(0.993108 0.0245323 1.39024e-16)
(0.998251 0.0262229 9.81942e-17)
(1.00377 0.0265908 2.48876e-16)
(1.00929 0.0255727 1.48134e-16)
(1.01453 0.0232764 -2.57311e-16)
(1.01928 0.0198567 8.22666e-17)
(1.02323 0.0154265 -2.05925e-16)
(1.02607 0.0100688 -1.39816e-16)
(1.0279 0.00294687 -4.0802e-17)
(0.981256 0.00294308 2.2582e-17)
(0.981592 0.00652686 5.2867e-17)
(0.982217 0.0103082 1.15137e-16)
(0.983544 0.0141621 -7.21407e-17)
(0.985788 0.0179264 7.53589e-17)
(0.989019 0.0212633 4.88461e-17)
(0.993279 0.0239574 1.66625e-17)
(0.998291 0.0256078 -1.08666e-16)
(1.00368 0.0259738 -8.20145e-17)
(1.00906 0.0249901 -3.71354e-17)
(1.01418 0.0227572 2.17024e-16)
(1.01884 0.0194202 1.97202e-16)
(1.02271 0.0150831 2.94208e-17)
(1.02551 0.00982181 8.47355e-18)
(1.02731 0.00279037 -6.45002e-18)
(0.981641 0.0028937 5.20999e-19)
(0.981987 0.00640552 -5.59159e-17)
(0.982618 0.0101053 -1.06726e-16)
(0.983936 0.0138678 -1.36912e-17)
(0.986139 0.0175325 7.80605e-18)
(0.989295 0.0207764 -2.00522e-16)
(0.993449 0.0233982 -1.41508e-16)
(0.998333 0.0250088 -8.01444e-17)
(1.00358 0.025372 -7.71267e-17)
(1.00883 0.0244206 -2.73052e-16)
(1.01385 0.0222487 -5.8925e-17)
(1.01841 0.018992 -4.02662e-16)
(1.02221 0.0147458 5.85325e-17)
(1.02496 0.00957915 9.8339e-17)
(1.02672 0.0026381 4.55908e-17)
(0.98202 0.00284523 -2.06675e-17)
(0.982373 0.00628664 1.18004e-17)
(0.983011 0.009907 1.22911e-16)
(0.984318 0.0135809 -4.79277e-17)
(0.986483 0.0171492 -4.58414e-17)
(0.989567 0.0203029 1.96052e-16)
(0.993617 0.0228542 1.26069e-16)
(0.998376 0.0244253 1.74277e-16)
(1.00349 0.0247848 4.10645e-17)
(1.00862 0.0238641 3.57007e-16)
(1.01352 0.0217509 7.03604e-17)
(1.01799 0.0185719 8.15983e-17)
(1.02173 0.0144144 -5.12063e-17)
(1.02443 0.00934072 -1.83071e-17)
(1.02615 0.00248917 -1.03515e-17)
(0.982391 0.00279765 -1.79041e-17)
(0.982752 0.00617015 6.65661e-17)
(0.983396 0.00971318 -1.10765e-16)
(0.984692 0.0133011 1.30397e-17)
(0.986819 0.0167761 4.86083e-17)
(0.989832 0.0198423 -5.57821e-17)
(0.993782 0.022325 -2.00095e-16)
(0.998421 0.0238572 2.61982e-18)
(1.00341 0.0242122 1.70625e-16)
(1.00842 0.0233203 -2.23425e-16)
(1.01321 0.0212636 -3.33443e-16)
(1.01759 0.0181599 2.72e-16)
(1.02125 0.0140891 1.92359e-16)
(1.0239 0.00910672 9.44597e-18)
(1.02559 0.00234467 3.42033e-17)
(0.982755 0.00275095 -6.20157e-19)
(0.983124 0.00605605 -3.2388e-17)
(0.983771 0.00952372 9.0301e-17)
(0.985057 0.0130283 -4.78383e-17)
(0.987147 0.0164129 5.05855e-17)
(0.990092 0.0193944 3.07097e-17)
(0.993945 0.0218101 1.80289e-16)
(0.998468 0.0233039 6.17643e-17)
(1.00333 0.0236537 -1.53937e-16)
(1.00822 0.0227891 2.54953e-16)
(1.0129 0.0207866 4.14907e-16)
(1.01719 0.017756 -3.83499e-16)
(1.02079 0.0137697 -1.37255e-17)
(1.02339 0.00887703 -1.35382e-16)
(1.02505 0.00220356 -9.12771e-18)
(0.983112 0.00270514 2.80533e-18)
(0.983487 0.00594427 2.32209e-17)
(0.984139 0.00933853 -4.62452e-17)
(0.985414 0.0127622 -6.51676e-17)
(0.987468 0.0160594 -6.63684e-17)
(0.990347 0.0189587 4.45929e-17)
(0.994106 0.0213091 -7.32534e-18)
(0.998515 0.022765 1.24567e-17)
(1.00326 0.0231091 7.81045e-17)
(1.00803 0.0222701 -5.05762e-17)
(1.01261 0.0203198 -6.11026e-16)
(1.01681 0.0173601 3.4087e-16)
(1.02033 0.0134564 -1.24852e-16)
(1.02289 0.00865182 1.10293e-16)
(1.02451 0.00206671 -3.83894e-17)
(0.983462 0.00266018 3.55763e-17)
(0.983843 0.00583478 -1.37411e-17)
(0.984498 0.0091575 -7.14856e-17)
(0.985762 0.0125026 7.97286e-17)
(0.987781 0.0157151 6.34231e-17)
(0.990597 0.0185348 -1.97107e-16)
(0.994265 0.0208217 -7.2874e-17)
(0.998564 0.0222402 -2.40515e-16)
(1.00319 0.0225779 -8.59432e-17)
(1.00784 0.0217633 -9.83035e-17)
(1.01232 0.0198632 3.17525e-16)
(1.01643 0.0169722 1.27184e-17)
(1.01989 0.013149 -5.22207e-17)
(1.02239 0.00843097 -1.75829e-17)
(1.02398 0.00193329 7.71746e-17)
(0.983806 0.00261606 -2.89126e-17)
(0.984193 0.00572752 -5.73351e-18)
(0.98485 0.00898052 1.01865e-16)
(0.986103 0.0122494 6.34263e-19)
(0.988087 0.0153798 -4.00879e-19)
(0.990841 0.0181223 8.46312e-17)
(0.994421 0.0203474 2.5762e-17)
(0.998614 0.0217292 7.86838e-17)
(1.00313 0.0220601 6.06973e-17)
(1.00767 0.0212684 1.65762e-16)
(1.01204 0.0194166 3.24107e-16)
(1.01607 0.0165923 -1.64908e-16)
(1.01946 0.0128477 -1.68685e-17)
(1.02191 0.00821466 6.96727e-18)
(1.02346 0.00180429 -9.03782e-17)
(0.984144 0.00257278 -1.63077e-18)
(0.984535 0.00562248 6.56376e-18)
(0.985194 0.00880751 -1.10222e-17)
(0.986436 0.0120024 -4.96801e-17)
(0.988387 0.0150532 -1.40831e-17)
(0.991081 0.0177209 7.72373e-17)
(0.994575 0.0198858 -5.98834e-17)
(0.998664 0.0212315 6.94032e-17)
(1.00307 0.0215551 2.50264e-17)
(1.0075 0.0207852 -1.73518e-16)
(1.01177 0.0189799 -3.07106e-16)
(1.01571 0.0162202 -6.80632e-17)
(1.01903 0.0125523 -2.6335e-17)
(1.02144 0.00800276 6.01824e-17)
(1.02295 0.00167872 3.25745e-17)
(0.984475 0.00253032 -1.89872e-18)
(0.98487 0.00551958 -3.62798e-17)
(0.98553 0.00863835 -1.10466e-17)
(0.986761 0.0117613 7.77831e-17)
(0.988679 0.0147351 -5.82553e-17)
(0.991315 0.0173303 -2.82063e-17)
(0.994727 0.0194366 -9.84784e-17)
(0.998716 0.0207468 5.72771e-18)
(1.00301 0.0210628 1.15484e-18)
(1.00733 0.0203134 -6.23839e-21)
(1.01151 0.0185528 1.4362e-16)
(1.01537 0.0158559 9.515e-17)
(1.01862 0.012263 1.79709e-16)
(1.02098 0.00779538 -1.02746e-16)
(1.02246 0.00155735 -1.23012e-17)
(0.984801 0.00248866 1.2991e-17)
(0.985199 0.00541883 -1.36571e-17)
(0.98586 0.00847298 2.89721e-17)
(0.987079 0.0115261 -1.0777e-17)
(0.988965 0.0144252 1.01447e-16)
(0.991545 0.0169501 -7.2811e-17)
(0.994876 0.0189994 1.19694e-16)
(0.998767 0.0202748 -2.85917e-17)
(1.00295 0.0205829 -1.00688e-16)
(1.00717 0.0198528 9.30528e-17)
(1.01126 0.0181354 -7.54219e-17)
(1.01503 0.0154992 -1.13835e-16)
(1.01822 0.0119795 -1.18893e-17)
(1.02053 0.0075924 9.10856e-18)
(1.02197 0.00143944 2.91033e-17)
(0.98512 0.0024478 -4.51245e-18)
(0.985521 0.00532014 6.01313e-17)
(0.986183 0.00831128 -6.07545e-17)
(0.98739 0.0112965 -2.55417e-17)
(0.989245 0.0141232 2.46441e-17)
(0.99177 0.01658 9.65267e-17)
(0.995023 0.0185738 -1.34438e-16)
(0.99882 0.0198151 -4.34974e-17)
(1.0029 0.0201151 -2.40933e-18)
(1.00702 0.0194033 2.87017e-17)
(1.01101 0.0177273 -3.07103e-16)
(1.0147 0.0151503 2.28346e-16)
(1.01782 0.011702 8.44917e-18)
(1.02009 0.00739396 8.51194e-17)
(1.02149 0.00132588 -3.52496e-17)
(0.985433 0.00240771 1.62713e-17)
(0.985837 0.00522354 -5.42331e-17)
(0.986498 0.00815321 -1.4015e-17)
(0.987694 0.0110724 2.26008e-17)
(0.989518 0.013829 -9.07388e-17)
(0.99199 0.0162197 1.59722e-17)
(0.995168 0.0181596 1.1538e-16)
(0.998872 0.0193675 1.42884e-16)
(1.00286 0.019659 -2.09482e-17)
(1.00688 0.0189645 3.41978e-17)
(1.01077 0.0173286 3.0401e-16)
(1.01438 0.0148089 -3.05758e-16)
(1.01744 0.0114304 -7.87457e-17)
(1.01966 0.00719992 -1.20023e-16)
(1.02102 0.00121572 8.50144e-18)
(0.985741 0.00236841 -4.72484e-17)
(0.986147 0.00512891 -7.13607e-18)
(0.986807 0.00799863 3.84432e-17)
(0.987991 0.0108537 -2.33621e-18)
(0.989785 0.0135422 5.67696e-18)
(0.992205 0.015869 3.67749e-17)
(0.99531 0.0177565 1.02718e-16)
(0.998925 0.0189315 -3.69794e-18)
(1.00281 0.0192144 -5.99041e-17)
(1.00673 0.0185364 -8.68246e-17)
(1.01054 0.0169391 1.0504e-16)
(1.01407 0.014475 1.82792e-16)
(1.01707 0.0111646 6.70639e-17)
(1.01923 0.00701037 -4.23696e-17)
(1.02057 0.00110968 4.59072e-18)
(0.986043 0.00232984 6.16085e-17)
(0.986451 0.00503631 -5.67948e-17)
(0.98711 0.00784753 -6.79792e-17)
(0.988282 0.0106402 -7.4429e-17)
(0.990047 0.0132627 -4.31097e-18)
(0.992416 0.0155275 -1.14219e-16)
(0.99545 0.017364 -9.38722e-17)
(0.998978 0.0185069 -1.82091e-16)
(1.00277 0.0187811 2.54346e-16)
(1.0066 0.0181187 -9.10068e-17)
(1.01032 0.0165585 -1.28482e-16)
(1.01377 0.0141485 -7.55434e-17)
(1.0167 0.0109046 -4.09413e-17)
(1.01882 0.0068252 -6.77035e-18)
(1.02012 0.00100703 5.93593e-17)
(0.98634 0.00229203 -2.34686e-17)
(0.986749 0.0049456 7.39205e-17)
(0.987407 0.00769976 -1.99117e-17)
(0.988566 0.0104318 -3.04859e-18)
(0.990302 0.0129903 7.37667e-17)
(0.992623 0.0151949 6.94462e-17)
(0.995587 0.0169819 1.16814e-16)
(0.999031 0.0180935 1.96103e-16)
(1.00273 0.0183589 -6.71867e-17)
(1.00647 0.0177111 6.2862e-17)
(1.0101 0.0161868 1.28232e-16)
(1.01348 0.0138293 2.29936e-16)
(1.01634 0.0106504 -7.65114e-17)
(1.01842 0.0066445 1.74882e-16)
(1.01968 0.000908604 -1.13782e-16)
(0.986631 0.00225493 -1.22425e-17)
(0.987041 0.00485685 1.25444e-17)
(0.987697 0.00755532 1.25995e-16)
(0.988845 0.0102283 9.4478e-17)
(0.990552 0.0127248 -3.16571e-17)
(0.992825 0.0148711 -9.206e-17)
(0.995722 0.01661 -6.23044e-18)
(0.999084 0.0176908 -1.04438e-16)
(1.00269 0.0179473 -9.07131e-17)
(1.00634 0.0173136 -4.40251e-17)
(1.00989 0.0158239 -1.27056e-16)
(1.01319 0.0135173 -1.44258e-16)
(1.01599 0.0104019 -5.62213e-17)
(1.01802 0.00646815 -6.78128e-18)
(1.01925 0.000813488 1.04689e-17)
(0.986918 0.00221856 -1.30956e-17)
(0.987327 0.00476993 -1.51435e-17)
(0.987981 0.00741407 -4.71426e-17)
(0.989117 0.0100297 -1.02118e-16)
(0.990797 0.0124659 -7.18589e-17)
(0.993023 0.0145558 2.99834e-17)
(0.995855 0.0162478 -1.03993e-16)
(0.999137 0.0172986 1.15687e-16)
(1.00266 0.0175462 -7.23606e-17)
(1.00622 0.0169258 4.10471e-19)
(1.00968 0.0154695 -6.74328e-17)
(1.01291 0.0132125 -1.7504e-16)
(1.01566 0.0101591 2.76011e-16)
(1.01764 0.0062962 -6.78333e-17)
(1.01882 0.000722312 6.10487e-17)
(0.987199 0.00218289 4.41069e-19)
(0.987609 0.0046849 -1.63578e-17)
(0.98826 0.00727601 -3.86233e-17)
(0.989383 0.00983572 1.40533e-16)
(0.991036 0.0122136 7.75342e-18)
(0.993217 0.0142486 8.1338e-17)
(0.995985 0.0158952 -1.13208e-16)
(0.999191 0.0169167 -1.53613e-16)
(1.00263 0.0171553 1.06016e-16)
(1.0061 0.0165476 -1.13873e-17)
(1.00948 0.0151235 1.27817e-16)
(1.01264 0.0129146 3.815e-16)
(1.01532 0.00992176 -1.36308e-16)
(1.01726 0.00612852 3.0343e-17)
(1.01841 0.000634419 1.24489e-17)
(0.987475 0.00214792 3.57011e-17)
(0.987884 0.00460162 8.61516e-17)
(0.988533 0.007141 3.21292e-17)
(0.989644 0.00964637 -5.19897e-17)
(0.99127 0.0119675 5.52229e-17)
(0.993407 0.0139495 -1.26227e-16)
(0.996114 0.0155519 -8.47794e-17)
(0.999243 0.0165448 2.88478e-16)
(1.0026 0.0167745 -6.88473e-17)
(1.00599 0.0161787 4.50104e-17)
(1.00929 0.0147858 -9.99801e-17)
(1.01238 0.0126238 -1.17358e-16)
(1.015 0.00969011 -5.4365e-17)
(1.01689 0.00596518 2.52366e-17)
(1.01801 0.000550597 -4.7354e-17)
(0.987746 0.00211362 5.64938e-18)
(0.988155 0.00452019 -3.0677e-17)
(0.988801 0.00700905 3.34657e-17)
(0.989899 0.00946145 1.33785e-17)
(0.991498 0.0117276 -4.38058e-17)
(0.993593 0.0136581 2.20242e-17)
(0.99624 0.0152176 3.5985e-16)
(0.999296 0.0161826 -2.7833e-16)
(1.00257 0.0164034 2.50281e-17)
(1.00588 0.015819 -5.30763e-17)
(1.0091 0.0144563 1.51934e-16)
(1.01212 0.0123397 -2.16131e-16)
(1.01468 0.00946387 -5.30993e-17)
(1.01653 0.00580606 -4.44843e-17)
(1.01761 0.000469948 4.45035e-17)
(0.988012 0.00208001 -1.70023e-17)
(0.988421 0.00444044 -1.49085e-17)
(0.989063 0.00688001 -4.47822e-17)
(0.990149 0.00928093 5.4231e-17)
(0.991722 0.0114936 6.70018e-17)
(0.993775 0.0133742 -1.34041e-16)
(0.996363 0.0148921 -2.26873e-16)
(0.999349 0.0158298 -3.84722e-17)
(1.00255 0.0160418 1.72853e-16)
(1.00577 0.0154684 6.75916e-17)
(1.00892 0.0141347 -2.47342e-16)
(1.01187 0.0120624 -2.02059e-16)
(1.01438 0.00924311 -3.36543e-17)
(1.01618 0.00565119 -4.762e-17)
(1.01722 0.000393054 -4.18002e-17)
(0.988274 0.00204704 1.05827e-17)
(0.988681 0.00436248 -3.46075e-17)
(0.98932 0.00675392 -2.21463e-18)
(0.990394 0.00910462 1.83854e-17)
(0.991942 0.0112655 -3.56343e-17)
(0.993954 0.0130977 -2.00686e-17)
(0.996485 0.0145752 -1.32458e-17)
(0.999401 0.0154863 -3.63489e-17)
(1.00252 0.0156895 -6.69865e-17)
(1.00567 0.0151265 4.6925e-17)
(1.00874 0.013821 1.25664e-16)
(1.01162 0.0117917 3.2382e-16)
(1.01407 0.00902764 2.2085e-16)
(1.01584 0.00550045 -5.57126e-20)
(1.01684 0.000319286 1.88759e-17)
(0.988531 0.00201473 5.10138e-18)
(0.988937 0.00428613 -8.62785e-18)
(0.989572 0.00663062 -8.48395e-17)
(0.990633 0.00893251 -4.04687e-17)
(0.992156 0.011043 1.60312e-16)
(0.994129 0.0128283 3.58556e-16)
(0.996604 0.0142665 -1.63576e-17)
(0.999453 0.0151517 2.71797e-16)
(1.0025 0.0153462 1.7493e-17)
(1.00557 0.0147932 -8.82731e-17)
(1.00857 0.013515 -4.01947e-17)
(1.01139 0.0115276 -2.0955e-16)
(1.01378 0.00881754 -7.13283e-17)
(1.0155 0.00535391 2.93078e-17)
(1.01647 0.000249371 -1.78459e-17)
(0.988784 0.00198303 7.52419e-18)
(0.989188 0.0042115 1.44321e-17)
(0.989819 0.00651015 8.88112e-17)
(0.990868 0.00876441 -1.9917e-17)
(0.992366 0.010826 -1.24816e-16)
(0.9943 0.0125659 -2.15911e-16)
(0.996722 0.0139659 2.47173e-16)
(0.999505 0.0148259 -3.13886e-16)
(1.00248 0.0150119 3.51139e-17)
(1.00548 0.0144684 1.31314e-16)
(1.00841 0.0132166 4.42669e-17)
(1.01116 0.0112699 3.12438e-16)
(1.0135 0.0086126 -2.36121e-16)
(1.01517 0.00521142 1.30477e-16)
(1.01611 0.000182448 3.50634e-17)
(0.989032 0.00195198 -2.74259e-17)
(0.989434 0.00413844 2.06599e-19)
(0.990061 0.00639234 8.13445e-17)
(0.991098 0.0086003 3.61576e-17)
(0.992572 0.0106145 -2.16082e-16)
(0.994468 0.0123102 -7.91723e-17)
(0.996837 0.0136732 -1.89737e-16)
(0.999556 0.0145086 1.03574e-16)
(1.00246 0.0146862 -2.71704e-16)
(1.00539 0.0141518 -3.6683e-16)
(1.00825 0.0129255 5.18242e-17)
(1.01093 0.0110185 -1.72671e-16)
(1.01322 0.00841288 2.35352e-16)
(1.01485 0.00507301 -1.12265e-16)
(1.01576 0.000119034 -4.7116e-17)
(0.989276 0.00192153 6.23899e-18)
(0.989676 0.00406705 2.33291e-17)
(0.990298 0.00627726 -5.06437e-17)
(0.991323 0.00844003 -1.10758e-16)
(0.992773 0.0104081 2.00237e-16)
(0.994632 0.0120612 2.72324e-16)
(0.996951 0.0133882 -5.51579e-17)
(0.999608 0.0141997 5.25018e-17)
(1.00244 0.0143689 2.69561e-16)
(1.0053 0.0138432 3.82413e-16)
(1.00809 0.0126418 -3.94236e-17)
(1.01071 0.0107734 -1.54367e-16)
(1.01294 0.00821818 5.81343e-17)
(1.01454 0.00493853 -5.4009e-17)
(1.01541 5.85564e-05 4.13696e-17)
(0.989516 0.00189169 8.63587e-18)
(0.989914 0.00399715 2.42425e-18)
(0.990531 0.00616473 -6.07812e-17)
(0.991543 0.00828357 1.80415e-16)
(0.992971 0.0102069 -1.07622e-16)
(0.994793 0.0118184 -2.7865e-16)
(0.997062 0.0131106 -2.43496e-17)
(0.999658 0.0138988 1.63114e-18)
(1.00242 0.0140598 -3.11242e-16)
(1.00521 0.0135426 7.79506e-17)
(1.00794 0.0123651 -8.55694e-17)
(1.0105 0.0105344 2.14911e-16)
(1.01268 0.00802859 6.69331e-17)
(1.01423 0.00480804 5.89794e-17)
(1.01507 1.72344e-06 -2.17592e-17)
(0.989751 0.00186243 -3.39901e-18)
(0.990147 0.00392887 1.86883e-17)
(0.99076 0.00605483 -3.4588e-17)
(0.991759 0.00813077 1.69797e-17)
(0.993164 0.0100105 9.49815e-17)
(0.994951 0.011582 -7.34485e-18)
(0.997171 0.0128402 1.23711e-16)
(0.999709 0.0136058 1.21384e-16)
(1.00241 0.0137588 1.51173e-16)
(1.00513 0.0132497 -1.65102e-16)
(1.00779 0.0120956 7.98356e-17)
(1.01029 0.0103014 9.91407e-17)
(1.01242 0.0078439 -1.34821e-16)
(1.01393 0.00468142 -8.8796e-17)
(1.01474 -5.23193e-05 -1.23826e-17)
(0.989983 0.00183377 -1.90979e-17)
(0.990376 0.00386203 -2.16641e-17)
(0.990984 0.00594736 5.8303e-17)
(0.991971 0.00798161 -1.96892e-16)
(0.993353 0.00981913 -1.06353e-16)
(0.995106 0.0113516 3.08155e-16)
(0.997279 0.0125769 -1.87637e-16)
(0.999759 0.0133205 -1.28102e-16)
(1.0024 0.0134657 -6.56952e-17)
(1.00505 0.0129643 1.78014e-16)
(1.00765 0.0118328 7.21088e-17)
(1.01009 0.0100744 -2.37297e-16)
(1.01217 0.00766412 1.16346e-16)
(1.01364 0.00455865 -7.1986e-17)
(1.01441 -0.000103089 2.40945e-17)
(0.99021 0.00180565 1.60952e-17)
(0.990601 0.00379675 -1.07648e-17)
(0.991204 0.00584242 2.79902e-18)
(0.992179 0.00783594 1.08464e-16)
(0.993538 0.0096324 -5.79301e-17)
(0.995258 0.0111271 -4.76187e-17)
(0.997384 0.0123206 9.97081e-17)
(0.999809 0.0130426 6.27335e-17)
(1.00238 0.0131802 -2.32834e-17)
(1.00498 0.0126863 -3.02415e-16)
(1.00751 0.0115768 -1.45272e-16)
(1.00989 0.00985315 3.86685e-17)
(1.01192 0.00748909 -1.67101e-16)
(1.01335 0.00443963 1.74053e-16)
(1.01409 -0.000151131 3.43033e-17)
(0.990434 0.00177812 -2.34299e-17)
(0.990822 0.00373285 -4.53951e-17)
(0.99142 0.00573982 4.31382e-17)
(0.992382 0.00769376 -1.0677e-16)
(0.99372 0.00945032 1.52028e-16)
(0.995406 0.0109083 -2.69319e-16)
(0.997488 0.0120708 9.77818e-17)
(0.999858 0.0127721 1.20734e-16)
(1.00237 0.0129022 6.55106e-17)
(1.0049 0.0124156 2.83926e-16)
(1.00738 0.0113274 2.44736e-16)
(1.0097 0.00963768 3.80292e-16)
(1.01168 0.00731885 -8.32761e-17)
(1.01308 0.00432439 -1.32206e-16)
(1.01379 -0.000195786 -3.0844e-17)
(0.990654 0.00175111 4.03849e-17)
(0.991038 0.00367047 -1.32137e-17)
(0.991631 0.00563966 3.02649e-17)
(0.992582 0.00755491 8.71138e-17)
(0.993898 0.0092727 -1.48017e-16)
(0.995552 0.0106952 2.44765e-16)
(0.99759 0.0118277 -4.23903e-17)
(0.999907 0.0125087 -1.59408e-16)
(1.00236 0.0126315 -1.07633e-16)
(1.00483 0.0121519 -2.63137e-16)
(1.00725 0.0110845 -2.83261e-16)
(1.00952 0.00942784 -4.06035e-16)
(1.01145 0.00715322 2.833e-16)
(1.0128 0.00421281 7.80191e-17)
(1.01348 -0.000237872 1.65533e-17)
(0.99087 0.00172466 -3.97589e-17)
(0.991252 0.00360943 -1.20378e-17)
(0.991839 0.00554173 -1.38838e-16)
(0.992778 0.0074194 -8.94257e-17)
(0.994073 0.00909952 8.9648e-17)
(0.995695 0.0104875 -1.7529e-16)
(0.997691 0.0115909 4.42869e-18)
(0.999956 0.0122523 -1.53664e-16)
(1.00235 0.0123679 1.51019e-16)
(1.00476 0.0118951 1.84791e-16)
(1.00712 0.0108478 5.02618e-17)
(1.00933 0.00922352 2.27963e-16)
(1.01122 0.00699221 -1.90854e-16)
(1.01254 0.00410487 -3.27551e-17)
(1.01319 -0.000276962 -2.3123e-17)
(0.991083 0.00169871 2.91747e-17)
(0.991461 0.00354985 2.00547e-17)
(0.992043 0.00544616 2.12201e-17)
(0.992969 0.00728709 2.00578e-16)
(0.994244 0.00893058 -5.75634e-18)
(0.995836 0.0102852 2.02642e-16)
(0.99779 0.0113603 -1.06202e-16)
(1 0.0120026 -1.01889e-17)
(1.00235 0.0121113 1.78963e-17)
(1.0047 0.0116452 -2.01047e-16)
(1.007 0.0106175 -4.4812e-17)
(1.00916 0.00902463 -1.90437e-16)
(1.011 0.00683567 1.3512e-16)
(1.01228 0.00400045 1.25575e-16)
(1.0129 -0.000313543 2.32364e-17)
(0.991292 0.00167331 -1.12106e-17)
(0.991666 0.00349154 2.30657e-17)
(0.992244 0.00535272 9.88376e-17)
(0.993158 0.00715796 -1.58737e-16)
(0.994412 0.00876587 6.66044e-17)
(0.995974 0.0100881 -3.51333e-17)
(0.997887 0.0111357 1.57471e-16)
(1.00005 0.0117595 7.47141e-17)
(1.00234 0.0118615 6.85854e-17)
(1.00464 0.0114018 -8.9856e-18)
(1.00688 0.0103932 3.22464e-16)
(1.00899 0.00883108 4.78867e-17)
(1.01078 0.00668364 -1.30422e-16)
(1.01203 0.00389958 -6.04297e-17)
(1.01262 -0.000346974 -1.54759e-17)
(0.991498 0.00164839 1.69296e-17)
(0.991869 0.00343465 2.49776e-17)
(0.99244 0.00526155 -7.52819e-17)
(0.993343 0.0070319 8.62442e-17)
(0.994577 0.0086052 9.33814e-17)
(0.996109 0.00989601 -2.08814e-16)
(0.997982 0.0109171 -1.50713e-16)
(1.0001 0.0115229 3.25244e-17)
(1.00233 0.0116183 -5.70926e-17)
(1.00457 0.0111648 2.07159e-16)
(1.00676 0.0101749 -6.82815e-17)
(1.00882 0.00864277 7.67344e-17)
(1.01057 0.00653594 7.19157e-17)
(1.01178 0.00380214 3.58605e-17)
(1.01234 -0.000378056 4.37855e-17)
(0.991701 0.00162399 -2.0625e-17)
(0.992067 0.00337899 7.01838e-18)
(0.992634 0.00517244 -3.67162e-17)
(0.993524 0.00690889 -1.82312e-16)
(0.994738 0.00844857 -6.4717e-17)
(0.996242 0.00970889 -2.04231e-17)
(0.998076 0.0107042 1.12395e-16)
(1.00015 0.0112926 -5.08715e-17)
(1.00233 0.0113817 -1.60436e-16)
(1.00452 0.0109342 -1.53934e-16)
(1.00665 0.00996241 -2.4298e-17)
(1.00866 0.00845959 1.77988e-16)
(1.01036 0.00639255 -2.14312e-16)
(1.01154 0.00370811 -1.08417e-16)
(1.01207 -0.000406393 -6.23964e-17)
(0.9919 0.00160005 4.96263e-18)
(0.992262 0.00332471 2.6553e-17)
(0.992823 0.00508551 4.54376e-17)
(0.993702 0.00678881 2.21383e-16)
(0.994897 0.0082958 -1.33633e-16)
(0.996372 0.00952661 1.20266e-16)
(0.998169 0.0104969 -3.95458e-17)
(1.00019 0.0110684 1.43514e-17)
(1.00233 0.0111513 6.58309e-17)
(1.00446 0.0107098 1.45798e-16)
(1.00654 0.0097557 -2.69155e-16)
(1.0085 0.00828147 -4.08228e-17)
(1.01016 0.00625334 2.69368e-16)
(1.01131 0.00361737 -6.62783e-17)
(1.01181 -0.000432436 2.21639e-17)
(0.992096 0.00157661 -1.32621e-17)
(0.992454 0.00327161 -1.35876e-17)
(0.99301 0.00500055 7.20559e-17)
(0.993877 0.00667167 -1.45553e-16)
(0.995052 0.00814689 2.35119e-16)
(0.9965 0.00934903 8.2185e-17)
(0.99826 0.0102951 -3.36166e-18)
(1.00024 0.0108501 -9.43928e-17)
(1.00232 0.0109271 1.91058e-16)
(1.00441 0.0104915 -1.59456e-16)
(1.00644 0.00955455 8.08496e-17)
(1.00835 0.00810831 8.3377e-17)
(1.00997 0.00611834 -2.98615e-16)
(1.01108 0.00352998 4.40893e-18)
(1.01155 -0.000455601 -9.90111e-18)
(0.992288 0.00155362 -2.90054e-18)
(0.992643 0.00321984 -4.21906e-17)
(0.993193 0.0049177 -1.3465e-16)
(0.994048 0.00655733 8.85108e-17)
(0.995205 0.00800166 -1.85879e-16)
(0.996626 0.00917607 -1.24815e-16)
(0.998349 0.0100986 7.00886e-17)
(1.00029 0.0106378 8.57516e-17)
(1.00232 0.010709 -9.03971e-17)
(1.00435 0.0102791 7.08183e-17)
(1.00634 0.00935896 -3.19883e-17)
(1.0082 0.00794003 -5.2627e-16)
(1.00978 0.00598737 3.72492e-16)
(1.01086 0.00344581 1.03813e-16)
(1.0113 -0.000476632 6.86951e-17)
(0.992478 0.0015311 3.4088e-17)
(0.992828 0.0031692 -2.2229e-17)
(0.993373 0.00483673 1.5328e-16)
(0.994217 0.00644581 9.0483e-18)
(0.995355 0.00786012 1.35265e-16)
(0.996749 0.00900758 -6.31537e-17)
(0.998438 0.00990733 -5.14633e-17)
(1.00033 0.0104311 -3.39878e-17)
(1.00232 0.0104968 -1.35122e-16)
(1.00431 0.0100724 2.26825e-17)
(1.00624 0.0091687 2.47449e-16)
(1.00805 0.0077765 3.61825e-16)
(1.00959 0.00586045 -1.12617e-16)
(1.01064 0.00336483 1.46143e-16)
(1.01106 -0.000495194 -8.94615e-17)
(0.992665 0.00150901 -1.39442e-17)
(0.993011 0.00311986 9.73197e-17)
(0.99355 0.00475781 -3.38419e-17)
(0.994382 0.00633697 -7.93751e-18)
(0.995502 0.0077221 -2.06015e-16)
(0.996871 0.0088435 1.08709e-16)
(0.998525 0.00972117 -1.08323e-16)
(1.00038 0.01023 -4.17983e-17)
(1.00232 0.0102903 1.3337e-16)
(1.00426 0.00987145 -2.38656e-16)
(1.00614 0.00898377 -1.44073e-16)
(1.00791 0.00761765 -1.32042e-16)
(1.00941 0.00573741 -2.21472e-18)
(1.01043 0.0032869 4.50336e-17)
(1.01082 -0.000511669 7.61013e-18)
(0.992849 0.00148737 -1.60149e-17)
(0.99319 0.0030716 -8.71152e-17)
(0.993724 0.00468068 -1.18291e-16)
(0.994545 0.00623085 -7.18052e-17)
(0.995647 0.00758761 2.28314e-16)
(0.99699 0.00868368 -6.31348e-17)
(0.99861 0.00953993 9.76707e-17)
(1.00042 0.0100343 2.13864e-16)
(1.00232 0.0100895 -8.39329e-17)
(1.00421 0.00967601 1.76879e-16)
(1.00605 0.00880398 8.1868e-17)
(1.00778 0.0074634 2.61722e-16)
(1.00924 0.00561832 -1.00961e-17)
(1.01022 0.0032121 -2.74386e-16)
(1.01059 -0.000525511 4.99051e-18)
(0.99303 0.00146614 -1.53447e-17)
(0.993366 0.0030246 6.44635e-17)
(0.993895 0.00460554 1.12676e-16)
(0.994704 0.0061273 -4.91438e-17)
(0.995789 0.00745648 -1.18725e-16)
(0.997107 0.00852807 6.63384e-17)
(0.998695 0.00936359 -6.70654e-17)
(1.00047 0.00984391 1.52464e-17)
(1.00232 0.00989417 3.01247e-17)
(1.00417 0.009486 1.79381e-17)
(1.00596 0.0086293 5.9812e-17)
(1.00764 0.00731367 -4.49235e-16)
(1.00906 0.005503 -1.78193e-16)
(1.01002 0.00314029 1.13683e-16)
(1.01036 -0.000537418 7.91373e-17)
(0.993208 0.00144535 1.65414e-17)
(0.99354 0.00297865 -5.69501e-17)
(0.994063 0.00453212 -7.89417e-17)
(0.994861 0.00602636 1.86185e-17)
(0.995929 0.00732874 2.00165e-17)
(0.997223 0.00837654 2.96703e-17)
(0.998778 0.00919195 2.16858e-16)
(1.00051 0.00965872 -1.25157e-17)
(1.00233 0.00970424 -5.72508e-17)
(1.00413 0.00930127 2.18312e-17)
(1.00588 0.00845953 -1.61717e-16)
(1.00752 0.00716835 2.70694e-16)
(1.0089 0.00539143 8.92794e-17)
(1.00982 0.00307144 -1.47326e-17)
(1.01014 -0.0005471 -8.96057e-17)
(0.993384 0.00142493 -2.03226e-17)
(0.993711 0.00293391 7.03644e-17)
(0.994228 0.00446061 8.90689e-17)
(0.995016 0.00592789 -9.45864e-18)
(0.996066 0.00720422 -2.80043e-17)
(0.997337 0.00822904 7.49768e-17)
(0.99886 0.00902498 2.50104e-17)
(1.00056 0.00947861 -1.32529e-16)
(1.00233 0.00951956 2.19191e-16)
(1.00409 0.00912176 -1.92095e-16)
(1.00579 0.00829468 2.2101e-17)
(1.00739 0.00702738 -1.82807e-16)
(1.00874 0.00528349 -5.3891e-17)
(1.00963 0.00300544 -1.64337e-16)
(1.00992 -0.000554884 6.69367e-17)
(0.993557 0.00140493 4.12322e-17)
(0.993879 0.00289018 1.31751e-17)
(0.994391 0.00439076 8.07611e-18)
(0.995168 0.00583193 1.61682e-16)
(0.996201 0.00708294 -2.30417e-17)
(0.997448 0.00808542 -1.38116e-16)
(0.998942 0.00886249 -1.79188e-16)
(1.0006 0.00930344 1.40936e-16)
(1.00233 0.00934003 -1.91066e-16)
(1.00405 0.00894731 3.97655e-17)
(1.00571 0.00813453 -8.05988e-17)
(1.00727 0.00689067 -1.99435e-17)
(1.00858 0.0051792 -7.45431e-17)
(1.00945 0.00294237 3.48407e-16)
(1.00971 -0.000560297 -4.24703e-18)
(0.993727 0.00138529 -3.63564e-17)
(0.994044 0.00284763 -7.55814e-17)
(0.994551 0.00432276 1.95763e-17)
(0.995317 0.00573834 -5.01053e-17)
(0.996334 0.00696475 6.72491e-17)
(0.997558 0.00794566 4.27088e-17)
(0.999022 0.00870447 1.76412e-16)
(1.00065 0.00913313 -6.05655e-17)
(1.00234 0.00916553 1.40674e-16)
(1.00401 0.00877785 3.78267e-17)
(1.00564 0.00797912 1.21723e-16)
(1.00715 0.00675815 6.18026e-17)
(1.00843 0.00507842 8.75849e-18)
(1.00927 0.00288209 -2.32568e-16)
(1.00951 -0.000563953 -1.06274e-16)
(0.993895 0.00136605 2.34248e-17)
(0.994207 0.00280605 -3.03103e-17)
(0.994708 0.00425635 -5.59063e-17)
(0.995464 0.00564717 -2.3372e-17)
(0.996465 0.00684968 -7.39193e-17)
(0.997667 0.00780963 -2.42479e-17)
(0.999101 0.00855073 -2.99949e-16)
(1.00069 0.00896753 1.57451e-17)
(1.00234 0.00899595 -2.5747e-16)
(1.00398 0.00861322 2.21364e-16)
(1.00556 0.00782822 -1.42985e-16)
(1.00704 0.00662971 1.20295e-16)
(1.00828 0.00498113 3.13404e-17)
(1.00909 0.00282456 -9.51867e-17)
(1.00931 -0.000565633 5.03978e-17)
(0.99406 0.00134715 1.6963e-17)
(0.994367 0.00276562 1.91515e-17)
(0.994863 0.00419172 -3.81449e-17)
(0.995608 0.00555828 -4.22732e-17)
(0.996593 0.00673756 6.93662e-17)
(0.997773 0.00767728 8.28601e-17)
(0.999179 0.00840127 -7.07947e-17)
(1.00073 0.00880658 -8.50297e-17)
(1.00235 0.00883118 1.36741e-16)
(1.00395 0.00845337 -1.7572e-16)
(1.00549 0.00768185 9.02572e-17)
(1.00693 0.0065053 2.73526e-17)
(1.00813 0.00488722 -3.44324e-17)
(1.00892 0.00276967 3.4088e-16)
(1.00912 -0.000565579 1.16534e-17)
(0.994224 0.00132861 -1.48756e-17)
(0.994525 0.00272612 5.35473e-18)
(0.995015 0.00412863 2.27565e-17)
(0.99575 0.00547171 -2.67403e-17)
(0.99672 0.00662844 -1.09377e-17)
(0.997879 0.0075485 6.13848e-17)
(0.999256 0.0082559 3.19582e-16)
(1.00078 0.00865013 -1.5004e-16)
(1.00236 0.00867112 -9.07372e-17)
(1.00391 0.00829817 9.44912e-17)
(1.00542 0.00753984 -9.09486e-17)
(1.00682 0.00638482 -5.15487e-16)
(1.00799 0.00479672 3.23349e-16)
(1.00875 0.0027175 -4.14562e-16)
(1.00893 -0.000563395 1.54276e-17)
(0.994384 0.0013104 -2.15175e-17)
(0.99468 0.00268773 5.21885e-17)
(0.995165 0.00406727 -4.82951e-17)
(0.99589 0.00538735 -6.84171e-17)
(0.996844 0.00652216 -1.92801e-17)
(0.997982 0.00742326 8.661e-18)
(0.999332 0.00811462 1.40335e-17)
(1.00082 0.00849813 3.27803e-16)
(1.00236 0.00851566 -6.12052e-17)
(1.00388 0.00814755 -2.99497e-16)
(1.00535 0.00740218 -3.7206e-17)
(1.00672 0.00626824 1.2955e-16)
(1.00786 0.00470949 -2.66907e-16)
(1.00859 0.00266792 5.16012e-16)
(1.00874 -0.000559598 -5.53337e-17)
(0.994543 0.00129254 3.16658e-17)
(0.994833 0.00265025 -9.42195e-17)
(0.995313 0.00400738 1.53674e-17)
(0.996028 0.00530522 1.01381e-16)
(0.996967 0.00641877 7.07515e-17)
(0.998084 0.00730146 -1.29002e-16)
(0.999408 0.00797727 -1.03857e-17)
(1.00087 0.00835044 -4.78402e-17)
(1.00237 0.00836471 2.00795e-16)
(1.00386 0.00800136 1.12902e-16)
(1.00529 0.00726869 1.86985e-16)
(1.00662 0.00615543 -1.43169e-16)
(1.00773 0.00462551 4.0056e-16)
(1.00843 0.0026209 -6.01488e-18)
(1.00857 -0.000554045 3.99281e-17)
(0.994699 0.00127497 -1.51296e-17)
(0.994984 0.00261385 1.56093e-16)
(0.995459 0.00394916 2.45496e-17)
(0.996164 0.00522521 1.15777e-16)
(0.997088 0.00631811 -5.80394e-17)
(0.998185 0.00718304 -1.31165e-17)
(0.999482 0.00784384 5.84737e-19)
(1.00091 0.00820701 5.04636e-17)
(1.00238 0.00821816 2.60571e-16)
(1.00383 0.00785957 1.20916e-16)
(1.00522 0.00713937 -3.75577e-17)
(1.00652 0.00604635 9.03268e-16)
(1.0076 0.00454466 -1.1238e-16)
(1.00828 0.00257633 9.57818e-17)
(1.00839 -0.000546891 1.27918e-17)
(0.994854 0.00125773 -4.85864e-18)
(0.995132 0.00257832 -5.84499e-17)
(0.995602 0.00389237 4.3788e-17)
(0.996298 0.00514736 -4.57671e-17)
(0.997207 0.00622023 -1.57276e-16)
(0.998285 0.00706791 -1.05905e-16)
(0.999556 0.00771416 -4.98918e-17)
(1.00095 0.0080677 1.37569e-16)
(1.00239 0.00807594 -2.43157e-16)
(1.00381 0.00772205 -1.32013e-16)
(1.00517 0.00701406 1.2727e-16)
(1.00642 0.00594092 -4.16984e-16)
(1.00747 0.00446697 -1.12082e-16)
(1.00813 0.00253431 -3.1774e-16)
(1.00822 -0.000537843 -5.03225e-17)
(0.995006 0.00124077 -1.48491e-17)
(0.995279 0.00254384 -1.40529e-16)
(0.995744 0.0038372 -8.40102e-17)
(0.996429 0.00507156 -1.27927e-16)
(0.997325 0.00612497 8.58815e-17)
(0.998383 0.00695605 7.68512e-17)
(0.99963 0.00758826 -2.9348e-16)
(1.001 0.00793249 -5.30874e-17)
(1.0024 0.00793794 3.82343e-17)
(1.00378 0.00758875 1.05872e-17)
(1.00511 0.00689277 -1.15245e-16)
(1.00633 0.00583911 1.59314e-16)
(1.00735 0.00439233 -5.06875e-16)
(1.00799 0.0024947 -3.36579e-16)
(1.00806 -0.000527295 3.98756e-17)
(0.995156 0.00122411 3.48567e-18)
(0.995423 0.0025102 1.07469e-16)
(0.995883 0.0037834 7.26827e-17)
(0.996559 0.00499784 1.05407e-17)
(0.99744 0.00603241 1.40418e-16)
(0.99848 0.00684736 1.84859e-16)
(0.999702 0.00746596 2.43457e-16)
(1.00104 0.00780123 -1.86797e-16)
(1.00242 0.00780408 2.14043e-17)
(1.00376 0.00745952 1.84922e-16)
(1.00505 0.00677533 -4.21503e-17)
(1.00625 0.00574079 3.07325e-16)
(1.00724 0.0043207 6.46214e-17)
(1.00785 0.00245747 -7.12327e-17)
(1.0079 -0.000515194 -9.01356e-17)
(0.995305 0.00120772 3.08872e-18)
(0.995566 0.00247758 -4.89798e-17)
(0.996021 0.00373118 4.6238e-17)
(0.996687 0.00492611 9.95757e-17)
(0.997555 0.00594237 -1.60195e-17)
(0.998576 0.0067418 -5.79973e-17)
(0.999774 0.00734728 -2.5708e-17)
(1.00108 0.00767389 8.20295e-17)
(1.00243 0.00767428 -9.18068e-17)
(1.00374 0.00733434 -1.84446e-16)
(1.005 0.00666175 3.26096e-16)
(1.00616 0.00564593 -5.90621e-16)
(1.00712 0.00425199 7.94456e-17)
(1.00771 0.00242252 2.09809e-16)
(1.00774 -0.00050159 4.53709e-17)
(0.995451 0.0011916 2.36849e-17)
(0.995706 0.00244577 -4.59083e-17)
(0.996156 0.00368027 -2.83107e-17)
(0.996814 0.00485638 4.20449e-17)
(0.997667 0.00585492 -1.1126e-16)
(0.99867 0.0066393 -2.60329e-16)
(0.999845 0.00723206 -2.18713e-17)
(1.00113 0.00755034 7.76104e-17)
(1.00244 0.00754846 2.03159e-16)
(1.00373 0.00721309 3.70247e-16)
(1.00495 0.00655187 -3.7237e-16)
(1.00608 0.00555443 -7.69415e-17)
(1.00701 0.00418624 3.39888e-16)
(1.00758 0.00238992 2.31692e-17)
(1.00759 -0.000486306 -1.97299e-17)
(0.995596 0.00117572 -4.99037e-18)
(0.995845 0.00241495 1.94512e-17)
(0.99629 0.0036309 -8.74373e-17)
(0.996938 0.00478857 -6.5914e-17)
(0.997778 0.00576993 2.36217e-16)
(0.998764 0.00653982 1.92017e-16)
(0.999916 0.00712033 5.35508e-17)
(1.00117 0.00743057 -5.63553e-17)
(1.00246 0.00742653 -2.36513e-16)
(1.00371 0.00709573 -9.79955e-17)
(1.0049 0.00644572 5.93632e-17)
(1.006 0.0054663 1.95608e-16)
(1.00691 0.00412333 3.48883e-16)
(1.00745 0.00235959 2.76582e-18)
(1.00745 -0.000469591 -6.12473e-17)
(0.995738 0.00116011 2.05233e-17)
(0.995982 0.0023849 1.20465e-16)
(0.996421 0.00358281 1.56795e-17)
(0.997061 0.00472271 1.90102e-16)
(0.997888 0.00568744 -3.48367e-16)
(0.998856 0.00644328 1.039e-16)
(0.999986 0.00701192 3.49105e-17)
(1.00121 0.00731443 -1.29471e-16)
(1.00247 0.00730842 3.24955e-16)
(1.00369 0.00698212 -3.98563e-16)
(1.00486 0.00634312 1.64722e-16)
(1.00593 0.0053814 1.38298e-17)
(1.00681 0.00406321 1.71222e-17)
(1.00733 0.00233146 -2.45204e-16)
(1.00731 -0.0004515 1.18524e-16)
(0.995879 0.00114472 -2.56952e-17)
(0.996117 0.00235582 3.07615e-17)
(0.996552 0.0035362 3.72126e-17)
(0.997182 0.0046587 -2.46739e-16)
(0.997997 0.00560733 2.80868e-16)
(0.998948 0.00634966 -1.48088e-16)
(1.00006 0.00690688 1.46474e-16)
(1.00126 0.00720193 1.06295e-16)
(1.00249 0.00719404 -3.3414e-16)
(1.00368 0.00687226 1.27742e-17)
(1.00481 0.00624408 2.58091e-17)
(1.00585 0.00529971 -1.9405e-16)
(1.00671 0.00400581 -5.3705e-16)
(1.00721 0.00230547 4.15753e-18)
(1.00717 -0.000431963 -7.70552e-17)
(0.996019 0.00112957 4.17171e-18)
(0.99625 0.00232749 -2.32822e-17)
(0.99668 0.00349084 7.09042e-17)
(0.997302 0.00459658 1.24793e-16)
(0.998104 0.00552964 8.73702e-17)
(0.999038 0.00625888 1.56618e-16)
(1.00012 0.00680502 -1.11002e-16)
(1.0013 0.00709293 -5.85796e-17)
(1.0025 0.00708333 -7.30039e-18)
(1.00367 0.00676602 1.58917e-16)
(1.00477 0.00614847 -7.58061e-18)
(1.00578 0.00522116 1.67484e-16)
(1.00661 0.00395115 -3.0525e-17)
(1.00709 0.00228168 1.97459e-16)
(1.00704 -0.000410945 -9.97555e-18)
(0.996157 0.00111462 -1.68018e-17)
(0.996381 0.00230007 -1.19631e-16)
(0.996807 0.00344691 -1.88221e-17)
(0.997421 0.00453626 -1.94189e-16)
(0.99821 0.00545424 -2.07617e-16)
(0.999128 0.00617093 -8.33601e-17)
(1.00019 0.00670642 -2.32798e-16)
(1.00135 0.00698743 -1.3707e-16)
(1.00252 0.00697623 -1.11099e-16)
(1.00366 0.00666338 7.70179e-17)
(1.00473 0.00605631 -3.12466e-16)
(1.00572 0.00514572 -1.47834e-16)
(1.00652 0.00389914 -1.45953e-17)
(1.00698 0.00226001 1.52256e-16)
(1.00691 -0.000388524 1.35995e-16)
(0.996293 0.00109991 4.58544e-17)
(0.996511 0.00227337 1.07966e-16)
(0.996932 0.00340419 -6.04043e-17)
(0.997538 0.00447778 1.75402e-16)
(0.998315 0.00538121 -2.26799e-17)
(0.999216 0.00608572 -1.89179e-16)
(1.00026 0.0066109 3.43913e-16)
(1.00139 0.0068853 8.72754e-17)
(1.00254 0.00687265 1.87285e-16)
(1.00365 0.0065642 1.79242e-16)
(1.0047 0.00596743 4.42053e-16)
(1.00565 0.00507328 1.93904e-16)
(1.00643 0.00384973 2.17005e-16)
(1.00687 0.0022404 -6.49377e-17)
(1.00678 -0.00036487 -1.62549e-16)
(0.996427 0.00108538 -3.0863e-17)
(0.99664 0.00224756 -9.43379e-18)
(0.997056 0.00336288 2.91468e-17)
(0.997653 0.00442105 -2.29287e-16)
(0.998418 0.00531041 -1.52286e-17)
(0.999304 0.00600325 9.04145e-18)
(1.00033 0.00651852 -2.98381e-16)
(1.00143 0.00678654 -7.04048e-18)
(1.00256 0.00677254 -2.16764e-16)
(1.00364 0.00646849 -3.94281e-16)
(1.00466 0.00588186 -3.31567e-16)
(1.00559 0.00500382 -1.98737e-17)
(1.00634 0.00380285 -4.11339e-16)
(1.00677 0.00222278 -7.60705e-17)
(1.00666 -0.000339786 6.3951e-17)
(0.99656 0.00107106 -4.24903e-19)
(0.996767 0.00222242 -2.22387e-17)
(0.997178 0.00332273 1.98098e-17)
(0.997767 0.0043661 2.41346e-16)
(0.998521 0.0052419 -1.03175e-16)
(0.999392 0.00592343 -4.0693e-18)
(1.0004 0.00642912 -3.49749e-17)
(1.00148 0.00669103 -1.27512e-16)
(1.00258 0.00667583 3.07037e-16)
(1.00363 0.00637612 8.98349e-17)
(1.00463 0.00579946 9.45898e-17)
(1.00553 0.00493725 5.29995e-17)
(1.00626 0.00375853 5.44844e-16)
(1.00666 0.00220722 1.34505e-16)
(1.00655 -0.000313381 1.24622e-16)
(0.996691 0.00105693 1.16805e-17)
(0.996893 0.00219813 -2.94461e-17)
(0.997299 0.00328395 5.26824e-18)
(0.99788 0.00431286 -5.41314e-17)
(0.998622 0.00517555 2.75532e-16)
(0.999478 0.00584626 2.89609e-16)
(1.00046 0.00634274 2.67536e-16)
(1.00152 0.00659878 1.56361e-16)
(1.0026 0.00658247 2.66783e-17)
(1.00363 0.00628709 1.27963e-16)
(1.0046 0.00572027 -5.24993e-17)
(1.00548 0.00487359 2.34577e-17)
(1.00618 0.00371669 -5.33278e-16)
(1.00657 0.00219365 5.87363e-17)
(1.00643 -0.000285555 -1.56451e-16)
(0.996821 0.00104299 1.21785e-17)
(0.997017 0.00217446 2.39835e-17)
(0.997418 0.0032463 1.88245e-17)
(0.997992 0.00426136 1.07676e-16)
(0.998723 0.00511144 -8.59123e-17)
(0.999564 0.00577168 -2.37841e-16)
(1.00053 0.00625925 -1.2481e-16)
(1.00157 0.00650966 -1.09582e-17)
(1.00262 0.00649236 -2.2586e-16)
(1.00363 0.00620127 -2.53362e-16)
(1.00457 0.00564411 -3.15776e-17)
(1.00542 0.0048127 -5.06505e-17)
(1.00611 0.00367726 9.78207e-18)
(1.00647 0.002182 -4.04293e-16)
(1.00633 -0.000256605 -4.39117e-17)
(0.996949 0.00102923 -5.20368e-17)
(0.99714 0.0021516 -6.57628e-17)
(0.997536 0.00320999 3.3803e-17)
(0.998103 0.00421152 -8.64482e-17)
(0.998822 0.00504945 -1.9839e-16)
(0.999649 0.00569967 -1.18713e-16)
(1.0006 0.0061787 8.96976e-17)
(1.00161 0.00642369 1.25257e-17)
(1.00264 0.00640549 3.06737e-16)
(1.00362 0.00611866 3.1644e-16)
(1.00454 0.00557103 2.12609e-17)
(1.00537 0.00475459 1.47898e-17)
(1.00604 0.00364019 6.31818e-16)
(1.00638 0.00217223 3.02726e-17)
(1.00622 -0.000226196 4.88323e-17)
(0.997076 0.00101567 6.15433e-17)
(0.997261 0.00212932 8.70859e-17)
(0.997653 0.00317477 -2.57644e-16)
(0.998212 0.00416338 -1.15849e-16)
(0.998921 0.00498963 1.87535e-16)
(0.999733 0.00563016 2.51088e-16)
(1.00066 0.00610092 9.18413e-17)
(1.00166 0.00634075 1.51927e-16)
(1.00266 0.00632177 2.95747e-17)
(1.00362 0.00603915 -3.13694e-16)
(1.00452 0.00550088 -2.12177e-16)
(1.00532 0.00469916 8.13047e-17)
(1.00597 0.00360549 -2.92619e-16)
(1.0063 0.00216438 5.02829e-16)
(1.00612 -0.000194606 1.2559e-16)
(0.997201 0.00100228 -3.02286e-17)
(0.997382 0.00210778 -7.11305e-17)
(0.997769 0.00314086 2.77305e-16)
(0.998321 0.00411687 2.34657e-16)
(0.999018 0.00493187 -5.58679e-17)
(0.999817 0.00556316 -8.82262e-17)
(1.00073 0.00602601 8.44785e-18)
(1.00171 0.00626087 -2.39771e-16)
(1.00269 0.00624117 -2.87198e-16)
(1.00363 0.00596275 8.82353e-17)
(1.0045 0.00543371 2.09531e-16)
(1.00528 0.00464644 -1.28728e-16)
(1.0059 0.0035731 -1.8134e-16)
(1.00621 0.00215842 -4.14642e-16)
(1.00602 -0.000161532 2.85301e-17)
(0.997324 0.000989092 1.58514e-17)
(0.997501 0.00208678 5.75803e-17)
(0.997884 0.00310801 -5.92885e-17)
(0.998428 0.00407203 -5.95456e-17)
(0.999115 0.00487625 1.02807e-16)
(0.999901 0.0054986 -1.65714e-16)
(1.0008 0.0059538 -1.87057e-16)
(1.00175 0.00618391 -1.18066e-17)
(1.00271 0.00616361 -4.31791e-17)
(1.00363 0.00588932 2.76298e-16)
(1.00448 0.00536936 2.31871e-16)
(1.00523 0.00459628 1.24706e-16)
(1.00584 0.00354296 6.86781e-17)
(1.00613 0.00215425 4.1766e-16)
(1.00593 -0.000127413 -1.96642e-16)
(0.997446 0.000976083 -5.00187e-17)
(0.99762 0.00206647 6.95668e-17)
(0.997997 0.00307643 -8.33559e-18)
(0.998535 0.00402879 -1.93629e-17)
(0.999211 0.00482265 -1.4686e-16)
(0.999984 0.00543649 1.84304e-16)
(1.00086 0.00588438 -3.00438e-18)
(1.0018 0.00610992 1.78141e-16)
(1.00274 0.00608907 1.41031e-17)
(1.00363 0.00581888 2.39788e-18)
(1.00446 0.00530787 -4.27953e-16)
(1.00519 0.00454871 -9.38136e-17)
(1.00578 0.00351503 3.01948e-16)
(1.00606 0.00215185 -1.8886e-16)
(1.00584 -9.17628e-05 1.00286e-16)
(0.997567 0.000963284 5.52073e-18)
(0.997737 0.00204663 -8.67936e-17)
(0.99811 0.00304589 -1.94672e-16)
(0.998641 0.00398719 -1.19851e-16)
(0.999307 0.00477114 -9.83303e-17)
(1.00007 0.00537676 7.05394e-18)
(1.00093 0.00581758 -5.72598e-17)
(1.00185 0.00603877 -1.06249e-16)
(1.00276 0.00601747 -6.02765e-17)
(1.00364 0.00575132 -1.55304e-16)
(1.00444 0.0052491 2.71608e-16)
(1.00516 0.00450361 3.92962e-17)
(1.00572 0.00348929 -2.63337e-16)
(1.00598 0.00215123 2.52241e-16)
(1.00575 -5.49759e-05 4.23336e-17)
(0.997686 0.000950676 3.24683e-17)
(0.997853 0.00202741 3.81613e-18)
(0.998221 0.00301657 1.78774e-16)
(0.998745 0.00394714 -6.72507e-17)
(0.999402 0.0047216 1.48908e-16)
(1.00015 0.00531942 1.32353e-16)
(1.001 0.00575349 4.88126e-17)
(1.00189 0.0059705 8.81334e-17)
(1.00279 0.0059488 -1.14014e-16)
(1.00364 0.00568666 -1.82418e-17)
(1.00443 0.0051931 -7.68011e-17)
(1.00512 0.00446103 -4.48898e-17)
(1.00567 0.00346572 1.32756e-16)
(1.00591 0.00215241 -1.02506e-17)
(1.00567 -1.661e-05 -1.1768e-16)
(0.997803 0.000938275 2.51218e-17)
(0.997968 0.00200856 -4.54304e-17)
(0.998332 0.0029882 1.26233e-16)
(0.998849 0.00390865 2.24628e-16)
(0.999496 0.00467408 7.24987e-17)
(1.00023 0.00526439 -2.65559e-16)
(1.00106 0.00569195 1.72566e-16)
(1.00194 0.00590498 1.34378e-16)
(1.00282 0.00588296 2.61502e-16)
(1.00365 0.00562476 1.64443e-16)
(1.00442 0.00513972 -3.19329e-16)
(1.00509 0.00442083 3.79669e-17)
(1.00561 0.00344422 -4.39569e-17)
(1.00585 0.00215526 -1.01177e-17)
(1.00559 2.2818e-05 4.31425e-17)
(0.997919 0.000926037 2.96937e-18)
(0.998083 0.00199014 -2.56628e-17)
(0.998441 0.00296087 -1.70741e-16)
(0.998952 0.00387157 -2.64432e-16)
(0.999589 0.0046284 9.32325e-17)
(1.00031 0.00521162 1.37859e-16)
(1.00113 0.00563301 -3.33372e-16)
(1.00199 0.00584223 -8.26945e-17)
(1.00285 0.00581994 2.95323e-16)
(1.00366 0.00556564 -1.23275e-16)
(1.00441 0.00508898 1.25238e-16)
(1.00506 0.00438303 1.31789e-16)
(1.00557 0.00342478 6.0838e-17)
(1.00578 0.00215979 -4.69859e-16)
(1.00552 6.38716e-05 -1.05095e-16)
(0.998034 0.000913909 -3.82422e-17)
(0.998196 0.00197178 8.34322e-17)
(0.99855 0.00293416 -6.06206e-18)
(0.999055 0.00383575 2.5876e-16)
(0.999682 0.00458448 -9.9629e-17)
(1.00039 0.00516095 -8.2363e-17)
(1.00119 0.00557643 8.27431e-17)
(1.00204 0.00578208 -4.25519e-16)
(1.00288 0.00575961 -3.14462e-16)
(1.00367 0.00550917 -1.35467e-17)
(1.0044 0.00504075 1.0407e-16)
(1.00503 0.0043475 1.4843e-16)
(1.00552 0.00340735 3.70442e-16)
(1.00572 0.00216596 3.78875e-16)
(1.00545 0.000106066 -5.28141e-17)
(0.998147 0.000901731 1.05418e-17)
(0.998309 0.00195328 -3.33573e-17)
(0.998658 0.00290785 -1.27177e-16)
(0.999156 0.00380073 -2.08116e-16)
(0.999774 0.00454188 -4.14968e-17)
(1.00047 0.00511213 2.88709e-16)
(1.00126 0.00552213 2.21949e-16)
(1.00209 0.00572446 6.82385e-16)
(1.00291 0.0057019 3.82977e-18)
(1.00369 0.00545532 -1.49643e-16)
(1.00439 0.00499506 1.25817e-17)
(1.00501 0.00431428 -2.61168e-16)
(1.00548 0.00339194 -3.65752e-16)
(1.00567 0.00217383 -3.26598e-16)
(1.00538 0.000149923 3.751e-16)
(0.998258 0.000889254 -7.93934e-18)
(0.99842 0.00193385 4.7757e-18)
(0.998765 0.00288099 1.05775e-16)
(0.999256 0.00376586 2.72459e-16)
(0.999865 0.0045001 -3.39261e-17)
(1.00055 0.00506466 -3.08197e-16)
(1.00133 0.00546963 -3.52599e-16)
(1.00214 0.00566899 -6.71317e-16)
(1.00294 0.00564657 4.29182e-16)
(1.0037 0.00540387 3.46521e-16)
(1.00439 0.00495167 -1.61037e-16)
(1.00498 0.00428318 -2.58079e-16)
(1.00544 0.00337839 -4.31359e-16)
(1.00561 0.00218323 -3.83025e-17)
(1.00532 0.000194787 -3.53796e-16)
(0.998368 0.000876023 -1.73302e-17)
(0.998531 0.00191267 5.43688e-17)
(0.99887 0.00285258 1.26244e-17)
(0.999355 0.0037299 -1.58562e-16)
(0.999955 0.00445801 1.51091e-17)
(1.00063 0.00501773 -2.2798e-18)
(1.00139 0.00541842 4.66333e-16)
(1.00219 0.00561533 2.72835e-16)
(1.00297 0.00559332 -6.57045e-16)
(1.00371 0.00535465 -2.88264e-16)
(1.00438 0.00491053 1.7576e-16)
(1.00496 0.00425416 4.08829e-20)
(1.0054 0.0033667 4.2994e-16)
(1.00557 0.00219417 4.31904e-16)
(1.00526 0.000241278 1.13373e-16)
(0.998476 0.000861378 2.29156e-17)
(0.998639 0.00188807 -3.91548e-18)
(0.998973 0.00282054 3.35703e-17)
(0.999451 0.00369103 -7.92389e-17)
(1.00004 0.00441405 -2.43542e-17)
(1.00071 0.00496999 1.46068e-16)
(1.00145 0.00536736 -1.9943e-16)
(1.00223 0.00556262 2.53308e-16)
(1.003 0.0055416 1.05945e-17)
(1.00373 0.00530723 -3.87731e-16)
(1.00438 0.00487129 -8.09224e-17)
(1.00494 0.00422698 5.05311e-16)
(1.00537 0.00335669 1.80274e-16)
(1.00552 0.0022065 -4.71838e-16)
(1.0052 0.000288902 -3.308e-17)
(0.998582 0.000844344 1.01977e-17)
(0.998746 0.0018581 -3.55861e-17)
(0.999073 0.00278233 -3.07015e-19)
(0.999544 0.00364641 8.48924e-17)
(1.00013 0.00436563 5.64207e-17)
(1.00078 0.0049194 -3.55802e-16)
(1.00151 0.00531498 -1.81282e-16)
(1.00228 0.00550981 -3.03329e-16)
(1.00303 0.00549061 -6.83826e-17)
(1.00374 0.00526112 7.29162e-16)
(1.00438 0.00483368 1.68374e-18)
(1.00493 0.00420148 -1.41759e-16)
(1.00534 0.00334829 -4.03159e-16)
(1.00548 0.00222029 -1.2028e-17)
(1.00514 0.000337834 -7.11345e-17)
(0.998685 0.000823672 -3.18752e-17)
(0.99885 0.00181977 2.73495e-17)
(0.999169 0.00273406 -8.91804e-17)
(0.999631 0.00359222 -6.33442e-17)
(1.0002 0.0043093 2.56587e-16)
(1.00085 0.00486298 6.14174e-16)
(1.00157 0.00525885 3.96082e-16)
(1.00232 0.00545506 1.70239e-16)
(1.00306 0.00543907 1.92875e-17)
(1.00376 0.00521537 3.23174e-17)
(1.00438 0.00479698 1.17118e-16)
(1.00491 0.00417716 -1.762e-16)
(1.00531 0.00334113 -2.08686e-17)
(1.00543 0.00223519 1.30687e-16)
(1.0051 0.000388077 2.7256e-16)
(0.998785 0.000797825 1.34077e-17)
(0.998949 0.00176976 -8.06632e-18)
(0.99926 0.00267121 1.6035e-16)
(0.999712 0.00352335 -1.08041e-16)
(1.00028 0.00424023 -1.63315e-16)
(1.00091 0.00479671 -3.96403e-16)
(1.00162 0.00519586 -1.97497e-16)
(1.00236 0.00539605 2.24336e-16)
(1.00309 0.00538526 4.46631e-17)
(1.00377 0.00516883 -2.72139e-16)
(1.00438 0.00476048 1.76584e-16)
(1.00489 0.00415356 -5.45256e-17)
(1.00528 0.00333494 1.63585e-16)
(1.0054 0.00225114 -4.81543e-17)
(1.00505 0.000439998 -9.98243e-17)
(0.998881 0.000765145 9.1791e-18)
(0.999043 0.00170403 -2.32773e-18)
(0.999343 0.00258812 -6.60179e-17)
(0.999784 0.00343375 2.63337e-16)
(1.00034 0.0041526 3.0666e-18)
(1.00096 0.0047154 1.81285e-16)
(1.00166 0.00512169 -9.37792e-17)
(1.00239 0.00532943 -4.91898e-16)
(1.0031 0.00532676 2.09547e-16)
(1.00377 0.00511974 2.43706e-17)
(1.00437 0.00472291 -5.53266e-16)
(1.00487 0.00412981 7.1701e-18)
(1.00525 0.00332912 -4.22648e-16)
(1.00536 0.00226774 2.26897e-16)
(1.005 0.000492507 5.28009e-17)
(0.998972 0.000724048 -4.03101e-17)
(0.999131 0.00161889 -6.65893e-17)
(0.999416 0.00247918 -5.88164e-17)
(0.999843 0.0033166 -3.22191e-17)
(1.00038 0.00403953 6.45171e-17)
(1.00099 0.00461288 -1.65002e-16)
(1.00168 0.00503127 6.48715e-17)
(1.0024 0.00525121 1.85791e-16)
(1.00311 0.00526054 -2.32166e-16)
(1.00377 0.00506596 9.63574e-17)
(1.00436 0.00468285 1.14128e-16)
(1.00485 0.00410501 9.74276e-17)
(1.00521 0.00332316 6.34051e-16)
(1.00532 0.00228477 3.78174e-17)
(1.00496 0.000546462 -1.60065e-16)
(0.999057 0.000673395 2.77338e-17)
(0.999209 0.00151109 3.5638e-17)
(0.999478 0.00233904 9.34008e-17)
(0.999887 0.00316531 -1.63098e-16)
(1.00041 0.00389395 -4.21235e-16)
(1.00101 0.00448234 -8.21849e-17)
(1.00169 0.00491857 6.51904e-18)
(1.0024 0.00515649 4.42142e-17)
(1.0031 0.00518284 1.96209e-17)
(1.00376 0.00500467 -3.22139e-16)
(1.00433 0.00463823 1.99005e-16)
(1.00482 0.00407768 -3.17503e-16)
(1.00518 0.00331603 -1.00819e-16)
(1.00528 0.00230141 -3.3462e-16)
(1.00491 0.000600535 -2.14189e-17)
(0.999135 0.00061289 2.44697e-17)
(0.999278 0.0013794 1.2671e-16)
(0.999526 0.00216442 -7.75332e-17)
(0.999914 0.00297449 -5.34115e-17)
(1.00042 0.00370927 7.89893e-17)
(1.00101 0.00431705 -4.97409e-17)
(1.00168 0.00477746 -8.01859e-17)
(1.00238 0.00504006 -1.99682e-16)
(1.00307 0.00508948 3.46514e-17)
(1.00373 0.00493273 5.14384e-16)
(1.0043 0.00458683 1.86163e-16)
(1.00478 0.0040463 4.60333e-16)
(1.00513 0.00330677 1.91034e-16)
(1.00523 0.00231708 2.78807e-16)
(1.00487 0.000654919 2.42961e-17)
(0.999204 0.000543541 -2.96999e-17)
(0.999335 0.00122504 -1.03586e-16)
(0.999559 0.00195493 -6.73517e-17)
(0.999922 0.00274158 1.14921e-16)
(1.0004 0.00348097 7.2191e-17)
(1.00097 0.00411132 6.27901e-17)
(1.00163 0.00460202 7.45323e-18)
(1.00233 0.00489651 3.40766e-16)
(1.00303 0.00497595 1.05386e-16)
(1.00368 0.00484656 -2.2207e-16)
(1.00425 0.0045259 -5.31699e-17)
(1.00473 0.00400887 -2.50709e-16)
(1.00508 0.003294 -2.25357e-16)
(1.00518 0.00233074 5.75735e-17)
(1.00482 0.000708749 -1.18915e-16)
(0.999263 0.000468009 2.42723e-17)
(0.99938 0.00105318 -4.12027e-17)
(0.999578 0.00171506 1.63658e-17)
(0.99991 0.00246824 1.63007e-16)
(1.00036 0.00320773 8.62211e-17)
(1.00092 0.00386174 4.15993e-16)
(1.00156 0.00438782 9.16468e-17)
(1.00226 0.00472124 -7.59633e-17)
(1.00295 0.004838 -2.70557e-16)
(1.0036 0.00474264 -3.51953e-16)
(1.00418 0.00445276 3.19782e-16)
(1.00466 0.00396347 1.22924e-17)
(1.00501 0.00327645 1.52458e-16)
(1.00511 0.00234174 1.79841e-16)
(1.00477 0.000761439 -6.30696e-17)
(0.999312 0.000390749 -3.89082e-17)
(0.999413 0.00087289 -3.46589e-17)
(0.999583 0.00145456 -3.95629e-17)
(0.999881 0.00216187 1.21789e-17)
(1.0003 0.00289318 -1.39002e-17)
(1.00083 0.00356841 -2.83377e-16)
(1.00146 0.00413255 -2.45618e-16)
(1.00215 0.00451079 1.63416e-16)
(1.00284 0.00467201 8.65782e-17)
(1.0035 0.0046176 5.37422e-16)
(1.00408 0.00436454 -3.98138e-16)
(1.00456 0.00390782 1.11437e-16)
(1.00492 0.00325242 2.29491e-17)
(1.00503 0.00234867 -6.9522e-17)
(1.00471 0.000811729 3.10404e-16)
(0.999352 0.000317851 3.17823e-17)
(0.999437 0.000697559 7.16058e-17)
(0.999578 0.00118931 2.28985e-16)
(0.999838 0.00183613 -3.24746e-16)
(1.00022 0.00254653 2.65405e-17)
(1.00072 0.00323603 -2.32633e-16)
(1.00133 0.00383738 2.96342e-17)
(1.00201 0.00426408 -4.54428e-16)
(1.0027 0.00447571 3.03207e-16)
(1.00336 0.00446893 -3.51061e-16)
(1.00395 0.00425894 5.16455e-16)
(1.00445 0.00384003 -6.02669e-16)
(1.00482 0.00322055 -2.99827e-16)
(1.00493 0.00235067 2.16522e-16)
(1.00463 0.000858958 -2.04739e-16)
(0.999383 0.000256355 1.82871e-17)
(0.999454 0.000543084 4.83104e-17)
(0.999568 0.000939686 -2.06085e-16)
(0.999789 0.00151071 1.91516e-16)
(1.00013 0.00218316 1.56336e-16)
(1.00059 0.00287443 2.95749e-16)
(1.00117 0.00350724 -5.30663e-17)
(1.00184 0.00398259 -3.76313e-17)
(1.00253 0.00424858 -1.18078e-16)
(1.0032 0.00429508 7.62597e-17)
(1.00379 0.00413407 -6.89274e-16)
(1.0043 0.0037583 5.34858e-16)
(1.00468 0.00317935 -5.07833e-17)
(1.00481 0.00234643 -5.09532e-16)
(1.00454 0.000902015 2.54925e-16)
(0.999408 0.000213288 -4.37017e-17)
(0.999467 0.000426317 7.34508e-17)
(0.999559 0.000728898 1.06307e-16)
(0.99974 0.0012095 1.15868e-16)
(1.00003 0.00182336 -1.39648e-16)
(1.00044 0.0024984 -4.04447e-17)
(1.00099 0.00315143 8.45619e-17)
(1.00164 0.00367117 9.41657e-18)
(1.00232 0.00399241 3.64033e-16)
(1.003 0.00409612 2.14831e-16)
(1.0036 0.0039892 3.82712e-16)
(1.00412 0.00366165 6.57951e-17)
(1.00452 0.00312796 8.21199e-17)
(1.00467 0.00233544 -3.52522e-16)
(1.00443 0.000940038 -3.41726e-16)
(0.999429 0.000194174 9.94671e-18)
(0.999481 0.000361355 -1.18964e-17)
(0.999556 0.000578703 -4.26392e-17)
(0.9997 0.000957646 3.69695e-17)
(0.999939 0.00149063 -1.21519e-16)
(1.0003 0.00212656 9.29889e-17)
(1.00081 0.00278278 3.12747e-16)
(1.00142 0.00333761 4.41718e-16)
(1.00209 0.00371129 -1.0778e-16)
(1.00277 0.00387364 -2.56684e-16)
(1.00338 0.00382448 -1.38916e-16)
(1.00392 0.00354948 2.133e-16)
(1.00433 0.00306557 -2.4526e-16)
(1.00449 0.00231664 7.97215e-16)
(1.00431 0.000971763 3.50999e-16)
(0.99945 0.000201662 3.50352e-17)
(0.9995 0.000356712 -1.18057e-16)
(0.999564 0.000505631 1.28923e-16)
(0.999676 0.000777207 -1.43134e-16)
(0.999863 0.00120821 -1.08697e-16)
(1.00016 0.00177942 -9.20264e-17)
(1.00062 0.00241706 -3.71175e-17)
(1.00119 0.00299261 -1.21137e-16)
(1.00184 0.00341168 -2.18864e-16)
(1.00251 0.00363119 2.28201e-16)
(1.00313 0.00364155 -2.88892e-16)
(1.00368 0.00342239 -2.54191e-16)
(1.00411 0.00299227 1.73633e-16)
(1.00429 0.00229005 -1.79882e-16)
(1.00415 0.000996765 -7.23214e-17)
(0.999474 0.000234301 -5.28251e-17)
(0.999526 0.000411821 -5.56771e-17)
(0.999587 0.000516124 -9.80513e-17)
(0.999674 0.000682955 2.40461e-17)
(0.99981 0.000995652 5.6039e-17)
(1.00004 0.00147669 -9.41838e-17)
(1.00044 0.00207088 -3.04412e-17)
(1.00097 0.00264847 -3.75251e-17)
(1.00158 0.00310186 2.83378e-17)
(1.00224 0.00337377 1.10524e-16)
(1.00286 0.00344314 4.95724e-16)
(1.00342 0.00328165 1.97105e-16)
(1.00387 0.0029085 -1.64066e-16)
(1.00407 0.00225565 3.18371e-16)
(1.00397 0.00101451 5.25437e-17)
(0.999503 0.000285833 2.48299e-17)
(0.999562 0.000515597 8.90596e-17)
(0.999625 0.000603857 3.22949e-17)
(0.999693 0.000678258 -3.46202e-17)
(0.999785 0.000864895 3.33774e-16)
(0.999953 0.00123435 -7.1145e-17)
(1.00028 0.00175995 -3.15308e-16)
(1.00075 0.00231809 -1.52397e-16)
(1.00132 0.00279118 1.72466e-16)
(1.00196 0.00310765 -4.54798e-16)
(1.00257 0.00323318 -2.3696e-16)
(1.00314 0.00312957 -6.7238e-17)
(1.0036 0.00281564 2.88044e-16)
(1.00381 0.00221418 -1.55165e-16)
(1.00376 0.00102479 -1.32227e-16)
(0.999541 0.000345907 -2.95486e-17)
(0.999606 0.00064685 -2.46281e-17)
(0.999675 0.000748648 -1.47245e-17)
(0.999733 0.00075325 -1.74139e-16)
(0.999787 0.000817821 -4.18763e-18)
(0.999894 0.00106221 1.2162e-16)
(1.00015 0.00149695 1.88422e-17)
(1.00055 0.00201342 2.87985e-16)
(1.00107 0.00248918 -1.04016e-16)
(1.00168 0.00283962 4.03875e-16)
(1.00228 0.00301611 -4.99572e-17)
(1.00284 0.00296886 7.77054e-18)
(1.00331 0.00271522 -1.53831e-16)
(1.00354 0.0021664 -3.57922e-16)
(1.00354 0.0010276 1.70415e-16)
(0.999585 0.000401093 6.67104e-18)
(0.999656 0.000777071 1.11382e-16)
(0.999731 0.00091895 -9.86684e-18)
(0.999787 0.000885117 1.26825e-16)
(0.999815 0.000845091 -1.64841e-16)
(0.999867 0.00096219 5.69947e-17)
(1.00005 0.00129 -5.45008e-17)
(1.00037 0.0017442 -2.85712e-16)
(1.00083 0.00220461 8.12527e-17)
(1.0014 0.00257651 -2.88856e-16)
(1.00198 0.00279681 8.72111e-17)
(1.00253 0.00280278 -4.27436e-16)
(1.00301 0.00260943 -4.40416e-17)
(1.00324 0.00211371 6.94374e-17)
(1.00328 0.00102372 -1.31558e-16)
(0.999635 0.000437655 -6.17282e-18)
(0.999707 0.000875767 -1.68724e-16)
(0.999788 0.00107679 1.4472e-16)
(0.999846 0.00104157 5.49917e-17)
(0.99986 0.00092754 -7.23661e-17)
(0.99987 0.000928169 -8.53319e-17)
(0.999981 0.00114172 1.79012e-16)
(1.00023 0.00151683 3.48113e-16)
(1.00062 0.00194447 -3.89259e-16)
(1.00114 0.00232415 -7.30832e-17)
(1.00169 0.00257955 -3.95638e-16)
(1.00223 0.0026342 7.48207e-16)
(1.0027 0.00250017 -8.37799e-17)
(1.00294 0.00205755 -4.94212e-17)
(1.00301 0.00101462 1.53532e-16)
(0.999688 0.000444484 4.01172e-17)
(0.999756 0.000917323 9.33453e-18)
(0.999837 0.00118605 -3.76177e-16)
(0.999903 0.00118684 -1.3084e-17)
(0.999915 0.00103919 -1.28761e-16)
(0.999898 0.000946997 2.33712e-16)
(0.999951 0.00104915 -1.03997e-16)
(1.00013 0.00133422 -1.95146e-16)
(1.00045 0.0017135 3.20456e-16)
(1.0009 0.00208711 -8.50857e-17)
(1.00141 0.00236774 7.58684e-16)
(1.00193 0.00246535 -7.72829e-16)
(1.00239 0.00238875 2.41648e-16)
(1.00264 0.00199851 -8.83308e-17)
(1.00273 0.00100007 -1.5257e-16)
(0.999739 0.000415041 -3.3218e-17)
(0.999797 0.000886203 -2.35484e-17)
(0.999875 0.00121916 3.1775e-16)
(0.99995 0.00128853 -2.06523e-16)
(0.999973 0.00115255 1.42361e-16)
(0.999944 0.00100139 -2.72027e-16)
(0.999951 0.00100499 -5.89564e-17)
(1.00006 0.00119562 4.82919e-16)
(1.0003 0.00151416 2.30858e-16)
(1.0007 0.0018684 3.28793e-16)
(1.00116 0.0021637 -5.59754e-16)
(1.00165 0.0022975 6.32808e-16)
(1.0021 0.00227552 -1.62487e-16)
(1.00233 0.00193652 -1.62761e-16)
(1.00243 0.000980607 -1.15223e-16)
(0.999784 0.000351082 -3.35036e-18)
(0.99983 0.000783589 1.03237e-16)
(0.9999 0.00116563 -1.04521e-16)
(0.999985 0.00132479 2.8369e-16)
(1.00003 0.00124354 9.0373e-17)
(1 0.00107341 1.64775e-16)
(0.999978 0.000999967 2.94444e-16)
(1.00002 0.00109877 -6.66896e-16)
(1.0002 0.00134778 1.50206e-16)
(1.00053 0.00167045 -2.88823e-17)
(1.00093 0.00196927 4.57479e-16)
(1.00139 0.00213135 -2.93957e-16)
(1.00181 0.00215997 -1.12966e-16)
(1.00204 0.00187016 -4.8594e-17)
(1.00213 0.000954642 -1.36353e-16)
(0.999821 0.000261044 2.16533e-17)
(0.999853 0.000625702 5.58248e-17)
(0.999913 0.00103335 2.2628e-16)
(1 0.00128907 -1.9816e-16)
(1.00007 0.00129688 -2.07315e-16)
(1.00006 0.00114813 1.05906e-16)
(1.00002 0.00102526 2.20757e-16)
(1.00002 0.00104135 4.07546e-16)
(1.00012 0.00121651 -5.57091e-16)
(1.00039 0.00149706 1.20174e-17)
(1.00074 0.00178788 -1.58494e-16)
(1.00116 0.00196896 2.34819e-17)
(1.00155 0.00204222 -2.10181e-16)
(1.00176 0.00179823 5.2958e-17)
(1.00184 0.000921078 6.12744e-16)
(0.999848 0.000160952 1.6351e-17)
(0.999868 0.000443799 -8.15088e-17)
(0.999917 0.000849042 -3.3832e-16)
(1.00001 0.00119145 7.63634e-17)
(1.0001 0.0013087 3.40882e-16)
(1.00011 0.00121723 2.76026e-17)
(1.00007 0.00107526 6.54515e-17)
(1.00003 0.00102323 -6.46932e-18)
(1.00008 0.00112459 7.17027e-16)
(1.00028 0.00135482 -1.8324e-16)
(1.00057 0.00162639 -5.16646e-16)
(1.00096 0.00181592 -9.6601e-17)
(1.00131 0.00192528 -5.46432e-17)
(1.0015 0.00172029 2.27403e-16)
(1.00155 0.000875964 -3.73177e-16)
(0.999866 7.16884e-05 -2.63487e-17)
(0.999879 0.000276446 1.17978e-17)
(0.999915 0.000652229 6.38713e-17)
(1 0.00105647 6.81135e-17)
(1.0001 0.00128628 -1.08522e-16)
(1.00014 0.00127915 -6.93762e-16)
(1.0001 0.00114899 -1.98876e-16)
(1.00004 0.0010483 -3.53773e-16)
(1.00004 0.00108091 -5.83799e-16)
(1.00019 0.00125576 6.43707e-16)
(1.00043 0.00149796 3.65867e-16)
(1.00078 0.00168491 -3.84552e-16)
(1.0011 0.00181927 1.03164e-15)
(1.00126 0.00164267 2.06357e-16)
(1.00129 0.000820871 6.63241e-17)
(0.999877 1.10679e-05 -3.58023e-17)
(0.999886 0.000157655 2.44662e-17)
(0.999907 0.000483449 -3.58615e-17)
(0.999971 0.000915636 -1.79199e-16)
(1.00007 0.00124484 4.96322e-18)
(1.00012 0.00133683 1.91353e-16)
(1.0001 0.00124574 3.19681e-16)
(1.00003 0.00111897 4.7008e-16)
(1 0.00109337 2.17105e-16)
(1.00011 0.00121287 -2.06598e-16)
(1.0003 0.00141924 2.71011e-17)
(1.00062 0.00159467 2.26757e-16)
(1.0009 0.00174261 -1.14909e-16)
(1.00105 0.00158078 -5.48587e-16)
(1.00106 0.000764297 2.04761e-17)
(0.999885 -5.19256e-06 -5.86712e-18)
(0.999892 0.000112336 -5.94922e-17)
(0.999893 0.000375929 2.53335e-16)
(0.99992 0.000797883 1.0776e-16)
(0.999998 0.00119898 -5.21318e-17)
(1.00006 0.00139114 3.59232e-16)
(1.00006 0.00135977 -7.22188e-16)
(0.999993 0.00122949 -4.51378e-16)
(0.999946 0.00116022 -3.84957e-16)
(1.00002 0.00122996 -5.43941e-16)
(1.00017 0.00140006 3.31242e-16)
(1.00047 0.00156126 -1.45651e-16)
(1.00071 0.00171627 -1.04755e-15)
(1.00085 0.00155913 4.66746e-16)
(1.00085 0.000730137 1.05798e-16)
(0.999894 2.44386e-05 1.05822e-16)
(0.999898 0.000141098 7.50297e-17)
(0.999873 0.000342047 -1.80747e-16)
(0.999855 0.0007197 -7.83338e-17)
(0.999898 0.00115417 4.86517e-18)
(0.999959 0.00143099 2.99253e-16)
(0.999974 0.00146865 4.20978e-16)
(0.999927 0.00135447 2.98186e-16)
(0.999878 0.00125845 -4.88546e-16)
(0.999928 0.00128903 6.71065e-16)
(1.00005 0.00142904 -2.21601e-16)
(1.00032 0.00158171 1.72243e-16)
(1.00053 0.00174759 7.84546e-16)
(1.00066 0.00159692 -3.37782e-17)
(1.00064 0.000748748 1.11175e-17)
(0.999906 8.852e-05 -7.35561e-17)
(0.999907 0.000223704 -1.14103e-16)
(0.999855 0.000369884 -8.97728e-18)
(0.999791 0.000678565 9.76016e-17)
(0.999799 0.00110364 1.26507e-16)
(0.999854 0.00143395 -1.55161e-16)
(0.999892 0.00153422 -1.63301e-16)
(0.999868 0.00144701 2.17128e-16)
(0.999824 0.00133967 1.01548e-15)
(0.999857 0.00134437 -9.11247e-17)
(0.999947 0.00146519 -1.47377e-16)
(1.0002 0.00162212 2.80695e-16)
(1.00036 0.00181369 -1.1798e-17)
(1.00049 0.00168865 2.33749e-16)
(1.00041 0.000845145 4.1795e-17)
(0.999924 0.000169687 -2.66328e-17)
(0.999919 0.000327327 4.8051e-17)
(0.999849 0.000431074 2.16834e-17)
(0.999756 0.000655563 -4.23393e-17)
(0.999739 0.00102797 -1.36624e-16)
(0.999795 0.00137015 -2.24599e-17)
(0.999856 0.00151392 -4.75568e-16)
(0.999858 0.00145551 -6.4963e-16)
(0.999822 0.00134732 -8.23149e-16)
(0.999835 0.001337 -4.98152e-16)
(0.999889 0.00144833 2.83901e-16)
(1.00011 0.00162222 -3.25192e-16)
(1.00021 0.00185784 -2.40876e-16)
(1.00034 0.00178864 -8.95555e-16)
(1.00011 0.0010136 2.91657e-16)
(0.999945 0.000236688 9.10662e-17)
(0.999936 0.000407946 7.2574e-17)
(0.999863 0.000486436 -2.81868e-17)
(0.999769 0.000627495 -1.6771e-16)
(0.99975 0.000913867 -1.57915e-16)
(0.999813 0.00122504 -6.33441e-16)
(0.999893 0.00138816 4.42708e-16)
(0.999914 0.00135729 1.25548e-17)
(0.999882 0.00125741 7.69532e-16)
(0.999875 0.00123996 7.7779e-16)
(0.99989 0.00134445 -2.23371e-16)
(1.00007 0.00153703 -7.93189e-17)
(1.0001 0.00182141 3.78946e-16)
(1.00022 0.00182722 6.84459e-16)
(0.999775 0.00120371 -5.16547e-16)
(0.999966 0.000272282 -2.30645e-18)
(0.999954 0.000441811 -1.21146e-16)
(0.999894 0.000508818 -2.77976e-17)
(0.999824 0.000578896 1.95936e-16)
(0.999822 0.000766684 -1.44626e-16)
(0.999893 0.00102132 2.30048e-16)
(0.999978 0.00118935 1.53979e-16)
(1.00001 0.00119037 1.03537e-17)
(0.999969 0.00111239 1.39955e-16)
(0.999942 0.00109736 1.94819e-17)
(0.999925 0.00119364 -4.08853e-16)
(1.00008 0.00139418 2.60398e-16)
(1.00003 0.00170755 -1.64429e-16)
(1.00014 0.00177473 -8.02581e-16)
(0.999445 0.00134653 4.76952e-16)
(0.999983 0.000265963 -3.07419e-17)
(0.999967 0.000419112 -2.28692e-17)
(0.999926 0.000490431 -4.80518e-17)
(0.99989 0.000514356 -1.47078e-16)
(0.999904 0.000614879 1.12857e-16)
(0.999965 0.000816084 6.84854e-18)
(1.00003 0.000998639 1.00223e-16)
(1.00005 0.00104959 6.71549e-16)
(1 0.00101279 7.48748e-17)
(0.999966 0.00101115 -3.15536e-16)
(0.999934 0.00109793 4.35785e-16)
(1.00007 0.00129355 -5.16947e-17)
(0.999949 0.00160488 -5.09915e-18)
(1.00009 0.00169949 1.88273e-16)
(0.999206 0.00144073 -3.83226e-16)
(0.999995 0.000213492 -4.98044e-17)
(0.999971 0.000344601 5.90481e-17)
(0.999941 0.000435309 9.96208e-17)
(0.999926 0.000448991 2.69951e-16)
(0.999937 0.00049838 7.72047e-17)
(0.999958 0.000672919 3.3152e-16)
(0.999975 0.000892825 -1.40179e-16)
(0.999964 0.00101553 -6.35387e-16)
(0.999922 0.00103799 -5.63955e-16)
(0.999893 0.00105864 -7.96148e-16)
(0.999872 0.00113587 -3.36175e-16)
(1.00001 0.00131953 -2.43986e-19)
(0.99984 0.00160926 -2.94514e-16)
(1.00007 0.00171662 1.01348e-15)
(0.999055 0.00158457 -1.30447e-16)
(1 0.00014376 2.8507e-17)
(0.999966 0.000251865 3.19937e-17)
(0.999935 0.000362652 1.3173e-16)
(0.999919 0.000390155 -1.42998e-16)
(0.999902 0.000427874 -7.24558e-17)
(0.999863 0.000606791 -4.14119e-16)
(0.999822 0.000875721 3.20352e-16)
(0.99979 0.00106724 -7.1616e-17)
(0.999762 0.0011405 -3.55382e-16)
(0.99976 0.00117525 7.37095e-16)
(0.999768 0.00123885 1.23377e-16)
(0.999912 0.00140986 6.0401e-17)
(0.999709 0.00168056 4.0827e-16)
(1.00012 0.00182695 -1.19004e-15)
(0.998896 0.00191249 4.40061e-16)
(1 6.24934e-05 4.82229e-17)
(0.999959 0.000151218 9.11161e-17)
(0.99992 0.000282045 -1.13241e-16)
(0.999891 0.000337047 4.61893e-17)
(0.999841 0.000383779 3.34545e-16)
(0.999748 0.000572563 4.32271e-16)
(0.999668 0.000868374 -8.54805e-16)
(0.999644 0.00108434 3.25597e-16)
(0.999657 0.00115654 9.21666e-16)
(0.999696 0.0011622 -3.79375e-16)
(0.999732 0.00118637 -1.246e-16)
(0.999868 0.00133252 -3.57901e-17)
(0.999636 0.00158514 -2.57163e-16)
(1.00028 0.0018061 6.01099e-16)
(0.998628 0.00226063 -3.97074e-16)
(0.999997 -8.6284e-06 3.72894e-18)
(0.999952 6.33088e-05 -1.62985e-16)
(0.9999 0.000199055 -1.58566e-16)
(0.999851 0.000282163 7.06642e-17)
(0.999773 0.000349693 -2.72969e-16)
(0.999651 0.00053801 1.28905e-16)
(0.999567 0.00081875 3.47335e-16)
(0.999572 0.00100848 -2.52274e-16)
(0.999632 0.00104316 -9.89062e-16)
(0.999707 0.00100525 3.31527e-16)
(0.999761 0.000990454 -5.71017e-17)
(0.999872 0.00111301 2.79357e-16)
(0.999641 0.00132758 4.28243e-16)
(1.00056 0.00162113 -2.48974e-16)
(0.998307 0.00228649 -1.96161e-16)
(0.999994 -3.58207e-05 -2.11163e-17)
(0.999941 1.90341e-05 9.50174e-17)
(0.999865 0.000140312 3.83447e-17)
(0.999778 0.000240042 -5.06658e-17)
(0.999664 0.00033669 -1.03717e-16)
(0.999523 0.000529675 7.5423e-17)
(0.999439 0.000787189 -7.8202e-17)
(0.999456 0.000958747 -7.31855e-17)
(0.999524 0.00100597 4.51329e-16)
(0.999595 0.00101371 -2.53176e-16)
(0.999644 0.00106543 3.51264e-16)
(0.999728 0.00126521 5.23792e-16)
(0.999575 0.00149568 -3.37017e-16)
(1.00075 0.00192885 2.96686e-16)
(0.997467 0.00289663 -4.23748e-17)
(0.999992 -5.04797e-05 -2.84028e-17)
(0.999935 -1.13639e-05 -7.65957e-17)
(0.999839 8.83489e-05 1.89897e-16)
(0.999721 0.00019626 -1.12676e-16)
(0.999582 0.000313165 -7.95395e-17)
(0.999429 0.000500596 -5.79514e-16)
(0.999332 0.00073843 1.06172e-16)
(0.999323 0.000925739 1.40278e-16)
(0.999359 0.00104449 -2.76036e-16)
(0.999398 0.001164 -4.61635e-16)
(0.999428 0.00134635 -1.72806e-16)
(0.999481 0.00168446 -4.06343e-16)
(0.99945 0.00201728 -2.89745e-16)
(1.0006 0.00273039 -5.98719e-16)
(0.995047 0.00551416 7.1047e-16)
(0.999995 -2.91749e-05 3.05236e-17)
(0.999967 -1.3549e-05 6.84526e-18)
(0.999913 2.75016e-05 -1.62787e-16)
(0.999843 8.59525e-05 1.68978e-16)
(0.999765 0.000154655 3.99391e-16)
(0.999683 0.000250154 1.82158e-16)
(0.999622 0.000371159 1.42968e-16)
(0.9996 0.000483672 3.74918e-16)
(0.999605 0.0005785 1.28391e-16)
(0.999617 0.000678886 1.01343e-15)
(0.999631 0.000811442 5.05922e-16)
(0.999651 0.00102761 -2.13957e-16)
(0.999682 0.00124421 -2.1056e-16)
(1.00017 0.00180968 7.58039e-16)
(0.994306 0.00496725 -4.9046e-16)
)
;
boundaryField
{
airfoil
{
type noSlip;
}
farBoundaries
{
type slip;
}
inlet
{
type freestream;
freestreamValue uniform (1 0 0);
value uniform (1 0 0);
}
outlet
{
type freestream;
freestreamValue uniform (1 0 0);
value nonuniform List<vector>
500
(
(0.902511 -0.000941368 0)
(0.896745 -0.000449816 0)
(0.898578 8.52615e-05 0)
(0.907879 0.000632381 0)
(0.922718 0.00113812 0)
(0.940062 0.00154716 0)
(0.956905 0.00183087 0)
(0.971176 0.00198867 0)
(0.982032 0.00204519 0)
(0.989606 0.00203136 0)
(0.994548 0.0019784 0)
(0.997615 0.00190414 0)
(0.999456 0.00182124 0)
(1.00054 0.00173147 0)
(1.00117 0.00163794 0)
(1.00153 0.00153869 0)
(1.00172 0.00143606 0)
(1.00182 0.00132811 0)
(1.00185 0.00121708 0)
(1.00183 0.00110148 0)
(1.00178 0.000983718 0)
(1.00171 0.000862343 0)
(1.00162 0.00073923 0)
(1.00152 0.000613338 0)
(1.00141 0.000486812 0)
(1.00129 0.000359054 0)
(1.00117 0.000231736 0)
(1.00104 0.000104512 0)
(1.00092 -2.11818e-05 0)
(1.00079 -0.000145167 0)
(1.00067 -0.000266394 0)
(1.00055 -0.000384705 0)
(1.00043 -0.00049976 0)
(1.00031 -0.000611129 0)
(1.0002 -0.000718757 0)
(1.0001 -0.00082203 0)
(0.999996 -0.000921392 0)
(0.999899 -0.00101566 0)
(0.999809 -0.00110529 0)
(0.999722 -0.00118916 0)
(0.999642 -0.00126842 0)
(0.999565 -0.00134148 0)
(0.999494 -0.00140919 0)
(0.999427 -0.00146998 0)
(0.999367 -0.00152528 0)
(0.99931 -0.00157324 0)
(0.999259 -0.00161512 0)
(0.999213 -0.00164938 0)
(0.999173 -0.00167771 0)
(0.999136 -0.00169841 0)
(0.999106 -0.00171286 0)
(0.99908 -0.00171996 0)
(0.999059 -0.00172145 0)
(0.999041 -0.00171619 0)
(0.999028 -0.00170519 0)
(0.999019 -0.00168778 0)
(0.999014 -0.0016651 0)
(0.999012 -0.00163671 0)
(0.999015 -0.00160311 0)
(0.99902 -0.00156438 0)
(0.999029 -0.00152087 0)
(0.999041 -0.00147289 0)
(0.999056 -0.00142013 0)
(0.999073 -0.00136346 0)
(0.999093 -0.00130226 0)
(0.999116 -0.00123772 0)
(0.99914 -0.00116869 0)
(0.999167 -0.0010969 0)
(0.999196 -0.00102073 0)
(0.999227 -0.000942308 0)
(0.999259 -0.000859464 0)
(0.999294 -0.000774752 0)
(0.999329 -0.000685831 0)
(0.999367 -0.000595594 0)
(0.999405 -0.000501618 0)
(0.999444 -0.000407394 0)
(0.999485 -0.000309759 0)
(0.999526 -0.000212734 0)
(0.999568 -0.000113001 0)
(0.999611 -1.46196e-05 0)
(0.999653 8.65105e-05 0)
(0.999696 0.000185865 0)
(0.999739 0.000287445 0)
(0.999783 0.000386745 0)
(0.999826 0.000488515 0)
(0.99987 0.000587607 0)
(0.999913 0.000688523 0)
(0.999957 0.000786057 0)
(1 0.000885375 0)
(1.00004 0.000980667 0)
(1.00009 0.0010769 0)
(1.00013 0.00116867 0)
(1.00017 0.00126222 0)
(1.00021 0.0013512 0)
(1.00025 0.00144076 0)
(1.00029 0.00152487 0)
(1.00032 0.00161013 0)
(1.00036 0.00169014 0)
(1.0004 0.00177078 0)
(1.00043 0.00184583 0)
(1.00046 0.00192224 0)
(1.0005 0.0019929 0)
(1.00053 0.00206407 0)
(1.00056 0.00212917 0)
(1.00059 0.00219546 0)
(1.00062 0.00225541 0)
(1.00065 0.00231543 0)
(1.00067 0.00236845 0)
(1.0007 0.00242209 0)
(1.00072 0.00246845 0)
(1.00074 0.00251425 0)
(1.00076 0.00255231 0)
(1.00078 0.00259072 0)
(1.00079 0.00262126 0)
(1.00081 0.00265138 0)
(1.00082 0.00267347 0)
(1.00084 0.00269619 0)
(1.00085 0.00271098 0)
(1.00086 0.00272583 0)
(1.00087 0.00273295 0)
(1.00088 0.00274136 0)
(1.00088 0.00274225 0)
(1.00089 0.00274365 0)
(1.0009 0.00273733 0)
(1.0009 0.00273253 0)
(1.00091 0.00271997 0)
(1.00091 0.00270804 0)
(1.00091 0.00268844 0)
(1.00092 0.00267071 0)
(1.00092 0.00264558 0)
(1.00092 0.00262164 0)
(1.00092 0.00259042 0)
(1.00093 0.00256165 0)
(1.00093 0.00252541 0)
(1.00093 0.00249088 0)
(1.00093 0.00244929 0)
(1.00093 0.00241036 0)
(1.00093 0.00236443 0)
(1.00093 0.00232037 0)
(1.00093 0.00226934 0)
(1.00093 0.00222148 0)
(1.00092 0.00216725 0)
(1.00093 0.00211601 0)
(1.00092 0.00205891 0)
(1.00092 0.00200607 0)
(1.00092 0.00194783 0)
(1.00092 0.00189318 0)
(1.00092 0.00183308 0)
(1.00092 0.00177738 0)
(1.00092 0.00171646 0)
(1.00092 0.00165933 0)
(1.00092 0.00159724 0)
(1.00092 0.00153999 0)
(1.00092 0.00147838 0)
(1.00092 0.00142113 0)
(1.00092 0.00135975 0)
(1.00093 0.00130337 0)
(1.00093 0.00124293 0)
(1.00093 0.00118644 0)
(1.00093 0.00112578 0)
(1.00094 0.00106965 0)
(1.00094 0.00100981 0)
(1.00095 0.000953955 0)
(1.00095 0.000894559 0)
(1.00096 0.000839758 0)
(1.00096 0.000781876 0)
(1.00097 0.00072809 0)
(1.00097 0.000671378 0)
(1.00098 0.000619144 0)
(1.00099 0.000564198 0)
(1.00099 0.000512974 0)
(1.001 0.000459008 0)
(1.00101 0.000409109 0)
(1.00102 0.000357027 0)
(1.00103 0.000308759 0)
(1.00104 0.000258665 0)
(1.00105 0.000212786 0)
(1.00106 0.000165739 0)
(1.00107 0.000122605 0)
(1.00108 7.84665e-05 0)
(1.0011 3.81954e-05 0)
(1.00111 -2.72931e-06 0)
(1.00112 -4.02198e-05 0)
(1.00113 -7.82476e-05 0)
(1.00115 -0.000112705 0)
(1.00116 -0.00014725 0)
(1.00118 -0.000178525 0)
(1.00119 -0.000209905 0)
(1.00121 -0.000238071 0)
(1.00123 -0.000266092 0)
(1.00125 -0.000291216 0)
(1.00126 -0.000316362 0)
(1.00128 -0.000338599 0)
(1.0013 -0.000360759 0)
(1.00132 -0.000380322 0)
(1.00134 -0.000399994 0)
(1.00136 -0.000416928 0)
(1.00138 -0.000433572 0)
(1.0014 -0.000447537 0)
(1.00142 -0.000461282 0)
(1.00145 -0.000472093 0)
(1.00147 -0.000482322 0)
(1.00149 -0.000489909 0)
(1.00152 -0.0004972 0)
(1.00154 -0.000502003 0)
(1.00157 -0.00050626 0)
(1.00159 -0.00050808 0)
(1.00162 -0.000510008 0)
(1.00165 -0.000509678 0)
(1.00167 -0.000508898 0)
(1.0017 -0.000506083 0)
(1.00173 -0.000502995 0)
(1.00176 -0.000498285 0)
(1.00178 -0.000492772 0)
(1.00182 -0.000485739 0)
(1.00184 -0.000478375 0)
(1.00188 -0.000469649 0)
(1.00191 -0.000460237 0)
(1.00194 -0.000449243 0)
(1.00197 -0.000437904 0)
(1.002 -0.000425137 0)
(1.00204 -0.000411996 0)
(1.00207 -0.000397906 0)
(1.0021 -0.000384205 0)
(1.00214 -0.000369354 0)
(1.00218 -0.000354106 0)
(1.00222 -0.000337761 0)
(1.00225 -0.000320943 0)
(1.0023 -0.000304139 0)
(1.00234 -0.000285429 0)
(1.00238 -0.000267559 0)
(1.00242 -0.000247294 0)
(1.00247 -0.000230908 0)
(1.00252 -0.000210562 0)
(1.00257 -0.000194403 0)
(1.00262 -0.000172872 0)
(1.00268 -0.000159274 0)
(1.00274 -0.000139102 0)
(1.00281 -0.000127161 0)
(1.00288 -0.000108393 0)
(1.00295 -0.000101094 0)
(1.00303 -7.95259e-05 0)
(1.00312 -7.50318e-05 0)
(1.00323 -2.91723e-05 0)
(1.00332 -4.16059e-05 0)
(1.00346 2.72304e-05 0)
(1.00354 -1.53133e-05 0)
(1.00369 0.000120475 0)
(1.00379 0.000114682 0)
(1.00457 0.000110187 0)
(1.00503 -9.99338e-06 0)
(1.00415 9.78172e-05 0)
(1.00404 5.39966e-05 0)
(1.00387 0.000163256 0)
(1.00376 0.000127302 0)
(1.0036 0.00021885 0)
(1.00348 0.000207051 0)
(1.00336 0.00026809 0)
(1.00325 0.000280814 0)
(1.00315 0.000322642 0)
(1.00306 0.000347465 0)
(1.00297 0.000380645 0)
(1.00289 0.000409152 0)
(1.00281 0.000442191 0)
(1.00274 0.000471216 0)
(1.00267 0.000503835 0)
(1.0026 0.000533686 0)
(1.00254 0.000567474 0)
(1.00247 0.00059819 0)
(1.00241 0.000631481 0)
(1.00235 0.0006621 0)
(1.00229 0.000695349 0)
(1.00224 0.000726013 0)
(1.00218 0.000758822 0)
(1.00213 0.000789733 0)
(1.00207 0.000822773 0)
(1.00202 0.000853489 0)
(1.00197 0.000885506 0)
(1.00191 0.000915624 0)
(1.00187 0.00094738 0)
(1.00181 0.000977154 0)
(1.00177 0.00100837 0)
(1.00172 0.0010381 0)
(1.00167 0.00106922 0)
(1.00162 0.00109799 0)
(1.00157 0.00112686 0)
(1.00153 0.00115333 0)
(1.00148 0.00118002 0)
(1.00143 0.00120433 0)
(1.00139 0.0012278 0)
(1.00135 0.00124827 0)
(1.0013 0.00126708 0)
(1.00126 0.00128278 0)
(1.00122 0.00129678 0)
(1.00118 0.00130861 0)
(1.00114 0.00131899 0)
(1.00109 0.00132709 0)
(1.00106 0.00133287 0)
(1.00102 0.00133632 0)
(1.00098 0.00133756 0)
(1.00094 0.00133682 0)
(1.0009 0.00133359 0)
(1.00087 0.00132867 0)
(1.00083 0.00132149 0)
(1.0008 0.00131314 0)
(1.00077 0.0013022 0)
(1.00073 0.00129008 0)
(1.0007 0.00127524 0)
(1.00067 0.00125935 0)
(1.00064 0.0012402 0)
(1.0006 0.00121998 0)
(1.00058 0.00119667 0)
(1.00055 0.00117307 0)
(1.00052 0.00114597 0)
(1.00049 0.00111823 0)
(1.00046 0.00108643 0)
(1.00044 0.00105417 0)
(1.00041 0.00101703 0)
(1.00038 0.000978907 0)
(1.00036 0.000935429 0)
(1.00033 0.000891843 0)
(1.00031 0.000842766 0)
(1.00028 0.000793823 0)
(1.00026 0.000739643 0)
(1.00024 0.000686974 0)
(1.00022 0.000629316 0)
(1.00019 0.000573257 0)
(1.00017 0.000512167 0)
(1.00015 0.000453756 0)
(1.00013 0.000390139 0)
(1.0001 0.000328863 0)
(1.00008 0.000262298 0)
(1.00006 0.000199376 0)
(1.00004 0.000131702 0)
(1.00002 6.79358e-05 0)
(1 -2.60735e-07 0)
(0.999976 -6.33438e-05 0)
(0.999958 -0.000130849 0)
(0.999935 -0.000193923 0)
(0.999916 -0.00026194 0)
(0.999893 -0.000325079 0)
(0.999874 -0.000393605 0)
(0.999851 -0.000458124 0)
(0.999832 -0.000528277 0)
(0.999808 -0.000593366 0)
(0.999789 -0.000663932 0)
(0.999765 -0.00073008 0)
(0.999745 -0.000801852 0)
(0.99972 -0.000868321 0)
(0.999699 -0.000940586 0)
(0.999673 -0.00100879 0)
(0.999652 -0.00108317 0)
(0.999625 -0.00115227 0)
(0.999602 -0.00122685 0)
(0.999573 -0.0012964 0)
(0.999549 -0.00137077 0)
(0.999519 -0.0014383 0)
(0.999493 -0.00150957 0)
(0.999462 -0.00157436 0)
(0.999433 -0.00164257 0)
(0.9994 -0.00170289 0)
(0.99937 -0.00176598 0)
(0.999334 -0.00182207 0)
(0.999301 -0.00188089 0)
(0.999263 -0.00193145 0)
(0.999228 -0.00198384 0)
(0.999188 -0.00202858 0)
(0.999149 -0.00207488 0)
(0.999106 -0.00211226 0)
(0.999064 -0.0021505 0)
(0.999018 -0.0021808 0)
(0.998973 -0.00221195 0)
(0.998924 -0.00223433 0)
(0.998876 -0.0022571 0)
(0.998824 -0.00227208 0)
(0.998772 -0.00228729 0)
(0.998716 -0.00229355 0)
(0.99866 -0.00229921 0)
(0.9986 -0.00229678 0)
(0.99854 -0.00229346 0)
(0.998477 -0.00228086 0)
(0.998413 -0.00226651 0)
(0.998346 -0.00224369 0)
(0.998278 -0.00221898 0)
(0.998207 -0.00218487 0)
(0.998135 -0.00214843 0)
(0.998061 -0.00210376 0)
(0.997984 -0.00205697 0)
(0.997906 -0.00200147 0)
(0.997824 -0.00194376 0)
(0.997741 -0.00187865 0)
(0.997656 -0.00181198 0)
(0.997568 -0.00173801 0)
(0.997478 -0.00166288 0)
(0.997387 -0.001582 0)
(0.997293 -0.00150073 0)
(0.997197 -0.00141371 0)
(0.997098 -0.00132615 0)
(0.996999 -0.00123334 0)
(0.996896 -0.0011399 0)
(0.996792 -0.00104089 0)
(0.996685 -0.000941206 0)
(0.996578 -0.000836643 0)
(0.996469 -0.000731665 0)
(0.996359 -0.000621887 0)
(0.996247 -0.000511801 0)
(0.996136 -0.000397541 0)
(0.996022 -0.000283301 0)
(0.995909 -0.000165209 0)
(0.995793 -4.74022e-05 0)
(0.995679 7.3725e-05 0)
(0.995562 0.000194447 0)
(0.995447 0.000318198 0)
(0.995329 0.000441502 0)
(0.995213 0.000567565 0)
(0.995094 0.000692995 0)
(0.994977 0.000820416 0)
(0.994859 0.000946666 0)
(0.994742 0.00107411 0)
(0.994624 0.00119957 0)
(0.994507 0.00132463 0)
(0.994389 0.00144679 0)
(0.994273 0.00156778 0)
(0.994156 0.00168527 0)
(0.99404 0.00180011 0)
(0.993925 0.0019108 0)
(0.993811 0.00201841 0)
(0.993697 0.00212173 0)
(0.993584 0.0022209 0)
(0.993473 0.00231556 0)
(0.993363 0.00240598 0)
(0.993254 0.0024918 0)
(0.993147 0.00257212 0)
(0.993041 0.00264741 0)
(0.992936 0.00271708 0)
(0.992834 0.00278156 0)
(0.992733 0.00283918 0)
(0.992635 0.0028912 0)
(0.992538 0.00293643 0)
(0.992445 0.00297596 0)
(0.992353 0.00300759 0)
(0.992265 0.00303283 0)
(0.992178 0.00305006 0)
(0.992095 0.00306048 0)
(0.992014 0.00306187 0)
(0.991938 0.00305582 0)
(0.991863 0.00304102 0)
(0.991793 0.00301867 0)
(0.991726 0.00298702 0)
(0.991663 0.0029472 0)
(0.991603 0.00289839 0)
(0.991548 0.00284123 0)
(0.991495 0.002775 0)
(0.991448 0.00270022 0)
(0.991403 0.00261721 0)
(0.991364 0.00252591 0)
(0.991328 0.00242695 0)
(0.991297 0.00231981 0)
(0.991269 0.00220592 0)
(0.991247 0.00208408 0)
(0.991228 0.00195626 0)
(0.991216 0.00182072 0)
(0.991207 0.00168026 0)
(0.991205 0.00153278 0)
(0.991206 0.0013818 0)
(0.991214 0.00122461 0)
(0.991226 0.0010651 0)
(0.991245 0.000900226 0)
(0.991269 0.000734723 0)
(0.9913 0.000565006 0)
(0.991337 0.00039593 0)
(0.991382 0.000223739 0)
(0.991432 5.38774e-05 0)
(0.99149 -0.000117954 0)
(0.991553 -0.000286604 0)
(0.991625 -0.000456268 0)
(0.991702 -0.00062122 0)
(0.991787 -0.000785943 0)
(0.991877 -0.000945172 0)
(0.991975 -0.00110318 0)
(0.992079 -0.00125456 0)
(0.992189 -0.00140348 0)
(0.992306 -0.00154493 0)
(0.992429 -0.00168268 0)
(0.992557 -0.00181176 0)
(0.99269 -0.00193596 0)
(0.992824 -0.00205124 0)
(0.992952 -0.00216079 0)
(0.993051 -0.00226053 0)
(0.993067 -0.00235308 0)
(0.992878 -0.00243442 0)
(0.99224 -0.00250433 0)
(0.990723 -0.00255464 0)
(0.987673 -0.00257796 0)
(0.982258 -0.00255858 0)
(0.973688 -0.00248092 0)
(0.961594 -0.00232757 0)
(0.946464 -0.00209013 0)
(0.929883 -0.00177012 0)
(0.914337 -0.00138241 0)
)
;
}
defaultFaces
{
type empty;
}
}
// ************************************************************************* //
| [
"george.newman10@gmail.com"
] | george.newman10@gmail.com | |
2f6a5fcb3e5ec48cf4607d27743e25528cf7db25 | 6bc3f5955699fcdac540823c51354bc21919fb06 | /Google Codejam/2018/Qualification Round/B.cpp | 7fefd083db242c1dfae9342a436e78e2883513e5 | [] | no_license | soroush-tabesh/Competitive-Programming | e1a265e2224359962088c74191b7dc87bbf314bf | a677578c2a0e21c0510258933548a251970d330d | refs/heads/master | 2021-09-24T06:36:43.037300 | 2018-10-04T14:12:00 | 2018-10-04T14:12:00 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,085 | cpp | //In The Name of Allah
//Sat 18/1/97
#include <bits/stdc++.h>
#define Init ios_base::sync_with_stdio(0),cin.tie(0),cout.tie(0)
#define forar(i,n) for(long long int i = 0; i < n;i++)
#define fori(i,a,b) for(long long int i = a; i < b;i++)
#define WFile freopen("test.in","r",stdin),freopen("test.out","w",stdout)
#define Log(x) cout << "Log: " << x << endl;
#define F first
#define S second
#define pb push_back
#define mp make_pair
using namespace std;
typedef long long int ll;
typedef long double ld;
typedef pair<int,int> pii;
typedef pair<ll,ll> pll;
const ll mod = 1e9+7,M = 2e5+100;
void Solution();
int n;
int val[2][M];
int main()
{
Init;
Solution();
return 0;
}
inline void Solution(){
int tt;
cin >> tt;
fori(t,1,tt+1){
cin >> n;
forar(i,n){
cin >> val[i%2][i/2];
}
sort(val[0],val[0]+(n+1)/2);
sort(val[1],val[1]+n/2);
int ans = -1;
forar(i,n-1){
if(val[i%2][i/2] > val[(i+1)%2][(i+1)/2]){
ans = i;
break;
}
}
cout << "Case #" << t << ": ";
if(ans == -1){
cout << "OK" << endl;
}else{
cout << ans << endl;
}
}
}
| [
"sorooshtabesh@yahoo.com"
] | sorooshtabesh@yahoo.com |
f3e0114e69f33b883d4371d11e363ff798bc0dda | 105e721a388111dc4c9343b805b52d881f1e2b6b | /export/release/windows/obj/src/resources/__res_2.cpp | b6d2d92f90757ef46775d52ea7e8eba299ae10e3 | [] | no_license | SuperSpinDashGamer39/lololololololololo-very-hard | b198f7e9c135ec9e9fbe01d193861aebc26825ad | 37c5a3d7bf27ba3a2fbaa0d3180f7163f9a15e35 | refs/heads/main | 2023-08-20T16:21:12.832634 | 2021-10-10T02:19:53 | 2021-10-10T02:19:53 | 415,465,253 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | true | 438 | cpp | // Generated by Haxe 4.1.5
namespace hx {
unsigned char __res_2[] = {
0x80, 0x00, 0x00, 0x80,
123,34,110,97,109,101,34,58,110,117,
108,108,44,34,97,115,115,101,116,115,
34,58,34,97,104,34,44,34,114,111,
111,116,80,97,116,104,34,58,110,117,
108,108,44,34,118,101,114,115,105,111,
110,34,58,50,44,34,108,105,98,114,
97,114,121,65,114,103,115,34,58,91,
93,44,34,108,105,98,114,97,114,121,
84,121,112,101,34,58,110,117,108,108,
125,0x00 };
}
| [
"81721123+SuperSpinDashGamer39@users.noreply.github.com"
] | 81721123+SuperSpinDashGamer39@users.noreply.github.com |
4c80eebd6582faf7e076c307884466d6ce364891 | be3a6e97e11dd84f254303fe95d48387552af42b | /459. Repeated Substring Pattern .cpp | 2aad71c8a52a1c6a65ed0270c9bda3a8cb1dae07 | [] | no_license | GH2005/myLeetcodeSolutions | fc2b57b2d18505a20d38bf4aca7158008b648263 | c68780f2064f7eb6ffdc20ee9d6f1bf60bb05e8a | refs/heads/master | 2021-01-24T10:54:28.940801 | 2020-06-08T03:18:50 | 2020-06-08T03:18:50 | 70,296,774 | 3 | 0 | null | 2016-10-09T00:03:51 | 2016-10-08T02:14:44 | C++ | UTF-8 | C++ | false | false | 1,345 | cpp | // it's incredibly fast
class Solution {
int hash(char c)
{
return c - 'a';
}
public:
bool repeatedSubstringPattern(string s) {
int len = s.size();
if (len == 0) return true;
if (len == 1) return false;
int hashTable[26] = {};
for (char ch : s) hashTable[hash(ch)]++;
// for (int i = 0; i < 26; i++) printf("%d ", hashTable[i]);
// try finding a number that divides all hash values
for (int cSections = 2; cSections <= len; cSections++)
{
if (len % cSections != 0) continue;
bool stage1ok = true;
for (int i = 0; i < 26; i++)
if (hashTable[i] % cSections != 0) { stage1ok = false; break;}
if (!stage1ok) continue;
int secLen = len / cSections;
bool stage2ok = true;
for (int posCh = 0; posCh < secLen; posCh++)
{
bool chOK = true;
for (int sec = 1; sec < cSections; sec++)
{
int actualPos = sec * secLen + posCh;
if (s[actualPos - secLen] != s[actualPos]) { chOK = false; break; }
}
if (!chOK) { stage2ok = false; break; }
}
if (stage2ok) return true;
}
return false;
}
};
| [
"noreply@github.com"
] | noreply@github.com |
7cbdafff7019a93375d2adb7b95c4579191e22b6 | 4cedd03bcc2d8e886a1cf571c9b941fc430cbc1d | /Common/LocalFileManage.h | b11005b696f72029bf27183573ebec81a1cf3ea3 | [] | no_license | NULLPlayer/MyGS | d6d05c0b0fb9a75f8d5e3d401ae26752cd315bff | aabca3c7a046c248fc163cd2da755861a3d76b29 | refs/heads/master | 2021-01-22T19:15:13.256542 | 2017-03-26T04:15:43 | 2017-03-26T04:15:43 | 85,184,800 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 2,054 | h | #ifndef LOCAL_FILE_MANAGE_H
#define LOCAL_FILE_MANAGE_H
#include "pluginInfo.h"
#include "GSSysApi.h"
#include "GSFoundation.h"
class CLocalFileManage
{
public:
CLocalFileManage(SystemInfo* pSys, const GSString& strRootDir);
~CLocalFileManage(void);
bool Start(void);
void Stop(void);
bool GetNewFilePath(GSString& path);
void SwapNewFilePathList(std::list< GSString >& listPath);
void EraseFilePath(const GSString& path);
private:
void OnThread(GSThread &thread);
bool OnFile(const GSStruFileInfo &info);
// 定时递归目录
//static void OnTimerRecursiveDirectoryCB(SystemInfo* sys, TimerHandle timerID, void *pTimerParam) {
// GS_ASSERT_RET(pTimerParam);
// CLocalFileManage* pThis = (CLocalFileManage*) pTimerParam;
// pThis->OnTimerRecursiveDirectory();
//}
static void OnThreadCB(GSThread &thread, void *pThreadData) {
GS_ASSERT_RET(pThreadData);
CLocalFileManage* pThis = (CLocalFileManage*) pThreadData;
pThis->OnThread(thread);
}
// GSFetchDir目录回调
static bool OnFileCB(const GSStruFileInfo &info, void *pUserData) {
GS_ASSERT_RET_VAL(pUserData, false);
CLocalFileManage* pThis = (CLocalFileManage*) pUserData;
return pThis->OnFile(info);
}
private:
void PushPathListElem(const GSString& path);
bool FindPathSetElem(const GSString& path);
void InsertPathSetElem(const GSString& path);
private:
void InnerPushPathListElem(const GSString& strPath);
bool InnerPopPathListElem(GSString& strPath);
size_t InnerGetPathListSize(void);
void InnerSwapPathList(std::list< GSString >& listPath);
void InnerInsertPathSetElem(const GSString& strPath);
void InnerErasePathSetElem(const GSString& strPath);
bool InnerFindPathSetElem(const GSString& strPath);
private:
SystemInfo m_stSysInfo;
//TimerHandle m_hRecurDirTimer;
GSThread m_gsThread;
GSString m_strRootDir;
GSMutex m_mutex;
//std::list< GSString > m_dirList;
std::list< GSString > m_pathList;
std::set< GSString > m_pathSet;
};
#endif // LOCAL_FILE_MANAGE_H | [
"NULL.Player.NULL@gmail.com"
] | NULL.Player.NULL@gmail.com |
9925782b99b7e22f56ddb1bfbae30df11f40b1d4 | ac5af3d4a60ecec85ebed44502b70eece28f726f | /丝雨小姐姐/qhb/LA3644.cpp | 2e89284331ffc1ed19ec776707c69a4c6ce53953 | [] | no_license | qhb1001/For-that-dream | 29f473cb4301bba70985c1c6ac4a152e237598fe | 624a21572e9d674f007d9f65d560e83d281d7497 | refs/heads/master | 2020-03-09T21:33:28.847612 | 2018-09-27T13:39:53 | 2018-09-27T13:39:53 | 129,012,092 | 4 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 730 | cpp | #include <iostream>
#include <cstdio>
#include <cstring>
#include <string>
#include <algorithm>
#include <vector>
using namespace std;
const int MAX = 1e5 + 5;
int fa[MAX], cnt[MAX];
void init() {
for (int i = 0; i < MAX; ++i)
fa[i] = i, cnt[i] = 1;
}
int find(int u) {
return fa[u] == u? u : fa[u] = find(fa[u]);
}
bool unit(int u, int v) {
u = find(u);
v = find(v);
if (u == v) return true;
if (cnt[u] < cnt[v]) swap(u, v);
cnt[u] += cnt[v];
fa[v] = u;
return false;
}
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
int u, v, ans = 0;
while (cin >> u >> v) {
init();
unit(u, v);
ans = 0;
while (cin >> u) {
if (u == -1) break;
cin >> v;
ans += unit(u, v);
}
cout << ans << '\n';
}
}
| [
"z694895876@gmail.com"
] | z694895876@gmail.com |
cffc1286d6fe32a2f2e4f95a21b8127c1c802ea2 | 66e6360325b781ed0791868765f1fd8a6303726f | /L1TriggerUpgrade2018/TriggerTurnOn/22262_TurnOnInvestigation/FillHistograms.cpp | 06955d7f91ca2e911da8dda1e0867b9c39dc690b | [] | no_license | alintulu/FHead2011PhysicsProject | c969639b212d569198d8fce2f424ce866dcfa881 | 2568633d349810574354ad61b0abab24a40e510e | refs/heads/master | 2022-04-28T14:19:30.534282 | 2020-04-23T17:17:32 | 2020-04-23T17:17:32 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 27,139 | cpp | #include <iostream>
#include <fstream>
#include <sstream>
#include <vector>
using namespace std;
#include "fastjet/ClusterSequence.hh"
#include "TFile.h"
#include "TTree.h"
#include "TH1D.h"
#include "TDirectory.h"
#include "Code/TauHelperFunctions3.h"
#include "SetStyle.h"
#include "CommandLine.h"
#include "ProgressBar.h"
#include "CustomAssert.h"
#include "Messenger.h"
#include "Histograms.h"
#include "HelperFunctions.h"
class Configuration;
int main(int argc, char *argv[]);
vector<Configuration> ReadConfigFile(string FileName);
class Configuration
{
public:
string InputObject;
string Directory;
string ReferenceObject;
double AbsEtaMin;
double AbsEtaMax;
double PTMin;
double ReferenceIsolation;
string Quality;
double DRCut;
string Type;
double IsolationBB, IsolationEC;
string HistogramName;
int Bin1, Bin2, Bin3, Bin4;
double Min1, Min2, Min3, Min4;
double Max1, Max2, Max3, Max4;
string ThresholdPreset;
bool Valid;
public:
Configuration()
{
Valid = false;
}
Configuration(string Input)
{
Valid = false;
Parse(Input);
}
vector<string> BreakIntoPieces(string Input)
{
stringstream str(Input);
vector<string> Result;
while(str)
{
string Temp = "";
str >> Temp;
if(Temp == "")
continue;
Result.push_back(Temp);
}
return Result;
}
void Parse(string Input)
{
Valid = false;
vector<string> Parts = BreakIntoPieces(Input);
if(Parts.size() != 26)
return;
if(Parts[0] == "Input")
return;
if(Parts[0] == "Comment")
return;
if(Parts[0] == "")
return;
if(Parts[0][0] == '#')
return;
Valid = true;
InputObject = Parts[0];
Directory = Parts[1];
ReferenceObject = Parts[2];
AbsEtaMin = atof(Parts[3].c_str());
AbsEtaMax = atof(Parts[4].c_str());
PTMin = atof(Parts[5].c_str());
ReferenceIsolation = atof(Parts[6].c_str());
Quality = Parts[7];
DRCut = atof(Parts[8].c_str());
Type = Parts[9];
IsolationBB = atof(Parts[10].c_str());
IsolationEC = atof(Parts[11].c_str());
HistogramName = Parts[12];
Bin1 = atoi(Parts[13].c_str());
Min1 = atof(Parts[14].c_str());
Max1 = atof(Parts[15].c_str());
Bin2 = atoi(Parts[16].c_str());
Min2 = atof(Parts[17].c_str());
Max2 = atof(Parts[18].c_str());
Bin3 = atoi(Parts[19].c_str());
Min3 = atof(Parts[20].c_str());
Max3 = atof(Parts[21].c_str());
Bin4 = atoi(Parts[22].c_str());
Min4 = atof(Parts[23].c_str());
Max4 = atof(Parts[24].c_str());
ThresholdPreset = Parts[25];
}
};
int main(int argc, char *argv[])
{
fastjet::ClusterSequence::set_fastjet_banner_stream(NULL);
CommandLine CL(argc, argv);
// Some root styling
SetThesisStyle();
// Get arguments
vector<string> InputFileNames = CL.GetStringVector("input", ',');
string OutputFileName = CL.Get("output");
bool DoTree = CL.GetBool("tree", false);
bool UseStoredGen = CL.GetBool("StoredGen", true);
string ConfigFileName = CL.Get("config");
bool LDROnly = CL.GetBool("LDROnly", false);
bool RejectLeptonicW = CL.GetBool("RejectLeptonicW", false);
vector<Configuration> Configurations = ReadConfigFile(ConfigFileName);
int N = Configurations.size();
if(LDROnly == true)
{
for(int i = 0; i < (int)Configurations.size(); i++)
{
if(Configurations[i].Directory.find("LDR") == string::npos)
{
Configurations.erase(Configurations.begin() + i);
i = i - 1;
}
}
N = Configurations.size();
}
// Output file
TFile OutputFile(OutputFileName.c_str(), "RECREATE");
// Matched tree
TTree *OutputTree = nullptr;
double GenPT, GenEta, GenPhi;
double L1PT, L1Eta, L1Phi;
string CurrentFileName;
int EventIndex;
int EntryIndex;
if(DoTree == true)
{
OutputTree = new TTree("MatchedTree", "Matched tree");
OutputTree->Branch("GenPT", &GenPT, "GenPT/D");
OutputTree->Branch("GenEta", &GenEta, "GenEta/D");
OutputTree->Branch("GenPhi", &GenPhi, "GenPhi/D");
OutputTree->Branch("L1PT", &L1PT, "L1PT/D");
OutputTree->Branch("L1Eta", &L1Eta, "L1Eta/D");
OutputTree->Branch("L1Phi", &L1Phi, "L1Phi/D");
OutputTree->Branch("File", &CurrentFileName);
OutputTree->Branch("EventIndex", &EventIndex, "EventIndex/I");
OutputTree->Branch("Index", &EntryIndex, "EntryIndex/I");
}
// Output File and directories for better organization
vector<TDirectory *> Directories;
for(int i = 0; i < N; i++)
Directories.push_back(OutputFile.mkdir(Configurations[i].Directory.c_str(), ""));
// Create histograms
vector<double> GenThresholds = {0};
vector<double> JetThresholds = {0, 5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 70,
75, 80, 85, 90, 100, 120, 125, 130, 140, 150, 175, 200, 225, 250, 275, 300};
vector<double> MuonThresholds = {0, 2, 3, 4, 5, 7, 9, 10, 12, 14, 15, 17, 20, 22, 25, 27, 30};
vector<double> TauThresholds = {0, 5, 7, 9, 12, 14, 15, 17, 20, 22, 25, 27, 30, 35, 36, 40, 46, 50, 58, 60, 70, 80, 90, 100};
vector<double> EGThresholds = {0, 5, 7, 9, 12, 14, 15, 17, 20, 22, 25, 27, 30, 40, 50};
vector<double> HTThresholds = {0, 10, 20, 30, 40, 50, 60, 70, 80, 82, 90, 100, 112, 125, 150,
175, 184, 200, 225, 250, 300, 325, 326, 350, 370, 375, 400, 425, 450, 475, 500, 550, 600, 650};
vector<Histograms *> ObjectHistograms;
for(int i = 0; i < N; i++)
{
vector<double> Thresholds;
if(Configurations[i].ThresholdPreset == "Gen")
Thresholds = GenThresholds;
if(Configurations[i].ThresholdPreset == "Jet")
Thresholds = JetThresholds;
if(Configurations[i].ThresholdPreset == "Muon")
Thresholds = MuonThresholds;
if(Configurations[i].ThresholdPreset == "Tau")
Thresholds = TauThresholds;
if(Configurations[i].ThresholdPreset == "EG")
Thresholds = EGThresholds;
if(Configurations[i].ThresholdPreset == "HT")
Thresholds = HTThresholds;
Histograms *H = new Histograms
(Configurations[i].Bin1, Configurations[i].Min1, Configurations[i].Max1,
Configurations[i].Bin2, Configurations[i].Min2, Configurations[i].Max2,
Configurations[i].Bin3, Configurations[i].Min3, Configurations[i].Max3,
Configurations[i].Bin4, Configurations[i].Min4, Configurations[i].Max4,
Thresholds, Configurations[i].HistogramName);
ObjectHistograms.push_back(H);
}
for(string InputFileName : InputFileNames)
{
if(DoTree == true)
CurrentFileName = InputFileName;
cout << "Processing file " << InputFileName << endl;
// Input File
TFile File(InputFileName.c_str());
// Messengers
L1GenMessenger MGen(File, "genTree/L1GenTree");
L1PhaseIITreeV10p4Messenger MPhaseII(File, "l1PhaseIITree/L1PhaseIITree");
if(MGen.Tree == nullptr || MPhaseII.Tree == nullptr)
continue;
// Loop over events
int EntryCount = MGen.Tree->GetEntries();
ProgressBar Bar(cout, EntryCount);
for(int iE = 0; iE < EntryCount; iE++)
{
if(DoTree == true)
EventIndex = iE;
Bar.Update(iE);
Bar.Print();
MGen.GetEntry(iE);
MPhaseII.GetEntry(iE);
bool LeptonicW = CheckLeptonicW(MGen);
if(RejectLeptonicW == true && LeptonicW == true)
continue;
vector<FourVector> Electrons;
vector<FourVector> ZElectrons;
vector<FourVector> Photons;
vector<FourVector> Muons;
vector<int> MuonSigns;
vector<double> MuonDXY;
vector<FourVector> MuonLxy1000s;
vector<int> MuonSignLxy1000s;
vector<double> MuonDXYLxy1000;
vector<FourVector> Taus, VisTaus;
vector<FourVector> ChargedParticles;
vector<FourVector> Particles;
// Collect gen-particles
for(int i = 0; i < (int)MGen.GenP.size(); i++)
{
int AbsID = MGen.GenID[i];
if(AbsID < 0)
AbsID = -AbsID;
if(AbsID == 12 || AbsID == 14 || AbsID == 16)
continue;
if(AbsID == 11)
Electrons.push_back(MGen.GenP[i]);
if(AbsID == 11 && MGen.GenParent[i] == 23) // electron from Z
ZElectrons.push_back(MGen.GenP[i]);
if(AbsID == 22)
Photons.push_back(MGen.GenP[i]);
if(AbsID == 13)
{
Muons.push_back(MGen.GenP[i]);
MuonSigns.push_back((MGen.GenID[i] > 0) ? -1 : 1);
MuonDXY.push_back(fabs(MGen.GenDxy[i]));
if(fabs(MGen.GenLxy[i]) < 100) // 1 meter
{
MuonLxy1000s.push_back(MGen.GenP[i]);
MuonSignLxy1000s.push_back((MGen.GenID[i] > 0) ? -1 : 1);
MuonDXYLxy1000.push_back(fabs(MGen.GenDxy[i]));
}
}
if(AbsID == 15)
{
FourVector P = GetVisTauAdhoc(MGen, i);
if(P[0] > 0)
VisTaus.push_back(P);
Taus.push_back(MGen.GenP[i]);
}
if(MGen.GenStatus[i] == 1) // we only want final state particles here
Particles.push_back(MGen.GenP[i]);
if(MGen.GenStatus[i] == 1 && MGen.GenCharge[i] != 0)
ChargedParticles.push_back(MGen.GenP[i]);
}
// Cluster jets
vector<FourVector> GenJets = (UseStoredGen ? MGen.GenJet : ClusterJets(Particles));
vector<FourVector> ChargedGenJets = ClusterJets(ChargedParticles);
// Gather MET
FourVector GenMETForPuppi = (UseStoredGen ? MGen.GenMETTrue : CalculateMHT(Particles, 2.4, 0));
FourVector GenMETForTk = CalculateMHT(ChargedParticles, 2.4, 0);
vector<FourVector> ReferenceObjects;
vector<double> ReferenceDXY;
vector<int> ReferenceSigns;
for(int i = 0; i < N; i++)
{
FourVector Best(-1, 0, 0, 0);
int BestSign = -999;
int BestDXY = 0;
Configuration &C = Configurations[i];
if(C.ReferenceObject == "GenJet")
Best = BestInRange(GenJets, C.AbsEtaMin, C.AbsEtaMax, -1);
else if(C.ReferenceObject == "ChargedGenJet")
Best = BestInRange(ChargedGenJets, C.AbsEtaMin, C.AbsEtaMax, -1);
else if(C.ReferenceObject == "Electron")
Best = BestInRange(Electrons, C.AbsEtaMin, C.AbsEtaMax, -1);
else if(C.ReferenceObject == "ZElectron")
Best = BestInRange(ZElectrons, C.AbsEtaMin, C.AbsEtaMax, -1);
else if(C.ReferenceObject == "Photon")
Best = BestInRange(Photons, C.AbsEtaMin, C.AbsEtaMax, -1);
else if(C.ReferenceObject == "Muon")
{
Best = BestInRange(Muons, C.AbsEtaMin, C.AbsEtaMax, -1);
int BestIndex = BestIndexInRange(Muons, C.AbsEtaMin, C.AbsEtaMax, -1);
if(BestIndex < 0) BestSign = -999;
else BestSign = MuonSigns[BestIndex];
if(BestIndex < 0) BestDXY = 0;
else BestDXY = MuonDXY[BestIndex];
}
else if(C.ReferenceObject == "MuonLxy1000")
{
Best = BestInRange(MuonLxy1000s, C.AbsEtaMin, C.AbsEtaMax, -1);
int BestIndex = BestIndexInRange(MuonLxy1000s, C.AbsEtaMin, C.AbsEtaMax, -1);
if(BestIndex < 0) BestSign = -999;
else BestSign = MuonSignLxy1000s[BestIndex];
if(BestIndex < 0) BestDXY = 0;
else BestDXY = MuonDXYLxy1000[BestIndex];
}
else if(C.ReferenceObject == "VisTau")
Best = BestInRange(VisTaus, C.AbsEtaMin, C.AbsEtaMax, -1);
else if(C.ReferenceObject == "Tau")
Best = BestInRange(Taus, C.AbsEtaMin, C.AbsEtaMax, -1);
else if(C.ReferenceObject == "HT5")
Best = CalculateHT(GenJets, 2.4, 5);
else if(C.ReferenceObject == "MHT5")
Best = CalculateMHT(GenJets, 2.4, 5);
else if(C.ReferenceObject == "HT10")
Best = CalculateHT(GenJets, 2.4, 10);
else if(C.ReferenceObject == "MHT10")
Best = CalculateMHT(GenJets, 2.4, 10);
else if(C.ReferenceObject == "HT15")
Best = CalculateHT(GenJets, 2.4, 15);
else if(C.ReferenceObject == "HT15Eta35")
Best = CalculateHT(GenJets, 3.5, 15);
else if(C.ReferenceObject == "MHT15")
Best = CalculateMHT(GenJets, 2.4, 15);
else if(C.ReferenceObject == "MHT15Eta35")
Best = CalculateMHT(GenJets, 3.5, 15);
else if(C.ReferenceObject == "HT20")
Best = CalculateHT(GenJets, 2.4, 20);
else if(C.ReferenceObject == "HT20Eta35")
Best = CalculateHT(GenJets, 3.5, 20);
else if(C.ReferenceObject == "MHT20")
Best = CalculateMHT(GenJets, 2.4, 20);
else if(C.ReferenceObject == "MHT20Eta35")
Best = CalculateMHT(GenJets, 3.5, 20);
else if(C.ReferenceObject == "HT30")
Best = CalculateHT(GenJets, 2.4, 30);
else if(C.ReferenceObject == "HT30Eta35")
Best = CalculateHT(GenJets, 3.5, 30);
else if(C.ReferenceObject == "MHT30")
Best = CalculateMHT(GenJets, 2.4, 30);
else if(C.ReferenceObject == "MHT30Eta35")
Best = CalculateMHT(GenJets, 3.5, 30);
else if(C.ReferenceObject == "MET")
Best = (UseStoredGen ? MGen.GenMETTrue : CalculateMHT(Particles, 2.4, 0));
else if(C.ReferenceObject == "ChargedHT5")
Best = CalculateHT(ChargedGenJets, 2.4, 5);
else if(C.ReferenceObject == "ChargedMHT5")
Best = CalculateMHT(ChargedGenJets, 2.4, 5);
else if(C.ReferenceObject == "ChargedHT10")
Best = CalculateHT(ChargedGenJets, 2.4, 10);
else if(C.ReferenceObject == "ChargedMHT10")
Best = CalculateMHT(ChargedGenJets, 2.4, 10);
else if(C.ReferenceObject == "ChargedHT15")
Best = CalculateHT(ChargedGenJets, 2.4, 15);
else if(C.ReferenceObject == "ChargedMHT15")
Best = CalculateMHT(ChargedGenJets, 2.4, 15);
else if(C.ReferenceObject == "ChargedHT20")
Best = CalculateHT(ChargedGenJets, 2.4, 20);
else if(C.ReferenceObject == "ChargedMHT20")
Best = CalculateMHT(ChargedGenJets, 2.4, 20);
else if(C.ReferenceObject == "ChargedHT30")
Best = CalculateHT(ChargedGenJets, 2.4, 30);
else if(C.ReferenceObject == "ChargedMHT30")
Best = CalculateMHT(ChargedGenJets, 2.4, 30);
else if(C.ReferenceObject == "ChargedMET")
Best = CalculateMHT(ChargedParticles, 2.4, 0);
if(C.ReferenceIsolation > 0)
{
double Isolation = CalculateGenIsolation(Best, Particles, 0.3);
if(Isolation > C.ReferenceIsolation)
Best = FourVector(-1, 0, 0, 0);
}
ReferenceObjects.push_back(Best);
ReferenceSigns.push_back(BestSign);
ReferenceDXY.push_back(BestDXY);
}
// Find best L1 objects
vector<GenericObject> L1Objects;
for(int i = 0; i < N; i++)
{
Configuration &C = Configurations[i];
FourVector &Ref = ReferenceObjects[i];
int Quality = QUAL_NONE;
if(C.Quality == "None")
Quality = QUAL_NONE;
else if(C.Quality == "Odd")
Quality = QUAL_ODD;
else if(C.Quality == "Twelve")
Quality = QUAL_12;
else if(C.Quality == "OverlapTwelve")
Quality = QUAL_OVERLAP12;
else if(C.Quality == "TwelveDXYOne")
Quality = QUAL_12_DXY1;
else if(C.Quality == "DXYOne")
Quality = QUAL_DXY1;
else if(C.Quality == "BarrelOddEndcapTwo")
Quality = QUAL_BARRELODDENDCAP2;
else if(C.Quality == "BarrelNoneEndcapTwo")
Quality = QUAL_BARRELNONEENDCAP2;
else if(C.Quality == "BarrelNoneEndcapThree")
Quality = QUAL_BARRELNONEENDCAP3;
else if(C.Quality == "BarrelNoneEndcapFive")
Quality = QUAL_BARRELNONEENDCAP5;
else if(C.Quality == "UseFlag")
Quality = QUAL_USEFLAG;
else if(C.Quality == "RegionNotFour")
Quality = QUAL_REGIONNOTFOUR;
else
Quality = atoi(C.Quality.c_str());
int Range = atoi(C.Type.c_str());
GenericObject Best;
if(C.InputObject == "Gen")
Best.P = ReferenceObjects[i];
else if(C.InputObject == "TrackerJet")
Best = BestInRange(MPhaseII.TrackerJet, Ref, C.AbsEtaMin, C.AbsEtaMax, C.PTMin, C.DRCut, Quality, Range, C.IsolationBB, C.IsolationEC);
else if(C.InputObject == "TkCaloJet")
Best = BestInRange(MPhaseII.TkCaloJet, Ref, C.AbsEtaMin, C.AbsEtaMax, C.PTMin, C.DRCut, Quality, Range, C.IsolationBB, C.IsolationEC);
else if(C.InputObject == "PuppiJet")
Best = BestInRange(MPhaseII.PuppiJet, Ref, C.AbsEtaMin, C.AbsEtaMax, C.PTMin, C.DRCut, Quality, Range, C.IsolationBB, C.IsolationEC);
else if(C.InputObject == "CaloJet")
Best = BestInRange(MPhaseII.CaloJet, Ref, C.AbsEtaMin, C.AbsEtaMax, C.PTMin, C.DRCut, Quality, Range, C.IsolationBB, C.IsolationEC);
else if(C.InputObject == "PFPhase1Jet")
Best = BestInRange(MPhaseII.PFPhase1Jet, Ref, C.AbsEtaMin, C.AbsEtaMax, C.PTMin, C.DRCut, Quality, Range, C.IsolationBB, C.IsolationEC);
else if(C.InputObject == "GlobalMuon")
Best = BestInRange(MPhaseII.GlobalMuon, Ref, C.AbsEtaMin, C.AbsEtaMax, C.PTMin, C.DRCut, Quality, Range, C.IsolationBB, C.IsolationEC);
else if(C.InputObject == "StandaloneMuon")
Best = BestInRange(MPhaseII.StandaloneMuon, Ref, C.AbsEtaMin, C.AbsEtaMax, C.PTMin, C.DRCut, Quality, Range, C.IsolationBB, C.IsolationEC);
else if(C.InputObject == "StandaloneDisplacedMuon")
Best = BestInRange(MPhaseII.StandaloneDisplacedMuon, Ref, C.AbsEtaMin, C.AbsEtaMax, C.PTMin, C.DRCut, Quality, Range, C.IsolationBB, C.IsolationEC);
else if(C.InputObject == "TkMuon")
Best = BestInRange(MPhaseII.TkMuon, Ref, C.AbsEtaMin, C.AbsEtaMax, C.PTMin, C.DRCut, Quality, Range, C.IsolationBB, C.IsolationEC);
else if(C.InputObject == "TkMuonStub")
Best = BestInRange(MPhaseII.TkMuonStub, Ref, C.AbsEtaMin, C.AbsEtaMax, C.PTMin, C.DRCut, Quality, Range, C.IsolationBB, C.IsolationEC);
else if(C.InputObject == "TkGlbMuon")
Best = BestInRange(MPhaseII.TkGlbMuon, Ref, C.AbsEtaMin, C.AbsEtaMax, C.PTMin, C.DRCut, Quality, Range, C.IsolationBB, C.IsolationEC);
else if(C.InputObject == "PFMuon")
Best = BestInRange(MPhaseII.PFMuon, Ref, C.AbsEtaMin, C.AbsEtaMax, C.PTMin, C.DRCut, Quality, Range, C.IsolationBB, C.IsolationEC);
else if(C.InputObject == "EG")
Best = BestInRange(MPhaseII.EG, Ref, C.AbsEtaMin, C.AbsEtaMax, C.PTMin, C.DRCut, Quality, Range, C.IsolationBB, C.IsolationEC);
else if(C.InputObject == "EGTrackID")
Best = BestInRange(MPhaseII.EGTrackID, Ref, C.AbsEtaMin, C.AbsEtaMax, C.PTMin, C.DRCut, Quality, Range, C.IsolationBB, C.IsolationEC);
else if(C.InputObject == "TkElectron")
Best = BestInRange(MPhaseII.TkElectron, Ref, C.AbsEtaMin, C.AbsEtaMax, C.PTMin, C.DRCut, Quality, Range, C.IsolationBB, C.IsolationEC);
else if(C.InputObject == "TkElectronTrackID")
Best = BestInRange(MPhaseII.TkElectronTrackID, Ref, C.AbsEtaMin, C.AbsEtaMax, C.PTMin, C.DRCut, Quality, Range, C.IsolationBB, C.IsolationEC);
else if(C.InputObject == "TkElectronV2")
Best = BestInRange(MPhaseII.TkElectronV2, Ref, C.AbsEtaMin, C.AbsEtaMax, C.PTMin, C.DRCut, Quality, Range, C.IsolationBB, C.IsolationEC);
else if(C.InputObject == "TkElectronV2TrackID")
Best = BestInRange(MPhaseII.TkElectronV2TrackID, Ref, C.AbsEtaMin, C.AbsEtaMax, C.PTMin, C.DRCut, Quality, Range, C.IsolationBB, C.IsolationEC);
else if(C.InputObject == "TkPhoton")
Best = BestInRange(MPhaseII.TkPhoton, Ref, C.AbsEtaMin, C.AbsEtaMax, C.PTMin, C.DRCut, Quality, Range, C.IsolationBB, C.IsolationEC);
else if(C.InputObject == "TkPhotonTrackID")
Best = BestInRange(MPhaseII.TkPhotonTrackID, Ref, C.AbsEtaMin, C.AbsEtaMax, C.PTMin, C.DRCut, Quality, Range, C.IsolationBB, C.IsolationEC);
else if(C.InputObject == "TkPhotonPVTrackID")
Best = BestInRange(MPhaseII.TkPhotonPVTrackID, Ref, C.AbsEtaMin, C.AbsEtaMax, C.PTMin, C.DRCut, Quality, Range, C.IsolationBB, C.IsolationEC);
else if(C.InputObject == "TkElectronPV")
{
double IsoBB, IsoEC;
IsoBB = (C.IsolationBB < 0) ? -1 : 0.12;
IsoEC = (C.IsolationEC < 0) ? -1 : 0.20;
Best = BestInRange(MPhaseII.TkElectronTrackID, Ref, C.AbsEtaMin, C.AbsEtaMax, C.PTMin, C.DRCut, QUAL_USEFLAG, Range, IsoBB, IsoEC);
if(Best.P[0] < 0)
{
IsoBB = (C.IsolationBB < 0) ? -1 : 0.06;
IsoEC = (C.IsolationEC < 0) ? -1 : 0.055;
Best = BestInRange(MPhaseII.TkPhotonPVTrackID, Ref, C.AbsEtaMin, C.AbsEtaMax, C.PTMin, C.DRCut, QUAL_USEFLAG, Range, IsoBB, IsoEC);
}
if(Best.P[0] < 0)
Best.Type = ((Ref.GetAbsEta() < 1.5) ? 0 : 1);
}
else if(C.InputObject == "TkTau")
Best = BestInRange(MPhaseII.TkTau, Ref, C.AbsEtaMin, C.AbsEtaMax, C.PTMin, C.DRCut, Quality, Range, C.IsolationBB, C.IsolationEC);
else if(C.InputObject == "CaloTkTau")
Best = BestInRange(MPhaseII.CaloTkTau, Ref, C.AbsEtaMin, C.AbsEtaMax, C.PTMin, C.DRCut, Quality, Range, C.IsolationBB, C.IsolationEC);
else if(C.InputObject == "TkEGTau")
Best = BestInRange(MPhaseII.TkEGTau, Ref, C.AbsEtaMin, C.AbsEtaMax, C.PTMin, C.DRCut, Quality, Range, C.IsolationBB, C.IsolationEC);
else if(C.InputObject == "PFTau")
Best = BestInRange(MPhaseII.PFTau, Ref, C.AbsEtaMin, C.AbsEtaMax, C.PTMin, C.DRCut, Quality, Range, C.IsolationBB, C.IsolationEC);
else if(C.InputObject == "NNTau")
Best = BestInRange(MPhaseII.NNTau, Ref, C.AbsEtaMin, C.AbsEtaMax, C.PTMin, C.DRCut, Quality, Range, C.IsolationBB, C.IsolationEC);
else if(C.InputObject == "NNTauLoose")
Best = BestInRange(MPhaseII.NNTauLoose, Ref, C.AbsEtaMin, C.AbsEtaMax, C.PTMin, C.DRCut, Quality, Range, C.IsolationBB, C.IsolationEC);
else if(C.InputObject == "NNPFTau")
Best = BestInRange(MPhaseII.NNPFTau, Ref, C.AbsEtaMin, C.AbsEtaMax, C.PTMin, C.DRCut, Quality, Range, C.IsolationBB, C.IsolationEC);
else if(C.InputObject == "NNPFTauLoose")
Best = BestInRange(MPhaseII.NNPFTauLoose, Ref, C.AbsEtaMin, C.AbsEtaMax, C.PTMin, C.DRCut, Quality, Range, C.IsolationBB, C.IsolationEC);
else if(C.InputObject == "HPSTau")
Best = BestInRange(MPhaseII.HPSTau, Ref, C.AbsEtaMin, C.AbsEtaMax, C.PTMin, C.DRCut, Quality, Range, C.IsolationBB, C.IsolationEC);
else if(C.InputObject == "CaloTau")
Best = BestInRange(MPhaseII.CaloTau, Ref, C.AbsEtaMin, C.AbsEtaMax, C.PTMin, C.DRCut, Quality, Range, C.IsolationBB, C.IsolationEC);
else if(C.InputObject == "TrackerHT0")
Best = MPhaseII.TrackerHT[0];
else if(C.InputObject == "TrackerMHT0")
Best = MPhaseII.TrackerMHT[0];
else if(C.InputObject == "TrackerMET")
Best = MPhaseII.TrackerMET[0];
else if(C.InputObject == "PuppiHT0")
Best = MPhaseII.PuppiHT[0];
else if(C.InputObject == "PuppiMHT0")
Best = MPhaseII.PuppiMHT[0];
else if(C.InputObject == "PuppiMET")
Best = MPhaseII.PuppiMET[0];
else if(C.InputObject == "PFPhase1HT0")
Best = MPhaseII.PFPhase1HT[0];
else if(C.InputObject == "PFPhase1MHT0")
Best = MPhaseII.PFPhase1MHT[0];
else if(C.InputObject == "CaloHT0")
Best = MPhaseII.CaloJetHT[0];
else if(C.InputObject == "CaloMHT0")
Best = MPhaseII.CaloJetMHT[0];
L1Objects.push_back(Best);
}
// for(int i = 0; i < N; i++)
// if(Configurations[i].InputObject == "TkMuon")
// cerr << ReferenceObjects[i] << " " << ReferenceSigns[i] << " " << L1Objects[i].Charge << endl;
// Fill Histograms
for(int i = 0; i < N; i++)
FillHistograms(ObjectHistograms[i], L1Objects[i].P, ReferenceObjects[i], L1Objects[i].Iso, L1Objects[i].Type, ReferenceDXY[i]);
if(DoTree == true)
{
for(int i = 0; i < N; i++)
{
EntryIndex = i;
GenPT = ReferenceObjects[i].GetPT();
GenEta = ReferenceObjects[i].GetEta();
GenPhi = ReferenceObjects[i].GetPhi();
L1PT = L1Objects[i].P.GetPT();
L1Eta = L1Objects[i].P.GetEta();
L1Phi = L1Objects[i].P.GetPhi();
OutputTree->Fill();
}
}
}
Bar.Update(EntryCount);
Bar.Print();
Bar.PrintLine();
File.Close();
}
// Write result to file
for(int i = 0; i < N; i++)
ObjectHistograms[i]->Write(Directories[i]);
if(DoTree == true)
{
OutputFile.cd();
OutputTree->Write();
}
// Clean up
OutputFile.Close();
// Yay
return 0;
}
vector<Configuration> ReadConfigFile(string FileName)
{
vector<Configuration> Result;
ifstream in(FileName);
while(in)
{
char ch[10240];
ch[0] = '\0';
in.getline(ch, 10239, '\n');
Configuration C(ch);
if(C.Valid == true)
Result.push_back(C);
}
in.close();
return Result;
}
| [
"chen.yi.first@gmail.com"
] | chen.yi.first@gmail.com |
2ddad2ca62486abfff7035ed4373bda155f93023 | e94caa5e0894eb25ff09ad75aa104e484d9f0582 | /data/s66/mp2/cp_corrected/63/AB/cc-pVTZ/monomer2/restart.cc | 5640e9a1abcabc8f23f1ccd046bee44a29bd098f | [] | no_license | bdnguye2/divergence_mbpt_noncovalent | d74e5d755497509026e4ac0213ed66f3ca296908 | f29b8c75ba2f1c281a9b81979d2a66d2fd48e09c | refs/heads/master | 2022-04-14T14:09:08.951134 | 2020-04-04T10:49:03 | 2020-04-04T10:49:03 | 240,377,466 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 444 | cc | $chkbas= 28629.1787158052
$nucrep= 121.235662065664
$chkaux= 165202715.591573
$chkupro= 1.00000000000000
$chkipro= 2.00000000000000
$chklasrep= 1.00000000000000
$chkisy6= 4.00000000000000
$chkmos= 70.0839860235587
$chkCCVPQ_ISQR= 1392.60750379225
$chkbqia= 17.1756739092339
$chkr0_MP2= 0.00000000000000
$energy_MP2= -228.703718865297
$sccss= 1.00000000000000
$sccos= 1.00000000000000
$end
| [
"bdnguye2@uci.edu"
] | bdnguye2@uci.edu |
171336c487b075be46683d2839becf073e2e7ba8 | e8ce6d40f69b614e7420c64edce4ef0cce79893d | /2543.cpp | 25c068d57073e5126f6d212fe70961afeb9bdc42 | [] | no_license | Eberty/CodigosURI | 1a23af25454bc059f9cfabce1678c7d2b053aec9 | 65a43c59a8594940312cc4526fe63536b2ca31f2 | refs/heads/master | 2020-05-14T02:04:55.348762 | 2019-08-05T03:00:45 | 2019-08-05T03:00:45 | 181,687,981 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 245 | cpp | #include <bits/stdc++.h>
using namespace std;
int main() {
int n, id, i, j, tot;
while (cin >> n >> id){
tot = 0;
for (int k=0; k<n; k++){
cin >> i >> j;
if (j==0 && i==id)
tot++;
}
cout << tot << endl;
}
return 0;
}
| [
"eberty.silva@hotmail.com"
] | eberty.silva@hotmail.com |
6d7dda6fa1151e85fb5cfeca5e8b0eeaf5753a91 | ce7326d8186d3732095047d7b40da6faece2d114 | /src/qt/tradeplus_coin/settings/settingsbackupwallet.h | 3d2a9724b909094007c7b60128a55b71a38f88f5 | [
"MIT"
] | permissive | tdpsdevextreme/TradePlusCoin | e094d60c3d8d088f26bc16819194930ce39f7f6d | b3f49f72dff3c61edaed2f4be95c4dfa21893f7f | refs/heads/master | 2020-09-05T18:47:52.916679 | 2020-07-29T07:37:59 | 2020-07-29T07:37:59 | 220,183,704 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 749 | h | // Copyright (c) 2019 The TradePlus_Coin developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef SETTINGSBACKUPWALLET_H
#define SETTINGSBACKUPWALLET_H
#include <QWidget>
#include "qt/tradeplus_coin/pwidget.h"
namespace Ui {
class SettingsBackupWallet;
}
class SettingsBackupWallet : public PWidget
{
Q_OBJECT
public:
explicit SettingsBackupWallet(TradePlus_CoinGUI* _window, QWidget *parent = nullptr);
~SettingsBackupWallet();
private slots:
void backupWallet();
void selectFileOutput();
void changePassphrase();
private:
Ui::SettingsBackupWallet *ui;
QString filename;
};
#endif // SETTINGSBACKUPWALLET_H
| [
"57004535+tdpsdevextreme@users.noreply.github.com"
] | 57004535+tdpsdevextreme@users.noreply.github.com |
d590803cc0fe3b91f91864a673f3382ac4d1a43b | a8d6bd217152d9961636f553c457816846396661 | /src/plugins/notification/notificationaction.h | d6c92e66046a02ac70cac4b98a2508f77ddb68c8 | [] | no_license | Sagittarii/phonebot | 1fafba9a5264338f1d87e884aba54329a0e3f882 | 1f9b6c557613777cc1ed9dfc3ba772bc9e592171 | refs/heads/master | 2020-12-26T00:06:08.577590 | 2015-01-18T23:35:21 | 2015-01-18T23:35:21 | 28,517,595 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,118 | h | /*
* Copyright (C) 2015 Zeta Sagittarii <zeta@sagittarii.fr>
*
* You may use this file under the terms of the BSD license as follows:
*
* "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.
* * The names of its contributors may not 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."
*/
#ifndef AMBIANCEACTION_H
#define AMBIANCEACTION_H
#include <action.h>
#include <abstractmetadata.h>
class NotificationActionPrivate;
class NotificationActionMeta;
class NotificationAction : public Action
{
Q_OBJECT
Q_PROPERTY(QString notificationSummary READ notificationSummary WRITE setNotificationSummary NOTIFY notificationSummaryChanged)
Q_PROPERTY(QString notificationText READ notificationText WRITE setNotificationText NOTIFY notificationTextChanged)
PHONEBOT_METADATA(NotificationActionMeta)
// PHONEBOT_NO_METADATA
public:
explicit NotificationAction(QObject *parent = 0);
virtual ~NotificationAction();
QString notificationText() const;
void setNotificationText(const QString ¬ificationText);
QString notificationSummary() const;
void setNotificationSummary(const QString ¬ificationSummary);
bool execute(Rule *rule);
Q_SIGNALS:
void notificationTextChanged();
void notificationSummaryChanged();
private:
Q_DECLARE_PRIVATE(NotificationAction)
void sendFreedesktopNotification(QString summary, QString text);
};
class NotificationActionMeta: public AbstractMetaData
{
Q_OBJECT
public:
Q_INVOKABLE explicit NotificationActionMeta(QObject * parent = 0);
QString name() const;
QString description() const;
QString summary(const QVariantMap &properties) const;
protected:
MetaProperty * getProperty(const QString &property, QObject *parent = 0) const;
};
#endif // AMBIANCEACTION_H
| [
"zeta@sagittarii.fr"
] | zeta@sagittarii.fr |
d5263ee8b45e814dcbeeb59e943612ffcbf952f3 | 8417755e1efd027ebeb77bbd07528b74df033f28 | /Player.Class.cpp | 318a98b8a9936813ceaed80fccb65dfb1f0f6d5e | [] | no_license | ValeriiaMur/CPP_Space_Invaders | af218cb9567fd8d0116c84d486f4833621b9769b | ec81a214e055280e7436a743bd143005ce221266 | refs/heads/master | 2020-09-01T05:43:19.605049 | 2019-11-01T01:47:58 | 2019-11-01T01:47:58 | 218,892,236 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,759 | cpp | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* Player.Class.cpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: rcross <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/10/26 16:57:06 by valeriiamur #+# #+# */
/* Updated: 2019/10/27 22:54:24 by rcross ### ########.fr */
/* */
/* ************************************************************************** */
#include "Player.Class.hpp"
Player::Player() : GameEntity('E'), _lives(3)
{
}
Player::Player(const Player &src)
{
*this = src;
}
Player &Player::operator=(const Player &rhs)
{
if (this != &rhs)
{
this->_gameObj = rhs._gameObj;
this->_current_x = rhs._current_x;
this->_current_y = rhs._current_y;
this->_lives = rhs._lives;
}
return *this;
}
Player::~Player()
{
}
void Player::loseLife(int y)
{
this->_lives--;
this->setX(10);
this->setY(y);
}
int Player::getLives()
{
return this->_lives;
}
bool Player::isTouched(int y, int x)
{
// E
// E
// E
// top character
if (this->getX() - 1 == x && this->getY() -1 == y)
{
return true;
}
// middle character
if (this->getX() == x && this->getY() == y)
{
return true;
}
// bottom character
if (this->getX() - 1 == x && this->getY() + 1 == y)
{
return true;
}
return false;
}
| [
"vmuradia@e1z2r5p24.42.us.org"
] | vmuradia@e1z2r5p24.42.us.org |
8e3d0387ad0827bd9ecda92b7f9ddc0d94f36820 | a838d1c836b47af2545c6933365530992da223e3 | /lucky sum.cpp | a26964dbd9783f786df73f1d9aa797044191c6df | [] | no_license | zilohumberto/cpp | 20332f8470828e551afc703183591065406c7e7c | d607292b5664a0c3e75e62eddafcb32c8e583ac2 | refs/heads/master | 2020-07-05T08:46:27.903080 | 2017-02-02T23:38:30 | 2017-02-02T23:38:30 | 41,068,894 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,066 | cpp | 121A - Lucky Sum
#include <iostream>
#include <queue>
#include <stack>
#include <algorithm>
using namespace std;
#define FOR(i,a,b) for(int i=(a),_i=(b);i<_i;i++)
typedef unsigned long long ull;
vector<ull> num;
ull l,r;
ull atoi(string s){
ull p=1,res=0;
for(int i=s.length()-1;i>=0;i--){
res+=((s[i]-'0')*p);
p*=10;
}
return res;
}
void bt(){
queue<string> q;
q.push("");
while(!q.empty()){
string at=q.front();
q.pop();
ull att=atoi(at);
num.push_back(att);
if(att>(ull)1e9){
continue;
}
q.push(at+"4");
q.push(at+"7");
}
}
int main(){
cin>>l>>r;
bt();
num.erase(num.begin());
ull res=0;
FOR(i,0,num.size()){
if(l>num[i]) continue;
ull val=num[i];
ull val2=val;
if(val>r){
val=r;
}
res+=val2*(val-l+1);
l=val+1;
if(val==r) break;
}
cout<<res<<endl;
return 0;
} | [
"zilohumberto@gmail.com"
] | zilohumberto@gmail.com |
6824d99a1f5cf12f7ae3de6e654abb312178e930 | 09eb4699db4e56d14260a2c3bbb537e7b1ca07ef | /Simple Game Engine/Bob.h | 005de3cc5e417faea5d97d5ebe6f3fab34b96092 | [] | no_license | meowstronaut/SimpleGameEngine | 5314d3d0f8bcb422952225244acdd1e7e6b8fee2 | b3a10000204035504aef802abb4a611873c81aca | refs/heads/master | 2020-12-21T08:00:57.743496 | 2020-01-26T19:45:29 | 2020-01-26T19:45:29 | 236,365,457 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 869 | h | #pragma once
#include <SFML/Graphics.hpp>
using namespace sf;
class Bob {
private:
// Where is Bob
Vector2f m_Position;
// Of course we will need a sprite
Sprite m_Sprite;
// And a texture
// Bob has been working out and he is now a bit more muscular than before
// Furthermore, he fancies himself in lumberjack attire
Texture m_Texture;
// Which direction(s) is the player currently moving in
bool m_LeftPressed;
bool m_RightPressed;
// Bob's speed in pixels per second
float m_Speed;
public:
// We will set Bob up in the constructor
Bob();
// Send a copy of the sprite to main
Sprite getSprite();
// Move Bob in a specific direction
void moveLeft();
void moveRight();
// Stop Bob moving in a specific direction
void stopLeft();
void stopRight();
// We will call this function once every frame
void update(float elapsedTime);
};
| [
"karmela.slacanac@fer.hr"
] | karmela.slacanac@fer.hr |
edb6290b9ac384cda948310bf2e4dfd26e53ad1b | 300b00be8c9c704f678059f4ddc079de916b3c8a | /sources/include/ssiloti/http/media_type.hpp | 1161a9055a1ee17fe2d60688d13d8372ca2a2d2d | [
"BSL-1.0"
] | permissive | jamal-fuma/http | 0a8c83941a1e986773b5faa834b0ea95a5d78fc4 | e895b07008e9888a9bf2beb6590d6c5585f0e3e8 | refs/heads/master | 2020-03-28T11:10:35.652255 | 2016-08-31T23:42:54 | 2016-08-31T23:42:54 | 46,951,561 | 0 | 0 | null | 2015-11-27T00:10:12 | 2015-11-27T00:10:12 | null | UTF-8 | C++ | false | false | 1,085 | hpp | //
// media_type.hpp
// ~~~~~~~~~~~~~~~~~~~~~~~~
//
// Copyright (c) 2011 Steven Siloti (ssiloti@gmail.com)
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
//
#ifndef HTTP_MEDIA_TYPE_HPP
#define HTTP_MEDIA_TYPE_HPP
#include <boost/fusion/include/adapt_struct.hpp>
#include <string>
#include <map>
namespace http
{
typedef std::map<std::string, std::string> parameters_t;
struct media_type
{
void clear()
{
type.clear();
subtype.clear();
parameters.clear();
}
media_type() {}
media_type(const std::string & type, const std::string & subtype)
: type(type), subtype(subtype)
{}
inline media_type & operator=(const std::string &);
std::string type, subtype;
parameters_t parameters;
};
}
BOOST_FUSION_ADAPT_STRUCT(
http::media_type,
(std::string, type)
(std::string, subtype)
(http::parameters_t, parameters)
)
#endif
| [
"Jamal.Natour@fumasoftware.com"
] | Jamal.Natour@fumasoftware.com |
cc200a9d6ec226e919db10344ba7c0d120cc2673 | ba9322f7db02d797f6984298d892f74768193dcf | /r-kvstore/include/alibabacloud/r-kvstore/model/DescribeZonesResult.h | 6f6de732bc58c67b10854127f0b0bb6444be73fe | [
"Apache-2.0"
] | permissive | sdk-team/aliyun-openapi-cpp-sdk | e27f91996b3bad9226c86f74475b5a1a91806861 | a27fc0000a2b061cd10df09cbe4fff9db4a7c707 | refs/heads/master | 2022-08-21T18:25:53.080066 | 2022-07-25T10:01:05 | 2022-07-25T10:01:05 | 183,356,893 | 3 | 0 | null | 2019-04-25T04:34:29 | 2019-04-25T04:34:28 | null | UTF-8 | C++ | false | false | 1,579 | h | /*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef ALIBABACLOUD_R_KVSTORE_MODEL_DESCRIBEZONESRESULT_H_
#define ALIBABACLOUD_R_KVSTORE_MODEL_DESCRIBEZONESRESULT_H_
#include <string>
#include <vector>
#include <utility>
#include <alibabacloud/core/ServiceResult.h>
#include <alibabacloud/r-kvstore/R_kvstoreExport.h>
namespace AlibabaCloud
{
namespace R_kvstore
{
namespace Model
{
class ALIBABACLOUD_R_KVSTORE_EXPORT DescribeZonesResult : public ServiceResult
{
public:
struct KVStoreZone
{
std::string zoneName;
std::string zoneId;
bool switchNetwork;
std::string regionId;
bool isRds;
};
DescribeZonesResult();
explicit DescribeZonesResult(const std::string &payload);
~DescribeZonesResult();
std::vector<KVStoreZone> getZones()const;
protected:
void parse(const std::string &payload);
private:
std::vector<KVStoreZone> zones_;
};
}
}
}
#endif // !ALIBABACLOUD_R_KVSTORE_MODEL_DESCRIBEZONESRESULT_H_ | [
"haowei.yao@alibaba-inc.com"
] | haowei.yao@alibaba-inc.com |
a93822ea9d7e3ba7cd9321d15c0bc36c60ed53b2 | 08b8cf38e1936e8cec27f84af0d3727321cec9c4 | /data/crawl/wget/new_hunk_3096.cpp | 1ba4214732aef605b2c64260500ab8bcd6fae8b6 | [] | no_license | ccdxc/logSurvey | eaf28e9c2d6307140b17986d5c05106d1fd8e943 | 6b80226e1667c1e0760ab39160893ee19b0e9fb1 | refs/heads/master | 2022-01-07T21:31:55.446839 | 2018-04-21T14:12:43 | 2018-04-21T14:12:43 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 21,086 | cpp | # Italian messages for wget.
# Copyright (C) 1998, 2004, 2005 Free Software Foundation, Inc.
# This file is distributed under the same license as the wget package.
# Marco Colombo <m.colombo@ed.ac.uk>, 2004, 2005.
# Giovanni Bortolozzo <borto@dei.unipd.it>, 1998.
#
msgid ""
msgstr ""
"Project-Id-Version: wget 1.9.1\n"
"POT-Creation-Date: 2003-10-11 16:21+0200\n"
"PO-Revision-Date: 2005-02-11 13:03+0000\n"
"Last-Translator: Marco Colombo <m.colombo@ed.ac.uk>\n"
"Language-Team: Italian <tp@lists.linux.it>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
# FIXME
#: src/connect.c:88
#, c-format
msgid "Unable to convert `%s' to a bind address. Reverting to ANY.\n"
msgstr "Impossibile convertire \"%s\" in un indirizzo di bind. Utilizzato ANY.\n"
# Spazio aggiunto per una migliore formattazione:
# Connessione a localhost [127.0.0.1]:80...
#: src/connect.c:165
#, c-format
msgid "Connecting to %s[%s]:%hu... "
msgstr "Connessione a %s [%s]:%hu... "
#: src/connect.c:168
#, c-format
msgid "Connecting to %s:%hu... "
msgstr "Connessione a %s:%hu..."
#: src/connect.c:222
msgid "connected.\n"
msgstr "connesso.\n"
#: src/convert.c:171
#, c-format
msgid "Converted %d files in %.2f seconds.\n"
msgstr "Convertiti %d file in %.2f secondi.\n"
#: src/convert.c:197
#, c-format
msgid "Converting %s... "
msgstr "Conversione di %s... "
#: src/convert.c:210
msgid "nothing to do.\n"
msgstr "niente da fare.\n"
#: src/convert.c:218 src/convert.c:242
#, c-format
msgid "Cannot convert links in %s: %s\n"
msgstr "Impossibile convertire i link in %s: %s\n"
#: src/convert.c:233
#, c-format
msgid "Unable to delete `%s': %s\n"
msgstr "Impossibile rimuovere \"%s\": %s\n"
#: src/convert.c:439
#, c-format
msgid "Cannot back up %s as %s: %s\n"
msgstr "Impossibile fare il backup di %s in %s: %s\n"
#: src/cookies.c:606
#, c-format
msgid "Error in Set-Cookie, field `%s'"
msgstr "Errore in Set-Cookie, campo \"%s\""
#: src/cookies.c:629
#, c-format
msgid "Syntax error in Set-Cookie: %s at position %d.\n"
msgstr "Errore di sintassi in Set-Cookie: %s alla posizione %d.\n"
#: src/cookies.c:1426
#, c-format
msgid "Cannot open cookies file `%s': %s\n"
msgstr "Impossibile aprire il file dei cookies \"%s\": %s\n"
#: src/cookies.c:1438
#, c-format
msgid "Error writing to `%s': %s\n"
msgstr "Errore scrivendo in \"%s\": %s.\n"
#: src/cookies.c:1442
#, c-format
msgid "Error closing `%s': %s\n"
msgstr "Errore chiudendo \"%s\": %s\n"
#: src/ftp-ls.c:812
msgid "Unsupported listing type, trying Unix listing parser.\n"
msgstr "Tipo di elencazione (listing) non gestita, provo un parser di liste Unix.\n"
#: src/ftp-ls.c:857 src/ftp-ls.c:859
#, c-format
msgid "Index of /%s on %s:%d"
msgstr "Indice della directory /%s su %s:%d"
#: src/ftp-ls.c:882
msgid "time unknown "
msgstr "data sconosciuta "
#: src/ftp-ls.c:886
msgid "File "
msgstr "File "
#: src/ftp-ls.c:889
msgid "Directory "
msgstr "Directory "
#: src/ftp-ls.c:892
msgid "Link "
msgstr "Link "
#: src/ftp-ls.c:895
msgid "Not sure "
msgstr "Incerto "
#: src/ftp-ls.c:913
#, c-format
msgid " (%s bytes)"
msgstr " (%s byte)"
#. Second: Login with proper USER/PASS sequence.
#: src/ftp.c:202
#, c-format
msgid "Logging in as %s ... "
msgstr "Accesso come utente %s ... "
#: src/ftp.c:215 src/ftp.c:268 src/ftp.c:299 src/ftp.c:353 src/ftp.c:468
#: src/ftp.c:519 src/ftp.c:551 src/ftp.c:611 src/ftp.c:675 src/ftp.c:748
#: src/ftp.c:796
msgid "Error in server response, closing control connection.\n"
msgstr "Errore nella risposta del server, chiusura della connessione di controllo.\n"
#: src/ftp.c:223
msgid "Error in server greeting.\n"
msgstr "Errore nel codice di benvenuto del server.\n"
#: src/ftp.c:231 src/ftp.c:362 src/ftp.c:477 src/ftp.c:560 src/ftp.c:621
#: src/ftp.c:685 src/ftp.c:758 src/ftp.c:806
msgid "Write failed, closing control connection.\n"
msgstr "Scrittura non riuscita, chiusura della connessione di controllo.\n"
#: src/ftp.c:238
msgid "The server refuses login.\n"
msgstr "Il server rifiuta il login.\n"
#: src/ftp.c:245
msgid "Login incorrect.\n"
msgstr "Login non corretto.\n"
#: src/ftp.c:252
msgid "Logged in!\n"
msgstr "Login eseguito!\n"
#: src/ftp.c:277
msgid "Server error, can't determine system type.\n"
msgstr "Errore del server, impossibile determinare il tipo di sistema.\n"
#: src/ftp.c:287 src/ftp.c:596 src/ftp.c:659 src/ftp.c:716
msgid "done. "
msgstr "fatto. "
#: src/ftp.c:341 src/ftp.c:498 src/ftp.c:533 src/ftp.c:779 src/ftp.c:827
msgid "done.\n"
msgstr "fatto.\n"
#: src/ftp.c:370
#, c-format
msgid "Unknown type `%c', closing control connection.\n"
msgstr "Tipo \"%c\" sconosciuto, chiusura della connessione di controllo.\n"
#: src/ftp.c:383
msgid "done. "
msgstr "fatto. "
#: src/ftp.c:389
msgid "==> CWD not needed.\n"
msgstr "==> CWD non necessaria.\n"
#: src/ftp.c:484
#, c-format
msgid ""
"No such directory `%s'.\n"
"\n"
msgstr ""
"La directory \"%s\" non esiste.\n"
"\n"
#. do not CWD
#: src/ftp.c:502
msgid "==> CWD not required.\n"
msgstr "==> CWD non necessaria.\n"
# GB: initiate = inizializzare
#: src/ftp.c:567
msgid "Cannot initiate PASV transfer.\n"
msgstr "Impossibile iniziare il trasferimento PASV.\n"
# GB: parse = comprendere
#: src/ftp.c:571
msgid "Cannot parse PASV response.\n"
msgstr "Impossibile analizzare la risposta PASV.\n"
#: src/ftp.c:588
#, c-format
msgid "couldn't connect to %s:%hu: %s\n"
msgstr "connessione a %s:%hu non riuscita: %s\n"
#: src/ftp.c:638
#, c-format
msgid "Bind error (%s).\n"
msgstr "Errore di bind (%s).\n"
#: src/ftp.c:645
msgid "Invalid PORT.\n"
msgstr "Porta non valida.\n"
# Cos'è questo REST?
#: src/ftp.c:698
#, c-format
msgid ""
"\n"
"REST failed; will not truncate `%s'.\n"
msgstr ""
"\n"
"REST non riuscito; \"%s\" non verrà troncato.\n"
#: src/ftp.c:705
msgid ""
"\n"
"REST failed, starting from scratch.\n"
msgstr ""
"\n"
"REST non riuscito, riavvio da capo.\n"
#: src/ftp.c:766
#, c-format
msgid ""
"No such file `%s'.\n"
"\n"
msgstr ""
"Il file \"%s\" non esiste.\n"
"\n"
#: src/ftp.c:814
#, c-format
msgid ""
"No such file or directory `%s'.\n"
"\n"
msgstr ""
"Il file o la directory \"%s\" non esiste.\n"
"\n"
#: src/ftp.c:898 src/ftp.c:906
#, c-format
msgid "Length: %s"
msgstr "Lunghezza: %s"
#: src/ftp.c:900 src/ftp.c:908
#, c-format
msgid " [%s to go]"
msgstr " [%s alla fine]"
# FIXME
#: src/ftp.c:910
msgid " (unauthoritative)\n"
msgstr " (non autorevole)\n"
#: src/ftp.c:936
#, c-format
msgid "%s: %s, closing control connection.\n"
msgstr "%s: %s, chiusura della connessione di controllo.\n"
#: src/ftp.c:944
#, c-format
msgid "%s (%s) - Data connection: %s; "
msgstr "%s (%s) - Connessione dati: %s; "
#: src/ftp.c:961
msgid "Control connection closed.\n"
msgstr "Connessione di controllo chiusa.\n"
#: src/ftp.c:979
msgid "Data transfer aborted.\n"
msgstr "Trasferimento dati interrotto.\n"
#: src/ftp.c:1044
#, c-format
msgid "File `%s' already there, not retrieving.\n"
msgstr "Il file \"%s\" esiste già, scaricamento non effettuato.\n"
#: src/ftp.c:1114 src/http.c:1716
#, c-format
msgid "(try:%2d)"
msgstr "(tentativo:%2d)"
#: src/ftp.c:1180 src/http.c:1975
#, c-format
msgid ""
"%s (%s) - `%s' saved [%ld]\n"
"\n"
msgstr ""
"%s (%s) - \"%s\" salvato [%ld]\n"
"\n"
#: src/ftp.c:1222 src/main.c:890 src/recur.c:377 src/retr.c:596
#, c-format
msgid "Removing %s.\n"
msgstr "Rimozione di %s.\n"
#: src/ftp.c:1264
#, c-format
msgid "Using `%s' as listing tmp file.\n"
msgstr "Usato \"%s\" come file temporaneo per l'elencazione.\n"
#: src/ftp.c:1279
#, c-format
msgid "Removed `%s'.\n"
msgstr "\"%s\" rimosso.\n"
#: src/ftp.c:1314
#, c-format
msgid "Recursion depth %d exceeded max. depth %d.\n"
msgstr "La profondità di ricorsione %d eccede il massimo (%d).\n"
#. Remote file is older, file sizes can be compared and
#. are both equal.
#: src/ftp.c:1384
#, c-format
msgid "Remote file no newer than local file `%s' -- not retrieving.\n"
msgstr "Il file remoto è più vecchio del file locale \"%s\" -- scaricamento non effettuato.\n"
#. Remote file is newer or sizes cannot be matched
#: src/ftp.c:1391
#, c-format
msgid ""
"Remote file is newer than local file `%s' -- retrieving.\n"
"\n"
msgstr "Il file remoto è più recente del file locale \"%s\" -- scaricamento in corso.\n"
#. Sizes do not match
#: src/ftp.c:1398
#, c-format
msgid ""
"The sizes do not match (local %ld) -- retrieving.\n"
"\n"
msgstr ""
"Le dimensioni non coincidono (locale %ld) -- scaricamento in corso.\n"
"\n"
#: src/ftp.c:1415
msgid "Invalid name of the symlink, skipping.\n"
msgstr "Il nome del link simbolico non è valido, ignorato.\n"
#: src/ftp.c:1432
#, c-format
msgid ""
"Already have correct symlink %s -> %s\n"
"\n"
msgstr ""
"Link simbolico già esistente %s -> %s\n"
"\n"
#: src/ftp.c:1440
#, c-format
msgid "Creating symlink %s -> %s\n"
msgstr "Creazione del link simbolico %s -> %s\n"
#: src/ftp.c:1451
#, c-format
msgid "Symlinks not supported, skipping symlink `%s'.\n"
msgstr "Link simbolici non gestiti, link \"%s\" ignorato.\n"
#: src/ftp.c:1463
#, c-format
msgid "Skipping directory `%s'.\n"
msgstr "Directory \"%s\" ignorata.\n"
#: src/ftp.c:1472
#, c-format
msgid "%s: unknown/unsupported file type.\n"
msgstr "%s: tipo di file sconosciuto/non gestito.\n"
#: src/ftp.c:1499
#, c-format
msgid "%s: corrupt time-stamp.\n"
msgstr "%s: timestamp danneggiato.\n"
#: src/ftp.c:1524
#, c-format
msgid "Will not retrieve dirs since depth is %d (max %d).\n"
msgstr "Le directory non verranno scaricate perché la loro profondità è %d (max %d).\n"
#: src/ftp.c:1574
#, c-format
msgid "Not descending to `%s' as it is excluded/not-included.\n"
msgstr "Non scendo nella directory \"%s\" perché è esclusa/non inclusa.\n"
#: src/ftp.c:1639 src/ftp.c:1652
#, c-format
msgid "Rejecting `%s'.\n"
msgstr "\"%s\" rifiutato.\n"
#. No luck.
#. #### This message SUCKS. We should see what was the
#. reason that nothing was retrieved.
#: src/ftp.c:1698
#, c-format
msgid "No matches on pattern `%s'.\n"
msgstr "Nessun corrispondenza con il modello \"%s\".\n"
#: src/ftp.c:1764
#, c-format
msgid "Wrote HTML-ized index to `%s' [%ld].\n"
msgstr "Indice in formato HTML scritto in \"%s\" [%ld].\n"
#: src/ftp.c:1769
#, c-format
msgid "Wrote HTML-ized index to `%s'.\n"
msgstr "Indice in formato HTML scritto in \"%s\".\n"
#: src/gen_sslfunc.c:117
msgid "Could not seed OpenSSL PRNG; disabling SSL.\n"
msgstr "Impossibile inizializzare OpenSSL PRNG; SSL disabilitato.\n"
#: src/getopt.c:675
#, c-format
msgid "%s: option `%s' is ambiguous\n"
msgstr "%s: l'opzione \"%s\" è ambigua\n"
#: src/getopt.c:700
#, c-format
msgid "%s: option `--%s' doesn't allow an argument\n"
msgstr "%s: l'opzione \"--%s\" non accetta argomenti\n"
#: src/getopt.c:705
#, c-format
msgid "%s: option `%c%s' doesn't allow an argument\n"
msgstr "%s: l'opzione \"%c%s\" non accetta argomenti\n"
#: src/getopt.c:723 src/getopt.c:896
#, c-format
msgid "%s: option `%s' requires an argument\n"
msgstr "%s: l'opzione \"%s\" richiede un argomento\n"
#. --option
#: src/getopt.c:752
#, c-format
msgid "%s: unrecognized option `--%s'\n"
msgstr "%s: opzione \"--%s\" non riconosciuta\n"
#. +option or -option
#: src/getopt.c:756
#, c-format
msgid "%s: unrecognized option `%c%s'\n"
msgstr "%s: opzione \"%c%s\" non riconosciuta\n"
#. 1003.2 specifies the format of this message.
#: src/getopt.c:782
#, c-format
msgid "%s: illegal option -- %c\n"
msgstr "%s: opzione illecita -- %c\n"
#: src/getopt.c:785
#, c-format
msgid "%s: invalid option -- %c\n"
msgstr "%s: opzione non valida -- %c\n"
#. 1003.2 specifies the format of this message.
#: src/getopt.c:815 src/getopt.c:945
#, c-format
msgid "%s: option requires an argument -- %c\n"
msgstr "%s: l'opzione richiede un argomento -- %c\n"
#: src/getopt.c:862
#, c-format
msgid "%s: option `-W %s' is ambiguous\n"
msgstr "%s: l'opzione \"-W %s\" è ambigua\n"
#: src/getopt.c:880
#, c-format
msgid "%s: option `-W %s' doesn't allow an argument\n"
msgstr "%s: l'opzione \"-W %s\" non accetta argomenti\n"
#: src/host.c:636
#, c-format
msgid "Resolving %s... "
msgstr "Risoluzione di %s in corso... "
#: src/host.c:656 src/host.c:672
#, c-format
msgid "failed: %s.\n"
msgstr "fallito: %s.\n"
#: src/host.c:674
msgid "failed: timed out.\n"
msgstr "fallito: tempo scaduto.\n"
#: src/host.c:762
msgid "Host not found"
msgstr "Host non trovato"
#: src/host.c:764
msgid "Unknown error"
msgstr "Errore sconosciuto"
#: src/html-url.c:293
#, c-format
msgid "%s: Cannot resolve incomplete link %s.\n"
msgstr "%s: impossibile risolvere il link incompleto %s.\n"
#. this is fatal
#: src/http.c:674
msgid "Failed to set up an SSL context\n"
msgstr "Impostazione del contesto SSL non riuscita\n"
#: src/http.c:680
#, c-format
msgid "Failed to load certificates from %s\n"
msgstr "Caricamento dei certificati da %s non riuscito\n"
#: src/http.c:684 src/http.c:692
msgid "Trying without the specified certificate\n"
msgstr "Provo senza il certificato specificato\n"
#: src/http.c:688
#, c-format
msgid "Failed to get certificate key from %s\n"
msgstr "Ottenimento della chiave di certificato da %s non riuscito\n"
#: src/http.c:761 src/http.c:1809
msgid "Unable to establish SSL connection.\n"
msgstr "Impossibile stabilire una connessione SSL.\n"
#: src/http.c:770
#, c-format
msgid "Reusing connection to %s:%hu.\n"
msgstr "Riutilizzo della connessione a %s:%hu.\n"
#: src/http.c:1034
#, c-format
msgid "Failed writing HTTP request: %s.\n"
msgstr "Scrittura della richiesta HTTP non riuscita: %s.\n"
#: src/http.c:1039
#, c-format
msgid "%s request sent, awaiting response... "
msgstr "%s richiesta inviata, aspetto la risposta... "
# parsing: analisi? lettura?
#: src/http.c:1083
msgid "End of file while parsing headers.\n"
msgstr "Raggiunta la fine del file durante l'analisi degli header.\n"
#: src/http.c:1093
#, c-format
msgid "Read error (%s) in headers.\n"
msgstr "Errore di lettura degli header (%s).\n"
#: src/http.c:1128
msgid "No data received"
msgstr "Nessun dato ricevuto"
#: src/http.c:1130
msgid "Malformed status line"
msgstr "Riga di stato malformata"
#: src/http.c:1135
msgid "(no description)"
msgstr "(nessuna descrizione)"
#: src/http.c:1267
msgid "Authorization failed.\n"
msgstr "Autorizzazione fallita.\n"
#: src/http.c:1274
msgid "Unknown authentication scheme.\n"
msgstr "Schema di autotentificazione sconosciuto.\n"
#: src/http.c:1314
#, c-format
msgid "Location: %s%s\n"
msgstr "Posizione: %s%s\n"
#: src/http.c:1315 src/http.c:1454
msgid "unspecified"
msgstr "non specificato"
#: src/http.c:1316
msgid " [following]"
msgstr " [segue]"
#: src/http.c:1383
msgid ""
"\n"
" The file is already fully retrieved; nothing to do.\n"
"\n"
msgstr ""
"\n"
" Il file è già completamente scaricato; niente da fare.\n"
"\n"
#: src/http.c:1401
#, c-format
msgid ""
"\n"
"Continued download failed on this file, which conflicts with `-c'.\n"
"Refusing to truncate existing file `%s'.\n"
"\n"
msgstr ""
"\n"
"La ripresa dello scaricamento non è riuscita su questo file, in conflitto\n"
"con \"-c\".\n"
"Troncamento del file esistente \"%s\" rifiutato.\n"
"\n"
#. No need to print this output if the body won't be
#. downloaded at all, or if the original server response is
#. printed.
#: src/http.c:1444
msgid "Length: "
msgstr "Lunghezza: "
#: src/http.c:1449
#, c-format
msgid " (%s to go)"
msgstr " (%s alla fine)"
#: src/http.c:1454
msgid "ignored"
msgstr "ignorato"
#: src/http.c:1598
msgid "Warning: wildcards not supported in HTTP.\n"
msgstr "Attenzione: i metacaratteri non sono supportati in HTTP.\n"
#. If opt.noclobber is turned on and file already exists, do not
#. retrieve the file
#: src/http.c:1628
#, c-format
msgid "File `%s' already there, will not retrieve.\n"
msgstr "Il file \"%s\" è già presente, scaricamento non effettuato.\n"
#: src/http.c:1800
#, c-format
msgid "Cannot write to `%s' (%s).\n"
msgstr "Impossibile scrivere in \"%s\" (%s).\n"
#: src/http.c:1819
#, c-format
msgid "ERROR: Redirection (%d) without location.\n"
msgstr "ERRORE: redirezione (%d) senza posizione.\n"
#: src/http.c:1851
#, c-format
msgid "%s ERROR %d: %s.\n"
msgstr "%s ERRORE %d: %s.\n"
#: src/http.c:1864
msgid "Last-modified header missing -- time-stamps turned off.\n"
msgstr "Header Last-modified mancante -- date disattivate.\n"
#: src/http.c:1872
msgid "Last-modified header invalid -- time-stamp ignored.\n"
msgstr "Header Last-modified non valido -- data ignorata.\n"
# Perché "server file" e non "remote file"? C'è differenza?
#: src/http.c:1895
#, c-format
msgid ""
"Server file no newer than local file `%s' -- not retrieving.\n"
"\n"
msgstr "Il file del server è più vecchio del file locale \"%s\" -- scaricamento non effettuato.\n"
#: src/http.c:1903
#, c-format
msgid "The sizes do not match (local %ld) -- retrieving.\n"
msgstr "Le dimensioni non coincidono (locale %ld) -- scaricamento in corso.\n"
#: src/http.c:1907
msgid "Remote file is newer, retrieving.\n"
msgstr "Il file remoto è più recente, scaricamento in corso.\n"
#: src/http.c:1948
#, c-format
msgid ""
"%s (%s) - `%s' saved [%ld/%ld]\n"
"\n"
msgstr ""
"%s (%s) - \"%s\" salvato [%ld/%ld]\n"
"\n"
#: src/http.c:1998
#, c-format
msgid "%s (%s) - Connection closed at byte %ld. "
msgstr "%s (%s) - Connessione chiusa al byte %ld. "
# FIXME: o "salvato"?
#: src/http.c:2007
#, c-format
msgid ""
"%s (%s) - `%s' saved [%ld/%ld])\n"
"\n"
msgstr ""
"%s (%s) - \"%s\" salvati [%ld/%ld])\n"
"\n"
#: src/http.c:2028
#, c-format
msgid "%s (%s) - Connection closed at byte %ld/%ld. "
msgstr "%s (%s) - Connessione chiusa al byte %ld/%ld. "
#: src/http.c:2040
#, c-format
msgid "%s (%s) - Read error at byte %ld (%s)."
msgstr "%s (%s) - Errore di lettura al byte %ld (%s). "
#: src/http.c:2049
#, c-format
msgid "%s (%s) - Read error at byte %ld/%ld (%s). "
msgstr "%s (%s) - Errore di lettura al byte %ld/%ld (%s). "
#: src/init.c:342
#, c-format
msgid "%s: WGETRC points to %s, which doesn't exist.\n"
msgstr "%s: WGETRC punta a %s, che non esiste.\n"
#: src/init.c:398 src/netrc.c:276
#, c-format
msgid "%s: Cannot read %s (%s).\n"
msgstr "%s: impossibile leggere %s (%s).\n"
#: src/init.c:416 src/init.c:422
#, c-format
msgid "%s: Error in %s at line %d.\n"
msgstr "%s: errore in %s alla linea %d.\n"
#: src/init.c:454
#, c-format
msgid "%s: Warning: Both system and user wgetrc point to `%s'.\n"
msgstr "%s: Attenzione: il file wgetrc di sistema e quello personale puntano entrambi a \"%s\".\n"
#: src/init.c:594
#, c-format
msgid "%s: Invalid --execute command `%s'\n"
msgstr "%s: comando \"%s\" passato a --execute non valido\n"
# boolean: booleano? logico?
#: src/init.c:630
#, c-format
msgid "%s: %s: Invalid boolean `%s', use `on' or `off'.\n"
msgstr "%s: %s: valore logico \"%s\" non valido, usare \"on\" oppure \"off\".\n"
#: src/init.c:673
#, c-format
msgid "%s: %s: Invalid boolean `%s', use always, on, off, or never.\n"
msgstr "%s: %s: valore logico \"%s\" non valido, usare \"always\", \"on\", \"off\", o \"never\".\n"
#: src/init.c:691
#, c-format
msgid "%s: %s: Invalid number `%s'.\n"
msgstr "%s: %s: numero \"%s\" non valido.\n"
#: src/init.c:930 src/init.c:949
#, c-format
msgid "%s: %s: Invalid byte value `%s'\n"
msgstr "%s: %s: valore di byte \"%s\" non valido\n"
#: src/init.c:974
#, c-format
msgid "%s: %s: Invalid time period `%s'\n"
msgstr "%s: %s: periodo di tempo \"%s\" non valido\n"
#: src/init.c:1051
#, c-format
msgid "%s: %s: Invalid header `%s'.\n"
msgstr "%s: %s: header \"%s\" non valido.\n"
#: src/init.c:1106
#, c-format
msgid "%s: %s: Invalid progress type `%s'.\n"
msgstr "%s: %s: tipo di progresso \"%s\" non valido.\n"
#: src/init.c:1157
#, c-format
msgid "%s: %s: Invalid restriction `%s', use `unix' or `windows'.\n"
msgstr "%s: %s: restrizione \"%s\" non valida, usare \"unix\" o \"windows\".\n"
#: src/init.c:1198
#, c-format
msgid "%s: %s: Invalid value `%s'.\n"
msgstr "%s: %s: valore \"%s\" non valido.\n"
#: src/log.c:636
#, c-format
msgid ""
"\n"
"%s received, redirecting output to `%s'.\n"
msgstr ""
"\n"
"%s ricevuti, output redirezionato su \"%s\".\n"
#. Eek! Opening the alternate log file has failed. Nothing we
#. can do but disable printing completely.
#: src/log.c:643
#, c-format
msgid "%s: %s; disabling logging.\n"
msgstr "%s: %s; logging disabilitato.\n"
#: src/main.c:127
#, c-format
msgid "Usage: %s [OPTION]... [URL]...\n"
msgstr "Uso: %s [OPZIONE]... [URL]...\n"
#: src/main.c:135
#, c-format
msgid "GNU Wget %s, a non-interactive network retriever.\n"
msgstr "GNU Wget %s, un programma non interattivo per scaricare file dalla rete.\n"
#. Had to split this in parts, so the #@@#%# Ultrix compiler and cpp
#. don't bitch. Also, it makes translation much easier.
#: src/main.c:140
msgid ""
"\n"
"Mandatory arguments to long options are mandatory for short options too.\n"
"\n"
msgstr ""
"\n"
"Gli argomenti obbligatori per le opzioni lunghe lo sono anche per quelle corte.\n"
"\n"
#: src/main.c:144
msgid ""
"Startup:\n"
" -V, --version display the version of Wget and exit.\n"
| [
"993273596@qq.com"
] | 993273596@qq.com |
e0a223a2ca18cbcef19fc88958515ad6b2d6e956 | 7af554ff51603fd9f01903577be9836aba03e3f1 | /src/Settings.cc | ed2bebe66f3b1dd09a9fae2b4e5b5fd290ebe894 | [] | no_license | wimmer-k/Salvador | eaf042ab918eb5f958cad496273e535d84f028c7 | 9241b66b298c6231a95d8787a75567afee32094f | refs/heads/master | 2021-12-15T00:50:48.146849 | 2021-12-13T16:46:23 | 2021-12-13T16:46:23 | 51,063,680 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,642 | cc | #include "Settings.hh"
using namespace std;
/*!
Constructor, setup the settings
\param settings the settings file
*/
Settings::Settings(char *settings){
finputfile = settings;
ReadSettings();
}
/*!
Read in the settings from the fie
*/
void Settings::ReadSettings(){
TEnv *set = new TEnv(finputfile.c_str());
fverbose = set->GetValue("VerboseLevel",0);
fwithDALI = set->GetValue("WithDALI",true);
for(int i=0;i<6;i++)
ftoffset[i] = set->GetValue(Form("TOF.Offset.%d",i),300.0);
fDALIfile = set->GetValue("DALI.File","/home/wimmer/ribf94/db/DALI.xml");
fPPACfile = set->GetValue("BigRIPS.PPAC.File","/home/wimmer/ribf94/db/BigRIPSPPAC.xml");
fPPACdefaultfile = set->GetValue("BigRIPS.PPAC.Def.File","/home/wimmer/ribf94/db/BigRIPSPPAC.xml");
fplasticfile = set->GetValue("BigRIPS.Plastic.File","/home/wimmer/ribf94/db/BigRIPSPlastic.xml");
fICfile = set->GetValue("BigRIPS.IC.File","/home/wimmer/ribf94/db/BigRIPSIC.xml");
ffocalfile = set->GetValue("BigRIPS.Focal.File","/home/wimmer/ribf94/db/FocalPlane.xml");
fmatrixfile[0] = set->GetValue("Matrix.35.File","/home/wimmer/ribf94/matrix/mat1.mat");
fmatrixfile[1] = set->GetValue("Matrix.57.File","/home/wimmer/ribf94/matrix/mat2.mat");
fmatrixfile[2] = set->GetValue("Matrix.89.File","/home/wimmer/ribf94/matrix/F8F9_LargeAccAchr.mat");
fmatrixfile[3] = set->GetValue("Matrix.911.File","/home/wimmer/ribf94/matrix/F9F11_LargeAccAchr.mat");
fTimeCorFile = set->GetValue("Time.Corrections.File","settings.dat");
fEvtNrFile = set->GetValue("Event.Number.File","settings.dat");
fdorecal = false;
if(set->GetValue("Do.ReCalibration",0)>0){
fdorecal = true;
fDALIrecalfile = set->GetValue("ReCalibration.File",(char*)"settings/recal.dat");
}
fbeta = set->GetValue("AverageBeta",0.5);
fbetaM[0] = set->GetValue("BeforeBeta",0.5);
fbetaM[1] = set->GetValue("AfterBeta",0.5);
fminoslength = set->GetValue("LengthMINOS",5.0);
foverflow = set->GetValue("Overflow.Threshold",8000);
funderflow = set->GetValue("Underflow.Threshold",0);
faddbacktype = set->GetValue("Addback.Type",1);
faddbackdistance = set->GetValue("Addback.Distance",20.);
faddbackangle = set->GetValue("Addback.Angle",20.);
faddbackthreshold = set->GetValue("Addback.Threshold",200.);
faddbacktdiff[0] = set->GetValue("Addback.TimeDiff.Low",-50.);
faddbacktdiff[1] = set->GetValue("Addback.TimeDiff.High",20.);
ftimegate[0] = set->GetValue("Timing.Gate.Low", -1000.);
ftimegate[1] = set->GetValue("Timing.Gate.High",1000.);
fDALIposfile = set->GetValue("InteractionPoints",(char*)"settings/iponts.dat");
fDALIbadfile = set->GetValue("Bad.Channels",(char*)"settings/baddali.dat");
fppac3align[0] = set->GetValue("PPAC3.Align.X0",0.0);
fppac3align[1] = set->GetValue("PPAC3.Align.Y0",0.0);
fppac3align[2] = set->GetValue("PPAC3.Align.X1",0.0);
fppac3align[3] = set->GetValue("PPAC3.Align.Y1",0.0);
ftargetposition = set->GetValue("Target.Position",129.5);
ff5xgate[0] = set->GetValue("F5X.Gate.Low", -200.);
ff5xgate[1] = set->GetValue("F5X.Gate.High", 200.);
fdeltagate[2] = set->GetValue("Delta.Gate.Low", -999.);
fdeltagate[3] = set->GetValue("Delta.Gate.High", 999.);
fdeltagate[0] = set->GetValue("Delta.Gate.BR.Low", -999.);
fdeltagate[1] = set->GetValue("Delta.Gate.BR.High", 999.);
faoq_corr[0][0][0] = set->GetValue("BigRIPS.AoQCorr_F3X",0.0);
faoq_corr[0][0][1] = set->GetValue("BigRIPS.AoQCorr_F3A",0.0);
faoq_corr[0][0][2] = set->GetValue("BigRIPS.AoQCorr_F3Q",0.0);
faoq_corr[0][1][0] = set->GetValue("BigRIPS.AoQCorr_F5X",0.0);
faoq_corr[0][1][1] = set->GetValue("BigRIPS.AoQCorr_F5A",0.0);
faoq_corr[0][1][2] = set->GetValue("BigRIPS.AoQCorr_F5Q",0.0);
faoq_corr[0][2][0] = set->GetValue("BigRIPS.AoQCorr_F7X",0.0);
faoq_corr[0][2][1] = set->GetValue("BigRIPS.AoQCorr_F7A",0.0);
faoq_corr[0][2][2] = set->GetValue("BigRIPS.AoQCorr_F7Q",0.0);
faoq_corr[1][0][0] = set->GetValue("ZeroDeg.AoQCorr_F8X",0.0);
faoq_corr[1][0][1] = set->GetValue("ZeroDeg.AoQCorr_F8A",0.0);
faoq_corr[1][0][2] = set->GetValue("ZeroDeg.AoQCorr_F8Q",0.0);
faoq_corr[1][1][0] = set->GetValue("ZeroDeg.AoQCorr_F9X",0.0);
faoq_corr[1][1][1] = set->GetValue("ZeroDeg.AoQCorr_F9A",0.0);
faoq_corr[1][1][2] = set->GetValue("ZeroDeg.AoQCorr_F9Q",0.0);
faoq_corr[1][2][0] = set->GetValue("ZeroDeg.AoQCorr_F11X",0.0);
faoq_corr[1][2][1] = set->GetValue("ZeroDeg.AoQCorr_F11A",0.0);
faoq_corr[1][2][2] = set->GetValue("ZeroDeg.AoQCorr_F11Q",0.0);
faoq_lin[0][0] = set->GetValue("BigRIPS.AoQCorr_Gain",1.0);
faoq_lin[0][1] = set->GetValue("BigRIPS.AoQCorr_Offs",0.0);
faoq_lin[1][0] = set->GetValue("ZeroDeg.AoQCorr_Gain",1.0);
faoq_lin[1][1] = set->GetValue("ZeroDeg.AoQCorr_Offs",0.0);
if(fverbose>0)
PrintSettings();
}
/*!
Print the settings to the screen
*/
void Settings::PrintSettings(){
cout << "verbose level\t" << fverbose << endl;
if(fwithDALI)
cout << "using DALI" << endl;
else
cout << "without DALI" << endl;
for(int i=0;i<6;i++)
cout << Form("TOF offset.%d\t",i) << ftoffset[i] << endl;
cout << "BigRIPS.PPAC.File\t" << fPPACfile << endl;
cout << "BigRIPS.PPAC.Def.File\t" << fPPACdefaultfile << endl;
cout << "BigRIPS.Plastic.File\t" << fplasticfile << endl;
cout << "BigRIPS.IC.File\t" << fICfile << endl;
cout << "BigRIPS.Focal.File\t" << ffocalfile << endl;
cout << "Matrix.35.File\t" << fmatrixfile[0] << endl;
cout << "Matrix.57.File\t" << fmatrixfile[1] << endl;
cout << "Matrix.89.File\t" << fmatrixfile[2] << endl;
cout << "Matrix.911.File\t" << fmatrixfile[3] << endl;
cout << "bad channels file\t" << fDALIbadfile << endl;
cout << "DALI calibration file\t" << fDALIfile << endl;
if(fdorecal){
cout << "performing re-calibration with second order" << endl;
cout << "DALI second order calibration file\t" << fDALIrecalfile << endl;
}
cout << "position file\t" << fDALIposfile << endl;
cout << "timing gate\t" <<ftimegate[0] << " to " << ftimegate[1] << endl;
cout << "addback type\t" << faddbacktype << endl;
cout << "addback distance\t" << faddbackdistance << endl;
cout << "addback angle\t" << faddbackangle << endl;
cout << "addback time difference\t" <<faddbacktdiff[0] << " to " << faddbacktdiff[1] << endl;
cout << "beta\t" << fbeta << endl;
cout << "align PPAC 3 x0 = " << fppac3align[0] << " , y0 = " << fppac3align[1] << endl;
cout << "align PPAC 3 x1 = " << fppac3align[2] << " , y1 = " << fppac3align[3] << endl;
cout << "target position\t" << ftargetposition << endl;
cout << "gate on F5X position\t" <<ff5xgate[0] << " to " << ff5xgate[1] << endl;
cout << "gate on delta for charge changes BR\t" <<fdeltagate[0] << " to " << fdeltagate[1] << endl;
cout << "gate on delta for charge changes ZD\t" <<fdeltagate[2] << " to " << fdeltagate[3] << endl;
cout << "BigRIPS.AoQCorr_F3X\t" << faoq_corr[0][0][0] << endl;
cout << "BigRIPS.AoQCorr_F3A\t" << faoq_corr[0][0][1] << endl;
cout << "BigRIPS.AoQCorr_F5X\t" << faoq_corr[0][1][0] << endl;
cout << "BigRIPS.AoQCorr_F5A\t" << faoq_corr[0][1][1] << endl;
cout << "BigRIPS.AoQCorr_F7X\t" << faoq_corr[0][2][0] << endl;
cout << "BigRIPS.AoQCorr_F7A\t" << faoq_corr[0][2][1] << endl;
cout << "ZeroDeg.AoQCorr_F8X\t" << faoq_corr[1][0][0] << endl;
cout << "ZeroDeg.AoQCorr_F8A\t" << faoq_corr[1][0][1] << endl;
cout << "ZeroDeg.AoQCorr_F9X\t" << faoq_corr[1][1][0] << endl;
cout << "ZeroDeg.AoQCorr_F9A\t" << faoq_corr[1][1][1] << endl;
cout << "ZeroDeg.AoQCorr_F11X\t" << faoq_corr[1][2][0] << endl;
cout << "ZeroDeg.AoQCorr_F11A\t" << faoq_corr[1][2][1] << endl;
}
| [
"wimmer@phys.s.u-tokyo.ac.jp"
] | wimmer@phys.s.u-tokyo.ac.jp |
83293586674695eb743ae4233d6deeaea57481ee | 7c9624eaa0f8ee884dc79880f94a09d79d6aeb07 | /cocos/2d/CCSprite.h | 43ab4dbfbde4e24fb1f182f61bdc00e4d4e808d7 | [
"MIT"
] | permissive | gloomyzen/cocos2d | 7f0bbc49f5fee656b5314314ea74da5ed8d4180a | d39713609f60ee2d1d074412f3bc4c885e375c50 | refs/heads/master | 2023-04-01T01:18:04.653034 | 2021-03-23T15:23:20 | 2021-03-23T15:23:20 | 326,439,700 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 26,325 | h | /****************************************************************************
Copyright (c) 2008-2010 Ricardo Quesada
Copyright (c) 2010-2012 cocos2d-x.org
Copyright (c) 2011 Zynga Inc.
Copyright (c) 2013-2016 Chukong Technologies Inc.
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
http://www.cocos2d-x.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.
****************************************************************************/
#pragma once
#include <string>
#include "2d/CCNode.h"
#include "2d/CCDrawNode.h"
#include "base/CCProtocols.h"
#include "renderer/CCTextureAtlas.h"
#include "renderer/CCTrianglesCommand.h"
#include "renderer/CCCustomCommand.h"
#include "2d/CCAutoPolygon.h"
NS_CC_BEGIN
class SpriteBatchNode;
class SpriteFrame;
class Animation;
class Rect;
class Size;
class Texture2D;
struct transformValues_;
#ifdef SPRITE_RENDER_IN_SUBPIXEL
#undef SPRITE_RENDER_IN_SUBPIXEL
#endif
#if CC_SPRITEBATCHNODE_RENDER_SUBPIXEL
#define SPRITE_RENDER_IN_SUBPIXEL
#else
#define SPRITE_RENDER_IN_SUBPIXEL(__ARGS__) (ceil(__ARGS__))
#endif
/**
* @addtogroup _2d
* @{
*/
/**
* Sprite is a 2d image ( http://en.wikipedia.org/wiki/Sprite_(computer_graphics) ).
*
* Sprite can be created with an image, or with a sub-rectangle of an image.
*
* To optimize the Sprite rendering, please follow the following best practices:
* - Put all your sprites in the same spritesheet (http://www.codeandweb.com/what-is-a-sprite-sheet).
* - Use the same blending function for all your sprites.
* - ...and the Renderer will automatically "batch" your sprites (will draw all of them in one OpenGL call).
*
* Sprite has 4 types or rendering modes:
*
* - `QUAD`: Renders the sprite using 2 triangles (1 rectangle): uses small memory, but renders empty pixels (slow)
* - `POLYGON`: Renders the sprite using many triangles (depending on the setting): Uses more memory, but doesn't render so much empty pixels (faster)
* - `SLICE9`: Renders the sprite using 18 triangles (9 rectangles). Useful to to scale buttons an other rectangular sprites
* - `QUAD_BATCHNODE`: Renders the sprite using 2 triangles (1 rectangle) with a static batch, which has some limitations (see below)
*
* By default, the sprite uses `QUAD` mode. But can be changed to `POLYGON` when calling `setPolygonInfo()`. To use `SLICE9` call `setCenterRect()` or
* `serCenterRectNormalized()`. To use `QUAD_BATCHNODE` parent the sprite to a `SpriteBatchNode` object.
*
*
* `QUAD_BATCHNODE` is deprecated and should be avoid. It has the following limitations:
*
* - The Alias/Antialias property belongs to `SpriteBatchNode`, so you can't individually set the aliased property.
* - The Blending function property belongs to `SpriteBatchNode`, so you can't individually set the blending function property.
* - `ParallaxNode` is not supported, but can be simulated with a "proxy" sprite.
* - Sprites can only have other Sprites (or subclasses of Sprite) as children.
*
* The default anchorPoint in Sprite is (0.5, 0.5).
*/
class CC_DLL Sprite : public Node, public TextureProtocol
{
public:
enum class RenderMode {
QUAD,
POLYGON,
SLICE9,
QUAD_BATCHNODE
};
/** Sprite invalid index on the SpriteBatchNode. */
static const int INDEX_NOT_INITIALIZED = -1;
/// @name Creators
/// @{
/**
* Creates an empty sprite without texture. You can call setTexture method subsequently.
*
* @memberof Sprite
* @return An autoreleased sprite object.
*/
static Sprite* create();
/**
* Creates a sprite with an image filename.
*
* After creation, the rect of sprite will be the size of the image,
* and the offset will be (0,0).
*
* @param filename A path to image file, e.g., "scene1/monster.png".
* @return An autoreleased sprite object.
*/
static Sprite* create(const std::string& filename);
/**
* Creates a polygon sprite with a polygon info.
*
* After creation, the rect of sprite will be the size of the image,
* and the offset will be (0,0).
*
* @param polygonInfo A path to image file, e.g., "scene1/monster.png".
* @return An autoreleased sprite object.
*/
static Sprite* create(const PolygonInfo& info);
/**
* Creates a sprite with an image filename and a rect.
*
* @param filename A path to image file, e.g., "scene1/monster.png".
* @param rect A subrect of the image file.
* @return An autoreleased sprite object.
*/
static Sprite* create(const std::string& filename, const Rect& rect);
/**
* Creates a sprite with a Texture2D object.
*
* After creation, the rect will be the size of the texture, and the offset will be (0,0).
*
* @param texture A pointer to a Texture2D object.
* @return An autoreleased sprite object.
*/
static Sprite* createWithTexture(Texture2D *texture);
/**
* Creates a sprite with a texture and a rect.
*
* After creation, the offset will be (0,0).
*
* @param texture A pointer to an existing Texture2D object.
* You can use a Texture2D object for many sprites.
* @param rect Only the contents inside the rect of this texture will be applied for this sprite.
* @param rotated Whether or not the rect is rotated.
* @return An autoreleased sprite object.
*/
static Sprite* createWithTexture(Texture2D *texture, const Rect& rect, bool rotated=false);
/**
* Creates a sprite with an sprite frame.
*
* @param spriteFrame A sprite frame which involves a texture and a rect.
* @return An autoreleased sprite object.
*/
static Sprite* createWithSpriteFrame(SpriteFrame *spriteFrame);
/**
* Creates a sprite with an sprite frame name.
*
* A SpriteFrame will be fetched from the SpriteFrameCache by spriteFrameName param.
* If the SpriteFrame doesn't exist it will raise an exception.
*
* @param spriteFrameName The name of sprite frame.
* @return An autoreleased sprite object.
*/
static Sprite* createWithSpriteFrameName(const std::string& spriteFrameName);
virtual void setDebug(bool) override;
// end of creators group
/// @}
/// @{
/// @name BatchNode methods
/**
* Updates the quad according the rotation, position, scale values.
*/
virtual void updateTransform() override;
/**
* Returns the batch node object if this sprite is rendered by SpriteBatchNode.
*
* @return The SpriteBatchNode object if this sprite is rendered by SpriteBatchNode,
* nullptr if the sprite isn't used batch node.
*/
virtual SpriteBatchNode* getBatchNode() const;
/**
* Sets the batch node to sprite.
* @warning This method is not recommended for game developers. Sample code for using batch node
* @code
* SpriteBatchNode *batch = SpriteBatchNode::create("Images/grossini_dance_atlas.png", 15);
* Sprite *sprite = Sprite::createWithTexture(batch->getTexture(), Rect(0, 0, 57, 57));
* batch->addChild(sprite);
* layer->addChild(batch);
* @endcode
*/
virtual void setBatchNode(SpriteBatchNode *spriteBatchNode);
/// @} end of BatchNode methods
/// @{
/// @name Texture / Frame methods
/** Sets a new texture (from a filename) to the sprite.
*
* @memberof Sprite
* It will call `setTextureRect()` with the texture's content size.
*/
virtual void setTexture(const std::string &filename );
/** @overload
*
* The Texture's rect is not changed.
*/
virtual void setTexture(Texture2D *texture) override;
/** Returns the Texture2D object used by the sprite. */
virtual Texture2D* getTexture() const override;
/**
* Updates the texture rect of the Sprite in points.
*
* It will call setTextureRect(const Rect& rect, bool rotated, const Size& untrimmedSize) with \p rotated = false, and \p utrimmedSize = rect.size.
*/
virtual void setTextureRect(const Rect& rect);
/** @overload
*
* It will update the texture coordinates and the vertex rectangle.
*/
virtual void setTextureRect(const Rect& rect, bool rotated, const Size& untrimmedSize);
/**
* Sets the vertex rect.
*
* It will be called internally by setTextureRect.
* Useful if you want to create 2x images from SD images in Retina Display.
* Do not call it manually. Use setTextureRect instead.
*/
virtual void setVertexRect(const Rect& rect);
/**
* setCenterRectNormalized
*
* Useful to implement "9 sliced" sprites.
* The default value is (0,0) - (1,1), which means that only one "slice" will be used: From top-left (0,0) to bottom-right (1,1).
* If the value is different than (0,0), (1,1), then the sprite will be sliced into a 3 x 3 grid. The four corners of this grid are applied without
* performing any scaling. The upper- and lower-middle parts are scaled horizontally, and the left- and right-middle parts are scaled vertically.
* The center is scaled in both directions.
* Important: The scaling is based the Sprite's trimmed size.
*
* Limitations: Does not work when the sprite is part of `SpriteBatchNode`.
*/
virtual void setCenterRectNormalized(const Rect& rect);
/**
* getCenterRectNormalized
*
* Returns the CenterRect in normalized coordinates
*/
virtual Rect getCenterRectNormalized() const;
/* setCenterRect
*
* Like `setCenterRectNormalized`, but instead of being in normalized coordinates, it is in points coordinates
*/
virtual void setCenterRect(const Rect& rect);
/**
* @brief Returns the Cap Insets rect
*
* @return Scale9Sprite's cap inset.
*/
virtual Rect getCenterRect() const;
/** @{
* Sets a new SpriteFrame to the Sprite.
*/
virtual void setSpriteFrame(const std::string &spriteFrameName);
virtual void setSpriteFrame(SpriteFrame* newFrame);
/** @} */
/**
* Returns whether or not a SpriteFrame is being displayed.
*/
virtual bool isFrameDisplayed(SpriteFrame *frame) const;
/**
* Returns the current displayed frame.
*/
virtual SpriteFrame* getSpriteFrame() const;
/// @} End of frames methods
/// @{
/// @name Animation methods
/**
* Changes the display frame with animation name and index.
* The animation name will be get from the AnimationCache.
*/
virtual void setDisplayFrameWithAnimationName(const std::string& animationName, unsigned int frameIndex);
/// @}
/// @{
/// @name Sprite Properties' setter/getters.
/**
* Whether or not the Sprite needs to be updated in the Atlas.
*
* @return True if the sprite needs to be updated in the Atlas, false otherwise.
*/
virtual bool isDirty() const { return _dirty; }
/**
* Makes the Sprite to be updated in the Atlas.
*/
virtual void setDirty(bool dirty) { _dirty = dirty; }
/**
* @js NA
*/
virtual std::string getDescription() const override;
/// @{
/// @name Functions inherited from Node.
virtual void setScaleX(float scaleX) override;
virtual void setScaleY(float scaleY) override;
virtual void setScale(float scaleX, float scaleY) override;
/**
* @js NA
* @lua NA
*/
virtual void setPosition(const Vec2& pos) override;
virtual void setPosition(float x, float y) override;
virtual void setRotation(float rotation) override;
virtual void setRotationSkewX(float rotationX) override;
virtual void setRotationSkewY(float rotationY) override;
virtual void setSkewX(float sx) override;
virtual void setSkewY(float sy) override;
virtual void removeChild(Node* child, bool cleanup) override;
virtual void removeAllChildrenWithCleanup(bool cleanup) override;
virtual void reorderChild(Node *child, int zOrder) override;
using Node::addChild;
virtual void addChild(Node *child, int zOrder, int tag) override;
virtual void addChild(Node *child, int zOrder, const std::string &name) override;
virtual void sortAllChildren() override;
virtual void setScale(float scale) override;
virtual void setPositionZ(float positionZ) override;
virtual void setAnchorPoint(const Vec2& anchor) override;
virtual void setContentSize(const Size& size) override;
virtual void setIgnoreAnchorPointForPosition(bool value) override;
virtual void setVisible(bool bVisible) override;
virtual void draw(Renderer *renderer, const Mat4 &transform, uint32_t flags) override;
virtual void setOpacityModifyRGB(bool modify) override;
virtual bool isOpacityModifyRGB() const override;
/// @}
/**
* Returns the quad (tex coords, vertex coords and color) information.
* @js NA
* @lua NA
*/
V3F_C4B_T2F_Quad getQuad() const { return _quad; }
/**
* Returns whether or not the texture rectangle is rotated.
*/
bool isTextureRectRotated() const { return _rectRotated; }
/**
* Returns the index used on the TextureAtlas.
*/
unsigned int getAtlasIndex() const { return _atlasIndex; }
/**
* Sets the index used on the TextureAtlas.
*
* @warning Don't modify this value unless you know what you are doing.
*/
void setAtlasIndex(unsigned int atlasIndex) { _atlasIndex = atlasIndex; }
/**
* Returns the rect of the Sprite in points.
*/
const Rect& getTextureRect() const { return _rect; }
/**
* Gets the weak reference of the TextureAtlas when the sprite is rendered using via SpriteBatchNode.
*/
TextureAtlas* getTextureAtlas() const { return _textureAtlas; }
/**
* Set ProgramState
*/
virtual void setProgramState(backend::ProgramState *programState) override;
/**
* Get current ProgramState
*/
virtual backend::ProgramState *getProgramState() const override;
/**
* Sets the weak reference of the TextureAtlas when the sprite is rendered using via SpriteBatchNode.
*/
void setTextureAtlas(TextureAtlas *textureAtlas) { _textureAtlas = textureAtlas; }
/**
* Gets the offset position of the sprite. Calculated automatically by editors like Zwoptex.
*/
const Vec2& getOffsetPosition() const { return _offsetPosition; }
/**
* Returns the flag which indicates whether the sprite is flipped horizontally or not.
*
* It only flips the texture of the sprite, and not the texture of the sprite's children.
* Also, flipping the texture doesn't alter the anchorPoint.
* If you want to flip the anchorPoint too, and/or to flip the children too use:
* sprite->setScaleX(sprite->getScaleX() * -1);
*
* @return true if the sprite is flipped horizontally, false otherwise.
*/
bool isFlippedX() const;
/**
* Sets whether the sprite should be flipped horizontally or not.
*
* @param flippedX true if the sprite should be flipped horizontally, false otherwise.
*/
void setFlippedX(bool flippedX);
/**
* Return the flag which indicates whether the sprite is flipped vertically or not.
*
* It only flips the texture of the sprite, and not the texture of the sprite's children.
* Also, flipping the texture doesn't alter the anchorPoint.
* If you want to flip the anchorPoint too, and/or to flip the children too use:
* sprite->setScaleY(sprite->getScaleY() * -1);
*
* @return true if the sprite is flipped vertically, false otherwise.
*/
bool isFlippedY() const;
/**
* Sets whether the sprite should be flipped vertically or not.
*
* @param flippedY true if the sprite should be flipped vertically, false otherwise.
*/
void setFlippedY(bool flippedY);
/// @} End of Sprite properties getter/setters
/**
* returns a reference of the polygon information associated with this sprite
*
* @return a reference of PolygonInfo
*/
const PolygonInfo& getPolygonInfo() const;
/**
* set the sprite to use this new PolygonInfo
*
* @param PolygonInfo the polygon information object
*/
void setPolygonInfo(const PolygonInfo& info);
/** whether or not contentSize stretches the sprite's texture */
void setStretchEnabled(bool enabled);
/** returns whether or not contentSize stretches the sprite's texture */
bool isStretchEnabled() const;
//
// Overrides
//
/// @{
/// @name Functions inherited from TextureProtocol.
/**
*@code
*When this function bound into js or lua,the parameter will be changed.
*In js: var setBlendFunc(var src, var dst).
*In lua: local setBlendFunc(local src, local dst).
*@endcode
*/
void setBlendFunc(const BlendFunc &blendFunc) override { _blendFunc = blendFunc; }
/**
* @js NA
* @lua NA
*/
const BlendFunc& getBlendFunc() const override { return _blendFunc; }
/// @}
int getResourceType() const { return _fileType; }
const std::string& getResourceName() const { return _fileName; }
CC_CONSTRUCTOR_ACCESS :
/**
* @js ctor
*/
Sprite();
virtual ~Sprite();
/* Initializes an empty sprite with no parameters. */
virtual bool init() override;
/**
* Initializes a sprite with a texture.
*
* After initialization, the rect used will be the size of the texture, and the offset will be (0,0).
*
* @param texture A pointer to an existing Texture2D object.
* You can use a Texture2D object for many sprites.
* @return True if the sprite is initialized properly, false otherwise.
*/
virtual bool initWithTexture(Texture2D *texture);
/**
* Initializes a sprite with a PolygonInfo.
*
* After initialization, the rect used will be the size of the texture, and the offset will be (0,0).
*
* @param PolygonInfo a Polygon info contains the structure of the polygon.
* @return True if the sprite is initialized properly, false otherwise.
*/
virtual bool initWithPolygon(const PolygonInfo& info);
/**
* Initializes a sprite with a texture and a rect.
*
* After initialization, the offset will be (0,0).
*
* @param texture A pointer to an existing Texture2D object.
* You can use a Texture2D object for many sprites.
* @param rect Only the contents inside rect of this texture will be applied for this sprite.
* @return True if the sprite is initialized properly, false otherwise.
*/
virtual bool initWithTexture(Texture2D *texture, const Rect& rect);
/**
* Initializes a sprite with a texture and a rect in points, optionally rotated.
*
* After initialization, the offset will be (0,0).
* @note This is the designated initializer.
*
* @param texture A Texture2D object whose texture will be applied to this sprite.
* @param rect A rectangle assigned the contents of texture.
* @param rotated Whether or not the texture rectangle is rotated.
* @return True if the sprite is initialized properly, false otherwise.
*/
virtual bool initWithTexture(Texture2D *texture, const Rect& rect, bool rotated);
/**
* Initializes a sprite with an SpriteFrame. The texture and rect in SpriteFrame will be applied on this sprite.
*
* @param spriteFrame A SpriteFrame object. It should includes a valid texture and a rect.
* @return True if the sprite is initialized properly, false otherwise.
*/
virtual bool initWithSpriteFrame(SpriteFrame *spriteFrame);
/**
* Initializes a sprite with an sprite frame name.
*
* A SpriteFrame will be fetched from the SpriteFrameCache by name.
* If the SpriteFrame doesn't exist it will raise an exception.
*
* @param spriteFrameName A key string that can fetched a valid SpriteFrame from SpriteFrameCache.
* @return True if the sprite is initialized properly, false otherwise.
*/
virtual bool initWithSpriteFrameName(const std::string& spriteFrameName);
/**
* Initializes a sprite with an image filename.
*
* This method will find filename from local file system, load its content to Texture2D,
* then use Texture2D to create a sprite.
* After initialization, the rect used will be the size of the image. The offset will be (0,0).
*
* @param filename The path to an image file in local file system.
* @return True if the sprite is initialized properly, false otherwise.
* @lua init
*/
virtual bool initWithFile(const std::string& filename);
/**
* Initializes a sprite with an image filename, and a rect.
*
* This method will find filename from local file system, load its content to Texture2D,
* then use Texture2D to create a sprite.
* After initialization, the offset will be (0,0).
*
* @param filename The path to an image file in local file system.
* @param rect The rectangle assigned the content area from texture.
* @return True if the sprite is initialized properly, false otherwise.
* @lua init
*/
virtual bool initWithFile(const std::string& filename, const Rect& rect);
virtual void setVertexLayout();
virtual void updateShaders(const char* vert, const char* frag);
virtual RenderMode getRenderMode() const;
virtual void setCorrectPixelTexture();
static void setUsePixelMode(bool value);
protected:
virtual void updateColor() override;
virtual void setTextureCoords(const Rect& rect);
virtual void setTextureCoords(const Rect& rect, V3F_C4B_T2F_Quad* outQuad);
virtual void setVertexCoords(const Rect& rect, V3F_C4B_T2F_Quad* outQuad);
virtual void updateBlendFunc();
virtual void setReorderChildDirtyRecursively();
virtual void setDirtyRecursively(bool value);
virtual void flipX();
virtual void flipY();
virtual void updateProgramStateTexture();
void updatePoly();
void updateStretchFactor();
void populateTriangle(int quadIndex, const V3F_C4B_T2F_Quad& quad);
void setMVPMatrixUniform();
void setProgramState(backend::ProgramType type);
//
// Data used when the sprite is rendered using a SpriteSheet
//
TextureAtlas* _textureAtlas = nullptr; /// SpriteBatchNode texture atlas (weak reference)
unsigned int _atlasIndex = 0; /// Absolute (real) Index on the SpriteSheet
SpriteBatchNode* _batchNode = nullptr; /// Used batch node (weak reference)
bool _dirty = false; /// Whether the sprite needs to be updated
bool _recursiveDirty = false; /// Whether all of the sprite's children needs to be updated
bool _shouldBeHidden = false; /// should not be drawn because one of the ancestors is not visible
Mat4 _transformToBatch;
//
// Data used when the sprite is self-rendered
//
BlendFunc _blendFunc; /// It's required for TextureProtocol inheritance
Texture2D* _texture = nullptr; /// Texture2D object that is used to render the sprite
SpriteFrame* _spriteFrame = nullptr;
TrianglesCommand _trianglesCommand;
backend::UniformLocation _mvpMatrixLocation;
backend::UniformLocation _textureLocation;
backend::UniformLocation _alphaTextureLocation;
#if DEBUG
DrawNode *_debugDrawNode = nullptr;
#endif //DEBUG
//
// Shared data
//
// texture
Rect _rect; /// Rectangle of Texture2D
bool _rectRotated = false; /// Whether the texture is rotated
Rect _centerRectNormalized = {0,0,1,1}; /// Rectangle to implement "slice 9"
RenderMode _renderMode = Sprite::RenderMode::QUAD; /// render mode used by the Sprite: Quad, Slice9, Polygon or Quad_Batchnode
Vec2 _stretchFactor = Vec2::ONE; /// stretch factor to match the contentSize. for 1- and 9- slice sprites
Size _originalContentSize = Size::ZERO; /// original content size
// Offset Position (used by Zwoptex)
Vec2 _offsetPosition;
Vec2 _unflippedOffsetPositionFromCenter;
// vertex coords, texture coords and color info
V3F_C4B_T2F_Quad _quad;
V3F_C4B_T2F* _trianglesVertex = nullptr;
unsigned short* _trianglesIndex = nullptr;
PolygonInfo _polyInfo;
// opacity and RGB protocol
bool _opacityModifyRGB = false;
// image is flipped
bool _flippedX = false; /// Whether the sprite is flipped horizontally or not
bool _flippedY = false; /// Whether the sprite is flipped vertically or not
bool _insideBounds = true; /// whether or not the sprite was inside bounds the previous frame
std::string _fileName;
int _fileType = 0;
bool _stretchEnabled = true;
private:
CC_DISALLOW_COPY_AND_ASSIGN(Sprite);
};
// end of sprite_nodes group
/// @}
NS_CC_END
| [
"faustkeller45@gmail.com"
] | faustkeller45@gmail.com |
189b5ac92cd4a94ee1aad09cf9df735b20a4f948 | 2d425d2ea4982ebd12746b894362a3a25e3bded1 | /Pract/19pract.cpp | ea6ff8c93e643ee09c7d1fa20586024825b355d8 | [] | no_license | EgorEast/CFU | dcddb9aa3e4bbc71805e09a4f81a18a16a736261 | 12f9fb8dd2fcbb1165524d604c38aeae162e1344 | refs/heads/master | 2020-08-10T01:50:21.542896 | 2020-07-31T09:58:28 | 2020-07-31T09:58:28 | 209,067,197 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,874 | cpp | #include <iostream>
#include <cstdlib>
#include<cmath>
using namespace std;
int main() {
setlocale(LC_ALL, "Russian");
int answer = 1;
while (answer == 1) {
int variation = 0;
int size, zero = 0, one = 0, two = 0, three = 0, four = 0, five = 0, six = 0, seven = 0, eight = 0, nine = 0;
cout << "Введите число n (количество элементов): ";
cin >> size;
if (size<1 || size > pow(10, 5)) {
cout << "Ошибка! Количество элементов должно быть больше 1 и меньше 10^5" << endl;
continue;
}
cout << "Введите элементы (через пробел) от 0 до 9: ";
int* number = new int[size];
for (int i = 0; i < size; i++) {
cin >> number[i];
if (number[i] < 0 || number[i] > 9) {
cout << "Ошибка! Число должно быть от 0 до 9" << endl << endl;
variation = 1;
break;
}
}
if (variation == 1) continue;
for (int i = 0; i < 10; i++) {
if (number[i] == 0) zero++;
if (number[i] == 1) one++;
if (number[i] == 2) two++;
if (number[i] == 3) three++;
if (number[i] == 4) four++;
if (number[i] == 5) five++;
if (number[i] == 6) six++;
if (number[i] == 7) seven++;
if (number[i] == 8) eight++;
if (number[i] == 9) nine++;
}
if (zero != 0) cout << "0: " << zero << endl;
if (one != 0) cout << "1: " << one << endl;
if (two != 0) cout << "2: " << two << endl;
if (three != 0) cout << "3: " << three << endl;
if (four != 0) cout << "4: " << four << endl;
if (five!= 0) cout << "5: " << five << endl;
if (six!= 0) cout << "6: " << six << endl;
if (seven!= 0) cout << "7: " << seven << endl;
if (eight!= 0) cout << "8: " << eight << endl;
if (nine!= 0) cout << "9: " << nine << endl;
cout << "Повторить еще раз? (1 - Да): ";
cin >> answer;
}
} | [
"jir.jir35@gmail.com"
] | jir.jir35@gmail.com |
db63d35e3529f91c5e64cffa49e881d430599eb8 | 6735c8d122ed37ceacde967fac3f7f5755a7722b | /08_dataConstruct/03_LinkListTranditioal.cpp | 297a4964081c6dc3569d9eab619de29d1fa40bbd | [] | no_license | gujiangqi/MyStudying | a50f626f7a661d9042542e648e889145117e66b2 | 25be24a0f6f27fc568f250437306dedb58489c92 | refs/heads/master | 2020-08-16T12:21:13.711038 | 2019-11-20T08:47:47 | 2019-11-20T08:47:47 | 215,501,071 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,889 | cpp | /*
传统链表:
数据包含下一个节点的指针,下一个节点指向下一个数据
操作主要包括:
1.增
2.删
3.修
4.查
*/
#include <iostream>
#include <cstdlib>
#include "string.h"
using namespace std;
typedef struct _Data
{
int age;
char name[64];
_Data *next;
_Data()
{
int age = 0;
next = (_Data *)malloc(sizeof(_Data));
}
} NodeDef;
class MyLinkList
{
public:
MyLinkList(); //初始化链表表头
~MyLinkList(); //删除链表
NodeDef *LinkList_Insert(NodeDef *node, int index = 0); //默认头部插入数据
NodeDef *LinkList_InsertBack(NodeDef *node); //默认头部插入数据
NodeDef *LinkList_Traval(int index); //查询某个节点数据
NodeDef *LinkList_delete(int index); //删除某个节点数据
private:
int m_length;
NodeDef *Header;
};
MyLinkList::MyLinkList()
{
m_length = 0;
Header = (NodeDef *)malloc(sizeof(NodeDef));
Header->next = NULL;
};
MyLinkList::~MyLinkList()
{
m_length = 0;
free(Header);
}
NodeDef *MyLinkList::LinkList_Insert(NodeDef *node, int index)
{
if (node == NULL)
{
printf("pls input again:");
return NULL;
}
NodeDef *current = Header;
for (int i = 0; i < index; i++)
{
current = current->next;
}
node->next = current->next;
current->next = node;
m_length++;
return Header;
}
NodeDef *MyLinkList::LinkList_InsertBack(NodeDef *node)
{
if (node == NULL)
{
printf("pls input again:");
return NULL;
}
NodeDef *current = Header;
for (int i = 0; i < m_length; i++)
{
current = current->next;
}
current->next = node;
node->next = NULL;
m_length++;
return Header;
}
NodeDef *MyLinkList::LinkList_Traval(int index)
{
NodeDef *current = Header;
for (int i = 0; i < index; i++)
{
current = current->next;
}
return current->next;
}
NodeDef *MyLinkList::LinkList_delete(int index)
{
NodeDef *current = Header;
for (int i = 0; i < index; i++)
{
current = current->next;
}
current->next = current->next->next;
m_length--;
return Header;
}
int main()
{
MyLinkList myList;
NodeDef d1, d2, d3, d4;
d1.age = 1;
strcpy(d1.name, "a");
d2.age = 2;
strcpy(d2.name, "b");
d3.age = 3;
strcpy(d3.name, "c");
d4.age = 4;
strcpy(d4.name, "d");
myList.LinkList_Insert(&d1);
NodeDef *temp = myList.LinkList_Traval(0);
// cout << temp->name << endl;
myList.LinkList_Insert(&d2);
myList.LinkList_InsertBack(&d3);
NodeDef *temp2 = myList.LinkList_Traval(2);
cout << temp2->name << endl;
system("pause");
return 0;
} | [
"gujiangqi@qq.com"
] | gujiangqi@qq.com |
8046c71f5f49f6b6f438381f063c454a4bea17f3 | f6cf14142621b8c4709c6f2073172f39577b1964 | /common/lib/rec/robotino3/iocom/tag/SetOdometryRotationFwd.h | e3972e2198e947ca4415bfec685ca6e67d6d1927 | [] | no_license | BusHero/robotino_api2 | f3eef6c1ace2ff5a8b93db691aa779db8a9ce3a1 | 9757814871aa90977c2548a8a558f4b2cb015e5d | refs/heads/master | 2021-06-18T21:32:14.390621 | 2021-02-18T15:21:48 | 2021-02-18T15:21:48 | 165,231,765 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 406 | h | #ifndef _REC_ROBOTINO3_IOCOM_TAG_SetOdometryRotationFWD_H_
#define _REC_ROBOTINO3_IOCOM_TAG_SetOdometryRotationFWD_H_
#include <QtCore>
namespace rec
{
namespace robotino3
{
namespace iocom
{
namespace tag
{
class SetOdometryRotation;
typedef QSharedPointer< SetOdometryRotation > SetOdometryRotationPointer;
}
}
}
}
#endif //_REC_ROBOTINO3_IOCOM_TAG_SetOdometryRotationFWD_H_
| [
"petru.cervac@gmail.com"
] | petru.cervac@gmail.com |
b1aa4a0530a43ffaecce372f3fa15942e4408f40 | e0cd22a3dbf1589cee37c33374607ed2ce66e95e | /cpp/opensourcesrcs/ace/ace/config-dgux-4.x-ghs.h | 41462470b3df48c570ef4eaa544fc6350834a858 | [
"BSD-3-Clause"
] | permissive | CodeOpsTech/DesignPatternsCpp | 1335402e2c88a4b8715430210ec153af7bb733be | 2c67495ffdc65443fae98b2879f7b608e3562876 | refs/heads/master | 2021-01-11T19:19:48.498940 | 2017-07-19T02:52:56 | 2017-07-19T02:52:56 | 79,355,314 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,264 | h | /* -*- C++ -*- */
// config-dgux-4.x-ghs.h,v 4.13 2000/03/23 21:27:02 nanbor Exp
// The following configuration file is designed to work for DG/UX
// 4.x platforms using the Green Hills Multi C++ compiler.
#ifndef ACE_CONFIG_H
#define ACE_CONFIG_H
#include "ace/pre.h"
#define ACE_DGUX
# define ACE_CONFIG_INCLUDE_GHS_COMMON
# include "ace/config-ghs-common.h"
// Static objects do not get initialized correctly, so this is needed.
#define ACE_HAS_NONSTATIC_OBJECT_MANAGER
// Platform requires (struct sockaddr *) for msg_name field of struct
// msghdr.
#define ACE_HAS_SOCKADDR_MSG_NAME
// Platform lacks strcasecmp().
#define ACE_LACKS_STRCASECMP
// Platform supports System V IPC (most versions of UNIX, but not Win32)
#define ACE_HAS_SYSV_IPC
#define ACE_HAS_CONSISTENT_SIGNAL_PROTOTYPES
// Platform supports system configuration information.
#define ACE_HAS_SYSINFO
// Platform supports the POSIX regular expression library.
#define ACE_HAS_REGEX
// Platform supports recvmsg and sendmsg.
#define ACE_HAS_MSG
// Platform supports reentrant functions (i.e., all the POSIX *_r functions).
//#define ACE_HAS_REENTRANT_FUNCTIONS
// Platform has terminal ioctl flags like TCGETS and TCSETS.
#define ACE_HAS_TERM_IOCTLS
// Compiler/platform correctly calls init()/fini() for shared libraries.
#define ACE_HAS_AUTOMATIC_INIT_FINI
// Platform supports POSIX O_NONBLOCK semantics.
#define ACE_HAS_POSIX_NONBLOCK
// Compiler/platform has correctly prototyped header files.
#define ACE_HAS_CPLUSPLUS_HEADERS
// Compiler/platform supports SunOS high resolution timers.
// #define ACE_HAS_HI_RES_TIMER
// Platform supports IP multicast
#define ACE_HAS_IP_MULTICAST
// Green Hills doesn't give a preprocessor symbol for long double
#define ACE_SIZEOF_LONG_DOUBLE 8
// Platform contains <poll.h>.
#define ACE_HAS_POLL
// Platform supports POSIX timers via timestruc_t.
#define ACE_HAS_POSIX_TIME
// Platform supports the /proc file system.
#define ACE_HAS_PROC_FS
// Platform supports the prusage_t struct.
// #define ACE_HAS_PRUSAGE_T
#define ACE_HAS_GETRUSAGE
// Compiler/platform defines the sig_atomic_t typedef.
#define ACE_HAS_SIG_ATOMIC_T
// Platform supports SVR4 extended signals.
#define ACE_HAS_SIGINFO_T
// Compiler/platform provides the sockio.h file.
#define ACE_HAS_SOCKIO_H
// Compiler supports the ssize_t typedef.
#define ACE_HAS_SSIZE_T
// Platform supports STREAMS.
#define ACE_HAS_STREAMS
// Platform supports STREAM pipes.
#define ACE_HAS_STREAM_PIPES
// Compiler/platform supports strerror ().
#define ACE_HAS_STRERROR
// Compiler/platform supports struct strbuf.
#define ACE_HAS_STRBUF_T
// Compiler/platform supports SVR4 dynamic linking semantics.
#define ACE_HAS_SVR4_DYNAMIC_LINKING
// ... but redefines the entrypoint names with a leading underscore
#define dlopen _dlopen
#define dlclose _dlclose
#define dlerror _dlerror
#define dlsym _dlsym
// ... and uses 'char *' rather than 'const char *'
#define ACE_HAS_CHARPTR_DL
// DG/UX uses the same gettimeofday() prototype as OSF/1.
#define ACE_HAS_OSF1_GETTIMEOFDAY
// Compiler/platform supports SVR4 signal typedef.
#define ACE_HAS_SVR4_SIGNAL_T
// Compiler/platform supports SVR4 ACE_TLI (in particular, T_GETNAME stuff)...
#define ACE_HAS_SVR4_TLI
// Compiler/platform supports sys_siglist array.
// On DG/UX this is only done if the /usr/include/sys/_int_dg_features.h
// file determines it should be turned on. It will take some work to
// figure out the magic options to turn it on reliably, so it'll have to
// be delayed for now.
//#define _TARGETTING_DGUXELF 1
//#define _IX86_DG 1
//#define _DGUX_TARGET 1
//#define ACE_HAS_SYS_SIGLIST
/* Turn off the following four defines if you want to disable threading. */
// Compile using multi-thread libraries.
#if !defined (ACE_MT_SAFE)
# define ACE_MT_SAFE 1
#endif
// Platform supports threads.
#define ACE_HAS_THREADS
#define ACE_HAS_PTHREADS
// DG/UX claims to implement draft 10 of the pthreads standard (which became
// (with editorial change only) the final standard. To get the behavior, some
// further macros need to be defined which are specific to DG/UX.
// _POSIX4A_DRAFT10_SOURCE turns on the draft 10 variant of threads.
// _POSIX4A_DRAFT_SOURCE turns on sched_yield().
#define _POSIX4A_DRAFT10_SOURCE
#define ACE_HAS_PTHREADS_STD
#define _POSIX4_DRAFT_SOURCE
// Well, here are some from the standard they don't have...
#define ACE_LACKS_PTHREAD_THR_SIGSETMASK
#define ACE_HAS_SIGWAIT
#define ACE_LACKS_CONDATTR_PSHARED
#define ACE_LACKS_THREAD_PROCESS_SCOPING
// The default thread stacksize on DG/UX 4.x is 4096. This needs to be bumped
// up to do anything real in ACE.
#define ACE_NEEDS_HUGE_THREAD_STACKSIZE 65536
// Need to #include <sched.h>
#define ACE_NEEDS_SCHED_H
// Compiler/platform has thread-specific storage
//
#define ACE_HAS_THREAD_SPECIFIC_STORAGE
// Platform supports ACE_TLI timod STREAMS module.
#define ACE_HAS_TIMOD_H
// Platform supports ACE_TLI tiuser header.
#define ACE_HAS_TIUSER_H
// Platform provides ACE_TLI function prototypes.
#define ACE_HAS_TLI_PROTOTYPES
// Platform supports ACE_TLI.
#define ACE_HAS_TLI
// Platform doesn't have read-write locks natively.
#define ACE_LACKS_RWLOCK_T
// Platform doesn't have timespec_t data type.
#define ACE_LACKS_TIMESPEC_T
// Use the poll() event demultiplexor rather than select().
//#define ACE_USE_POLL
// Turns off the tracing feature.
#if !defined (ACE_NTRACE)
#define ACE_NTRACE 1
#endif /* ACE_NTRACE */
// Defines the page size of the system.
#define ACE_PAGE_SIZE 4096
#define ACE_TEMPLATES_REQUIRE_SOURCE
#define ACE_HAS_UCONTEXT_T
#define ACE_LACKS_SYSTIME_H
#define ACE_HAS_NONCONST_GETBY
#define ACE_LACKS_MADVISE
#if !defined (IP_ADD_MEMBERSHIP)
#define IP_ADD_MEMBERSHIP 0x13
#endif
#if !defined (IP_DROP_MEMBERSHIP)
# define IP_DROP_MEMBERSHIP 0x14
#endif
// Header files lack t_errno for ACE_TLI.
#define ACE_LACKS_T_ERRNO
// Optimize ACE_Handle_Set for select().
#define ACE_HAS_HANDLE_SET_OPTIMIZED_FOR_SELECT
#include "ace/post.h"
#endif /* ACE_CONFIG_H */
| [
"ganesh@codeops.tech"
] | ganesh@codeops.tech |
1ce5e01f157bcc6a92247f3c67f89d4145f9625a | 02970c9c78fdd1d0191fe34f44b4cdc148bb1115 | /mainwidget.cpp | 707413d697779d63d73f2b51b6540ad4aadace5e | [
"MIT"
] | permissive | scueee/ZenMode-QT | 61d03ea46d258fe92831eff920851bed8e3f98bd | 965b7ad75bb8c3341ea3c52f41142fdba2002b28 | refs/heads/master | 2022-12-12T17:59:19.075195 | 2020-09-11T12:43:45 | 2020-09-11T12:43:45 | 289,903,152 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,952 | cpp | #include "mainwidget.h"
#include "globalshortcut.h"
#include <QApplication>
#include <QTextEdit>
#include <QHBoxLayout>
#include <QDebug>
#include <QMenu>
#include <QAction>
#include <QKeyEvent>
#include <QSystemTrayIcon>
#include <QBrush>
#include <QTextFrame>
#include <QResizeEvent>
#include <QPainter>
#include <QScrollBar>
#include <QLabel>
#include <QClipboard>
#include <QFileInfo>
#include <QSettings>
MainWidget::MainWidget(QWidget *parent) : QWidget(parent)
{
//读取 config.ini 配置
QSettings *iniRead = new QSettings("config.ini", QSettings::IniFormat);
text_width_percent = iniRead->value("/set/text_width_percent").toDouble();
font_name = iniRead->value("/set/font_name").toString();
font_size = iniRead->value("/set/font_size").toInt();
bool ok;
font_color = QRgb(iniRead->value("/set/font_color").toString().toInt(&ok,16));
bg_win = QRgb(iniRead->value("/set/bg_win").toString().toInt(&ok,16));
bg_text = QRgb(iniRead->value("/set/bg_text").toString().toInt(&ok,16));
delete iniRead;
QHBoxLayout *lay = new QHBoxLayout(this);
QFont text_font(font_name,font_size,QFont::Normal);
QFont font("黑体",16,QFont::Normal);
QScrollBar *bar = new QScrollBar(this);
edit = new QTextEdit(this);
edit->setTextColor(QColor(font_color));
edit->setFrameShape(QFrame::NoFrame);
edit->setAcceptRichText(false);
edit->setFont(text_font);
edit->setVerticalScrollBar(bar);
lay->addWidget(edit);
//文本框背景透明
QPalette pl = edit->palette();
pl.setBrush(QPalette::Base,QBrush(QColor(255,0,0,0)));
edit->setPalette(pl);
//字数统计
QLabel *sumLabel = new QLabel(this);
sumLabel->setStyleSheet("color:#666666");
sumLabel->setFont(font);
sumLabel->move(20,10);
connect(edit,&QTextEdit::textChanged,[=]{
char str[20];
sprintf(str,"%d",edit->document()->characterCount());
sumLabel->setText(str);
});
//打字机滚动
connect(edit,&QTextEdit::cursorPositionChanged,[=]{
//光标所在行数等于总行数时保持滚动条于最下方
if (edit->textCursor().blockNumber()+1 == edit->document()->lineCount()){
bar->setValue(bar->maximum());
}
});
//右键菜单
QMenu *rMenu = new QMenu(this);
QAction *copyAct = new QAction("复制",this);
QAction *pasteAct = new QAction("粘贴",this);
QAction *showAct = new QAction("全屏显示",this);
QAction *minAct = new QAction("退出全屏",this);
QAction *copyAllAct = new QAction("复制全文",this);
QAction *outputAct = new QAction("导出TXT",this);
rMenu->addAction(copyAct);
rMenu->addAction(pasteAct);
rMenu->addSeparator();
rMenu->addAction(showAct);
rMenu->addAction(minAct);
rMenu->addAction(copyAllAct);
rMenu->addAction(outputAct);
rMenu->setToolTipsVisible(true);
outputAct->setToolTip("导出至程序所在目录");
showAct->setToolTip("快捷键F11");
connect(copyAct,&QAction::triggered,[=]{
edit->copy();
});
connect(pasteAct,&QAction::triggered,[=]{
edit->paste();
});
connect(showAct,&QAction::triggered,[=]{
showFullScreen();
setWindowState(Qt::WindowFullScreen);
});
connect(minAct,&QAction::triggered,[=]{
showMaximized();
setWindowState(Qt::WindowMaximized);
});
connect(copyAllAct,&QAction::triggered,[=]{
clipboard->setText(edit->toPlainText());
});
connect(outputAct,&QAction::triggered,[=]{
QFile file("out.txt");
if(!file.open(QIODevice::WriteOnly | QIODevice::Text))
return;
QTextStream out(&file);
out.setCodec("utf-8");
out << QString(edit->toPlainText()).toUtf8();
file.close();
});
edit->setContextMenuPolicy(Qt::CustomContextMenu);
connect(edit,&QTextEdit::customContextMenuRequested,[=]{
rMenu->exec(QCursor::pos());
});
//系统托盘
QIcon icon(":/logo.ico");
QSystemTrayIcon *tray = new QSystemTrayIcon(this);
QMenu *tMenu = new QMenu(this);
QAction *hideAct = new QAction("隐藏窗口",this);
QAction *quitAct = new QAction("退出程序",this);
tMenu->addAction(copyAllAct);
tMenu->addAction(outputAct);
tMenu->addSeparator();
tMenu->addAction(hideAct);
tMenu->addAction(showAct);
tMenu->addAction(quitAct);
tMenu->setToolTipsVisible(true);
tray->setIcon(icon);
tray->setToolTip("单击显示,中击全屏");
tray->setContextMenu(tMenu);
tray->show();
connect(hideAct,&QAction::triggered,[=]{
hide();
});
connect(quitAct,SIGNAL(triggered()),qApp,SLOT(quit()));
connect(tray,SIGNAL(activated(QSystemTrayIcon::ActivationReason)),this,SLOT(iconIsActived(QSystemTrayIcon::ActivationReason)));
}
void MainWidget::resizeEvent(QResizeEvent *){
//重绘
update();
//根据窗口宽调整两侧 Margin
QTextDocument *doc = edit->document();
QTextFrame *rootFrame = doc->rootFrame();
QTextFrameFormat frameformat;
frameformat.setLeftMargin(int(width()*(1-text_width_percent)/2)+20);
frameformat.setRightMargin(int(width()*(1-text_width_percent)/2)+20);
frameformat.setBottomMargin(height()/2);
rootFrame->setFrameFormat(frameformat);
}
void MainWidget::paintEvent(QPaintEvent *){
//绘制窗口背景
QPainter p(this);
p.setPen(Qt::NoPen);
p.setBrush(QColor(bg_win));
p.drawRect(rect());
//绘制 TextEdit 背景
QPainter painter(this);
painter.fillRect(QRect(int(width()*(1-text_width_percent)/2),0,int(width()*text_width_percent),height()),QBrush(bg_text));
}
void MainWidget::keyPressEvent(QKeyEvent *event){
if(event->key() == Qt::Key_F11){
if(MainWidget::isFullScreen()){
hide();
} else {
showFullScreen();
setWindowState(Qt::WindowFullScreen);
}
}
}
//托盘图标:单击最大化,中击全屏
void MainWidget::iconIsActived(QSystemTrayIcon::ActivationReason reason)
{
switch(reason){
case QSystemTrayIcon::Trigger:{
showMaximized();
setWindowState(Qt::WindowMaximized);
break;
}
case QSystemTrayIcon::MiddleClick:{
showFullScreen();
setWindowState(Qt::WindowFullScreen);
break;
}
default:
break;
}
}
void MainWidget::closeEvent(QCloseEvent *event){
hide();
event->ignore();
}
void MainWidget::activated()
{
if(MainWidget::isFullScreen()){
hide();
} else {
showFullScreen();
setWindowState(Qt::WindowFullScreen);
}
}
int main(int argc,char*argv[])
{
QApplication app(argc,argv);
MainWidget w;
w.setWindowTitle("ZenMode");
w.showMaximized();
GlobalShortCut *shortcut = new GlobalShortCut("F11",&w);
QObject::connect(shortcut,SIGNAL(activated()),&w,SLOT(activated()));
return app.exec();
}
| [
"1464632340@qq.com"
] | 1464632340@qq.com |
cfd1e6eb3e35b011efc74ec5cba9c330583b8779 | 5f803244514277fea235561a1150066bac25635a | /Lightoj 1311 - Unlucky Bird.cpp | 49e6669f038b55c75f3c101bbbc67a151254e3e5 | [] | no_license | soumik9876/Lightoj-solutions | 50ef72cdc680b05d1ea77eb8e0f2ef1a1fc3286f | f8132dfd2e10ade9c8235b0c586579188fa31c77 | refs/heads/master | 2022-12-14T23:34:31.199207 | 2020-09-24T04:47:00 | 2020-09-24T04:47:00 | 276,703,888 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,298 | cpp | #include<bits/stdc++.h>
#define ll long long int
#define pb push_back
#define F first
#define S second
#define mp make_pair
#define MOD 1000000007
#define vi vector<int>
#define vll vector<ll>
#define pll pair<ll,ll>
#define pii pair<int,int>
#define all(p) p.begin(),p.end()
#define mid(s,e) (s+(e-s)/2)
#define eb emplace_back
#define ull unsigned long long
#define bug(x) cout<<" [ "#x<<" = "<<x<<" ]"<<endl;
#define KAMEHAMEHA ios_base::sync_with_stdio(0);
#define RASENGAN ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0);
using namespace std;
int main()
{
KAMEHAMEHA
// #ifdef _soumik
// freopen("input.txt", "r", stdin);
// #endif
int t;
cin>>t;
for(int cn=1;cn<=t;cn++)
{
double v1,v2,v3,a1,a2;
cin>>v1>>v2>>v3>>a1>>a2;
double t1=v1/a1,t2=v2/a2;
double s1=(v1*t1)-(.5*a1*t1*t1),s2=(v2*t2)-(.5*a2*t2*t2);
s1=s1+s2;
cout<<"Case "<<cn<<": ";
s2=v3*max(t1,t2);
cout<<fixed<<setprecision(7)<<s1<<" "<<s2<<endl;
}
return 0;
}
| [
"noreply@github.com"
] | noreply@github.com |
63b84ba02eac940b59498fb9cbf768929aaa3e21 | 5cb9d567d785df431335dee171e25a01a41d450b | /source/proj0/extract/iriselenimoridis/calc/calc.cpp | 2c882155636e2aff5a5fcc47442305e387e05f3f | [] | no_license | fenghuo/AutoGrading | f8c6a481d97c6121479c46f1f9dfc4a5823533c2 | d206ced16daa3bfb85494a3bd371468f329b7ab8 | refs/heads/master | 2016-09-11T12:14:42.641357 | 2014-03-13T18:33:57 | 2014-03-13T18:33:57 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 24,575 | cpp | #include <stdio.h>
#include <stdlib.h>
#include <assert.h>
#include <string.h>
#include <ctype.h>
#include <stack>
#include <iostream>
#include <vector>
#include <sstream>
#include <math.h>
using namespace std;
/*** Enums and Print Functions for Terminals and Non-Terminals **********************/
#define MAX_SYMBOL_NAME_SIZE 25
//all of the terminals in the language
typedef enum {
T_eof = 0, // 0: end of file
T_num, // 1: numbers
T_plus, // 2: +
T_minus, // 3: -
T_times, // 4: *
T_divide, // 5: /
T_power, // 6: **
T_equals, // 7: =
T_openparen, // 8: (
T_closeparen, // 9: )
T_opensquare, // 10: [
T_closesquare, // 11: ]
T_m, // 12: m
T_goto, // 13: goto
T_if, // 14: if
T_print, // 15: print
T_label, // 16: L
T_colon // 17: :
} token_type;
//this function returns a string for the token. It is used in the parsetree_t
//class to actually dump the parsetree to a dot file (which can then be turned
//into a picture). Note that the return char* is a reference to a local copy
//and it needs to be duplicated if you are a going require multiple instances
//simultaniously
char* token_to_string(token_type c) {
static char buffer[MAX_SYMBOL_NAME_SIZE];
switch( c ) {
case T_eof: strncpy(buffer,"eof",MAX_SYMBOL_NAME_SIZE); break;
case T_num: strncpy(buffer,"num",MAX_SYMBOL_NAME_SIZE); break;
case T_plus: strncpy(buffer,"+",MAX_SYMBOL_NAME_SIZE); break;
case T_minus: strncpy(buffer,"-",MAX_SYMBOL_NAME_SIZE); break;
case T_times: strncpy(buffer,"*",MAX_SYMBOL_NAME_SIZE); break;
case T_divide: strncpy(buffer,"/",MAX_SYMBOL_NAME_SIZE); break;
case T_power: strncpy(buffer,"**",MAX_SYMBOL_NAME_SIZE); break;
case T_equals: strncpy(buffer,"=",MAX_SYMBOL_NAME_SIZE); break;
case T_openparen: strncpy(buffer,"(",MAX_SYMBOL_NAME_SIZE); break;
case T_closeparen: strncpy(buffer,")",MAX_SYMBOL_NAME_SIZE); break;
case T_opensquare: strncpy(buffer,"[",MAX_SYMBOL_NAME_SIZE); break;
case T_closesquare: strncpy(buffer,"]",MAX_SYMBOL_NAME_SIZE); break;
case T_m: strncpy(buffer,"m",MAX_SYMBOL_NAME_SIZE); break;
case T_goto: strncpy(buffer,"goto",MAX_SYMBOL_NAME_SIZE); break;
case T_if: strncpy(buffer,"if",MAX_SYMBOL_NAME_SIZE); break;
case T_print: strncpy(buffer,"print",MAX_SYMBOL_NAME_SIZE); break;
case T_label: strncpy(buffer,"L",MAX_SYMBOL_NAME_SIZE); break;
case T_colon: strncpy(buffer,":",MAX_SYMBOL_NAME_SIZE); break;
//case T_J1: strncpy(buffer,"Jump1",MAX_SYMBOL_NAME_SIZE); break;
default: strncpy(buffer,"unknown_token",MAX_SYMBOL_NAME_SIZE); break;
}
return buffer;
}
//all of the non-terminals in the grammar (you need to add these in
//according to your grammar.. these are used for printing the thing out)
//please follow the convention we set up so that we can tell what the heck you
//are doing when we grade
typedef enum {
epsilon = 100,
NT_Start,
NT_Statements,
NT_Statement,
NT_Label,
NT_Jump,
NT_Assignment,
NT_Print,
NT_Expression,
NT_Exp1,
NT_T,
NT_Term1,
NT_Fact,
NT_Fact1,
NT_final,
NT_J1
} nonterm_type;
//this Factunction returns a string for the non-terminals. It is used in the parsetree_t
//class to actually dump the parsetree to a dot file (which can then be turned
//into a picture). Note that the return char* is a reference to a local copy
//and it needs to be duplicated if you are a going require multiple instances
//simultaniously.
char* nonterm_to_string(nonterm_type nt)
{
static char buffer[MAX_SYMBOL_NAME_SIZE];
switch( nt ) {
case epsilon: strncpy(buffer,"e",MAX_SYMBOL_NAME_SIZE); break;
case NT_Start: strncpy(buffer,"Start",MAX_SYMBOL_NAME_SIZE); break;
case NT_Statements: strncpy(buffer,"Statements",MAX_SYMBOL_NAME_SIZE); break;
case NT_Statement: strncpy(buffer,"Statement",MAX_SYMBOL_NAME_SIZE); break;
case NT_Label: strncpy(buffer,"Label",MAX_SYMBOL_NAME_SIZE); break;
case NT_Jump: strncpy(buffer,"Jump",MAX_SYMBOL_NAME_SIZE); break;
case NT_Assignment: strncpy(buffer,"Assignment",MAX_SYMBOL_NAME_SIZE); break;
case NT_Print: strncpy(buffer,"Print",MAX_SYMBOL_NAME_SIZE); break;
case NT_Expression: strncpy(buffer,"Expression",MAX_SYMBOL_NAME_SIZE); break;
case NT_Exp1: strncpy(buffer,"Exp1",MAX_SYMBOL_NAME_SIZE); break;
case NT_T: strncpy(buffer,"T",MAX_SYMBOL_NAME_SIZE); break;
case NT_Term1: strncpy(buffer,"Term1",MAX_SYMBOL_NAME_SIZE); break;
case NT_Fact: strncpy(buffer,"F",MAX_SYMBOL_NAME_SIZE); break;
case NT_Fact1: strncpy(buffer,"F1",MAX_SYMBOL_NAME_SIZE); break;
case NT_final: strncpy(buffer,"final",MAX_SYMBOL_NAME_SIZE); break;
case NT_J1: strncpy(buffer,"Jump1",MAX_SYMBOL_NAME_SIZE); break;
default: strncpy(buffer,"unknown_nonterm",MAX_SYMBOL_NAME_SIZE); break;
}
return buffer;
}
/*** Scanner Class ***********************************************/
class scanner_t {
public:
//eats the next token and prints an error if it is not of type c
void eat_token(token_type c);
//peeks at the lookahead token
token_type next_token();
//return line number for errors
int get_line();
//constructor
scanner_t();
vector<int> m;
bool is_print(char t, int position, int i);
bool is_goto(char currentChar, int position, int i);
bool is_if(char currentChar, int position, int i);
void tokenize();
void check_endline(char currentChar);
int push_nums(char currentChar,int i);
void push_tokens(char currentChar);
private:
int line;
vector<char> input;
vector<token_type> tokens;
//WRITEME: Figure out what you will need to write the scanner
//and to implement the above interface. It does not have to
//be a state machine or anything fancy. Just read in the
//characters one at a time (using getchar would be a good way)
//and group them into tokens.
//error message and exit for unrecognized character
void scan_error(char x);
//error message and exit for token mismatch
void mismatch_error(token_type c);
};
token_type scanner_t::next_token()
{
//WRITEME: replace this bogus junk with code that will take a peek
//at the next token and return it to the parser. It should _not_
//actually consume a token - you should be able to call next_token()
//multiple times without actually reading any more tokens
return tokens[0];
}
void scanner_t::eat_token(token_type c)
{
//if we are supposed to eat token c, and it does not match
//what we are supposed to be reading from file, then it is a
//mismatch error ( call - mismatch_error(c) )
if(c != tokens[0]) {
mismatch_error(c);
}
else
tokens.erase (tokens.begin());
}
scanner_t::scanner_t()
{
int c = 0;
line = 0;
string numString;
// Get all characters and push to input
while (c != -1) {
c = getchar();
input.push_back(c);
}
// tokenize all characters in input
tokenize();
}
void scanner_t::tokenize()
{
int position=0;
string numString;
char currentChar;
for (int i=0; i < input.size(); i++) {
currentChar = input[i];
//Check for incorrect input.
if ((currentChar != '+') &&(currentChar != '-')&& (currentChar!='*')&& (currentChar!='/')&&(currentChar!= '(')&& (currentChar!=')')&& (currentChar != '=')&& (currentChar != 'm')&& (currentChar!='[')&& (currentChar != ']')&& (!isdigit(currentChar))&& (currentChar!= 'L')&& (currentChar!=':')&& (currentChar!='g')&& (currentChar!='i')&& (currentChar!='p') && (currentChar!=' ')&& (currentChar != '\n') && (currentChar != '\0') && (currentChar != '\377')){
return scan_error(currentChar);
}
// Check if char is a number.Push full number to m, T_num to tokens
if (isdigit(currentChar))
{
i = push_nums(currentChar,i);
tokens.push_back(T_num);
}
// Check if it's a power. If not, push all single tokens.
if (currentChar == '*' && input[i+1] == '*') {
tokens.push_back(T_power);
i++;
}
else push_tokens(currentChar);
// Check if input is "print"
if (is_print(currentChar,position,i))
i+=4;
//Check if input is "goto"
if (is_goto(currentChar,position,i))
i+=3;
//Check if input is "if"
if (is_if(currentChar,position,i))
i+=1;
//Increment line when there is a newline character
check_endline(currentChar);
}
//Push EOF token after all other tokens have been pushed
tokens.push_back(T_eof);
}
void scanner_t::check_endline(char currentChar)
{
if (currentChar == ('\n')) line++;
}
bool scanner_t::is_if(char currentChar, int position, int i)
{
string isIf="";
string current;
position = i;
for (int m=position; m<=position+1;m++){
string s;
stringstream ss;
ss<<input[m];
ss>>current;
isIf+=current;
current = "";
}
if (isIf == "if") {tokens.push_back(T_if);return true;}
if (currentChar == 'i' && input[i+1] !='f') {line++;scan_error(input[i+1]);}
return false;
}
int scanner_t::push_nums(char currentChar, int i)
{
int index = i;
string numString = "";
int num;
string currentNum="";
string concatNum="";
stringstream ss;
if (!isdigit(input[i+1])){
if (currentChar == '0') m.push_back(0);
if (currentChar == '1') m.push_back(1);
if (currentChar == '2') m.push_back(2);
if (currentChar == '3') m.push_back(3);
if (currentChar == '4') m.push_back(4);
if (currentChar == '5') m.push_back(5);
if (currentChar == '6') m.push_back(6);
if (currentChar == '7') m.push_back(7);
if (currentChar == '8') m.push_back(8);
if (currentChar == '9') m.push_back(9);
return i;
}
else
{
ss << input[index];
ss >> currentNum;
concatNum+=currentNum;
while (isdigit(input[index+1]))
{
stringstream ss;
ss << input[index+1];
ss >> currentNum;
concatNum+=currentNum;
index++;
}
stringstream(concatNum)>>num;
int max = pow(2,31) - 1;
if (num == max)
{
printf("Error: input out of range - line %d\n", get_line()+1);
exit(1);
}
m.push_back(num);
}
return index;
}
void scanner_t::push_tokens(char currentChar)
{
if (currentChar == 'm') tokens.push_back(T_m);
if (currentChar == '[') tokens.push_back(T_opensquare);
if (currentChar == ']') tokens.push_back(T_closesquare);
if (currentChar == '=') tokens.push_back(T_equals);
if (currentChar == 'L') tokens.push_back(T_label);
if (currentChar == ':') tokens.push_back(T_colon);
if (currentChar == '(') tokens.push_back(T_openparen);
if (currentChar == ')') tokens.push_back(T_closeparen);
if (currentChar == '+') tokens.push_back(T_plus);
if (currentChar == '-') tokens.push_back(T_minus);
if (currentChar == '/') tokens.push_back(T_divide);
if (currentChar == '*') tokens.push_back(T_times);
}
bool scanner_t::is_print(char currentChar, int position, int i)
{
string isPrint="";
string current;
position = i;
for (int m=position; m<=position+4;m++){
string s;
stringstream ss;
ss<<input[m];
ss>>current;
isPrint+=current;
current = "";
}
if (isPrint == "print") {tokens.push_back(T_print);return true;}
if (currentChar == 'p' && input[i+1] !='r') {line++;scan_error(input[i+1]);}
if (currentChar == 'p' && input[i+2] != 'i'){line++; scan_error(input[i+2]);}
if (currentChar == 'p' && input[i+3] != 'n'){line++; scan_error(input[i+3]);}
if (currentChar == 'p' && input[i+4] != 't'){line++; scan_error(input[i+4]);}
return false;
}
bool scanner_t::is_goto(char currentChar, int position, int i)
{
string isGoto="";
string current;
position = i;
for (int m=position; m<=position+3;m++){
string s;
stringstream ss;
ss<<input[m];
ss>>current;
isGoto+=current;
current = "";
}
if (isGoto == "goto") {tokens.push_back(T_goto);return true;}
if (currentChar == 'g' && input[i+1] !='o') {line++;scan_error(input[i+1]);}
if (currentChar == 'g' && input[i+2] != 't'){line++; scan_error(input[i+2]);}
if (currentChar == 'g' && input[i+3] != 'o'){line++; scan_error(input[i+3]);}
return false;
}
int scanner_t::get_line()
{
return line;
}
void scanner_t::scan_error (char x)
{
printf("scan error: unrecognized character '%c' -line %d\n",x, get_line());
exit(1);
}
void scanner_t::mismatch_error (token_type x)
{
printf("syntax error: found %s ",token_to_string(next_token()) );
printf("expecting %s - line %d\n", token_to_string(x), get_line());
exit(1);
}
/*** ParseTree Class **********************************************/
//just dumps out the tree as a dot file. The interface is described below
//on the actual methods. This class is full and complete. You should not
//have to touch a thing if everything goes according to plan. While you don't
//have to modify it, you will have to call it from your recursive decent
//parser, so read about the interface below.
class parsetree_t {
public:
void push(token_type t);
void push(nonterm_type nt);
void pop();
void drawepsilon();
parsetree_t();
private:
enum stype_t{
TERMINAL=1,
NONTERMINAL=0,
UNDEF=-1
};
struct stuple {
nonterm_type nt;
token_type t;
stype_t stype;
int uniq;
};
void printedge(stuple temp); //prints edge from TOS->temp
stack<stuple> stuple_stack;
char* stuple_to_string(const stuple& s);
int counter;
};
//the constructer just starts by initializing a counter (used to uniquely
//name all the parse tree nodes) and by printing out the necessary dot commands
parsetree_t::parsetree_t()
{
counter = 0;
printf("digraph G {\n");
}
//This push function takes a non terminal and keeps it on the parsetree
//stack. The stack keeps trace of where we are in the parse tree as
//we walk it in a depth first way. You should call push when you start
//expanding a symbol, and call pop when you are done. The parsetree_t
//will keep track of everything, and draw the parse tree as you go.
//This particular function should be called if you are pushing a non-terminal
void parsetree_t::push(nonterm_type nt)
{
counter ++;
stuple temp;
temp.nt = nt;
temp.stype = NONTERMINAL;
temp.uniq = counter;
printedge( temp );
stuple_stack.push( temp );
}
//same as above, but for terminals
void parsetree_t::push(token_type t)
{
counter ++;
stuple temp;
temp.t = t;
temp.stype = TERMINAL;
temp.uniq = counter;
printedge( temp );
stuple_stack.push( temp );
}
//when you are done parsing a symbol, pop it. That way the parsetree_t will
//know that you are now working on a higher part of the tree.
void parsetree_t::pop()
{
if ( !stuple_stack.empty() ) {
stuple_stack.pop();
}
if ( stuple_stack.empty() ) {
printf( "};\n" );
}
}
//draw an epsilon on the parse tree hanging off of the top of stack
void parsetree_t::drawepsilon()
{
push(epsilon);
pop();
}
// this private print function is called from push. Basically it
// just prints out the command to draw an edge from the top of the stack (TOS)
// to the new symbol that was just pushed. If it happens to be a terminal
// then it makes it a snazzy blue color so you can see your program on the leaves
void parsetree_t::printedge(stuple temp)
{
if ( temp.stype == TERMINAL ) {
printf("\t\"%s%d\" [label=\"%s\",style=filled,fillcolor=powderblue]\n",
stuple_to_string(temp),
temp.uniq,
stuple_to_string(temp));
} else {
printf("\t\"%s%d\" [label=\"%s\"]\n",
stuple_to_string(temp),
temp.uniq,
stuple_to_string(temp));
}
//no edge to print if this is the first node
if ( !stuple_stack.empty() ) {
//print the edge
printf( "\t\"%s%d\" ", stuple_to_string(stuple_stack.top()), stuple_stack.top().uniq );
printf( "-> \"%s%d\"\n", stuple_to_string(temp), temp.uniq );
}
}
//just a private utility for helping with the printing of the dot stuff
char* parsetree_t::stuple_to_string(const stuple& s)
{
static char buffer[MAX_SYMBOL_NAME_SIZE];
if ( s.stype == TERMINAL ) {
snprintf( buffer, MAX_SYMBOL_NAME_SIZE, "%s", token_to_string(s.t) );
} else if ( s.stype == NONTERMINAL ) {
snprintf( buffer, MAX_SYMBOL_NAME_SIZE, "%s", nonterm_to_string(s.nt) );
} else {
assert(0);
}
return buffer;
}
/*** Parser Class ***********************************************/
//the parser_t class handles everything. It has an instance of scanner_t
//so it can peek at tokens and eat them up. It also has access to the
//parsetree_t class so it can print out the parse tree as it figures it out.
//To make the recursive decent parser work, you will have to add some
//methods to this class. The helper functions are described below
class parser_t {
private:
scanner_t scanner;
parsetree_t parsetree;
void eat_token(token_type t);
void syntax_error(nonterm_type);
void Start();
void Statements();
void Statement();
void Expression();
void Exp1();
void T();
void Term1();
void Fact();
void Fact1();
void final();
//void Factor();
//void final();
void Assignment();
void Label();
void Jump();
void Jump1();
void Print();
void Goto();
public:
vector<string> genC;
void parse();
};
//this function not only eats the token (moving the scanner forward one
//token), it also makes sure that token is drawn in the parse tree
//properly by calling push and pop.
void parser_t::eat_token(token_type t)
{
parsetree.push(t);
scanner.eat_token(t);
parsetree.pop();
}
//call this syntax error when you are trying to parse the
//non-terminal nt, but you fail to find a token that you need
//to make progress. You should call this as soon as you can know
//there is a syntax_error.
void parser_t::syntax_error(nonterm_type nt)
{
printf("syntax error: found %s in parsing %s - line %d\n",
token_to_string( scanner.next_token()),
nonterm_to_string(nt),
scanner.get_line() );
exit(1);
}
//One the recursive decent parser is set up, you simply call parse()
//to parse the entire input, all of which can be dirived from the start
//symbol
void parser_t::parse()
{
genC.push_back("#include <stdio.h>\n");
genC.push_back("#include <math.h>\n");
genC.push_back("\nint main()\n");
genC.push_back("{\nint m[101]={0};\n");
Start();
}
//WRITEME: the Start() function is not quite right. Right now
//it is made to parse the grammar:
// Start -> '+' Start | EOF
//which is not a very interesting language. It has been included
//so you can see the basics of how to structure your recursive
//descent code.
//Here is an example
void parser_t::Start()
{
//push this non-terminal onto the parse tree.
//the parsetree class is just for drawing the finished
//parse tree, and should in should have no effect the actual
//parsing of the data
parsetree.push(NT_Start);
Statements();
//now that we are done with List, we can pop it from the data
//stucture that is tracking it for drawing the parse tree
parsetree.pop();
}
void parser_t::Statements()
{
parsetree.push(NT_Statements);
if (scanner.next_token() == T_eof) {
parsetree.drawepsilon();
}
else {
Statement();
Statements();
}
parsetree.pop();
}
void parser_t::Statement() {
parsetree.push(NT_Statement);
bool endOfLine = false;
switch(scanner.next_token()) {
case T_goto:{
parsetree.push(NT_Jump);
eat_token(T_goto);
eat_token(T_num);
stringstream g;
g << scanner.m[0];
string str = g.str();
scanner.m.erase(scanner.m.begin());
if(scanner.next_token()==T_if){
parsetree.push(NT_J1);
eat_token(T_if);
genC.push_back("if (");
Expression();
genC.push_back(")\n\t");
parsetree.pop();
}
genC.push_back("goto L");
genC.push_back(str);
parsetree.pop();
break;}
case T_m:
eat_token(T_m);
genC.push_back("m[");
eat_token(T_opensquare);
Expression();
genC.push_back("]");
eat_token(T_closesquare);
genC.push_back("=");
eat_token(T_equals);
Expression();
break;
case T_print:
eat_token(T_print);
genC.push_back("printf( \"%d\\n\", ");
Expression();
genC.push_back(")");
break;
case T_label:{
endOfLine = true;
eat_token(T_label);
genC.push_back("L");
eat_token(T_num);
stringstream t;
t << scanner.m[0];
string str = t.str();
genC.push_back(str);
scanner.m.erase(scanner.m.begin());
eat_token(T_colon);
genC.push_back(":\n");
break;}
default:
syntax_error(NT_Statement);
break;
}
if (endOfLine==false)
genC.push_back(";\n");
parsetree.pop();
}
void parser_t::Expression() {
parsetree.push(NT_Expression);
T();
Exp1();
parsetree.pop();
}
void parser_t::Exp1() {
parsetree.push(NT_Exp1);
switch(scanner.next_token()) {
case T_plus:
eat_token(T_plus);
genC.push_back("+");
T();
Exp1();
break;
case T_minus:
eat_token(T_minus);
genC.push_back("-");
T();
Exp1();
break;
}
parsetree.drawepsilon();
parsetree.pop();
}
void parser_t::T() {
parsetree.push(NT_T);
Fact();
Term1();
parsetree.pop();
}
void parser_t::Term1() {
parsetree.push(NT_Term1);
switch(scanner.next_token()) {
case T_times:
eat_token(T_times);
genC.push_back("*");
Fact();
Term1();
break;
case T_divide:
eat_token(T_divide);
genC.push_back("/");
Fact();
Term1();
break;
}
parsetree.drawepsilon();
parsetree.pop();
}
void parser_t::Fact() {
parsetree.push(NT_Fact);
final();
Fact1();
//HERE.
// parsetree.drawepsilon();
parsetree.pop();
}
void parser_t::Fact1() {
parsetree.push(NT_Fact1);
if (scanner.next_token() == T_power) {
eat_token(T_power);
final();
Fact1();
genC.push_back(")");
}
parsetree.drawepsilon();
parsetree.pop();
}
void parser_t::final() {
parsetree.push(NT_final);
switch(scanner.next_token()) {
case T_openparen:{
eat_token(T_openparen);
genC.push_back("(");
Expression();
eat_token(T_closeparen);
genC.push_back(")");
break;}
case T_num:{
stringstream ss;
ss << scanner.m[0];
string str = ss.str();
eat_token(T_num);
if (scanner.next_token()==T_power)
{ genC.push_back("pow(");
genC.push_back(str);
genC.push_back(",");
}
else
genC.push_back(str);
scanner.m.erase (scanner.m.begin());
break;}
case T_m:
genC.push_back("m");
eat_token(T_m);
eat_token(T_opensquare);
genC.push_back("[");
Expression();
eat_token(T_closesquare);
genC.push_back("]");
break;
case T_power:
parsetree.pop();
break;
default:
syntax_error(NT_final);
break;
}
parsetree.pop();
}
//WRITEME: you will need to put the rest of the procedures here
/*** Main ***********************************************/
int main()
{
parser_t parser;
parser.parse();
parser.genC.push_back("return 0;\n");
parser.genC.push_back("\n}\n");
int counter = 0;
while (counter < parser.genC.size())
{
cerr<<parser.genC[counter];
counter++;
}
/*for(int i=0; i<parser.genC.size(); i++)
{
cerr<<parser.genC[i];
}*/
return 0;
}
| [
"cs160@csil.cs.ucsb.edu"
] | cs160@csil.cs.ucsb.edu |
5f412c4886b259d3a7350d476b11b131cacef4e6 | a864d3918a544c48b11ab7da369785a8f1679d36 | /Week4/CMP105App/Enemy.cpp | 85bd4b39c90f5c39e0c89b26474ace56b7e238d8 | [] | no_license | JustusLudwig/CMP105_W4 | 2e8e5d5688b47e44813cf20f4c3ed6d794c67a72 | c23d15933a1cf4d13c395d23883eea83d0083171 | refs/heads/master | 2020-12-29T15:07:35.110361 | 2020-02-06T10:51:41 | 2020-02-06T10:51:41 | 238,648,130 | 0 | 0 | null | 2020-02-06T09:09:07 | 2020-02-06T09:09:06 | null | UTF-8 | C++ | false | false | 101 | cpp | #include "Enemy.h"
Enemy::Enemy()
{
}
Enemy::~Enemy()
{
}
void Enemy::handleInput(float dt)
{
} | [
"1802097@uad.ac.uk"
] | 1802097@uad.ac.uk |
5143d7b6381f66b21f421cc2e4e2db161cecff7b | d1cf34b4d5280e33ebcf1cd788b470372fdd5a26 | /zoj/29/2989.cpp | 9e51848aa0feab55024e263d9beee0f25052e72c | [] | no_license | watashi/AlgoSolution | 985916ac511892b7e87f38c9b364069f6b51a0ea | bbbebda189c7e74edb104615f9c493d279e4d186 | refs/heads/master | 2023-08-17T17:25:10.748003 | 2023-08-06T04:34:19 | 2023-08-06T04:34:19 | 2,525,282 | 97 | 32 | null | 2020-10-09T18:52:29 | 2011-10-06T10:40:07 | C++ | GB18030 | C++ | false | false | 1,620 | cpp | #include <cstdio>
const int dir[4][2] = {
{0, 1},
{1, 0},
{0, -1},
{-1, 0}
};
int r, c;
int x, y, d;
char buf[32][32];
void next()
{
x += dir[d][0];
y += dir[d][1];
if (x >= 0 && y >= 0 && x < r && y < c && buf[x][y] == -1)
return;
x -= dir[d][0];
y -= dir[d][1];
++d;
if (d == 4)
d = 0;
x += dir[d][0];
y += dir[d][1];
}
char str[128];
int main(void)
{
int re;
scanf("%d", &re);
for (int ri = 1; ri <= re; ++ri) {
//scanf("%d%d%*c%[A-Z ]", &r, &c, str); 没有%[A-Z ]就不会改变str
scanf("%d%d%[^\n]", &r, &c, str);
for (int i = 0; i < r; i++)
for (int j = 0; j < c; j++)
buf[i][j] = -1;
x = 0;
y = -1;
d = 0;
for (int i = 1; str[i] != '\0'; ++i) { // str[0] = ' '
if (str[i] == ' ') {
str[i] = 0;
}
else {
str[i] = str[i] - 'A' + 1;
}
for (int j = 5 - 1; j >= 0; --j) {
next();
buf[x][y] = ((str[i] & (1 << j)) != 0);
}
}
printf("%d ", ri);
for (int i = 0; i < r; i++)
for (int j = 0; j < c; j++)
putchar('0' + (buf[i][j] == 1));
putchar('\n');
}
return 0;
}
//Run ID Submit time Judge Status Problem ID Language Run time Run memory User Name
//2950422 2008-06-15 19:18:04 Accepted 2989 C++ 00:00.00 392K Re:ReJudge
// 2012-09-07 01:52:45 | Accepted | 2989 | C++ | 0 | 180 | watashi | Source
| [
"zejun.wu@gmail.com"
] | zejun.wu@gmail.com |
0d39588d1e3f439be4564853dec2dd114cd6037e | 710981ad55d08ec46a9ffa06df2f07aa54ae5dcd | /player/src/tools/audio.h | 142406ab83c12950e66fa8f8513d00366086f2aa | [] | no_license | weimingtom/easyrpg | b2ee6acf5a97a4744554b26feede7367b7c16233 | 8877364261e4d4f52cd36cbb43929ed1351f06e1 | refs/heads/master | 2021-01-10T02:14:36.939339 | 2009-02-15T03:45:32 | 2009-02-15T03:45:32 | 44,462,893 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,671 | h | #ifndef AUDIO_H_
#define AUDIO_H_
#include "SDL.h"
#include "SDL_mixer.h"
class Audio
{
private:
static const int AUDIO_RATE,
AUDIO_CHANNELS,
AUDIO_BUFFER;
static const Uint16 AUDIO_FORMAT; // = AUDIO_S16
static bool wasInit;
//protected:
//int phaserChannel;
public:
static bool init();
virtual bool load(const char*) = 0;
virtual bool play(int) = 0;
virtual bool play(int, int) = 0;
virtual void stop() = 0;
virtual void setVolume(int) = 0;
virtual void pause_resume() = 0;
};
/* Classes Music and Sound have exactly the same methods.
However Music is the choice to play music, and
Sound is the choice to play small sounds.
You can have more than one sound playing at a time,
but this does not apply to music. */
class Music: public Audio
{
private:
Mix_Music * music;
public:
Music();
~Music();
bool load(const char* musicf);
bool play(int loops); // -1 for infinite loops
bool play(int loops, int ms); // Fade In in miliseconds
void stop();
void setVolume(int vol);
void pause_resume();
};
class Sound: public Audio
{
private:
static int nSounds;
int actualChannel;
Mix_Chunk *sound;
public:
Sound();
~Sound();
bool load(const char* soundf);
bool play(int loops); // -1 for infinite loops
bool play(int loops, int ms); // Fade In in miliseconds
void stop();
void setVolume(int vol);
void pause_resume();
};
#endif
| [
"fdelapena@2452c464-c253-f492-884b-b99f1bb2d923"
] | fdelapena@2452c464-c253-f492-884b-b99f1bb2d923 |
30718264af1e5dbaec0e01da9cf3312581ae7437 | c15a98e4210e6d0098ac822553b1e5fba5f5cbb8 | /Sphere.h | 9bd52850ed4d741542ed9baec0ac0da5017f5418 | [] | no_license | wuhaoqi98/Eradication | 098feb5a727975bf94cc46fba3fd1a6ca1e388bd | be00c4cea5cfd3053ab54af66c54c3a33b74256a | refs/heads/master | 2021-07-14T22:55:17.328564 | 2021-06-30T23:54:51 | 2021-06-30T23:54:51 | 164,993,392 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,211 | h | #ifndef SPHERE_H
#define SPHERE_H
#define GLFW_INCLUDE_GLEXT
#ifdef __APPLE__
#define GLFW_INCLUDE_GLCOREARB
#else
#include <GL/glew.h>
#endif
#include <GLFW/glfw3.h>
// Use of degrees is deprecated. Use radians instead.
#ifndef GLM_FORCE_RADIANS
#define GLM_FORCE_RADIANS
#endif
#include <glm/mat4x4.hpp>
#include <glm/gtc/matrix_transform.hpp>
#include <vector>
#include <iostream>
#include <stdlib.h>
#include <stdio.h>
#include "stb_image.h"
using namespace std;
class Sphere
{
private:
std::vector<unsigned int> vertexIndices;
std::vector<unsigned int> uvIndices;
std::vector<unsigned int> normalIndices;
std::vector<glm::vec3> vertices;
std::vector<glm::vec3> temp_vertices;
std::vector<glm::vec3> temp_normals;
std::vector<glm::vec2> temp_uvs;
std::vector<glm::vec3> out_vertices;
std::vector<glm::vec3> out_normals;
std::vector<glm::vec2> out_uvs;
float size = 1.0f;
public:
glm::mat4 toWorld;
unsigned int texture1;
bool isVisible;
int timer;
Sphere(const char* filepath, char* texture);
~Sphere();
void parse(const char* filepath);
void draw(GLuint);
void update();
void explode(glm::vec3 pos);
GLuint VBO, VAO, EBO, NBO, TBO;
GLuint uProjection, uModel, uView;
};
#endif | [
"haw175@ucsd.edu"
] | haw175@ucsd.edu |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.