blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 2 247 | content_id stringlengths 40 40 | detected_licenses listlengths 0 57 | license_type stringclasses 2 values | repo_name stringlengths 4 111 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringlengths 4 58 | visit_date timestamp[ns]date 2015-07-25 18:16:41 2023-09-06 10:45:08 | revision_date timestamp[ns]date 1970-01-14 14:03:36 2023-09-06 06:22:19 | committer_date timestamp[ns]date 1970-01-14 14:03:36 2023-09-06 06:22:19 | github_id int64 3.89k 689M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 25 values | gha_event_created_at timestamp[ns]date 2012-06-07 00:51:45 2023-09-14 21:58:52 ⌀ | gha_created_at timestamp[ns]date 2008-03-27 23:40:48 2023-08-24 19:49:39 ⌀ | gha_language stringclasses 159 values | src_encoding stringclasses 34 values | language stringclasses 1 value | is_vendor bool 1 class | is_generated bool 2 classes | length_bytes int64 7 10.5M | extension stringclasses 111 values | filename stringlengths 1 195 | text stringlengths 7 10.5M |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
46d3eb11a28643fee1b734a67864e09a887400aa | 877d022e8c1e4047cd7d23367cbc2c8991b49ee5 | /2014-2015/2015 summer/duoxiao/2015 Multi-University Training Contest 10/1007 g.cpp | ea3ed277d748a8110943c56e49b45205e648653f | [] | no_license | kimnoic/ACM-ICPC | 59963e4542ac92d46640699a60ff8bb4b3dc3b96 | f52cd20a804f04aced4f3f77278f62a1bf8ff329 | refs/heads/master | 2020-12-21T16:09:18.585974 | 2016-11-11T18:15:53 | 2016-11-11T18:15:53 | 73,498,395 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,994 | cpp | 1007 g.cpp | #include <cstdio>
#include <cstring>
#include <iostream>
#include <algorithm>
using namespace std;
const int N = 200002;
const int INF = 1e9;
struct Tnode{
int c, lc, rc, fa , size;
} T[N];
int lsize(int p)
{
if(T[p].lc) return T[T[p].lc].size;
else return 0;
}
int rsize(int p)
{
if(T[p].rc)
return T[T[p].rc].size;
else return 0;
}
int root;
void Update(int f, int x, int flag){
if (x) T[x].fa = f;
if (f){
if (flag) T[f].lc = x; else T[f].rc = x;
}
T[x].size=lsize(x)+rsize(x)+1;
}
void Up(int x){
int y, z;
y = T[x].fa; z = T[y].fa;
if (T[y].lc == x){
Update(y, T[x].rc, 1);
Update(x, y, 0);
Update(z, x, T[z].lc == y);
}else{
Update(y, T[x].lc, 0);
Update(x, y, 1);
Update(z, x, T[z].lc == y);
}
}
void Splay(int x, int &t){
int y, z, limit;
y = T[x].fa; z = T[y]. fa; limit = T[t].fa;
while (y != limit){
if (z != limit && (T[y].lc == x) == (T[z].lc == y)) Up(y);
Up(x); y = T[x].fa; z = T[y].fa;
}
t = x;
}
void Insert(int i){
int f = root;
while (1){
if (T[f].c >= T[i].c){
if (!T[f].lc){
Update(f, i, 1);
break;
}else f = T[f].lc;
}else{
if (!T[f].rc){
Update(f, i, 0);
break;
}else f = T[f].rc;
}
}
Splay(i, root);
}
int Pred(){
int f = T[root].lc;
while (T[f].rc) f = T[f].rc;
return f;
}
int Succ(){
int f = T[root].rc;
while (T[f].lc) f = T[f].lc;
return f;
}
void Delete(int &f){
int l = T[f].lc, r = T[f].rc;
T[l].fa = T[r].fa = 0;
if(!r)
{
if(T[T[f].fa].lc==f)
{
T[T[f].fa].lc=T[f].rc;
}
else T[T[f].fa].rc=T[f].rc;
return ;
}
else
{
if(T[T[f].fa].lc==f)
{
T[T[f].fa].lc=T[f].lc;
}
else T[T[f].fa].rc=T[f].lc;
return ;
}
int x = l;
while (T[x].rc) x = T[x].rc; Splay(x, l);
Update(x, r, 0);
f = x;
}
int find(int k,int root)
{
if(T[root].c>k) return find(k,T[root].lc);
else if(T[root].c==k) return root;
else return find(k,T[root].rc);
}
int findk(int r,int k)
{
int u=lsize(r);
if(u+1>k) return findk(T[r].lc,k);
else if(u+1<k) return findk(T[r].rc,k-u-1);
else return T[r].c;
}
int main(){
int n, p, flag = 0, cnt = 0;int m;
long long ans = 0;
scanf("%d", &n);
for(int i=1;i<=n;i++)
{
//T[i].p=i;
scanf("%d",&T[i].c);
Insert(i);
}
cin>>m;
int t;
int le,ri,a,b,k;
for(int i=1;i<=m;i++)
{
cin>>t;
if(t==1)
{
scanf("%d%d",&a,&b);
int y=find(a,root);
a=y;
Delete(y);
T[y].c=b;
Insert(a);//
}
else
{
scanf("%d%d%d",&le,&ri,&k);
Splay(le-1,root);
for(int i=1;i<=n;i++) cout<<i<<" "<<T[i].c<<" "<<T[i].lc<<" "<<T[i].rc<<endl;
cout<<endl;
Splay(ri+1,T[root].rc);
int res=findk(T[root].rc,k);
printf("%d\n",res);
}
//for(int i=1;i<=n;i++) cout<<i<<" "<<lsize(i)<<" "<<T[i].c<<endl;//<<T[i].lc<<" "<<T[i].rc<<endl;cout<<endl;
}
/*
for (int i = 1; i <= n; i++){
scanf("%d%d", &p, &T[i].c);
if (p == flag || !cnt){
Update(i, 0, 0);
if (!cnt) root = i; else Insert(i);
cnt++;
flag = p;
}else{
Insert(i);
int r1 = Pred(), r2 = Succ();
Delete(root);
if (!r1) p = r2;
else if (!r2) p = r1;
else if (T[i].c - T[r1].c <= T[r2].c - T[i].c) p = r1;
else p = r2;
ans += abs(T[p].c - T[i].c);
ans %= MOD;
Splay(p, root);
Delete(root);
cnt--;
}
}*/
}
|
2e7463edf5ec87f9af019ebd0959ebcf773bb88b | 01ad3df9cde9e88a1dafa77865c9347cec32c42a | /Fingerprint_Recognition/filenameOperations.cpp | 13930251647df7c38954b4c384fc3fb9e05c63e5 | [
"MIT"
] | permissive | nflash24/Intro-to-Software-Engineering | 352895526002e04419968380d4d1f2d90591b8ad | be64d94240df1846f4e3a572f5407a8158d3f93c | refs/heads/main | 2023-01-22T14:20:11.753908 | 2020-12-02T00:47:51 | 2020-12-02T00:47:51 | 309,509,405 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,042 | cpp | filenameOperations.cpp | #include <stdlib.h>
#include <iostream>
#include <vector>
#include <string.h>
#include <opencv2/core/core.hpp>
#include <opencv2/imgproc/imgproc.hpp>
#include <opencv2/highgui/highgui.hpp>
#include "filenameOperations.h"
/*
Default empty constructor.
*/
filenameOperations::filenameOperations() {
// Empty constructor
}
/*
@param filePath : The path for the fingerprint image.
*/
filenameOperations::filenameOperations(std::string filePath) {
fullPath = filePath;
parseFilename();
}
/*
Destructor.
*/
filenameOperations::~filenameOperations() {
// Empty destructor class.
}
/*
Return the filename.
*/
std::string filenameOperations::getFilename() {
return filename;
}
/*
Return the extension of the file.
*/
std::string filenameOperations::getFileExtension() {
return extension;
}
/*
@param fname : File name to be set.
Set the filename variable to the fname variable.
*/
void filenameOperations::setFilename(std::string fname) {
filename = fname;
}
/*
@param ext : Extension to be set.
Set the extension variable to the ext variable.
*/
void filenameOperations::setExtension(std::string ext) {
extension = ext;
}
/*
Return an enumerated integer that relates to the color conversion
within opencv. If the file extension is not one of the accepted
file types, close the program.
*/
int filenameOperations::convertFile() {
std::cout << "Reading File..." << std::endl;
if (extension == "bmp") {
return cv::COLOR_RGB2GRAY;
}
else if (extension == "png") {
return cv::COLOR_RGB2GRAY;
}
else if (extension == "jpg") {
return cv::COLOR_RGB2GRAY;
}
else {
std::cout << "No file conversions... file not proper type... try again." << std::endl;
//exit(EXIT_SUCCESS);
}
}
/*
Perform operations on the object filePath in order
to break down the file path further into designated parts.
*/
void filenameOperations::parseFilename() {
std::vector<std::string> arr = split_string(fullPath, '/');
int arrSize = arr.size();
//we now have all of our arguments, need to find the extension of the last one now.
std::vector<std::string> extensionArr = split_string(arr[arrSize - 1], '.');
filename = extensionArr[0];
extension = extensionArr[1];
printf("Accepting image file type: %s\n", extension);
}
/*
@param str : The string with which to iterate over and split.
@param sep : The seperator we are looking for during iterations.
Iterate over the str variable and place seperated strings into the vector
based on when the sep variable is found within the str variable. This will
then return the completed vector of strings that were successfully delimited
by the seperator.
*/
std::vector<std::string> filenameOperations::split_string(std::string str, char sep) {
std::vector<std::string> tokens;
std::stringstream check1(str);
std::string intermediate;
while (std::getline(check1, intermediate, sep)) {
tokens.push_back(intermediate);
}
return tokens;
} |
b6a3ccf781d0b3d260b461cb1bb27a9f92cc983a | 716fa41a6596329b30035c258446165cf7052e58 | /src/CLIK/ScrollingList.cpp | 5d8ccc0c1a52fb606acd1a33d2c92c8e06886e9a | [
"MIT"
] | permissive | ahzaab/Skywind | 9ab218b3e145df49651232bc3c8b9abccc19cad9 | 473e348927e327cf0ef5cc5ec6a677fddadd4c6b | refs/heads/master | 2022-11-08T07:21:58.652847 | 2020-06-25T02:44:23 | 2020-06-25T02:44:23 | 267,191,014 | 0 | 1 | MIT | 2020-06-25T02:44:24 | 2020-05-27T01:28:50 | null | UTF-8 | C++ | false | false | 3,514 | cpp | ScrollingList.cpp | #include "PCH.h"
#include "CLIK/ScrollingList.h"
namespace CLIK
{
namespace GFx
{
namespace Controls
{
ScrollingList::ScrollingList() :
super()
{}
ScrollingList::ScrollingList(const ScrollingList& a_rhs) :
super(a_rhs)
{}
ScrollingList::ScrollingList(ScrollingList&& a_rhs) :
super(std::move(a_rhs))
{}
ScrollingList::ScrollingList(const CoreList& a_rhs) :
super(a_rhs)
{}
ScrollingList::ScrollingList(CoreList&& a_rhs) :
super(std::move(a_rhs))
{}
ScrollingList::ScrollingList(const RE::GFxValue& a_val) :
super(a_val)
{}
ScrollingList::ScrollingList(RE::GFxValue&& a_val) :
super(std::move(a_val))
{}
ScrollingList::~ScrollingList()
{}
ScrollingList& ScrollingList::operator=(const ScrollingList& a_rhs)
{
super::operator=(a_rhs);
return *this;
}
ScrollingList& ScrollingList::operator=(ScrollingList&& a_rhs)
{
super::operator=(std::move(a_rhs));
return *this;
}
ScrollingList& ScrollingList::operator=(const CoreList& a_rhs)
{
super::operator=(a_rhs);
return *this;
}
ScrollingList& ScrollingList::operator=(CoreList&& a_rhs)
{
super::operator=(std::move(a_rhs));
return *this;
}
ScrollingList& ScrollingList::operator=(const RE::GFxValue& a_rhs)
{
_instance = a_rhs;
return *this;
}
ScrollingList& ScrollingList::operator=(RE::GFxValue&& a_rhs)
{
_instance = std::move(a_rhs);
return *this;
}
Object ScrollingList::ScrollBar() const
{
return GetObject("scrollBar");
}
void ScrollingList::ScrollBar(const Object& a_scrollBar)
{
SetObject("scrollBar", a_scrollBar);
}
double ScrollingList::RowHeight() const
{
return GetNumber("rowHeight");
}
void ScrollingList::RowHeight(double a_rowHeight)
{
SetNumber("rowHeight", a_rowHeight);
}
double ScrollingList::ScrollPosition() const
{
return GetNumber("scrollPosition");
}
void ScrollingList::ScrollPosition(double a_scrollPosition)
{
SetNumber("scrollPosition", a_scrollPosition);
}
double ScrollingList::SelectedIndex() const
{
return GetNumber("selectedIndex");
}
void ScrollingList::SelectedIndex(double a_selectedIndex)
{
SetNumber("selectedIndex", a_selectedIndex);
}
bool ScrollingList::Disabled() const
{
return GetBoolean("disabled");
}
void ScrollingList::Disabled(bool a_disabled)
{
SetBoolean("disabled", a_disabled);
}
void ScrollingList::ScrollToIndex(double a_index)
{
enum
{
kIndex,
kNumArgs
};
RE::GFxValue args[kNumArgs];
args[kIndex] = a_index;
assert(args[kIndex].IsNumber());
[[maybe_unused]] auto success = _instance.Invoke("scrollToIndex", 0, args, kNumArgs);
assert(success);
}
double ScrollingList::RowCount() const
{
return GetNumber("rowCount");
}
void ScrollingList::RowCount(double a_rowCount)
{
SetNumber("rowCount", a_rowCount);
}
void ScrollingList::InvalidateData()
{
[[maybe_unused]] auto success = _instance.Invoke("invalidateData");
assert(success);
}
double ScrollingList::AvailableWidth() const
{
return GetNumber("availableWidth");
}
std::string_view ScrollingList::ToString()
{
RE::GFxValue str;
[[maybe_unused]] auto success = _instance.Invoke("toString", &str);
assert(success);
return str.GetString();
}
}
}
}
|
0d935b2003d793194bfeee2207bc15449fff3b2d | cadf9f2b9f281f2adc2732c165b561f30830cc71 | /Libraries/Source/og/Shared/String.cpp | a2128d0d84c7af1085a6557888304a8b3b9cf0c4 | [
"Zlib",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | ensiform/open-game-libraries | 0f687adc42beb2d628b19aa0261ed7398245c7e7 | 265c0d13198bd1910fe3c253b4ac04d55016b73f | refs/heads/master | 2020-05-16T23:42:18.476970 | 2014-04-26T17:47:21 | 2014-04-26T17:47:21 | 8,855,538 | 5 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 32,910 | cpp | String.cpp | /*
===========================================================================
The Open Game Libraries.
Copyright (C) 2007-2010 Lusito Software
Author: Santo Pfingsten (TTK-Bandit)
Purpose: String interaction (UTF-8)
-----------------------------------------
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
===========================================================================
*/
#include <og/Shared.h>
#include <og/Shared/File.h>
#include <math.h>
#include <vector>
#include <ctype.h>
#include <wctype.h>
#if OG_WIN32
#include <windows.h>
#elif OG_LINUX
#include <unistd.h>
#elif OG_MACOS_X
#warning "Need MacOS here FIXME"
#endif
namespace og {
const int MAX_TIMESTRING = 256;
const byte MASKBITS = 0x3F;
const byte MASK1BIT = 0x80;
const byte MASK2BIT = 0xC0;
const byte MASK3BIT = 0xE0;
const byte MASK4BIT = 0xF0;
const byte MASK5BIT = 0xF8;
const byte MASK6BIT = 0xFC;
const byte MASK7BIT = 0xFE;
/*
================
NumDigits
================
*/
static int NumDigits( int x ) {
int digits = 1;
int step = 10;
while (step <= x) {
digits++;
step *= 10;
}
return digits;
}
/*
================
Utf8ToWChar
================
*/
wchar_t Utf8ToWChar( const char *data, int *numBytes ) {
if( data[0] < MASK1BIT && data[0] >= 0 ) {
*numBytes = 1;
return data[0];
} else if((data[0] & MASK3BIT) == MASK2BIT) {
*numBytes = 2;
return ((data[0] & 0x1F) << 6) | (data[1] & MASKBITS);
} else if( (data[0] & MASK4BIT) == MASK3BIT ) {
*numBytes = 3;
return ((data[0] & 0x0F) << 12) | ( (data[1] & MASKBITS) << 6) | (data[2] & MASKBITS);
}
// wchar_t == 4
#if OG_LINUX || OG_MACOS_X
else if( (data[0] & MASK5BIT) == MASK4BIT ) {
*numBytes = 4;
return ((data[0] & 0x07) << 18) | ((data[1] & MASKBITS) << 12) |
((data[2] & MASKBITS) << 6) | (data[3] & MASKBITS);
} else if( (data[0] & MASK6BIT) == MASK5BIT ) {
*numBytes = 5;
return ((data[0] & 0x03) << 24) | ((data[1] & MASKBITS) << 18) | ((data[2] & MASKBITS) << 12) |
((data[3] & MASKBITS) << 6) | (data[4] & MASKBITS);
} else if( (data[0] & MASK7BIT) == MASK6BIT ) {
*numBytes = 6;
return ((data[0] & 0x01) << 30) | ((data[1] & MASKBITS) << 24) | ((data[2] & MASKBITS) << 18) |
((data[3] & MASKBITS) << 12) | ((data[4] & MASKBITS) << 6) | (data[5] & MASKBITS);
}
#endif
*numBytes = 1;
return L'?';
}
/*
================
WCharToUtf8
================
*/
void WCharToUtf8( wchar_t ch, char *dest ) {
if( ch < 0x80 ) {
dest[0] = (char)ch;
dest[1] = '\0';
} else if( ch < 0x800 ) {
dest[0] = (char)(MASK2BIT | ch >> 6);
dest[1] = (char)(MASK1BIT | ch & MASKBITS);
dest[2] = '\0';
} else if( ch < 0x10000 ) {
dest[0] = (char)(MASK3BIT | ch >> 12);
dest[1] = (char)(MASK1BIT | ch >> 6 & MASKBITS);
dest[2] = (char)(MASK1BIT | ch & MASKBITS);
dest[3] = '\0';
}
// wchar_t == 4
#if OG_LINUX || OG_MACOS_X
else if( ch < 0x200000 ) {
dest[0] = (char)(MASK4BIT | ch >> 18);
dest[1] = (char)(MASK1BIT | ch >> 12 & MASKBITS);
dest[2] = (char)(MASK1BIT | ch >> 6 & MASKBITS);
dest[3] = (char)(MASK1BIT | ch & MASKBITS);
dest[4] = '\0';
} else if( ch < 0x200000 ) {
dest[0] = (char)(MASK5BIT | ch >> 24);
dest[1] = (char)(MASK1BIT | ch >> 18 & MASKBITS);
dest[2] = (char)(MASK1BIT | ch >> 12 & MASKBITS);
dest[3] = (char)(MASK1BIT | ch >> 6 & MASKBITS);
dest[4] = (char)(MASK1BIT | ch & MASKBITS);
dest[5] = '\0';
} else if( ch < 0x200000 ) {
dest[0] = (char)(MASK6BIT | ch >> 30);
dest[1] = (char)(MASK1BIT | ch >> 24 & MASKBITS);
dest[2] = (char)(MASK1BIT | ch >> 18 & MASKBITS);
dest[3] = (char)(MASK1BIT | ch >> 12 & MASKBITS);
dest[4] = (char)(MASK1BIT | ch >> 6 & MASKBITS);
dest[5] = (char)(MASK1BIT | ch & MASKBITS);
dest[6] = '\0';
}
#endif
else {
dest[0] = '?';
dest[1] = '\0';
}
}
/*
================
Utf8ToLowerWide
================
*/
OG_INLINE uInt Utf8ToLowerWide( const char *ch, int *len ) {
// Check if text1[i] is utf-8
if ( (ch[0] & MASK2BIT) == MASK2BIT )
return towlower( Utf8ToWChar( ch, len ) );
// we assume it's ascii..
// OG_ASSERT( ch[0] < MASK1BIT && ch[0] >= 0 );
*len = 1;
return tolower( ch[0] );
}
/*
================
countBytesForLength
================
*/
int countBytesForLength( const char *str, int len, int byteLen ) {
int i = 0;
for( int pos=0; str[i] != '\0'; i++ ) {
if( (str[i] & MASK2BIT) != MASK1BIT ) {
if ( pos == len )
return i;
pos++;
}
}
return i;
}
/*
================
countBytesForLengthReverse
================
*/
int countBytesForLengthReverse( const char *str, int len, int byteLen ) {
const char *str2 = str + byteLen-1;
int i = 0;
for( int pos=0; str2 >= str; i++, str2-- ) {
if( (str2[i] & MASK2BIT) != MASK1BIT ) {
if ( pos == len )
return i;
pos++;
}
}
return i;
}
/*
==============================================================================
String
==============================================================================
*/
/*
================
String::String
================
*/
String::String() {
Init();
}
String::String( const char *text ) {
Init();
size_t byteLen, len;
BothLengths( text, &byteLen, &len );
SetData( text, byteLen, len );
}
String::String( const String &str ) {
Init();
SetData( str.data, str.byteLength, str.length );
}
/*
================
String::~String
================
*/
String::~String() {
Free();
}
/*
================
String::Clear
================
*/
void String::Clear( void ) {
Free();
Init();
}
/*
================
String::Init
================
*/
void String::Init( void ) {
length = 0;
byteLength = 0;
size = HARDBUFFER_SIZE;
data = hardBuffer;
data[0] = '\0';
}
/*
================
String::Resize
================
*/
void String::Resize( int newSize, bool keepContent ) {
OG_ASSERT( newSize > 0 );
size = static_cast<int>( ceil( static_cast<float>(newSize)/static_cast<float>(GRANULARITY) ) ) * GRANULARITY;
char *newData = new char[ size ];
if ( data ) {
if ( keepContent )
memcpy( newData, data, byteLength+1 );
else {
length = 0;
byteLength = 0;
}
if ( data != hardBuffer )
delete[] data;
}
data = newData;
}
/*
================
String::IsNumeric
================
*/
bool String::IsNumeric( const char *text ) {
if ( !text || text[0] == '\0' )
return false;
if ( text[0] == '-' || text[0] == '+' )
text++;
bool hasDot = false;
for ( int i=0; text[i] != '\0'; i++ ) {
if ( text[i] == '.' && !hasDot )
hasDot = true;
else if ( !IsDigit(text[i]) )
return false;
}
return true;
}
/*
================
String::IsWord
================
*/
bool String::IsWord( const char *text ) {
if ( !text || text[0] == '\0' )
return false;
for ( int i=0; text[i] != '\0'; i++ ) {
if ( !IsDigit(text[i]) && !IsAlpha(text[i]) && text[i] != '_' )
return false;
}
return true;
}
/*
================
String::ToLower
================
*/
void String::ToLower( void ) {
char utf8[7];
wchar_t ch;
int len;
String old(*this);
Empty();
for( int i=0; i<old.byteLength; i++ ) {
ch = Utf8ToWChar( old.data+i, &len );
WCharToUtf8( towlower(ch), utf8 );
AppendData( utf8, ByteLength(utf8), 1 );
}
}
/*
================
String::ToUpper
================
*/
void String::ToUpper( void ) {
char utf8[7];
wchar_t ch;
int len;
String old(*this);
Empty();
for( int i=0; i<old.byteLength; i++ ) {
ch = Utf8ToWChar( old.data+i, &len );
WCharToUtf8( towupper(ch), utf8 );
AppendData( utf8, ByteLength(utf8), 1 );
}
}
/*
================
String::CapLength
================
*/
void String::CapLength( int len, bool elipsis ) {
if ( len < length ) {
if ( elipsis )
len = Max(len-3, 0);
for( int i=0, pos=0; data[i] != '\0'; i++ ) {
if( (data[i] & MASK2BIT) != MASK1BIT ) {
if ( pos == len ) {
length = len;
byteLength = i;
data[byteLength] = '\0';
if ( elipsis )
AppendData("...", 3, 3);
return;
}
pos++;
}
}
}
}
/*
================
String::Find
================
*/
int String::Find( const char *str, const char *text, bool caseSensitive, int start ) {
int findLen = Length(text);
if ( caseSensitive ) {
for( int i=0; str[i] != 0; i++ ) {
if ( Cmpn(str+i, text, findLen ) == 0 )
return i;
}
} else {
for( int i=0; str[i] != 0; i++ ) {
if ( Icmpn(str+i, text, findLen ) == 0 )
return i;
}
}
return -1;
}
/*
================
String::FindOneOf
================
*/
int String::FindOneOf( const char *str, const char *text, bool caseSensitive, int start ) {
return -1;
}
/*
================
String::ReverseFind
================
*/
int String::ReverseFind( const char *str, const char *text, bool caseSensitive ) {
int byteLength = ByteLength(str);
int findLen = Length(text);
if ( caseSensitive ) {
for( int i=byteLength-findLen; i >= 0; i-- ) {
if ( Cmpn(str+i, text, findLen ) == 0 )
return i;
}
} else {
for( int i=byteLength-findLen; i >= 0; i-- ) {
if ( Icmpn(str+i, text, findLen ) == 0 )
return i;
}
}
return -1;
}
/*
================
String::Replace
================
*/
int String::Replace( const char *a, const char *b, int start ) {
int lenA = ByteLength(a);
if ( lenA == 0 )
return 0;
int lenB = ByteLength(b);
int max = byteLength - lenA;
if ( max >= start ) {
std::vector<int> positions;
int i;
for ( i=start; i<=max; i++ ) {
if ( Cmpn( data+i, a, lenA ) == 0 )
positions.push_back(i);
}
int count = positions.size();
if ( count ) {
char *oldData;
int oldByteLength = byteLength;
int oldLength = length;
int oldSize = size;
if ( data == hardBuffer ) {
oldData = new char[byteLength+1];
memcpy( oldData, data, byteLength+1 );
} else {
oldData = data;
data = hardBuffer;
size = HARDBUFFER_SIZE;
}
length = 0;
byteLength = 0;
int p = 0;
int j;
CheckSize( oldByteLength + ((lenB-lenA)*count) + 1, false );
for ( i=start; i< oldByteLength; i++ ) {
if ( p < count && i == positions[p] ) {
p++;
i += lenA-1;
for ( j=0; j<lenB; j++ )
data[byteLength++] = b[j];
}
else
data[byteLength++] = oldData[i];
}
data[byteLength] = '\0';
length = oldLength + (Length(b) - Length(a)) * count;
delete[] oldData;
}
return count;
}
return 0;
}
/*
================
String::StripLeading
================
*/
int String::StripLeading( const char *text ) {
size_t byteLen, len;
BothLengths( text, &byteLen, &len );
if ( byteLen == 0 )
return 0;
int count = 0;
int pos = 0;
while ( Cmpn(data+pos, text, byteLen) == 0 ) {
pos += byteLen;
length -= len;
count++;
}
if ( pos > 0 ) {
byteLength -= pos;
if ( byteLength == 0 )
data[0] = '\0';
else
memmove( data, data + pos, byteLength+1 );
}
return count;
}
/*
================
String::StripLeadingOnce
================
*/
bool String::StripLeadingOnce( const char *text ) {
size_t byteLen, len;
BothLengths( text, &byteLen, &len );
if ( byteLen == 0 )
return false;
if ( Cmpn(text, byteLen) == 0 ) {
length -= len;
byteLength -= byteLen;
if ( byteLength == 0 )
data[0] = '\0';
else
memmove( data, data + byteLen, byteLength+1 );
return true;
}
return false;
}
/*
================
String::StripLeadingWhitespaces
================
*/
int String::StripLeadingWhitespaces( void ) {
int pos = 0;
while ( IsSpace(data[pos]) ) pos++;
if ( pos > 0 ) {
length -= pos;
byteLength -= pos;
if ( byteLength == 0 )
data[0] = '\0';
else
memmove( data, data + pos, byteLength+1 );
}
return pos;
}
/*
================
String::StripTrailing
================
*/
int String::StripTrailing( const char *text ) {
int len = ByteLength(text);
int pos = byteLength - len;
int count = 0;
while ( pos >= 0 && Cmpn(data+pos, text, len) == 0 ) {
pos -= len;
count++;
}
pos += len;
if ( pos != byteLength ) {
length -= Length( data+pos );
byteLength = pos;
data[byteLength] = '\0';
}
return count;
}
/*
================
String::StripTrailingOnce
================
*/
bool String::StripTrailingOnce( const char *text ) {
int len = ByteLength(text);
int pos = byteLength - len;
if ( pos >= 0 && Cmpn( data+pos, text, len ) == 0 ) {
length -= Length(text);
byteLength = pos;
data[byteLength] = '\0';
return true;
}
return false;
}
/*
================
String::StripTrailingWhitespaces
================
*/
int String::StripTrailingWhitespaces( void ) {
int pos = byteLength-1;
int count = 0;
while ( IsSpace(data[pos]) ){
count++;
pos--;
}
pos++;
if ( pos != byteLength ) {
length -= byteLength - pos;
byteLength = pos;
data[byteLength] = '\0';
}
return count;
}
/*
================
String::StripFileExtension
================
*/
void String::StripFileExtension( void ) {
for ( int i=byteLength-1; i>=0; i-- ) {
if ( data[i] == '/' || data[i] == '\\' )
return;
if ( data[i] == '.' ) {
length -= Length( data+i );
byteLength = i;
data[byteLength] = '\0';
return;
}
}
}
/*
================
String::SetFileExtension
================
*/
void String::SetFileExtension( const char *ext ) {
StripFileExtension();
if ( *ext != '.' )
AppendData(".", 1, 1);
size_t byteLen, len;
BothLengths( ext, &byteLen, &len );
AppendData( ext, byteLen, len );
}
/*
================
String::DefaultFileExtension
================
*/
void String::DefaultFileExtension( const char *ext ) {
for ( int i=byteLength-1; i>=0; i-- ) {
if ( data[i] == '/' || data[i] == '\\' )
break;
if ( data[i] == '.' )
return;
}
if ( *ext != '.' )
AppendData(".", 1, 1);
size_t byteLen, len;
BothLengths( ext, &byteLen, &len );
AppendData( ext, byteLen, len );
}
/*
================
String::GetFileExtension
================
*/
void String::GetFileExtension( const char *text, int byteLen, String &str ) {
for ( int i=byteLen-1; i>=0; i-- ) {
if ( text[i] == '/' || text[i] == '\\' ) {
str.Empty();
return;
}
if ( text[i] == '.' ) {
str = text+i+1;
return;
}
}
}
String String::GetFileExtension( const char *text, int byteLen ) {
String str;
for ( int i=byteLen-1; i>=0; i-- ) {
if ( text[i] == '/' || text[i] == '\\' ) {
return str;
}
if ( text[i] == '.' ) {
str = text+i+1;
return str;
}
}
return str;
}
/*
================
String::StripFilename
================
*/
void String::StripFilename( void ) {
for ( int i=byteLength-1; i>0; i-- ) {
if ( data[i-1] == '/' || data[i-1] == '\\' ) {
length -= Length( data+i );
byteLength = i;
data[byteLength] = '\0';
return;
}
}
Clear();
}
/*
================
String::GetFilename
================
*/
void String::GetFilename( String &str ) const {
for ( int i=byteLength-1; i>0; i-- ) {
if ( data[i-1] == '/' || data[i-1] == '\\' ) {
str = data+i;
return;
}
}
str = data;
}
String String::GetFilename( void ) const {
for ( int i=byteLength-1; i>0; i-- ) {
if ( data[i-1] == '/' || data[i-1] == '\\' ) {
return (data+i);
}
}
return *this;
}
/*
================
String::StripPath
================
*/
void String::StripPath( void ) {
int len = 0;
for ( int i=byteLength-1; i>0; i-- ) {
if( (data[i] & MASK2BIT) != MASK1BIT )
len++;
if ( data[i-1] == '/' || data[i-1] == '\\' ) {
SetData(data+i, byteLength-i, len );
return;
}
}
}
/*
================
String::GetPath
================
*/
void String::GetPath( String &str ) const {
int len = 0;
for ( int i=byteLength-1; i>0; i-- ) {
if( (data[i] & MASK2BIT) != MASK1BIT )
len++;
if ( data[i-1] == '/' || data[i-1] == '\\' ) {
str.SetData(data, i, len);
return;
}
}
str.Empty();
}
String String::GetPath( void ) const {
int len = 0;
String str;
for ( int i=byteLength-1; i>0; i-- ) {
if( (data[i] & MASK2BIT) != MASK1BIT )
len++;
if ( data[i-1] == '/' || data[i-1] == '\\' ) {
str.SetData(data, i, len);
return str;
}
}
return str;
}
/*
================
String::Left
================
*/
String String::Left( int len ) const {
if ( len > length )
return *this;
else {
uInt byteLen = countBytesForLength( data, len, byteLength );
String ret;
ret.SetData(data, byteLen, len);
return ret;
}
}
/*
================
String::Left
================
*/
void String::Left( int len, String &str ) const {
str.Clear();
if ( len > length )
str = *this;
else {
uInt byteLen = countBytesForLength( data, len, byteLength );
str.SetData(data, byteLen, len);
}
}
/*
================
String::Right
================
*/
String String::Right( int len ) const {
if ( len > length )
return *this;
else {
uInt byteLen = countBytesForLengthReverse( data, len, byteLength );
String ret;
ret.SetData( data+byteLength-byteLen, byteLen, len );
return ret;
}
}
/*
================
String::Right
================
*/
void String::Right( int len, String &str ) const {
str.Clear();
if ( len > length )
str = *this;
else {
uInt byteLen = countBytesForLengthReverse( data, len, byteLength );
str.SetData( data+byteLength-byteLen, byteLen, len );
}
}
/*
================
String::Mid
================
*/
String String::Mid( int start, int len ) const {
if ( (start + len) > length ) {
start = countBytesForLength( data, start, byteLength );
if ( start < byteLength ) {
uInt byteLen = byteLength - start;
String ret;
ret.SetData(data+start, byteLen, len);
return ret;
}
return "";
}
start = countBytesForLength( data, start, byteLength );
uInt byteLen = countBytesForLength( data+start, len, byteLength );
String ret;
ret.SetData(data+start, byteLen, len);
return ret;
}
/*
================
String::Mid
================
*/
void String::Mid( int start, int len, String &str ) const {
str.Clear();
if ( (start + len) > length ) {
start = countBytesForLength( data, start, byteLength );
if ( start < byteLength ) {
uInt byteLen = byteLength - start;
str.SetData(data+start, byteLen, len);
}
return;
}
start = countBytesForLength( data, start, byteLength );
uInt byteLen = countBytesForLength( data+start, len, byteLength );
str.SetData(data+start, byteLen, len);
}
/*
================
String::Cmp
================
*/
int String::Cmp( const char *text1, const char *text2 ) {
if ( text1 == OG_NULL ) {
if ( text2 == OG_NULL )
return 0;
else
return -1;
}
else if ( text2 == OG_NULL )
return 1;
int d;
for( int i=0; text1[i] || text2[i]; i++) {
d = text1[i] - text2[i];
if ( d != 0 )
return d;
}
return 0;
}
/*
================
String::Cmpn
================
*/
int String::Cmpn( const char *text1, const char *text2, int len ) {
if ( text1 == OG_NULL ) {
if ( text2 == OG_NULL )
return 0;
else
return -1;
}
else if ( text2 == OG_NULL )
return 1;
int d;
for( int i=0; text1[i] || text2[i]; i++) {
if ( len <= 0 )
return 0;
if( (text1[i] & MASK2BIT) != MASK1BIT )
len--;
d = text1[i] - text2[i];
if ( d != 0 )
return d;
}
return 0;
}
/*
================
String::CmpSuffix
================
*/
int String::CmpSuffix( const char *text ) const {
int len = Length( text );
if ( len > length )
return Cmp( data, text );
else {
uInt byteLen = countBytesForLengthReverse( data, len, byteLength );
return Cmp( data+byteLength-byteLen, text );
}
}
/*
================
String::Icmp
================
*/
int String::Icmp( const char *text1, const char *text2 ) {
if ( text1 == OG_NULL ) {
if ( text2 == OG_NULL )
return 0;
else
return -1;
}
else if ( text2 == OG_NULL )
return 1;
int numB1, numB2, d;
for( int i=0,j=0; text1[i] || text2[i]; i += numB1, j += numB2 ) {
d = Utf8ToLowerWide( text1+i, &numB1 ) - Utf8ToLowerWide( text2+j, &numB2 );
if ( d != 0 )
return d;
}
return 0;
}
/*
================
String::Icmpn
================
*/
int String::Icmpn( const char *text1, const char *text2, int len ) {
if ( text1 == OG_NULL ) {
if ( text2 == OG_NULL )
return 0;
else
return -1;
}
else if ( text2 == OG_NULL )
return 1;
int numB1, numB2, d;
for( int i=0,j=0; text1[i] || text2[i]; i += numB1, j += numB2 ) {
if ( len <= 0 )
return 0;
if( (text1[i] & MASK2BIT) != MASK1BIT )
len--;
d = Utf8ToLowerWide( text1+i, &numB1 ) - Utf8ToLowerWide( text2+j, &numB2 );
if ( d != 0 )
return d;
}
return 0;
}
/*
================
String::IcmpSuffix
================
*/
int String::IcmpSuffix( const char *text ) const {
int len = Length( text );
if ( len > length )
return Icmp( data, text );
else {
uInt byteLen = countBytesForLengthReverse( data, len, byteLength );
return Icmp( data+byteLength-byteLen, text );
}
}
/*
=============
String::Length
=============
*/
size_t String::Length( const char *text ) {
if ( !text ) // users could send a NULL string (no point in getting to loop if it is NULL)
return 0;
size_t pos = 0;
for( int i=0; text[i] != '\0'; i++ ) {
if( (text[i] & MASK2BIT) != MASK1BIT )
pos++;
}
return pos;
}
/*
=============
String::ByteLength
=============
*/
size_t String::ByteLength( const char *text ) {
if ( !text ) // users could send a NULL string (no point in getting to loop if it is NULL)
return 0;
size_t i;
for ( i = 0; text[i] != '\0'; i++ );
return i;
}
/*
=============
String::BothLengths
=============
*/
void String::BothLengths( const char *text, size_t *byteLength, size_t *length ) {
*byteLength = 0;
*length = 0;
if ( !text ) // users could send a NULL string (no point in getting to loop if it is NULL)
return;
for( ; text[*byteLength] != '\0'; (*byteLength)++ ) {
if( (text[*byteLength] & MASK2BIT) != MASK1BIT )
(*length)++;
}
}
/*
================
String::GetEscapeColorLength
================
*/
int String::GetEscapeColorLength( const char *str ) {
if ( str[0] != '^' )
return 0;
if ( IsDigit(str[1]) )
return 2;
if ( str[1] != 'c')
return 0;
for( int i=2; i<5; i++ ) {
if ( !IsDigit(str[i]) && !( str[i] <= 'f' && str[i] >= 'a' ) && !( str[i] <= 'F' && str[i] >= 'A' ) )
return 0;
}
return 5;
}
/*
================
String::StripEscapeColor
================
*/
size_t String::StripEscapeColor( char *str ) {
uInt escapeLength, numRemoved = 0;
int skip=0;
char *writePos = str;
char *readPos = str;
while( *readPos != '\0' ) {
if ( skip ) {
skip--;
numRemoved++;
} else {
escapeLength = GetEscapeColorLength( readPos );
if ( escapeLength ) {
skip = escapeLength-1;
numRemoved += escapeLength;
} else {
writePos[0] = readPos[0];
writePos++;
}
}
readPos++;
}
*writePos = '\0';
return numRemoved;
}
/*
================
String::StripEscapeColor
================
*/
size_t String::StripEscapeColor( void ) {
int removed = StripEscapeColor( data );
byteLength -= removed;
length -= removed;
return removed;
}
/*
================
String::SetData
================
*/
void String::SetData( const char *text, int byteLen, int len ) {
//! @todo rather just an assert ?
if ( text == OG_NULL ) {
// don't boom on NULL text
data[0] = '\0';
length = 0;
byteLength = 0;
return;
}
CheckSize( byteLen + 1, false );
memcpy( data, text, byteLen );
data[len] = '\0';
byteLength = byteLen;
length = len;
}
/*
================
String::ReadFromFile
================
*/
void String::ReadFromFile( File *file ) {
uShort byteLen = file->ReadUshort();
uShort len = file->ReadUshort();
if ( byteLen > FILE_MAX_BYTES )
byteLen = FILE_MAX_BYTES;
CheckSize( byteLen + 1, false );
file->Read( data, len );
data[len] = '\0';
length = len;
byteLength = byteLen;
}
/*
================
String::WriteToFile
================
*/
void String::WriteToFile( File *file ) const {
int byteLen = Min( byteLength, FILE_MAX_BYTES );
file->WriteUshort(static_cast<uShort>( byteLen ));
file->WriteUshort(static_cast<uShort>(length));
file->Write( data, byteLen );
}
/*
================
String::ToInt
faster than atoi..
================
*/
int String::ToInt( const char *str ) {
int val = 0;
int i = 0;
int m = (str[0] == '-' ) ? -1 : 1;
if ( str[0] == '-' || str[0] == '+' )
i++;
int max = 10 + i;
for ( ; IsDigit(str[i]) && i<max; i++ )
val = 10 * val + (str[i] - '0');
return val * m;
}
/*
================
String::ToUInt
faster than atoi..
================
*/
uInt String::ToUInt( const char *str ) {
if ( str[0] == '-' )
return 0;
uInt val = 0;
uInt i = 0;
uInt m = 1;
if ( str[0] == '-' || str[0] == '+' )
i++;
uInt max = 10 + i;
for ( ; IsDigit(str[i]) && i<max; i++ )
val = 10 * val + (str[i] - '0');
return val * m;
}
/*
================
String::ToLong
faster than atol..
================
*/
long String::ToLong( const char *str ) {
long val = 0;
int i = 0;
int m = (str[0] == '-' ) ? -1 : 1;
if ( str[0] == '-' || str[0] == '+' )
i++;
int max = 10 + i;
for ( ; IsDigit(str[i]) && i<max; i++ )
val = 10 * val + (str[i] - '0');
return val * m;
}
/*
================
String::ToULong
faster than atoi..
================
*/
uLong String::ToULong( const char *str ) {
if ( str[0] == '-' )
return 0;
uLong val = 0;
uLong i = 0;
uLong m = 1;
if ( str[0] == '-' || str[0] == '+' )
i++;
uLong max = 10 + i;
for ( ; IsDigit(str[i]) && i<max; i++ )
val = 10 * val + (str[i] - '0');
return val * m;
}
/*
================
String::ToFloat
faster than atof and sscanf
================
*/
float String::ToFloat( const char *str ) {
uLong val;
float div = (str[0] == '-' ) ? -1.0f : 1.0f;
int i = 0;
if ( str[0] == '-' || str[0] == '+' )
i++;
int max = 8 + i;
for ( val=0; IsDigit(str[i]) && i<max; i++ )
val = 10 * val + (str[i] - '0');
if ( str[i] == '.' ) {
for ( i++; IsDigit(str[i]) && i<max; i++ ) {
val = 10 * val + (str[i] - '0');
div *= 10;
}
}
return val / div;
}
/*
================
String::ToFloatArray
faster than sscanf
================
*/
bool String::ToFloatArray( const char *str, float *fp, int dim ) {
uLong val;
float div;
int i = 0;
int j, max;
for ( j=0; j < dim; j++ ) {
if ( j && str[i-1] != ' ' )
break;
div = (str[i] == '-' ) ? -1.0f : 1.0f;
if ( str[i] == '-' || str[i] == '+' )
i++;
if ( !IsDigit(str[i]) )
break;
max = 8 + i;
for ( val=0; IsDigit(str[i]) && i<max; i++ )
val = 10 * val + (str[i] - '0');
//! @todo fix this nicer
// skip remaining digits we where not able to read.
for ( ; IsDigit(str[i]); i++ )
continue;
if ( str[i] == '.' ) {
for ( i++; IsDigit(str[i]) && i<max; i++ ) {
val = 10 * val + (str[i] - '0');
div *= 10;
}
//! @todo fix this nicer
// skip remaining digits we where not able to read.
for ( ; IsDigit(str[i]); i++ )
continue;
}
fp[j] = val / div;
i++;
}
if ( j != dim ) {
while(j<dim)
fp[j++] = 0.0f;
return false;
}
return true;
}
/*
================
String::ToDouble
faster than atof and sscanf
================
*/
double String::ToDouble( const char *str ) {
uLongLong val;
double div = (str[0] == '-' ) ? -1.0 : 1.0;
int i = 0;
if ( str[0] == '-' || str[0] == '+' )
i++;
int max = 17 + i;
for ( val=0; IsDigit(str[i]) && i<max; i++ )
val = 10 * val + (str[i] - '0');
if ( str[i] == '.' ) {
for ( i++; IsDigit(str[i]) && i<max; i++ ) {
val = 10 * val + (str[i] - '0');
div *= 10;
}
}
return val / div;
}
/*
================
String::ToDoubleArray
faster than sscanf
================
*/
bool String::ToDoubleArray( const char *str, double *dp, int dim ) {
uLongLong val;
double div;
int i = 0;
int j, max;
for ( j=0; j < dim; j++ ) {
if ( j && str[i-1] != ' ' )
break;
div = (str[i] == '-' ) ? -1.0 : 1.0;
if ( str[i] == '-' || str[i] == '+' )
i++;
if ( !IsDigit(str[i]) )
break;
max = 17 + i;
for ( val=0; IsDigit(str[i]) && i<max; i++ )
val = 10 * val + (str[i] - '0');
if ( str[i] == '.' ) {
for ( i++; IsDigit(str[i]) && i<max; i++ ) {
val = 10 * val + (str[i] - '0');
div *= 10;
}
}
dp[j] = val / div;
i++;
}
if ( j != dim ) {
while(j<dim)
dp[j++] = 0.0;
return false;
}
return true;
}
/*
================
String::FormatNumBytes
================
*/
void String::FormatNumBytes( uLongLong bytes, int digits, fnbStyle style ) {
static const char *units[] = {
"Byte",
"KByte",
"MByte",
"GByte",
"TByte",
"PByte"
};
static const int total_units = sizeof(units) / sizeof(units[0]);
double bytesD = static_cast<double>(bytes);
int limit = static_cast<int>(powf(10.0f, static_cast<float>(digits)));
double value = bytesD;
const double factor = 1.0f/1024.0f;
int floorValue;
for( int i = 1; i < total_units; ++i ) {
value *= factor;
floorValue = static_cast<int>(floor(value));
if( floorValue < limit ) {
switch(style) {
case FNB_FLOAT:
digits--;
case FNB_FLOATEX:
if ( floorValue != value ) {
*this = Format( "$* $*") << SetPrecision( digits-NumDigits(floorValue) ) << static_cast<float>(value) << units[i];
return;
}
default:
*this = Format("$* $*") << floorValue << units[i];
return;
}
}
}
// Should never get here
value = static_cast<int>(static_cast<float>(bytesD / powf(1024.0, static_cast<float>(total_units-1))));
*this = Format("$* $*") << static_cast<float>(value) << units[total_units-1];
}
/*
================
String::FromWide
================
*/
void String::FromWide( const wchar_t *in ) {
#if OG_WIN32
int inLen = wcslen(in)+1;
int outLen = WideCharToMultiByte( CP_UTF8, 0, in, inLen, OG_NULL, 0, OG_NULL, OG_NULL );
CheckSize( outLen, false );
WideCharToMultiByte( CP_UTF8, 0, in, inLen, data, outLen, OG_NULL, OG_NULL );
length = inLen-1;
byteLength = outLen-1;
#elif OG_LINUX
#warning "Need Linux here FIXME"
#elif OG_MACOS_X
#warning "Need MacOS here FIXME"
#endif
}
/*
================
String::ToWide
================
*/
int String::ToWide( const char *in, uInt numBytes, wchar_t *out, uInt outSize ) {
#if OG_WIN32
if ( out == OG_NULL )
return MultiByteToWideChar( CP_UTF8, 0, in, numBytes, OG_NULL, 0 );
out[0] = L'\0';
return MultiByteToWideChar( CP_UTF8, 0, in, numBytes, out, outSize );
#elif OG_LINUX
#warning "Need Linux here FIXME"
#elif OG_MACOS_X
#warning "Need MacOS here FIXME"
#endif
}
/*
================
String::FromBitFlags
================
*/
void String::FromBitFlags( int flags, const char **flagNames ) {
if ( flags == -1 )
*this = "ALL";
else {
*this = "";
for( int i=0; i<32 && flagNames[i]; i++ ) {
if ( ( flags & BIT(i) ) != 0 ) {
*this += flagNames[i];
*this += "|";
}
}
StripTrailingOnce("|");
}
}
/*
================
String::FromDateTime
================
*/
void String::FromDateTime( const char *format, const tm *time ) {
char buffer [MAX_TIMESTRING];
strftime( buffer, MAX_TIMESTRING, format, time );
*this = buffer; //! @todo may need unicode conversion
}
}
|
2f46dd77330de64610740a617c772314d8289c00 | 80fd9493d9f2b0df745c333f2b36e19c8db098a8 | /old/Marda.old/msvc/Marda.test/test_memorypool.cpp | d2a0a48219b659c990d03f71672de721c82897c5 | [] | no_license | erio-nk/MyCxxProgram2011 | 12c6f96e4b7a4f2cf61bd367cfa9a7143ee3d024 | be1192e34fa6d7c863b0e50c43441245493c84a4 | refs/heads/master | 2021-01-01T16:56:17.535209 | 2012-06-12T14:48:20 | 2012-06-12T14:48:20 | 4,638,409 | 1 | 0 | null | null | null | null | SHIFT_JIS | C++ | false | false | 1,619 | cpp | test_memorypool.cpp | #include <iostream>
// 1,2,4,8,16,32...2の階乗にアラインメントするメタ関数 色々やったけど結局使わない系
#if 1
/* MetaProgramingLibs.hとか作るか・・・
template <bool Expr, int Then, int Else>
struct If;
template <int Then, int Else>
struct If<true, Then, Else>
{
enum { result = Then };
};
template <int Then, int Else>
struct If<false, Then, Else>
{
enum { result = Else };
};*/
template <int T>
class Align
{
template <int T, int N, bool Expr >
struct _Align;
public:
enum { result = _Align<T, 1, T<=1 >::result };
private:
template <int T, int N>
struct _Align<T, N, true>
{
enum { result = N };
};
template <int T, int N>
struct _Align<T, N, false>
{
enum { result = _Align<T, N*2, T<=(N*2) >::result };
};
};
#else
template <int T, int N = 1, bool E = (T<=N)>
struct Align;
template <int T, int N>
struct Align<T, N, true>
{
enum
{
result = N
};
};
template <int T, int N>
struct Align<T, N, false>
{
enum
{
result = Align<T, N*2>::result
};
};
#endif
//template <size_t SIZE>
//void* operator new (const size_t size)
//{
// std::cout << "new:" << Align<SIZE>::result << std::endl;
// return new size;
//}
//template <size_t SIZE>
//void* New(size_t size)
//{
// std::cout << "new" << Align<SIZE>::result << std::endl;
// return
//}
#include <algorithm>
//#include "Marda/Util/MemoryPool.h"
//
//typedef Marda::MemoryPool<int> MyMemoryPool;
//
void test_memorypool()
{
size_t int_align = Align<sizeof(long long)>::result;
std::cout << "int_align=" << int_align << std::endl;
//MyMemoryPool memPool;
//int* p = new int;
}
|
1490aafecf24f21e27fad030b61feb05e1de17ba | 9b101a0f0211b0f8ceb8baeddee71c148e88f80a | /Template/chapter_3/stack1.cpp | acb387c27ebc6dad24e1dee6c00d0a8bba79a15b | [] | no_license | whatcat/Template_c- | 0548f2293ac0f4fdd5f00531667334dcfcd0c5f6 | 0f1babfd12e34d1ae91dd9eb7a573923c3cf3ae8 | refs/heads/master | 2020-04-17T07:53:48.891609 | 2016-08-24T13:00:13 | 2016-08-24T13:00:13 | 66,276,534 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 463 | cpp | stack1.cpp | #include <iostream>
#include <string>
#include <cstdlib>
#include "stack1.hpp"
int main()
{
try
{
stack<int> intstack;
stack<std::string> stringstack;
intstack.push(7);
std::cout << instack.top() << std::endl;
stringstack.push("hello");
std::cout << stringsatck.top() << std::endl;
intstack.pop();
stringstack.pop();
}
catch (std::exception const& ex)
{
std::cerr << "Exception:" << ex.what() << std::endl;
return EXIT_FAILURE;
}
}
|
a3fbe6794c482c4f59f97ac2f5de3fd60f3ff0fa | bb69043c8e8037af7b5f3b01e3ce9e10d8bd2aa3 | /BackJoon/bruteforce/7568.cpp | bc52bc605253c94c5af6ef13fdec97d6db1975ec | [] | no_license | youlive789/AlgorithmStudy | 30b7ca7b5fcd630d4f2bf7784bb4a31ecb96ecb1 | c61c01d0ded255acf1ace397e138c9b895cfd332 | refs/heads/master | 2022-05-15T19:17:45.128031 | 2022-04-21T00:30:15 | 2022-04-21T00:30:15 | 183,837,140 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 890 | cpp | 7568.cpp | #include<iostream>
#include<cstring>
#include<vector>
using namespace std;
int main() {
int cases;
cin >> cases;
vector<pair<int,int>> bodyTable;
vector<int> rank;
while (cases--) {
int weight, length;
cin >> weight >> length;
bodyTable.push_back(make_pair(weight, length));
rank.push_back(1);
}
for (int i = 0; i < bodyTable.size(); i++) {
for (int j = i+1; j < bodyTable.size(); j++) {
if (bodyTable[i].first > bodyTable[j].first && bodyTable[i].second > bodyTable[j].second) {
rank[j]++;
}
else if (bodyTable[i].first < bodyTable[j].first && bodyTable[i].second < bodyTable[j].second) {
rank[i]++;
}
}
}
for (auto num : rank) {
cout << num << endl;
}
return 0;
} |
0cdb83e65d051d43d8a81841993b6120422a3767 | c10006ef30bede2a78735f5e126abbc035f5fbfa | /MyBrowser/MyBrowserDoc.h | 666600d9ec5c436fe9476e420403d80e67372121 | [] | no_license | Ye1in/MyBrowser | d86dbcb850c1c0a3a7361e491289b5017b78d9e0 | a4e9201feff8fd5f9107eb5de72e1fb9729d45a2 | refs/heads/master | 2020-03-22T00:26:40.214150 | 2018-06-30T11:38:01 | 2018-06-30T11:38:01 | 139,244,670 | 1 | 0 | null | null | null | null | GB18030 | C++ | false | false | 599 | h | MyBrowserDoc.h | // MyBrowserDoc.h : CMyBrowserDoc 类的接口
//
#pragma once
class CMyBrowserDoc : public CDocument
{
protected: // 仅从序列化创建
CMyBrowserDoc();
DECLARE_DYNCREATE(CMyBrowserDoc)
// 属性
public:
// 操作
public:
// 重写
public:
virtual BOOL OnNewDocument();
virtual void Serialize(CArchive& ar);
// 实现
public:
virtual ~CMyBrowserDoc();
#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
protected:
// 生成的消息映射函数
protected:
DECLARE_MESSAGE_MAP()
public:
afx_msg void OnBnClickedSavebutton();
};
|
5daa1137a30b5ececc4c99db8cec6e2c0985ce33 | a3d6556180e74af7b555f8d47d3fea55b94bcbda | /components/password_manager/core/browser/affiliation/affiliation_fetcher_factory_impl.h | bf05bf5118f565ba508d3dd062acce66cedabc19 | [
"BSD-3-Clause"
] | permissive | chromium/chromium | aaa9eda10115b50b0616d2f1aed5ef35d1d779d6 | a401d6cf4f7bf0e2d2e964c512ebb923c3d8832c | refs/heads/main | 2023-08-24T00:35:12.585945 | 2023-08-23T22:01:11 | 2023-08-23T22:01:11 | 120,360,765 | 17,408 | 7,102 | BSD-3-Clause | 2023-09-10T23:44:27 | 2018-02-05T20:55:32 | null | UTF-8 | C++ | false | false | 955 | h | affiliation_fetcher_factory_impl.h | // Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_AFFILIATION_AFFILIATION_FETCHER_FACTORY_IMPL_H_
#define COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_AFFILIATION_AFFILIATION_FETCHER_FACTORY_IMPL_H_
#include "components/password_manager/core/browser/affiliation/affiliation_fetcher_factory.h"
namespace password_manager {
class AffiliationFetcherFactoryImpl : public AffiliationFetcherFactory {
public:
AffiliationFetcherFactoryImpl();
~AffiliationFetcherFactoryImpl() override;
std::unique_ptr<AffiliationFetcherInterface> CreateInstance(
scoped_refptr<network::SharedURLLoaderFactory> url_loader_factory,
AffiliationFetcherDelegate* delegate) override;
};
} // namespace password_manager
#endif // COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_AFFILIATION_AFFILIATION_FETCHER_FACTORY_IMPL_H_
|
6fa43e041c0866a86e7df5e5abf5ade62b743ef8 | 721543fec45960038aeb1d467b8398baf8173b2c | /statistics.h | 77e43220e6c4df8cd3832fa7d74a4cf1fa24eadf | [] | no_license | Lindany/TypingChamps | 4d6faf748a67dd9b4deb7a850a2d8a0355ff986b | b83cf72add1abae5e8402d06a5a6c5cfc7bdb9e5 | refs/heads/master | 2020-03-10T19:46:41.116844 | 2018-04-14T23:02:17 | 2018-04-14T23:02:17 | 129,555,314 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 125 | h | statistics.h | #ifndef STATISTICS_H
#define STATISTICS_H
class Statistics
{
public:
Statistics();
};
#endif // STATISTICS_H |
6d09775c1f433116c32ad4e05e5a56e6ded80998 | 46a270c50ca6d41d92c085aad2d8f8dfa3dc55df | /client/Classes/Player/FmGodAnimal.h | c849420930705d824896e59d6f37c69058959d92 | [] | no_license | PenpenLi/YXLDGameServer | 74e4eb05215373121029beefb9712f94b0488aea | 6f6e709271a0f47aa8d55226fed436308aae2365 | refs/heads/master | 2022-10-20T15:49:13.793932 | 2020-07-15T07:50:00 | 2020-07-15T07:50:00 | 279,802,517 | 0 | 0 | null | 2020-07-15T07:49:15 | 2020-07-15T07:49:14 | null | UTF-8 | C++ | false | false | 620 | h | FmGodAnimal.h | #ifndef _FMGODANIMAL_H_
#define _FMGODANIMAL_H_
#include "FmConfig.h"
#include "../Numeric/GodAnimalData.h"
#include "FmEntity.h"
NS_FM_BEGIN
class GodAnimal: public Entity{
protected:
GodAnimal( uint8 entityType, uint entityId, const string& name );
public:
static Entity* Create( uint entityId, const string& entityName, EntityCreateOpt* createOpt );
static void InitInterface();
public:
virtual ~GodAnimal();
void setGodAnimalData(stGodAnimalData* data ) { m_GodAnimaldata = data;}
stGodAnimalData* getGodAnimalData() { return m_GodAnimaldata;}
private:
stGodAnimalData* m_GodAnimaldata;
};
NS_FM_END
#endif |
7261bb9a3dae2d60809eee20b0bc619942e3560b | 3e1551295154d40d22c5e94b421ed3b1c3f32fcc | /1.5POS_pro/POS/Commodity.cpp | 554b93fa01cf6f72990859777dd945dfc85cbe93 | [] | no_license | letusget/Cplusplus_work | 2cdd81a029839c1fa530ea86e20818576b884333 | 24590a90dd4afe8081744084b40511710f674490 | refs/heads/master | 2023-06-01T01:58:25.726968 | 2021-07-02T15:37:42 | 2021-07-02T15:37:42 | 373,537,522 | 1 | 0 | null | null | null | null | GB18030 | C++ | false | false | 1,278 | cpp | Commodity.cpp | #include <iostream>
#include "Commodity.h"
// CCommodity类实现
#define N 10
using namespace std;
CCommodity::CCommodity() {
//cout << "CommodityInfo is being created!" << endl;
}
void CCommodity::setInfo(long ld, char upc[], char name[], double price, char manu[]) {
m_nld = ld;
m_pszUpc = upc;
m_pszName = name;
m_dPrice = price;
m_pszManufacturer = manu;
}
// 获取用户输入的产品代码
void CCommodity::acquire(char upc[]) {
m_pszUpc = upc;
if (*m_pszUpc) {
showInfo();
}
}
// 展示产品信息
void CCommodity::showInfo() {
/*cout << "商品名称:";
outPut(m_pszName);
cout << "\n";
cout << "单价:" << m_dPrice << "\n";
cout << "制造商信息:"; outPut(m_pszManufacturer);
cout << endl;*/
cout << "商品名称:" ;
outPut(m_pszName);
cout << "\n";
cout << "单价:" << m_dPrice << endl;
cout << "制造商信息:";
outPut(m_pszManufacturer);
cout << endl;
}
// 计算总价
void CCommodity::total(int num) {
double totalVal = m_dPrice * num;
cout << "已选商品总价为:" << totalVal << endl;
}
// 为能输出char*型类成员变量
void CCommodity::outPut(char* ptr) {
for (int i = 0; i < N; i++) {
cout << *(ptr + i);
}
}
CCommodity::~CCommodity()
{
//cout << "It has been deleted." << endl;
} |
a96eb564c095bd615b06baeb0bb94f4fb7916cbd | 4f1beb085b28c67e1da491a2026a95251ff45bd9 | /main.cpp | c36510c36c7b324272854752bf4cfb9cc0c756b8 | [
"Apache-2.0"
] | permissive | meego-tablet-ux/meego-app-satk | 1f7281407014c39edd4e61ad383df9f36218fffd | 3bede9d18de80ffe43942db4542b0ceecc400fab | refs/heads/master | 2016-09-06T00:02:14.448847 | 2011-07-28T13:50:16 | 2011-07-28T13:50:16 | 32,042,211 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,249 | cpp | main.cpp | /*
* satk - SIM application toolkit
* Copyright © 2011, Intel Corporation.
*
* This program is licensed under the terms and conditions of the
* Apache License, version 2.0. The full text of the Apache License is at
* http://www.apache.org/licenses/LICENSE-2.0
*
* Written by - Luc Yriarte <luc.yriarte@linux.intel.com>
*/
/* Qt includes */
#include <QtGui/QApplication>
#include <QtDebug>
/* oFono DBus types */
#include "ofonodbustypes.h"
/* SIM Toolkit app and main window */
#include "stkapplication.h"
#include "stkmainwindow.h"
/* local defines */
#include "stkdefines.h"
int main(int argc, char *argv[])
{
int mainErr = -1;
StkApplication app(argc, argv);
// Parse arguments
if (argc > 2) {
printf("%s\n",SATK_USAGE);
return mainErr;
}
// Run in menu mode by default
bool agentMode = false;
if (argc == 2) {
QString satkMode(argv[1]);
if (satkMode == "agent") {
agentMode = true;
} else if (satkMode != "menu") {
printf("%s\n",SATK_USAGE);
return mainErr;
}
}
// Register meta types defined in ofonodbustypes.h"
registerOfonoDbusTypes();
// Initiate connection with oFono
bool ofonoConnectionReady = app.initOfonoConnection(agentMode);
StkMainWindow * mainWindow = NULL;
if (agentMode) {
// oFono connection can be deferred, but agent must be registered
if (ofonoConnectionReady && !app.agentServiceRegistered()) {
qDebug() << "Error: cannot register agent service";
return mainErr;
}
} else { // Main menu mode
// Agent can be already registered, but
// oFono connection must be up from the start
if (!ofonoConnectionReady) {
qDebug() << "Error: oFono connection not ready";
return mainErr;
}
// hook Sim and Stk interfaces to the main window
// Open SimToolkit main window in menu mode only
mainWindow = new StkMainWindow(app.stkIf(),app.simIf(),app.stkAgentService());
mainWindow->show();
}
// Run SimToolkit application
mainErr = app.exec();
if (mainWindow != NULL)
delete mainWindow;
return mainErr;
}
|
09aefac66ddfb57e35f58032535bd1dced734c6f | 2fda9e8e3cce71f0b11c72df92d1b931b57ba572 | /src/rtValue.h | 353df65af9c9d4f21e1585309e36164716619c1c | [
"Apache-2.0"
] | permissive | mateusz-hobgarski-red/pxCore | 519385eabd37e23818c37b73577d232356001a22 | dddf99ed360c7fa4a98a40c92fc3d0ded864e841 | refs/heads/master | 2020-08-09T19:59:56.287360 | 2019-11-20T13:37:18 | 2019-11-20T13:37:18 | 214,161,586 | 1 | 0 | NOASSERTION | 2019-10-10T11:11:26 | 2019-10-10T11:11:23 | null | UTF-8 | C++ | false | false | 10,132 | h | rtValue.h | /*
pxCore Copyright 2005-2018 John Robinson
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.
*/
// rtValue.h
#ifndef RT_VALUE_H
#define RT_VALUE_H
#include <stdio.h>
#include "rtCore.h"
#include "rtString.h"
#define RT_voidType '\0'
#define RT_valueType 'v'
#define RT_rtValueType 'v'
#define RT_boolType 'b'
#define RT_int8_tType '1'
#define RT_uint8_tType '2'
#define RT_intType '4'
#define RT_int32_tType '4'
#define RT_uint32_tType '5'
#define RT_int64_tType '6'
#define RT_uint64_tType '7'
#define RT_floatType 'e'
#define RT_doubleType 'd'
#define RT_stringType 's'
#define RT_rtStringType 's'
#define RT_objectType 'o'
#define RT_rtObjectRefType 'o'
#define RT_functionType 'f'
#define RT_rtFunctionRefType 'f'
#define RT_voidPtrType 'z'
// TODO JR Hack Only needed for reflection... method signature
//Try #define CHARIZE(x) #x[0]
//http://www.complete-concrete-concise.com/programming/c/preprocessor-%E2%80%93-understanding-the-stringizing-operator
#define RT_voidType2 "\0"
#define RT_valueType2 "v"
#define RT_rtValueType2 "v"
#define RT_boolType2 "b"
#define RT_int8_tType2 "1"
#define RT_uint8_tType2 "2"
#define RT_intType2 "4"
#define RT_int32_tType2 "4"
#define RT_uint32_tType2 "5"
#define RT_int64_tType2 "6"
#define RT_uint64_tType2 "7"
#define RT_floatType2 "e"
#define RT_doubleType2 "d"
#define RT_rtStringType2 "s"
#define RT_rtObjectRefType2 "o"
#define RT_rtFunctionRefType2 "f"
#define RT_voidPtrType2 "z"
class rtIObject;
class rtIFunction;
class rtObject;
class rtObjectRef;
class rtFunctionRef;
const char* rtStrType(char t); //fwd
typedef void* voidPtr;
union rtValue_
{
bool boolValue;
int8_t int8Value;
uint8_t uint8Value;
int32_t int32Value;
int64_t int64Value;
uint64_t uint64Value;
uint32_t uint32Value;
float floatValue;
double doubleValue;
rtString *stringValue;
rtIObject *objectValue;
rtIFunction *functionValue;
voidPtr voidPtrValue; // For creating mischief
};
typedef char rtType;
class rtValue
{
public:
rtValue();
rtValue(bool v);
rtValue(int8_t v);
rtValue(uint8_t v);
rtValue(int32_t v);
rtValue(uint32_t v);
rtValue(int64_t v);
rtValue(uint64_t v);
rtValue(float v);
rtValue(double v);
rtValue(const char* v);
rtValue(const rtString& v);
rtValue(const rtIObject* v);
rtValue(const rtObjectRef& v);
rtValue(const rtIFunction* v);
rtValue(const rtFunctionRef& v);
rtValue(const rtValue& v);
rtValue(voidPtr v);
~rtValue();
void term() { setEmpty(); }
finline rtValue& operator=(bool v) { setBool(v); return *this; }
finline rtValue& operator=(int8_t v) { setInt8(v); return *this; }
finline rtValue& operator=(uint8_t v) { setUInt8(v); return *this; }
finline rtValue& operator=(int32_t v) { setInt32(v); return *this; }
finline rtValue& operator=(uint32_t v) { setUInt32(v); return *this; }
finline rtValue& operator=(int64_t v) { setInt64(v); return *this; }
finline rtValue& operator=(uint64_t v) { setUInt64(v); return *this; }
finline rtValue& operator=(float v) { setFloat(v); return *this; }
finline rtValue& operator=(double v) { setDouble(v); return *this; }
finline rtValue& operator=(const char* v) { setString(v); return *this; }
finline rtValue& operator=(const rtString& v) { setString(v); return *this; }
finline rtValue& operator=(const rtIObject* v) { setObject(v); return *this; }
finline rtValue& operator=(const rtObjectRef& v) { setObject(v); return *this; }
finline rtValue& operator=(const rtIFunction* v) { setFunction(v); return *this; }
finline rtValue& operator=(const rtFunctionRef& v){ setFunction(v); return *this; }
finline rtValue& operator=(const rtValue& v) { setValue(v); return *this; }
finline rtValue& operator=(voidPtr v) { setVoidPtr(v); return *this; }
bool operator!=(const rtValue& rhs) const { return !(*this == rhs); }
bool operator==(const rtValue& rhs) const;
finline bool toBool() const { bool v; getBool(v); return v; }
finline int8_t toInt8() const { int8_t v; getInt8(v); return v; }
finline uint8_t toUInt8() const { uint8_t v; getUInt8(v); return v; }
finline int32_t toInt32() const { int32_t v; getInt32(v); return v; }
finline uint32_t toUInt32() const { uint32_t v(0); getUInt32(v); return v; }
finline int64_t toInt64() const { int64_t v(0); getInt64(v); return v; }
finline uint64_t toUInt64() const { uint64_t v(0); getUInt64(v); return v; }
finline float toFloat() const { float v; getFloat(v); return v; }
finline double toDouble() const { double v; getDouble(v); return v; }
finline rtString toString() const { rtString v; getString(v); return v; }
rtObjectRef toObject() const;
rtFunctionRef toFunction() const;
voidPtr toVoidPtr() const { voidPtr v; getVoidPtr(v);return v; }
rtType getType() const { return mType; }
const char *getTypeStr() const { return ::rtStrType(mType); }
finline bool isEmpty() const { return mIsEmpty; };
void setEmpty();
void setValue(const rtValue& v);
void setBool(bool v);
void setInt8(int8_t v);
void setUInt8(uint8_t v);
void setInt32(int32_t v);
void setUInt32(uint32_t v);
void setInt64(int64_t v);
void setUInt64(uint64_t v);
void setFloat(float v);
void setDouble(double v);
void setString(const rtString& v);
void setObject(const rtIObject* v);
void setObject(const rtObjectRef& v);
void setFunction(const rtIFunction* v);
void setFunction(const rtFunctionRef& v);
void setVoidPtr(voidPtr v);
rtError getValue(rtValue& v) const;
rtError getBool(bool& v) const;
rtError getInt8(int8_t& v) const;
rtError getUInt8(uint8_t& v) const;
rtError getInt32(int32_t& v) const;
rtError getInt64(int64_t& v) const;
rtError getUInt64(uint64_t& v) const;
rtError getUInt32(uint32_t& v) const;
rtError getFloat(float& v) const;
rtError getDouble(double& v) const;
rtError getString(rtString& v) const;
rtError getObject(rtObjectRef& v) const;
rtError getFunction(rtFunctionRef& v) const;
rtError getVoidPtr(voidPtr& v) const;
// TODO rework this so we avoid a copy if the type matches
template <typename T>
T convert() const { T t; cvt(t); return t; }
template <typename T>
rtError tryConvert (T& t) { return cvt(t); }
template <typename T>
void assign(const T t) { asn(t); }
protected:
// Both values must have the same type
static bool compare(const rtValue& lhs, const rtValue& rhs);
rtError cvt(rtValue& v) const { return getValue(v); }
rtError cvt(bool& v) const { return getBool(v); }
rtError cvt(int8_t& v) const { return getInt8(v); }
rtError cvt(uint8_t& v) const { return getUInt8(v); }
rtError cvt(int32_t& v) const { return getInt32(v); }
rtError cvt(uint32_t& v) const { return getUInt32(v); }
rtError cvt(int64_t& v) const { return getInt64(v); }
rtError cvt(uint64_t& v) const { return getUInt64(v); }
rtError cvt(float& v) const { return getFloat(v); }
rtError cvt(double& v) const { return getDouble(v); }
rtError cvt(rtString& v) const { return getString(v); }
rtError cvt(rtObjectRef& v) const { return getObject(v); }
rtError cvt(rtFunctionRef& v) const { return getFunction(v); }
rtError cvt(voidPtr& v) const { return getVoidPtr(v); }
void asn(const rtValue& v) { setValue(v); }
void asn(bool v) { setBool(v); }
void asn(int8_t v) { setInt8(v); }
void asn(uint8_t v) { setUInt8(v); }
void asn(int32_t v) { setInt32(v); }
void asn(uint32_t v) { setUInt32(v); }
void asn(int64_t v) { setInt64(v); }
void asn(uint64_t v) { setUInt64(v); }
void asn(float v) { setFloat(v); }
void asn(double v) { setDouble(v); }
void asn(const char* v) { setString(v); }
void asn(const rtString& v) { setString(v); }
void asn(const rtIObject* v) { setObject(v); }
void asn(const rtObjectRef& v) { setObject(v); }
void asn(const rtIFunction* v) { setFunction(v); }
void asn(const rtFunctionRef& v) { setFunction(v); }
void asn(voidPtr v) { setVoidPtr(v); }
rtError coerceType(rtType newType);
rtType mType;
rtValue_ mValue;
bool mIsEmpty;
};
#define RT_TYPE_CASE(t) case t: s = # t; break;
#define RT_TYPE_NAME(t) (# t)
//const char* rtStrType(char t);
#endif
|
0275378d34f4ecd66de4c56f05d2e4ede3dc9cde | 115c6d0b28478f068cc666d1be0f7aa0b645fc41 | /e08_11/src/e08_11.cpp | 2aa8a38872a8e938d5a4d12c7d594f2c967ee4ef | [] | no_license | ddtBeppu/meikaicpp_beppu | 586e758911472323a8f0b4fa6f5eba5d568ff1b9 | c0aa321ca8a7886789181e4265901c0d47c17183 | refs/heads/master | 2021-04-28T20:09:23.297808 | 2018-05-02T02:35:41 | 2018-05-02T02:35:41 | 121,744,700 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,057 | cpp | e08_11.cpp | //============================================================================
// Name : e08_11.cpp
// Author : Naoto Beppu
// Version :
// Copyright : Your copyright notice
// Description : 演習8-11
// p.312で学習したstrcmp関数およびstrncm関数と同等な関数を作成せよ。
//============================================================================
#include <cstring>
#include <iostream>
using namespace std;
// 二つの文字列を比較し、等しい場合に0、異なる場合、それ以外を返す
int strCmp(const char* cString1, const char* cString2);
int strNCmp(const char* cString1, const char* cString2, int iLen);
int main() {
const int iStrLen = 36; // 文字列の長さを定義
char* cStrInput1; // charへのポインタを定義。異なる文字列を入力するため、一旦破棄して再利用する。
char* cStrInput2; // charへのポインタを定義。異なる文字列を入力するため、一旦破棄して再利用する。
int iCmpLen = 0;
int iResCmp = 0;
// char型オブジェクトを動的に生成
cStrInput1 = new char[iStrLen];
// char型オブジェクトを動的に生成
cStrInput2 = new char[iStrLen];
// 元の文字列の入力を促す
cout << "二つの文字列を比較します。それぞれ入力してください。: " << endl;
// 文字列1
cin >> cStrInput1;
// 文字列2
cin >> cStrInput2;
// 文字列を連結
iResCmp = strCmp(cStrInput1, cStrInput2);
if (iResCmp == 0) {
cout << "二つの文字列は等しいです。" << endl;
} else {
cout << "二つの文字列は異なります。" << endl;
}
// オブジェクトを破棄
delete[] cStrInput1;
// オブジェクトを破棄
delete[] cStrInput2;
// char型オブジェクトを動的に生成
cStrInput1 = new char[iStrLen];
// char型オブジェクトを動的に生成
cStrInput2 = new char[iStrLen];
// 比較する文字列の入力を促す
cout << "\n二つの文字列を比較します。それぞれ入力してください。: " << endl;
// 文字列1
cin >> cStrInput1;
// 文字列2
cin >> cStrInput2;
// 連結する長さを尋ねる
cout << "先頭何文字を比較しますか。: ";
// キーボードからの読み込み
cin >> iCmpLen;
// 入力値ぶんの長さだけ文字列を連結
// 文字列比較の結果を整数として返す
iResCmp = strNCmp(cStrInput1, cStrInput2, iCmpLen);
if (iResCmp == 0) { // 返却値が0の場合
// 文字列は等しい
cout << "二つの文字列は等しいです。" << endl;
} else {
// 異なる文字列である
cout << "二つの文字列は異なります。" << endl;
}
// オブジェクトを破棄
delete[] cStrInput1;
// オブジェクトを破棄
delete[] cStrInput2;
// 正常終了
return 0;
}
// 二つの文字列を比較し、等しい場合に0、異なる場合、それ以外を返す
int strCmp(const char* cString1, const char* cString2) {
int iIter = strlen(cString1); // 比較回数を決める
int iCmpRes = 0; // 比較結果となる整数を格納
// 決めた比較回数だけ文字列を比較
for (int i = 0; i < iIter; i++) {
// char型の値の差分を計算し、それを加算することで文字列が等しいか否かを求める
iCmpRes += ( *(cString1 + i) - *(cString2 + i) );
}
// 比較結果を返す
return iCmpRes;
}
// 二つの文字列の先頭iLen文字を比較し、等しい場合に0、異なる場合、それ以外を返す
int strNCmp(const char* cString1, const char* cString2, int iLen) {
int iIter = iLen; // 引数として与えた比較する長さを比較回数とする
int iCmpRes = 0; // // 比較結果となる整数を格納
// 決めた比較回数だけ文字列を比較
for (int i = 0; i < iIter; i++) {
// char型の値の差分を計算し、それを加算することで文字列が等しいか否かを求める
iCmpRes += ( *(cString1 + i) - *(cString2 + i) );
}
// 比較結果を返す
return iCmpRes;
}
|
57f756b35c2280827e967c0cb6950e5351303bd0 | 26e5083169107af48582ddca8301851397c6669c | /src/Agmd3D/Core/Model/GeometryFactory.cpp | a168acd47fd8652b25abb8bf0e0b60b42c4821bc | [] | no_license | lqq1985/AgmdEngine | 6e62dc44d96a1f92b2e84257fec1e6fb0ff481d7 | 5e9e3b56f8cb2905c5c190794e6db84505eb3433 | refs/heads/master | 2020-12-15T19:31:02.207165 | 2015-01-05T01:15:25 | 2015-01-05T01:15:25 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 12,446 | cpp | GeometryFactory.cpp | #include <Core/Model/GeometryFactory.h>
#define _USE_MATH_DEFINES
#include <math.h>
namespace Agmd
{
#define SELECT(i, size) ((i) >= ((int)size) ? (i)%((int)size) : (i))
void GeometryFactory::lathe( BaseSpline* p1,BaseSpline* p2, std::vector<Model::TVertex>& vertices, std::vector<Model::TIndex>& index,int splice )
{
a_vector<vec2> _p1 = p1->getComputedPoints();
a_vector<vec2> _p2 = p2->getComputedPoints();
vec3 center = vec3(_p2[0],0),
dir = vec3(_p2[1]-_p2[0],0);
float offset = 1.f/splice;
for(int i = 0; i <= splice; i++)
{
quat rot = rotate(quat(),360*i*offset,dir);
for(size_t j = 0; j < _p1.size(); j++)
{
Model::TVertex vertex;
vertex.color = -1;
vertex.normal = vec3(0,0,1);
vertex.position = rot*(vec3(_p1[j],0)-center);
vertex.texCoords = vec2(i/(float)(splice),j/(float)(_p2.size()-1));
vertices.push_back(vertex);
}
}
int count = _p1.size()-1;
for(int i = 0; i < splice;i++)
{
for(size_t j = 0; j < _p1.size()-1; j++)
{
int _i = SELECT(i+1, splice+1), _j = SELECT(j+1, _p1.size());
index.push_back(i*(count+1)+j);
index.push_back(_i*(count+1)+j);
index.push_back(_i*(count+1)+_j);
index.push_back(i*(count+1)+j);
index.push_back(_i*(count+1)+_j);
index.push_back(i*(count+1)+_j);
}
}
}
void GeometryFactory::simpleExtrusion( BaseSpline* p1, std::vector<Model::TVertex>& vertices, std::vector<Model::TIndex>& index, int slice, float scalemin, float scalemax,float height)
{
float x_2 = 1;
float y_2 = 1;
vec3 o = -vec3(0.5f,0.5f,0);
a_vector<vec2> _p1 = p1->getComputedPoints();
vec3 k = vec3(0,0,1);
vec3 normal = vec3(0);
bool p1close = p1->isClosed();
int sizep1 = _p1.size() - (p1close ? 1 : 0);
float offset = (scalemax-scalemin)/slice;
float hoffset = (height)/slice;
for(int i = 0; i <= slice; i++)
{
for(int j = 0; j < sizep1; j++)
{
Model::TVertex vertex;
vertex.color = -1;
vertex.normal = vec3(0,0,1);
vertex.position = vec3(_p1[j].x,0,_p1[j].y)*(scalemin+offset*i);
vertex.position.y = i*hoffset;
vertex.texCoords = vec2(j/(float)(_p1.size()-1),i/(float)(slice));
vertices.push_back(vertex);
}
}
int count = sizep1-1;
for(int i = 0; i < slice; i++)
{
for(int j = 0; j < ((int)_p1.size()-1);j++)
{
int _i = SELECT(i+1, slice+1), _j = SELECT(j+1, sizep1);
index.push_back(i*(count+1)+j);
index.push_back(_i*(count+1)+j);
index.push_back(_i*(count+1)+_j);
index.push_back(i*(count+1)+j);
index.push_back(_i*(count+1)+_j);
index.push_back(i*(count+1)+_j);
}
}
}
void GeometryFactory::generalizedExtrusion(BaseSpline* p1,BaseSpline* p2, std::vector<Model::TVertex>& vertices, std::vector<Model::TIndex>& index)
{
float x_2 = 1;
float y_2 = 1;
vec3 o = -vec3(0.5f,0.5f,0);
a_vector<vec2> _p1 = p1->getComputedPoints();
a_vector<vec2> _p2 = p2->getComputedPoints();
//vec3 ori(_p1[0].x,_p2[0].x,_p1[0].y+_p2[0].y);
vec3 ori;//(_p1[0].x,_p1[0].y+_p2[0].x,_p2[0].y);
vec3 k = vec3(0,0,1);
vec3 normal = vec3(0);
vec2 _T = normalize(_p2[1]-_p2[0]);
bool p1close = p1->isClosed();
bool p2close = p2->isClosed();
int sizep1 = _p1.size() - (p1close ? 1 : 0),sizep2 = _p2.size()- (p2close ? 1 : 0);
for(int i = 0; i < sizep2; i++)
{
if(i == 0 && !p2close)
_T = normalize(_p2[1]-_p2[0]);
else if(i == 0 && p2close)
_T = normalize(_p2[0]-_p2[_p2.size()-2]);
else
_T = normalize(_p2[i]-_p2[i-1]);
for(int j = 0; j < sizep1; j++)
{
vec3 tb = vec3(_T.x,_T.y,0);
vec3 p = cross(tb,vec3(0,0,1));
Model::TVertex vertex;
vertex.color = -1;
vertex.normal = vec3(0,0,1);
vertex.position = vec3(_p2[i].x,_p2[i].y,0)+vec3(_p1[j].x*p.x,_p1[j].x*p.y,_p1[j].y)-vec3(_p2[0].x,_p2[0].y,0);
vertex.texCoords = vec2(j/(float)(_p1.size()-1),i/(float)(_p2.size()-1));
vertices.push_back(vertex);
}
}
int count = sizep1-1;
for(int i = 0; i < ((int)_p2.size()-1); i++)
{
for(int j = 0; j< ((int)_p1.size()-1);j++)
{
int _i = SELECT(i+1, sizep2), _j = SELECT(j+1, sizep1);
index.push_back(i*(count+1)+j);
index.push_back(_i*(count+1)+j);
index.push_back(_i*(count+1)+_j);
index.push_back(i*(count+1)+j);
index.push_back(_i*(count+1)+_j);
index.push_back(i*(count+1)+_j);
}
}
}
Model* GeometryFactory::createPlane(ivec2 size,ivec2 n_poly)
{
a_vector<Model::TVertex> vertices;
a_vector<Model::TIndex> index;
float x_2 = size.x/2.0f;
float y_2 = size.y/2.0f;
vec2 polysize = vec2(size);
polysize /= n_poly;
for(int i = 0; i <= n_poly.x; i++)
{
for(int j = 0; j <= n_poly.y; j++)
{
Model::TVertex vertex;
vertex.color = -1;
vertex.normal = vec3(0.0f,0.0f,1.0f);
vertex.position = vec3(i*polysize.x-x_2,j*polysize.y-y_2,0.0f);
vertex.texCoords = vec2(i/((float)n_poly.x),j/((float)n_poly.y));
vertices.push_back(vertex);
}
}
a_uint32 npoly = n_poly.x*n_poly.y;
for(int i = 0; i < n_poly.x;i++)
{
for(int j = 0; j < n_poly.y; j++)
{
int _i = SELECT(i+1, n_poly.x+1), _j = SELECT(j+1, n_poly.y+1);
index.push_back(i*(n_poly.y+1)+j);
index.push_back(_i*(n_poly.y+1)+j);
index.push_back(_i*(n_poly.y+1)+_j);
index.push_back(i*(n_poly.y+1)+j);
index.push_back(_i*(n_poly.y+1)+_j);
index.push_back(i*(n_poly.y+1)+_j);
}
}
return new Model(&vertices[0],vertices.size(),&index[0],index.size());
}
#define SELECT(i, size) ((i) >= ((int)size) ? (i)%((int)size) : (i))
Model* GeometryFactory::createSphere(float r,float stack, float slice,float angle)
{
float cosa = 1.0f;
float sina = 0.0f;
float cosa1 = cos(angle/stack);
float sina1 = sin(angle/stack);
a_vector<Model::TVertex> vertices;
a_vector<Model::TIndex> index;
for(int i = 0; i <= stack; i++)
{
for(int j = 0; j <= slice; j++)
{
Model::TVertex vertex;
vertex.normal = vec3(cos(i*angle/stack)*sin(j*M_PI/slice),sin(i*angle/stack)*sin(j*M_PI/slice), cos(j*M_PI/slice));
vertex.position = vec3(r*cos(i*angle/stack)*sin(j*M_PI/slice),r*sin(i*angle/stack)*sin(j*M_PI/slice), r*cos(j*M_PI/slice));
vertex.texCoords = vec2(i/stack*angle/(M_PI*2),1.0f-j/slice);
vertices.push_back(vertex);
}
}
for(int i = 0; i < stack;i++)
{
for(int j = 0; j < slice; j++)
{
/*(i,j+1) _ _ (i+1,j+1)
| /|
| / |
(i,j)|/ |(i+1,j)
*/
int _i = SELECT(i+1,stack+1), _j = SELECT(j+1,(slice+1));
index.push_back(_i*((int)slice+1)+j);
index.push_back(i*((int)slice+1)+j);
index.push_back(_i*((int)slice+1)+_j);
index.push_back(i*((int)slice+1)+j);
index.push_back(i*((int)slice+1)+_j);
index.push_back(_i*((int)slice+1)+_j);
}
}
return new Model(&vertices[0],vertices.size(),&index[0],index.size());
}
Model* GeometryFactory::createBox(vec3 size)
{
Model::TVertex vertex[] =
{
//Z+
{vec3(size.x/2,size.y/2,size.z/2),vec3(0,0,1),-1,vec2(1,0)},
{vec3(size.x/2,-size.y/2,size.z/2),vec3(0,0,1),-1,vec2(1,1)},
{vec3(-size.x/2,size.y/2,size.z/2),vec3(0,0,1),-1,vec2(0,0)},
{vec3(-size.x/2,-size.y/2,size.z/2),vec3(0,0,1),-1,vec2(0,1)},
//Z-
{vec3(-size.x/2,-size.y/2,-size.z/2),vec3(0,0,-1),-1,vec2(0,0)},
{vec3(size.x/2,-size.y/2,-size.z/2),vec3(0,0,-1),-1,vec2(1,0)},
{vec3(-size.x/2,size.y/2,-size.z/2),vec3(0,0,-1),-1,vec2(0,1)},
{vec3(size.x/2,size.y/2,-size.z/2),vec3(0,0,-1),-1,vec2(1,1)},
//X-
{vec3(-size.x/2,-size.y/2,-size.z/2),vec3(-1,0,0),-1,vec2(0,0)},
{vec3(-size.x/2,size.y/2,-size.z/2),vec3(-1,0,0),-1,vec2(1,0)},
{vec3(-size.x/2,-size.y/2,size.z/2),vec3(-1,0,0),-1,vec2(0,1)},
{vec3(-size.x/2,size.y/2,size.z/2),vec3(-1,0,0),-1,vec2(1,1)},
//Y+
{vec3(-size.x/2,size.y/2,-size.z/2),vec3(0,1,0),-1,vec2(0,0)},
{vec3(size.x/2,size.y/2,-size.z/2),vec3(0,1,0),-1,vec2(1,0)},
{vec3(-size.x/2,size.y/2,size.z/2),vec3(0,1,0),-1,vec2(0,1)},
{vec3(size.x/2,size.y/2,size.z/2),vec3(0,1,0),-1,vec2(1,1)},
//X+
{vec3(size.x/2,size.y/2,-size.z/2),vec3(1,0,0),-1,vec2(0,0)},
{vec3(size.x/2,-size.y/2,-size.z/2),vec3(1,0,0),-1,vec2(1,0)},
{vec3(size.x/2,size.y/2,size.z/2),vec3(1,0,0),-1,vec2(0,1)},
{vec3(size.x/2,-size.y/2,size.z/2),vec3(1,0,0),-1,vec2(1,1)},
//Y-
{vec3(size.x/2,-size.y/2,-size.z/2),vec3(0,-1,0),-1,vec2(0,0)},
{vec3(-size.x/2,-size.y/2,-size.z/2),vec3(0,-1,0),-1,vec2(1,0)},
{vec3(size.x/2,-size.y/2,size.z/2),vec3(0,-1,0),-1,vec2(0,1)},
{vec3(-size.x/2,-size.y/2,size.z/2),vec3(0,-1,0),-1,vec2(1,1)}
};
a_vector<Model::TIndex> indices;
for(a_uint32 i = 0; i < 6; i++)
{
indices.push_back(2+i*4);
indices.push_back(1+i*4);
indices.push_back(0+i*4);
indices.push_back(1+i*4);
indices.push_back(2+i*4);
indices.push_back(3+i*4);
}
return new Model(vertex,4*6,&indices[0],indices.size());
}
void GeometryFactory::createPlane(vec3 orientation, quat rot,int size, int offset_index, a_vector<Model::TVertex>& vertices, a_vector<Model::TIndex>& index)
{
float x_2 = 1;
float y_2 = 1;
vec3 o = -vec3(0.5f,0.5f,0);
int count = size;
float offset = 1.f/count;
for(int i = 0; i <= count; i++)
{
for(int j = 0; j <= count; j++)
{
Model::TVertex vertex;
vertex.color = -1;
vertex.normal = orientation;
vertex.position = orientation/2.f+rot*vec3(o.x+offset*i,o.y+offset*j,0.f);
vertex.texCoords = vec2(i*offset,j*offset);
vertices.push_back(vertex);
}
}
for(int i = 0; i < count;i++)
{
for(int j = 0; j < count; j++)
{
int _i = SELECT(i+1, count+1), _j = SELECT(j+1, count+1);
index.push_back(offset_index+i*(count+1)+j);
index.push_back(offset_index+_i*(count+1)+j);
index.push_back(offset_index+_i*(count+1)+_j);
index.push_back(offset_index+i*(count+1)+j);
index.push_back(offset_index+_i*(count+1)+_j);
index.push_back(offset_index+i*(count+1)+_j);
}
}
}
Model* GeometryFactory::createMetaSphere(float r, int stack, int slice)
{
a_vector<Model::TVertex> vertices;
a_vector<Model::TIndex> indices;
quat sRot[] = {
quat(),
quat(glm::rotate(mat4(1),180.f,vec3(1,0,0))),
quat(glm::rotate(mat4(1),90.f,vec3(0,1,0))),
quat(glm::rotate(mat4(1),-90.f,vec3(0,1,0))),
quat(glm::rotate(mat4(1),-90.f,vec3(1,0,0))),
quat(glm::rotate(mat4(1),90.f,vec3(1,0,0)))
};
vec3 sOri[] = {
vec3(0,0,1),
vec3(0,0,-1),
vec3(1,0,0),
vec3(-1,0,0),
vec3(0,1,0),
vec3(0,-1,0)
};
for(a_uint32 i = 0; i < 6; i++)
createPlane(sOri[i],sRot[i],20,vertices.size(),vertices,indices);
for(int i = 0; i < (int)vertices.size(); i++)
{
vertices[i].position = r*normalize(vertices[i].position);
vertices[i].normal = vertices[i].position;
}
return new Model(&vertices[0],vertices.size(),&indices[0],indices.size());
}
float angles(vec2 v1,vec2 v2)
{
return acosf(dot(v1,v2)/(length(v1)*length(v2)));
}
void GeometryFactory::jarvis( a_vector<vec2>& points, a_vector<vec2>& poly)
{
if(!points.size())
return;
vec2 start = points[0];
int i0 = 0;
for(size_t i = 1, size = points.size(); i < size; i++)
{
if(start.x > points[i].x)
{
start = points[i];
i0 = i;
}else if(start.x == points[i].x && start.y > points[i].y)
{
start = points[i];
i0=i;
}
}
vec2 d = vec2(0,-1);
poly.clear();
int i = i0;
do
{
poly.push_back(points[i]);
int j = !i? 1 : 0;
vec2 pIJ = points[j]-points[i];
float amin = angles(d,pIJ);
float lmax = length(pIJ);
int in = j;
for(int j=in+1, n = points.size();j < n; j++)
{
if (j != i )
{
vec2 v = points[j]-points[i];
float a = angles(d,v);
if(amin > a || amin == a && lmax < length(v))
{
amin = a;
lmax = length(v);
in = j;
}
}
}
d=points[in]-points[i];
i=in;
} while (i!=i0);
poly.push_back(poly[0]);
}
bool isIn(vec2 a, vec2 b, vec3 c,vec3 d)
{
mat3 mat(a.x-d.x,b.x-d.x,c.x-d.x,a.y-d.y,b.y-d.y,c.y-d.y,(a.x*a.x-d.x*d.x)+(a.y*a.y-d.y*d.y),(b.x*b.x-d.x*d.x)+(b.y*b.y-d.y*d.y),(c.x*c.x-d.x*d.x)+(c.y*c.y-d.y*d.y));
return glm::determinant(mat) > 0;
}
void GeometryFactory::delaunay( a_vector<vec2>& points,a_vector<a_uint16>& triangles )
{
}
void GeometryFactory::voronoi( a_vector<vec2>& points,a_vector<vec2>& out_points, a_vector<a_uint16>& triangles )
{
}
void GeometryFactory::BBox(a_vector<vec3>& vertices,a_vector<vec3> box)
{
}
}
|
3a58e566ceb24c015400dcb6613b08035c993d28 | 38c3018c19fc935b54d02407bf92e4f22e477e04 | /EssayGenerator/Essayomat.cpp | 7369f0010ce587eedcf0e0f2cd68fe2cceec6901 | [
"MIT"
] | permissive | GabrielGhe/CppPractice | 460f6301b40a9e1a8d7aabe10bd7fe4fcc3da4b1 | 4b8645c7a5c38dd1644a470a7129ba4a61427c5d | refs/heads/master | 2020-12-24T13:44:20.413223 | 2014-09-15T18:04:28 | 2014-09-15T18:04:28 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,963 | cpp | Essayomat.cpp | #include <iostream>
#include <string>
#include <vector>
#include <map>
#include <set>
#include "Essayomat.h"
#include "Sentence.h"
using namespace std;
// Implementation of Essayomat.h
const bool Essayomat::DEBUG = true;
/***********************************************************
* PUBLIC FUNCTIONS
***********************************************************/
Essayomat::Essayomat(){}
/**
* Generates an essay from the given ranked sentences and a max length.
*/
string Essayomat::generateEssay(multimap<double, Sentence> &scoreMap, int maxLength){
multimap<string, Sentence> sentencesMap;
int total = 0;
set<string> filenames;
/*
For each Sentence, you want to take all the ones with the same filename, and put them in the same map<int,double>
*/
// Get the sentences you will be using for the essay.
if(DEBUG)
cout << "Original order of sentences:" << endl;
for(multimap<double, Sentence>::reverse_iterator rit = scoreMap.rbegin(); rit != scoreMap.rend(); ++rit){
Sentence sen = rit->second;
total += sen.getValue().size();
if(total >= maxLength)
break;
else{
filenames.insert(filenames.end(), sen.getFilename());
sentencesMap.insert(pair<string,Sentence>(sen.getFilename(), sen));
if(DEBUG){
cout << "Score: " << rit->first << " for filename: " << sen.getFilename() << " at position [" << sen.getPosition() << "]" << endl;
}
}
}
string essay = "";
if(Essayomat::DEBUG && sentencesMap.size() == 0)
cout << "Best match sentence >= max length (" << maxLength << ") or no match." << endl;
// Sorts by file name and then by position
// I hope this is what the teacher wanted?
if(DEBUG)
cout << "Order of sentences in essay:" << endl;
for(set<string>::const_iterator it = filenames.begin(); it != filenames.end(); ++it){
pair<multimap<string, Sentence>::iterator, multimap<string, Sentence>::iterator> ret;
ret = sentencesMap.equal_range(*it);
map<int, Sentence> positionMap;
for(multimap<string, Sentence>::iterator sit = ret.first; sit != ret.second; ++sit){
positionMap.insert(pair<int, Sentence>(sit->second.getPosition(), sit->second));
}
for(map<int, Sentence>::const_iterator sortedS = positionMap.begin(); sortedS != positionMap.end(); ++sortedS){
if(Essayomat::DEBUG){
cout << "Adding to essay filename: " << sortedS->second.getFilename() << " at position [" << sortedS->second.getPosition() << "]" << endl;
cout << " '" << sortedS->second.getValue() << "'" << endl;
}
essay += sortedS->second.getValue();
}
}
return essay;
}
/***********************************************************
* PRIVATE FUNCTIONS
***********************************************************/
// No private functions
/***********************************************************
* FREE FUNCTIONS
***********************************************************/
// No free functions
|
7cff0cee53d6389a59d6bd00580dd3544cd11f55 | d625c2ae433b76affa3c1973d8e951478624ea83 | /TFG_ELO/Simulation.h | 70dc89a0a1569d494036b3c962743467c52e440b | [] | no_license | ArnauGP3599/TFG_ELO | 7ca53b0612c28157769a7fa346c2480b22bf8c97 | d1a8d21a5554a60a445f5e4099404f41009a9710 | refs/heads/main | 2023-06-04T22:10:10.828939 | 2021-06-27T20:47:43 | 2021-06-27T20:47:43 | 335,338,134 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,531 | h | Simulation.h | #pragma once
#include "PlayersDB.h"
#include "Player.h"
#include "TeamBuilder.h"
#include "MatchMaker.h"
#include "MatchSimulator.h"
#include "Classification.h"
#include "Statistics.h"
#include "EloCalculator.h"
#include "Result.h"
#include "ExcelExporter.h"
#include "PropertiesDB.h"
extern "C" {
#include "Lua542/include/lua.h"
#include "Lua542/include/lauxlib.h"
#include "Lua542/include/lualib.h"
}
#ifdef _WIN32
#pragma comment(lib, "Lua542/liblua54.a")
#endif // _WIN32
class Simulation
{
public:
enum class InitResult { Success, Failed };
InitResult init(int i_numPlayers, int i_numPlayersTeam, int i_numTeamsMatch, int i_deltaElo, int i_numTotalMatches);
bool initLua_State();
vector<vector<int>> startSimulation();
inline int getNumPlayers() {
return m_numPlayers;
}
inline int getDeltaElo(){
return m_deltaElo;
}
inline int getNumPlayersTeam() {
return m_numPlayersTeam;
}
inline int getNumTotalMatches() {
return m_numTotalMatches;
}
private:
int m_numPlayers;
int m_numPlayersTeam;
int m_numTeamsMatch;
int m_deltaElo;
int m_numTotalMatches;
shared_ptr<PropertiesDB> m_propertiesDB;
shared_ptr<EloCalculator> m_eloCalculator;
shared_ptr<MatchSimulator> m_matchSimulator;
shared_ptr<TeamBuilder> m_teamBuilder;
shared_ptr<MatchMaker> m_matchMaker;
shared_ptr<ExcelExporter> m_excelExporter;
bool checkLua(lua_State* L, int r);
void initLua();
lua_State* m_L;
};
|
9e17741498eb7a02a870fe1c8aa489a95c65f384 | ef5d89719fe83dd358c6c98f05ddde7ddd702534 | /StrFilter.h | 025694860ee06146e5cbc8ae44232c14f806e417 | [
"BSD-3-Clause"
] | permissive | guozanhua/FTL | 9d20a229ea4a39189709a379a048f362c4df31dd | fdec6f8022fe744a729b7e55a82677d9fcbdde48 | refs/heads/pablo | 2021-01-17T06:27:41.545208 | 2015-04-17T19:52:57 | 2015-04-17T19:52:57 | 34,206,908 | 0 | 2 | null | 2015-04-19T13:04:53 | 2015-04-19T13:04:52 | null | UTF-8 | C++ | false | false | 616 | h | StrFilter.h | /*
* Copyright 2010-2015 Fabric Software Inc. All rights reserved.
*/
#ifndef _FTL_StrFilter_h
#define _FTL_StrFilter_h
#include <FTL/Config.h>
#include <string>
FTL_NAMESPACE_BEGIN
template<typename MatchChar>
std::string StrFilter( char const *cStr )
{
MatchChar const fn;
std::string result;
for (;;)
{
char ch = *cStr++;
if ( !ch )
break;
else if ( !fn( ch ) )
result += ch;
}
return result;
}
template<typename MatchChar>
std::string StrFilter( std::string const &str )
{
return StrFilter<MatchChar>( str.c_str() );
}
FTL_NAMESPACE_END
#endif //_FTL_StrFilter_h
|
879d12db232c9b0ddbac69552262ce544e95db48 | d522149c49bde56a02be5df328314ab10ed8940a | /Temp/il2cppOutput/il2cppOutput/Bulk_Assembly-CSharp_0.cpp | 4c2a211b485c68eb155935faf128ab1f7704095f | [] | no_license | cong91/Roulette-Unity2D-Tutorial | 6c3e99993b63047d440da128f2ccf84e296348cb | b1eed2b010cbb46d131b0e93ec9dee55c832fe8d | refs/heads/master | 2020-03-18T13:37:28.159579 | 2017-04-05T14:43:54 | 2017-04-05T14:43:54 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,688 | cpp | Bulk_Assembly-CSharp_0.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 "class-internals.h"
#include "codegen/il2cpp-codegen.h"
#include "mscorlib_System_Array3829468939.h"
#include "AssemblyU2DCSharp_U3CModuleU3E3783534214.h"
#include "AssemblyU2DCSharp_rouletteController911938656.h"
#include "mscorlib_System_Void1841601450.h"
#include "UnityEngine_UnityEngine_MonoBehaviour1158329972.h"
#include "mscorlib_System_Boolean3825574718.h"
#include "mscorlib_System_Int322071877448.h"
#include "mscorlib_System_Single2076509932.h"
#include "UnityEngine_UnityEngine_Transform3275118058.h"
#include "UnityEngine_UnityEngine_Component3819376471.h"
// rouletteController
struct rouletteController_t911938656;
// UnityEngine.MonoBehaviour
struct MonoBehaviour_t1158329972;
// UnityEngine.Component
struct Component_t3819376471;
// UnityEngine.Transform
struct Transform_t3275118058;
extern Il2CppClass* Input_t1785128008_il2cpp_TypeInfo_var;
extern const uint32_t rouletteController_Update_m584504002_MetadataUsageId;
// System.Void UnityEngine.MonoBehaviour::.ctor()
extern "C" void MonoBehaviour__ctor_m2464341955 (MonoBehaviour_t1158329972 * __this, const MethodInfo* method) IL2CPP_METHOD_ATTR;
// System.Boolean UnityEngine.Input::GetMouseButtonDown(System.Int32)
extern "C" bool Input_GetMouseButtonDown_m47917805 (Il2CppObject * __this /* static, unused */, int32_t p0, const MethodInfo* method) IL2CPP_METHOD_ATTR;
// UnityEngine.Transform UnityEngine.Component::get_transform()
extern "C" Transform_t3275118058 * Component_get_transform_m2697483695 (Component_t3819376471 * __this, const MethodInfo* method) IL2CPP_METHOD_ATTR;
// System.Void UnityEngine.Transform::Rotate(System.Single,System.Single,System.Single)
extern "C" void Transform_Rotate_m4255273365 (Transform_t3275118058 * __this, float p0, float p1, float p2, const MethodInfo* method) IL2CPP_METHOD_ATTR;
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void rouletteController::.ctor()
extern "C" void rouletteController__ctor_m2664460243 (rouletteController_t911938656 * __this, const MethodInfo* method)
{
{
MonoBehaviour__ctor_m2464341955(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void rouletteController::Start()
extern "C" void rouletteController_Start_m105244895 (rouletteController_t911938656 * __this, const MethodInfo* method)
{
{
return;
}
}
// System.Void rouletteController::Update()
extern "C" void rouletteController_Update_m584504002 (rouletteController_t911938656 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (rouletteController_Update_m584504002_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Input_t1785128008_il2cpp_TypeInfo_var);
bool L_0 = Input_GetMouseButtonDown_m47917805(NULL /*static, unused*/, 0, /*hidden argument*/NULL);
if (!L_0)
{
goto IL_0016;
}
}
{
__this->set_rotSpeed_2((100.0f));
}
IL_0016:
{
Transform_t3275118058 * L_1 = Component_get_transform_m2697483695(__this, /*hidden argument*/NULL);
float L_2 = __this->get_rotSpeed_2();
NullCheck(L_1);
Transform_Rotate_m4255273365(L_1, (0.0f), (0.0f), L_2, /*hidden argument*/NULL);
float L_3 = __this->get_rotSpeed_2();
__this->set_rotSpeed_2(((float)((float)L_3*(float)(0.98f))));
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
|
7a91f8acaabcdff26df89d3c3376f7c0f09b1411 | 24c8ae2fd55150f0c7adc5914f08b920f855903e | /potrace/support/4DPlugin-trans.cpp | ccea281e8785cbd66c5f48e3083b071d43be6d64 | [
"MIT"
] | permissive | miyako/4d-plugin-potrace-v2 | 44ef2845966ceeea2d841a7180c8af87b420ba41 | 985d1ba1510836dc7b877e7d93d99fc4a8cdceaf | refs/heads/master | 2023-06-07T09:50:20.682305 | 2023-05-31T12:28:39 | 2023-05-31T12:28:39 | 193,454,401 | 3 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,912 | cpp | 4DPlugin-trans.cpp | #include "4DPlugin-trans.h"
/* rescale the coordinate system to size w x h */
void trans_scale_to_size(trans_t *r, double w, double h) {
double xsc = w/r->bb[0];
double ysc = h/r->bb[1];
r->bb[0] = w;
r->bb[1] = h;
r->orig[0] *= xsc;
r->orig[1] *= ysc;
r->x[0] *= xsc;
r->x[1] *= ysc;
r->y[0] *= xsc;
r->y[1] *= ysc;
r->scalex *= xsc;
r->scaley *= ysc;
if (w<0) {
r->orig[0] -= w;
r->bb[0] = -w;
}
if (h<0) {
r->orig[1] -= h;
r->bb[1] = -h;
}
}
/* adjust the bounding box to the actual vector outline */
void trans_tighten(trans_t *r, potrace_path_t *plist) {
interval_t i;
dpoint_t dir;
int j;
/* if pathlist is empty, do nothing */
if (!plist) {
return;
}
for (j=0; j<2; j++) {
dir.x = r->x[j];
dir.y = r->y[j];
path_limits(plist, dir, &i);
if (i.min == i.max) {
/* make the extent non-zero to avoid later division by zero errors */
i.max = i.min+0.5;
i.min = i.min-0.5;
}
r->bb[j] = i.max - i.min;
r->orig[j] = -i.min;
}
}
/* rescale the coordinate system r by factor sc >= 0. */
void trans_rescale(trans_t *r, double sc) {
r->bb[0] *= sc;
r->bb[1] *= sc;
r->orig[0] *= sc;
r->orig[1] *= sc;
r->x[0] *= sc;
r->x[1] *= sc;
r->y[0] *= sc;
r->y[1] *= sc;
r->scalex *= sc;
r->scaley *= sc;
}
/* return the standard cartesian coordinate system for an w x h rectangle. */
void trans_from_rect(trans_t *r, double w, double h) {
r->bb[0] = w;
r->bb[1] = h;
r->orig[0] = 0.0;
r->orig[1] = 0.0;
r->x[0] = 1.0;
r->x[1] = 0.0;
r->y[0] = 0.0;
r->y[1] = 1.0;
r->scalex = 1.0;
r->scaley = 1.0;
}
/* rotate the coordinate system counterclockwise by alpha degrees. The
new bounding box will be the smallest box containing the rotated
old bounding box */
void trans_rotate(trans_t *r, double alpha) {
double s, c, x0, x1, y0, y1, o0, o1;
trans_t t_struct;
trans_t *t = &t_struct;
memcpy(t, r, sizeof(trans_t));
s = sin(alpha/180*M_PI);
c = cos(alpha/180*M_PI);
/* apply the transformation matrix to the sides of the bounding box */
x0 = c * t->bb[0];
x1 = s * t->bb[0];
y0 = -s * t->bb[1];
y1 = c * t->bb[1];
/* determine new bounding box, and origin of old bb within new bb */
r->bb[0] = fabs(x0) + fabs(y0);
r->bb[1] = fabs(x1) + fabs(y1);
o0 = - min(x0,0) - min(y0,0);
o1 = - min(x1,0) - min(y1,0);
r->orig[0] = o0 + c * t->orig[0] - s * t->orig[1];
r->orig[1] = o1 + s * t->orig[0] + c * t->orig[1];
r->x[0] = c * t->x[0] - s * t->x[1];
r->x[1] = s * t->x[0] + c * t->x[1];
r->y[0] = c * t->y[0] - s * t->y[1];
r->y[1] = s * t->y[0] + c * t->y[1];
}
|
15be7bf0a7f1b2cd8ab34f49ecd04acaacd5e5a8 | b22588340d7925b614a735bbbde1b351ad657ffc | /athena/LArCalorimeter/LArGeoModel/LArGeoCode/LArGeoCode/DatabaseAccessTool.h | 9b28d75d2bec25b3c94f85210f9f47a90cee755f | [] | no_license | rushioda/PIXELVALID_athena | 90befe12042c1249cbb3655dde1428bb9b9a42ce | 22df23187ef85e9c3120122c8375ea0e7d8ea440 | refs/heads/master | 2020-12-14T22:01:15.365949 | 2020-01-19T03:59:35 | 2020-01-19T03:59:35 | 234,836,993 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,152 | h | DatabaseAccessTool.h | /*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
*/
#ifndef DATABASEACCESSTOOL_H_
#define DATABASEACCESSTOOL_H_
#include <string>
//---------------------------------------------------------------------
//
// This class gets data from the detector description database. If no
// connection is open we create one. We drop it when the object goes
// out of scope.
//
//---------------------------------------------------------------------
class DatabaseAccessTool {
public:
// Constructor:
DatabaseAccessTool();
// Destructor:
~DatabaseAccessTool();
// Access the data. The table will be taken from the current tagged ATLAS
// version. If a fallback version name is provided then the value will be
// taken from the fallback name.
double getDouble(const std::string & TableName, const std::string & FallbackVersion, const std::string & ColumnName) const;
private:
// It is illegal to copy or clone:
DatabaseAccessTool & operator= (const DatabaseAccessTool & );
DatabaseAccessTool(const DatabaseAccessTool & );
// Internals:
class Clockwork;
Clockwork *m_cw;
};
#endif
|
0fd22735c6128f1fcf544733f76e51f2e26153f4 | 96e4cba8a8d8045e4b56f991fb79a54c6e2f4d36 | /Arduino /terraindentente/terraindentente.ino | cd4c198e4b439238381443cabbf3236e1c816034 | [] | no_license | natstripe/terrain | cc684d3327e373eea5c8c93be07136144f410a4f | cfdc15823664d618b706c04dd69560675b7a174e | refs/heads/master | 2021-08-23T21:12:08.954818 | 2017-12-06T15:23:04 | 2017-12-06T15:23:04 | 111,234,699 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 11,160 | ino | terraindentente.ino | #include <CapacitiveSensor.h>
/*
CapitiveSense Library Demo Sketch
Paul Badger 2008
Uses a high value resistor e.g. 10M between send pin and receive pin
Resistor effects sensitivity, experiment with values, 50K - 50M. Larger resistor values yield larger sensor values.
Receive pin is the sensor pin - try different amounts of foil/metal on this pin
*/
/*Este código construye sobre el codigo explorado y realizado durante la maestria. Green V4
*/
/**El pin de la derecha es el pin que recibe, el pin de la izquierda es el sensor
PINS A4 / A5 / 0 / 1 / 13 CANNOT BE USED FOR CAPACITIVE SENSING - or at least doesnt seem like it (ARDUINO)
Capacitance needs to be tested before hand to have a SensorMax that comes close to the
actual range to then establish the dynamic calibration
v.4 Inclusion de LEDs para que las personas tengan un cue visual de la interaccion - using timers to display different behaviors
*/
//Declaración de sensores
CapacitiveSensor plant1 = CapacitiveSensor(12, A0); // 10M resistor between pins 2 & 3, pin 3 is sensor pin, add a wire and or foil if desired
CapacitiveSensor plant2 = CapacitiveSensor(12, A1); // 10M resistor between pins 2 & 4, pin 4 is sensor pin, add a wire and or foil
CapacitiveSensor plant3 = CapacitiveSensor(12, A2); // 10M resistor between pins 2 & 7, pin 7 is sensor pin, add a wire and or foil if desired
CapacitiveSensor plant4 = CapacitiveSensor(12, A3); // 10M resistor between pins 2 & 10, pin 10 is sensor pin, add a wire and or foil
//Es necesario dividir los sensores porque sino se jode y solo captan bien las primeras cuatro plantas - hice igual con la baranda
CapacitiveSensor plant5 = CapacitiveSensor(2, 10); // 10M resistor between pins 2 & 12, pin 12 is sensor pin, add a wire and or foil
CapacitiveSensor plant6 = CapacitiveSensor(2, 11); // 10M resistor between pins 2 & 12, pin 12 is sensor pin, add a wire and or foil
CapacitiveSensor plant7 = CapacitiveSensor(2, 5); // 10M resistor between pins 2 & 12, pin 12 is sensor pin, add a wire and or foil
CapacitiveSensor plant8 = CapacitiveSensor(2, 8);
//Initial calibration
int sensorMin[] = {12000, 12000, 12000, 12000, 12000, 12000, 12000, 12000}; // Minimum sensor value > ATTENTION be sure to use a limit that is close to what is being sensed by the plants
int sensorMax[8]; // Maximum sensor value
int sensorValue[8];
//Filtering
int filtered[8];
int Previousfiltered[8];
//Create a variable to hold theled's current state
int state = LOW;
int leds [8] = {A4, A5, 9, 13, 3, 4, 6, 7};
unsigned long previousMillis[8]; //[x] = number of leds
int ledplay [8];
/*So, no PWMs but gonna use this to set the interval of on-off to have live feedback of plant - human interaction */
//Normalized value
float Value[8];
//Mapping algorithm - normalization
float mapfloat(float x, float in_min, float in_max, float out_min, float out_max)
{
return (x - in_min) * (out_max - out_min) / (in_max - in_min) + out_min;
}
/* En realidad en este momento solo necesito que las plantas funcionen como botones asi que
es un array para guardar el -pin- que en teoria estarian activando
ya que los shields no funcionaron voy a manejar el audio con touch, asi que funcionara como
la ultima vez, una variable para guardar el numero de archivo que deberia estar sonando
*/
int triggerPin;
void setup()
{
Serial.begin(115200);
for (int i = 0 ; i < 8; i++) {
pinMode(leds[i], OUTPUT);
digitalWrite(leds[i], state);
}
Serial.println("Starting calibration for 10 seconds");
// calibrate during the first n seconds
while (millis() < 10000)
{
long p1 = plant1.capacitiveSensor(30);
long p2 = plant2.capacitiveSensor(30);
long p3 = plant3.capacitiveSensor(30);
long p4 = plant4.capacitiveSensor(30);
long p5 = plant5.capacitiveSensor(30);
long p6 = plant6.capacitiveSensor(30);
long p7 = plant7.capacitiveSensor(30);
long p8 = plant8.capacitiveSensor(30);
long sensorPlant[] = {p1, p2, p3, p4, p5, p6, p7, p8};
for (int i = 0 ; i < 8; i++) {
sensorValue[i] = sensorPlant[i];
}
for (int i = 0 ; i < 8; i++) {
if (sensorValue[i] > sensorMax[i]) // save the maximum sensor value found
{
sensorMax[i] = sensorValue[i];
}
if (sensorValue[i] < sensorMin[i]) // save the minimum sensor value found
{
sensorMin[i] = sensorValue[i];
}
}
}
Serial.println("Print results");
while (millis() < 15000)
{
Serial.print("Minimos");
Serial.print(" ");
for (int i = 0 ; i < 8; i++) {
Serial.print(sensorMin[i]);
Serial.print(" ");
}
Serial.print("Maximos");
Serial.print(" ");
for (int i = 0 ; i < 8; i++) {
Serial.print(sensorMax[i]);
Serial.print(" ");
}
Serial.println(" ");
}
delay(200);
Serial.println("Finished calibration");
}
void loop()
{
//long start = millis();
long p1 = plant1.capacitiveSensor(30);
long p2 = plant2.capacitiveSensor(30);
long p3 = plant3.capacitiveSensor(30);
long p4 = plant4.capacitiveSensor(30);
long p5 = plant5.capacitiveSensor(30);
long p6 = plant6.capacitiveSensor(30);
long p7 = plant7.capacitiveSensor(30);
long p8 = plant8.capacitiveSensor(30);
long sensorPlant[] = {p1, p2, p3, p4, p5, p6, p7, p8};
// Capacitance filtered value
for (int i = 0 ; i < 8; i++) {
filtered[i] = filtered[i] * 0.95 + sensorPlant[i] * 0.05;
}
for (int i = 0 ; i < 8; i++) {
sensorValue[i] = filtered[i];
}
// Cálculo de la diferencia entre la lectura actual y la lectura previa para ajustar el valor máximo captado
for (int i = 0 ; i < 8; i++) {
if ((abs(filtered[i] - Previousfiltered[i]) >= 250)) {
sensorMax[i] = sensorValue[i];
}
}
//Map - normalize the captured values
for (int i = 0 ; i < 8; i++) {
Value[i] = mapfloat(sensorValue[i], sensorMin[i], sensorMax[i], 4000, 10);
}
for (int i = 0 ; i < 8; i++) {
Value[i] = constrain(Value[i], 10, 4000);
}
for (int i = 0 ; i < 8; i++) {
ledplay[i] = Value[i];
}
// for (int i = 0 ; i < 8; i++) {
BlinkLed(leds[0], ledplay[0], 0);
BlinkLed(leds[1], ledplay[1], 1);
BlinkLed(leds[2], ledplay[2], 2);
BlinkLed(leds[3], ledplay[3], 3);
BlinkLed(leds[4], ledplay[4], 4);
BlinkLed(leds[5], ledplay[5], 5);
BlinkLed(leds[6], ledplay[6], 6);
BlinkLed(leds[7], ledplay[6], 7);
//}
/*Implementación de porcentajes para establecer un threshold de activación dinámico ya que estoy utilizando valores dinámicos para el min y el máx
de los sensores debido al posible cambio de afluencia de participantes. En un principio pensé que se el threshold debía establecerse con el mínimo.
Sin embargo, debido a que la capacitancia fluctua todo el tiempo, y los sensores son altamente sensibles, el
porcentaje al que debe responder es a sí mismo*/
//If 20% over previous reading activate
/*for (int i = 0 ; i < 8; i++) {
if (filtered[i] >= (Previousfiltered[i] + (Previousfiltered[i] * 0.20))) {
triggerPins [i] = 1;
}*/
//No se porque no se esta asignando correctamente si lo meto en un array asi que toca uno por uno
if (filtered[0] >= (Previousfiltered[0] + (Previousfiltered[0] * 0.20))) {
triggerPin = 1;
}
if (filtered[1] >= (Previousfiltered[1] + (Previousfiltered[1] * 0.20))) {
triggerPin = 2;
}
if (filtered[2] >= (Previousfiltered[2] + (Previousfiltered[2] * 0.20))) {
triggerPin = 3;
}
if (filtered[3] >= (Previousfiltered[3] + (Previousfiltered[3] * 0.20))) {
triggerPin = 4;
}
if (filtered[4] >= (Previousfiltered[4] + (Previousfiltered[4] * 0.20))) {
triggerPin = 5;
}
if (filtered[5] >= (Previousfiltered[5] + (Previousfiltered[5] * 0.20))) {
triggerPin = 6;
}
if (filtered[6] >= (Previousfiltered[6] + (Previousfiltered[6] * 0.20))) {
triggerPin = 7;
}
if (filtered[7] >= (Previousfiltered[7] + (Previousfiltered[7] * 0.20))) {
triggerPin = 8;
}
/*Sending all the data to TD both to visualize it and think of how it's gonna be used in the system. So in order
for the data to be used in TD I will prepend it's name followed by a '=' that will then be taken away*/
//Serial print to be read in TD - no use of " " because TD will automatically divide the incoming data by the space
Serial.print("ActivePin="); // prints the value read
Serial.print(triggerPin);
Serial.print("=");
Serial.print("\t");
///*
Serial.print("SensorValue=");
//Serial.print(" ");
for (int i = 0 ; i < 8; i++) {
Serial.print(sensorValue[i]);
Serial.print("=");
}
Serial.print("\t"); // use this instead of println to output only one delimiter - println outputs \r\n
Serial.print("SensorMax=");
//Serial.print(" ");
for (int i = 0 ; i < 8; i++) {
Serial.print(sensorMax[i]);
Serial.print("=");
}
Serial.print("\t");
Serial.print("LedInterval=");
// Serial.print(" ");
for (int i = 0 ; i < 8; i++) {
Serial.print(ledplay[i]);
Serial.print("=");
}
Serial.print("\n");
/*
Serial.print(Value[0]); // print sensor output 1
Serial.print("\t");
Serial.print(Value[1]); // print sensor output 2
Serial.print("\t");
Serial.print(Value[2]); // print sensor output 2
Serial.print("\t");
Serial.print(Value[3]); // print sensor output 2
Serial.print("\t");
Serial.println(Value[4]); // print sensor output 3
//*/
/*
Serial.print(millis() - start); // check on performance in milliseconds
Serial.print("\t"); // tab character for debug windown spacing
Serial.print(p1); // print sensor output 1
Serial.print("\t");
Serial.print(p2); // print sensor output 2
Serial.print("\t");
Serial.print(p3); // print sensor output 2
Serial.print("\t");
Serial.print(p4); // print sensor output 2
Serial.print("\t");
Serial.println(p5); // print sensor output 3
*/
/*
RESET ---------------------------------------------------------------------
Resetting the variables is really important! don't forget - otherwise the state
keeps adding and the filtered and previous filtered siempre son iguales*/
triggerPin = 0;
//Reset of previous filtered
for (int i = 0 ; i < 8; i++) {
Previousfiltered[i] = filtered[i];
}
delay(150); // arbitrary delay to limit data to serial port
}
//Function by FrabizioP — http://www.instructables.com/id/Blink-multiple-Leds-1-Function-No-Delay/
void BlinkLed (int led, int timer, int array) {
//(long) can be omitted if you dont plan to blink led for very long time I think
if (((long)millis() - previousMillis[array]) >= timer) {
previousMillis[array] = millis(); //stores the millis value in the selected array
digitalWrite(led, !digitalRead(led)); //changes led state
}
}
|
d47ca3a6be24142a6f7aae0e5be9c0eeb24fc7b8 | 1eca33c595bd7c0b7d1e7e320be5b9a39563921a | /Boj_1182.cpp | 44dcf62ca1c812a7c224c37e134aa8db36f86223 | [] | no_license | JoonSCode/Problem-Solving | f56acddd4f863ed99548ae55aed89c457bfab2bd | bea92941f7ae60b76bfec9abfff7078172d0001f | refs/heads/master | 2023-05-25T14:38:18.450665 | 2021-10-19T00:46:28 | 2021-10-19T00:46:28 | 232,744,765 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 706 | cpp | Boj_1182.cpp | //Main idea: next_permutation, prev_permutation을 이용하여 부분순열
#include <vector>
#include <iostream>
#include <algorithm>
using namespace std;
void run() {
int N, S;
cin >> N >> S;
vector<int> nums;
int answer = 0;
for (int i = 0; i < N; i++) {
int tmp;
cin >> tmp;
nums.push_back(tmp);
}
for (int i = 1; i <= N; i++) {//부분 수열의 크기
vector<int> part(i,1);
for (int n = 0; n < N - i; n++)
part.push_back(0);
do {
int sum = 0;
for (int i = 0; i < part.size(); i++) {
if (part[i] == 1)
sum += nums[i];
}
if (sum == S)
answer++;
} while (prev_permutation(part.begin(), part.end()));
}
cout << answer;
}
int main() {
run();
}
|
f08189aa8dd612b6859caae169496068403f8169 | c157037f0e05acb77bdb794f27adefc041875fe2 | /Occultus/Temp/StagingArea/Data/il2cppOutput/AssemblyU2DCSharp_Drawer2055070993.h | bb33d8bdf0fde80d0bc0b7376450914d1549c238 | [] | no_license | gadielxavier/Occultus | 2d8bbade4e29a357ed3c9517190a7c44860baffa | 2ed863760a84b0dad4ca4e2589c1180d65e795d8 | refs/heads/master | 2020-06-17T17:05:10.355507 | 2018-08-05T13:20:10 | 2018-08-05T13:20:10 | 74,987,525 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,088 | h | AssemblyU2DCSharp_Drawer2055070993.h | #pragma once
#include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <stdint.h>
// UnityEngine.Animator
struct Animator_t2776330603;
// UnityEngine.AudioSource
struct AudioSource_t1740077639;
#include "UnityEngine_UnityEngine_MonoBehaviour667441552.h"
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Drawer
struct Drawer_t2055070993 : public MonoBehaviour_t667441552
{
public:
// UnityEngine.Animator Drawer::animator
Animator_t2776330603 * ___animator_2;
// System.Int32 Drawer::drawerTrigger
int32_t ___drawerTrigger_3;
// UnityEngine.AudioSource Drawer::audio
AudioSource_t1740077639 * ___audio_4;
public:
inline static int32_t get_offset_of_animator_2() { return static_cast<int32_t>(offsetof(Drawer_t2055070993, ___animator_2)); }
inline Animator_t2776330603 * get_animator_2() const { return ___animator_2; }
inline Animator_t2776330603 ** get_address_of_animator_2() { return &___animator_2; }
inline void set_animator_2(Animator_t2776330603 * value)
{
___animator_2 = value;
Il2CppCodeGenWriteBarrier(&___animator_2, value);
}
inline static int32_t get_offset_of_drawerTrigger_3() { return static_cast<int32_t>(offsetof(Drawer_t2055070993, ___drawerTrigger_3)); }
inline int32_t get_drawerTrigger_3() const { return ___drawerTrigger_3; }
inline int32_t* get_address_of_drawerTrigger_3() { return &___drawerTrigger_3; }
inline void set_drawerTrigger_3(int32_t value)
{
___drawerTrigger_3 = value;
}
inline static int32_t get_offset_of_audio_4() { return static_cast<int32_t>(offsetof(Drawer_t2055070993, ___audio_4)); }
inline AudioSource_t1740077639 * get_audio_4() const { return ___audio_4; }
inline AudioSource_t1740077639 ** get_address_of_audio_4() { return &___audio_4; }
inline void set_audio_4(AudioSource_t1740077639 * value)
{
___audio_4 = value;
Il2CppCodeGenWriteBarrier(&___audio_4, value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
|
56cffea3de92c393faa246b31d821e62fa95cee6 | ab645fd0c3fddfab1198e8602f0cb05bc7048f91 | /mininero/brief/Ecdh.h | cbca065c6034cebfe91afb0adaec05c2987a0831 | [
"BSD-3-Clause",
"LicenseRef-scancode-warranty-disclaimer"
] | permissive | arnuschky/RingCT | 3d2e256a5a912f28e8468278e796b3d4c7193747 | 3a3ce47aed4f147cbbab82f5c8cea7a9f0284dc2 | refs/heads/master | 2021-01-11T20:59:25.011381 | 2017-01-07T19:50:24 | 2017-01-07T19:50:24 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 637 | h | Ecdh.h | /*
* File: Ecdh.h
* Author: Shen Noether <shen.noether@gmx.com>
*
*/
#pragma once
#include <cstddef>
#include <mutex>
#include <vector>
#include <tuple>
#include "generic-ops.h"
#include "crypto-ops.h"
#include "random.h"
#include "keccak.h"
#include "MiniNero.h"
#include "PaperWallet.h"
#ifndef ECDH_H
#define ECDH_H
namespace crypto {
class ecdh {
public:
paperwallet PaperWallet;
mininero MiniNero;
ecdh ();
ecdh (const ecdh& orig);
virtual ~ecdh ();
std::tuple<key, key, key, key> ecdh::ecdhGen(key);
std::tuple<key, key> ecdh::ecdhRetrieve(key, key);
private:
};
}
#endif /* ECDH_H */
|
2542dfe0fbafbdf7b63949db06d7094a3a3d2370 | 6f05f7d5a67b6bb87956a22b988067ec772ba966 | /data/test/cpp/f041db62c039837611e9ae93871b7b27aa5cacc0StreamStream.cpp | f041db62c039837611e9ae93871b7b27aa5cacc0 | [
"MIT"
] | permissive | harshp8l/deep-learning-lang-detection | 93b6d24a38081597c610ecf9b1f3b92c7d669be5 | 2a54293181c1c2b1a2b840ddee4d4d80177efb33 | refs/heads/master | 2020-04-07T18:07:00.697994 | 2018-11-29T23:21:23 | 2018-11-29T23:21:23 | 158,597,498 | 0 | 0 | MIT | 2018-11-21T19:36:42 | 2018-11-21T19:36:41 | null | UTF-8 | C++ | false | false | 947 | cpp | f041db62c039837611e9ae93871b7b27aa5cacc0StreamStream.cpp | #include "Main.h"
StreamStream::StreamStream(std::ostream & Stream)
: ConceptStream(),
m_Stream(Stream)
{
}
StreamStream::~StreamStream()
{
}
StreamStream & StreamStream::operator << (const ConceptId ConceptId)
{
*this << GetConcept(ConceptId);
return *this;
}
StreamStream & StreamStream::operator << (const Concept * Concept)
{
*this << *Concept;
return *this;
}
StreamStream & StreamStream::operator << (const Concept & Concept)
{
m_Stream << Concept.GetContent();
return *this;
}
StreamStream & StreamStream::operator << (const ConceptInstance & ConceptInstance)
{
m_Stream << ConceptInstance.GetContent();
return *this;
}
StreamStream & StreamStream::operator << (const std::string & String)
{
m_Stream << String;
return *this;
}
void StreamStream::NewLine()
{
m_Stream << '\n';
}
void StreamStream::Tab()
{
m_Stream << '\t';
}
StreamStream & endl(StreamStream & stream)
{
stream.NewLine();
return stream;
}
|
9505558e37bdc2cfd617b70b1a29c22e13571c16 | b75cc7aaa17f869946f562062df48155537150d9 | /week2_test_programming/arduino/test_turns_needed_for_360/test_turns_needed_for_360.ino | 6bb8ac734ce78fe5b0408c85f0c5d647e726cef7 | [] | no_license | KevHH/LBB_Kevin | fd0b45660ce16db9633aaffcd2732139c4b89f4c | 33de8d0492826cf88b0cfeb02820570108b9bdae | refs/heads/master | 2022-12-20T04:19:21.828999 | 2020-09-29T14:50:08 | 2020-09-29T14:50:08 | 299,280,498 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,426 | ino | test_turns_needed_for_360.ino | /*
Test code by Kevin to test number of turns needed for one rotation
255 - 187500
*/
int pwmFreq = 255;
const long guessTurns = 5140; // CONFIRMED
bool botOn = false;
const int rMotEnaPin = 9; // A3 pin connecting to right motor
const int rMotEncBacPin = A1; // A1 pin connecting to the back encoder of the right motor
const int rMotEncFrtPin = A2; // A2 pin connecting to the front encoder of the right motor
const int rMotYBacPin = 10; // D11 pin connecting to the back Y pin of the right motor
const int rMotYFrtPin = 8; // D10 pin connecting to the front Y pin of the right motor
const int buttonPin = 12; // D12 pin connecting to the button
const int ledPin = LED_BUILTIN;
byte rMotFrtDefValue = 0; // to store the default state
byte rMotBacDefValue = 0; // to store the default state
byte rMotState = 0; // 1 means forward, -1 means backward, 0 means still
long rMotTurns = 0;
void setup() {
// put your setup code here, to run once:
pinMode(rMotEnaPin, OUTPUT);
pinMode(rMotYFrtPin, OUTPUT);
pinMode(rMotYBacPin, OUTPUT);
pinMode(ledPin, OUTPUT);
// enable interrupt
pciSetup(rMotEncBacPin);
pciSetup(rMotEncFrtPin);
}
void loop() {
int button = digitalRead(buttonPin);
if (button == HIGH){
if (!botOn){
botInit();
botOn = true;
} else {
botDie();
botOn = false;
}
}
if (rMotTurns >= guessTurns){
digitalWrite(ledPin, HIGH);
botDie();
}
}
void botInit(){
// buffer time to decrease sensitivity
delay(200);
rMotTurns = 0;
rMotState = 0;
digitalWrite(ledPin, LOW);
analogWrite(rMotEnaPin, pwmFreq);
digitalWrite(rMotYFrtPin, HIGH);
digitalWrite(rMotYBacPin, LOW);
// record starting position
rMotFrtDefValue = digitalRead(rMotEncFrtPin);
rMotBacDefValue = digitalRead(rMotEncBacPin);
}
void botDie(){
analogWrite(rMotEnaPin, 0);
digitalWrite(rMotYFrtPin, LOW);
digitalWrite(rMotYBacPin, LOW);
// buffer time to decrease sensitivity
delay(200);
rMotTurns = 0;
rMotState = 0;
}
ISR (PCINT1_vect) // handle pin change interrupt for A0 to A5 here
{
byte rMotFrtValue = digitalRead(rMotEncFrtPin);
byte rMotBacValue = digitalRead(rMotEncBacPin);
if (botOn){
if (rMotBacValue == rMotBacDefValue && rMotFrtValue != rMotFrtDefValue){ // back activated first: moving forward
rMotState = 1;
} else if (rMotBacValue != rMotBacDefValue && rMotFrtValue == rMotFrtDefValue){ // front activated first: moving backward
rMotState = -1;
} else if (rMotBacValue == rMotBacDefValue && rMotFrtValue == rMotFrtDefValue){
rMotTurns += rMotState;
}
}
}
ISR (PCINT0_vect) // handle pin change interrupt for D8 to D13 here
{
}
/**
* Helper function
*/
void toggleBool(bool &boolvar){
if (boolvar){
boolvar = false;
} else {
boolvar = true;
}
}
/**
* PIN CHANGE INTERRUPT ON ALL PINS https://playground.arduino.cc/Main/PinChangeInterrupt/
*/
// Install Pin change interrupt for a pin, can be called multiple times
void pciSetup(byte pin)
{
*digitalPinToPCMSK(pin) |= bit (digitalPinToPCMSKbit(pin)); // enable pin
PCIFR |= bit (digitalPinToPCICRbit(pin)); // clear any outstanding interrupt
PCICR |= bit (digitalPinToPCICRbit(pin)); // enable interrupt for the group
}
// Use one Routine to handle each group
ISR (PCINT2_vect) // handle pin change interrupt for D0 to D7 here
{
}
|
465d25c23dd48c79f6201fc7e510544484226fc7 | ce612174574d1b0da370e926ce51c7046ce79acd | /백준/Class3/S2_1931_회의실 배정.cpp | bf67a3f72618616aec9b4659be086bd57c778d93 | [] | no_license | sunga08/Algorithm_Study | b90fcd39878078bcc1e1fdbd7b4c7deab65b85e8 | b266add531c8be9dffe39d8b7ec126e55e2c9664 | refs/heads/master | 2023-04-08T17:35:12.023793 | 2021-04-27T07:17:40 | 2021-04-27T07:17:40 | 328,632,383 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,344 | cpp | S2_1931_회의실 배정.cpp | //시작시간 기준으로 정렬하면 (1,6)(2,3)(3,4)(4,5)(6,8)와 같은 경우 (1,6)(6,8) 사이에 있는 것을 선택할 때 더 많이 선택할 수 있는 경우가 생기게 됨
//종료시간 기준으로 정렬 => 종료시간이 같은면 그 중 어떤걸 선택해도 결과가 같다.
//(1,4)(2,4)(3,4)(5,10) => (1,4)~(3,4) 어떤걸 선택해도 그 다음에 (5,10)을 선택하게 됨
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
vector<pair<int, int>> v;
bool comp(pair<int, int> p1, pair<int, int> p2) {
if (p1.second == p2.second) { //끝나는 시간이 같으면
return p1.first < p2.first; //시작 시간 기준으로 오름차순 정렬
}
else {
return p1.second < p2.second; //종료 시간 기준으로 오름차순 정렬
}
}
int main()
{
int n;
cin >> n;
for (int i = 0; i < n; i++) {
int a, b;
scanf("%d %d", &a, &b);
v.push_back(make_pair(a, b));
}
sort(v.begin(), v.end(), comp);
int cnt = 1, end = v[0].second;
for (int i = 1; i < n; i++) {
if (v[i].first >= end) { //현재 종료시간보다 큰 시작 시간이 있으면
cnt++;
end = v[i].second; //종료시간 바꿔주기
}
}
printf("%d\n", cnt);
return 0;
}
|
b275714f25cbb7f703e9d3f5fab9783887358672 | e40ab4abdac7880360d64293cd912264f8156f12 | /spider/client/client/USocket.h | 3cff13cadecbb0f0c9d022ac5f5ba286dccda0a0 | [] | no_license | tacite/cpp_spider | 4271a8e2aae336cd8a39ea555529b518ac67c7d9 | 7008fc2ff8a71117292e17c78032785831b4829e | refs/heads/master | 2020-12-24T19:46:49.726391 | 2016-05-10T15:18:30 | 2016-05-10T15:18:30 | 58,471,520 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 585 | h | USocket.h | #ifndef __USOCKET_HPP__
# define __USOCKET_HPP__
# include <sys/socket.h>
# include <netinet/in.h>
# include <arpa/inet.h>
# include <netdb.h>
# include "ISocketHandler.h"
class USocket : public ISocketHandler {
private:
int fd_serv;
struct sockaddr_in s_in;
struct in_addr addr;
struct hostent *h;
public:
USocket(void);
virtual ~USocket(void);
virtual void newSock(int, int, int);
virtual void connect(int, const std::string &, int);
virtual void send(const std::string &);
virtual char *receive(void);
};
#endif // !__USOCKET_HPP__
|
b7f4def632e86d8b5fff186e101d6f6f5e68003b | 58b686096701388d4ca4c6c464959728950780ef | /zip/lempel.h | 54f5dfd8a2129dbb0ea24cf35fdcc1f96a074f4d | [] | no_license | cjpatton/misc | 1359383d604b7121dad735c40bcda9cb254ebeff | 89ff4a89f98327bcfba4554a41160e0791d1cb83 | refs/heads/master | 2023-08-16T18:03:08.541919 | 2023-08-03T19:01:36 | 2023-08-03T19:01:36 | 41,977,538 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 582 | h | lempel.h | #ifndef LEMPEL_H
#define LEMPEL_H
#include "hashtable.h"
#include <cstdio>
#define WINDOW 3
#define MAX_MATCH 32
/**
* Lempel-Ziv
*/
struct match_t {
match_t (char *s, int i) : index(i), str(s)
{
}
match_t (char *s) : index(-1), str(s)
{
}
match_t (): index(-1), str(NULL)
{
}
int index;
char *str;
};
class lempel: public hashtable<match_t> {
public:
void show() const;
private:
int hash(match_t *obj) const;
bool cmp(match_t *a, match_t *b) const;
};
void zip(FILE *in_fd, FILE *out_fd);
void unzip(FILE *in_fd, FILE *out_fd);
#endif
|
abff6bd702a2c85f4c552905ad6b908afabc1b4f | e8a92e691336b5089209936460880f36524e2600 | /HLIN603-Objets-avancés/C++/TD-TP/TP3/b.cc | 02c5343435289905bf7b5cd6cca0f2f9a0a53c7e | [] | no_license | Alex-Overlord/L3-S6 | c68159e6d67b5ccf2286c819570d12ee1b570274 | e6e4666963366c662e58469d57505fe02f713b21 | refs/heads/master | 2020-12-21T04:19:27.204970 | 2020-05-15T13:17:08 | 2020-05-15T13:17:08 | 236,302,844 | 1 | 1 | null | 2020-02-25T20:01:22 | 2020-01-26T11:29:41 | CSS | UTF-8 | C++ | false | false | 881 | cc | b.cc | class C1 {
private:
virtual void f() {}
protected:
friend class A;
friend class B;
public:
virtual void mc1();
};
class C2 : public virtual C1 {
public:
virtual void mc2();
};
void C1::mc1() {
C1 *c1;
c1->f();
C2 *c2;
c2->f(); // fonctionne car c2 utilisable partout dans la hiérarchie et dans C1
}
void C2::mc2() {
C1 *c1;
// c1->f(); // C1 permet à C2 d'utiliser f pour une instance de C2 mais pas de C1
C2 *c2;
// c2->f(); // Ne compile pas car f private
}
class A {
public:
virtual void ma() {
C1 *c1;
c1->f(); // A étant friend peut utiliser f pour une instance de C1
C2 *c2;
c2->f();
}
};
class B : public virtual A {
public:
virtual void mb() {
C1 *c1;
c1->f(); // marche car C1 friend class B
C2 *c2;
c2->f();
}
};
class D {
public:
virtual void md() {
C1 *c1;
// c1->f();
C2 *c2;
// c2->f();
}
}; |
1fd32eddbab0e3a8ae3932b60b4229e50810011d | b2fc9233276bc886c43b046a07f101c4c8c53995 | /ioc/worker.cpp | 37bde95ce1878d7a47bb9acacba064382d3cf9d8 | [
"MIT"
] | permissive | jklim1253/code-draft | fc7ce0cd875f28879f9e79bbb0a3ba4e32ad070a | 32ff5e7969f2bdcc6063fb978c7070629aa568f4 | refs/heads/master | 2021-07-17T05:59:13.708634 | 2021-02-24T06:39:57 | 2021-02-24T06:39:57 | 47,970,132 | 1 | 0 | MIT | 2021-02-24T06:39:57 | 2015-12-14T11:09:03 | C++ | UTF-8 | C++ | false | false | 683 | cpp | worker.cpp | #include "worker.hpp"
namespace normal
{
worker::worker(std::shared_ptr<task> t)
: m_need_to_stop(false)
, m_task(t)
{
m_thread = std::thread([&](){ loop(); });
}
worker::~worker()
{
{
std::lock_guard<std::mutex> lock(m_mutex);
m_need_to_stop = true;
}
m_cv.notify_all();
if (m_thread.joinable())
{
m_thread.join();
}
}
void worker::loop()
{
while (true)
{
std::unique_lock<std::mutex> lock(m_mutex);
if (m_cv.wait_for(lock, std::chrono::microseconds(1), [=]()->bool { return m_need_to_stop; }))
{
break;
}
if (m_task)
{
if ((*m_task)() != 0)
{
break;
}
}
}
}
} // namespace normal
|
b1c103736e3f9c788e6ae15410bbdecddea5344c | 68215f5baddf225e278681d21adf82b65f069db0 | /MuyLeetCodeSolu/ToxicToolA.cpp | 59b179b46a9a9b0eb23fd8c0f875ebdc3eec1fa8 | [] | no_license | 2C2C2C/MuyLeetCodeWa | 2663f96b766ef50d072e27f6d8b46c8a7ebac92b | 973ccafdfb372ad6c8c49a88f7cf2201521e5781 | refs/heads/master | 2021-01-03T20:45:42.656038 | 2020-02-24T09:12:07 | 2020-02-24T09:12:07 | 240,229,774 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 25 | cpp | ToxicToolA.cpp | #include "ToxicToolA.h"
|
2975fc2571cd28dd680146a5e278e91c0d6eda61 | 4b50dd80ebcd273d85c0af584838faa09b537d29 | /cfgFunctions.hpp | effe129c4f7c82b49d6421a5aeef01c6f979b90f | [] | no_license | gruppe-adler/grad-sectors | 7f09618ec9d1de94124dbb7e39b9d299b8e8ca9a | 62ec6ad10b057d4059bb57f9bda4d3b30ccedafe | refs/heads/master | 2022-11-28T21:25:02.764664 | 2020-07-25T11:29:41 | 2020-07-25T11:29:41 | 280,135,074 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 536 | hpp | cfgFunctions.hpp | class grad_flagsector {
class all {
file = "grad-flagsector\functions"
class blockSector;
class createMarker;
class createSector;
class createTasks;
class evaluateSector;
class flagCreate;
class flagListener;
class flagSetOwner;
class initSector { preInit = 1; };
class initTrigger;
class notifyTakingControl;
class startPFH;
class taskSetDescription;
class updateMarker;
class updateTasks;
};
};
|
5ca0c6a3872e73c98b42c24603c3a3a535715097 | c550cbe73bc67359f87e05d4faf1569956aa8c7a | /LSC_Blink_RGBW.ino | df398f47d022ea893046c9a319e4c8d0fd59a1cc | [] | no_license | P7uis/LSC_LEDstrip_ActionNL | 7f9701df009cfca47bb5e0ddc19eb9c95a3ecd24 | 7408ab65b4765a9fe3c4f380de6760740e5016be | refs/heads/main | 2023-05-02T13:59:44.585255 | 2021-05-24T10:07:59 | 2021-05-24T10:07:59 | 370,306,717 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,222 | ino | LSC_Blink_RGBW.ino | //Datasheet for this TYWE3L board
//https://developer.tuya.com/en/docs/iot/wifie3lpinmodule?id=K9605uj1ar87n
//Red
const int rpin = 4;
//Green
const int gpin = 12;
//Blue
const int bpin = 14;
//White
const int wpin = 13;
// the setup function runs once when you press reset or power the board
void setup() {
// initialize digital pin LED_BUILTIN as an output.
//RED
pinMode(rpin, OUTPUT);
//Green
pinMode(gpin, OUTPUT);
//Blue
pinMode(bpin, OUTPUT);
//White
pinMode(wpin, OUTPUT);
}
// the loop function runs over and over again forever
void loop() {
//RED
digitalWrite(rpin, HIGH);
delay(1000);
digitalWrite(rpin, LOW);
//GREEN
digitalWrite(gpin, HIGH);
delay(1000);
digitalWrite(gpin, LOW);
//BLUE
digitalWrite(bpin, HIGH);
delay(1000);
digitalWrite(bpin, LOW);
//White
digitalWrite(wpin, HIGH);
delay(1000);
digitalWrite(wpin, LOW);
digitalWrite(rpin, HIGH);
digitalWrite(gpin, HIGH);
digitalWrite(bpin, HIGH);
digitalWrite(wpin, HIGH);
delay(10000);
digitalWrite(rpin, LOW);
digitalWrite(gpin, LOW);
digitalWrite(bpin, LOW);
digitalWrite(wpin, LOW);
delay(5000);
}
|
3417e8ee716d905b54ad77b2a31f337ed5462cc1 | 334aedf95c4b275727cb3c913a03a9e3d37b24e0 | /String to Integer.cpp | a5811a0431d48a4622dd84a0d732efcc492eb4fc | [] | no_license | XCHYang/Leetcode | 30e92b6632325089983e16c2d548f7f74ef3cfe3 | b2b1ff513fae4c3ab750b03c585a0f4bf378f2bf | refs/heads/master | 2020-03-30T08:00:38.081508 | 2015-04-06T15:20:04 | 2015-04-06T15:20:04 | 32,775,988 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,161 | cpp | String to Integer.cpp | class Solution {
public:
int atoi(string str) {
if(str == "") return 0;
long long sum = 0;
int str_len = str.length();
int start_pos = 0;
int flag = 1;
for(int i = 0; i < str_len ; i++){
if(str[i] == ' ')
continue;
else{
start_pos = i;
break;
}
}
if(str[start_pos] == '+' && str[start_pos + 1] == '-') return 0;
if(str[start_pos] == '-' && str[start_pos + 1] == '+') return 0;
if(str[start_pos] == '+') start_pos += 1;
if(str[start_pos] == '-'){
start_pos += 1;
flag = -1;
}
long long min = INT_MAX;
min++;
for(int i = start_pos; i < str_len; i++){
int single = str[i] - '0';
if(single < 0 || single > 9) break;
sum = sum*10 + single;
if(sum > INT_MAX && flag == 1){
return INT_MAX;
}
if(sum > min && flag == -1){
return INT_MIN;
}
}
int x = static_cast<int>(sum);
return x*flag;
}
};
|
c1ad6fb9c66ac7fc5feda450aa2638b9864f51f1 | e48a40b19ebe1ca64d877885f9f19e9a78b192c3 | /vtkKWStartupPageWidget.h | 5ebd719cb5db264c22ad5397e18be8dc50da9aab | [] | no_license | SIVICLab/KWWidgets | dbe2034caf065c30eafed92d73e9df9ff60a6565 | f5a3e16063db773eaf79736ec31314d392fa934d | refs/heads/master | 2021-01-18T20:08:02.372034 | 2017-04-01T20:57:19 | 2017-04-01T20:57:19 | 86,941,196 | 1 | 0 | null | 2017-04-01T20:34:24 | 2017-04-01T20:34:23 | null | UTF-8 | C++ | false | false | 12,056 | h | vtkKWStartupPageWidget.h | /*=========================================================================
Module: vtkKWStartupPageWidget.h,v
Copyright (c) Kitware, Inc.
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
// .NAME vtkKWStartupPageWidget - an HSV color selector
// Open file
// Double click
// Drag and drop
// Recent files
// .SECTION Description
// A widget that allows the user choose a HSV color interactively
#ifndef __vtkKWStartupPageWidget_h
#define __vtkKWStartupPageWidget_h
#include "vtkKWCompositeWidget.h"
class vtkKWCanvas;
class vtkKWLabel;
class vtkKWIcon;
class vtkKWStartupPageWidgetInternals;
class vtkKWMostRecentFilesManager;
class KWWidgets_EXPORT vtkKWStartupPageWidget : public vtkKWCompositeWidget
{
public:
static vtkKWStartupPageWidget* New();
vtkTypeMacro(vtkKWStartupPageWidget,vtkKWCompositeWidget);
void PrintSelf(ostream& os, vtkIndent indent);
// Description:
// Set/Get the gradient colors (in RGB space)
vtkGetVector3Macro(GradientColor1, double);
virtual void SetGradientColor1(double r, double g, double b);
virtual void SetGradientColor1(double rgb[3])
{ this->SetGradientColor1(rgb[0], rgb[1], rgb[2]); };
vtkGetVector3Macro(GradientColor2, double);
virtual void SetGradientColor2(double r, double g, double b);
virtual void SetGradientColor2(double rgb[3])
{ this->SetGradientColor2(rgb[0], rgb[1], rgb[2]); };
// Description:
// Set/Get the text color (in RGB space)
vtkGetVector3Macro(TextColor, double);
virtual void SetTextColor(double r, double g, double b);
virtual void SetTextColor(double rgb[3])
{ this->SetTextColor(rgb[0], rgb[1], rgb[2]); };
// Description:
// Set/Get the text size
vtkGetMacro(TextSize, int);
virtual void SetTextSize(int);
// Description:
// Set/Get the text color (in RGB space) when it is selected (hovered on)
vtkGetVector3Macro(SelectedTextColor, double);
virtual void SetSelectedTextColor(double r, double g, double b);
virtual void SetSelectedTextColor(double rgb[3])
{ this->SetSelectedTextColor(rgb[0], rgb[1], rgb[2]); };
// Description:
// Set/Get the hint color (in RGB space)
vtkGetVector3Macro(HintColor, double);
virtual void SetHintColor(double r, double g, double b);
virtual void SetHintColor(double rgb[3])
{ this->SetHintColor(rgb[0], rgb[1], rgb[2]); };
// Description:
// Set/Get the hint size
vtkGetMacro(HintSize, int);
virtual void SetHintSize(int);
// Description:
// Set/Get if the hints should have a shadow.
virtual void SetAddShadowToHint(int);
vtkGetMacro(AddShadowToHint, int);
vtkBooleanMacro(AddShadowToHint, int);
// Description:
// Set/Get if the Open section is supported/shown.
virtual void SetSupportOpen(int);
vtkGetMacro(SupportOpen, int);
vtkBooleanMacro(SupportOpen, int);
// Description:
// Set/Get the Open section icon using an icon, or the index to a
// predefined icon found in vtkKWIcon.
// Note that the Set method does *not* keep a reference to the icon
// passed as parameter: it copies the whole icon contents internally.
vtkGetObjectMacro(OpenIcon, vtkKWIcon);
virtual void SetOpenIcon(vtkKWIcon*);
virtual void SetOpenIconToPredefinedIcon(int icon_index);
// Description:
// Set/Get if the Double Click section is supported/shown.
virtual void SetSupportDoubleClick(int);
vtkGetMacro(SupportDoubleClick, int);
vtkBooleanMacro(SupportDoubleClick, int);
// Description:
// Set/Get the Double Click section icon using an icon, or the index to a
// predefined icon found in vtkKWIcon.
// Note that the Set method does *not* keep a reference to the icon
// passed as parameter: it copies the whole icon contents internally.
vtkGetObjectMacro(DoubleClickIcon, vtkKWIcon);
virtual void SetDoubleClickIcon(vtkKWIcon*);
virtual void SetDoubleClickIconToPredefinedIcon(int icon_index);
// Description:
// Set/Get if the Drag & Drop section is supported/shown.
virtual void SetSupportDrop(int);
vtkGetMacro(SupportDrop, int);
vtkBooleanMacro(SupportDrop, int);
// Description:
// Set/Get the Drag & Drop section icon using an icon, or the index to a
// predefined icon found in vtkKWIcon.
// Note that the Set method does *not* keep a reference to the icon
// passed as parameter: it copies the whole icon contents internally.
vtkGetObjectMacro(DropIcon, vtkKWIcon);
virtual void SetDropIcon(vtkKWIcon*);
virtual void SetDropIconToPredefinedIcon(int icon_index);
// Description:
// Set/Get if the Most Recent Files section is supported/shown.
virtual void SetSupportMostRecentFiles(int);
vtkGetMacro(SupportMostRecentFiles, int);
vtkBooleanMacro(SupportMostRecentFiles, int);
// Description:
// Set/Get the Most Recent Files section icon using an icon, or the index to
// a predefined icon found in vtkKWIcon.
// Note that the Set method does *not* keep a reference to the icon
// passed as parameter: it copies the whole icon contents internally.
vtkGetObjectMacro(MostRecentFilesIcon, vtkKWIcon);
virtual void SetMostRecentFilesIcon(vtkKWIcon*);
virtual void SetMostRecentFilesIconToPredefinedIcon(int icon_index);
// Description:
// Set/Get the Most Recent File icon (i.e. the icon used for a single
// most recent file, not the section itself) using an icon, or the index to
// a predefined icon found in vtkKWIcon.
// Note that the Set method does *not* keep a reference to the icon
// passed as parameter: it copies the whole icon contents internally.
vtkGetObjectMacro(MostRecentFileIcon, vtkKWIcon);
virtual void SetMostRecentFileIcon(vtkKWIcon*);
virtual void SetMostRecentFileIconToPredefinedIcon(int icon_index);
// Description:
// Set/Get the text size of recent file items
vtkGetMacro(MostRecentFileSize, int);
virtual void SetMostRecentFileSize(int);
// Description:
// Set/Get the most recent files manager this page should listen to.
vtkGetObjectMacro(MostRecentFilesManager, vtkKWMostRecentFilesManager);
virtual void SetMostRecentFilesManager(vtkKWMostRecentFilesManager *mgr);
// Description:
// Set/Get the maximum number of most recent files to display.
vtkGetMacro(MaximumNumberOfMostRecentFiles, int);
virtual void SetMaximumNumberOfMostRecentFiles(int);
// Description:
// Specifies commands to associate with the widget.
// 'OpenCommand' is invoked when the user click on the Open section.
// The 'object' argument is the object that will have the method called on
// it. The 'method' argument is the name of the method to be called and any
// arguments in string form. If the object is NULL, the method is still
// evaluated as a simple command.
virtual void SetOpenCommand(
vtkObject *object, const char *method);
// Description:
// Specifies commands to associate with the widget.
// 'DropCommand' is invoked when the user drop a file on the widget.
// The 'object' argument is the object that will have the method called on
// it. The 'method' argument is the name of the method to be called and any
// arguments in string form. If the object is NULL, the method is still
// evaluated as a simple command.
// The following parameters are also passed to the command:
// - filename(s): list of filenames
virtual void SetDropCommand(
vtkObject *object, const char *method);
// Description:
// Specifies commands to associate with the widget.
// 'DoubleClickCommand' is invoked when the user double-click anywhere
// in the page widget.
// The 'object' argument is the object that will have the method called on
// it. The 'method' argument is the name of the method to be called and any
// arguments in string form. If the object is NULL, the method is still
// evaluated as a simple command.
virtual void SetDoubleClickCommand(
vtkObject *object, const char *method);
// Description:
// Access to the canvas and internal elements
vtkGetObjectMacro(StartupPageCanvas, vtkKWCanvas);
// Description:
// Update the whole UI depending on the value of the Ivars
virtual void Update();
// Description:
// Update the "enable" state of the object and its internal parts.
// Depending on different Ivars (this->Enabled, the application's
// Limited Edition Mode, etc.), the "enable" state of the object is updated
// and propagated to its internal parts/subwidgets. This will, for example,
// enable/disable parts of the widget UI, enable/disable the visibility
// of 3D widgets, etc.
virtual void UpdateEnableState();
// Description:
// Callbacks. Internal, do not use.
virtual void ConfigureCallback();
virtual void RedrawCallback();
virtual void HighlightSectionCallback(const char *tag, int flag);
virtual void OpenCallback();
virtual void DoubleClickCallback();
// Description:
// Add all the default observers needed by that object, or remove
// all the observers that were added through AddCallbackCommandObserver.
// Subclasses can override these methods to add/remove their own default
// observers, but should call the superclass too.
virtual void AddCallbackCommandObservers();
virtual void RemoveCallbackCommandObservers();
protected:
vtkKWStartupPageWidget();
~vtkKWStartupPageWidget();
// Description:
// Create the widget.
virtual void CreateWidget();
double GradientColor1[3];
double GradientColor2[3];
double TextColor[3];
double SelectedTextColor[3];
double HintColor[3];
int TextSize;
int HintSize;
int MostRecentFileSize;
int SupportOpen;
int SupportDoubleClick;
int SupportDrop;
int SupportMostRecentFiles;
int MaximumNumberOfMostRecentFiles;
int AddShadowToHint;
vtkKWIcon *OpenIcon;
vtkKWIcon *DoubleClickIcon;
vtkKWIcon *DropIcon;
vtkKWIcon *MostRecentFilesIcon;
vtkKWIcon *MostRecentFileIcon;
// Recent files manager
vtkKWMostRecentFilesManager *MostRecentFilesManager;
// Commands
char *OpenCommand;
char *DropCommand;
char *DoubleClickCommand;
// GUI
vtkKWCanvas *StartupPageCanvas;
// Description:
// Bind/Unbind all components.
virtual void Bind();
virtual void UnBind();
// Description:
// Redraw or update canvas elements
virtual void Redraw();
virtual void ScheduleRedraw();
// Description:
// Update bindings, fonts, colors, icons
virtual void UpdateInternalCanvasBindings();
virtual void UpdateInternalCanvasColors();
virtual void UpdateInternalCanvasFonts();
virtual void UpdateInternalCanvasIcons();
// Description:
// Draw section
virtual void AddSectionToCanvas(
ostream &tk_cmd,
int x, int y,
vtkKWIcon *icon,
const char *text, const char *text_font,
const char *hint, const char *hint_font,
vtkObject *object, const char *method,
const char *tag, const char *extra_tag = NULL);
virtual void AddMostRecentFilesSectionToCanvas(
ostream &tk_cmd,
int x, int y);
// Description:
// Invoke the commands
virtual void InvokeOpenCommand();
virtual void InvokeDoubleClickCommand();
// PIMPL Encapsulation for STL containers
//BTX
vtkKWStartupPageWidgetInternals *Internals;
//ETX
// Description:
// Processes the events that are passed through CallbackCommand (or others).
// Subclasses can oberride this method to process their own events, but
// should call the superclass too.
virtual void ProcessCallbackCommandEvents(
vtkObject *caller, unsigned long event, void *calldata);
// Description:
// Helpers
virtual int GetHorizontalIncrementFromIcon(vtkKWIcon *icon);
private:
vtkKWStartupPageWidget(const vtkKWStartupPageWidget&); // Not implemented
void operator=(const vtkKWStartupPageWidget&); // Not implemented
};
#endif
|
4cdeef3df644f930b367029b5041292e6e92d762 | 2c78de0b151238b1c0c26e6a4d1a36c7fa09268c | /MDProcess/MDAModel/impl/ParsersImpl/AttributeParserImpl_factory.cpp | 473e87d1fd77bc2dc5b5c724b2001646b9d149fd | [] | no_license | bravesoftdz/realwork | 05a3b308cef59bed8a9efda4212849c391b4b267 | 19b446ce8ad2adf82ab8ce7988bc003221accad2 | refs/heads/master | 2021-06-07T23:57:22.429896 | 2016-11-01T18:30:21 | 2016-11-01T18:30:21 | null | 0 | 0 | null | null | null | null | WINDOWS-1251 | C++ | false | false | 1,598 | cpp | AttributeParserImpl_factory.cpp | ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//
// Модуль: "w:/MDProcess/MDAModel/impl/ParsersImpl/AttributeParserImpl_factory.cpp"
// генератор файлов реализации для фабрик интерфейсов (.cpp)
// Generated from UML model, root element: <<Servant::Class>> MDProcess::MDAModel::ParsersImpl::AttributeParserImpl
//
// реализация парсера атрибутов
//
//
// Все права принадлежат ООО НПП "Гарант-Сервис".
//
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
#include "shared/CoreSrv/sys/std_inc.h"
#include "MDProcess/MDAModel/impl/ParsersImpl/AttributeParserImpl_factory.h"
#include "MDProcess/MDAModel/impl/ParsersImpl/AttributeParserImpl.h"
namespace ParsersImpl {
AttributeParserImpl_factory::AttributeParserImpl_factory () {
}
void AttributeParserImpl_factory::registrate_me (
Core::Root::FactoryPriority priority
) /*throw (
Core::Root::DuplicatedFactoryKey
)*/ {
Parsers::AttributeParserFactoryManager::register_factory (this, priority);
}
const char* AttributeParserImpl_factory::key () const {
return "AttributeParserImpl";
}
Parsers::AttributeParser* AttributeParserImpl_factory::get () {
AttributeParserImpl_var ret = new AttributeParserImpl ();
return ret._retn ();
}
} // namespace ParsersImpl
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
34ae0c371b6a24cf13a395aebd40d8975e3deaff | 9b1362ed41b9455c43bb424ecf64404abc2ac28e | /Project2/src/stv_election_record.cc | eb669a1cd868ad4e1aca6d6f9c36e47f8ff4ca99 | [] | no_license | joshspitzerresnick/ranked-choice-plurality-voting-system | 5e3211ddc4567384fb1426dc6d200f14620ccc17 | a03ec6563b8e0a3cd566d1dca601202b521c13d6 | refs/heads/master | 2023-04-08T17:19:44.461808 | 2021-04-17T22:00:25 | 2021-04-17T22:00:25 | 358,966,104 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,444 | cc | stv_election_record.cc | /**
* @file STVElectionRecord.cc
*
* @copyright 2020 5801 Team3, All rights reserved.
*/
#include "stv_election_record.h"
STVElectionRecord::STVElectionRecord
(std::list<STVCandidate*> candidates, std::list<Ballot*> ballots, int droop) {
this->nonDistributedBallotList_ = ballots;
this->nonElectedCandidateList_ = candidates;
this->winnersList_ = {};
this->losersList_ = {};
this->discardedBallotList_ = {};
this->DroopQuota_ = droop;
}
std::list<Ballot*> STVElectionRecord::GetNonDistributedBallotList() {
return nonDistributedBallotList_;
}
std::list<STVCandidate*> STVElectionRecord::GetNonElectedCandidateList() {
return nonElectedCandidateList_;
}
std::list<STVCandidate*> STVElectionRecord::GetWinnersList() {
return winnersList_;
}
std::list<STVCandidate*> STVElectionRecord::GetLosersList() {
return losersList_;
}
int STVElectionRecord::GetDroop() {
return DroopQuota_;
}
void STVElectionRecord::ShuffleBallots() {
char msg[1000], temp[10];
// Call utility function to shuffle ballots
ListShuffle(nonDistributedBallotList_);
// Log the sequence after shuffling
snprintf(msg, sizeof(msg), "Ballot sequence after shuffle: ");
LOGGER->Log(msg);
LOGGER->Log(nonDistributedBallotList_);
}
void STVElectionRecord::DistributeBallots(int* firstBallotNum) {
std::list<int> tempRankedCandidateIDList; // temperory int array to store ranked candidate list from each ballot
// int curCandidateID; // current ranked candidate ID
int numBallots; // number of ballots a candidate has
bool assigned; // if a ballot had been assigned
Ballot* curBallot; // a holder for the ballot popped off list
STVCandidate* tempCandidate; // pointer to a candidate
char msg[1000], temp[10];
// Loop on nonDistributedBallotList: keep looping if nonDistributedBallotList is not empty
while (!nonDistributedBallotList_.empty()) {
curBallot = nonDistributedBallotList_.front();
nonDistributedBallotList_.pop_front();
assigned = false; // initialize
// Get ranked candidate list
tempRankedCandidateIDList = /*(int)*/ curBallot->GetRankedCandidateIDList();
snprintf(msg, sizeof(msg), "Ballot %d RankedCandidateIDList: ", curBallot->GetID());
LOGGER->Log(msg);
LOGGER->Log(tempRankedCandidateIDList);
auto li = tempRankedCandidateIDList.begin();
while (!assigned && li != tempRankedCandidateIDList.end()) {
// Create a list Iterator
std::list<STVCandidate*>::iterator itCandidate;
for (itCandidate = nonElectedCandidateList_.begin();
itCandidate != nonElectedCandidateList_.end(); itCandidate++) {
if ((*itCandidate)->GetID() == *li) {
if ((*itCandidate)->GetNumBallots() < 1) {
// Assign first ballot number
(*itCandidate)->SetFirstBallotNum((*firstBallotNum)++);
}
numBallots = (*itCandidate)->AddBallot(curBallot);
snprintf(msg, sizeof(msg), "Ballot#%d is assigned to candidate %d-%s", curBallot->GetID(), (*itCandidate)->GetID(), (*itCandidate)->GetName().c_str());
LOGGER->Log(msg);
// check if current candidate met droop
if (CheckDroop(numBallots)) {
tempCandidate = *itCandidate;
nonElectedCandidateList_.erase(itCandidate++);
AddCandidateToWinnersList(tempCandidate);
//--------- Log to logger
snprintf(msg, sizeof(msg), "candidate %s met droop, move to winnersList", tempCandidate->GetName().c_str());
LOGGER->Log(msg);
}
assigned = true;
break;
}
}
// Find the next ranked candidate on nonElectedCandidateList
std::advance(li, 1);
}
if (li == tempRankedCandidateIDList.end() && !assigned) {
// did not find a candidate on non elected list for this ballot
AddBallotToDiscardedBallotList(curBallot);
//--------- Log to logger
snprintf(msg, sizeof(msg), "Ballot#%d is discarded", curBallot->GetID());
LOGGER->Log(msg);
}
}
}
bool STVElectionRecord::CheckDroop(int droop) {
return ((droop >= DroopQuota_)? true:false);
}
void STVElectionRecord::AddCandidateToWinnersList(STVCandidate* candidate) {
winnersList_.push_back(candidate);
}
void STVElectionRecord::SortNonElectedCandidateList() {
nonElectedCandidateList_.sort(STVCandidateComparator);
}
STVCandidate*
STVElectionRecord::RemoveLastCandidateFromNonElectedCandidateList() {
STVCandidate* candidate;
candidate = nonElectedCandidateList_.back();
nonElectedCandidateList_.pop_back();
return candidate;
}
std::list<Ballot*>
STVElectionRecord::AddCandidateToLosersList(STVCandidate* candidate) {
losersList_.push_back(candidate);
std::list<Ballot*> ballot_list = candidate->RemoveBallotList();
return ballot_list;
}
void
STVElectionRecord::AddLoserBallotsToNonDistributedBallotList(std::list<Ballot*>
ballot_list) {
nonDistributedBallotList_.assign(ballot_list.begin(), ballot_list.end());
}
void STVElectionRecord::AddBallotToDiscardedBallotList(Ballot* ballot) {
discardedBallotList_.push_front(ballot);
}
STVCandidate* STVElectionRecord::PopCandidateOffLosersList() {
STVCandidate* candidate;
candidate = losersList_.back();
losersList_.pop_back();
return candidate;
}
template <typename T > void STVElectionRecord::ListShuffle(std::list<T> &L) {
unsigned seed = std::chrono::system_clock::now().time_since_epoch().count();
std::vector<T> V(L.begin(), L.end());
std::shuffle(V.begin(), V.end(), std::default_random_engine(seed));
L.assign(V.begin(), V.end());
}
// utility function for comparing candidates' votes
bool STVElectionRecord::STVCandidateComparator(STVCandidate* candidate1, STVCandidate* candidate2) {
char msg[1000];
if (candidate1->GetNumBallots() == candidate2->GetNumBallots()) {
snprintf(msg, sizeof(msg), "Tie break between candidate %d-%s (#votes=%d, #1stBallot=%d) and candidate %d-%s (#votes=%d, #1stBallot=%d).",
candidate1->GetID(), candidate1->GetName().c_str(), candidate1->GetNumBallots(), candidate1->GetFirstBallotNum(),
candidate2->GetID(), candidate2->GetName().c_str(), candidate2->GetNumBallots(), candidate2->GetFirstBallotNum());
LOGGER->Log(msg);
return candidate1->GetFirstBallotNum() < candidate2->GetFirstBallotNum();
} else {
return candidate1->GetNumBallots() > candidate2->GetNumBallots();
}
}
|
7c9eb16e815eacbfa328d2d80c451620e3dd2a9d | 20014dd546eefd89772b309eb7dcb23722bfea93 | /Hayes_Game.cpp | cafa6c106429c2f99c3be8ce25dc44a29ec0c63c | [] | no_license | zjhayes/Cpp_Text_Based_Game | 4bf27f22761e5ca90e0f4141cf54d000bf3af8f6 | ceb175f7169985cebccf8d70104ab90d069df3fc | refs/heads/master | 2020-09-16T14:57:19.641217 | 2019-11-29T18:03:26 | 2019-11-29T18:03:26 | 223,806,633 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 198 | cpp | Hayes_Game.cpp | // A text based game.
// Zachary Hayes - zjhayes@dmacc.edu - November 19th, 2019
#include "GameManager.hpp"
int main()
{
GameManager game = GameManager();
game.runGame();
return 0;
}
|
da869e88faa1e2c34fe3f9e03baa875edd82c83d | c0b7aa11aeae559a6b0a6635019ca6051edc162b | /main.cpp | 8edb53584d85b92e66d41f90564c96f4a0eed2a7 | [] | no_license | Aqho/Rubix | ec4088c32506040384eb0de6158f7a6adec7624a | 423d71d53eb21ca81621e8be37bdafe6dca727fa | refs/heads/master | 2020-03-16T14:57:49.450452 | 2018-06-17T11:44:37 | 2018-06-17T11:44:37 | 132,720,575 | 0 | 0 | null | 2018-06-17T09:37:44 | 2018-05-09T07:43:55 | C++ | UTF-8 | C++ | false | false | 5,162 | cpp | main.cpp | #define GL3_PROTOTYPES 1
// X compilation libraries
#ifdef __unix__
#include <GL/glu.h>
#else
#include <OpenGL/gl.h>
#include <OpenGL/glu.h>
#include <GLUT/glut.h>
#endif
// Libraries
#include <SDL2/SDL.h>
#include <math.h>
#include "graphic_function/headers/camera_position.hpp"
#include "render/headers/render.hpp"
#include "rubikscube/headers/cube.hpp"
#include "rubikscube/headers/rubikscube.hpp"
//#include "graphic_function/headers/cube_rotation.hpp"
#include <iostream>
#include <string>
#include <chrono>
#include <thread>
// Defines
#define PI 3.14159265
#define check_gl_error() do { \
GLenum e##__LINE__ = glGetError(); \
if (e##__LINE__ != GL_NO_ERROR) \
fprintf(stderr,"ERROR:%d:glerr=%d\n", __LINE__, e##__LINE__); \
} while(0)
// Initialize the SDL windows
static void window_initializer(void)
{
SDL_Window *main_win = SDL_GL_GetCurrentWindow();
glClearColor(0.0, 0.0, 0.0, 0.0);
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
SDL_GL_SwapWindow(main_win);
int width, height;
SDL_GetWindowSize(main_win, &width, &height);
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
gluPerspective(70, 800/400, 0.1, 1000);
glEnable(GL_DEPTH_TEST);
glTranslated(0.0, 0.0, -1.0);
check_gl_error();
}
int main()
{
rubiksCube *myCube = new rubiksCube;
std::string moves;
myCube->initCube();
if (SDL_Init(SDL_INIT_VIDEO) < 0)
return EXIT_FAILURE;
#if 0
/* configure the OpenGL version to use. */
SDL_GL_SetAttribute(SDL_GL_CONTEXT_MAJOR_VERSION, 3);
SDL_GL_SetAttribute(SDL_GL_CONTEXT_MINOR_VERSION, 1);
SDL_GL_SetAttribute(SDL_GL_CONTEXT_PROFILE_MASK,SDL_GL_CONTEXT_PROFILE_CORE);
#endif
/* create a window suitable for OpenGL. */
SDL_Window *mainwin = SDL_CreateWindow("Cube",
SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED,
800, 400, SDL_WINDOW_OPENGL | SDL_WINDOW_SHOWN);
if (!mainwin) {
fprintf(stderr, "ERROR:%s\n", SDL_GetError());
SDL_Quit();
return EXIT_FAILURE;
}
SDL_GLContext glctx = SDL_GL_CreateContext(mainwin);
if (!glctx) {
fprintf(stderr, "ERROR:%s\n", SDL_GetError());
//goto cleanup;
}
bool quit = false;
window_initializer();
//test array cube
int direction = 0;
float camera[6]{0,0,0,0,0,0};
float *cam = camera;
//petitscubes[1].receive_coordonate(0, 1, 1, 0, 0, 0);
while (quit != true) {
SDL_Event ev;
/* process events until timeout occurs */
while (SDL_WaitEventTimeout(&ev, 20)) {
switch (ev.type) {
case SDL_QUIT:
quit = true;
case SDL_KEYDOWN:
if(ev.key.keysym.sym == SDLK_ESCAPE){quit = true;;}
if(ev.key.keysym.sym == SDLK_RIGHT){direction = 1;}
if(ev.key.keysym.sym == SDLK_LEFT){direction = 2;}
if(ev.key.keysym.sym == SDLK_UP){direction = 3;}
if(ev.key.keysym.sym == SDLK_DOWN){direction = 4;}
if(ev.key.keysym.sym == SDLK_u){
myCube->movesDone.insert(0,"U");
myCube->doAskedMove('u', myCube);
}
if(ev.key.keysym.sym == SDLK_d){
myCube->movesDone.insert(0,"D");
myCube->doAskedMove('d', myCube);
}
if(ev.key.keysym.sym == SDLK_r){
myCube->movesDone.insert(0,"R");
myCube->doAskedMove('r', myCube);
}
if(ev.key.keysym.sym == SDLK_l){
myCube->movesDone.insert(0,"L");
myCube->doAskedMove('l', myCube);
}
if(ev.key.keysym.sym == SDLK_f){
myCube->movesDone.insert(0,"F");
myCube->doAskedMove('f', myCube);
}
if(ev.key.keysym.sym == SDLK_b){
myCube->movesDone.insert(0,"B");
myCube->doAskedMove('b', myCube);
}
if(ev.key.keysym.sym == SDLK_a){
for (int i = 0; i < myCube->movesDone.length(); i++) {
myCube->doAskedMove(myCube->movesDone[i], myCube);
if (myCube->isItFinished(myCube) == true){
myCube->movesDone.clear();
break;
}
render actual_render;
actual_render.Rendering(cam, myCube->arrayCube);
std::this_thread::sleep_for(std::chrono::milliseconds(250));
}
}
}
}
if ( SDL_PollEvent(&ev) == 1 )
{
}
camera_position my_cam;
my_cam.camera_rotation(direction, cam);
direction = 0;
render actual_render;
actual_render.Rendering(cam, myCube->arrayCube);
}
}
|
1540e4b55e74ea8dbb1388ec2d393bbe8c996079 | b9dd98d301aa2055616f21fd1026a5e4ff9e81fb | /TJU/2555 - Encrypting Passwords.cpp | ad1b46b9f3be46f408902e83f12991b3e047dbeb | [] | no_license | AlaaAbuHantash/Competitive-Programming | f587fcbbe9da33114c6bed3eb76f5cf0429fbf95 | 179a8473662d04b8c5c129e852f6eab075e80fb2 | refs/heads/master | 2021-07-25T08:17:49.841307 | 2018-08-06T10:06:54 | 2018-08-06T10:06:54 | 128,920,319 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,338 | cpp | 2555 - Encrypting Passwords.cpp | #define _CRT_SECURE_NO_WARNINGS
#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <queue>
#include <map>
#include <set>
#include <utility>
#include <stack>
#include <cstring>
#include <math.h>
#include<cstdio>
#include<deque>
#include<sstream>
using namespace std;
#define mp make_pair
int a[401][401];
int main() {
//freopen("test.txt", "rt", stdin);
int n;
string s;
while (cin >> n && n) {
cin >> s;
memset(a, 0, sizeof(a));
int m = (s.length()) / n, k = 0;
for (int i = 0; i < m; i++)
for (int j = 0; j < n; j++, k++)
a[i][j] = s[k] - '0';
int c = 6;
int nub = 0;
string tmp = "";
bool f = 0;
for (int i = 0; i < n && !f; i++)
for (int j = i, k = 0; j >= 0 && !f; j--, k++) {
nub += pow(2.0, c) * a[k][j];
c--;
if (c == -1) {
c = 6;
if (nub == 0) {
f = 1;
break;
}
tmp += char(nub);
nub = 0;
}
}
for (int i = 1; i < m && !f; i++)
for (int k = i, j = n - 1; j >= 0 && !f; k++, j--) {
if (k == m)
break;
nub += pow(2.0, c) * a[k][j];
c--;
if (c == -1) {
c = 6;
if (nub == 0) {
f = 1;
break;
}
tmp += char(nub);
nub = 0;
}
}
cout << tmp << endl;
}
return 0;
} |
07a6a5a08de6bda0b84b80f46d50d097926b6fb1 | 39eca8f785bb50992d5d1ce97e1b05cb8445954a | /UVa/10931 - Parity.cpp | 1557ab1584b508ec77a84542bb27acb61991887e | [] | no_license | diegoteran/Contest-Archive | eea5c14f17812216d48e89ec121a326328d8b6a5 | 0992a5914ec0b9140a33c2219b3cf740b2dc0658 | refs/heads/master | 2021-05-16T02:45:57.126921 | 2017-09-28T02:37:50 | 2017-09-28T02:37:50 | 42,429,676 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 381 | cpp | 10931 - Parity.cpp | #include <iostream>
#include <cstdio>
using namespace std;
long long N;
long long count,i;
void print(long long n){
if(n>0){
print(n/2);
printf("%lld", n%2);
}
}
int main() {
while(scanf("%lld", &N), N){
count=0;
for(i=N; i; i/=2 )
if(i%2!=0)
count++;
if(!i) {
printf("The parity of ");
print(N);
printf(" is %lld (mod 2).\n", count);
}
}
} |
f03b28a29b7ffdd5d4851fe99f91491867089c59 | a77cdfda0b72adc3a11fb1e10fe8a2878e9d6350 | /WS06/lab6/Utilities.h | a207e8aedecb3bdf92b9c7b80ed5a59564204097 | [] | no_license | navpreetkaurr/OOP345 | 171cd3fb003396b63aa857e9b6aa7074b76e53cb | 85efab188f42eed8733b01682fe9c714e3fe69cd | refs/heads/master | 2022-07-07T05:06:46.154442 | 2020-03-16T16:25:14 | 2020-03-16T16:25:14 | 239,623,763 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 386 | h | Utilities.h | // Name: Navpreet Kaur
// Seneca Student ID: 148332182
// Seneca email: nk79
// Date of completion: 4 march, 2020
//
// I confirm that the content of this file is created by me,
// with the exception of the parts provided to me by my professor.
#ifndef SDDS_UTILITIES_H
#define SDDS_UTILITES_H
#include"Vehicle.h"
namespace sdds{
Vehicle* createInstance(std::istream& is);
}
#endif |
9921fdac3c729111e455a662b7c84893dba82778 | 6b40e9dccf2edc767c44df3acd9b626fcd586b4d | /NT/admin/dcpromo/exe/forceddemotionpage.cpp | 9f60f87879b20153b4e93f1255aecef9cd1f698b | [] | no_license | jjzhang166/WinNT5_src_20201004 | 712894fcf94fb82c49e5cd09d719da00740e0436 | b2db264153b80fbb91ef5fc9f57b387e223dbfc2 | refs/heads/Win2K3 | 2023-08-12T01:31:59.670176 | 2021-10-14T15:14:37 | 2021-10-14T15:14:37 | 586,134,273 | 1 | 0 | null | 2023-01-07T03:47:45 | 2023-01-07T03:47:44 | null | UTF-8 | C++ | false | false | 2,305 | cpp | forceddemotionpage.cpp | // Copyright (c) 2001 Microsoft Corporation
//
// forced demotion page
// NTRAID#NTBUG9-496409-2001/11/29-sburns
//
// 29 Nov 2001 sburns
#include "headers.hxx"
#include "page.hpp"
#include "ForcedDemotionPage.hpp"
#include "resource.h"
#include "state.hpp"
ForcedDemotionPage::ForcedDemotionPage()
:
DCPromoWizardPage(
IDD_FORCE_DEMOTE,
IDS_FORCE_DEMOTE_PAGE_TITLE,
IDS_FORCE_DEMOTE_PAGE_SUBTITLE)
{
LOG_CTOR(ForcedDemotionPage);
}
ForcedDemotionPage::~ForcedDemotionPage()
{
LOG_DTOR(ForcedDemotionPage);
}
void
ForcedDemotionPage::OnInit()
{
LOG_FUNCTION(ForcedDemotionPage::OnInit);
}
bool
ForcedDemotionPage::OnNotify(
HWND /* windowFrom */ ,
UINT_PTR controlIDFrom,
UINT code,
LPARAM /* lParam */ )
{
// LOG_FUNCTION(ForcedDemotionPage::OnNotify);
bool result = false;
if (controlIDFrom == IDC_JUMP)
{
switch (code)
{
case NM_CLICK:
case NM_RETURN:
{
LOG(L"launching metadata help");
Win::HtmlHelp(
hwnd,
L"adconcepts.chm::/sag_delservermetadata.htm",
HH_DISPLAY_TOPIC,
0);
result = true;
}
default:
{
// do nothing
break;
}
}
}
return result;
}
bool
ForcedDemotionPage::OnSetActive()
{
LOG_FUNCTION(ForcedDemotionPage::OnSetActive);
State& state = State::GetInstance();
ASSERT(state.IsForcedDemotion());
if (state.RunHiddenUnattended())
{
int nextPage = ForcedDemotionPage::Validate();
if (nextPage != -1)
{
GetWizard().SetNextPageID(hwnd, nextPage);
}
else
{
state.ClearHiddenWhileUnattended();
}
}
Win::PropSheet_SetWizButtons(
Win::GetParent(hwnd),
PSWIZB_BACK | PSWIZB_NEXT);
return true;
}
int
ForcedDemotionPage::Validate()
{
LOG_FUNCTION(ForcedDemotionPage::Validate);
State& state = State::GetInstance();
ASSERT(state.GetOperation() == State::DEMOTE);
return IDD_ADMIN_PASSWORD;
}
|
18689d566c835de71aa174c7b29f49c61e0e6be4 | 3c62b3207c7b575f07324158bf6aa8f474bcfdd6 | /packingsolver/rectangle/branching_scheme.cpp | 73fdac875c0144539fd7cdf060a15cb86e915a1b | [
"MIT"
] | permissive | fontanf/packingsolver | 2d590a3b23a313b0f8ef675ff0c501d9bcdb9803 | 8aeb6346eee890d35bd41f6c188b33871b35474d | refs/heads/master | 2023-08-21T06:25:46.325143 | 2023-07-22T18:35:53 | 2023-07-22T18:35:53 | 238,145,072 | 54 | 10 | null | null | null | null | UTF-8 | C++ | false | false | 40,810 | cpp | branching_scheme.cpp | #include "packingsolver/rectangle/branching_scheme.hpp"
#include <string>
#include <fstream>
#include <iomanip>
#include <locale>
using namespace packingsolver;
using namespace packingsolver::rectangle;
////////////////////////////////////////////////////////////////////////////////
/////////////////////////////// BranchingScheme ////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
BranchingScheme::BranchingScheme(
const Instance& instance,
const Parameters& parameters):
instance_(instance),
parameters_(parameters),
predecessors_(instance.number_of_item_types()),
predecessors_1_(instance.number_of_item_types()),
predecessors_2_(instance.number_of_item_types())
{
// Compute predecessors.
for (ItemTypeId item_type_id = 0;
item_type_id < instance.number_of_item_types();
++item_type_id) {
const ItemType& item_type = instance.item_type(item_type_id);
for (ItemTypeId item_type_id_2 = 0;
item_type_id_2 < instance.number_of_item_types();
++item_type_id_2) {
if (item_type_id_2 == item_type_id)
continue;
const ItemType& item_type_2 = instance.item_type(item_type_id_2);
bool dominated = false;
if (parameters_.predecessor_strategy == 0) {
dominated |= (item_type.rect.x == item_type_2.rect.x
&& item_type.rect.y == item_type_2.rect.y
&& item_type.oriented == item_type_2.oriented
&& item_type.group_id == item_type_2.group_id
&& item_type.profit <= item_type_2.profit
&& (item_type.profit < item_type_2.profit
|| item_type_id_2 < item_type_id));
dominated |= (item_type.rect.x == item_type_2.rect.y
&& item_type.rect.y == item_type_2.rect.x
&& item_type.oriented == false
&& item_type_2.oriented == false
&& item_type.group_id == item_type_2.group_id
&& item_type.profit <= item_type_2.profit
&& (item_type.profit < item_type_2.profit
|| item_type_id_2 < item_type_id));
} else if (parameters_.predecessor_strategy == 1) {
dominated |= (item_type.rect.x == item_type_2.rect.x
&& item_type.rect.y == item_type_2.rect.y
&& item_type.oriented == item_type_2.oriented
&& item_type.group_id == item_type_2.group_id
&& item_type.profit <= item_type_2.profit
&& item_type.weight >= item_type_2.weight
&& (item_type.profit < item_type_2.profit
|| item_type.weight > item_type_2.weight
|| item_type_id_2 < item_type_id));
dominated |= (item_type.rect.x == item_type_2.rect.y
&& item_type.rect.y == item_type_2.rect.x
&& item_type.oriented == false
&& item_type_2.oriented == false
&& item_type.group_id == item_type_2.group_id
&& item_type.profit <= item_type_2.profit
&& item_type.weight >= item_type_2.weight
&& (item_type.profit < item_type_2.profit
|| item_type.weight > item_type_2.weight
|| item_type_id_2 < item_type_id));
} else if (parameters_.predecessor_strategy == 2) {
dominated |= (item_type.rect.x == item_type_2.rect.x
&& item_type.rect.y == item_type_2.rect.y
&& item_type.oriented == item_type_2.oriented
&& item_type.group_id == item_type_2.group_id
&& item_type.weight == item_type_2.weight
&& item_type.profit <= item_type_2.profit
&& (item_type.profit < item_type_2.profit
|| item_type_id_2 < item_type_id));
dominated |= (item_type.rect.x == item_type_2.rect.y
&& item_type.rect.y == item_type_2.rect.x
&& item_type.oriented == false
&& item_type_2.oriented == false
&& item_type.group_id == item_type_2.group_id
&& item_type.weight == item_type_2.weight
&& item_type.profit <= item_type_2.profit
&& (item_type.profit < item_type_2.profit
|| item_type_id_2 < item_type_id));
}
if (dominated)
predecessors_[item_type_id].push_back(item_type_id_2);
bool dominated_1 = false;
if (parameters_.predecessor_strategy == 0) {
dominated_1 = (
item_type.rect.x == item_type_2.rect.x
&& item_type.rect.y == item_type_2.rect.y
&& item_type.oriented == false
&& item_type_2.oriented == true
&& item_type.group_id == item_type_2.group_id
&& item_type.profit <= item_type_2.profit);
} else if (parameters_.predecessor_strategy == 1) {
dominated_1 = (
item_type.rect.x == item_type_2.rect.x
&& item_type.rect.y == item_type_2.rect.y
&& item_type.oriented == false
&& item_type_2.oriented == true
&& item_type.group_id == item_type_2.group_id
&& item_type.weight >= item_type_2.weight
&& item_type.profit <= item_type_2.profit);
} else if (parameters_.predecessor_strategy == 2) {
dominated_1 = (
item_type.rect.x == item_type_2.rect.x
&& item_type.rect.y == item_type_2.rect.y
&& item_type.oriented == false
&& item_type_2.oriented == true
&& item_type.group_id == item_type_2.group_id
&& item_type.weight == item_type_2.weight
&& item_type.profit <= item_type_2.profit);
}
if (dominated_1)
predecessors_1_[item_type_id].push_back(item_type_id_2);
bool dominated_2 = false;
if (parameters_.predecessor_strategy == 0) {
dominated_2 = (
item_type.rect.x == item_type_2.rect.y
&& item_type.rect.y == item_type_2.rect.x
&& item_type.oriented == false
&& item_type_2.oriented == true
&& item_type.group_id == item_type_2.group_id
&& item_type.profit <= item_type_2.profit);
} else if (parameters_.predecessor_strategy == 1) {
dominated_2 = (
item_type.rect.x == item_type_2.rect.y
&& item_type.rect.y == item_type_2.rect.x
&& item_type.oriented == false
&& item_type_2.oriented == true
&& item_type.group_id == item_type_2.group_id
&& item_type.weight >= item_type_2.weight
&& item_type.profit <= item_type_2.profit);
} else if (parameters_.predecessor_strategy == 2) {
dominated_2 = (
item_type.rect.x == item_type_2.rect.y
&& item_type.rect.y == item_type_2.rect.x
&& item_type.oriented == false
&& item_type_2.oriented == true
&& item_type.group_id == item_type_2.group_id
&& item_type.weight == item_type_2.weight
&& item_type.profit <= item_type_2.profit);
}
if (dominated_2)
predecessors_2_[item_type_id].push_back(item_type_id_2);
}
}
// Build root node if some part of the solution is already fixed.
if (parameters.fixed_items != nullptr) {
root_ = root();
for (BinPos bin_pos = 0; bin_pos < parameters.fixed_items->number_of_different_bins(); ++bin_pos) {
const SolutionBin& solution_bin = parameters.fixed_items->bin(bin_pos);
// Get items and sort them by increasing x-coordinate.
std::vector<SolutionItem> solution_items = solution_bin.items;
sort(
solution_items.begin(),
solution_items.end(),
[](
const SolutionItem& item_1,
const SolutionItem& item_2) -> bool
{
return item_1.bl_corner.x < item_2.bl_corner.x;
});
for (BinPos c = 0; c < solution_bin.copies; ++c) {
bool new_bin = true;
for (const auto& solution_item: solution_items) {
//std::cout << "j " << solution_item.j
// << " x " << solution_item.bl_corner.x
// << " y " << solution_item.bl_corner.y
// << " lx " << instance.item_type(solution_item.j).rect.x
// << " ly " << instance.item_type(solution_item.j).rect.y
// << std::endl;
Insertion insertion;
insertion.item_type_id = solution_item.item_type_id;
insertion.rotate = solution_item.rotate;
insertion.x = solution_item.bl_corner.x;
insertion.y = solution_item.bl_corner.y;
insertion.new_bin = new_bin;
new_bin = false;
root_ = child(root_, insertion);
}
}
}
//std::cout << "number_of_items " << root_->number_of_items
// << " item_area " << root_->item_area
// << " current_area " << root_->current_area
// << std::endl;
}
//unbounded_knapsck_ = instance.unbounded_knapsck();
}
////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////// children ///////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
std::shared_ptr<BranchingScheme::Node> BranchingScheme::child(
const std::shared_ptr<Node>& pfather,
const Insertion& insertion) const
{
const Node& father = *pfather;
auto pnode = std::shared_ptr<Node>(new BranchingScheme::Node());
Node& node = static_cast<Node&>(*pnode);
const ItemType& item_type = instance().item_type(insertion.item_type_id);
node.father = pfather;
node.item_type_id = insertion.item_type_id;
node.rotate = insertion.rotate;
node.x = insertion.x;
node.y = insertion.y;
// Update number_of_bins and last_bin_direction.
if (insertion.new_bin > 0) { // New bin.
node.number_of_bins = father.number_of_bins + 1;
node.last_bin_direction = (insertion.new_bin == 1)?
Direction::X:
Direction::Y;
} else { // Same bin.
node.number_of_bins = father.number_of_bins;
node.last_bin_direction = father.last_bin_direction;
}
BinPos bin_pos = node.number_of_bins - 1;
Direction o = node.last_bin_direction;
BinTypeId bin_type_id = instance().bin_type_id(bin_pos);
const BinType& bin_type = instance().bin_type(bin_type_id);
Length xj = instance().x(item_type, insertion.rotate, o);
Length yj = instance().y(item_type, insertion.rotate, o);
Length xs = insertion.x;
Length xe = insertion.x + xj;
Length ys = insertion.y;
Length ye = insertion.y + yj;
Length xi = instance().x(bin_type, o);
Length yi = instance().y(bin_type, o);
// Update uncovered_items.
if (insertion.new_bin > 0) { // New bin.
if (ys > 0) {
UncoveredItem uncovered_item;
uncovered_item.item_type_id = -1;
uncovered_item.xs = 0;
uncovered_item.xe = 0;
uncovered_item.ys = 0;
uncovered_item.ye = ys;
node.uncovered_items.push_back(uncovered_item);
}
{
UncoveredItem uncovered_item;
uncovered_item.item_type_id = insertion.item_type_id;
uncovered_item.xs = xs;
uncovered_item.xe = xe;
uncovered_item.ys = ys;
uncovered_item.ye = ye;
node.uncovered_items.push_back(uncovered_item);
}
if (ye < yi) {
UncoveredItem uncovered_item;
uncovered_item.item_type_id = -1;
uncovered_item.xs = 0;
uncovered_item.xe = 0;
uncovered_item.ys = ye;
uncovered_item.ye = yi;
node.uncovered_items.push_back(uncovered_item);
}
} else { // Same bin.
for (const UncoveredItem& uncovered_item: father.uncovered_items) {
if (uncovered_item.ye <= ys) {
UncoveredItem new_uncovered_item = uncovered_item;
node.uncovered_items.push_back(new_uncovered_item);
} else if (uncovered_item.ys <= ys) {
if (uncovered_item.ys < ys) {
UncoveredItem new_uncovered_item = uncovered_item;
new_uncovered_item.ye = ys;
node.uncovered_items.push_back(new_uncovered_item);
}
UncoveredItem new_uncovered_item_2;
new_uncovered_item_2.item_type_id = insertion.item_type_id;
new_uncovered_item_2.xs = xs;
new_uncovered_item_2.xe = xe;
new_uncovered_item_2.ys = ys;
new_uncovered_item_2.ye = ye;
node.uncovered_items.push_back(new_uncovered_item_2);
if (uncovered_item.ye > ye) {
UncoveredItem new_uncovered_item = uncovered_item;
new_uncovered_item.ys = ye;
node.uncovered_items.push_back(new_uncovered_item);
}
} else if (uncovered_item.ys >= ye) {
UncoveredItem new_uncovered_item = uncovered_item;
node.uncovered_items.push_back(new_uncovered_item);
} else {
if (uncovered_item.ye > ye) {
UncoveredItem new_uncovered_item = uncovered_item;
new_uncovered_item.ys = ye;
node.uncovered_items.push_back(new_uncovered_item);
}
}
}
}
// Compute item_number_of_copies, number_of_items, items_area,
// squared_item_area and profit.
node.item_number_of_copies = father.item_number_of_copies;
node.item_number_of_copies[insertion.item_type_id]++;
node.number_of_items = father.number_of_items + 1;
node.item_area = father.item_area + item_type.area();
node.item_weight = father.item_weight + item_type.weight;
node.weight_profit = father.item_weight
+ (double)1.0 / item_type.weight / insertion.x;
node.squared_item_area = father.squared_item_area + item_type.area() * item_type.area();
node.item_value = father.item_value + item_type.area() * ((item_type.oriented)?
std::max((double)xj / xi, (double)yj / yi):
std::max(
(double)std::max(xj, yj) / std::max(xi, yi),
(double)std::min(xj, yj) / std::min(xi, yi)));
node.profit = father.profit + item_type.profit;
if (parameters_.group_guiding_strategy == 0) {
node.guide_item_area = father.guide_item_area
+ item_type.area() * (item_type.group_id + 1);
node.guide_profit = father.guide_profit
+ item_type.profit * (item_type.group_id + 1);
} else if (parameters_.group_guiding_strategy == 1) {
node.guide_item_area = father.guide_item_area + item_type.area();
node.guide_profit = father.guide_profit + item_type.profit;
}
node.group_score = father.group_score + (item_type.group_id + 1);
node.groups = father.groups;
if (insertion.new_bin != 0) {
for (GroupId group_id = 0; group_id < instance().number_of_groups(); ++group_id) {
node.groups[group_id].last_bin_weight = 0;
node.groups[group_id].last_bin_weight_weighted_sum = 0;
}
}
for (GroupId group_id = 0; group_id <= item_type.group_id; ++group_id) {
node.groups[group_id].last_bin_weight += item_type.weight;
node.groups[group_id].last_bin_weight_weighted_sum
+= ((double)xs + (double)(xe - xs) / 2) * item_type.weight;
}
for (GroupId group_id = 0; group_id < instance().number_of_groups(); ++group_id) {
if (!instance().check_weight_constraints(group_id))
continue;
if (node.groups[group_id].last_bin_weight == 0)
continue;
std::pair<double, double> axle_weights = bin_type.semi_trailer_truck_data.compute_axle_weights(
node.groups[group_id].last_bin_weight_weighted_sum, node.groups[group_id].last_bin_weight);
node.groups[group_id].last_bin_middle_axle_weight = axle_weights.first;
node.groups[group_id].last_bin_rear_axle_weight = axle_weights.second;
if (axle_weights.first > bin_type.semi_trailer_truck_data.middle_axle_maximum_weight * PSTOL)
node.middle_axle_overweight += axle_weights.first - bin_type.semi_trailer_truck_data.middle_axle_maximum_weight;
if (axle_weights.second > bin_type.semi_trailer_truck_data.rear_axle_maximum_weight * PSTOL)
node.rear_axle_overweight += axle_weights.second - bin_type.semi_trailer_truck_data.rear_axle_maximum_weight;
}
// Compute current_area, guide_area and width using uncovered_items.
node.xs_max = (insertion.new_bin == 0)?
std::max(father.xs_max, insertion.x):
insertion.x;
node.current_area = instance_.previous_bin_area(bin_pos);
node.guide_area = instance_.previous_bin_area(bin_pos) + node.xs_max * yi;
Length x = 0;
for (auto it = node.uncovered_items.rbegin(); it != node.uncovered_items.rend(); ++it) {
const auto& uncovered_item = *it;
x = (parameters_.staircase)? std::max(x, uncovered_item.xe): uncovered_item.xe;
node.current_area += x * (uncovered_item.ye - uncovered_item.ys);
if (node.xe_max < x)
node.xe_max = x;
if (x > node.xs_max)
node.guide_area += (x - node.xs_max) * (uncovered_item.ye - uncovered_item.ys);
}
node.waste = node.current_area - node.item_area;
if (node.waste < 0) {
std::cout
<< "current_area " << node.current_area
<< " item_area " << node.item_area
<< " waste " << node.waste
<< std::endl;
throw std::runtime_error("waste");
}
if (instance().unloading_constraint() == rectangle::UnloadingConstraint::IncreasingX
|| instance().unloading_constraint() == rectangle::UnloadingConstraint::IncreasingY) {
if (node.groups[item_type.group_id].x_min > insertion.x)
node.groups[item_type.group_id].x_min = insertion.x;
if (node.groups[item_type.group_id].x_max < insertion.x)
node.groups[item_type.group_id].x_max = insertion.x;
}
node.groups[item_type.group_id].number_of_items++;
pnode->id = node_id_++;
return pnode;
}
std::vector<std::shared_ptr<BranchingScheme::Node>> BranchingScheme::children(
const std::shared_ptr<Node>& father) const
{
auto is = insertions(father);
std::vector<std::shared_ptr<Node>> cs;
for (const Insertion& insertion: is)
cs.push_back(child(father, insertion));
return cs;
}
std::vector<BranchingScheme::Insertion> BranchingScheme::insertions(
const std::shared_ptr<Node>& father) const
{
if (leaf(father))
return {};
std::vector<Insertion> insertions;
std::vector<bool> ok(instance_.number_of_item_types(), true);
std::vector<bool> ok_1(instance_.number_of_item_types(), true);
std::vector<bool> ok_2(instance_.number_of_item_types(), true);
for (ItemTypeId item_type_id = 0;
item_type_id < instance_.number_of_item_types();
++item_type_id) {
for (ItemTypeId item_type_id_pred: predecessors_[item_type_id])
if (father->item_number_of_copies[item_type_id_pred]
!= instance_.item_type(item_type_id_pred).copies)
ok[item_type_id] = false;
for (ItemTypeId item_type_id_pred: predecessors_1_[item_type_id])
if (father->item_number_of_copies[item_type_id_pred]
!= instance_.item_type(item_type_id_pred).copies)
ok_1[item_type_id] = false;
for (ItemTypeId item_type_id_pred: predecessors_2_[item_type_id])
if (father->item_number_of_copies[item_type_id_pred]
!= instance_.item_type(item_type_id_pred).copies)
ok_2[item_type_id] = false;
}
// Insert in the current bin.
if (father->number_of_bins > 0) {
BinTypeId bin_type_id = instance().bin_type_id(father->number_of_bins - 1);
const BinType& bin_type = instance().bin_type(bin_type_id);
// Items.
for (ItemPos uncovered_item_pos = 0;
uncovered_item_pos < (ItemPos)father->uncovered_items.size();
++uncovered_item_pos) {
for (ItemTypeId item_type_id = 0;
item_type_id < instance_.number_of_item_types();
++item_type_id) {
if (!ok[item_type_id])
continue;
const ItemType& item_type = instance_.item_type(item_type_id);
if (father->item_number_of_copies[item_type_id] == item_type.copies)
continue;
if (ok_1[item_type_id])
insertion_item(
father,
insertions,
item_type_id,
false, // rotate
0, // new_bin
uncovered_item_pos,
-1); // defect_id
if (!item_type.oriented && ok_2[item_type_id])
insertion_item(
father,
insertions,
item_type_id,
true, // rotate
0, // new_bin
uncovered_item_pos,
-1); // defect_id
}
}
// Defects.
for (const Defect& defect: bin_type.defects) {
for (ItemTypeId item_type_id = 0;
item_type_id < instance_.number_of_item_types();
++item_type_id) {
if (!ok[item_type_id])
continue;
const ItemType& item_type = instance_.item_type(item_type_id);
if (father->item_number_of_copies[item_type_id] == item_type.copies)
continue;
if (ok_1[item_type_id])
insertion_item(
father,
insertions,
item_type_id,
false, // rotate
0, // new_bin
-1, // uncovered_item_pos
defect.id);
if (!item_type.oriented && ok_2[item_type_id])
insertion_item(
father,
insertions,
item_type_id,
true, // rotate
0, // new_bin
-1, // uncovered_item_pos
defect.id);
}
}
}
// Insert in a new bin.
if (insertions.empty() && father->number_of_bins < instance().number_of_bins()) {
BinTypeId bin_type_id = instance().bin_type_id(father->number_of_bins);
const BinType& bin_type = instance().bin_type(bin_type_id);
int new_bin = 0;
if (parameters_.direction == Direction::X) {
new_bin = 1;
} else if (parameters_.direction == Direction::Y) {
new_bin = 2;
} else {
if (bin_type.rect.x >= bin_type.rect.y) {
new_bin = 1;
} else {
new_bin = 2;
}
}
// Items.
for (ItemTypeId item_type_id = 0;
item_type_id < instance_.number_of_item_types();
++item_type_id) {
if (!ok[item_type_id])
continue;
const ItemType& item_type = instance_.item_type(item_type_id);
if (father->item_number_of_copies[item_type_id] == item_type.copies)
continue;
if (ok_1[item_type_id])
insertion_item(
father,
insertions,
item_type_id,
false,
new_bin,
0, // uncovered_item_pos
-1); // defect_id
if (!item_type.oriented && ok_2[item_type_id])
insertion_item(
father,
insertions,
item_type_id,
true, // rotate
new_bin,
0, // uncovered_item_pos
-1); // defect_id
}
// Defects.
for (const Defect& defect: bin_type.defects) {
for (ItemTypeId item_type_id = 0;
item_type_id < instance_.number_of_item_types();
++item_type_id) {
if (!ok[item_type_id])
continue;
const ItemType& item_type = instance_.item_type(item_type_id);
if (father->item_number_of_copies[item_type_id] == item_type.copies)
continue;
if (ok_1[item_type_id])
insertion_item(
father,
insertions,
item_type_id,
false, // rotate
new_bin,
-1, // uncovered_item_pos
defect.id);
if (!item_type.oriented && ok_2[item_type_id])
insertion_item(
father,
insertions,
item_type_id,
true, // rotate
new_bin,
-1, // uncovered_item_pos
defect.id);
}
}
}
return insertions;
}
void BranchingScheme::insertion_item(
const std::shared_ptr<Node>& father,
std::vector<Insertion>& insertions,
ItemTypeId item_type_id,
bool rotate,
int8_t new_bin,
ItemPos uncovered_item_pos,
DefectId defect_id) const
{
const ItemType& item_type = instance_.item_type(item_type_id);
BinTypeId bin_type_id = (new_bin == 0)?
instance().bin_type_id(father->number_of_bins - 1):
instance().bin_type_id(father->number_of_bins);
const BinType& bin_type = instance().bin_type(bin_type_id);
Direction o = (new_bin == 0)?
father->last_bin_direction:
((new_bin == 1)? Direction::X: Direction::Y);
Length xj = instance().x(item_type, rotate, o);
Length yj = instance().y(item_type, rotate, o);
Length xi = instance().x(bin_type, o);
Length yi = instance().y(bin_type, o);
Length ys;
if (uncovered_item_pos > 0) {
ys = father->uncovered_items[uncovered_item_pos].ys;
} else if (defect_id != -1) {
ys = instance().y_end(bin_type.defects[defect_id], o);
} else { // new bin.
ys = 0;
}
Length ye = ys + yj;
// Check bin y.
if (ye > yi)
return;
// Check maximum weight.
double last_bin_weight = (new_bin == 0)?
father->groups.front().last_bin_weight + item_type.weight:
item_type.weight;
if (last_bin_weight > bin_type.maximum_weight * PSTOL)
return;
// Compute xl.
Length xs = 0;
if (new_bin == 0) {
for (const UncoveredItem& uncovered_item: father->uncovered_items) {
if (uncovered_item.ye <= ys || uncovered_item.ys >= ye)
continue;
if (xs < uncovered_item.xe)
xs = uncovered_item.xe;
}
}
// Check unloading constraints.
switch (instance().unloading_constraint()) {
case UnloadingConstraint::None: {
break;
} case UnloadingConstraint::OnlyXMovements: case::UnloadingConstraint::OnlyYMovements: {
// Check if an item from the uncovered item with higher group is not
// blocked by the new item.
for (const UncoveredItem& uncovered_item: father->uncovered_items) {
if (uncovered_item.ye <= ys || uncovered_item.ys >= ye)
continue;
if (uncovered_item.item_type_id == -1)
continue;
const ItemType& item_type_pred = instance().item_type(uncovered_item.item_type_id);
if (item_type.group_id > item_type_pred.group_id)
return;
}
break;
} case UnloadingConstraint::IncreasingX: case UnloadingConstraint::IncreasingY: {
for (GroupId group = item_type.group_id + 1; group < instance().number_of_groups(); ++group)
if (xs < father->groups[group].x_max)
return;
for (GroupId group = 0; group < item_type.group_id; ++group)
if (xs > father->groups[group].x_min)
return;
break;
}
}
// Defects
// While the item intersects a defect, move it to the right.
for (;;) {
bool stop = true;
for (const Defect& defect: bin_type.defects) {
if (instance().x_start(defect, o) >= xs + xj)
continue;
if (xs >= instance().x_end(defect, o))
continue;
if (instance().y_start(defect, o) >= ye)
continue;
if (ys >= instance().y_end(defect, o))
continue;
xs = instance().x_end(defect, o);
stop = false;
}
if (stop)
break;
}
Length xe = xs + xj;
// Check bin width.
if (xe > xi)
return;
if (parameters_.staircase && new_bin == 0 && uncovered_item_pos != -1)
for (const UncoveredItem& uncovered_item: father->uncovered_items)
if (uncovered_item.ys > ye && uncovered_item.xe > xs)
return;
if (uncovered_item_pos > 0) {
if (xe <= father->uncovered_items[uncovered_item_pos - 1].xs)
return;
} else if (defect_id != -1) {
if (xe <= instance().x_start(bin_type.defects[defect_id], o))
return;
if (xs >= instance().x_end(bin_type.defects[defect_id], o))
return;
}
Insertion insertion;
insertion.item_type_id = item_type_id;
insertion.rotate = rotate;
insertion.x = xs;
insertion.y = ys;
insertion.new_bin = new_bin;
insertions.push_back(insertion);
}
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
const std::shared_ptr<BranchingScheme::Node> BranchingScheme::root() const
{
if (root_ != nullptr)
return std::shared_ptr<Node>(new BranchingScheme::Node(*root_));
BranchingScheme::Node node;
node.item_number_of_copies = std::vector<ItemPos>(instance_.number_of_item_types(), 0);
node.groups = std::vector<NodeGroup>(instance().number_of_groups());
for (GroupId group_id = 0; group_id < instance().number_of_groups(); ++group_id) {
node.groups[group_id].x_min = std::numeric_limits<Length>::max();
}
node.id = node_id_++;
return std::shared_ptr<Node>(new BranchingScheme::Node(node));
}
bool BranchingScheme::better(
const std::shared_ptr<Node>& node_1,
const std::shared_ptr<Node>& node_2) const
{
switch (instance_.objective()) {
case Objective::Default: {
if (node_2->profit > node_1->profit)
return false;
if (node_2->profit < node_1->profit)
return true;
return node_2->waste > node_1->waste;
} case Objective::BinPacking: {
if (!leaf(node_1))
return false;
if (!leaf(node_2))
return true;
return node_2->number_of_bins > node_1->number_of_bins;
} case Objective::BinPackingWithLeftovers: {
if (!leaf(node_1))
return false;
if (!leaf(node_2))
return true;
return node_2->waste > node_1->waste;
} case Objective::OpenDimensionX: {
if (!leaf(node_1))
return false;
if (!leaf(node_2))
return true;
return node_2->xe_max > node_1->xe_max;
} case Objective::OpenDimensionY: {
if (!leaf(node_1))
return false;
if (!leaf(node_2))
return true;
return node_2->xe_max > node_1->xe_max;
} case Objective::Knapsack: {
return node_2->profit < node_1->profit;
} case Objective::SequentialOneDimensionalRectangleSubproblem: {
if (node_1->profit != node_2->profit)
return node_1->profit > node_2->profit;
return node_1->middle_axle_overweight + node_1->rear_axle_overweight
< node_2->middle_axle_overweight + node_2->rear_axle_overweight;
} default: {
std::stringstream ss;
ss << "Branching scheme 'rectangle::BranchingScheme'"
<< "does not support objective '" << instance_.objective() << "'.";
throw std::logic_error(ss.str());
return false;
}
}
}
bool BranchingScheme::bound(
const std::shared_ptr<Node>& node_1,
const std::shared_ptr<Node>& node_2) const
{
switch (instance_.objective()) {
case Objective::Default: {
return false;
//Profit ub = node_1->profit + knapsack_bounds_[instance_.packable_area() - node_1->current_area];
//if (!leaf(node_2)) {
// return (ub <= node_2->profit);
//} else {
// if (ub != node_2->profit)
// return (ub <= node_2->profit);
// return node_1->waste >= node_2->waste;
//}
} case Objective::BinPacking: {
if (!leaf(node_2))
return false;
BinPos bin_pos = -1;
Area a = instance_.item_area() + node_1->waste;
while (a > 0) {
bin_pos++;
if (bin_pos >= instance_.number_of_bins())
return true;
BinTypeId bin_type_id = instance().bin_type_id(bin_pos);
a -= instance_.bin_type(bin_type_id).area();
}
return (bin_pos + 1 >= node_2->number_of_bins);
} case Objective::BinPackingWithLeftovers: {
if (!leaf(node_2))
return false;
return node_1->waste >= node_2->waste;
} case Objective::Knapsack: {
if (leaf(node_2))
return true;
return false;
} case Objective::OpenDimensionX: case Objective::OpenDimensionY: {
if (!leaf(node_2))
return false;
return (std::max(node_1->xe_max, node_1->waste + instance_.item_area() - 1)
/ (instance().x(instance_.bin_type(0), Direction::X) + 1)) >= node_2->xe_max;
} case Objective::SequentialOneDimensionalRectangleSubproblem: {
if (leaf(node_2)
&& node_2->middle_axle_overweight == 0
&& node_2->rear_axle_overweight == 0)
return true;
return false;
} default: {
std::stringstream ss;
ss << "Branching scheme 'rectangle::BranchingScheme'"
<< "does not support objective '" << instance_.objective() << "'.";
throw std::logic_error(ss.str());
return false;
}
}
}
////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////// export ////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
Solution BranchingScheme::to_solution(
const std::shared_ptr<Node>& node) const
{
std::vector<std::shared_ptr<Node>> descendents;
for (std::shared_ptr<Node> current_node = node;
current_node->father != nullptr;
current_node = current_node->father) {
descendents.push_back(current_node);
}
std::reverse(descendents.begin(), descendents.end());
Solution solution(instance());
BinPos i = -1;
for (auto current_node: descendents) {
if (current_node->number_of_bins > solution.number_of_bins())
i = solution.add_bin(instance().bin_type_id(current_node->number_of_bins - 1), 1);
Point bl_corner = (current_node->last_bin_direction == Direction::X)?
Point{current_node->x, current_node->y}:
Point{current_node->y, current_node->x};
solution.add_item(
i,
current_node->item_type_id,
bl_corner,
current_node->rotate);
}
if (node->number_of_bins == 1
&& node->last_bin_direction == Direction::Y
&& node->xe_max != solution.y_max()) {
throw std::runtime_error(
"node->xe_max: " + std::to_string(node->xe_max)
+ "; solution.y_max(): " + std::to_string(solution.y_max())
+ ".");
}
return solution;
}
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
std::ostream& packingsolver::rectangle::operator<<(
std::ostream &os,
const BranchingScheme::UncoveredItem& uncovered_item)
{
os << "item_type_id " << uncovered_item.item_type_id
<< " xs " << uncovered_item.xs
<< " xe " << uncovered_item.xe
<< " ys " << uncovered_item.ys
<< " ye " << uncovered_item.ye
;
return os;
}
bool BranchingScheme::UncoveredItem::operator==(
const UncoveredItem& uncovered_item) const
{
return ((item_type_id == uncovered_item.item_type_id)
&& (xs == uncovered_item.xs)
&& (xe == uncovered_item.xe)
&& (ys == uncovered_item.ys)
&& (ye == uncovered_item.ye)
);
}
bool BranchingScheme::Insertion::operator==(
const Insertion& insertion) const
{
return ((item_type_id == insertion.item_type_id)
&& (rotate == insertion.rotate)
&& (new_bin == insertion.new_bin)
&& (x == insertion.x)
&& (y == insertion.y)
);
}
std::ostream& packingsolver::rectangle::operator<<(
std::ostream &os,
const BranchingScheme::Insertion& insertion)
{
os << "item_type_id " << insertion.item_type_id
<< " rotate " << insertion.rotate
<< " new_bin " << insertion.new_bin
<< " x " << insertion.x
<< " y " << insertion.y
;
return os;
}
std::ostream& packingsolver::rectangle::operator<<(
std::ostream &os,
const BranchingScheme::Node& node)
{
os << "number_of_items " << node.number_of_items
<< " number_of_bins " << node.number_of_bins
<< std::endl;
os << "item_area " << node.item_area
<< " current_area " << node.current_area
<< std::endl;
os << "waste " << node.waste
<< " profit " << node.profit
<< std::endl;
// item_number_of_copies
os << "item_number_of_copies" << std::flush;
for (ItemPos j_pos: node.item_number_of_copies)
os << " " << j_pos;
os << std::endl;
return os;
}
|
74a9d8231e6ad05ae29822b77bc29c750a6c20de | aa89fd83bd86f6475c73d171d56a4de141877a6a | /ChatView.h | 367b5b22d462c0b13d9d500c4bdd96a1ec7f2c68 | [] | no_license | afisher/miqrochat | a61cecade58075b7515dd7af0f0c033f15968759 | 7079503a43bd7ad2fb76ff455c215a6ed8066137 | refs/heads/master | 2021-01-20T18:20:13.750071 | 2012-05-24T23:31:05 | 2012-05-24T23:51:35 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 176 | h | ChatView.h | #ifndef CHATVIEW_H
#define CHATVIEW_H
#include <QPlainTextEdit>
class ChatView: public QPlainTextEdit {
Q_OBJECT
public:
explicit ChatView(QWidget *parent=0);
};
#endif
|
19ded943f3ae784c34fd98a87ccbca6a85c73990 | ca4addbffbfb641cc2b88a212e7553696e193887 | /CH04 - 구현/게임 개발.cpp | 1210a98a2b5f4d5a01c47697d62258faf9dfff6d | [] | no_license | wjh51333/CodingTestBook_ndb | 464dfccefece50103a4a484c283b593015f15d2b | 6190358ffdd3b41b01215e5299cd6d562de345af | refs/heads/main | 2023-04-07T09:37:07.812669 | 2021-04-02T14:53:53 | 2021-04-02T14:53:53 | 349,367,243 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,032 | cpp | 게임 개발.cpp | /*
* 구현
* 게임 개발
*/
#include <iostream>
using namespace std;
int n, m;
int map[51][51];
bool visited[51][51];
int dx[] = { -1, 0, 1, 0 };
int dy[] = { 0, 1, 0, -1 };
int main()
{
ios::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> n >> m;
int x, y, d;
cin >> x >> y >> d;
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
cin >> map[i][j];
}
}
int answer = 1;
visited[x][y] = true;
while (1) {
bool check = false;
for (int i = 0; i < 4; i++) {
int dir = (d + 3 - i) % 4;
int nx = x + dx[dir];
int ny = y + dy[dir];
if (nx < 1 || ny < 1 || nx >= n || ny >= m) continue;
if (!visited[nx][ny] && !map[nx][ny]) {
d = dir;
visited[nx][ny] = true;
x = nx; y = ny;
answer++;
check = true;
break;
}
}
if (!check) {
int nx = x - dx[d];
int ny = y - dy[d];
if ((nx > 0 && ny > 0 && nx < n && ny < m) && !map[nx][ny]) {
x = nx; y = ny;
}
else {
cout << answer;
return 0;
}
}
}
return 0;
} |
ebd7f766d2b7f27522cb46aad6136c7e7ff2b286 | 42b43f9ccefca516777c3a779e507e61b19a1e82 | /include/ansu/tester.hpp | 0c40c4bf47fcbeb508557ee391ba4dd858c42620 | [
"MIT"
] | permissive | xiaozhi24/ansu | 12325a35983e64003e617292baf8905cc746f71d | 5e1c74944c4a2a637f0cf9d0f8e3404cfb6e761a | refs/heads/master | 2023-05-28T15:34:19.185925 | 2021-04-22T15:26:10 | 2021-04-22T15:26:10 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,903 | hpp | tester.hpp | #include "backend/hls/ansu.ipp"
#include "ints.hpp"
#include <fstream>
#include <iomanip>
#include <iostream>
#include <stack>
#include <string>
#include <vector>
#define IN_DIR "res/in/"
#define COMPRESSED_OUT_DIR "res/compressed/"
#define DECOMPRESSED_OUT_DIR "res/decompressed/"
#define GOLDEN_OUT_DIR "res/golden/"
using String = std::string;
String location = "./";
template <typename S, typename T>
void writeFile(S& os, T v)
{
os.write((char*) &v, sizeof(T));
}
template <typename S, typename T>
void readFile(S& os, T& v)
{
os.read((char*) &v, sizeof(T));
os.peek();
}
#ifdef SOFTWARE
# define __compress_function ANS::compress
#else
# define __compress_function hls_compress
#endif
namespace ANS
{
namespace Test
{
class Compression
{
public:
String inn;
String goutn;
String gmetan;
String outn;
String metan;
String testName;
bool isVerbose;
Compression(String location, String testName) : testName(testName)
{
this->inn = location + IN_DIR + testName + ".vin";
this->goutn = location + GOLDEN_OUT_DIR + testName + ".vout";
this->gmetan = location + GOLDEN_OUT_DIR + testName + ".vmeta";
this->outn = location + COMPRESSED_OUT_DIR + testName + ".vcmp";
this->metan =
location + COMPRESSED_OUT_DIR + testName + ".vmeta";
this->isVerbose = false;
}
void setVerbose() { this->isVerbose = true; }
int run(bool generate = false)
{
std::ios_base::fmtflags coutflags(std::cout.flags());
std::ifstream in(this->inn, std::ios::binary);
std::ofstream out(generate ? this->goutn : this->outn,
std::ios::binary);
std::ofstream meta(generate ? this->gmetan : this->metan,
std::ios::binary);
std::ifstream gout(this->goutn, std::ios::binary);
std::ifstream gmeta(this->gmetan, std::ios::binary);
if(!in || !out || !meta || !gout || !gmeta)
{
std::cerr << "One of the test files was not found."
<< std::endl;
return 1;
}
backend::stream<message_t> message;
backend::stream<state_t> encout;
backend::stream<ANS::Meta> encmeta;
bool hadErrors = false, outOfBoundsRead = false;
auto testOut = [&]() {
int i = 0;
if(this->isVerbose)
{
if(!encout.empty())
{
std::cout << "Encoded: ";
} else
{
std::cout << "(Nothing emitted)";
}
}
while(!encout.empty())
{
state_t cur, compare;
encout >> cur;
writeFile(out, cur);
if(!generate)
{
if(gout)
{
readFile(gout, compare);
} else
{
compare = -1;
outOfBoundsRead = hadErrors = true;
}
}
std::cout << std::uppercase << std::hex;
if(this->isVerbose)
{
std::cout << "0x" << std::setfill('0')
<< std::setw(sizeof(state_t) * 2)
<< (int) cur << " ";
if(!generate && cur != compare)
{
std::cout << "(0x" << std::setfill('0')
<< std::setw(sizeof(state_t) * 2)
<< (int) compare << ") ";
}
if((i + 1)
% (sizeof(state_t) / sizeof(message_t) * 4)
== 0)
{ std::cout << "\n "; }
i++;
}
if(!generate && cur != compare) { hadErrors = true; }
}
if(this->isVerbose) std::cout << std::endl;
};
auto testMeta = [&]() {
while(!encmeta.empty())
{
ANS::Meta cur, cmp;
encmeta >> cur;
writeFile(meta, cur);
if(!generate)
{
if(gmeta)
readFile(gmeta, cmp);
else
{
cmp.channels = -1;
// outOfBoundsRead = hadErrors = true;
}
}
if(this->isVerbose)
{
std::cout << std::dec;
std::cout
<< (generate ? "Meta:" : "GOT:") << "\n"
<< "\tChannel Count: " << (int) cur.channels
<< "\n"
<< "\tFin Channel: "
<< (int) cur.current_channel << "\n"
<< "\tOffse: " << (int) cur.offset << "\n"
<< "\tPadding: " << (int) cur.message_pad
<< "\n"
<< "\tDeadB: " << (int) cur.dead_bits << "\n"
<< "\tStates:\n";
for(int i = 0; i < CHANNEL_COUNT; i++)
{
std::cout << "\t " << (i + 1) << ". "
<< cur.control_state[i] << "\n";
}
std::cout << "\n";
if(!generate)
{
std::cout << std::dec;
std::cout
<< "EXP: \n"
<< "\tChannel Count: " << (int) cmp.channels
<< "\n"
<< "\tFin Channel: "
<< (int) cmp.current_channel << "\n"
<< "\tOffse: " << (int) cmp.offset << "\n"
<< "\tPadding: " << (int) cmp.message_pad
<< "\n"
<< "\tDeadB: " << (int) cmp.dead_bits
<< "\n"
<< "\tStates:\n";
for(int i = 0; i < CHANNEL_COUNT; i++)
{
std::cout << "\t " << (i + 1) << ". "
<< cmp.control_state[i] << "\n";
}
std::cout << "\n";
}
}
// if(!generate && cur != cmp)
// {
// std::cout << "Metadata mismatch!\n";
// hadErrors = true;
// }
}
if(this->isVerbose) std::cout << std::endl;
};
if(!generate)
{
std::cout << "*** RUNNING " << this->testName << " ***\n";
} else
{
std::cout << "*** GENERATING " << this->testName
<< " ***\n";
}
u8 control = CONTROL_RESET_STATE | CONTROL_ENCODE;
u32 padding = 0;
int blockCounter = 0;
in.peek();
while(!in.eof())
{
control |= CONTROL_ENCODE;
if(this->isVerbose)
{
std::cout << std::dec << "Block: " << blockCounter
<< "\n";
std::cout << std::hex;
blockCounter++;
}
int i = 0;
for(; (i < AVG_MESSAGE_LENGTH) && !in.eof(); i++)
{
message_t cur = 0xFF;
readFile(in, cur);
message << cur;
if(this->isVerbose)
{
std::cout
<< std::uppercase << "0x" << std::setfill('0')
<< std::setw(sizeof(message_t) * 2) << (int) cur
<< " ";
if((i + 1) % (sizeof(message_t) * 16) == 0)
{ std::cout << "\n"; }
}
}
if(this->isVerbose) std::cout << std::endl;
padding = (AVG_MESSAGE_LENGTH - i);
for(; i < AVG_MESSAGE_LENGTH; i++) message << (message_t) 0;
__compress_function(message, encout, encmeta, 0, control);
testOut();
testMeta();
}
control = CONTROL_FLUSH;
__compress_function(message, encout, encmeta, padding, control);
testOut();
testMeta();
if(!message.empty())
{ std::cerr << "MESSAGE WAS NOT ALL CONSUMED\n"; }
if(!encout.empty())
{ std::cerr << "ENCOUT WAS NOT ALL CONSUMED\n"; }
if(!encmeta.empty())
{ std::cerr << "ENCMETA WAS NOT ALL CONSUMED\n"; }
if(!generate)
{
if(hadErrors)
{
std::cerr << "!!! TEST " << this->testName
<< " FAILURE !!!" << std::endl;
if(outOfBoundsRead)
{
std::cerr << "!!! Generated too much data. !!!"
<< std::endl;
}
} else
{
std::cout << "*** TEST " << this->testName
<< " PASS ***" << std::endl;
}
}
std::cout.flags(coutflags);
return hadErrors;
}
};
bool runCompressionTests(String location, std::vector<String> cases)
{
bool hadErrors = false;
for(auto tname: cases)
{
Compression t(location, tname);
t.setVerbose();
#ifdef SOFTWARE
t.run(true);
hadErrors |= t.run();
#else
hadErrors |= t.run();
#endif
}
return hadErrors;
}
#ifdef SOFTWARE
class Decompression
{
public:
String inn;
String inmn;
String goutn;
String outn;
String testName;
bool isVerbose;
Decompression(String location, String testName) : testName(testName)
{
this->inn = location + COMPRESSED_OUT_DIR + testName + ".vcmp";
this->inmn =
location + COMPRESSED_OUT_DIR + testName + ".vmeta";
this->goutn = location + IN_DIR + testName + ".vin";
this->outn =
location + DECOMPRESSED_OUT_DIR + testName + ".vout";
this->isVerbose = false;
}
void setVerbose() { this->isVerbose = true; }
int run(bool generate = false)
{
generate = false;
std::ios_base::fmtflags coutflags(std::cout.flags());
std::ifstream in(this->inn, std::ios::binary);
std::ifstream inm(this->inmn, std::ios::binary);
std::ofstream out(generate ? this->goutn : this->outn,
std::ios::binary);
std::ifstream gout(this->goutn, std::ios::binary);
if(!in || !inm || !out || !gout)
{
std::cerr << "One of the test files was not found."
<< std::endl;
return 1;
}
backend::stream<state_t> compressed;
backend::stream<ANS::Meta> encmeta;
backend::stream<message_t> message;
bool hadErrors = false, outOfBoundsRead = false;
if(!generate)
{
std::cout << "*** RUNNING " << this->testName << " ***\n";
} else
{
std::cout << "*** GENERATING " << this->testName
<< " ***\n";
}
std::cout << std::hex << std::uppercase << std::setfill('0')
<< std::setw(sizeof(message_t) * 2);
while(!inm.eof())
{
ANS::Meta m;
readFile(inm, m);
encmeta << m;
inm.peek();
std::cout << "Meta" << std::endl;
}
std::stack<state_t> tmps;
while(!in.eof())
{
state_t cur;
readFile(in, cur);
std::cout << cur << " ";
tmps.push(cur);
in.peek();
}
std::cout << "\n";
while(!tmps.empty())
{
state_t cur = tmps.top();
tmps.pop();
std::cout << cur << " ";
compressed << cur;
}
std::cout << "\n";
decompress(compressed, encmeta, message);
std::cout << "Message: ";
while(!message.empty())
{
message_t cur;
message >> cur;
out << cur;
// std::cout << std::setfill('0')
// << std::setw(sizeof(message_t) * 2) << (u32) cur
// << " ";
}
std::cout << "\n";
if(!message.empty())
{ std::cerr << "MESSAGE WAS NOT ALL CONSUMED\n"; }
if(!encmeta.empty())
{ std::cerr << "ENCMETA WAS NOT ALL CONSUMED\n"; }
if(!generate)
{
if(hadErrors)
{
std::cerr << "!!! TEST " << this->testName
<< " FAILURE !!!" << std::endl;
if(outOfBoundsRead)
{
std::cerr << "!!! Generated too much data. !!!"
<< std::endl;
}
} else
{
std::cout << "*** TEST " << this->testName
<< " PASS ***" << std::endl;
}
}
std::cout.flags(coutflags);
return hadErrors;
}
};
bool runDecompressionTests(String location, std::vector<String> cases)
{
bool hadErrors = false;
for(auto tname: cases)
{
Decompression t(location, tname);
t.setVerbose();
// t.run(true);
hadErrors |= t.run();
}
return hadErrors;
}
#endif
} // namespace Test
} // namespace ANS
|
dfd812239e82270e10519eeff2cc51abc99812bd | 5e46db511a3d51843769c248232d4951d5f4e566 | /source/tests/catch_transformation.cpp | 39f4d8db8359bf4d21cfc16d93292c70d4d199b3 | [
"Apache-2.0"
] | permissive | ndoxx/wcore | 32d34172406c9e384cc1d1bdc94813eb01cc1634 | 8b24519e9a01b0397ba2959507e1e12ea3a3aa44 | refs/heads/master | 2020-04-05T02:18:08.760468 | 2019-09-20T11:48:26 | 2019-09-20T11:48:26 | 156,471,374 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,344 | cpp | catch_transformation.cpp | #include <catch2/catch.hpp>
#include <iostream>
#include "catch_math_common.h"
#define __DEBUG__
#include "transformation.h"
using namespace math;
static const float precision = 1e-4;
TEST_CASE("Initializing transformation object.", "[transf]")
{
Transformation trf(vec3(1.0, 2.0, 3.0),
quat(vec3(0.0, 0.0, 1.0), 30.0)); // == quat(30.0, 0.0, 0.0)
const quat& q = trf.get_orientation();
REQUIRE(trf.get_position() == vec3(1.0, 2.0, 3.0));
REQUIRE(VectorNear(vec4(0.0, 0.0, 0.2588, 0.9659), q.get_as_vec(), precision));
}
TEST_CASE("Getting model matrix.", "[transf]")
{
Transformation trf(vec3(1.0, 2.0, 3.0),
quat(30.0, 0.0, 0.0));
mat4 M(trf.get_model_matrix());
mat4 expect(0.8660, -0.5, 0.0, 1.0,
0.5, 0.8660, 0.0, 2.0,
0.0, 0.0, 1.0, 3.0,
0.0, 0.0, 0.0, 1.0);
REQUIRE(MatrixNear(expect, M, precision));
}
TEST_CASE("Multiplying two Transformations.", "[transf]")
{
Transformation trf1(vec3(1.0, 2.0, 3.0),
quat(30.0, 0.0, 0.0),
2.0f);
Transformation trf2(vec3(-1.0, 5.0, 0.1),
quat(0.0, 30.0, 0.0),
1.0f);
Transformation trf12(trf1*trf2);
vec3 expectT12 = trf1.get_position() + trf2.get_position();
quat expectQ12 = trf1.get_orientation() * trf2.get_orientation();
REQUIRE(VectorNear(expectT12, trf12.get_position(), precision));
REQUIRE(VectorNear(expectQ12.get_as_vec(), trf12.get_orientation().get_as_vec(), precision));
REQUIRE(FloatNear(2.0f, trf12.get_scale(), precision));
REQUIRE(trf12.is_scaled());
}
TEST_CASE("Translating object.", "[transf]")
{
Transformation trf(vec3(12.0, -12.0, 5.0),
quat(30.0, 0.0, 0.0));
SECTION("Vector translation")
{
trf.translate(vec3(1.0, 1.0, -5.0));
vec3 expect(13.0, -11.0, 0.0);
REQUIRE(VectorNear(expect, trf.get_position(), precision));
}
SECTION("Translation along x-axis")
{
trf.translate_x(5.0);
vec3 expect(17.0, -12.0, 5.0);
REQUIRE(VectorNear(expect, trf.get_position(), precision));
}
SECTION("Translation along y-axis")
{
trf.translate_y(-5.0);
vec3 expect(12.0, -17.0, 5.0);
REQUIRE(VectorNear(expect, trf.get_position(), precision));
}
SECTION("Translation along z-axis")
{
trf.translate_z(2.0);
vec3 expect(12.0, -12.0, 7.0);
REQUIRE(VectorNear(expect, trf.get_position(), precision));
}
}
TEST_CASE("Rotating object.", "[transf]")
{
Transformation trf(vec3(0.0, 0.0, 0.0),
quat(30.0, 0.0, 0.0));
trf.rotate(30.0, 0.0, 0.0);
quat q(trf.get_orientation());
vec3 expect(60.0, 0.0, 0.0);
REQUIRE(VectorNear(expect, q.get_euler_angles(), precision));
}
TEST_CASE("Scaling object.", "[transf]")
{
Transformation trf(vec3(0.0, 0.0, 0.0),
quat(30.0, 0.0, 0.0),
2.0f);
REQUIRE(trf.get_scale() == 2.0f);
REQUIRE(trf.is_scaled());
trf.translate(1.0, 2.0, 3.0);
mat4 M(trf.get_model_matrix());
mat4 expect(2*0.8660, -2*0.5, 0.0, 1.0,
2*0.5, 2*0.8660, 0.0, 2.0,
0.0, 0.0, 2*1.0, 3.0,
0.0, 0.0, 0.0, 1.0);
REQUIRE(MatrixNear(expect, M, precision));
}
/*
TEST_CASE("Rotating object around a point, given axis of rotation and angle.", "[transf]")
{
SECTION("Position at origin, rotate around [1,0,0], up axis.")
{
Transformation trf(vec3(0.0, 0.0, 0.0),
quat(30.0, 0.0, 0.0));
trf.rotate_around(vec3(1.0, 0.0, 0.0), 60.0);
REQUIRE(VectorNear(vec3(0.866025, 0, 0.5), trf.get_position(), precision));
}
SECTION("Position at origin, rotate around [2,0,0], up axis.")
{
Transformation trf;
trf.rotate_around(vec3(2.0, 0.0, 0.0), 60.0);
REQUIRE(VectorNear(vec3(2*0.866025, 0, 2*0.5), trf.get_position(), precision));
}
SECTION("Position at origin, rotate around [0,0,1], up axis.")
{
Transformation trf;
trf.rotate_around(vec3(0.0, 0.0, 1.0), 60.0);
REQUIRE(VectorNear(vec3(-0.866025, 0, 0.5), trf.get_position(), precision));
}
}
*/
|
0b09cab60a670745cd315c2d7e14c65f185b5d27 | 24a59c24cdd10ba511a7a32cc4730fed5597e51b | /NTHieu_SE1405_BT bo sung/NTHieu_SE1405_C2.Aray_Post/CS.P09.cpp | 24c14cdc4cce165329a09a58931887e1d2e51dd4 | [] | no_license | hieuntse/LAB101 | 2ae1bf2e94b7dd7f596dff31d2f789b729412ba1 | 0ce3b0a6ff86524888bf7768776a0282246634e7 | refs/heads/master | 2023-01-27T23:51:51.094245 | 2020-12-02T03:02:05 | 2020-12-02T03:02:05 | 317,417,005 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 709 | cpp | CS.P09.cpp | #include <stdio.h>
#define max 100
//Enter a array
int Input(int *A,int &n){
int i;
printf("Please enter size of array: ");
scanf("%d",&n);
for (i=0; i<n; i++){
printf("Element[%d]: ",i);
scanf("%d",&A[i]);
}
}
/*Loop up the smallest element position in the array
Display the smallest element and its position*/
int Smallest(int *A,int n){
int i;
int Smallest, Position;
Smallest = A[0];
for(i=0; i<n; i++)
{
if(Smallest > A[i])
{
Smallest = A[i];
Position = i;
}
}
printf("\nThe smallest element: %d - Its position: %d ", Smallest, Position+1);
}
int main(){
int a[max], n, i;
Input(a,n);
Smallest(a, n);
return 0;
getchar();
}
|
fa0495f6be9967a164a4be59bb83df5bd4edaeba | 1d4b43425baf5527cdd7651d551dcd079f9ed873 | /M1_TIIR_2017_2018/ACT/TP/2_choco/src/dyn_sym_minimal_space.cpp | 5b29dc2c6b04b206c880af7c2e5a1aee38cb403b | [] | no_license | capsian/Lille1 | fb2c37cf8516b5847e395400eea4dcc6e860ece7 | 9c2d8c0b320d61a4a1c907d7a230a15db287c24d | refs/heads/master | 2022-01-29T09:56:59.292585 | 2022-01-17T17:25:38 | 2022-01-17T17:25:38 | 156,289,416 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,437 | cpp | dyn_sym_minimal_space.cpp | #include <iostream>
#include <stdlib.h>
using namespace std;
int* cube;
int w ,h , d ,o;
void display_space(int* minim_space_config) {
cout << "minimal space :m = " << minim_space_config[0] << ", n = " << minim_space_config[1] << ", i = " << minim_space_config[2] << ", j = " << minim_space_config[3] << endl;
}
void get_minimal_space_config(int m, int n, int i, int j, int* minim_space_config) {
int I,J,minI,minJ;
int tmp;
I = m - 1 - i ;
J = n - 1 - j;
minI = min(i,I);
minJ = min(j,J);
if ( n > m && minJ == minI){
minim_space_config[0] = n;
minim_space_config[1] = m;
minim_space_config[2] = minJ;
minim_space_config[3] = minI;
}else if (minJ > minI) {
minim_space_config[0] = n;
minim_space_config[1] = m;
minim_space_config[2] = minJ;
minim_space_config[3] = minI;
}
else{
minim_space_config[0] = m;
minim_space_config[1] = n;
minim_space_config[2] = minI;
minim_space_config[3] = minJ;
}
// if (m == n) {
// int tmpI = i;
// i = max(i,j);
// j = min(tmpI,j);
// }
//
// if (n > m) {
// if (j>i) {
//
// int tmp = m;
// m = n;
// n = tmp;
//
// tmp = i;
// i = j;
// j = tmp;
// }
// }
//
// minim_space_config[0] = m;
// minim_space_config[1] = n;
//
// // plus petite symetrie
// if ((m - i - 1) < i)
// minim_space_config[2] = m - i - 1;
// else
// minim_space_config[2] = i;
//
// if ((n - j - 1) < j)
// minim_space_config[3] = n - j - 1;
// else
// minim_space_config[3] = j;
//
// int tmpI = minim_space_config[2];
// minim_space_config[2] = max(tmpI,minim_space_config[3]);
// minim_space_config[3] = min(tmpI,minim_space_config[3]);
}
int get_element(int m, int n, int i, int j) {
return cube[(j * w * h * d) + (i * w * h) + (n * w) + m];
}
void set_element(int m, int n, int i, int j,int value) {
cube[(j * w * h * d) + (i * w * h) + (n * w) + m] = value;
}
int score (int* sav, int n) {
int maxNeg = sav[0];
int isNeg = 0;
int maxPos = sav[0];
for (int i = 0; i < n; i++) {
if (sav[i] <= 0) {
isNeg++;
if (maxNeg > sav[i]) {
maxNeg = sav[i];
}
} else {
if (maxPos < sav[i]) {
maxPos = sav[i];
}
}
}
if (isNeg) {
return (maxNeg * -1) + 1;
} else {
return (maxPos * -1) - 1;
}
}
int f(int m, int n, int i, int j) {
int sav[n+m];
int k = 0;
if ((m == 1) && (n == 1)) {
//cout << " cas de base " << endl;
return 0;
}
//On coupe à gauche
for (int l=1;l<=i;l++) {
//cout << "f(" << m-l << "," << n << "," << i-l << "," << j << ")";
int tmp;
int minim_space_config_new[4];
get_minimal_space_config(m-l,n,i-l,j,minim_space_config_new);
//display_space(minim_space_config_new);
if ((tmp = get_element(minim_space_config_new[0],minim_space_config_new[1],minim_space_config_new[2],minim_space_config_new[3])) == 0) {
tmp = f(minim_space_config_new[0],minim_space_config_new[1],minim_space_config_new[2],minim_space_config_new[3]);
set_element(minim_space_config_new[0],minim_space_config_new[1],minim_space_config_new[2],minim_space_config_new[3],tmp);
}
sav[k++] = tmp;
}
//On coupe en haut
for (int l=1;l<=j;l++) {
//cout << "f(" << m << "," << n-l << "," << i << "," << j-l << ")" << endl;
int tmp;
int minim_space_config_new[4];
get_minimal_space_config(m,n-l,i,j-l,minim_space_config_new);
//display_space(minim_space_config_new);
if ((tmp = get_element(minim_space_config_new[0],minim_space_config_new[1],minim_space_config_new[2],minim_space_config_new[3])) == 0) {
tmp = f(minim_space_config_new[0],minim_space_config_new[1],minim_space_config_new[2],minim_space_config_new[3]);
set_element(minim_space_config_new[0],minim_space_config_new[1],minim_space_config_new[2],minim_space_config_new[3],tmp);
}
sav[k++] = tmp;
}
//On coupe à droite
for (int l=1;l<(m-i);l++) {
//cout << "f(" << m-l << "," << n << "," << i << "," << j << ")" << endl;
int tmp;
int minim_space_config_new[4];
get_minimal_space_config(m-l,n,i,j,minim_space_config_new);
//display_space(minim_space_config_new);
if ((tmp = get_element(minim_space_config_new[0],minim_space_config_new[1],minim_space_config_new[2],minim_space_config_new[3])) == 0) {
tmp = f(minim_space_config_new[0],minim_space_config_new[1],minim_space_config_new[2],minim_space_config_new[3]);
set_element(minim_space_config_new[0],minim_space_config_new[1],minim_space_config_new[2],minim_space_config_new[3],tmp);
}
sav[k++] = tmp;
}
//On coupe en bas
for (int l=1;l<(n-j);l++) {
//cout << "f(" << m << "," << n-l << "," << i << "," << j << ")" << endl;
int tmp;
int minim_space_config_new[4];
get_minimal_space_config(m,n-l,i,j,minim_space_config_new);
//display_space(minim_space_config_new);
if ((tmp = get_element(minim_space_config_new[0],minim_space_config_new[1],minim_space_config_new[2],minim_space_config_new[3])) == 0) {
tmp = f(minim_space_config_new[0],minim_space_config_new[1],minim_space_config_new[2],minim_space_config_new[3]);
set_element(minim_space_config_new[0],minim_space_config_new[1],minim_space_config_new[2],minim_space_config_new[3],tmp);
}
sav[k++] = tmp;
}
return score(sav,k);
}
int main() {
int m,n,i,j;
cin >> m >> n >> i >> j;
int minim_space_config[4];
get_minimal_space_config(m,n,i,j,minim_space_config);
// display_space(minim_space_config);
w = minim_space_config[0];
h = minim_space_config[1];
d = minim_space_config[2];
o = minim_space_config[3];
cube = (int *) malloc(sizeof(int) * minim_space_config[0] * minim_space_config[1] * (minim_space_config[2]+1) * (minim_space_config[3]+1) );
cout << f(minim_space_config[0],minim_space_config[1],minim_space_config[2],minim_space_config[3]) << endl;
free(cube);
return 0;
}
|
fe4cca1df70be245bb368fd98eaf5c20cbc4f8a6 | 19a4fffd52c60cc83132e6bb622b1c2ed85bc67c | /No91_DecodeWays.cpp | 25664b5e9ea71e060e4d00506dd0e2415366313c | [] | no_license | XingwenZhang/Leetcode | 2562d8f475b381a44b891105e29f23844b6bf4a4 | 3ce14802a0494988e5372565ccac709ac2489f7a | refs/heads/master | 2021-04-26T07:29:05.063883 | 2018-01-01T08:16:29 | 2018-01-01T08:16:29 | 65,857,071 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 965 | cpp | No91_DecodeWays.cpp | // A message containing letters from A-Z is being encoded to numbers using the following mapping:
// 'A' -> 1
// 'B' -> 2
// ...
// 'Z' -> 26
// Given an encoded message containing digits, determine the total number of ways to decode it.
// For example,
// Given encoded message "12", it could be decoded as "AB" (1 2) or "L" (12).
// The number of ways decoding "12" is 2.
// Solution 1: Recursion every two chars
class Solution {
public:
int numDecodings(string s) {
if(s.empty()){
return 0;
}
int len = s.size();
int *dp = new int[len + 1];
dp[0] = 1;
// dp[i] means the first i chars solution
for(int i=1; i<=len; i++){
dp[i] = 0;
}
for(int i=1; i<=len; i++){
if(s[i-1] >= '1' && s[i-1] <= '9'){
dp[i] += dp[i-1];
}
if(i>=2 && s.substr(i-2,2).compare("10") >= 0 && s.substr(i-2,2).compare("26")<=0){
dp[i] += dp[i-2];
}
}
return dp[len];
}
}; |
6c6a441f709ac16709a02e19e1beeeddc43e0059 | e796f7cf7c2f46bad7ac9e2a017e6f3c1e92e6a1 | /QtDemo/sqlitehelper.cpp | 54db1dadd0cad8ca0bec3b72ec72ffd0ab3f8aa5 | [] | no_license | goodgeek/QtDemo | 84ef23e436419510b31e39fc36f0374b1c586003 | 9869a06ccf6233f2104f4a564b41b952e8d9b379 | refs/heads/master | 2020-07-23T21:05:53.009502 | 2016-09-02T07:07:48 | 2016-09-02T07:07:48 | 66,939,343 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,187 | cpp | sqlitehelper.cpp | #include "sqlitehelper.h"
#include <QtSql/QSqlDatabase>
#include <QtSql/QSqlQuery>
#include <qtsql/QSqlError>
#include <QDebug>
SQLiteHelper::SQLiteHelper(QObject *parent) : QObject(parent)
{
}
void SQLiteHelper::dbOperator()
{
QSqlDatabase db;
if (QSqlDatabase::contains("test_db_connect"))
db = QSqlDatabase::database("test_db_connect");
else
db = QSqlDatabase::addDatabase("QSQLITE", "test_db_connect");
db.setDatabaseName("test.db");
if (!db.open()) {
qDebug() << "数据库打开失败" << db.lastError().text() << endl;
return;
}
QSqlQuery query(db);
if (!query.exec("select * from t_user")) {
qDebug() << "查询数据库失败:" << query.lastError().text() << endl;
}
while (query.next()) {
auto name = query.value(0).toString();
auto address = query.value(1).toString();
auto age = query.value(2).toString();
qDebug() << "查询到的数据:" << name << address << age << endl;
}
query.clear();
QString connectName;
{
connectName = QSqlDatabase::database().connectionName();
}
db.close();
db.removeDatabase(connectName);
}
|
fc837ac934187e6c067e28f7da8f72cc4c2bceff | 12b84386e6b9539c082dbea87ca83d8cdff8c254 | /The Great Outdoors Vr_BackUpThisFolder_ButDontShipItWithYourGame/il2cppOutput/Valve.Newtonsoft.Json1.cpp | 32d99611a0ae91bda219027ae9ae222c86aaf2ce | [] | no_license | ichanner/The-Great-Outdoors-VR | 4b9b6cb0455c534eb740868212ab96a390259a7a | 2691d10bab4323c33545e6dbb6c478026935810c | refs/heads/main | 2023-01-03T19:32:29.210991 | 2020-10-31T05:14:37 | 2020-10-31T05:14:37 | 302,486,787 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,129,451 | cpp | Valve.Newtonsoft.Json1.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 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);
}
};
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);
}
};
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>
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 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 R, typename T1>
struct VirtFuncInvoker1
{
typedef R (*Func)(void*, T1, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename R, typename T1, typename T2>
struct VirtFuncInvoker2
{
typedef R (*Func)(void*, T1, T2, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
template <typename R, typename T1>
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>
struct GenericVirtFuncInvoker0
{
typedef R (*Func)(void*, const RuntimeMethod*);
static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
return ((Func)invokeData.methodPtr)(obj, 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 T1, typename T2, typename T3>
struct GenericVirtActionInvoker3
{
typedef void (*Action)(void*, T1, T2, T3, const RuntimeMethod*);
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
((Action)invokeData.methodPtr)(obj, p1, p2, p3, 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 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 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 T1, typename T2, typename T3>
struct InterfaceActionInvoker3
{
typedef void (*Action)(void*, T1, T2, T3, const RuntimeMethod*);
static inline void 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);
((Action)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method);
}
};
template <typename R>
struct GenericInterfaceFuncInvoker0
{
typedef R (*Func)(void*, const RuntimeMethod*);
static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
return ((Func)invokeData.methodPtr)(obj, 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 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 T1, typename T2, typename T3>
struct GenericInterfaceActionInvoker3
{
typedef void (*Action)(void*, T1, T2, T3, const RuntimeMethod*);
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
((Action)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method);
}
};
// System.Action`1<System.Object>
struct Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0;
// System.Action`2<System.Object,System.Object>
struct Action_2_t0DB6FD6F515527EAB552B690A291778C6F00D48C;
// System.AppDomain
struct AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8;
// System.ArgumentException
struct ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1;
// System.ArgumentNullException
struct ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD;
// System.ArgumentOutOfRangeException
struct ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA;
// System.AssemblyLoadEventHandler
struct AssemblyLoadEventHandler_t53F8340027F9EE67E8A22E7D8C1A3770345153C9;
// System.AsyncCallback
struct AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4;
// System.Boolean[]
struct BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040;
// System.Byte[]
struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821;
// System.Char[]
struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2;
// System.Collections.Generic.Comparer`1<System.Object>
struct Comparer_1_t1DB742817DFA148A84E0F6044361F97B935058A7;
// System.Collections.Generic.Comparer`1<System.String>
struct Comparer_1_tC8913CC0230510AB5B82485EAEF003DA0F4B9903;
// System.Collections.Generic.Dictionary`2/Entry<System.String,Valve.Newtonsoft.Json.Linq.JToken>[]
struct EntryU5BU5D_tE169A7F8494352DBBE0DEE2F1EF956F911C4466E;
// System.Collections.Generic.Dictionary`2/Entry<Valve.Newtonsoft.Json.Serialization.ResolverContractKey,Valve.Newtonsoft.Json.Serialization.JsonContract>[]
struct EntryU5BU5D_t415CCFE647DD85D4318BE21097FCEF3489A2DADC;
// System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Object>
struct KeyCollection_t0394DE2BA7C2C82605C6E9DEBB21A8C5C792E97C;
// System.Collections.Generic.Dictionary`2/KeyCollection<System.String,Valve.Newtonsoft.Json.Linq.JToken>
struct KeyCollection_t44B3F4E6CFC63F9D85C76C64DE24F71FCD3A5E7F;
// System.Collections.Generic.Dictionary`2/KeyCollection<Valve.Newtonsoft.Json.Serialization.ResolverContractKey,Valve.Newtonsoft.Json.Serialization.JsonContract>
struct KeyCollection_t63AEF5C4BEF6FE56F2513EE3FC4B03842DF8F800;
// System.Collections.Generic.Dictionary`2/ValueCollection<System.String,Valve.Newtonsoft.Json.Linq.JToken>
struct ValueCollection_tF154CF6FED0B40E4EDB1096CC60A8CCFACD36597;
// System.Collections.Generic.Dictionary`2/ValueCollection<Valve.Newtonsoft.Json.Serialization.ResolverContractKey,Valve.Newtonsoft.Json.Serialization.JsonContract>
struct ValueCollection_t9FE881F822F12C9DA2F8DA644E9AC665487A33EB;
// System.Collections.Generic.Dictionary`2<System.Int32,System.Globalization.CultureInfo>
struct Dictionary_2_tC88A56872F7C79DBB9582D4F3FC22ED5D8E0B98B;
// System.Collections.Generic.Dictionary`2<System.Object,System.Object>
struct Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA;
// System.Collections.Generic.Dictionary`2<System.String,System.Globalization.CultureInfo>
struct Dictionary_2_tBA5388DBB42BF620266F9A48E8B859BBBB224E25;
// System.Collections.Generic.Dictionary`2<System.String,System.Object>
struct Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA;
// System.Collections.Generic.Dictionary`2<System.String,Valve.Newtonsoft.Json.Linq.JToken>
struct Dictionary_2_t40E91C81D5ADA639FA8CD3CD9E4F8824FE177EB5;
// System.Collections.Generic.Dictionary`2<System.String,Valve.Newtonsoft.Json.Serialization.JsonProperty>
struct Dictionary_2_t906A7961F7DF8DF5D59F800377730647D2DE906E;
// System.Collections.Generic.Dictionary`2<System.Type,Valve.Newtonsoft.Json.ReadType>
struct Dictionary_2_tA954C383835C628CE0F7069B81D14ACEE9281695;
// System.Collections.Generic.Dictionary`2<Valve.Newtonsoft.Json.Serialization.DefaultSerializationBinder/TypeNameKey,System.Type>
struct Dictionary_2_t19BF97A987EC2212EEF1AFE3B01E168668E1803F;
// System.Collections.Generic.Dictionary`2<Valve.Newtonsoft.Json.Serialization.ResolverContractKey,System.Object>
struct Dictionary_2_tFD48FC1CA78C37008F9BE838785DF33D22AABEDA;
// System.Collections.Generic.Dictionary`2<Valve.Newtonsoft.Json.Serialization.ResolverContractKey,Valve.Newtonsoft.Json.Serialization.JsonContract>
struct Dictionary_2_t3B0A775E26AFCA1B3A8DF100D5CB736C522494F7;
// System.Collections.Generic.ICollection`1<System.String>
struct ICollection_1_t2E51991ADA605DB75870908AF6D7C3093DC3FCBA;
// System.Collections.Generic.ICollection`1<Valve.Newtonsoft.Json.Linq.JToken>
struct ICollection_1_tC7EE26B81D6AA9E3EFAF7AE7EF28C26FB95B485A;
// System.Collections.Generic.IDictionary`2<System.Object,System.String>
struct IDictionary_2_tF1581B00CAFCAE585FF0322D64654CB7D8C4F0E1;
// System.Collections.Generic.IDictionary`2<System.String,System.Object>
struct IDictionary_2_t6AF508DE18DA398DBB91330BEEB14B0CFBD4A8ED;
// System.Collections.Generic.IDictionary`2<Valve.Newtonsoft.Json.Serialization.ResolverContractKey,System.Object>
struct IDictionary_2_t6041F71D5342E859A724B07301ADE366F6010C8A;
// System.Collections.Generic.IDictionary`2<Valve.Newtonsoft.Json.Serialization.ResolverContractKey,Valve.Newtonsoft.Json.Serialization.JsonContract>
struct IDictionary_2_t9AD44730CFBF66422F18187D0996A92C1EDF8FB7;
// System.Collections.Generic.IEnumerable`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct IEnumerable_1_t00C11E28587644E33CB7F154833508D63BFAC5B2;
// System.Collections.Generic.IEnumerable`1<System.Object>
struct IEnumerable_1_t2F75FCBEC68AFE08982DA43985F9D04056E2BE73;
// System.Collections.Generic.IEnumerable`1<System.Reflection.ConstructorInfo>
struct IEnumerable_1_t38430383D88E6985C7F2B49DE4E75CAA8B78F41A;
// System.Collections.Generic.IEnumerable`1<System.Reflection.MemberInfo>
struct IEnumerable_1_t7FD352CD84740777D0C2732F0F63D13741D636BB;
// System.Collections.Generic.IEnumerable`1<System.Type>
struct IEnumerable_1_tF9225691990EF9799D9F4B64E4063CA0D1DF03CA;
// System.Collections.Generic.IEnumerable`1<Valve.Newtonsoft.Json.Linq.JToken>
struct IEnumerable_1_t060AF8C2D7B1984BA0AD638BA3C871F299F37B3A;
// System.Collections.Generic.IEnumerable`1<Valve.Newtonsoft.Json.Serialization.JsonProperty>
struct IEnumerable_1_tE66FFA808F23DEBF0287493D918B87CBC02708C9;
// System.Collections.Generic.IEnumerable`1<Valve.Newtonsoft.Json.Serialization.SerializationCallback>
struct IEnumerable_1_t67A64F85CBC01753DA6881E79C56C256F7FE2211;
// System.Collections.Generic.IEnumerable`1<Valve.Newtonsoft.Json.Serialization.SerializationErrorCallback>
struct IEnumerable_1_t3E8B8FEE3B042CD89587380EE146ECB060C71162;
// System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.String,Valve.Newtonsoft.Json.Linq.JToken>>
struct IEnumerator_1_tAC1AA46B3810408262B309DF1C9ACE74E6EC38B9;
// System.Collections.Generic.IEnumerator`1<System.Object>
struct IEnumerator_1_tDDB69E91697CCB64C7993B651487CEEC287DB7E8;
// System.Collections.Generic.IEnumerator`1<Valve.Newtonsoft.Json.Linq.JToken>
struct IEnumerator_1_tDC9E800425EFE4DEEBAB153A333E0E385FE9C771;
// System.Collections.Generic.IEqualityComparer`1<System.Object>
struct IEqualityComparer_1_tAE7A8756D8CF0882DD348DC328FB36FEE0FB7DD0;
// System.Collections.Generic.IEqualityComparer`1<System.String>
struct IEqualityComparer_1_t1F07EAC22CC1D4F279164B144240E4718BD7E7A9;
// System.Collections.Generic.IEqualityComparer`1<Valve.Newtonsoft.Json.Serialization.ResolverContractKey>
struct IEqualityComparer_1_tF41F2CFBB8A21CD4411E06F0A94D474849F4E478;
// System.Collections.Generic.IList`1<System.Object>
struct IList_1_tE09735A322C3B17000EF4E4BC8026FEDEB7B0D9B;
// System.Collections.Generic.IList`1<System.Reflection.MemberInfo>
struct IList_1_t54C21103410489E58E3E42A495A77830B8DB2CE3;
// System.Collections.Generic.IList`1<Valve.Newtonsoft.Json.JsonConverter>
struct IList_1_t7E573966AC4EFD3467BE776D410C32A4FC9C5503;
// System.Collections.Generic.IList`1<Valve.Newtonsoft.Json.Linq.JToken>
struct IList_1_tD0A73252EB025BC5ABDD8D9259A4BB17D94D5882;
// System.Collections.Generic.IList`1<Valve.Newtonsoft.Json.Serialization.JsonProperty>
struct IList_1_t38A60B593AA4BAB09F2F15CF74E08263B143C6FD;
// System.Collections.Generic.IList`1<Valve.Newtonsoft.Json.Serialization.SerializationCallback>
struct IList_1_t2F30D9BA6556960EF39250E90B695C0BFEC0D107;
// System.Collections.Generic.IList`1<Valve.Newtonsoft.Json.Serialization.SerializationErrorCallback>
struct IList_1_tAAD49365F611665E7313425771647F5B8B762FA9;
// System.Collections.Generic.KeyValuePair`2<System.String,Valve.Newtonsoft.Json.Linq.JToken>[]
struct KeyValuePair_2U5BU5D_t7A622914A381AA75E5CA5F22228AAEC514D3BE0D;
// System.Collections.Generic.List`1<System.Object>
struct List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D;
// System.Collections.Generic.List`1<System.Reflection.ConstructorInfo>
struct List_1_t6CEA56ED94DFAE80FDAED89141EF7D6AB50F046E;
// System.Collections.Generic.List`1<System.Reflection.MemberInfo>
struct List_1_t610995BF9B0DCC99DF41C7D0D54AA44EF8552AE9;
// System.Collections.Generic.List`1<System.String>
struct List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3;
// System.Collections.Generic.List`1<System.Type>
struct List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0;
// System.Collections.Generic.List`1<Valve.Newtonsoft.Json.JsonPosition>
struct List_1_tB300EBCDF85B082F12B483D22C5C8070412F6C76;
// System.Collections.Generic.List`1<Valve.Newtonsoft.Json.Linq.JToken>
struct List_1_t1FE4F7D4C3DCC24F3D8A78270F707A3AD8614891;
// System.Collections.Generic.List`1<Valve.Newtonsoft.Json.Serialization.JsonProperty>
struct List_1_t6058A2EE1FD0D50A7FFCAD444A5E3330BC73DA8E;
// System.Collections.Generic.List`1<Valve.Newtonsoft.Json.Serialization.SerializationCallback>
struct List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D;
// System.Collections.Generic.List`1<Valve.Newtonsoft.Json.Serialization.SerializationErrorCallback>
struct List_1_t3146B8EA2F3BD8E6B4682F880C8713B77D27EC6D;
// System.Collections.IDictionary
struct IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7;
// System.Collections.IEnumerator
struct IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A;
// System.Collections.IEqualityComparer
struct IEqualityComparer_t3102D0F5BABD60224F6DFF4815BCA1045831FB7C;
// System.Collections.IList
struct IList_tA637AB426E16F84F84ACC2813BDCF3A0414AF0AA;
// System.Collections.ObjectModel.Collection`1<System.Object>
struct Collection_1_t71DBDD60829CD647D0C2B74C708518E5CAEDB942;
// System.Collections.ObjectModel.Collection`1<Valve.Newtonsoft.Json.Linq.JToken>
struct Collection_1_tE93A51FAD5C6E4AC1EA698A55BAC243AF37645E8;
// System.ComponentModel.DefaultValueAttribute
struct DefaultValueAttribute_t03B1F51B35271D50779D31234C9C6845BC9626EC;
// System.ComponentModel.PropertyChangedEventArgs
struct PropertyChangedEventArgs_t90CF85B82F87D594F73F03364494C77592B11F46;
// System.ComponentModel.PropertyChangedEventHandler
struct PropertyChangedEventHandler_t617E98E1876A8EB394D2B329340CE02D21FFFC82;
// System.ComponentModel.TypeConverter
struct TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB;
// 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.EventHandler
struct EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C;
// System.EventHandler`1<System.Runtime.ExceptionServices.FirstChanceExceptionEventArgs>
struct EventHandler_1_t1E35ED2E29145994C6C03E57601C6D48C61083FF;
// System.EventHandler`1<Valve.Newtonsoft.Json.Serialization.ErrorEventArgs>
struct EventHandler_1_t9FDC532948E51E57762946306812505DCBFBB21E;
// System.Exception
struct Exception_t;
// System.Func`1<System.Object>
struct Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386;
// System.Func`1<Valve.Newtonsoft.Json.JsonSerializerSettings>
struct Func_1_t3CEBF86E0635EABFE16B2FB2AE427AFF966C1E62;
// System.Func`2<System.Object,System.Boolean>
struct Func_2_t7EE965B791A606D187CCB69569A433D4CBB36879;
// System.Func`2<System.Object,System.Collections.Generic.IEnumerable`1<System.Object>>
struct Func_2_t312750ADAF4ADF4BDF5BFE7AD89753C25B90D66C;
// System.Func`2<System.Object,System.Int32>
struct Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6;
// System.Func`2<System.Object,System.Object>
struct Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4;
// System.Func`2<System.Reflection.ConstructorInfo,System.Boolean>
struct Func_2_tE50BC1D78F3969472F5276AA4812403240D166E3;
// System.Func`2<System.Reflection.MemberInfo,System.Boolean>
struct Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422;
// System.Func`2<System.String,System.String>
struct Func_2_tD9EBF5FAD46B4F561FE5ABE814DC60E6253B8B96;
// System.Func`2<System.Type,System.Collections.Generic.IEnumerable`1<System.Reflection.MemberInfo>>
struct Func_2_t29F202ACCD37C598BCE6BF369E5B1493D173132A;
// System.Func`2<Valve.Newtonsoft.Json.Serialization.DefaultSerializationBinder/TypeNameKey,System.Object>
struct Func_2_tE5701C2289C2DE5C70D801898DAB7305A6A10ABD;
// System.Func`2<Valve.Newtonsoft.Json.Serialization.DefaultSerializationBinder/TypeNameKey,System.Type>
struct Func_2_t613802803AE53BB465170B4BCAD06EC8EEE8FC0D;
// System.Func`2<Valve.Newtonsoft.Json.Serialization.JsonProperty,System.Int32>
struct Func_2_t1659F01642289131579A99DC37C5A348E7091892;
// System.Globalization.Calendar
struct Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5;
// 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.IO.StringWriter
struct StringWriter_t194EF1526E072B93984370042AA80926C2EB6139;
// System.IO.TextWriter
struct TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0;
// System.Int32Enum[]
struct Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A;
// System.Int32[]
struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83;
// System.IntPtr[]
struct IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD;
// System.InvalidOperationException
struct InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1;
// System.Linq.IOrderedEnumerable`1<System.Object>
struct IOrderedEnumerable_1_t00E89C1FE0C955071CD934EFA3783E5DF9613CD3;
// System.Linq.IOrderedEnumerable`1<Valve.Newtonsoft.Json.Serialization.JsonProperty>
struct IOrderedEnumerable_1_t36ECC945978F0DE244DF4D3D26BADED83779862F;
// System.NonSerializedAttribute
struct NonSerializedAttribute_t1D1C4A9662B6C2FAC28237FCDFA49FA4747BC3BA;
// System.NotImplementedException
struct NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4;
// System.NotSupportedException
struct NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010;
// System.Object[]
struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A;
// System.Predicate`1<System.Object>
struct Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979;
// System.Reflection.Assembly
struct Assembly_t;
// System.Reflection.Assembly/ResolveEventHolder
struct ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E;
// System.Reflection.Assembly[]
struct AssemblyU5BU5D_t90BF014AA048450526A42C74F9583341A138DE58;
// System.Reflection.Binder
struct Binder_t4D5CB06963501D32847C057B57157D6DC49CA759;
// System.Reflection.ConstructorInfo
struct ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF;
// System.Reflection.ConstructorInfo[]
struct ConstructorInfoU5BU5D_t111EE7D53C51A47FE69FC3398DE007F7E100593E;
// System.Reflection.FieldInfo
struct FieldInfo_t;
// System.Reflection.MemberFilter
struct MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381;
// System.Reflection.MemberInfo
struct MemberInfo_t;
// System.Reflection.MemberInfo[]
struct MemberInfoU5BU5D_t6A57DDAF4E5321D22FB4C021559637EB126BF6B6;
// System.Reflection.MethodBase
struct MethodBase_t;
// System.Reflection.MethodInfo
struct MethodInfo_t;
// System.Reflection.ParameterInfo
struct ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB;
// System.Reflection.ParameterInfo[]
struct ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694;
// System.Reflection.ParameterModifier[]
struct ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA;
// System.Reflection.PropertyInfo
struct PropertyInfo_t;
// System.ResolveEventHandler
struct ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5;
// System.Runtime.InteropServices.MarshalAsAttribute
struct MarshalAsAttribute_t1F5CB9960D7AD6C3305475C98A397BD0B9C64020;
// System.Runtime.Serialization.DataContractAttribute
struct DataContractAttribute_tAD58D5877BD04EADB56BB4AEDDE342C73F032FC5;
// System.Runtime.Serialization.DataMemberAttribute
struct DataMemberAttribute_tC865433FEC93FFD46D6F3E4BB28F262C9EE40525;
// System.Runtime.Serialization.SafeSerializationManager
struct SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770;
// System.Runtime.Serialization.SerializationBinder
struct SerializationBinder_tB5EBAF328371FB7CF23E37F5984D8412762CFFA4;
// System.Security.Cryptography.RandomNumberGenerator
struct RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2;
// System.String
struct String_t;
// System.StringComparer
struct StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE;
// System.String[]
struct StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E;
// System.Text.StringBuilder
struct StringBuilder_t;
// System.Type
struct Type_t;
// System.Type[]
struct TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F;
// System.UInt32[]
struct UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB;
// System.UnhandledExceptionEventHandler
struct UnhandledExceptionEventHandler_tB0DFF05ABF7A3A234C87D4F7A71F98E9AB2D91DE;
// System.Uri
struct Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E;
// System.Uri/UriInfo
struct UriInfo_t9FCC6BD4EC1EA14D75209E6A35417057BF6EDC5E;
// System.UriParser
struct UriParser_t07C77D673CCE8D2DA253B8A7ACCB010147F1A4AC;
// System.Void
struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017;
// Valve.Newtonsoft.Json.Converters.BinaryConverter
struct BinaryConverter_t03DC719B247B4C2889C9D314434AF1BC491EFF57;
// Valve.Newtonsoft.Json.Converters.BsonObjectIdConverter
struct BsonObjectIdConverter_t93B9311C1D401CC4ADD6C3FE3D8E8A17FD1B13BE;
// Valve.Newtonsoft.Json.Converters.KeyValuePairConverter
struct KeyValuePairConverter_t623AF45824C80A791AEE4381012644750CEC9FF9;
// Valve.Newtonsoft.Json.Converters.RegexConverter
struct RegexConverter_t732C85CCD56E0511E2154E9E284FD426FB467882;
// Valve.Newtonsoft.Json.IArrayPool`1<System.Char>
struct IArrayPool_1_t07876A3F5BF5D0EFFEB649A0458AC84359FDC5A9;
// Valve.Newtonsoft.Json.IJsonLineInfo
struct IJsonLineInfo_t7E81AAC43FB40592D509A17DBF8FAABAAE6AC29D;
// Valve.Newtonsoft.Json.JsonContainerAttribute
struct JsonContainerAttribute_t4E39F1E5EA66CF61E90C47C81929BE4A853A2DF3;
// Valve.Newtonsoft.Json.JsonConverter
struct JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595;
// Valve.Newtonsoft.Json.JsonConverterCollection
struct JsonConverterCollection_t6A37EB366CB43AF8A0215C81C1782825DE816706;
// Valve.Newtonsoft.Json.JsonConverter[]
struct JsonConverterU5BU5D_tFCEA4D4687200F08D8F41AFF4CDC7EE5E08AACAB;
// Valve.Newtonsoft.Json.JsonException
struct JsonException_tB1AABB3C8AE18D781A8A9A14CB03AF7AFEA33928;
// Valve.Newtonsoft.Json.JsonExtensionDataAttribute
struct JsonExtensionDataAttribute_tC858B08E1ACE700629982E390F2FDA7A0580C208;
// Valve.Newtonsoft.Json.JsonIgnoreAttribute
struct JsonIgnoreAttribute_t3BE833571932FA661098014E11BECC2E8D61A95C;
// Valve.Newtonsoft.Json.JsonObjectAttribute
struct JsonObjectAttribute_tBFAF1467CED5A13D2048CF8E61AEEEC05413CC62;
// Valve.Newtonsoft.Json.JsonPosition[]
struct JsonPositionU5BU5D_t53729DD3EACECD9DE687A8F81A09F4A0767CB8A8;
// Valve.Newtonsoft.Json.JsonPropertyAttribute
struct JsonPropertyAttribute_tD66B9C74F3201FFAF7A16DB84AEA31FE8F02ED5F;
// Valve.Newtonsoft.Json.JsonReader
struct JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C;
// Valve.Newtonsoft.Json.JsonReaderException
struct JsonReaderException_t1C6240BBE2D8125B80F7E72F0EE572194B3263DC;
// Valve.Newtonsoft.Json.JsonRequiredAttribute
struct JsonRequiredAttribute_t9DE102747DCD1EBD135D2545271F6E894CEA77AB;
// Valve.Newtonsoft.Json.JsonSerializationException
struct JsonSerializationException_t041C510BA8DF91FD223402E73A4E55EC1B12E902;
// Valve.Newtonsoft.Json.JsonSerializer
struct JsonSerializer_t1D5D385AB5641E8958FC0E6ECB498B4DC45BC4D4;
// Valve.Newtonsoft.Json.JsonSerializerSettings
struct JsonSerializerSettings_tE8D88D84C389D05A39A2A9A3CC6497538AF10366;
// Valve.Newtonsoft.Json.JsonTextWriter
struct JsonTextWriter_t56407EC76E70ABAD12ED7BF65BCF353E98D18FC6;
// Valve.Newtonsoft.Json.JsonWriter
struct JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E;
// Valve.Newtonsoft.Json.JsonWriter/State[][]
struct StateU5BU5DU5BU5D_t52D9F9EA6D3AB3D8FB1F5DD83A2D197A7E9D98DC;
// Valve.Newtonsoft.Json.Linq.JArray
struct JArray_t8AE8A8AB34EFB9A770BC34AB9EA47BE9DC7F45C2;
// Valve.Newtonsoft.Json.Linq.JConstructor
struct JConstructor_t31B236A37CEC95856D10CB7C3F276D6C4CA0B26B;
// Valve.Newtonsoft.Json.Linq.JContainer
struct JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC;
// Valve.Newtonsoft.Json.Linq.JObject
struct JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21;
// Valve.Newtonsoft.Json.Linq.JObject/<GetEnumerator>d__55
struct U3CGetEnumeratorU3Ed__55_tAF5C1853556CCCC9CEF660623C26BDD211A03777;
// Valve.Newtonsoft.Json.Linq.JProperty
struct JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF;
// Valve.Newtonsoft.Json.Linq.JProperty/JPropertyList
struct JPropertyList_t134608E64E62337A93C6668B1266F077ABBA87A7;
// Valve.Newtonsoft.Json.Linq.JProperty/JPropertyList/<GetEnumerator>d__1
struct U3CGetEnumeratorU3Ed__1_tC1FEADB7666AE584966BE3173BB361B41F66278B;
// Valve.Newtonsoft.Json.Linq.JPropertyKeyedCollection
struct JPropertyKeyedCollection_t9EEDCB4FA22748C56AC9E4CD74AAA26F9D54A668;
// Valve.Newtonsoft.Json.Linq.JRaw
struct JRaw_tEA065B3ED6F70E2FA12CA996B102A3FD16330C86;
// Valve.Newtonsoft.Json.Linq.JToken
struct JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2;
// Valve.Newtonsoft.Json.Linq.JToken/LineInfoAnnotation
struct LineInfoAnnotation_tC3E34194A1BD45715FC51B0CBEE0ECD100E90D38;
// Valve.Newtonsoft.Json.Linq.JTokenReader
struct JTokenReader_tE3C9B85315EFF6B3CB0796451D8278F1372C6530;
// Valve.Newtonsoft.Json.Linq.JTokenType[]
struct JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B;
// Valve.Newtonsoft.Json.Linq.JTokenWriter
struct JTokenWriter_t96B1E9B675DE7CD27F8339C82B785C254918BCEF;
// Valve.Newtonsoft.Json.Linq.JToken[]
struct JTokenU5BU5D_t4E50BA12BFD33E2099BB21C26BC05B63AE096327;
// Valve.Newtonsoft.Json.Linq.JValue
struct JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3;
// Valve.Newtonsoft.Json.Linq.JsonLoadSettings
struct JsonLoadSettings_tB5261F5FE452665393A12B96A793FE21DF91D45A;
// Valve.Newtonsoft.Json.Serialization.DefaultContractResolver
struct DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0;
// Valve.Newtonsoft.Json.Serialization.DefaultContractResolver/<>c
struct U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A;
// Valve.Newtonsoft.Json.Serialization.DefaultContractResolver/<>c__DisplayClass38_0
struct U3CU3Ec__DisplayClass38_0_t31ED35E7ECFD78ECE1228AF29488F148585F4667;
// Valve.Newtonsoft.Json.Serialization.DefaultContractResolver/<>c__DisplayClass38_1
struct U3CU3Ec__DisplayClass38_1_tEB927264D5D83E106F29B33B1F933603E793D80E;
// Valve.Newtonsoft.Json.Serialization.DefaultContractResolver/<>c__DisplayClass38_2
struct U3CU3Ec__DisplayClass38_2_t8AE307029E0A48708782194185E7E43CE1EAAD60;
// Valve.Newtonsoft.Json.Serialization.DefaultContractResolver/<>c__DisplayClass52_0
struct U3CU3Ec__DisplayClass52_0_t5662E89E4E0071A8350BC73F90FAA92457EC2F91;
// Valve.Newtonsoft.Json.Serialization.DefaultContractResolver/<>c__DisplayClass68_0
struct U3CU3Ec__DisplayClass68_0_t1E454C6A98ED08013AAE420DD137F8DC23C918B3;
// Valve.Newtonsoft.Json.Serialization.DefaultContractResolver/<>c__DisplayClass69_0
struct U3CU3Ec__DisplayClass69_0_tF21BC3EDD90BFA18331A484ECF156E30EF474FCA;
// Valve.Newtonsoft.Json.Serialization.DefaultContractResolverState
struct DefaultContractResolverState_t8B0D63DB1C8B5BA14A03ADBEF0EA1141B8604DE6;
// Valve.Newtonsoft.Json.Serialization.DefaultReferenceResolver
struct DefaultReferenceResolver_t1313CA0D668FADF15BF2ACA61C526B6FED83C977;
// Valve.Newtonsoft.Json.Serialization.DefaultSerializationBinder
struct DefaultSerializationBinder_t920F0511A88D51A0CCDFDCB3C8F0E12CEDB5F3E3;
// Valve.Newtonsoft.Json.Serialization.ErrorContext
struct ErrorContext_t61739A48B44A4707051088E7013FD4E347DBE7A0;
// Valve.Newtonsoft.Json.Serialization.ErrorEventArgs
struct ErrorEventArgs_tB0943D7E08A6FA558FC6C2E534DFF2FC535FF298;
// Valve.Newtonsoft.Json.Serialization.ExtensionDataGetter
struct ExtensionDataGetter_t6CC1D4868317A6C03ADA77795B2563E77D993860;
// Valve.Newtonsoft.Json.Serialization.ExtensionDataSetter
struct ExtensionDataSetter_t887F53572558DF1949C2035B2EC92D39343FE586;
// Valve.Newtonsoft.Json.Serialization.IAttributeProvider
struct IAttributeProvider_tAD516237F1F22957240E85E67A449B043FC267EF;
// Valve.Newtonsoft.Json.Serialization.IContractResolver
struct IContractResolver_t0BD2718544D4B71A79A9B1F87FE1036C61610DF8;
// Valve.Newtonsoft.Json.Serialization.IReferenceResolver
struct IReferenceResolver_t697D0DB0D72AF26E16AB53D024E9DA911261377F;
// Valve.Newtonsoft.Json.Serialization.ITraceWriter
struct ITraceWriter_t4D58C23FB72670662E08CBCED54ED4CEF5BF06AC;
// Valve.Newtonsoft.Json.Serialization.IValueProvider
struct IValueProvider_t2AAD954741C13BBD1A61CC5FA5795CD8C44737B4;
// Valve.Newtonsoft.Json.Serialization.JsonArrayContract
struct JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751;
// Valve.Newtonsoft.Json.Serialization.JsonContainerContract
struct JsonContainerContract_tD54146B123969809E06196AE0C5BB3D6E9A679B9;
// Valve.Newtonsoft.Json.Serialization.JsonContract
struct JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141;
// Valve.Newtonsoft.Json.Serialization.JsonContract/<>c__DisplayClass73_0
struct U3CU3Ec__DisplayClass73_0_t10F98427038E7A3850E5C9CCA33A1494BA83E561;
// Valve.Newtonsoft.Json.Serialization.JsonContract/<>c__DisplayClass74_0
struct U3CU3Ec__DisplayClass74_0_tB49FD8A25B86AF68D3E126A7721C2B7F46F80A92;
// Valve.Newtonsoft.Json.Serialization.JsonDictionaryContract
struct JsonDictionaryContract_t7D39A549ABAEDA655A1140F78778D9B36692266C;
// Valve.Newtonsoft.Json.Serialization.JsonISerializableContract
struct JsonISerializableContract_tC390B7D7091FE7D26C0FE026BDB2DCA1D1E64AA0;
// Valve.Newtonsoft.Json.Serialization.JsonLinqContract
struct JsonLinqContract_t55453AE956FB1B39CD404E4ED22E563B434C1BED;
// Valve.Newtonsoft.Json.Serialization.JsonObjectContract
struct JsonObjectContract_tC08A0614773A277BE2FACD612729195811D606B5;
// Valve.Newtonsoft.Json.Serialization.JsonPrimitiveContract
struct JsonPrimitiveContract_t13E2CBC31714CB100233EB2014184B40973C2C84;
// Valve.Newtonsoft.Json.Serialization.JsonProperty
struct JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB;
// Valve.Newtonsoft.Json.Serialization.JsonPropertyCollection
struct JsonPropertyCollection_tC08CC5508836C9712A08DDE9E2BC413BD3A61715;
// Valve.Newtonsoft.Json.Serialization.JsonProperty[]
struct JsonPropertyU5BU5D_t5AAA8E1D6569AE26F59C16867602BA8754878232;
// Valve.Newtonsoft.Json.Serialization.JsonSerializerInternalBase
struct JsonSerializerInternalBase_t10636B4A3D430A7F6597EF873C98E30894ACF1F7;
// Valve.Newtonsoft.Json.Serialization.JsonSerializerInternalReader
struct JsonSerializerInternalReader_t1A72A0900D1B4E88BDB92687DA140B371979018A;
// Valve.Newtonsoft.Json.Serialization.JsonSerializerInternalWriter
struct JsonSerializerInternalWriter_tFC41B1098B36AA0C70654DDE4F15F387ED712EDA;
// Valve.Newtonsoft.Json.Serialization.JsonSerializerProxy
struct JsonSerializerProxy_t087EA4189F71D7BC8479FB15347611106FC05276;
// Valve.Newtonsoft.Json.Serialization.JsonStringContract
struct JsonStringContract_tCBC48935FDB85CACCA24D751235BCCDA72F91299;
// Valve.Newtonsoft.Json.Serialization.NamingStrategy
struct NamingStrategy_tBB6F8138B49E9B2704F7B87BF9130378976B9B46;
// Valve.Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object>
struct ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3;
// Valve.Newtonsoft.Json.Serialization.ReflectionAttributeProvider
struct ReflectionAttributeProvider_tD14E62C7D2A1AA1792C9F45D337EC431D30DD7F8;
// Valve.Newtonsoft.Json.Serialization.ReflectionValueProvider
struct ReflectionValueProvider_t8149E2427D8DED5E2B15B0F80E8C6CFE4C710A26;
// Valve.Newtonsoft.Json.Serialization.SerializationCallback
struct SerializationCallback_t8B5297123C8DFAD6A6701E2F2046982E13CE1B9C;
// Valve.Newtonsoft.Json.Serialization.SerializationCallback[]
struct SerializationCallbackU5BU5D_t217E955E9B562ECEEAB9BDEE6D6651976F81CAB9;
// Valve.Newtonsoft.Json.Serialization.SerializationErrorCallback
struct SerializationErrorCallback_t6EAECB0A4E241F49CA0D2A29EFCF4DCDDC9884B2;
// Valve.Newtonsoft.Json.Serialization.SerializationErrorCallback[]
struct SerializationErrorCallbackU5BU5D_tE012D93D39CDB9D64CAC0C9E0F980D45722A28BB;
// Valve.Newtonsoft.Json.Utilities.Base64Encoder
struct Base64Encoder_tEF7BE63485AB4A008FE9C6B448BAB5E9EBF7F21F;
// Valve.Newtonsoft.Json.Utilities.BidirectionalDictionary`2<System.Object,System.Object>
struct BidirectionalDictionary_2_t76DD1D29B83082CBD7E1DCFFCDB31D713706305F;
// Valve.Newtonsoft.Json.Utilities.BidirectionalDictionary`2<System.String,System.Object>
struct BidirectionalDictionary_2_t099435761F49B07DBF2BBA49D1D2D6865002A8D5;
// Valve.Newtonsoft.Json.Utilities.IWrappedCollection
struct IWrappedCollection_t5343C968B746DD56FC5E1F96CF8FA4AA683CEC55;
// Valve.Newtonsoft.Json.Utilities.IWrappedDictionary
struct IWrappedDictionary_t2B08E1502999DD6B4187B541498A8FE24051B4FD;
// Valve.Newtonsoft.Json.Utilities.MethodCall`2<System.Object,System.Object>
struct MethodCall_2_t56986CA125FFF5F08B7842782AF0C0E8499096EC;
// Valve.Newtonsoft.Json.Utilities.PropertyNameTable
struct PropertyNameTable_t09D6FC2871D681080545544521201A5726C6610D;
// Valve.Newtonsoft.Json.Utilities.PropertyNameTable/Entry[]
struct EntryU5BU5D_t9AEBE2A6844899FD8BFEDF07BD53FB212EB08E32;
// Valve.Newtonsoft.Json.Utilities.ReflectionDelegateFactory
struct ReflectionDelegateFactory_t87E79CD61C3504844C338EEC1949177370F2029A;
// Valve.Newtonsoft.Json.Utilities.ReflectionObject
struct ReflectionObject_t95CE0EEC27D4251A6F4778D26E57AC8072C6C8F5;
// Valve.Newtonsoft.Json.Utilities.ThreadSafeStore`2<System.Type,Valve.Newtonsoft.Json.Utilities.ReflectionObject>
struct ThreadSafeStore_2_tDBF880F3EC7F9428C77DC19AF731FE33E3CB7B2D;
// Valve.Newtonsoft.Json.Utilities.ThreadSafeStore`2<Valve.Newtonsoft.Json.Serialization.DefaultSerializationBinder/TypeNameKey,System.Object>
struct ThreadSafeStore_2_tD81F450F1E882CA01ABD9599FE3AD28E8E39532E;
// Valve.Newtonsoft.Json.Utilities.ThreadSafeStore`2<Valve.Newtonsoft.Json.Serialization.DefaultSerializationBinder/TypeNameKey,System.Type>
struct ThreadSafeStore_2_t4514B8E56056BAF0F4C62DC3FE61190B6C7A83F7;
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* BinaryConverter_t03DC719B247B4C2889C9D314434AF1BC491EFF57_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Boolean_tB53F6830F670160873277339AA58F15CAED4399C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* BsonObjectIdConverter_t93B9311C1D401CC4ADD6C3FE3D8E8A17FD1B13BE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ComponentConverter_tAFCE49784F59197CB5E92C8ED566B069D1A5766E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ConvertUtils_tC3DD9049164372FED28C737BA8BF739779E0E272_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DBNull_t7400E04939C2C29699B389B106997892BF53A8E5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DateTimeUtils_t2832B523538DBEDF8B2BAA01946B3D743F297F1C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DefaultContractResolverState_t8B0D63DB1C8B5BA14A03ADBEF0EA1141B8604DE6_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DefaultSerializationBinder_t920F0511A88D51A0CCDFDCB3C8F0E12CEDB5F3E3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t3B0A775E26AFCA1B3A8DF100D5CB736C522494F7_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t40E91C81D5ADA639FA8CD3CD9E4F8824FE177EB5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Exception_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ExtensionDataGetter_t6CC1D4868317A6C03ADA77795B2563E77D993860_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ExtensionDataSetter_t887F53572558DF1949C2035B2EC92D39343FE586_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* FieldInfo_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Func_2_t1659F01642289131579A99DC37C5A348E7091892_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Func_2_t29F202ACCD37C598BCE6BF369E5B1493D173132A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Func_2_t613802803AE53BB465170B4BCAD06EC8EEE8FC0D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Func_2_tD9EBF5FAD46B4F561FE5ABE814DC60E6253B8B96_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Func_2_tE50BC1D78F3969472F5276AA4812403240D166E3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Guid_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ICollection_1_t0EA00E24BE834F4965DA6E7B42EDAFD65F335AB5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ICollection_1_t2B4BA8E42280135B4F62515C9A1DC40EEF92D1D0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IDictionary_2_t76019BBF4DE2FADC5A16985EB663963F838CFCB9_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* IEnumerable_1_t00C11E28587644E33CB7F154833508D63BFAC5B2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerable_1_t060AF8C2D7B1984BA0AD638BA3C871F299F37B3A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerable_1_t3E8B8FEE3B042CD89587380EE146ECB060C71162_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerable_1_t67A64F85CBC01753DA6881E79C56C256F7FE2211_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerator_1_t184887DC60B93E8523EA83831B79DF1202357606_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerator_1_t760B2B6FE3C83D69321965058557E91D277BCB89_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerator_1_tDC9E800425EFE4DEEBAB153A333E0E385FE9C771_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEqualityComparer_1_t1F07EAC22CC1D4F279164B144240E4718BD7E7A9_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IFormattable_t58E0883927AD7B9E881837942BD4FA2E7D8330C0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IJsonLineInfo_t7E81AAC43FB40592D509A17DBF8FAABAAE6AC29D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IList_1_tB721E43B6FEF3D0C130DB8082B4D6DD600D5FF3E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IList_1_tD0A73252EB025BC5ABDD8D9259A4BB17D94D5882_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IList_tA637AB426E16F84F84ACC2813BDCF3A0414AF0AA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IWrappedCollection_t5343C968B746DD56FC5E1F96CF8FA4AA683CEC55_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IWrappedDictionary_t2B08E1502999DD6B4187B541498A8FE24051B4FD_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JArray_t8AE8A8AB34EFB9A770BC34AB9EA47BE9DC7F45C2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JConstructor_t31B236A37CEC95856D10CB7C3F276D6C4CA0B26B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JEnumerable_1_t8D29AB2A452946C954DC038C163C500CD83ACEF1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JPropertyKeyedCollection_t9EEDCB4FA22748C56AC9E4CD74AAA26F9D54A668_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JPropertyList_t134608E64E62337A93C6668B1266F077ABBA87A7_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JRaw_tEA065B3ED6F70E2FA12CA996B102A3FD16330C86_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JTokenReader_tE3C9B85315EFF6B3CB0796451D8278F1372C6530_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JTokenType_t43765D0A61D4F44B41AA73D201C761E37F4DDDAD_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JsonArrayAttribute_t609984D834AAFFAA816EEE2AFF222F4A49815F8D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JsonConvert_t57930AECB47BF08A72A9CF1CCC7547869F91857D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JsonConverterU5BU5D_tFCEA4D4687200F08D8F41AFF4CDC7EE5E08AACAB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JsonDictionaryAttribute_tFB78E6CDFB0FC45A05E03DD5201A04D848CF3BE1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JsonDictionaryContract_t7D39A549ABAEDA655A1140F78778D9B36692266C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JsonException_tB1AABB3C8AE18D781A8A9A14CB03AF7AFEA33928_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JsonISerializableContract_tC390B7D7091FE7D26C0FE026BDB2DCA1D1E64AA0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JsonLinqContract_t55453AE956FB1B39CD404E4ED22E563B434C1BED_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JsonObjectAttribute_tBFAF1467CED5A13D2048CF8E61AEEEC05413CC62_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JsonObjectContract_tC08A0614773A277BE2FACD612729195811D606B5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JsonPosition_t6ED67A82A34F185D91B222CCC7CBF5E83CF9F422_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JsonPrimitiveContract_t13E2CBC31714CB100233EB2014184B40973C2C84_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JsonPropertyCollection_tC08CC5508836C9712A08DDE9E2BC413BD3A61715_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JsonSerializationException_t041C510BA8DF91FD223402E73A4E55EC1B12E902_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JsonSerializerInternalBase_t10636B4A3D430A7F6597EF873C98E30894ACF1F7_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JsonSerializerProxy_t087EA4189F71D7BC8479FB15347611106FC05276_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JsonStringContract_tCBC48935FDB85CACCA24D751235BCCDA72F91299_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JsonTextWriter_t56407EC76E70ABAD12ED7BF65BCF353E98D18FC6_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JsonToken_t0C71FBC985C653C19D3A1CA63373FC84B6F13406_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JsonTypeReflector_tC161A1BF2506AB16B738C3935C2691A92B7A8C55_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* KeyValuePairConverter_t623AF45824C80A791AEE4381012644750CEC9FF9_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* KeyValuePair_2_t12EC1C8B4977DCEE8CF178DACA28A94CA2A77BCA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* LineInfoAnnotation_tC3E34194A1BD45715FC51B0CBEE0ECD100E90D38_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t1FE4F7D4C3DCC24F3D8A78270F707A3AD8614891_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t3146B8EA2F3BD8E6B4682F880C8713B77D27EC6D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t610995BF9B0DCC99DF41C7D0D54AA44EF8552AE9_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_tB300EBCDF85B082F12B483D22C5C8070412F6C76_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* MemberInfo_t_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* Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Nullable_1_t2F4FA162D87EDE69C4CAA5E3E739CB702A780EAE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Nullable_1_t3290384E361396B3724B88B498CBF637D7E87B78_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Nullable_1_t6DD1091F06288053C77A1E21CDA46B9FC0C082FE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Nullable_1_t8A84BC5F3B3D55B8E96E9B812BDCCCB962EB2AB5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Nullable_1_t980A9BF956626264580BF8B4E1E3DBD88D9337C1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Nullable_1_t98453FD73999D83935C31555C4C67329F550B15D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Nullable_1_tA5F97AD8281B6EDEE6731D95047BA50C9996309E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Nullable_1_tB4C4F9557481ABDC6DFB4E6C55B481A29DDCC299_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Nullable_1_tBFE8022F4FD60FAE6E29634776F92F0C7DDF0ECF_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Nullable_1_tD63596AAA40EDF5AE4981F1C2B4F3A8A24E1DD67_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Nullable_1_tE6DB2821D06FC32375C83F1A7E8AFF51557CE14B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Nullable_1_tEB9036CD852DD7DCDAC49BEEC424155F285C4FD6_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Nullable_1_tF0BF09F44075092EA142C4F8348486254518EEA0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Nullable_1_tF156B0EB96E1F21CE812F1DFC94779464E49DAF3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* PropertyChangedEventArgs_t90CF85B82F87D594F73F03364494C77592B11F46_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* PropertyChangedEventHandler_t617E98E1876A8EB394D2B329340CE02D21FFFC82_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* PropertyInfo_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* PropertyNameTable_t09D6FC2871D681080545544521201A5726C6610D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ReferenceConverter_t5080472EE999A1F00721E6C5C97013762C85C7E4_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ReflectionAttributeProvider_tD14E62C7D2A1AA1792C9F45D337EC431D30DD7F8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ReflectionUtils_t1845D588ADA15C351615E925042ECF790B622987_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ReflectionValueProvider_t8149E2427D8DED5E2B15B0F80E8C6CFE4C710A26_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RegexConverter_t732C85CCD56E0511E2154E9E284FD426FB467882_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RuntimeObject_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SerializationCallback_t8B5297123C8DFAD6A6701E2F2046982E13CE1B9C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SerializationErrorCallback_t6EAECB0A4E241F49CA0D2A29EFCF4DCDDC9884B2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* StringWriter_t194EF1526E072B93984370042AA80926C2EB6139_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* String_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ThreadSafeStore_2_t4514B8E56056BAF0F4C62DC3FE61190B6C7A83F7_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TypeNameKey_tF95DA6A58197B920C4D8C069E6543C6EEDA08312_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Type_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3CGetEnumeratorU3Ed__1_tC1FEADB7666AE584966BE3173BB361B41F66278B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3CGetEnumeratorU3Ed__55_tAF5C1853556CCCC9CEF660623C26BDD211A03777_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass38_0_t31ED35E7ECFD78ECE1228AF29488F148585F4667_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass38_1_tEB927264D5D83E106F29B33B1F933603E793D80E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass38_2_t8AE307029E0A48708782194185E7E43CE1EAAD60_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass52_0_t5662E89E4E0071A8350BC73F90FAA92457EC2F91_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass68_0_t1E454C6A98ED08013AAE420DD137F8DC23C918B3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass69_0_tF21BC3EDD90BFA18331A484ECF156E30EF474FCA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass73_0_t10F98427038E7A3850E5C9CCA33A1494BA83E561_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass74_0_tB49FD8A25B86AF68D3E126A7721C2B7F46F80A92_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UInt16_tAE45CEF73BF720100519F6867F32145D075F928E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C String_t* _stringLiteral05AFC91C2FD53968B9C5F6D20522BC27CDDA09D0;
IL2CPP_EXTERN_C String_t* _stringLiteral0C3F4828A3222F00EF9CD0D6CABAA6625BC20A41;
IL2CPP_EXTERN_C String_t* _stringLiteral0CE7AD1482EAEB3EE9A7A1F3A906DFE1859FADF1;
IL2CPP_EXTERN_C String_t* _stringLiteral18478BEDB130F28141C1D6D6CEA56CD52F4AAE08;
IL2CPP_EXTERN_C String_t* _stringLiteral193E7711CE74D1718FC06BF94353513E4BCB0846;
IL2CPP_EXTERN_C String_t* _stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25;
IL2CPP_EXTERN_C String_t* _stringLiteral24B55FE81E9E7B11798D3A4E4677DD48FFC81559;
IL2CPP_EXTERN_C String_t* _stringLiteral287963E3FCCA4558A1264C7711945B6152BA400E;
IL2CPP_EXTERN_C String_t* _stringLiteral295955804367B0833757D2848073AE42D5F933AE;
IL2CPP_EXTERN_C String_t* _stringLiteral2B6F36327A145273E103DDA2D72D8DF3D20FCF4F;
IL2CPP_EXTERN_C String_t* _stringLiteral2C70C37BF44AF34EE884C4B0FA16B26A3CD7F673;
IL2CPP_EXTERN_C String_t* _stringLiteral2DD194991856DAD5DA3C482286B6182FA7E03A00;
IL2CPP_EXTERN_C String_t* _stringLiteral2E76F544229901C5A942849EE61AC86BDA6E5609;
IL2CPP_EXTERN_C String_t* _stringLiteral34C0BB471C17BDDD180E0D3BA01D93C69BFAB659;
IL2CPP_EXTERN_C String_t* _stringLiteral3A52CE780950D4D969792A2559CD519D7EE8C727;
IL2CPP_EXTERN_C String_t* _stringLiteral3CF400BD525F5AAA80ED8C5E26863A2D874A5D77;
IL2CPP_EXTERN_C String_t* _stringLiteral3DEB7456519697ECF4EEFC455516C969A3681BAE;
IL2CPP_EXTERN_C String_t* _stringLiteral3FCACDE1D22CD4DF1B9EF0ED89079C31B4C13AA0;
IL2CPP_EXTERN_C String_t* _stringLiteral44D75688A122E519D6F828E409436273856F1BD1;
IL2CPP_EXTERN_C String_t* _stringLiteral46F5621FD8A440CF29AEEC4836EF23AC11B5603A;
IL2CPP_EXTERN_C String_t* _stringLiteral4BC5C9CF140A3B738987A573D35B75C2F44DDA06;
IL2CPP_EXTERN_C String_t* _stringLiteral5F255333BF86A320AF59411C1D4C877B154F5182;
IL2CPP_EXTERN_C String_t* _stringLiteral61CC55AA0453184734C3FA0B621EDA6FA874BD83;
IL2CPP_EXTERN_C String_t* _stringLiteral639012C89D3C30C1AB8D0BA57B99D88DF6369333;
IL2CPP_EXTERN_C String_t* _stringLiteral6621FDDBEA1FF968B3027E17236C09DAC3BE1064;
IL2CPP_EXTERN_C String_t* _stringLiteral6A351A5638FF9422495ACACDD7D1AF81A6D518ED;
IL2CPP_EXTERN_C String_t* _stringLiteral6AE0DC000F6B60F38EDA201D8AB189DAA8BDAE27;
IL2CPP_EXTERN_C String_t* _stringLiteral6AE999552A0D2DCA14D62E2BC8B764D377B1DD6C;
IL2CPP_EXTERN_C String_t* _stringLiteral6C78F1B60E71C02186DABD32E2331DA327CE2D12;
IL2CPP_EXTERN_C String_t* _stringLiteral6D3A703C6D4FBFE631CBD81FB9D114896F8F086E;
IL2CPP_EXTERN_C String_t* _stringLiteral71BE626854390279C8DE7ECCCFA7B9B42168F86B;
IL2CPP_EXTERN_C String_t* _stringLiteral772DAFBEC5630ADEBF0F95763318DCBAF1D20DCC;
IL2CPP_EXTERN_C String_t* _stringLiteral7A81AF3E591AC713F81EA1EFE93DCF36157D8376;
IL2CPP_EXTERN_C String_t* _stringLiteral7A977D91AB00FBA9BAC39F8F26EE71A5AA34AB77;
IL2CPP_EXTERN_C String_t* _stringLiteral7ACD99495C31B128E1A3063A9DA00E4F324DD3DA;
IL2CPP_EXTERN_C String_t* _stringLiteral7E9B7C8AA195C54BE4AE8AC72BB120621B42F2C6;
IL2CPP_EXTERN_C String_t* _stringLiteral8310F2366CA2AFFD63095A03857FA6BA75220A88;
IL2CPP_EXTERN_C String_t* _stringLiteral85313A75E9F1167080FBA00A88B7720140E4EE71;
IL2CPP_EXTERN_C String_t* _stringLiteral8585804C16B71BA222095EC678B9BD5911507C1B;
IL2CPP_EXTERN_C String_t* _stringLiteral87939A07EC897F0F2037D0189EA34F80015CA3CC;
IL2CPP_EXTERN_C String_t* _stringLiteral8E8B0286F169892749E8F773C4DEA9E85E8F6F34;
IL2CPP_EXTERN_C String_t* _stringLiteral93BEA5CB42F89A1B142C898A8FBBB47B9AC5D4A8;
IL2CPP_EXTERN_C String_t* _stringLiteral9BF8C9F3359FADD5E5334EF76B7C1BD967F955BC;
IL2CPP_EXTERN_C String_t* _stringLiteral9C6091F85A2D152EC49625D16996AD476352D8AB;
IL2CPP_EXTERN_C String_t* _stringLiteralA135454A21FAF2B6651B797B9B42A6786FFD6EC5;
IL2CPP_EXTERN_C String_t* _stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE;
IL2CPP_EXTERN_C String_t* _stringLiteralA8EC779675B7B743128715CA048C1ACD687FADE0;
IL2CPP_EXTERN_C String_t* _stringLiteralAEE0600837AAB226A74581FAA002DA85ABD156B1;
IL2CPP_EXTERN_C String_t* _stringLiteralB1ADD154930F109C2BDFA7849F24552E1685AB98;
IL2CPP_EXTERN_C String_t* _stringLiteralB2B5A792BA9DE865B14E2F9F7A2C4570571316B8;
IL2CPP_EXTERN_C String_t* _stringLiteralB3FE7D3167A090771A7DFCBE12BCAD8A8E8CD660;
IL2CPP_EXTERN_C String_t* _stringLiteralB6E53B8990B143D1588433EF556BAE42F448E3E7;
IL2CPP_EXTERN_C String_t* _stringLiteralB868B2987C81465DF29B3BF546D3655F01B1FFD4;
IL2CPP_EXTERN_C String_t* _stringLiteralB8D3467DAF628599A0FE7A8E242A1CEF9A779A34;
IL2CPP_EXTERN_C String_t* _stringLiteralBAF34A2547265FEEA14708F8A1A89708432452A6;
IL2CPP_EXTERN_C String_t* _stringLiteralBB723ADBDFB4873118D18D055CB7EA1CA6B2815A;
IL2CPP_EXTERN_C String_t* _stringLiteralBBFB88C452F985FFC7EEE8CAF6797CCA1C11BB65;
IL2CPP_EXTERN_C String_t* _stringLiteralBF53DFA37AD6507D1881FF7E3333E19BAE917757;
IL2CPP_EXTERN_C String_t* _stringLiteralC538E2C770D6019AF5417BC48E03CD72E0EE0E3B;
IL2CPP_EXTERN_C String_t* _stringLiteralC7ED36DC0F774746DAA593B5BE527F4998B17913;
IL2CPP_EXTERN_C String_t* _stringLiteralCCC4444434FDD601EE1FAE51B28CC88E75C721BE;
IL2CPP_EXTERN_C String_t* _stringLiteralCE1335811BB5BCD032ADF4A8C918ECA33CB80885;
IL2CPP_EXTERN_C String_t* _stringLiteralCF820FA88EF10869FEFC4154B5F08774A408962D;
IL2CPP_EXTERN_C String_t* _stringLiteralD0A3E7F81A9885E99049D1CAE0336D269D5E47A9;
IL2CPP_EXTERN_C String_t* _stringLiteralD75B1BF63781ADBC5A93A0ACEDC482B359BE2C3A;
IL2CPP_EXTERN_C String_t* _stringLiteralD7D80F57447BD43A65E2159D7EBC8A94B41526A5;
IL2CPP_EXTERN_C String_t* _stringLiteralD989E8D089D0736DAFE20B6B317BEC84DDB96C9C;
IL2CPP_EXTERN_C String_t* _stringLiteralDA424AC680172C57265DA84D2769660125CB4546;
IL2CPP_EXTERN_C String_t* _stringLiteralDA4951CA6674AEEDC2F97B5C37DCF6FDFA4EDF6D;
IL2CPP_EXTERN_C String_t* _stringLiteralDEAEB26764551C6A022D74CF85AFD8F0BBF999D7;
IL2CPP_EXTERN_C String_t* _stringLiteralDEEBAAE3047CF6CBD5FB3318857D24264A676A4F;
IL2CPP_EXTERN_C String_t* _stringLiteralE1C5DF38EBC500A74B5F66D754DDF5CB66C9685F;
IL2CPP_EXTERN_C String_t* _stringLiteralE78418AC83FB0BDD11C77EBC39C5D2EC25FDB5DF;
IL2CPP_EXTERN_C String_t* _stringLiteralE787D38C5A0B8D3F0076CC31CB82C29C048671AB;
IL2CPP_EXTERN_C String_t* _stringLiteralEE977806D7286510DA8B9A7492BA58E2484C0ECC;
IL2CPP_EXTERN_C String_t* _stringLiteralEED859B39CC0D4DCC412651EADA940832FACA479;
IL2CPP_EXTERN_C String_t* _stringLiteralF2E23575AA15ED29EC76FB73B4E08DE11CCBCF74;
IL2CPP_EXTERN_C String_t* _stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5;
IL2CPP_EXTERN_C String_t* _stringLiteralF4AD080975AFD1170408E50758AAA9DDAF3E7771;
IL2CPP_EXTERN_C String_t* _stringLiteralF68763F54E7B6CD457783F62FE2C2A105A1AD9F4;
IL2CPP_EXTERN_C String_t* _stringLiteralFA5342C4F12AD1A860B71DA5AD002761768999C3;
IL2CPP_EXTERN_C String_t* _stringLiteralFF89F04D2BADD28D2F5441EF87D071138DB4A7D3;
IL2CPP_EXTERN_C const RuntimeMethod* Action_2_Invoke_m1738FFAE74BE5E599FD42520FA2BEF69D1AC4709_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_IndexOf_TisJTokenType_t43765D0A61D4F44B41AA73D201C761E37F4DDDAD_mA520CE43FA4D4479B47F64810CC997867FCA3823_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_Resize_TisRuntimeObject_mB0DBA075A9D1EE03ADE844755C17088FDC73B1EF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* BidirectionalDictionary_2_Set_m6D40E52AC98F507DEE615B3B7D92DD5152BB1FC5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* BidirectionalDictionary_2_TryGetByFirst_mE8659F15AC48DDC478256BAD844F1D8CFA9BCF91_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* BidirectionalDictionary_2_TryGetBySecond_m336D3CFE81BE67FFD3E78EB62766A2AF622E7A7A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* CollectionUtils_AddRange_TisJsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB_m7969A4E6532E739B4C49A481435E53FCFC7D8106_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* CollectionUtils_AddRange_TisMemberInfo_t_m4ED77C07EA82037D4B1BDF97ECD91F05B6BD05EB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* CollectionUtils_AddRange_TisSerializationCallback_t8B5297123C8DFAD6A6701E2F2046982E13CE1B9C_m369EBEC082C91131B8B81FDD3738D46ECCC73255_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* CollectionUtils_AddRange_TisSerializationErrorCallback_t6EAECB0A4E241F49CA0D2A29EFCF4DCDDC9884B2_m78618F6A6C93300D92B667693A50490272C01353_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* CollectionUtils_IndexOfReference_TisJToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_mE594989165E77E1DBF642A36960514AB8A8ECE39_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Collection_1_ClearItems_mCB99294ADE5F3E816455A1D6065314DCF59E8441_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Collection_1_GetEnumerator_m5EA56D38D8EE8ADBC32C0F009BBC6C4C5FC4CA95_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Collection_1_InsertItem_m5D953906118E75375B29BC0BC86344F5BBF17108_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Collection_1_RemoveItem_m63344A784362304AC7E63FB0A92D5483592880D1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Collection_1_SetItem_mC3BE48879B5DD38EF28EA5CB0A99BA62DF69EBAA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Collection_1__ctor_m42F90571DF5E7BEF7C89058C2D97F53401B48ADA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Collection_1_get_Count_mFBAF831BD2E005EC9C48277B8A772455C7BD7F98_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Collection_1_get_Item_m15DBFB0B2A8BBE8C7E7543FBF38F39E2F5FCDD68_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Collection_1_get_Items_m6513B3933A70CD2F3015EA2D86D807724ECC7855_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Comparer_1_get_Default_m5C03A395556B2D119E9A28F161C86E4B45946CD8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DefaultContractResolver_CreateArrayContract_mD9631F85DADC756921780A2F8A961636EA978F6B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DefaultContractResolver_CreateDictionaryContract_mD6B8AFF2ABC8B6B30E8DD58694EF47C7698E99BC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DefaultContractResolver_CreateProperties_m3DB71B70F84DB9631D029F93FFA8EF946328DEB2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DefaultContractResolver_GetAttributeConstructor_m7948A333399831BA741E4E498319B86A299DBC50_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DefaultContractResolver_IsValidCallback_m7CF3C3A4FCF267F4C459E71B2DCFA5722AD67728_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DefaultContractResolver_ResolveContract_m2CA8E8397A2F8C714868CC6DF468BDE0DAC92931_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DefaultContractResolver_ShouldSerializeEntityMember_m13222E0E263D4D58795BE5F0FDC09F7E53704B25_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DefaultReferenceResolver_GetMappings_m3D4025A129FB759AE3DCF61DD6A3F530D26EC8EF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DefaultSerializationBinder_GetTypeFromTypeNameKey_m8428569BCC26EE5A2443DA1EF261B9D730780AF2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Clear_mB3BCF9056485232023D77666585314524CA939F0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_ContainsKey_m46DAB166725A201739D8CFAD762065E32BC2332F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Remove_m18C9B6951739FD37B26D91F1C4AAD76841979CB8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_m44BA172B67C17DEDD31FC62AC8CC1749EE881B38_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_mF3EE7766A8B8DCD452A1665720F9E1003684D7AB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m823795218CD6E4A6E6024D6F34B7B5A8C9F301D8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_mB39AB93E460ACA277325DF69BE1252620D2CBF96_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_mD1ACF14CCF3813AFE70918E0FA42DBAFB51FB5DD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Keys_m1BA1B40A2CDEC15D25F9DE17D4B913B6D2C5039B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_set_Item_m37A4F5A4FF3E6E252E7D8A933760D916A692D8C9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_set_Item_mEAFCBE178160D90F6B1B13D32DC79EF10956C7B1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_First_TisConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF_m831AC1E4CE9601CF11E36159291087AD8EC0AB0D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_LastOrDefault_TisMemberInfo_t_mB68CF49DBC1516E24EABF9C6634563E8DBE6FD4D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_OrderBy_TisJsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m0374099EF3A8594F128850F4F1AD56E67EC77B8A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_SelectMany_TisType_t_TisMemberInfo_t_m4C2DC99E9641A40C5E24A32DB7895355A98ECA96_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_ToList_TisConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF_m911EC3D44A57E78BD6437D6928FBBE287F8489CC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_ToList_TisJsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB_m1866F9412D71C8EC4F3A2999FF445480DD8218AE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_ToList_TisMemberInfo_t_m7A213F8EE97FCD65CB42A50AB6108A97C365DCCF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_Where_TisConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF_mBF4A0E19D89AC541592A04F6D5D4CCBDC631F7AB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_Where_TisMemberInfo_t_m671B17003622EEB0584286D7B36E212C1279FAC3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m0D740B2062332CFA4AA69C3F1D45D5C834153AFC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m64BC59AA82A6589BCCB99B429CE347ECFDD67BDD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_mE9CDCD8C0406CFD21812928A31C5898C38218AB2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m4CBF49756F227E2743AC348A57E9CC6B0C8991E1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m5A102BF020B7804F89B69697EC3D0569F81A3205_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mC501C7889B13D4FBA7F68FA6F8A0B617290E5EC9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m24C9B51A40544679FAB4E3BCFDFB09765E223F51_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m479DA5158B45BF087D2F8DC029031FFF732A7B00_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_mDA529EA93697DB0544B90D07B18ED558B8DCC27F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Func_1_Invoke_m33E1702C6A8DBC8D2A39F4E9A1F5B14BEFAD9597_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Func_1__ctor_mE02699FC76D830943069F8FC19D16C3B72A98A1F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Func_2_Invoke_m552C133A8966B9ED91540130ACA9BD367212EED4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Func_2__ctor_m1809F02D50F82570E5658F35B318DD8259F2621F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Func_2__ctor_m58DDD084DBBB1A509257D8D2463AE5B269E9D979_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Func_2__ctor_m58F596FD3DEF4EA03042DB2653E77D81EF716B13_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Func_2__ctor_m679DF06801567BA8DB71ABE62D8B691F4E7A5902_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Func_2__ctor_mC276B952F432851DB174123FCF79CFABDF753BB0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Func_2__ctor_mFD031D4728B03AEA457A29E691DE1ACBA26C0FC9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JEnumerable_1_GetEnumerator_m97C1D763C5868F124F2E8E3EE917282F7B06C28C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JObject_Load_m2FC3E570F52E343E3B99668B1BA490E65656B1A4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JObject_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CSystem_StringU2CValve_Newtonsoft_Json_Linq_JTokenU3EU3E_CopyTo_m6B4FD36A3D23FA31F22C7F51FB687CD4AC5E4149_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JObject_System_Collections_Generic_IDictionaryU3CSystem_StringU2CValve_Newtonsoft_Json_Linq_JTokenU3E_get_Values_m9807B639E965C169F143CB3F9E7F9E5C2373B578_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JObject_ValidateToken_m914D161CDE482087CB8C7295232D10A83E1EF72F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JPropertyKeyedCollection_Contains_m9BB27B5F4B094F98E40DF0EAC64317EEDB446A5B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JProperty_ClearItems_mF937AD6D0AB373C6B775AC14A37C6DBEC42F0FFD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JProperty_GetItem_mF994E2CC66016E946B8B77FEE02E03000E38E66C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JProperty_InsertItem_m78BE061EAB61FE997A7F1DD9303641C3FA123171_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JProperty_Load_mDAD45AC264E953A8903F590A7ACC96A1C6F62FDF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JProperty_RemoveItemAt_mCB20DE864A5DDDC7F68F6EAC0105D5717AFA8774_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JProperty_RemoveItem_mB24C41E81A7456A7D13924F75D22BA93D5FC43C1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JProperty_SetItem_mB24AF712A535C283C2E195062D0EB24925AF3DF8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JTokenReader_GetEndToken_m8CDB32154BBCCE79A921137310EF0DA7179A21B0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JTokenReader_SetToken_m50E5A37B2D44D4A93F489DB38D72E924420912EF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JToken_AddAnnotation_m6697AE0A4D8A820A24CF3C5EFEB5994BE770886A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JToken_Annotation_TisLineInfoAnnotation_tC3E34194A1BD45715FC51B0CBEE0ECD100E90D38_m5039AE0C83BD134DB58678D6152CEDF67D8160CA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JToken_EnsureValue_m29697CE7680576BB6FBCBE36F876F9AF97384D85_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JToken_ReadFrom_m454A08E195A1697F3C7FA81E045AD7A7886A55D7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JToken_Remove_mF35E87978A3AA0EBAAC3BEDE0489BAF613EB0816_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JToken_Replace_mBD488D6D6B819F847C52F1FFC5205712C01438F6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JToken_ToObject_m25DE37D91924DB94B96FB2A86FD4CEEB0BE1878D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JToken_get_First_mACDC4C6067F17114CC17CCFB41F0590DD962F347_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JToken_get_Last_mDDE24270C3A42FFD753457D6BD49F7B58035263F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JToken_op_Explicit_m0170BD465F577BF1F4C284F9318550F3A59B7A6D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JToken_op_Explicit_m082F0E38845FD5F318438D29D7A41D8B278030A8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JToken_op_Explicit_m0E3D752E4AC01EC03E0C471F25E928CF84C70F4D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JToken_op_Explicit_m192E38F83BDA627DA2F67D6E8E556C7E8BCFFC0E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JToken_op_Explicit_m1E9A9C48AA45CF496362D8EC2C8C710289691F4C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JToken_op_Explicit_m228743A6F7AA8F1211038881F0200B154F65E4BD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JToken_op_Explicit_m3B70105D407BAD5D01D511E04215FB146ED1C8EF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JToken_op_Explicit_m3FB97A54D97040485003B7DB9259575E91486DDD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JToken_op_Explicit_m41462F6ED4A9D06149285D2ECD7925155A64480E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JToken_op_Explicit_m416851C04EED574BB38FBA7B22993342FB2BF71C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JToken_op_Explicit_m4A902F230BF538F167115B997338C4C62E000B5A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JToken_op_Explicit_m4B2C0E17D59DD2C8C1FF029F40761CBC3F5F997C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JToken_op_Explicit_m4C5743281B40CA02B835681A3F7D032B09E54740_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JToken_op_Explicit_m5623B70899025B395BF68890057E8827DFC09062_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JToken_op_Explicit_m605A541AE39FC83BA1CD7075873845888F231016_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JToken_op_Explicit_m60AD9B22AC43C9483A4EC736E8B08DBB098144E9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JToken_op_Explicit_m6246D2129AAA644B0F738E37B7D8EE0C72174C88_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JToken_op_Explicit_m6E58E8AE940056709C57FCA1BD9E9F8ABF029827_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JToken_op_Explicit_m7742F5054343B22E5355351816390A528A303074_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JToken_op_Explicit_m7BA83EAF9DB15A8ECAFD5DC5D7E80EE34845090A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JToken_op_Explicit_m7ED97B5A92E6F2DABB2C58A8E96280683F1294DE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JToken_op_Explicit_m82C9797D6694CAD60E2D8C75CE6651DFA5EFF498_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JToken_op_Explicit_m8315F88547897B494F2FAD9E6F9B9F9BE12106CE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JToken_op_Explicit_m8A71CA7343DDFE91A7EF435556490C67237B6730_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JToken_op_Explicit_m8BE4447D408B52AB5B4C347699BCA9CE5F5C8561_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JToken_op_Explicit_m8E6B7E51C03E9438547FBAEDEDDD6B53817D68F0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JToken_op_Explicit_m96FDA8D285EF8DE68D836B9F923CBF88862B3112_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JToken_op_Explicit_mA3627E69282A828ABE2FF505D43B887C1E54CC6F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JToken_op_Explicit_mAB7E763BA2CB33D56DFFBB8A5E83F4670B2805A1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JToken_op_Explicit_mC0182FB7BB4A0132464F0AD3CA2FE73B2737260F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JToken_op_Explicit_mC85A803929686E2746F451B17F94D9C381941970_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JToken_op_Explicit_mC85D8549261D1AA45EDA536128EB37846421DFFE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JToken_op_Explicit_mDFB2FFD5BE9B8D15EA977A3B679B3D1FD38E9C1E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JToken_op_Explicit_mE90FD8213A2770ECA6B0E9628B2D614CAA8B68B1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JToken_op_Explicit_mFB7B71446CAF7B4C8B316D719C957D7379D8B45F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JToken_op_Explicit_mFB9585959C8EEC5EB76A6F32BD5BB46C970373BC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JValue_Compare_m9E45171FF4562ADE3112F1468C2E0DB9AAEBD9F8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JValue_GetValueType_mFEEF608B99EFB12602AD7C6D030BD8C260EB564D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JValue_WriteTo_mEC2A0D7445520E6306E474D80C771E0B18EB4755_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JsonObjectContract_GetUninitializedObject_m2AD70490AA404DD18B3D2CFDF1682C7432F51B7F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JsonTypeReflector_GetAttribute_TisDataMemberAttribute_tC865433FEC93FFD46D6F3E4BB28F262C9EE40525_mA823032711717A7EE0047E7DBA6F8FE2357353DE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JsonTypeReflector_GetAttribute_TisDefaultValueAttribute_t03B1F51B35271D50779D31234C9C6845BC9626EC_mF2558DD7F4609B1154C2ADC2DE8872B09E668438_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JsonTypeReflector_GetAttribute_TisJsonContainerAttribute_t4E39F1E5EA66CF61E90C47C81929BE4A853A2DF3_m286674358436D5DD111A8F1F6A1DC2B5118FE0FF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JsonTypeReflector_GetAttribute_TisJsonExtensionDataAttribute_tC858B08E1ACE700629982E390F2FDA7A0580C208_m03976BD7D7C735A7A5C5DD9177EAB582FCF8FC48_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JsonTypeReflector_GetAttribute_TisJsonIgnoreAttribute_t3BE833571932FA661098014E11BECC2E8D61A95C_mD8C1EAAAC6E76A9AA019795926EDCA6E82298DA6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JsonTypeReflector_GetAttribute_TisJsonPropertyAttribute_tD66B9C74F3201FFAF7A16DB84AEA31FE8F02ED5F_m627E8BDF71B670CB00F5311E19D499ECA1584EC6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JsonTypeReflector_GetAttribute_TisJsonRequiredAttribute_t9DE102747DCD1EBD135D2545271F6E894CEA77AB_m6CB9D398D41E25D413A96E896D10E11D27475B91_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JsonTypeReflector_GetAttribute_TisNonSerializedAttribute_t1D1C4A9662B6C2FAC28237FCDFA49FA4747BC3BA_m2CB45DAD4991DA08B67587FD0AD4F7B8FD66A9E9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JsonTypeReflector_GetCachedAttribute_TisJsonContainerAttribute_t4E39F1E5EA66CF61E90C47C81929BE4A853A2DF3_m65FBB7F4C33DB203411378AD9097CC81AACBF7EC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* JsonTypeReflector_GetCachedAttribute_TisJsonObjectAttribute_tBFAF1467CED5A13D2048CF8E61AEEEC05413CC62_mFFBA00B0579B6472C115CA65EB4EDCA60AF54A10_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* KeyValuePair_2__ctor_mF3F60729C52A21BEFF75A44C41F46B3081B48BC1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* KeyValuePair_2_get_Key_m45BFA059E51F33E95AF197929A0137E9D6259472_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* KeyValuePair_2_get_Value_m9489FE438F11E13960A112B6A2D6C0C4E9C80CF9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m1C03816896BC8C445C628164F59987CE886EC12E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m44D5E54D0DA87DBF2841553D62C0FC3376B90ACB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m57994E0773CB740B2495C2AE0CE7CBE3C47BB938_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m79C7EA0338961B160D163D636C9BE2C2CFF89147_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_mC9EC28432007C3F3966DA8B2E368E3B3131975CB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Contains_mBED8ADA0F3C97C492E753CEBEDAC85BD773182B5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_m7D2B2093F1FFA407229D768856BF328C7246B929_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_mEBF49DD908914F1048D109AA7FCB1696F8637906_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_mFEF2B830CDDC70282149401E9A5B02BF87E05640_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Reverse_m5E938FE28794339BAC583720C1498831C8CD7C75_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Reverse_m6F54B1AF5F84F297BFC36CD2EF9863F0B400CD9B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m0DEAE2C460B3FDD0F5DD4F79BA2F9AB9A56217B5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m45E107F2041DA7F9BD3655EB428863FF929CC0A7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m5510BC9CF019EE224165E524578F0231D4840066_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m7C0781C8A2C9C48F1851408CD69DA6E3A8587154_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mF63E182EEB4786A2E9FB7F2C8C8D0683BD9ED093_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mFA8EA6FA453663BACE3484A2991920D2BFC5BFA5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* MethodCall_2_Invoke_m614565DD357D42A60D8A80E7B1292EF287D88034_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_GetValueOrDefault_m0650003377853164C2CEED7CE3A7D36A58110C27_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_GetValueOrDefault_mAD5954CC09B0C1B1E228F9B5295A2EA6B6EAF72E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_GetValueOrDefault_mE89BB8F302DF31EE202251F4746859285860B6B6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1__ctor_m08091F597C74B397324E4C8599F224F6AA9BA3BB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1__ctor_m11F9C228CFDF836DDFCD7880C09CB4098AB9D7F2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1__ctor_m2E6FC0D6DDFF0359075E8195130765ED04EA2010_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1__ctor_m31B16CF5778ACE8E99E6017CCC1FE2D3E70A1703_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1__ctor_m381D5B1CD79C026584C8072033C17C7F05398C29_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1__ctor_m431A7B37A7FB27E824A48CAAF72930B7D596399D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1__ctor_m463791C1A9398343D7CEEF8BE9442A7BC643134B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1__ctor_m5E44BEDC1AA103BA971F1C268BD4A2B948603D35_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1__ctor_m5ED9C022C8C437BF7E37E2A3B10C055DDA89CD67_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1__ctor_m60DFD5C5C9C025B94DE6AF1A623DBBFC09048956_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1__ctor_m76013822874DCED561CAA4F6418BCBE65D273DA7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1__ctor_m7BFDFEF1C4C2787E71585BBE4908D47CBF80AE30_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1__ctor_m8D26829C8FBCF4D95A80984F459CFBA594E34E7B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1__ctor_m9BFC744597EAD1898820D2D3EC00C3644BC066FB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1__ctor_mA246C4883116BD24CCF0E607B6144637B4B7A1DA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1__ctor_mA2C015497D01701140620ACCA04B8B4E2AE05FBC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1__ctor_mAB819EE77BD7E38C1E0E494C307D52F42DB259AE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1__ctor_mAFE62620EADA9FD8E49BA1C0E2A2815C8366D491_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1__ctor_mC34B5D0417CE39DCD95A14161B422BA0BD5984EA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1__ctor_mD3154885E88D449C69AD9DEA6F9A3EF66A3FE996_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_HasValue_m1353A1AC6FE4E66B27E4109309FED39EC8041967_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_HasValue_m275A31438FCDAEEE039E95D887684E04FD6ECE2B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_HasValue_m2B89AF63243D2ACA8648B4DD0D78484C2DDE3F58_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_HasValue_m32C396BC34F2684EEB3E4D64CCC54219DEFFC807_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_HasValue_m5AAEB2419E1515393FE6C3CE4C92E04D6B545589_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_HasValue_m63F54EB248864AE74E21DD44BC77510735270E5C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_HasValue_m8AF9B5180266788239BC000F750CDC830866BC26_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_HasValue_mB664E2C41CADA8413EF8842E6601B8C696A7CE15_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_HasValue_mEDD393F528BE17016D58C5BF0AAA6BDF4F484DE1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_HasValue_mFCE0054CF56DBE8BEEF3463DBCDE528A0DA167E6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ObjectConstructor_1_Invoke_m76CEC2C9D43866532AC0B3DD9666B693A0C2FA70_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Predicate_1__ctor_mBC07C59B061E1B719FFE2B6E5541E9011D906C3C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ReflectionDelegateFactory_CreateDefaultConstructor_TisRuntimeObject_mEB50AB99BFE09A72034A8DED50F464F83BF7B81A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ReflectionDelegateFactory_CreateGet_TisRuntimeObject_m166AF4E86BA33EEBA827CA6E677F832942C2FD27_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ReflectionDelegateFactory_CreateMethodCall_TisRuntimeObject_m5D4F8691518AF4B8A5F9068F4A1E1C06AC3074E9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ReflectionDelegateFactory_CreateSet_TisRuntimeObject_mB53D97746F5CF11CB4A90CEDAA556F892464DC3A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ReflectionUtils_GetAttribute_TisJsonExtensionDataAttribute_tC858B08E1ACE700629982E390F2FDA7A0580C208_m39DA5BEFA21B8168DE32CA17A77A9C44FF9C8956_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ThreadSafeStore_2_Get_mA1AE5E345A837263A7350B63C9902C30D9604D25_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ThreadSafeStore_2__ctor_m0B31182B9AB59FFF512BEA154E9C43A8E940079E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CGetEnumeratorU3Ed__1_System_Collections_IEnumerator_Reset_mE490090DE0DE2ECA8F7A8FB981E759B7BFB59DEF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CGetEnumeratorU3Ed__55_System_Collections_IEnumerator_Reset_m8592FD9B229A18F7B2FD32ED3622AA07DD973582_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CCreatePropertiesU3Eb__64_0_m7E9A9FA2C6D93441376E3117CC7B115D3430E3EB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CGetAttributeConstructorU3Eb__40_0_m2CC22F0D165CB97F54071A1A727AB8368C14AB9B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CGetExtensionDataMemberForTypeU3Eb__37_0_mCDBAEA047930E5FFA8766B0FEE0C692AA6BDCB9E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CGetExtensionDataMemberForTypeU3Eb__37_1_m085CC1DCE095C1BB69D1EEFE71CD24595D7FDFF9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CGetSerializableMembersU3Eb__34_0_m9C59E55EDD271B8A867BF70F6D9A67CAB9C2AFA2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CGetSerializableMembersU3Eb__34_1_m4A9125BE6F324A8A905FFAA5F1FF83395DFAF447_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass38_1_U3CSetExtensionDataDelegatesU3Eb__0_m5DA3F48C3AE16C2C14020B331E7240788CD46CB1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass38_2_U3CSetExtensionDataDelegatesU3Eb__1_mF1E7C7DE90036720146209104B05B87A317255B8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass52_0_U3CCreateDictionaryContractU3Eb__0_m7B05BD5E9413AB87835FD4CDCC21C2F4B507FB94_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass68_0_U3CCreateShouldSerializeTestU3Eb__0_m7501DA378EF5FC5C1D9B74C089A764FC1FFA2AFE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass69_0_U3CSetIsSpecifiedActionsU3Eb__0_mCAB0A9EA227F93C3D1BD1EA1DEA4A41752F203F9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass73_0_U3CCreateSerializationCallbackU3Eb__0_m68E7A9BC7064F2136DA18D34F7BF91D4795C7C58_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass74_0_U3CCreateSerializationErrorCallbackU3Eb__0_mECEFFBADC159DAF97C9B57B0AEE860A7C2599133_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeType* Boolean_tB53F6830F670160873277339AA58F15CAED4399C_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* CollectionWrapper_1_t56A3570FE30412A52315A5D4973F7B4872669659_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* CompilerGeneratedAttribute_t29C03D4EB4F2193B5BF85D03923EA47423C946FC_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* DictionaryWrapper_2_t0AF7FC79CC13A4CCBDD264CF6A459A9936CB8E72_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Dictionary_2_tC3B7C172F472D2372732454922AB169C38E69CE9_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* EnumerableDictionaryWrapper_2_tEDED4680DEC1593C08C4D92507BED61202A002A4_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* ErrorContext_t61739A48B44A4707051088E7013FD4E347DBE7A0_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* ICollection_1_t47D08429F331C3A21D3F5AA174BFE3BB7C6DEF53_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* IDictionary_2_t422C090F714C36DDE0089AF96A98CBE6FC11EA06_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* IEnumerable_1_t6FAC70CFE4E34421830AE8D9FE19DA2A83B85B75_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* IEnumerable_tD74549CEA1AA48E768382B94FEACBB07E2E3FA2C_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* IList_1_t257B383712C1A4815237BFC535F7FB44AD7C7D36_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* IList_tA637AB426E16F84F84ACC2813BDCF3A0414AF0AA_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* ISerializable_t6367D17788BC3D11199A6922F5932FB0DB2F2815_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Int32_t585191389E07734F19F3156FF88FB3EF4800D102_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* JsonConstructorAttribute_t885D4CDBC66D58EF3A2BEBFD7B8045522946C096_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* JsonExtensionDataAttribute_tC858B08E1ACE700629982E390F2FDA7A0580C208_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* KeyValuePair_2_t6EBC4F45DFA11BD66F12393D4E3AB14BD21E1D7E_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* List_1_tE9A03BE6BFDE2D773BB46B72A1C6DC0B2740A223_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* OnDeserializedAttribute_t2616E095E827F26C1B98001AC1C8EFBFC5E4C47D_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* OnDeserializingAttribute_tBBC20BC5DB0ABD1008045DBFBB881F7247409767_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* OnErrorAttribute_tA62F181E11DB79D65EA388A4F798C30CA9C7A382_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* OnSerializedAttribute_tCFE5B5FF075650E26FCA06CBD8B1E5547CE2633A_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* OnSerializingAttribute_t7C470A6CCE67CFEB32D29F1846A4581381EB6630_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* ReadOnlyCollection_1_tD458BCEFAED2B8E1ECDA1CED4EF4CBB1011E5803_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* RuntimeObject_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* String_t_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Type_t_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017_0_0_0_var;
IL2CPP_EXTERN_C const uint32_t DefaultContractResolverState__ctor_mBB3FBAADAB4CF37F0B15FD1E1EF4921A35CA9884_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultContractResolver_CanConvertToString_m17AFEBA19D02B283354EBB28758C8758C9FD2EB5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultContractResolver_CreateArrayContract_mD9631F85DADC756921780A2F8A961636EA978F6B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultContractResolver_CreateConstructorParameters_m867209BF0E1CB7017D30F8CF601ABE46F07A7514_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultContractResolver_CreateContract_m8E7DEDC70AA63D564EC97A59801D945F5775B314_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultContractResolver_CreateDictionaryContract_mD6B8AFF2ABC8B6B30E8DD58694EF47C7698E99BC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultContractResolver_CreateISerializableContract_m447B7B0BF732A64A7BFDA664D00B832BF030543B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultContractResolver_CreateLinqContract_m49649BCF21F6468117A4558CF491E8505B4A3056_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultContractResolver_CreateMemberValueProvider_m6D71BD4B6EE02DE5ACECBA8AD28748410893D6BE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultContractResolver_CreateObjectContract_mE247AA902C332734D87E3DC945CFAB05EDE8FE43_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultContractResolver_CreatePrimitiveContract_mAE78F64D252E9DA01BE1D2DA367C105191F7FC31_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultContractResolver_CreateProperties_m3DB71B70F84DB9631D029F93FFA8EF946328DEB2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultContractResolver_CreatePropertyFromConstructorParameter_mA4CA3FBA352EF8C430353987CC729DB2E5566A70_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultContractResolver_CreateProperty_m16C0F2ADC21D62A210F8583C847993507C6A474F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultContractResolver_CreateShouldSerializeTest_m89AC077F623A80B62A6704A59A8DC42F4CCA0184_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultContractResolver_CreateStringContract_mD45CC850B7456B4605EE231E309F6013A8E47469_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultContractResolver_GetAttributeConstructor_m7948A333399831BA741E4E498319B86A299DBC50_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultContractResolver_GetCallbackMethodsForType_m4476762551D8DFCE836C3A3E3478F5DB2C9AEBF2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultContractResolver_GetClassHierarchyForType_mB2C0F793AEC5EC4C1495F0972B81A887F407D9E5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultContractResolver_GetClrTypeFullName_m33C4566EC0DE01AFF07A3EB76BEB5E261EF94098_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultContractResolver_GetDefaultCreator_mBE8EFAA4E35FFAEFCAFC20354EA0F2603B847E19_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultContractResolver_GetExtensionDataMemberForType_m749CA4710908A48EFEE948FAA0C57C9F156FA763_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultContractResolver_GetParameterizedConstructor_mE487EB54B281EB43B3F1DEEB8143F2188E305564_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultContractResolver_GetSerializableMembers_m54C5F501EEF2A9CDB1B6F3F667337751089DB2F8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultContractResolver_GetState_mFCCCECDBB23E606E405F563044BC5DBCE097EC78_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultContractResolver_InitializeContract_mC72BF19CFC13D483F2BD52C1825F01350DDBF749_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultContractResolver_IsIConvertible_mADF4E484E6B768A67C17A39860BA56181AB14A8D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultContractResolver_IsJsonPrimitiveType_mEC01637E154D3F72466AC49F74A808C48481317E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultContractResolver_IsValidCallback_m7CF3C3A4FCF267F4C459E71B2DCFA5722AD67728_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultContractResolver_ResolveCallbackMethods_mFF8D14250AC34CBF3BE9F528370250B3D98E9112_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultContractResolver_ResolveContractConverter_m40CB488E6E8903DCDFE10C90D3617AE426DB9885_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultContractResolver_ResolveContract_m2CA8E8397A2F8C714868CC6DF468BDE0DAC92931_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultContractResolver_SetExtensionDataDelegates_m98D75D56A50EE016652E1A2496BD192B65391103_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultContractResolver_SetIsSpecifiedActions_m2A020865FC552D59D7ACBC8E299602D2F61DC8F8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultContractResolver_SetPropertySettingsFromAttributes_m30707938E365229E29EF770EE5379538F03D4890_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultContractResolver_ShouldSerializeEntityMember_m13222E0E263D4D58795BE5F0FDC09F7E53704B25_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultContractResolver__cctor_m370D154667E7C20C8AC9EDCAC7965C7E8D8C8432_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultContractResolver__ctor_mD2A33AC83A6273FDBB5B1A34763BF33EA08A170E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultContractResolver_get_Instance_m231C8CC14A43ED7F411A7C313E36DB37DEA8659F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultReferenceResolver_AddReference_mC5497DD6AB84809E9990074E928321F3DFD8542C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultReferenceResolver_GetMappings_m3D4025A129FB759AE3DCF61DD6A3F530D26EC8EF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultReferenceResolver_GetReference_mCF7865A6DC52F696EF316B566191452C32BF63EE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultReferenceResolver_IsReferenced_mFC422C3176041085760100251C4545E99F035C79_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultReferenceResolver_ResolveReference_mC159650AC6669BE783C6C57A78BC8106FCBC3D41_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultSerializationBinder_BindToType_m52FD09039B4F1238D88D92F55FC21B3F780DFCA0_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultSerializationBinder_GetTypeFromTypeNameKey_m8428569BCC26EE5A2443DA1EF261B9D730780AF2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultSerializationBinder__cctor_m3F4F53CA015285903B419D17A96FB2342E45619F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultSerializationBinder__ctor_mD09C65B0B1B951EA7DB548F1E938C7F22A57D8A1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ErrorEventArgs__ctor_mAB008F2045495B1CB00829C2AEEF170B3774C556_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JObject_Add_m2D4BF9413B123EA2EA7B7BAFA5E22A95D48BD343_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JObject_CloneToken_m06AF14F0BE72800CC23B075131AF347F545D7530_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JObject_GetEnumerator_mC878042F431996441EB6D85176A9DE0D6EF71116_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JObject_Load_m2FC3E570F52E343E3B99668B1BA490E65656B1A4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JObject_OnPropertyChanged_m7F7907D76B2305B308BC43E65D8949A34C57E3F4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JObject_Property_mEC5F823BEC18E9431F3D141136C0DF2479E40481_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JObject_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CSystem_StringU2CValve_Newtonsoft_Json_Linq_JTokenU3EU3E_Add_mF70121A817AB0340BACC70E4557A85CBEE4759D6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JObject_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CSystem_StringU2CValve_Newtonsoft_Json_Linq_JTokenU3EU3E_Contains_m6C357744530DBB9D5D970B52D48E761619068EEF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JObject_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CSystem_StringU2CValve_Newtonsoft_Json_Linq_JTokenU3EU3E_CopyTo_m6B4FD36A3D23FA31F22C7F51FB687CD4AC5E4149_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JObject_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CSystem_StringU2CValve_Newtonsoft_Json_Linq_JTokenU3EU3E_Remove_m71F8CBEFE1D42DED489418661939D6A034BB28B9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JObject_System_Collections_Generic_IDictionaryU3CSystem_StringU2CValve_Newtonsoft_Json_Linq_JTokenU3E_get_Values_m9807B639E965C169F143CB3F9E7F9E5C2373B578_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JObject_ValidateToken_m914D161CDE482087CB8C7295232D10A83E1EF72F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JObject_WriteTo_m87E6EF2F27DB2FEC2505A1C54A96D073240A2F05_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JObject__ctor_mA5D65F80D283064BD1F55F868F8EB24250880D09_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JObject__ctor_mBFA6CD97D90E21A16D4994A223785DA45D6C9650_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JObject_add_PropertyChanged_m61EA05BB21BE2B6A457C37E5A06E236D3D878801_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JObject_get_Item_mE84F54A89A823A8C892ACBB8BB7D150C786A9D96_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JObject_remove_PropertyChanged_m19C5F4BACDF0B289BE2A3682D2D0D9ECA88FF7D6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JObject_set_Item_m69F3E86B1D8BADE7CA1F9CAAB0EF9DA1E2E123EB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JPropertyKeyedCollection_AddKey_mC54F260B46D7282F96138F85453EEF9B35EB9F52_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JPropertyKeyedCollection_ClearItems_m12019FEF733B7D4FFC148AA10D5FFA004C115A25_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JPropertyKeyedCollection_Contains_m9BB27B5F4B094F98E40DF0EAC64317EEDB446A5B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JPropertyKeyedCollection_EnsureDictionary_mA93022ABABD31F2D927AD5105DBFA7709F1596A5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JPropertyKeyedCollection_GetKeyForItem_mCB510667D2C6D59E50940F715265C448420BC709_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JPropertyKeyedCollection_IndexOfReference_mC199F62EF820B0A14B207970485BA689302058BA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JPropertyKeyedCollection_InsertItem_m090C226F682861055654F3E3A6DBB8EC929AF8D4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JPropertyKeyedCollection_RemoveItem_m9EF73697649DA7A047A1F20D61CD6162624E0A74_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JPropertyKeyedCollection_RemoveKey_mB3D9093735829DBAA7459C1F439D3E31A2C650A3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JPropertyKeyedCollection_SetItem_m51BE3C279FF04722417E5839392DA029E0AFDEC4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JPropertyKeyedCollection_TryGetValue_mA49B9420FDAC72D4FB53F2D8941C254D9C969055_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JPropertyKeyedCollection__cctor_m88BFDC86930ABAC9536F6AECC062EFA707FF5961_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JPropertyKeyedCollection__ctor_m36884BDFA31F8F9F8D9D3F70619D741C57172744_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JPropertyKeyedCollection_get_Keys_m577631D5857315D17E55A844F7299E726DA73611_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JPropertyList_GetEnumerator_mA8DB59314C0CF0952CD07FBE30F8B966952648AE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JProperty_ClearItems_mF937AD6D0AB373C6B775AC14A37C6DBEC42F0FFD_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JProperty_CloneToken_m1DA91D11A3D72B9DA0F274AA83E7FC3FD1903610_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JProperty_GetItem_mF994E2CC66016E946B8B77FEE02E03000E38E66C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JProperty_InsertItem_m78BE061EAB61FE997A7F1DD9303641C3FA123171_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JProperty_Load_mDAD45AC264E953A8903F590A7ACC96A1C6F62FDF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JProperty_RemoveItemAt_mCB20DE864A5DDDC7F68F6EAC0105D5717AFA8774_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JProperty_RemoveItem_mB24C41E81A7456A7D13924F75D22BA93D5FC43C1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JProperty_SetItem_mB24AF712A535C283C2E195062D0EB24925AF3DF8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JProperty__ctor_m25284D52407BE7C243C3050B71C802F7FE02E6AB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JProperty__ctor_m2EB3FF0AC7616ACC0AF2972AD0141CEFA72FB6E5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JProperty__ctor_mA6F2A9891CC8E62C2DA933667DCC34E3CAD58D30_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JRaw_CloneToken_mF7D651EFCD26521E9E3547FF6A1545F780850D24_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JRaw_Create_m68158A14DD0FBDCDCBDBC6DAA439C56A4B3A2289_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JTokenReader_GetEndToken_m8CDB32154BBCCE79A921137310EF0DA7179A21B0_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JTokenReader_Read_m08ED62F18D59F492B951F8984FC70438BAE79811_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JTokenReader_SetEnd_m66C6A9990693C35C053B893A75345F3BA2871111_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JTokenReader_SetToken_m50E5A37B2D44D4A93F489DB38D72E924420912EF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JTokenReader_Valve_Newtonsoft_Json_IJsonLineInfo_HasLineInfo_m6EE4928E347B114EB493B714E102FF6C43DA56C9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JTokenReader_Valve_Newtonsoft_Json_IJsonLineInfo_get_LineNumber_mAB5F2D64E0022AEC878C517FCCE6F97BF5F7BE21_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JTokenReader_Valve_Newtonsoft_Json_IJsonLineInfo_get_LinePosition_m18964B8E624516F1D29B12A4B3107F64E8E9A710_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JTokenReader__ctor_mEC548BE486CDEE63EE9B3A551844ECE3D8AA6E9A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JTokenReader_get_Path_m8E27ABDD067CD65E398A75BA08A2328460B53DF9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JTokenWriter_AddValue_mF1C34507EC5AD59339B847AD882751EFCDB72381_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JTokenWriter_WritePropertyName_m872EED34AFBF6FCB213DA1BC03E9FE410C8992EA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JTokenWriter_WriteRaw_m260AF1206E885A7A7AA39B0148AF0F1295718054_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JTokenWriter_WriteStartArray_m2E62C103744DF867FD5395949FC733B24E8E1AC6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JTokenWriter_WriteStartConstructor_m2E22B3EC5504F9EB3EAF58A57C5DD3AB9812AE3E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JTokenWriter_WriteStartObject_m2CBACC1D5FF0128E5C35A14BE130331A0681B967_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JTokenWriter_WriteToken_m5E90F881800CE4EA35041F27B958F34364B60987_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JTokenWriter_WriteValue_m046136E51964263582C489AFB516D848B01ABACA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JTokenWriter_WriteValue_m08D5AABF2D7232FC62B4B3C61DB5FB5776DEA810_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JTokenWriter_WriteValue_m1DC5C4B926D9D0E347501354639DEA1B5827FEFF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JTokenWriter_WriteValue_m58A052B6C3387DA21C90CCEB50C473269E743095_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JTokenWriter_WriteValue_m69FC9D49E44123CABD57FFEBD3E60E7BA5323BBB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JTokenWriter_WriteValue_m6F61666F1161D899C942075AF2A2ACB6A6FF48EE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JTokenWriter_WriteValue_m78D25DBDAE58E4A76CE1ADA944A9EA3ECD48F887_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JTokenWriter_WriteValue_m7953FA14C05CF93E3732FC4B62C6E24BE7E8E404_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JTokenWriter_WriteValue_m8FFA51981981B5EFCE39FC13933A75B2A7D75990_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JTokenWriter_WriteValue_m9B879B4E5363E5321F650BFE37A3D74739697B3D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JTokenWriter_WriteValue_mB373488ECB03C43CBF27AF5FD6486E95DF6722D7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JTokenWriter_WriteValue_mB8DF356D3C424E99C455B44FED3B087CA7FE93C6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JTokenWriter_WriteValue_mBBFA7AD537661A8E6ED7451F296B7EA577C12A03_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JTokenWriter_WriteValue_mC88506FC77B9FB62DA2E0C3FDF21CA10D1EDCCD4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JTokenWriter_WriteValue_mCDCA8355892CFE90B9C1487CF2D0EEAD3C5F1C64_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JTokenWriter_WriteValue_mEB1878CDB8FBCCC3ACEC69788D427351BD148B34_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JTokenWriter_WriteValue_mFAB59A6880EDB52AA5476253318331493DDE262E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JTokenWriter__ctor_mA873958577684A251ABA5A71D7B74F0290449425_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JToken_AddAnnotation_m6697AE0A4D8A820A24CF3C5EFEB5994BE770886A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JToken_Children_mB3D08F8C0748352E27B4EC687455499E91270DE2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JToken_CreateReader_m6ECADA49EDDCCA133AB8C976803F22F0F6901E94_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JToken_EnsureValue_m29697CE7680576BB6FBCBE36F876F9AF97384D85_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JToken_GetType_m936BAF5656FA294832F37052918D181807F59906_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JToken_ReadFrom_m08D8856006F5203D052E0834D4F70F5EFF6DD568_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JToken_ReadFrom_m454A08E195A1697F3C7FA81E045AD7A7886A55D7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JToken_Remove_mF35E87978A3AA0EBAAC3BEDE0489BAF613EB0816_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JToken_Replace_mBD488D6D6B819F847C52F1FFC5205712C01438F6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JToken_SetLineInfo_m0315B529EF0753213FB16C33647C9F2539B64193_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JToken_SetLineInfo_m65B85B867F262916908C023AB03C0048862924E5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JToken_System_Collections_Generic_IEnumerableU3CValve_Newtonsoft_Json_Linq_JTokenU3E_GetEnumerator_m65DAB59FF99E717D799AE474925729B66CD7B60E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JToken_System_Collections_IEnumerable_GetEnumerator_mC18B87C479A499B4E52D2BFF28B4DA9E7DBD44BC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JToken_ToObject_m25DE37D91924DB94B96FB2A86FD4CEEB0BE1878D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JToken_ToObject_m3CB0FEB1BF65579D7E1F1AD5A24A05D63590FC6B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JToken_ToString_m306344673FA4886CFDDFBFEA927AE665A55ADA22_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JToken_ToString_m8082E5C3FD49D09ACCAB8BA84B9FBE16F36E61E8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JToken_ValidateToken_m7301477AC0BE9EA8911A05AC253126C4F2B05F68_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JToken_Valve_Newtonsoft_Json_IJsonLineInfo_HasLineInfo_mD08AADCC57B3AAA908CF525C23C5CCF467816E67_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JToken_Valve_Newtonsoft_Json_IJsonLineInfo_get_LineNumber_m1DACE622D0FAA4C66C976143670AA5033DCFF11C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JToken_Valve_Newtonsoft_Json_IJsonLineInfo_get_LinePosition_mAB8F3B775A9A5646444191CF9392F864C717FB4F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JToken__cctor_m8807BAFDA304CB341F1523D77B8F0654E81064A3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JToken_get_First_mACDC4C6067F17114CC17CCFB41F0590DD962F347_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JToken_get_Last_mDDE24270C3A42FFD753457D6BD49F7B58035263F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JToken_get_Path_mDF8410943E43F72FA56B317C89DAC959284005B3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JToken_op_Explicit_m0170BD465F577BF1F4C284F9318550F3A59B7A6D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JToken_op_Explicit_m082F0E38845FD5F318438D29D7A41D8B278030A8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JToken_op_Explicit_m0E3D752E4AC01EC03E0C471F25E928CF84C70F4D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JToken_op_Explicit_m192E38F83BDA627DA2F67D6E8E556C7E8BCFFC0E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JToken_op_Explicit_m1E9A9C48AA45CF496362D8EC2C8C710289691F4C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JToken_op_Explicit_m228743A6F7AA8F1211038881F0200B154F65E4BD_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JToken_op_Explicit_m3B70105D407BAD5D01D511E04215FB146ED1C8EF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JToken_op_Explicit_m3FB97A54D97040485003B7DB9259575E91486DDD_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JToken_op_Explicit_m41462F6ED4A9D06149285D2ECD7925155A64480E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JToken_op_Explicit_m416851C04EED574BB38FBA7B22993342FB2BF71C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JToken_op_Explicit_m4A902F230BF538F167115B997338C4C62E000B5A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JToken_op_Explicit_m4B2C0E17D59DD2C8C1FF029F40761CBC3F5F997C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JToken_op_Explicit_m4C5743281B40CA02B835681A3F7D032B09E54740_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JToken_op_Explicit_m5623B70899025B395BF68890057E8827DFC09062_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JToken_op_Explicit_m605A541AE39FC83BA1CD7075873845888F231016_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JToken_op_Explicit_m60AD9B22AC43C9483A4EC736E8B08DBB098144E9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JToken_op_Explicit_m6246D2129AAA644B0F738E37B7D8EE0C72174C88_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JToken_op_Explicit_m6E58E8AE940056709C57FCA1BD9E9F8ABF029827_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JToken_op_Explicit_m7742F5054343B22E5355351816390A528A303074_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JToken_op_Explicit_m7BA83EAF9DB15A8ECAFD5DC5D7E80EE34845090A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JToken_op_Explicit_m7ED97B5A92E6F2DABB2C58A8E96280683F1294DE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JToken_op_Explicit_m82C9797D6694CAD60E2D8C75CE6651DFA5EFF498_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JToken_op_Explicit_m8315F88547897B494F2FAD9E6F9B9F9BE12106CE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JToken_op_Explicit_m8A71CA7343DDFE91A7EF435556490C67237B6730_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JToken_op_Explicit_m8BE4447D408B52AB5B4C347699BCA9CE5F5C8561_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JToken_op_Explicit_m8E6B7E51C03E9438547FBAEDEDDD6B53817D68F0_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JToken_op_Explicit_m96FDA8D285EF8DE68D836B9F923CBF88862B3112_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JToken_op_Explicit_mA3627E69282A828ABE2FF505D43B887C1E54CC6F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JToken_op_Explicit_mAB7E763BA2CB33D56DFFBB8A5E83F4670B2805A1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JToken_op_Explicit_mC0182FB7BB4A0132464F0AD3CA2FE73B2737260F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JToken_op_Explicit_mC85A803929686E2746F451B17F94D9C381941970_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JToken_op_Explicit_mC85D8549261D1AA45EDA536128EB37846421DFFE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JToken_op_Explicit_mDFB2FFD5BE9B8D15EA977A3B679B3D1FD38E9C1E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JToken_op_Explicit_mE90FD8213A2770ECA6B0E9628B2D614CAA8B68B1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JToken_op_Explicit_mFB7B71446CAF7B4C8B316D719C957D7379D8B45F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JToken_op_Explicit_mFB9585959C8EEC5EB76A6F32BD5BB46C970373BC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JValue_CloneToken_m2273432FDE0AA6A39FB3A273B5B7ABE80C6213C1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JValue_CompareFloat_mD063BBA71282EC91F866FB963351E23202A3ED70_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JValue_Compare_m9E45171FF4562ADE3112F1468C2E0DB9AAEBD9F8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JValue_CreateComment_mB22EE156BA4E18B35393ED2634F98E19175B524A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JValue_CreateNull_m3CCD3BCA725D2424F3C62FA811D56AD35DCD1066_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JValue_CreateUndefined_m692597F85235F264FFE2608A6AF1C5789A2E0092_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JValue_Equals_m97315AA334E40A34D347458C69807CE7C0278079_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JValue_GetStringValueType_mC39E95745022629EEB912949D0C5B03D314059EC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JValue_GetValueType_mFEEF608B99EFB12602AD7C6D030BD8C260EB564D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JValue_System_IComparable_CompareTo_m757CE3D6D5C87C626EDCDED8AC8E50706D22664F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JValue_System_IConvertible_GetTypeCode_m8FC824A67B0688B77F86D223851CAA0AEA80C799_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JValue_System_IConvertible_ToBoolean_mB1AAB7EEF34312E01EEB34A8B7F08F010CB0EDDB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JValue_System_IConvertible_ToByte_mF290A118DDF0F81AE615E9376177067072E204FC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JValue_System_IConvertible_ToChar_m7BA1EB803CFEA696E5C28707916ECE2A02EB076E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JValue_System_IConvertible_ToDateTime_mF30D26EF824B79A723AD624DFF9B66E8E9A8C84D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JValue_System_IConvertible_ToDecimal_mFDF9ED9D72E74A058BE767E08FAC9BEF3787BAFC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JValue_System_IConvertible_ToDouble_m2092964EA214FDA01CC8D86B713DD23E772E347A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JValue_System_IConvertible_ToInt16_mDF956D3D166E2AC81E513764B2C07BB6FCF45B2E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JValue_System_IConvertible_ToInt32_m6ACFED96F40889304ACF9F399131270765331382_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JValue_System_IConvertible_ToInt64_m3A39C507757BB8CC9CEE2406689248383F06A990_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JValue_System_IConvertible_ToSByte_m1827D88DA59C20840CBD9E86BDECBF6A7D9DEADC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JValue_System_IConvertible_ToSingle_mB56E182D02271657B7F1E34E3718F720BC3D9AD8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JValue_System_IConvertible_ToUInt16_m58EE681C0A1A20241E7033194B670C8936D794E8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JValue_System_IConvertible_ToUInt32_m444FE5DB16A150F4B6DBF839BD637016D35AE7AF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JValue_System_IConvertible_ToUInt64_m0D4FDE29D9EFFCDCE72985B3033B4BD26EA0FD03_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JValue_ToString_m15013498786D88B25B55CB2D00130932F043C191_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JValue_ToString_m4CF02E032A390219733586716376AFA414D83E06_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JValue_WriteTo_mEC2A0D7445520E6306E474D80C771E0B18EB4755_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JValue__ctor_m250481A9F85445244713F31837B372A9C88618FB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JValue__ctor_mCB35F856D5396641B4783B5A647B6C0545D9EC18_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JsonArrayContract_CreateTemporaryCollection_m883A13D415903B2D3DE60D720A1716A209F05FDE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JsonArrayContract_CreateWrapper_mD1E5CBD1C3BC9ABFD9DAEC7E08DFDD693A67F470_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JsonArrayContract__ctor_m202B363DE8BE2077F790591E8947AF8AED933D18_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JsonArrayContract_get_ParameterizedCreator_m4D576B9550B35A3D85BCCEBA5B451CE09AB80292_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JsonContainerContract__ctor_mEA7E83B6B87C0584E30AE5B52DACA72037AFD37B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JsonContract_CreateSerializationCallback_m80237D008F37FEF1CAC489A20645120CE18FDE80_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JsonContract_CreateSerializationErrorCallback_m570404ACFD6C0BACE5B3B39519FE05ADB43FA82F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JsonContract_InvokeOnDeserialized_m08AEC0093EC6A3884F956E3B95D4D8DD5071A4D0_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JsonContract_InvokeOnDeserializing_m8ADDC47964C43DCD8C76CE325B204F246D7F0F69_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JsonContract_InvokeOnError_mD5BE6CDBA3741D750E195074E4F370E3F93C4F7D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JsonContract_InvokeOnSerialized_m8C806EEEE9EB24A2FEBC6EA78D0389B4F6A07D49_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JsonContract_InvokeOnSerializing_m45E31AA086B097426261B7F347B0853ABFE13C14_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JsonContract__ctor_mBD20DDB17E51F8C0EFE39E44C1A96B9103C5662F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JsonContract_get_OnDeserializedCallbacks_m9B8797DA83096104A2B1803A6EF96E684EA073AA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JsonContract_get_OnDeserializingCallbacks_mEB236A5F4F95BE2A531E33B0F210A590823B36CF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JsonContract_get_OnErrorCallbacks_m1130B623BD0E2E61C483C12C5C7895071A0867B9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JsonContract_get_OnSerializedCallbacks_mFACCA186A597E0FFAB2F805B34260A506B8F038F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JsonContract_get_OnSerializingCallbacks_mB55F85A655EA1FAA9136A1D41E1CEE79512F2DF0_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JsonConvert_get_DefaultSettings_m06EFD8674EFD5D98521BAB1AF2C2E504580B6944Valve_Newtonsoft_Json1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JsonDictionaryContract_CreateTemporaryDictionary_m1A90F1DF540BC313DA352CFD50024409BDB5C019_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JsonDictionaryContract_CreateWrapper_m671BE283670167B5EC7AB21FA52DC855489EA1CE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JsonDictionaryContract__ctor_m71EEB830BC26666C81BB1157E13C344ED1DD34A9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t JsonDictionaryContract_get_ParameterizedCreator_m1C664701826D4C327358BDFA4B6D83C12B981E9D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StringComparer_get_Ordinal_m1F38FBAB170DF80D33FE2A849D30FF2E314D9FDBValve_Newtonsoft_Json1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TypeNameKey_Equals_mA9CB7987E39F1CEC63E3F4FA1EFEE88C627CC973_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t U3CGetEnumeratorU3Ed__1_System_Collections_IEnumerator_Reset_mE490090DE0DE2ECA8F7A8FB981E759B7BFB59DEF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t U3CGetEnumeratorU3Ed__55_MoveNext_mAED3917FCF6ED31BC154AF348623CCC36CB674CD_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t U3CGetEnumeratorU3Ed__55_System_Collections_IEnumerator_Reset_m8592FD9B229A18F7B2FD32ED3622AA07DD973582_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t U3CGetEnumeratorU3Ed__55_System_Collections_IEnumerator_get_Current_m8AA68DFDEBB7362E6EDC250A55471AA34AC54D61_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t U3CGetEnumeratorU3Ed__55_U3CU3Em__Finally1_m923EB67AD63F8F966D85D16A3399D9DC00F02DFD_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t U3CU3Ec_U3CCreatePropertiesU3Eb__64_0_m7E9A9FA2C6D93441376E3117CC7B115D3430E3EB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t U3CU3Ec_U3CGetAttributeConstructorU3Eb__40_0_m2CC22F0D165CB97F54071A1A727AB8368C14AB9B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t U3CU3Ec_U3CGetExtensionDataMemberForTypeU3Eb__37_0_mCDBAEA047930E5FFA8766B0FEE0C692AA6BDCB9E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t U3CU3Ec_U3CGetExtensionDataMemberForTypeU3Eb__37_1_m085CC1DCE095C1BB69D1EEFE71CD24595D7FDFF9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t U3CU3Ec_U3CGetSerializableMembersU3Eb__34_0_m9C59E55EDD271B8A867BF70F6D9A67CAB9C2AFA2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t U3CU3Ec_U3CGetSerializableMembersU3Eb__34_1_m4A9125BE6F324A8A905FFAA5F1FF83395DFAF447_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t U3CU3Ec__DisplayClass38_1_U3CSetExtensionDataDelegatesU3Eb__0_m5DA3F48C3AE16C2C14020B331E7240788CD46CB1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t U3CU3Ec__DisplayClass38_2_U3CSetExtensionDataDelegatesU3Eb__1_mF1E7C7DE90036720146209104B05B87A317255B8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t U3CU3Ec__DisplayClass68_0_U3CCreateShouldSerializeTestU3Eb__0_m7501DA378EF5FC5C1D9B74C089A764FC1FFA2AFE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t U3CU3Ec__DisplayClass69_0_U3CSetIsSpecifiedActionsU3Eb__0_mCAB0A9EA227F93C3D1BD1EA1DEA4A41752F203F9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t U3CU3Ec__DisplayClass73_0_U3CCreateSerializationCallbackU3Eb__0_m68E7A9BC7064F2136DA18D34F7BF91D4795C7C58_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t U3CU3Ec__DisplayClass74_0_U3CCreateSerializationErrorCallbackU3Eb__0_mECEFFBADC159DAF97C9B57B0AEE860A7C2599133_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t U3CU3Ec__cctor_m0E78995AAE6C3483BEA822810036D3796B998A65_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 ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821;
struct KeyValuePair_2U5BU5D_t7A622914A381AA75E5CA5F22228AAEC514D3BE0D;
struct DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86;
struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A;
struct AssemblyU5BU5D_t90BF014AA048450526A42C74F9583341A138DE58;
struct ConstructorInfoU5BU5D_t111EE7D53C51A47FE69FC3398DE007F7E100593E;
struct FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE;
struct MethodInfoU5BU5D_t93E968F23AF2DB5CFCFF13BE775A0E222C03586B;
struct ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694;
struct ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA;
struct PropertyInfoU5BU5D_tAD8E99B12FF99CA4F2EA37B612DE68E112B4CF7E;
struct TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F;
struct JsonConverterU5BU5D_tFCEA4D4687200F08D8F41AFF4CDC7EE5E08AACAB;
struct JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B;
struct JTokenU5BU5D_t4E50BA12BFD33E2099BB21C26BC05B63AE096327;
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
// System.Object
struct Il2CppArrayBounds;
// System.Array
// System.Attribute
struct Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 : public RuntimeObject
{
public:
public:
};
// System.Collections.Generic.Comparer`1<System.String>
struct Comparer_1_tC8913CC0230510AB5B82485EAEF003DA0F4B9903 : public RuntimeObject
{
public:
public:
};
struct Comparer_1_tC8913CC0230510AB5B82485EAEF003DA0F4B9903_StaticFields
{
public:
// System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer
Comparer_1_tC8913CC0230510AB5B82485EAEF003DA0F4B9903 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_tC8913CC0230510AB5B82485EAEF003DA0F4B9903_StaticFields, ___defaultComparer_0)); }
inline Comparer_1_tC8913CC0230510AB5B82485EAEF003DA0F4B9903 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline Comparer_1_tC8913CC0230510AB5B82485EAEF003DA0F4B9903 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(Comparer_1_tC8913CC0230510AB5B82485EAEF003DA0F4B9903 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_KeyCollection<System.String,Valve.Newtonsoft.Json.Linq.JToken>
struct KeyCollection_t44B3F4E6CFC63F9D85C76C64DE24F71FCD3A5E7F : public RuntimeObject
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_KeyCollection::dictionary
Dictionary_2_t40E91C81D5ADA639FA8CD3CD9E4F8824FE177EB5 * ___dictionary_0;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(KeyCollection_t44B3F4E6CFC63F9D85C76C64DE24F71FCD3A5E7F, ___dictionary_0)); }
inline Dictionary_2_t40E91C81D5ADA639FA8CD3CD9E4F8824FE177EB5 * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_t40E91C81D5ADA639FA8CD3CD9E4F8824FE177EB5 ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_t40E91C81D5ADA639FA8CD3CD9E4F8824FE177EB5 * value)
{
___dictionary_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2<System.String,Valve.Newtonsoft.Json.Linq.JToken>
struct Dictionary_2_t40E91C81D5ADA639FA8CD3CD9E4F8824FE177EB5 : public RuntimeObject
{
public:
// System.Int32[] System.Collections.Generic.Dictionary`2::buckets
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___buckets_0;
// System.Collections.Generic.Dictionary`2_Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries
EntryU5BU5D_tE169A7F8494352DBBE0DEE2F1EF956F911C4466E* ___entries_1;
// System.Int32 System.Collections.Generic.Dictionary`2::count
int32_t ___count_2;
// System.Int32 System.Collections.Generic.Dictionary`2::version
int32_t ___version_3;
// System.Int32 System.Collections.Generic.Dictionary`2::freeList
int32_t ___freeList_4;
// System.Int32 System.Collections.Generic.Dictionary`2::freeCount
int32_t ___freeCount_5;
// System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer
RuntimeObject* ___comparer_6;
// System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys
KeyCollection_t44B3F4E6CFC63F9D85C76C64DE24F71FCD3A5E7F * ___keys_7;
// System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values
ValueCollection_tF154CF6FED0B40E4EDB1096CC60A8CCFACD36597 * ___values_8;
// System.Object System.Collections.Generic.Dictionary`2::_syncRoot
RuntimeObject * ____syncRoot_9;
public:
inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t40E91C81D5ADA639FA8CD3CD9E4F8824FE177EB5, ___buckets_0)); }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_buckets_0() const { return ___buckets_0; }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_buckets_0() { return &___buckets_0; }
inline void set_buckets_0(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
{
___buckets_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value);
}
inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t40E91C81D5ADA639FA8CD3CD9E4F8824FE177EB5, ___entries_1)); }
inline EntryU5BU5D_tE169A7F8494352DBBE0DEE2F1EF956F911C4466E* get_entries_1() const { return ___entries_1; }
inline EntryU5BU5D_tE169A7F8494352DBBE0DEE2F1EF956F911C4466E** get_address_of_entries_1() { return &___entries_1; }
inline void set_entries_1(EntryU5BU5D_tE169A7F8494352DBBE0DEE2F1EF956F911C4466E* value)
{
___entries_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value);
}
inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t40E91C81D5ADA639FA8CD3CD9E4F8824FE177EB5, ___count_2)); }
inline int32_t get_count_2() const { return ___count_2; }
inline int32_t* get_address_of_count_2() { return &___count_2; }
inline void set_count_2(int32_t value)
{
___count_2 = value;
}
inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t40E91C81D5ADA639FA8CD3CD9E4F8824FE177EB5, ___version_3)); }
inline int32_t get_version_3() const { return ___version_3; }
inline int32_t* get_address_of_version_3() { return &___version_3; }
inline void set_version_3(int32_t value)
{
___version_3 = value;
}
inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t40E91C81D5ADA639FA8CD3CD9E4F8824FE177EB5, ___freeList_4)); }
inline int32_t get_freeList_4() const { return ___freeList_4; }
inline int32_t* get_address_of_freeList_4() { return &___freeList_4; }
inline void set_freeList_4(int32_t value)
{
___freeList_4 = value;
}
inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t40E91C81D5ADA639FA8CD3CD9E4F8824FE177EB5, ___freeCount_5)); }
inline int32_t get_freeCount_5() const { return ___freeCount_5; }
inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; }
inline void set_freeCount_5(int32_t value)
{
___freeCount_5 = value;
}
inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t40E91C81D5ADA639FA8CD3CD9E4F8824FE177EB5, ___comparer_6)); }
inline RuntimeObject* get_comparer_6() const { return ___comparer_6; }
inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; }
inline void set_comparer_6(RuntimeObject* value)
{
___comparer_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value);
}
inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t40E91C81D5ADA639FA8CD3CD9E4F8824FE177EB5, ___keys_7)); }
inline KeyCollection_t44B3F4E6CFC63F9D85C76C64DE24F71FCD3A5E7F * get_keys_7() const { return ___keys_7; }
inline KeyCollection_t44B3F4E6CFC63F9D85C76C64DE24F71FCD3A5E7F ** get_address_of_keys_7() { return &___keys_7; }
inline void set_keys_7(KeyCollection_t44B3F4E6CFC63F9D85C76C64DE24F71FCD3A5E7F * value)
{
___keys_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value);
}
inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t40E91C81D5ADA639FA8CD3CD9E4F8824FE177EB5, ___values_8)); }
inline ValueCollection_tF154CF6FED0B40E4EDB1096CC60A8CCFACD36597 * get_values_8() const { return ___values_8; }
inline ValueCollection_tF154CF6FED0B40E4EDB1096CC60A8CCFACD36597 ** get_address_of_values_8() { return &___values_8; }
inline void set_values_8(ValueCollection_tF154CF6FED0B40E4EDB1096CC60A8CCFACD36597 * value)
{
___values_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value);
}
inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t40E91C81D5ADA639FA8CD3CD9E4F8824FE177EB5, ____syncRoot_9)); }
inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; }
inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; }
inline void set__syncRoot_9(RuntimeObject * value)
{
____syncRoot_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2<Valve.Newtonsoft.Json.Serialization.ResolverContractKey,Valve.Newtonsoft.Json.Serialization.JsonContract>
struct Dictionary_2_t3B0A775E26AFCA1B3A8DF100D5CB736C522494F7 : public RuntimeObject
{
public:
// System.Int32[] System.Collections.Generic.Dictionary`2::buckets
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___buckets_0;
// System.Collections.Generic.Dictionary`2_Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries
EntryU5BU5D_t415CCFE647DD85D4318BE21097FCEF3489A2DADC* ___entries_1;
// System.Int32 System.Collections.Generic.Dictionary`2::count
int32_t ___count_2;
// System.Int32 System.Collections.Generic.Dictionary`2::version
int32_t ___version_3;
// System.Int32 System.Collections.Generic.Dictionary`2::freeList
int32_t ___freeList_4;
// System.Int32 System.Collections.Generic.Dictionary`2::freeCount
int32_t ___freeCount_5;
// System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer
RuntimeObject* ___comparer_6;
// System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys
KeyCollection_t63AEF5C4BEF6FE56F2513EE3FC4B03842DF8F800 * ___keys_7;
// System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values
ValueCollection_t9FE881F822F12C9DA2F8DA644E9AC665487A33EB * ___values_8;
// System.Object System.Collections.Generic.Dictionary`2::_syncRoot
RuntimeObject * ____syncRoot_9;
public:
inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t3B0A775E26AFCA1B3A8DF100D5CB736C522494F7, ___buckets_0)); }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_buckets_0() const { return ___buckets_0; }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_buckets_0() { return &___buckets_0; }
inline void set_buckets_0(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
{
___buckets_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value);
}
inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t3B0A775E26AFCA1B3A8DF100D5CB736C522494F7, ___entries_1)); }
inline EntryU5BU5D_t415CCFE647DD85D4318BE21097FCEF3489A2DADC* get_entries_1() const { return ___entries_1; }
inline EntryU5BU5D_t415CCFE647DD85D4318BE21097FCEF3489A2DADC** get_address_of_entries_1() { return &___entries_1; }
inline void set_entries_1(EntryU5BU5D_t415CCFE647DD85D4318BE21097FCEF3489A2DADC* value)
{
___entries_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value);
}
inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t3B0A775E26AFCA1B3A8DF100D5CB736C522494F7, ___count_2)); }
inline int32_t get_count_2() const { return ___count_2; }
inline int32_t* get_address_of_count_2() { return &___count_2; }
inline void set_count_2(int32_t value)
{
___count_2 = value;
}
inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t3B0A775E26AFCA1B3A8DF100D5CB736C522494F7, ___version_3)); }
inline int32_t get_version_3() const { return ___version_3; }
inline int32_t* get_address_of_version_3() { return &___version_3; }
inline void set_version_3(int32_t value)
{
___version_3 = value;
}
inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t3B0A775E26AFCA1B3A8DF100D5CB736C522494F7, ___freeList_4)); }
inline int32_t get_freeList_4() const { return ___freeList_4; }
inline int32_t* get_address_of_freeList_4() { return &___freeList_4; }
inline void set_freeList_4(int32_t value)
{
___freeList_4 = value;
}
inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t3B0A775E26AFCA1B3A8DF100D5CB736C522494F7, ___freeCount_5)); }
inline int32_t get_freeCount_5() const { return ___freeCount_5; }
inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; }
inline void set_freeCount_5(int32_t value)
{
___freeCount_5 = value;
}
inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t3B0A775E26AFCA1B3A8DF100D5CB736C522494F7, ___comparer_6)); }
inline RuntimeObject* get_comparer_6() const { return ___comparer_6; }
inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; }
inline void set_comparer_6(RuntimeObject* value)
{
___comparer_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value);
}
inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t3B0A775E26AFCA1B3A8DF100D5CB736C522494F7, ___keys_7)); }
inline KeyCollection_t63AEF5C4BEF6FE56F2513EE3FC4B03842DF8F800 * get_keys_7() const { return ___keys_7; }
inline KeyCollection_t63AEF5C4BEF6FE56F2513EE3FC4B03842DF8F800 ** get_address_of_keys_7() { return &___keys_7; }
inline void set_keys_7(KeyCollection_t63AEF5C4BEF6FE56F2513EE3FC4B03842DF8F800 * value)
{
___keys_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value);
}
inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t3B0A775E26AFCA1B3A8DF100D5CB736C522494F7, ___values_8)); }
inline ValueCollection_t9FE881F822F12C9DA2F8DA644E9AC665487A33EB * get_values_8() const { return ___values_8; }
inline ValueCollection_t9FE881F822F12C9DA2F8DA644E9AC665487A33EB ** get_address_of_values_8() { return &___values_8; }
inline void set_values_8(ValueCollection_t9FE881F822F12C9DA2F8DA644E9AC665487A33EB * value)
{
___values_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value);
}
inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t3B0A775E26AFCA1B3A8DF100D5CB736C522494F7, ____syncRoot_9)); }
inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; }
inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; }
inline void set__syncRoot_9(RuntimeObject * value)
{
____syncRoot_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value);
}
};
// System.Collections.Generic.List`1<System.Reflection.ConstructorInfo>
struct List_1_t6CEA56ED94DFAE80FDAED89141EF7D6AB50F046E : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
ConstructorInfoU5BU5D_t111EE7D53C51A47FE69FC3398DE007F7E100593E* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t6CEA56ED94DFAE80FDAED89141EF7D6AB50F046E, ____items_1)); }
inline ConstructorInfoU5BU5D_t111EE7D53C51A47FE69FC3398DE007F7E100593E* get__items_1() const { return ____items_1; }
inline ConstructorInfoU5BU5D_t111EE7D53C51A47FE69FC3398DE007F7E100593E** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(ConstructorInfoU5BU5D_t111EE7D53C51A47FE69FC3398DE007F7E100593E* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t6CEA56ED94DFAE80FDAED89141EF7D6AB50F046E, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t6CEA56ED94DFAE80FDAED89141EF7D6AB50F046E, ____version_3)); }
inline int32_t get__version_3() const { return ____version_3; }
inline int32_t* get_address_of__version_3() { return &____version_3; }
inline void set__version_3(int32_t value)
{
____version_3 = value;
}
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t6CEA56ED94DFAE80FDAED89141EF7D6AB50F046E, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_t6CEA56ED94DFAE80FDAED89141EF7D6AB50F046E_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
ConstructorInfoU5BU5D_t111EE7D53C51A47FE69FC3398DE007F7E100593E* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t6CEA56ED94DFAE80FDAED89141EF7D6AB50F046E_StaticFields, ____emptyArray_5)); }
inline ConstructorInfoU5BU5D_t111EE7D53C51A47FE69FC3398DE007F7E100593E* get__emptyArray_5() const { return ____emptyArray_5; }
inline ConstructorInfoU5BU5D_t111EE7D53C51A47FE69FC3398DE007F7E100593E** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(ConstructorInfoU5BU5D_t111EE7D53C51A47FE69FC3398DE007F7E100593E* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<System.Reflection.MemberInfo>
struct List_1_t610995BF9B0DCC99DF41C7D0D54AA44EF8552AE9 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
MemberInfoU5BU5D_t6A57DDAF4E5321D22FB4C021559637EB126BF6B6* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t610995BF9B0DCC99DF41C7D0D54AA44EF8552AE9, ____items_1)); }
inline MemberInfoU5BU5D_t6A57DDAF4E5321D22FB4C021559637EB126BF6B6* get__items_1() const { return ____items_1; }
inline MemberInfoU5BU5D_t6A57DDAF4E5321D22FB4C021559637EB126BF6B6** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(MemberInfoU5BU5D_t6A57DDAF4E5321D22FB4C021559637EB126BF6B6* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t610995BF9B0DCC99DF41C7D0D54AA44EF8552AE9, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t610995BF9B0DCC99DF41C7D0D54AA44EF8552AE9, ____version_3)); }
inline int32_t get__version_3() const { return ____version_3; }
inline int32_t* get_address_of__version_3() { return &____version_3; }
inline void set__version_3(int32_t value)
{
____version_3 = value;
}
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t610995BF9B0DCC99DF41C7D0D54AA44EF8552AE9, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_t610995BF9B0DCC99DF41C7D0D54AA44EF8552AE9_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
MemberInfoU5BU5D_t6A57DDAF4E5321D22FB4C021559637EB126BF6B6* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t610995BF9B0DCC99DF41C7D0D54AA44EF8552AE9_StaticFields, ____emptyArray_5)); }
inline MemberInfoU5BU5D_t6A57DDAF4E5321D22FB4C021559637EB126BF6B6* get__emptyArray_5() const { return ____emptyArray_5; }
inline MemberInfoU5BU5D_t6A57DDAF4E5321D22FB4C021559637EB126BF6B6** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(MemberInfoU5BU5D_t6A57DDAF4E5321D22FB4C021559637EB126BF6B6* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<System.Type>
struct List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0, ____items_1)); }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get__items_1() const { return ____items_1; }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0, ____version_3)); }
inline int32_t get__version_3() const { return ____version_3; }
inline int32_t* get_address_of__version_3() { return &____version_3; }
inline void set__version_3(int32_t value)
{
____version_3 = value;
}
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0_StaticFields, ____emptyArray_5)); }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get__emptyArray_5() const { return ____emptyArray_5; }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<Valve.Newtonsoft.Json.JsonPosition>
struct List_1_tB300EBCDF85B082F12B483D22C5C8070412F6C76 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
JsonPositionU5BU5D_t53729DD3EACECD9DE687A8F81A09F4A0767CB8A8* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_tB300EBCDF85B082F12B483D22C5C8070412F6C76, ____items_1)); }
inline JsonPositionU5BU5D_t53729DD3EACECD9DE687A8F81A09F4A0767CB8A8* get__items_1() const { return ____items_1; }
inline JsonPositionU5BU5D_t53729DD3EACECD9DE687A8F81A09F4A0767CB8A8** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(JsonPositionU5BU5D_t53729DD3EACECD9DE687A8F81A09F4A0767CB8A8* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_tB300EBCDF85B082F12B483D22C5C8070412F6C76, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_tB300EBCDF85B082F12B483D22C5C8070412F6C76, ____version_3)); }
inline int32_t get__version_3() const { return ____version_3; }
inline int32_t* get_address_of__version_3() { return &____version_3; }
inline void set__version_3(int32_t value)
{
____version_3 = value;
}
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_tB300EBCDF85B082F12B483D22C5C8070412F6C76, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_tB300EBCDF85B082F12B483D22C5C8070412F6C76_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
JsonPositionU5BU5D_t53729DD3EACECD9DE687A8F81A09F4A0767CB8A8* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_tB300EBCDF85B082F12B483D22C5C8070412F6C76_StaticFields, ____emptyArray_5)); }
inline JsonPositionU5BU5D_t53729DD3EACECD9DE687A8F81A09F4A0767CB8A8* get__emptyArray_5() const { return ____emptyArray_5; }
inline JsonPositionU5BU5D_t53729DD3EACECD9DE687A8F81A09F4A0767CB8A8** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(JsonPositionU5BU5D_t53729DD3EACECD9DE687A8F81A09F4A0767CB8A8* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<Valve.Newtonsoft.Json.Linq.JToken>
struct List_1_t1FE4F7D4C3DCC24F3D8A78270F707A3AD8614891 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
JTokenU5BU5D_t4E50BA12BFD33E2099BB21C26BC05B63AE096327* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t1FE4F7D4C3DCC24F3D8A78270F707A3AD8614891, ____items_1)); }
inline JTokenU5BU5D_t4E50BA12BFD33E2099BB21C26BC05B63AE096327* get__items_1() const { return ____items_1; }
inline JTokenU5BU5D_t4E50BA12BFD33E2099BB21C26BC05B63AE096327** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(JTokenU5BU5D_t4E50BA12BFD33E2099BB21C26BC05B63AE096327* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t1FE4F7D4C3DCC24F3D8A78270F707A3AD8614891, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t1FE4F7D4C3DCC24F3D8A78270F707A3AD8614891, ____version_3)); }
inline int32_t get__version_3() const { return ____version_3; }
inline int32_t* get_address_of__version_3() { return &____version_3; }
inline void set__version_3(int32_t value)
{
____version_3 = value;
}
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t1FE4F7D4C3DCC24F3D8A78270F707A3AD8614891, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_t1FE4F7D4C3DCC24F3D8A78270F707A3AD8614891_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
JTokenU5BU5D_t4E50BA12BFD33E2099BB21C26BC05B63AE096327* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t1FE4F7D4C3DCC24F3D8A78270F707A3AD8614891_StaticFields, ____emptyArray_5)); }
inline JTokenU5BU5D_t4E50BA12BFD33E2099BB21C26BC05B63AE096327* get__emptyArray_5() const { return ____emptyArray_5; }
inline JTokenU5BU5D_t4E50BA12BFD33E2099BB21C26BC05B63AE096327** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(JTokenU5BU5D_t4E50BA12BFD33E2099BB21C26BC05B63AE096327* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<Valve.Newtonsoft.Json.Serialization.JsonProperty>
struct List_1_t6058A2EE1FD0D50A7FFCAD444A5E3330BC73DA8E : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
JsonPropertyU5BU5D_t5AAA8E1D6569AE26F59C16867602BA8754878232* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t6058A2EE1FD0D50A7FFCAD444A5E3330BC73DA8E, ____items_1)); }
inline JsonPropertyU5BU5D_t5AAA8E1D6569AE26F59C16867602BA8754878232* get__items_1() const { return ____items_1; }
inline JsonPropertyU5BU5D_t5AAA8E1D6569AE26F59C16867602BA8754878232** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(JsonPropertyU5BU5D_t5AAA8E1D6569AE26F59C16867602BA8754878232* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t6058A2EE1FD0D50A7FFCAD444A5E3330BC73DA8E, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t6058A2EE1FD0D50A7FFCAD444A5E3330BC73DA8E, ____version_3)); }
inline int32_t get__version_3() const { return ____version_3; }
inline int32_t* get_address_of__version_3() { return &____version_3; }
inline void set__version_3(int32_t value)
{
____version_3 = value;
}
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t6058A2EE1FD0D50A7FFCAD444A5E3330BC73DA8E, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_t6058A2EE1FD0D50A7FFCAD444A5E3330BC73DA8E_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
JsonPropertyU5BU5D_t5AAA8E1D6569AE26F59C16867602BA8754878232* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t6058A2EE1FD0D50A7FFCAD444A5E3330BC73DA8E_StaticFields, ____emptyArray_5)); }
inline JsonPropertyU5BU5D_t5AAA8E1D6569AE26F59C16867602BA8754878232* get__emptyArray_5() const { return ____emptyArray_5; }
inline JsonPropertyU5BU5D_t5AAA8E1D6569AE26F59C16867602BA8754878232** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(JsonPropertyU5BU5D_t5AAA8E1D6569AE26F59C16867602BA8754878232* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<Valve.Newtonsoft.Json.Serialization.SerializationCallback>
struct List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
SerializationCallbackU5BU5D_t217E955E9B562ECEEAB9BDEE6D6651976F81CAB9* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D, ____items_1)); }
inline SerializationCallbackU5BU5D_t217E955E9B562ECEEAB9BDEE6D6651976F81CAB9* get__items_1() const { return ____items_1; }
inline SerializationCallbackU5BU5D_t217E955E9B562ECEEAB9BDEE6D6651976F81CAB9** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(SerializationCallbackU5BU5D_t217E955E9B562ECEEAB9BDEE6D6651976F81CAB9* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D, ____version_3)); }
inline int32_t get__version_3() const { return ____version_3; }
inline int32_t* get_address_of__version_3() { return &____version_3; }
inline void set__version_3(int32_t value)
{
____version_3 = value;
}
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
SerializationCallbackU5BU5D_t217E955E9B562ECEEAB9BDEE6D6651976F81CAB9* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D_StaticFields, ____emptyArray_5)); }
inline SerializationCallbackU5BU5D_t217E955E9B562ECEEAB9BDEE6D6651976F81CAB9* get__emptyArray_5() const { return ____emptyArray_5; }
inline SerializationCallbackU5BU5D_t217E955E9B562ECEEAB9BDEE6D6651976F81CAB9** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(SerializationCallbackU5BU5D_t217E955E9B562ECEEAB9BDEE6D6651976F81CAB9* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<Valve.Newtonsoft.Json.Serialization.SerializationErrorCallback>
struct List_1_t3146B8EA2F3BD8E6B4682F880C8713B77D27EC6D : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
SerializationErrorCallbackU5BU5D_tE012D93D39CDB9D64CAC0C9E0F980D45722A28BB* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t3146B8EA2F3BD8E6B4682F880C8713B77D27EC6D, ____items_1)); }
inline SerializationErrorCallbackU5BU5D_tE012D93D39CDB9D64CAC0C9E0F980D45722A28BB* get__items_1() const { return ____items_1; }
inline SerializationErrorCallbackU5BU5D_tE012D93D39CDB9D64CAC0C9E0F980D45722A28BB** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(SerializationErrorCallbackU5BU5D_tE012D93D39CDB9D64CAC0C9E0F980D45722A28BB* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t3146B8EA2F3BD8E6B4682F880C8713B77D27EC6D, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t3146B8EA2F3BD8E6B4682F880C8713B77D27EC6D, ____version_3)); }
inline int32_t get__version_3() const { return ____version_3; }
inline int32_t* get_address_of__version_3() { return &____version_3; }
inline void set__version_3(int32_t value)
{
____version_3 = value;
}
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t3146B8EA2F3BD8E6B4682F880C8713B77D27EC6D, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_t3146B8EA2F3BD8E6B4682F880C8713B77D27EC6D_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
SerializationErrorCallbackU5BU5D_tE012D93D39CDB9D64CAC0C9E0F980D45722A28BB* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t3146B8EA2F3BD8E6B4682F880C8713B77D27EC6D_StaticFields, ____emptyArray_5)); }
inline SerializationErrorCallbackU5BU5D_tE012D93D39CDB9D64CAC0C9E0F980D45722A28BB* get__emptyArray_5() const { return ____emptyArray_5; }
inline SerializationErrorCallbackU5BU5D_tE012D93D39CDB9D64CAC0C9E0F980D45722A28BB** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(SerializationErrorCallbackU5BU5D_tE012D93D39CDB9D64CAC0C9E0F980D45722A28BB* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.ObjectModel.Collection`1<System.Object>
struct Collection_1_t71DBDD60829CD647D0C2B74C708518E5CAEDB942 : public RuntimeObject
{
public:
// System.Collections.Generic.IList`1<T> System.Collections.ObjectModel.Collection`1::items
RuntimeObject* ___items_0;
// System.Object System.Collections.ObjectModel.Collection`1::_syncRoot
RuntimeObject * ____syncRoot_1;
public:
inline static int32_t get_offset_of_items_0() { return static_cast<int32_t>(offsetof(Collection_1_t71DBDD60829CD647D0C2B74C708518E5CAEDB942, ___items_0)); }
inline RuntimeObject* get_items_0() const { return ___items_0; }
inline RuntimeObject** get_address_of_items_0() { return &___items_0; }
inline void set_items_0(RuntimeObject* value)
{
___items_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___items_0), (void*)value);
}
inline static int32_t get_offset_of__syncRoot_1() { return static_cast<int32_t>(offsetof(Collection_1_t71DBDD60829CD647D0C2B74C708518E5CAEDB942, ____syncRoot_1)); }
inline RuntimeObject * get__syncRoot_1() const { return ____syncRoot_1; }
inline RuntimeObject ** get_address_of__syncRoot_1() { return &____syncRoot_1; }
inline void set__syncRoot_1(RuntimeObject * value)
{
____syncRoot_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_1), (void*)value);
}
};
// System.Collections.ObjectModel.Collection`1<Valve.Newtonsoft.Json.Linq.JToken>
struct Collection_1_tE93A51FAD5C6E4AC1EA698A55BAC243AF37645E8 : public RuntimeObject
{
public:
// System.Collections.Generic.IList`1<T> System.Collections.ObjectModel.Collection`1::items
RuntimeObject* ___items_0;
// System.Object System.Collections.ObjectModel.Collection`1::_syncRoot
RuntimeObject * ____syncRoot_1;
public:
inline static int32_t get_offset_of_items_0() { return static_cast<int32_t>(offsetof(Collection_1_tE93A51FAD5C6E4AC1EA698A55BAC243AF37645E8, ___items_0)); }
inline RuntimeObject* get_items_0() const { return ___items_0; }
inline RuntimeObject** get_address_of_items_0() { return &___items_0; }
inline void set_items_0(RuntimeObject* value)
{
___items_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___items_0), (void*)value);
}
inline static int32_t get_offset_of__syncRoot_1() { return static_cast<int32_t>(offsetof(Collection_1_tE93A51FAD5C6E4AC1EA698A55BAC243AF37645E8, ____syncRoot_1)); }
inline RuntimeObject * get__syncRoot_1() const { return ____syncRoot_1; }
inline RuntimeObject ** get_address_of__syncRoot_1() { return &____syncRoot_1; }
inline void set__syncRoot_1(RuntimeObject * value)
{
____syncRoot_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_1), (void*)value);
}
};
// System.Collections.ObjectModel.Collection`1<Valve.Newtonsoft.Json.Serialization.JsonProperty>
struct Collection_1_t27A27EF9EF4861F4C42EECE795524A3B9959530A : public RuntimeObject
{
public:
// System.Collections.Generic.IList`1<T> System.Collections.ObjectModel.Collection`1::items
RuntimeObject* ___items_0;
// System.Object System.Collections.ObjectModel.Collection`1::_syncRoot
RuntimeObject * ____syncRoot_1;
public:
inline static int32_t get_offset_of_items_0() { return static_cast<int32_t>(offsetof(Collection_1_t27A27EF9EF4861F4C42EECE795524A3B9959530A, ___items_0)); }
inline RuntimeObject* get_items_0() const { return ___items_0; }
inline RuntimeObject** get_address_of_items_0() { return &___items_0; }
inline void set_items_0(RuntimeObject* value)
{
___items_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___items_0), (void*)value);
}
inline static int32_t get_offset_of__syncRoot_1() { return static_cast<int32_t>(offsetof(Collection_1_t27A27EF9EF4861F4C42EECE795524A3B9959530A, ____syncRoot_1)); }
inline RuntimeObject * get__syncRoot_1() const { return ____syncRoot_1; }
inline RuntimeObject ** get_address_of__syncRoot_1() { return &____syncRoot_1; }
inline void set__syncRoot_1(RuntimeObject * value)
{
____syncRoot_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_1), (void*)value);
}
};
// System.DBNull
struct DBNull_t7400E04939C2C29699B389B106997892BF53A8E5 : public RuntimeObject
{
public:
public:
};
struct DBNull_t7400E04939C2C29699B389B106997892BF53A8E5_StaticFields
{
public:
// System.DBNull System.DBNull::Value
DBNull_t7400E04939C2C29699B389B106997892BF53A8E5 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(DBNull_t7400E04939C2C29699B389B106997892BF53A8E5_StaticFields, ___Value_0)); }
inline DBNull_t7400E04939C2C29699B389B106997892BF53A8E5 * get_Value_0() const { return ___Value_0; }
inline DBNull_t7400E04939C2C29699B389B106997892BF53A8E5 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(DBNull_t7400E04939C2C29699B389B106997892BF53A8E5 * 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.MarshalByRefObject
struct MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF : public RuntimeObject
{
public:
// System.Object System.MarshalByRefObject::_identity
RuntimeObject * ____identity_0;
public:
inline static int32_t get_offset_of__identity_0() { return static_cast<int32_t>(offsetof(MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF, ____identity_0)); }
inline RuntimeObject * get__identity_0() const { return ____identity_0; }
inline RuntimeObject ** get_address_of__identity_0() { return &____identity_0; }
inline void set__identity_0(RuntimeObject * value)
{
____identity_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____identity_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.MarshalByRefObject
struct MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshaled_pinvoke
{
Il2CppIUnknown* ____identity_0;
};
// Native definition for COM marshalling of System.MarshalByRefObject
struct MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshaled_com
{
Il2CppIUnknown* ____identity_0;
};
// System.Reflection.Binder
struct Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 : public RuntimeObject
{
public:
public:
};
// System.Reflection.MemberInfo
struct MemberInfo_t : public RuntimeObject
{
public:
public:
};
// System.Runtime.Serialization.SerializationBinder
struct SerializationBinder_tB5EBAF328371FB7CF23E37F5984D8412762CFFA4 : public RuntimeObject
{
public:
public:
};
// 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.StringComparer
struct StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE : public RuntimeObject
{
public:
public:
};
struct StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_StaticFields
{
public:
// System.StringComparer System.StringComparer::_invariantCulture
StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * ____invariantCulture_0;
// System.StringComparer System.StringComparer::_invariantCultureIgnoreCase
StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * ____invariantCultureIgnoreCase_1;
// System.StringComparer System.StringComparer::_ordinal
StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * ____ordinal_2;
// System.StringComparer System.StringComparer::_ordinalIgnoreCase
StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * ____ordinalIgnoreCase_3;
public:
inline static int32_t get_offset_of__invariantCulture_0() { return static_cast<int32_t>(offsetof(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_StaticFields, ____invariantCulture_0)); }
inline StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * get__invariantCulture_0() const { return ____invariantCulture_0; }
inline StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE ** get_address_of__invariantCulture_0() { return &____invariantCulture_0; }
inline void set__invariantCulture_0(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * value)
{
____invariantCulture_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____invariantCulture_0), (void*)value);
}
inline static int32_t get_offset_of__invariantCultureIgnoreCase_1() { return static_cast<int32_t>(offsetof(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_StaticFields, ____invariantCultureIgnoreCase_1)); }
inline StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * get__invariantCultureIgnoreCase_1() const { return ____invariantCultureIgnoreCase_1; }
inline StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE ** get_address_of__invariantCultureIgnoreCase_1() { return &____invariantCultureIgnoreCase_1; }
inline void set__invariantCultureIgnoreCase_1(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * value)
{
____invariantCultureIgnoreCase_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____invariantCultureIgnoreCase_1), (void*)value);
}
inline static int32_t get_offset_of__ordinal_2() { return static_cast<int32_t>(offsetof(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_StaticFields, ____ordinal_2)); }
inline StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * get__ordinal_2() const { return ____ordinal_2; }
inline StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE ** get_address_of__ordinal_2() { return &____ordinal_2; }
inline void set__ordinal_2(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * value)
{
____ordinal_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____ordinal_2), (void*)value);
}
inline static int32_t get_offset_of__ordinalIgnoreCase_3() { return static_cast<int32_t>(offsetof(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_StaticFields, ____ordinalIgnoreCase_3)); }
inline StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * get__ordinalIgnoreCase_3() const { return ____ordinalIgnoreCase_3; }
inline StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE ** get_address_of__ordinalIgnoreCase_3() { return &____ordinalIgnoreCase_3; }
inline void set__ordinalIgnoreCase_3(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * value)
{
____ordinalIgnoreCase_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____ordinalIgnoreCase_3), (void*)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
{
};
// Valve.Newtonsoft.Json.JsonConvert
struct JsonConvert_t57930AECB47BF08A72A9CF1CCC7547869F91857D : public RuntimeObject
{
public:
public:
};
struct JsonConvert_t57930AECB47BF08A72A9CF1CCC7547869F91857D_StaticFields
{
public:
// System.Func`1<Valve.Newtonsoft.Json.JsonSerializerSettings> Valve.Newtonsoft.Json.JsonConvert::<DefaultSettings>k__BackingField
Func_1_t3CEBF86E0635EABFE16B2FB2AE427AFF966C1E62 * ___U3CDefaultSettingsU3Ek__BackingField_0;
// System.String Valve.Newtonsoft.Json.JsonConvert::True
String_t* ___True_1;
// System.String Valve.Newtonsoft.Json.JsonConvert::False
String_t* ___False_2;
// System.String Valve.Newtonsoft.Json.JsonConvert::Null
String_t* ___Null_3;
// System.String Valve.Newtonsoft.Json.JsonConvert::Undefined
String_t* ___Undefined_4;
// System.String Valve.Newtonsoft.Json.JsonConvert::PositiveInfinity
String_t* ___PositiveInfinity_5;
// System.String Valve.Newtonsoft.Json.JsonConvert::NegativeInfinity
String_t* ___NegativeInfinity_6;
// System.String Valve.Newtonsoft.Json.JsonConvert::NaN
String_t* ___NaN_7;
public:
inline static int32_t get_offset_of_U3CDefaultSettingsU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(JsonConvert_t57930AECB47BF08A72A9CF1CCC7547869F91857D_StaticFields, ___U3CDefaultSettingsU3Ek__BackingField_0)); }
inline Func_1_t3CEBF86E0635EABFE16B2FB2AE427AFF966C1E62 * get_U3CDefaultSettingsU3Ek__BackingField_0() const { return ___U3CDefaultSettingsU3Ek__BackingField_0; }
inline Func_1_t3CEBF86E0635EABFE16B2FB2AE427AFF966C1E62 ** get_address_of_U3CDefaultSettingsU3Ek__BackingField_0() { return &___U3CDefaultSettingsU3Ek__BackingField_0; }
inline void set_U3CDefaultSettingsU3Ek__BackingField_0(Func_1_t3CEBF86E0635EABFE16B2FB2AE427AFF966C1E62 * value)
{
___U3CDefaultSettingsU3Ek__BackingField_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CDefaultSettingsU3Ek__BackingField_0), (void*)value);
}
inline static int32_t get_offset_of_True_1() { return static_cast<int32_t>(offsetof(JsonConvert_t57930AECB47BF08A72A9CF1CCC7547869F91857D_StaticFields, ___True_1)); }
inline String_t* get_True_1() const { return ___True_1; }
inline String_t** get_address_of_True_1() { return &___True_1; }
inline void set_True_1(String_t* value)
{
___True_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___True_1), (void*)value);
}
inline static int32_t get_offset_of_False_2() { return static_cast<int32_t>(offsetof(JsonConvert_t57930AECB47BF08A72A9CF1CCC7547869F91857D_StaticFields, ___False_2)); }
inline String_t* get_False_2() const { return ___False_2; }
inline String_t** get_address_of_False_2() { return &___False_2; }
inline void set_False_2(String_t* value)
{
___False_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___False_2), (void*)value);
}
inline static int32_t get_offset_of_Null_3() { return static_cast<int32_t>(offsetof(JsonConvert_t57930AECB47BF08A72A9CF1CCC7547869F91857D_StaticFields, ___Null_3)); }
inline String_t* get_Null_3() const { return ___Null_3; }
inline String_t** get_address_of_Null_3() { return &___Null_3; }
inline void set_Null_3(String_t* value)
{
___Null_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Null_3), (void*)value);
}
inline static int32_t get_offset_of_Undefined_4() { return static_cast<int32_t>(offsetof(JsonConvert_t57930AECB47BF08A72A9CF1CCC7547869F91857D_StaticFields, ___Undefined_4)); }
inline String_t* get_Undefined_4() const { return ___Undefined_4; }
inline String_t** get_address_of_Undefined_4() { return &___Undefined_4; }
inline void set_Undefined_4(String_t* value)
{
___Undefined_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Undefined_4), (void*)value);
}
inline static int32_t get_offset_of_PositiveInfinity_5() { return static_cast<int32_t>(offsetof(JsonConvert_t57930AECB47BF08A72A9CF1CCC7547869F91857D_StaticFields, ___PositiveInfinity_5)); }
inline String_t* get_PositiveInfinity_5() const { return ___PositiveInfinity_5; }
inline String_t** get_address_of_PositiveInfinity_5() { return &___PositiveInfinity_5; }
inline void set_PositiveInfinity_5(String_t* value)
{
___PositiveInfinity_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___PositiveInfinity_5), (void*)value);
}
inline static int32_t get_offset_of_NegativeInfinity_6() { return static_cast<int32_t>(offsetof(JsonConvert_t57930AECB47BF08A72A9CF1CCC7547869F91857D_StaticFields, ___NegativeInfinity_6)); }
inline String_t* get_NegativeInfinity_6() const { return ___NegativeInfinity_6; }
inline String_t** get_address_of_NegativeInfinity_6() { return &___NegativeInfinity_6; }
inline void set_NegativeInfinity_6(String_t* value)
{
___NegativeInfinity_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___NegativeInfinity_6), (void*)value);
}
inline static int32_t get_offset_of_NaN_7() { return static_cast<int32_t>(offsetof(JsonConvert_t57930AECB47BF08A72A9CF1CCC7547869F91857D_StaticFields, ___NaN_7)); }
inline String_t* get_NaN_7() const { return ___NaN_7; }
inline String_t** get_address_of_NaN_7() { return &___NaN_7; }
inline void set_NaN_7(String_t* value)
{
___NaN_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___NaN_7), (void*)value);
}
};
// Valve.Newtonsoft.Json.JsonConverter
struct JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 : public RuntimeObject
{
public:
public:
};
// Valve.Newtonsoft.Json.Linq.JProperty_JPropertyList
struct JPropertyList_t134608E64E62337A93C6668B1266F077ABBA87A7 : public RuntimeObject
{
public:
// Valve.Newtonsoft.Json.Linq.JToken Valve.Newtonsoft.Json.Linq.JProperty_JPropertyList::_token
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ____token_0;
public:
inline static int32_t get_offset_of__token_0() { return static_cast<int32_t>(offsetof(JPropertyList_t134608E64E62337A93C6668B1266F077ABBA87A7, ____token_0)); }
inline JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * get__token_0() const { return ____token_0; }
inline JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 ** get_address_of__token_0() { return &____token_0; }
inline void set__token_0(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * value)
{
____token_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____token_0), (void*)value);
}
};
// Valve.Newtonsoft.Json.Linq.JProperty_JPropertyList_<GetEnumerator>d__1
struct U3CGetEnumeratorU3Ed__1_tC1FEADB7666AE584966BE3173BB361B41F66278B : public RuntimeObject
{
public:
// System.Int32 Valve.Newtonsoft.Json.Linq.JProperty_JPropertyList_<GetEnumerator>d__1::<>1__state
int32_t ___U3CU3E1__state_0;
// Valve.Newtonsoft.Json.Linq.JToken Valve.Newtonsoft.Json.Linq.JProperty_JPropertyList_<GetEnumerator>d__1::<>2__current
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___U3CU3E2__current_1;
// Valve.Newtonsoft.Json.Linq.JProperty_JPropertyList Valve.Newtonsoft.Json.Linq.JProperty_JPropertyList_<GetEnumerator>d__1::<>4__this
JPropertyList_t134608E64E62337A93C6668B1266F077ABBA87A7 * ___U3CU3E4__this_2;
public:
inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CGetEnumeratorU3Ed__1_tC1FEADB7666AE584966BE3173BB361B41F66278B, ___U3CU3E1__state_0)); }
inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; }
inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; }
inline void set_U3CU3E1__state_0(int32_t value)
{
___U3CU3E1__state_0 = value;
}
inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3CGetEnumeratorU3Ed__1_tC1FEADB7666AE584966BE3173BB361B41F66278B, ___U3CU3E2__current_1)); }
inline JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; }
inline JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; }
inline void set_U3CU3E2__current_1(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * value)
{
___U3CU3E2__current_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E4__this_2() { return static_cast<int32_t>(offsetof(U3CGetEnumeratorU3Ed__1_tC1FEADB7666AE584966BE3173BB361B41F66278B, ___U3CU3E4__this_2)); }
inline JPropertyList_t134608E64E62337A93C6668B1266F077ABBA87A7 * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; }
inline JPropertyList_t134608E64E62337A93C6668B1266F077ABBA87A7 ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; }
inline void set_U3CU3E4__this_2(JPropertyList_t134608E64E62337A93C6668B1266F077ABBA87A7 * value)
{
___U3CU3E4__this_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_2), (void*)value);
}
};
// Valve.Newtonsoft.Json.Linq.JToken
struct JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 : public RuntimeObject
{
public:
// Valve.Newtonsoft.Json.Linq.JContainer Valve.Newtonsoft.Json.Linq.JToken::_parent
JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * ____parent_0;
// Valve.Newtonsoft.Json.Linq.JToken Valve.Newtonsoft.Json.Linq.JToken::_previous
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ____previous_1;
// Valve.Newtonsoft.Json.Linq.JToken Valve.Newtonsoft.Json.Linq.JToken::_next
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ____next_2;
// System.Object Valve.Newtonsoft.Json.Linq.JToken::_annotations
RuntimeObject * ____annotations_3;
public:
inline static int32_t get_offset_of__parent_0() { return static_cast<int32_t>(offsetof(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2, ____parent_0)); }
inline JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * get__parent_0() const { return ____parent_0; }
inline JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC ** get_address_of__parent_0() { return &____parent_0; }
inline void set__parent_0(JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * value)
{
____parent_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____parent_0), (void*)value);
}
inline static int32_t get_offset_of__previous_1() { return static_cast<int32_t>(offsetof(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2, ____previous_1)); }
inline JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * get__previous_1() const { return ____previous_1; }
inline JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 ** get_address_of__previous_1() { return &____previous_1; }
inline void set__previous_1(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * value)
{
____previous_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____previous_1), (void*)value);
}
inline static int32_t get_offset_of__next_2() { return static_cast<int32_t>(offsetof(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2, ____next_2)); }
inline JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * get__next_2() const { return ____next_2; }
inline JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 ** get_address_of__next_2() { return &____next_2; }
inline void set__next_2(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * value)
{
____next_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____next_2), (void*)value);
}
inline static int32_t get_offset_of__annotations_3() { return static_cast<int32_t>(offsetof(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2, ____annotations_3)); }
inline RuntimeObject * get__annotations_3() const { return ____annotations_3; }
inline RuntimeObject ** get_address_of__annotations_3() { return &____annotations_3; }
inline void set__annotations_3(RuntimeObject * value)
{
____annotations_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____annotations_3), (void*)value);
}
};
struct JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_StaticFields
{
public:
// Valve.Newtonsoft.Json.Linq.JTokenType[] Valve.Newtonsoft.Json.Linq.JToken::BooleanTypes
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* ___BooleanTypes_4;
// Valve.Newtonsoft.Json.Linq.JTokenType[] Valve.Newtonsoft.Json.Linq.JToken::NumberTypes
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* ___NumberTypes_5;
// Valve.Newtonsoft.Json.Linq.JTokenType[] Valve.Newtonsoft.Json.Linq.JToken::StringTypes
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* ___StringTypes_6;
// Valve.Newtonsoft.Json.Linq.JTokenType[] Valve.Newtonsoft.Json.Linq.JToken::GuidTypes
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* ___GuidTypes_7;
// Valve.Newtonsoft.Json.Linq.JTokenType[] Valve.Newtonsoft.Json.Linq.JToken::TimeSpanTypes
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* ___TimeSpanTypes_8;
// Valve.Newtonsoft.Json.Linq.JTokenType[] Valve.Newtonsoft.Json.Linq.JToken::UriTypes
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* ___UriTypes_9;
// Valve.Newtonsoft.Json.Linq.JTokenType[] Valve.Newtonsoft.Json.Linq.JToken::CharTypes
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* ___CharTypes_10;
// Valve.Newtonsoft.Json.Linq.JTokenType[] Valve.Newtonsoft.Json.Linq.JToken::DateTimeTypes
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* ___DateTimeTypes_11;
// Valve.Newtonsoft.Json.Linq.JTokenType[] Valve.Newtonsoft.Json.Linq.JToken::BytesTypes
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* ___BytesTypes_12;
public:
inline static int32_t get_offset_of_BooleanTypes_4() { return static_cast<int32_t>(offsetof(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_StaticFields, ___BooleanTypes_4)); }
inline JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* get_BooleanTypes_4() const { return ___BooleanTypes_4; }
inline JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B** get_address_of_BooleanTypes_4() { return &___BooleanTypes_4; }
inline void set_BooleanTypes_4(JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* value)
{
___BooleanTypes_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___BooleanTypes_4), (void*)value);
}
inline static int32_t get_offset_of_NumberTypes_5() { return static_cast<int32_t>(offsetof(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_StaticFields, ___NumberTypes_5)); }
inline JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* get_NumberTypes_5() const { return ___NumberTypes_5; }
inline JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B** get_address_of_NumberTypes_5() { return &___NumberTypes_5; }
inline void set_NumberTypes_5(JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* value)
{
___NumberTypes_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___NumberTypes_5), (void*)value);
}
inline static int32_t get_offset_of_StringTypes_6() { return static_cast<int32_t>(offsetof(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_StaticFields, ___StringTypes_6)); }
inline JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* get_StringTypes_6() const { return ___StringTypes_6; }
inline JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B** get_address_of_StringTypes_6() { return &___StringTypes_6; }
inline void set_StringTypes_6(JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* value)
{
___StringTypes_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___StringTypes_6), (void*)value);
}
inline static int32_t get_offset_of_GuidTypes_7() { return static_cast<int32_t>(offsetof(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_StaticFields, ___GuidTypes_7)); }
inline JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* get_GuidTypes_7() const { return ___GuidTypes_7; }
inline JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B** get_address_of_GuidTypes_7() { return &___GuidTypes_7; }
inline void set_GuidTypes_7(JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* value)
{
___GuidTypes_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___GuidTypes_7), (void*)value);
}
inline static int32_t get_offset_of_TimeSpanTypes_8() { return static_cast<int32_t>(offsetof(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_StaticFields, ___TimeSpanTypes_8)); }
inline JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* get_TimeSpanTypes_8() const { return ___TimeSpanTypes_8; }
inline JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B** get_address_of_TimeSpanTypes_8() { return &___TimeSpanTypes_8; }
inline void set_TimeSpanTypes_8(JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* value)
{
___TimeSpanTypes_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___TimeSpanTypes_8), (void*)value);
}
inline static int32_t get_offset_of_UriTypes_9() { return static_cast<int32_t>(offsetof(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_StaticFields, ___UriTypes_9)); }
inline JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* get_UriTypes_9() const { return ___UriTypes_9; }
inline JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B** get_address_of_UriTypes_9() { return &___UriTypes_9; }
inline void set_UriTypes_9(JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* value)
{
___UriTypes_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___UriTypes_9), (void*)value);
}
inline static int32_t get_offset_of_CharTypes_10() { return static_cast<int32_t>(offsetof(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_StaticFields, ___CharTypes_10)); }
inline JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* get_CharTypes_10() const { return ___CharTypes_10; }
inline JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B** get_address_of_CharTypes_10() { return &___CharTypes_10; }
inline void set_CharTypes_10(JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* value)
{
___CharTypes_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___CharTypes_10), (void*)value);
}
inline static int32_t get_offset_of_DateTimeTypes_11() { return static_cast<int32_t>(offsetof(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_StaticFields, ___DateTimeTypes_11)); }
inline JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* get_DateTimeTypes_11() const { return ___DateTimeTypes_11; }
inline JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B** get_address_of_DateTimeTypes_11() { return &___DateTimeTypes_11; }
inline void set_DateTimeTypes_11(JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* value)
{
___DateTimeTypes_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___DateTimeTypes_11), (void*)value);
}
inline static int32_t get_offset_of_BytesTypes_12() { return static_cast<int32_t>(offsetof(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_StaticFields, ___BytesTypes_12)); }
inline JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* get_BytesTypes_12() const { return ___BytesTypes_12; }
inline JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B** get_address_of_BytesTypes_12() { return &___BytesTypes_12; }
inline void set_BytesTypes_12(JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* value)
{
___BytesTypes_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___BytesTypes_12), (void*)value);
}
};
// Valve.Newtonsoft.Json.Linq.JToken_LineInfoAnnotation
struct LineInfoAnnotation_tC3E34194A1BD45715FC51B0CBEE0ECD100E90D38 : public RuntimeObject
{
public:
// System.Int32 Valve.Newtonsoft.Json.Linq.JToken_LineInfoAnnotation::LineNumber
int32_t ___LineNumber_0;
// System.Int32 Valve.Newtonsoft.Json.Linq.JToken_LineInfoAnnotation::LinePosition
int32_t ___LinePosition_1;
public:
inline static int32_t get_offset_of_LineNumber_0() { return static_cast<int32_t>(offsetof(LineInfoAnnotation_tC3E34194A1BD45715FC51B0CBEE0ECD100E90D38, ___LineNumber_0)); }
inline int32_t get_LineNumber_0() const { return ___LineNumber_0; }
inline int32_t* get_address_of_LineNumber_0() { return &___LineNumber_0; }
inline void set_LineNumber_0(int32_t value)
{
___LineNumber_0 = value;
}
inline static int32_t get_offset_of_LinePosition_1() { return static_cast<int32_t>(offsetof(LineInfoAnnotation_tC3E34194A1BD45715FC51B0CBEE0ECD100E90D38, ___LinePosition_1)); }
inline int32_t get_LinePosition_1() const { return ___LinePosition_1; }
inline int32_t* get_address_of_LinePosition_1() { return &___LinePosition_1; }
inline void set_LinePosition_1(int32_t value)
{
___LinePosition_1 = value;
}
};
// Valve.Newtonsoft.Json.Serialization.DefaultContractResolver_<>c
struct U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A : public RuntimeObject
{
public:
public:
};
struct U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A_StaticFields
{
public:
// Valve.Newtonsoft.Json.Serialization.DefaultContractResolver_<>c Valve.Newtonsoft.Json.Serialization.DefaultContractResolver_<>c::<>9
U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A * ___U3CU3E9_0;
// System.Func`2<System.Reflection.MemberInfo,System.Boolean> Valve.Newtonsoft.Json.Serialization.DefaultContractResolver_<>c::<>9__34_0
Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422 * ___U3CU3E9__34_0_1;
// System.Func`2<System.Reflection.MemberInfo,System.Boolean> Valve.Newtonsoft.Json.Serialization.DefaultContractResolver_<>c::<>9__34_1
Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422 * ___U3CU3E9__34_1_2;
// System.Func`2<System.Type,System.Collections.Generic.IEnumerable`1<System.Reflection.MemberInfo>> Valve.Newtonsoft.Json.Serialization.DefaultContractResolver_<>c::<>9__37_0
Func_2_t29F202ACCD37C598BCE6BF369E5B1493D173132A * ___U3CU3E9__37_0_3;
// System.Func`2<System.Reflection.MemberInfo,System.Boolean> Valve.Newtonsoft.Json.Serialization.DefaultContractResolver_<>c::<>9__37_1
Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422 * ___U3CU3E9__37_1_4;
// System.Func`2<System.Reflection.ConstructorInfo,System.Boolean> Valve.Newtonsoft.Json.Serialization.DefaultContractResolver_<>c::<>9__40_0
Func_2_tE50BC1D78F3969472F5276AA4812403240D166E3 * ___U3CU3E9__40_0_5;
// System.Func`2<Valve.Newtonsoft.Json.Serialization.JsonProperty,System.Int32> Valve.Newtonsoft.Json.Serialization.DefaultContractResolver_<>c::<>9__64_0
Func_2_t1659F01642289131579A99DC37C5A348E7091892 * ___U3CU3E9__64_0_6;
public:
inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast<int32_t>(offsetof(U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A_StaticFields, ___U3CU3E9_0)); }
inline U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A * get_U3CU3E9_0() const { return ___U3CU3E9_0; }
inline U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; }
inline void set_U3CU3E9_0(U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A * value)
{
___U3CU3E9_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__34_0_1() { return static_cast<int32_t>(offsetof(U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A_StaticFields, ___U3CU3E9__34_0_1)); }
inline Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422 * get_U3CU3E9__34_0_1() const { return ___U3CU3E9__34_0_1; }
inline Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422 ** get_address_of_U3CU3E9__34_0_1() { return &___U3CU3E9__34_0_1; }
inline void set_U3CU3E9__34_0_1(Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422 * value)
{
___U3CU3E9__34_0_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__34_0_1), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__34_1_2() { return static_cast<int32_t>(offsetof(U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A_StaticFields, ___U3CU3E9__34_1_2)); }
inline Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422 * get_U3CU3E9__34_1_2() const { return ___U3CU3E9__34_1_2; }
inline Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422 ** get_address_of_U3CU3E9__34_1_2() { return &___U3CU3E9__34_1_2; }
inline void set_U3CU3E9__34_1_2(Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422 * value)
{
___U3CU3E9__34_1_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__34_1_2), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__37_0_3() { return static_cast<int32_t>(offsetof(U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A_StaticFields, ___U3CU3E9__37_0_3)); }
inline Func_2_t29F202ACCD37C598BCE6BF369E5B1493D173132A * get_U3CU3E9__37_0_3() const { return ___U3CU3E9__37_0_3; }
inline Func_2_t29F202ACCD37C598BCE6BF369E5B1493D173132A ** get_address_of_U3CU3E9__37_0_3() { return &___U3CU3E9__37_0_3; }
inline void set_U3CU3E9__37_0_3(Func_2_t29F202ACCD37C598BCE6BF369E5B1493D173132A * value)
{
___U3CU3E9__37_0_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__37_0_3), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__37_1_4() { return static_cast<int32_t>(offsetof(U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A_StaticFields, ___U3CU3E9__37_1_4)); }
inline Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422 * get_U3CU3E9__37_1_4() const { return ___U3CU3E9__37_1_4; }
inline Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422 ** get_address_of_U3CU3E9__37_1_4() { return &___U3CU3E9__37_1_4; }
inline void set_U3CU3E9__37_1_4(Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422 * value)
{
___U3CU3E9__37_1_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__37_1_4), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__40_0_5() { return static_cast<int32_t>(offsetof(U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A_StaticFields, ___U3CU3E9__40_0_5)); }
inline Func_2_tE50BC1D78F3969472F5276AA4812403240D166E3 * get_U3CU3E9__40_0_5() const { return ___U3CU3E9__40_0_5; }
inline Func_2_tE50BC1D78F3969472F5276AA4812403240D166E3 ** get_address_of_U3CU3E9__40_0_5() { return &___U3CU3E9__40_0_5; }
inline void set_U3CU3E9__40_0_5(Func_2_tE50BC1D78F3969472F5276AA4812403240D166E3 * value)
{
___U3CU3E9__40_0_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__40_0_5), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__64_0_6() { return static_cast<int32_t>(offsetof(U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A_StaticFields, ___U3CU3E9__64_0_6)); }
inline Func_2_t1659F01642289131579A99DC37C5A348E7091892 * get_U3CU3E9__64_0_6() const { return ___U3CU3E9__64_0_6; }
inline Func_2_t1659F01642289131579A99DC37C5A348E7091892 ** get_address_of_U3CU3E9__64_0_6() { return &___U3CU3E9__64_0_6; }
inline void set_U3CU3E9__64_0_6(Func_2_t1659F01642289131579A99DC37C5A348E7091892 * value)
{
___U3CU3E9__64_0_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__64_0_6), (void*)value);
}
};
// Valve.Newtonsoft.Json.Serialization.DefaultContractResolver_<>c__DisplayClass38_0
struct U3CU3Ec__DisplayClass38_0_t31ED35E7ECFD78ECE1228AF29488F148585F4667 : public RuntimeObject
{
public:
// System.Func`2<System.Object,System.Object> Valve.Newtonsoft.Json.Serialization.DefaultContractResolver_<>c__DisplayClass38_0::getExtensionDataDictionary
Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 * ___getExtensionDataDictionary_0;
// System.Reflection.MemberInfo Valve.Newtonsoft.Json.Serialization.DefaultContractResolver_<>c__DisplayClass38_0::member
MemberInfo_t * ___member_1;
public:
inline static int32_t get_offset_of_getExtensionDataDictionary_0() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass38_0_t31ED35E7ECFD78ECE1228AF29488F148585F4667, ___getExtensionDataDictionary_0)); }
inline Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 * get_getExtensionDataDictionary_0() const { return ___getExtensionDataDictionary_0; }
inline Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 ** get_address_of_getExtensionDataDictionary_0() { return &___getExtensionDataDictionary_0; }
inline void set_getExtensionDataDictionary_0(Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 * value)
{
___getExtensionDataDictionary_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getExtensionDataDictionary_0), (void*)value);
}
inline static int32_t get_offset_of_member_1() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass38_0_t31ED35E7ECFD78ECE1228AF29488F148585F4667, ___member_1)); }
inline MemberInfo_t * get_member_1() const { return ___member_1; }
inline MemberInfo_t ** get_address_of_member_1() { return &___member_1; }
inline void set_member_1(MemberInfo_t * value)
{
___member_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___member_1), (void*)value);
}
};
// Valve.Newtonsoft.Json.Serialization.DefaultContractResolver_<>c__DisplayClass38_1
struct U3CU3Ec__DisplayClass38_1_tEB927264D5D83E106F29B33B1F933603E793D80E : public RuntimeObject
{
public:
// System.Action`2<System.Object,System.Object> Valve.Newtonsoft.Json.Serialization.DefaultContractResolver_<>c__DisplayClass38_1::setExtensionDataDictionary
Action_2_t0DB6FD6F515527EAB552B690A291778C6F00D48C * ___setExtensionDataDictionary_0;
// System.Func`1<System.Object> Valve.Newtonsoft.Json.Serialization.DefaultContractResolver_<>c__DisplayClass38_1::createExtensionDataDictionary
Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 * ___createExtensionDataDictionary_1;
// Valve.Newtonsoft.Json.Utilities.MethodCall`2<System.Object,System.Object> Valve.Newtonsoft.Json.Serialization.DefaultContractResolver_<>c__DisplayClass38_1::setExtensionDataDictionaryValue
MethodCall_2_t56986CA125FFF5F08B7842782AF0C0E8499096EC * ___setExtensionDataDictionaryValue_2;
// Valve.Newtonsoft.Json.Serialization.DefaultContractResolver_<>c__DisplayClass38_0 Valve.Newtonsoft.Json.Serialization.DefaultContractResolver_<>c__DisplayClass38_1::CSU24<>8__locals1
U3CU3Ec__DisplayClass38_0_t31ED35E7ECFD78ECE1228AF29488F148585F4667 * ___CSU24U3CU3E8__locals1_3;
public:
inline static int32_t get_offset_of_setExtensionDataDictionary_0() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass38_1_tEB927264D5D83E106F29B33B1F933603E793D80E, ___setExtensionDataDictionary_0)); }
inline Action_2_t0DB6FD6F515527EAB552B690A291778C6F00D48C * get_setExtensionDataDictionary_0() const { return ___setExtensionDataDictionary_0; }
inline Action_2_t0DB6FD6F515527EAB552B690A291778C6F00D48C ** get_address_of_setExtensionDataDictionary_0() { return &___setExtensionDataDictionary_0; }
inline void set_setExtensionDataDictionary_0(Action_2_t0DB6FD6F515527EAB552B690A291778C6F00D48C * value)
{
___setExtensionDataDictionary_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___setExtensionDataDictionary_0), (void*)value);
}
inline static int32_t get_offset_of_createExtensionDataDictionary_1() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass38_1_tEB927264D5D83E106F29B33B1F933603E793D80E, ___createExtensionDataDictionary_1)); }
inline Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 * get_createExtensionDataDictionary_1() const { return ___createExtensionDataDictionary_1; }
inline Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 ** get_address_of_createExtensionDataDictionary_1() { return &___createExtensionDataDictionary_1; }
inline void set_createExtensionDataDictionary_1(Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 * value)
{
___createExtensionDataDictionary_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___createExtensionDataDictionary_1), (void*)value);
}
inline static int32_t get_offset_of_setExtensionDataDictionaryValue_2() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass38_1_tEB927264D5D83E106F29B33B1F933603E793D80E, ___setExtensionDataDictionaryValue_2)); }
inline MethodCall_2_t56986CA125FFF5F08B7842782AF0C0E8499096EC * get_setExtensionDataDictionaryValue_2() const { return ___setExtensionDataDictionaryValue_2; }
inline MethodCall_2_t56986CA125FFF5F08B7842782AF0C0E8499096EC ** get_address_of_setExtensionDataDictionaryValue_2() { return &___setExtensionDataDictionaryValue_2; }
inline void set_setExtensionDataDictionaryValue_2(MethodCall_2_t56986CA125FFF5F08B7842782AF0C0E8499096EC * value)
{
___setExtensionDataDictionaryValue_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___setExtensionDataDictionaryValue_2), (void*)value);
}
inline static int32_t get_offset_of_CSU24U3CU3E8__locals1_3() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass38_1_tEB927264D5D83E106F29B33B1F933603E793D80E, ___CSU24U3CU3E8__locals1_3)); }
inline U3CU3Ec__DisplayClass38_0_t31ED35E7ECFD78ECE1228AF29488F148585F4667 * get_CSU24U3CU3E8__locals1_3() const { return ___CSU24U3CU3E8__locals1_3; }
inline U3CU3Ec__DisplayClass38_0_t31ED35E7ECFD78ECE1228AF29488F148585F4667 ** get_address_of_CSU24U3CU3E8__locals1_3() { return &___CSU24U3CU3E8__locals1_3; }
inline void set_CSU24U3CU3E8__locals1_3(U3CU3Ec__DisplayClass38_0_t31ED35E7ECFD78ECE1228AF29488F148585F4667 * value)
{
___CSU24U3CU3E8__locals1_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___CSU24U3CU3E8__locals1_3), (void*)value);
}
};
// Valve.Newtonsoft.Json.Serialization.DefaultContractResolver_<>c__DisplayClass38_2
struct U3CU3Ec__DisplayClass38_2_t8AE307029E0A48708782194185E7E43CE1EAAD60 : public RuntimeObject
{
public:
// Valve.Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object> Valve.Newtonsoft.Json.Serialization.DefaultContractResolver_<>c__DisplayClass38_2::createEnumerableWrapper
ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 * ___createEnumerableWrapper_0;
// Valve.Newtonsoft.Json.Serialization.DefaultContractResolver_<>c__DisplayClass38_0 Valve.Newtonsoft.Json.Serialization.DefaultContractResolver_<>c__DisplayClass38_2::CSU24<>8__locals2
U3CU3Ec__DisplayClass38_0_t31ED35E7ECFD78ECE1228AF29488F148585F4667 * ___CSU24U3CU3E8__locals2_1;
public:
inline static int32_t get_offset_of_createEnumerableWrapper_0() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass38_2_t8AE307029E0A48708782194185E7E43CE1EAAD60, ___createEnumerableWrapper_0)); }
inline ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 * get_createEnumerableWrapper_0() const { return ___createEnumerableWrapper_0; }
inline ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 ** get_address_of_createEnumerableWrapper_0() { return &___createEnumerableWrapper_0; }
inline void set_createEnumerableWrapper_0(ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 * value)
{
___createEnumerableWrapper_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___createEnumerableWrapper_0), (void*)value);
}
inline static int32_t get_offset_of_CSU24U3CU3E8__locals2_1() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass38_2_t8AE307029E0A48708782194185E7E43CE1EAAD60, ___CSU24U3CU3E8__locals2_1)); }
inline U3CU3Ec__DisplayClass38_0_t31ED35E7ECFD78ECE1228AF29488F148585F4667 * get_CSU24U3CU3E8__locals2_1() const { return ___CSU24U3CU3E8__locals2_1; }
inline U3CU3Ec__DisplayClass38_0_t31ED35E7ECFD78ECE1228AF29488F148585F4667 ** get_address_of_CSU24U3CU3E8__locals2_1() { return &___CSU24U3CU3E8__locals2_1; }
inline void set_CSU24U3CU3E8__locals2_1(U3CU3Ec__DisplayClass38_0_t31ED35E7ECFD78ECE1228AF29488F148585F4667 * value)
{
___CSU24U3CU3E8__locals2_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___CSU24U3CU3E8__locals2_1), (void*)value);
}
};
// Valve.Newtonsoft.Json.Serialization.DefaultContractResolver_<>c__DisplayClass52_0
struct U3CU3Ec__DisplayClass52_0_t5662E89E4E0071A8350BC73F90FAA92457EC2F91 : public RuntimeObject
{
public:
// Valve.Newtonsoft.Json.Serialization.NamingStrategy Valve.Newtonsoft.Json.Serialization.DefaultContractResolver_<>c__DisplayClass52_0::namingStrategy
NamingStrategy_tBB6F8138B49E9B2704F7B87BF9130378976B9B46 * ___namingStrategy_0;
public:
inline static int32_t get_offset_of_namingStrategy_0() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass52_0_t5662E89E4E0071A8350BC73F90FAA92457EC2F91, ___namingStrategy_0)); }
inline NamingStrategy_tBB6F8138B49E9B2704F7B87BF9130378976B9B46 * get_namingStrategy_0() const { return ___namingStrategy_0; }
inline NamingStrategy_tBB6F8138B49E9B2704F7B87BF9130378976B9B46 ** get_address_of_namingStrategy_0() { return &___namingStrategy_0; }
inline void set_namingStrategy_0(NamingStrategy_tBB6F8138B49E9B2704F7B87BF9130378976B9B46 * value)
{
___namingStrategy_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___namingStrategy_0), (void*)value);
}
};
// Valve.Newtonsoft.Json.Serialization.DefaultContractResolver_<>c__DisplayClass68_0
struct U3CU3Ec__DisplayClass68_0_t1E454C6A98ED08013AAE420DD137F8DC23C918B3 : public RuntimeObject
{
public:
// Valve.Newtonsoft.Json.Utilities.MethodCall`2<System.Object,System.Object> Valve.Newtonsoft.Json.Serialization.DefaultContractResolver_<>c__DisplayClass68_0::shouldSerializeCall
MethodCall_2_t56986CA125FFF5F08B7842782AF0C0E8499096EC * ___shouldSerializeCall_0;
public:
inline static int32_t get_offset_of_shouldSerializeCall_0() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass68_0_t1E454C6A98ED08013AAE420DD137F8DC23C918B3, ___shouldSerializeCall_0)); }
inline MethodCall_2_t56986CA125FFF5F08B7842782AF0C0E8499096EC * get_shouldSerializeCall_0() const { return ___shouldSerializeCall_0; }
inline MethodCall_2_t56986CA125FFF5F08B7842782AF0C0E8499096EC ** get_address_of_shouldSerializeCall_0() { return &___shouldSerializeCall_0; }
inline void set_shouldSerializeCall_0(MethodCall_2_t56986CA125FFF5F08B7842782AF0C0E8499096EC * value)
{
___shouldSerializeCall_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___shouldSerializeCall_0), (void*)value);
}
};
// Valve.Newtonsoft.Json.Serialization.DefaultContractResolver_<>c__DisplayClass69_0
struct U3CU3Ec__DisplayClass69_0_tF21BC3EDD90BFA18331A484ECF156E30EF474FCA : public RuntimeObject
{
public:
// System.Func`2<System.Object,System.Object> Valve.Newtonsoft.Json.Serialization.DefaultContractResolver_<>c__DisplayClass69_0::specifiedPropertyGet
Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 * ___specifiedPropertyGet_0;
public:
inline static int32_t get_offset_of_specifiedPropertyGet_0() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass69_0_tF21BC3EDD90BFA18331A484ECF156E30EF474FCA, ___specifiedPropertyGet_0)); }
inline Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 * get_specifiedPropertyGet_0() const { return ___specifiedPropertyGet_0; }
inline Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 ** get_address_of_specifiedPropertyGet_0() { return &___specifiedPropertyGet_0; }
inline void set_specifiedPropertyGet_0(Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 * value)
{
___specifiedPropertyGet_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___specifiedPropertyGet_0), (void*)value);
}
};
// Valve.Newtonsoft.Json.Serialization.DefaultContractResolverState
struct DefaultContractResolverState_t8B0D63DB1C8B5BA14A03ADBEF0EA1141B8604DE6 : public RuntimeObject
{
public:
// System.Collections.Generic.Dictionary`2<Valve.Newtonsoft.Json.Serialization.ResolverContractKey,Valve.Newtonsoft.Json.Serialization.JsonContract> Valve.Newtonsoft.Json.Serialization.DefaultContractResolverState::ContractCache
Dictionary_2_t3B0A775E26AFCA1B3A8DF100D5CB736C522494F7 * ___ContractCache_0;
// Valve.Newtonsoft.Json.Utilities.PropertyNameTable Valve.Newtonsoft.Json.Serialization.DefaultContractResolverState::NameTable
PropertyNameTable_t09D6FC2871D681080545544521201A5726C6610D * ___NameTable_1;
public:
inline static int32_t get_offset_of_ContractCache_0() { return static_cast<int32_t>(offsetof(DefaultContractResolverState_t8B0D63DB1C8B5BA14A03ADBEF0EA1141B8604DE6, ___ContractCache_0)); }
inline Dictionary_2_t3B0A775E26AFCA1B3A8DF100D5CB736C522494F7 * get_ContractCache_0() const { return ___ContractCache_0; }
inline Dictionary_2_t3B0A775E26AFCA1B3A8DF100D5CB736C522494F7 ** get_address_of_ContractCache_0() { return &___ContractCache_0; }
inline void set_ContractCache_0(Dictionary_2_t3B0A775E26AFCA1B3A8DF100D5CB736C522494F7 * value)
{
___ContractCache_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ContractCache_0), (void*)value);
}
inline static int32_t get_offset_of_NameTable_1() { return static_cast<int32_t>(offsetof(DefaultContractResolverState_t8B0D63DB1C8B5BA14A03ADBEF0EA1141B8604DE6, ___NameTable_1)); }
inline PropertyNameTable_t09D6FC2871D681080545544521201A5726C6610D * get_NameTable_1() const { return ___NameTable_1; }
inline PropertyNameTable_t09D6FC2871D681080545544521201A5726C6610D ** get_address_of_NameTable_1() { return &___NameTable_1; }
inline void set_NameTable_1(PropertyNameTable_t09D6FC2871D681080545544521201A5726C6610D * value)
{
___NameTable_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___NameTable_1), (void*)value);
}
};
// Valve.Newtonsoft.Json.Serialization.DefaultReferenceResolver
struct DefaultReferenceResolver_t1313CA0D668FADF15BF2ACA61C526B6FED83C977 : public RuntimeObject
{
public:
// System.Int32 Valve.Newtonsoft.Json.Serialization.DefaultReferenceResolver::_referenceCount
int32_t ____referenceCount_0;
public:
inline static int32_t get_offset_of__referenceCount_0() { return static_cast<int32_t>(offsetof(DefaultReferenceResolver_t1313CA0D668FADF15BF2ACA61C526B6FED83C977, ____referenceCount_0)); }
inline int32_t get__referenceCount_0() const { return ____referenceCount_0; }
inline int32_t* get_address_of__referenceCount_0() { return &____referenceCount_0; }
inline void set__referenceCount_0(int32_t value)
{
____referenceCount_0 = value;
}
};
// Valve.Newtonsoft.Json.Serialization.ErrorContext
struct ErrorContext_t61739A48B44A4707051088E7013FD4E347DBE7A0 : public RuntimeObject
{
public:
// System.Boolean Valve.Newtonsoft.Json.Serialization.ErrorContext::<Traced>k__BackingField
bool ___U3CTracedU3Ek__BackingField_0;
// System.Exception Valve.Newtonsoft.Json.Serialization.ErrorContext::<Error>k__BackingField
Exception_t * ___U3CErrorU3Ek__BackingField_1;
// System.Object Valve.Newtonsoft.Json.Serialization.ErrorContext::<OriginalObject>k__BackingField
RuntimeObject * ___U3COriginalObjectU3Ek__BackingField_2;
// System.Object Valve.Newtonsoft.Json.Serialization.ErrorContext::<Member>k__BackingField
RuntimeObject * ___U3CMemberU3Ek__BackingField_3;
// System.String Valve.Newtonsoft.Json.Serialization.ErrorContext::<Path>k__BackingField
String_t* ___U3CPathU3Ek__BackingField_4;
// System.Boolean Valve.Newtonsoft.Json.Serialization.ErrorContext::<Handled>k__BackingField
bool ___U3CHandledU3Ek__BackingField_5;
public:
inline static int32_t get_offset_of_U3CTracedU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(ErrorContext_t61739A48B44A4707051088E7013FD4E347DBE7A0, ___U3CTracedU3Ek__BackingField_0)); }
inline bool get_U3CTracedU3Ek__BackingField_0() const { return ___U3CTracedU3Ek__BackingField_0; }
inline bool* get_address_of_U3CTracedU3Ek__BackingField_0() { return &___U3CTracedU3Ek__BackingField_0; }
inline void set_U3CTracedU3Ek__BackingField_0(bool value)
{
___U3CTracedU3Ek__BackingField_0 = value;
}
inline static int32_t get_offset_of_U3CErrorU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(ErrorContext_t61739A48B44A4707051088E7013FD4E347DBE7A0, ___U3CErrorU3Ek__BackingField_1)); }
inline Exception_t * get_U3CErrorU3Ek__BackingField_1() const { return ___U3CErrorU3Ek__BackingField_1; }
inline Exception_t ** get_address_of_U3CErrorU3Ek__BackingField_1() { return &___U3CErrorU3Ek__BackingField_1; }
inline void set_U3CErrorU3Ek__BackingField_1(Exception_t * value)
{
___U3CErrorU3Ek__BackingField_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CErrorU3Ek__BackingField_1), (void*)value);
}
inline static int32_t get_offset_of_U3COriginalObjectU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(ErrorContext_t61739A48B44A4707051088E7013FD4E347DBE7A0, ___U3COriginalObjectU3Ek__BackingField_2)); }
inline RuntimeObject * get_U3COriginalObjectU3Ek__BackingField_2() const { return ___U3COriginalObjectU3Ek__BackingField_2; }
inline RuntimeObject ** get_address_of_U3COriginalObjectU3Ek__BackingField_2() { return &___U3COriginalObjectU3Ek__BackingField_2; }
inline void set_U3COriginalObjectU3Ek__BackingField_2(RuntimeObject * value)
{
___U3COriginalObjectU3Ek__BackingField_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3COriginalObjectU3Ek__BackingField_2), (void*)value);
}
inline static int32_t get_offset_of_U3CMemberU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(ErrorContext_t61739A48B44A4707051088E7013FD4E347DBE7A0, ___U3CMemberU3Ek__BackingField_3)); }
inline RuntimeObject * get_U3CMemberU3Ek__BackingField_3() const { return ___U3CMemberU3Ek__BackingField_3; }
inline RuntimeObject ** get_address_of_U3CMemberU3Ek__BackingField_3() { return &___U3CMemberU3Ek__BackingField_3; }
inline void set_U3CMemberU3Ek__BackingField_3(RuntimeObject * value)
{
___U3CMemberU3Ek__BackingField_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CMemberU3Ek__BackingField_3), (void*)value);
}
inline static int32_t get_offset_of_U3CPathU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(ErrorContext_t61739A48B44A4707051088E7013FD4E347DBE7A0, ___U3CPathU3Ek__BackingField_4)); }
inline String_t* get_U3CPathU3Ek__BackingField_4() const { return ___U3CPathU3Ek__BackingField_4; }
inline String_t** get_address_of_U3CPathU3Ek__BackingField_4() { return &___U3CPathU3Ek__BackingField_4; }
inline void set_U3CPathU3Ek__BackingField_4(String_t* value)
{
___U3CPathU3Ek__BackingField_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CPathU3Ek__BackingField_4), (void*)value);
}
inline static int32_t get_offset_of_U3CHandledU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(ErrorContext_t61739A48B44A4707051088E7013FD4E347DBE7A0, ___U3CHandledU3Ek__BackingField_5)); }
inline bool get_U3CHandledU3Ek__BackingField_5() const { return ___U3CHandledU3Ek__BackingField_5; }
inline bool* get_address_of_U3CHandledU3Ek__BackingField_5() { return &___U3CHandledU3Ek__BackingField_5; }
inline void set_U3CHandledU3Ek__BackingField_5(bool value)
{
___U3CHandledU3Ek__BackingField_5 = value;
}
};
// Valve.Newtonsoft.Json.Serialization.JsonContract_<>c__DisplayClass73_0
struct U3CU3Ec__DisplayClass73_0_t10F98427038E7A3850E5C9CCA33A1494BA83E561 : public RuntimeObject
{
public:
// System.Reflection.MethodInfo Valve.Newtonsoft.Json.Serialization.JsonContract_<>c__DisplayClass73_0::callbackMethodInfo
MethodInfo_t * ___callbackMethodInfo_0;
public:
inline static int32_t get_offset_of_callbackMethodInfo_0() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass73_0_t10F98427038E7A3850E5C9CCA33A1494BA83E561, ___callbackMethodInfo_0)); }
inline MethodInfo_t * get_callbackMethodInfo_0() const { return ___callbackMethodInfo_0; }
inline MethodInfo_t ** get_address_of_callbackMethodInfo_0() { return &___callbackMethodInfo_0; }
inline void set_callbackMethodInfo_0(MethodInfo_t * value)
{
___callbackMethodInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___callbackMethodInfo_0), (void*)value);
}
};
// Valve.Newtonsoft.Json.Serialization.JsonContract_<>c__DisplayClass74_0
struct U3CU3Ec__DisplayClass74_0_tB49FD8A25B86AF68D3E126A7721C2B7F46F80A92 : public RuntimeObject
{
public:
// System.Reflection.MethodInfo Valve.Newtonsoft.Json.Serialization.JsonContract_<>c__DisplayClass74_0::callbackMethodInfo
MethodInfo_t * ___callbackMethodInfo_0;
public:
inline static int32_t get_offset_of_callbackMethodInfo_0() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass74_0_tB49FD8A25B86AF68D3E126A7721C2B7F46F80A92, ___callbackMethodInfo_0)); }
inline MethodInfo_t * get_callbackMethodInfo_0() const { return ___callbackMethodInfo_0; }
inline MethodInfo_t ** get_address_of_callbackMethodInfo_0() { return &___callbackMethodInfo_0; }
inline void set_callbackMethodInfo_0(MethodInfo_t * value)
{
___callbackMethodInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___callbackMethodInfo_0), (void*)value);
}
};
// Valve.Newtonsoft.Json.Serialization.JsonSerializerInternalBase
struct JsonSerializerInternalBase_t10636B4A3D430A7F6597EF873C98E30894ACF1F7 : public RuntimeObject
{
public:
// Valve.Newtonsoft.Json.Serialization.ErrorContext Valve.Newtonsoft.Json.Serialization.JsonSerializerInternalBase::_currentErrorContext
ErrorContext_t61739A48B44A4707051088E7013FD4E347DBE7A0 * ____currentErrorContext_0;
// Valve.Newtonsoft.Json.Utilities.BidirectionalDictionary`2<System.String,System.Object> Valve.Newtonsoft.Json.Serialization.JsonSerializerInternalBase::_mappings
BidirectionalDictionary_2_t099435761F49B07DBF2BBA49D1D2D6865002A8D5 * ____mappings_1;
// Valve.Newtonsoft.Json.JsonSerializer Valve.Newtonsoft.Json.Serialization.JsonSerializerInternalBase::Serializer
JsonSerializer_t1D5D385AB5641E8958FC0E6ECB498B4DC45BC4D4 * ___Serializer_2;
// Valve.Newtonsoft.Json.Serialization.ITraceWriter Valve.Newtonsoft.Json.Serialization.JsonSerializerInternalBase::TraceWriter
RuntimeObject* ___TraceWriter_3;
// Valve.Newtonsoft.Json.Serialization.JsonSerializerProxy Valve.Newtonsoft.Json.Serialization.JsonSerializerInternalBase::InternalSerializer
JsonSerializerProxy_t087EA4189F71D7BC8479FB15347611106FC05276 * ___InternalSerializer_4;
public:
inline static int32_t get_offset_of__currentErrorContext_0() { return static_cast<int32_t>(offsetof(JsonSerializerInternalBase_t10636B4A3D430A7F6597EF873C98E30894ACF1F7, ____currentErrorContext_0)); }
inline ErrorContext_t61739A48B44A4707051088E7013FD4E347DBE7A0 * get__currentErrorContext_0() const { return ____currentErrorContext_0; }
inline ErrorContext_t61739A48B44A4707051088E7013FD4E347DBE7A0 ** get_address_of__currentErrorContext_0() { return &____currentErrorContext_0; }
inline void set__currentErrorContext_0(ErrorContext_t61739A48B44A4707051088E7013FD4E347DBE7A0 * value)
{
____currentErrorContext_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____currentErrorContext_0), (void*)value);
}
inline static int32_t get_offset_of__mappings_1() { return static_cast<int32_t>(offsetof(JsonSerializerInternalBase_t10636B4A3D430A7F6597EF873C98E30894ACF1F7, ____mappings_1)); }
inline BidirectionalDictionary_2_t099435761F49B07DBF2BBA49D1D2D6865002A8D5 * get__mappings_1() const { return ____mappings_1; }
inline BidirectionalDictionary_2_t099435761F49B07DBF2BBA49D1D2D6865002A8D5 ** get_address_of__mappings_1() { return &____mappings_1; }
inline void set__mappings_1(BidirectionalDictionary_2_t099435761F49B07DBF2BBA49D1D2D6865002A8D5 * value)
{
____mappings_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____mappings_1), (void*)value);
}
inline static int32_t get_offset_of_Serializer_2() { return static_cast<int32_t>(offsetof(JsonSerializerInternalBase_t10636B4A3D430A7F6597EF873C98E30894ACF1F7, ___Serializer_2)); }
inline JsonSerializer_t1D5D385AB5641E8958FC0E6ECB498B4DC45BC4D4 * get_Serializer_2() const { return ___Serializer_2; }
inline JsonSerializer_t1D5D385AB5641E8958FC0E6ECB498B4DC45BC4D4 ** get_address_of_Serializer_2() { return &___Serializer_2; }
inline void set_Serializer_2(JsonSerializer_t1D5D385AB5641E8958FC0E6ECB498B4DC45BC4D4 * value)
{
___Serializer_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Serializer_2), (void*)value);
}
inline static int32_t get_offset_of_TraceWriter_3() { return static_cast<int32_t>(offsetof(JsonSerializerInternalBase_t10636B4A3D430A7F6597EF873C98E30894ACF1F7, ___TraceWriter_3)); }
inline RuntimeObject* get_TraceWriter_3() const { return ___TraceWriter_3; }
inline RuntimeObject** get_address_of_TraceWriter_3() { return &___TraceWriter_3; }
inline void set_TraceWriter_3(RuntimeObject* value)
{
___TraceWriter_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___TraceWriter_3), (void*)value);
}
inline static int32_t get_offset_of_InternalSerializer_4() { return static_cast<int32_t>(offsetof(JsonSerializerInternalBase_t10636B4A3D430A7F6597EF873C98E30894ACF1F7, ___InternalSerializer_4)); }
inline JsonSerializerProxy_t087EA4189F71D7BC8479FB15347611106FC05276 * get_InternalSerializer_4() const { return ___InternalSerializer_4; }
inline JsonSerializerProxy_t087EA4189F71D7BC8479FB15347611106FC05276 ** get_address_of_InternalSerializer_4() { return &___InternalSerializer_4; }
inline void set_InternalSerializer_4(JsonSerializerProxy_t087EA4189F71D7BC8479FB15347611106FC05276 * value)
{
___InternalSerializer_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___InternalSerializer_4), (void*)value);
}
};
// Valve.Newtonsoft.Json.Serialization.NamingStrategy
struct NamingStrategy_tBB6F8138B49E9B2704F7B87BF9130378976B9B46 : public RuntimeObject
{
public:
// System.Boolean Valve.Newtonsoft.Json.Serialization.NamingStrategy::<ProcessDictionaryKeys>k__BackingField
bool ___U3CProcessDictionaryKeysU3Ek__BackingField_0;
// System.Boolean Valve.Newtonsoft.Json.Serialization.NamingStrategy::<OverrideSpecifiedNames>k__BackingField
bool ___U3COverrideSpecifiedNamesU3Ek__BackingField_1;
public:
inline static int32_t get_offset_of_U3CProcessDictionaryKeysU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(NamingStrategy_tBB6F8138B49E9B2704F7B87BF9130378976B9B46, ___U3CProcessDictionaryKeysU3Ek__BackingField_0)); }
inline bool get_U3CProcessDictionaryKeysU3Ek__BackingField_0() const { return ___U3CProcessDictionaryKeysU3Ek__BackingField_0; }
inline bool* get_address_of_U3CProcessDictionaryKeysU3Ek__BackingField_0() { return &___U3CProcessDictionaryKeysU3Ek__BackingField_0; }
inline void set_U3CProcessDictionaryKeysU3Ek__BackingField_0(bool value)
{
___U3CProcessDictionaryKeysU3Ek__BackingField_0 = value;
}
inline static int32_t get_offset_of_U3COverrideSpecifiedNamesU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(NamingStrategy_tBB6F8138B49E9B2704F7B87BF9130378976B9B46, ___U3COverrideSpecifiedNamesU3Ek__BackingField_1)); }
inline bool get_U3COverrideSpecifiedNamesU3Ek__BackingField_1() const { return ___U3COverrideSpecifiedNamesU3Ek__BackingField_1; }
inline bool* get_address_of_U3COverrideSpecifiedNamesU3Ek__BackingField_1() { return &___U3COverrideSpecifiedNamesU3Ek__BackingField_1; }
inline void set_U3COverrideSpecifiedNamesU3Ek__BackingField_1(bool value)
{
___U3COverrideSpecifiedNamesU3Ek__BackingField_1 = value;
}
};
// Valve.Newtonsoft.Json.Serialization.ReflectionAttributeProvider
struct ReflectionAttributeProvider_tD14E62C7D2A1AA1792C9F45D337EC431D30DD7F8 : public RuntimeObject
{
public:
// System.Object Valve.Newtonsoft.Json.Serialization.ReflectionAttributeProvider::_attributeProvider
RuntimeObject * ____attributeProvider_0;
public:
inline static int32_t get_offset_of__attributeProvider_0() { return static_cast<int32_t>(offsetof(ReflectionAttributeProvider_tD14E62C7D2A1AA1792C9F45D337EC431D30DD7F8, ____attributeProvider_0)); }
inline RuntimeObject * get__attributeProvider_0() const { return ____attributeProvider_0; }
inline RuntimeObject ** get_address_of__attributeProvider_0() { return &____attributeProvider_0; }
inline void set__attributeProvider_0(RuntimeObject * value)
{
____attributeProvider_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____attributeProvider_0), (void*)value);
}
};
// Valve.Newtonsoft.Json.Serialization.ReflectionValueProvider
struct ReflectionValueProvider_t8149E2427D8DED5E2B15B0F80E8C6CFE4C710A26 : public RuntimeObject
{
public:
// System.Reflection.MemberInfo Valve.Newtonsoft.Json.Serialization.ReflectionValueProvider::_memberInfo
MemberInfo_t * ____memberInfo_0;
public:
inline static int32_t get_offset_of__memberInfo_0() { return static_cast<int32_t>(offsetof(ReflectionValueProvider_t8149E2427D8DED5E2B15B0F80E8C6CFE4C710A26, ____memberInfo_0)); }
inline MemberInfo_t * get__memberInfo_0() const { return ____memberInfo_0; }
inline MemberInfo_t ** get_address_of__memberInfo_0() { return &____memberInfo_0; }
inline void set__memberInfo_0(MemberInfo_t * value)
{
____memberInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____memberInfo_0), (void*)value);
}
};
// Valve.Newtonsoft.Json.Utilities.BidirectionalDictionary`2<System.String,System.Object>
struct BidirectionalDictionary_2_t099435761F49B07DBF2BBA49D1D2D6865002A8D5 : public RuntimeObject
{
public:
// System.Collections.Generic.IDictionary`2<TFirst,TSecond> Valve.Newtonsoft.Json.Utilities.BidirectionalDictionary`2::_firstToSecond
RuntimeObject* ____firstToSecond_0;
// System.Collections.Generic.IDictionary`2<TSecond,TFirst> Valve.Newtonsoft.Json.Utilities.BidirectionalDictionary`2::_secondToFirst
RuntimeObject* ____secondToFirst_1;
// System.String Valve.Newtonsoft.Json.Utilities.BidirectionalDictionary`2::_duplicateFirstErrorMessage
String_t* ____duplicateFirstErrorMessage_2;
// System.String Valve.Newtonsoft.Json.Utilities.BidirectionalDictionary`2::_duplicateSecondErrorMessage
String_t* ____duplicateSecondErrorMessage_3;
public:
inline static int32_t get_offset_of__firstToSecond_0() { return static_cast<int32_t>(offsetof(BidirectionalDictionary_2_t099435761F49B07DBF2BBA49D1D2D6865002A8D5, ____firstToSecond_0)); }
inline RuntimeObject* get__firstToSecond_0() const { return ____firstToSecond_0; }
inline RuntimeObject** get_address_of__firstToSecond_0() { return &____firstToSecond_0; }
inline void set__firstToSecond_0(RuntimeObject* value)
{
____firstToSecond_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____firstToSecond_0), (void*)value);
}
inline static int32_t get_offset_of__secondToFirst_1() { return static_cast<int32_t>(offsetof(BidirectionalDictionary_2_t099435761F49B07DBF2BBA49D1D2D6865002A8D5, ____secondToFirst_1)); }
inline RuntimeObject* get__secondToFirst_1() const { return ____secondToFirst_1; }
inline RuntimeObject** get_address_of__secondToFirst_1() { return &____secondToFirst_1; }
inline void set__secondToFirst_1(RuntimeObject* value)
{
____secondToFirst_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____secondToFirst_1), (void*)value);
}
inline static int32_t get_offset_of__duplicateFirstErrorMessage_2() { return static_cast<int32_t>(offsetof(BidirectionalDictionary_2_t099435761F49B07DBF2BBA49D1D2D6865002A8D5, ____duplicateFirstErrorMessage_2)); }
inline String_t* get__duplicateFirstErrorMessage_2() const { return ____duplicateFirstErrorMessage_2; }
inline String_t** get_address_of__duplicateFirstErrorMessage_2() { return &____duplicateFirstErrorMessage_2; }
inline void set__duplicateFirstErrorMessage_2(String_t* value)
{
____duplicateFirstErrorMessage_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____duplicateFirstErrorMessage_2), (void*)value);
}
inline static int32_t get_offset_of__duplicateSecondErrorMessage_3() { return static_cast<int32_t>(offsetof(BidirectionalDictionary_2_t099435761F49B07DBF2BBA49D1D2D6865002A8D5, ____duplicateSecondErrorMessage_3)); }
inline String_t* get__duplicateSecondErrorMessage_3() const { return ____duplicateSecondErrorMessage_3; }
inline String_t** get_address_of__duplicateSecondErrorMessage_3() { return &____duplicateSecondErrorMessage_3; }
inline void set__duplicateSecondErrorMessage_3(String_t* value)
{
____duplicateSecondErrorMessage_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____duplicateSecondErrorMessage_3), (void*)value);
}
};
// Valve.Newtonsoft.Json.Utilities.PropertyNameTable
struct PropertyNameTable_t09D6FC2871D681080545544521201A5726C6610D : public RuntimeObject
{
public:
// System.Int32 Valve.Newtonsoft.Json.Utilities.PropertyNameTable::_count
int32_t ____count_1;
// Valve.Newtonsoft.Json.Utilities.PropertyNameTable_Entry[] Valve.Newtonsoft.Json.Utilities.PropertyNameTable::_entries
EntryU5BU5D_t9AEBE2A6844899FD8BFEDF07BD53FB212EB08E32* ____entries_2;
// System.Int32 Valve.Newtonsoft.Json.Utilities.PropertyNameTable::_mask
int32_t ____mask_3;
public:
inline static int32_t get_offset_of__count_1() { return static_cast<int32_t>(offsetof(PropertyNameTable_t09D6FC2871D681080545544521201A5726C6610D, ____count_1)); }
inline int32_t get__count_1() const { return ____count_1; }
inline int32_t* get_address_of__count_1() { return &____count_1; }
inline void set__count_1(int32_t value)
{
____count_1 = value;
}
inline static int32_t get_offset_of__entries_2() { return static_cast<int32_t>(offsetof(PropertyNameTable_t09D6FC2871D681080545544521201A5726C6610D, ____entries_2)); }
inline EntryU5BU5D_t9AEBE2A6844899FD8BFEDF07BD53FB212EB08E32* get__entries_2() const { return ____entries_2; }
inline EntryU5BU5D_t9AEBE2A6844899FD8BFEDF07BD53FB212EB08E32** get_address_of__entries_2() { return &____entries_2; }
inline void set__entries_2(EntryU5BU5D_t9AEBE2A6844899FD8BFEDF07BD53FB212EB08E32* value)
{
____entries_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____entries_2), (void*)value);
}
inline static int32_t get_offset_of__mask_3() { return static_cast<int32_t>(offsetof(PropertyNameTable_t09D6FC2871D681080545544521201A5726C6610D, ____mask_3)); }
inline int32_t get__mask_3() const { return ____mask_3; }
inline int32_t* get_address_of__mask_3() { return &____mask_3; }
inline void set__mask_3(int32_t value)
{
____mask_3 = value;
}
};
struct PropertyNameTable_t09D6FC2871D681080545544521201A5726C6610D_StaticFields
{
public:
// System.Int32 Valve.Newtonsoft.Json.Utilities.PropertyNameTable::HashCodeRandomizer
int32_t ___HashCodeRandomizer_0;
public:
inline static int32_t get_offset_of_HashCodeRandomizer_0() { return static_cast<int32_t>(offsetof(PropertyNameTable_t09D6FC2871D681080545544521201A5726C6610D_StaticFields, ___HashCodeRandomizer_0)); }
inline int32_t get_HashCodeRandomizer_0() const { return ___HashCodeRandomizer_0; }
inline int32_t* get_address_of_HashCodeRandomizer_0() { return &___HashCodeRandomizer_0; }
inline void set_HashCodeRandomizer_0(int32_t value)
{
___HashCodeRandomizer_0 = value;
}
};
// Valve.Newtonsoft.Json.Utilities.ReflectionDelegateFactory
struct ReflectionDelegateFactory_t87E79CD61C3504844C338EEC1949177370F2029A : public RuntimeObject
{
public:
public:
};
// Valve.Newtonsoft.Json.Utilities.ReflectionUtils
struct ReflectionUtils_t1845D588ADA15C351615E925042ECF790B622987 : public RuntimeObject
{
public:
public:
};
struct ReflectionUtils_t1845D588ADA15C351615E925042ECF790B622987_StaticFields
{
public:
// System.Type[] Valve.Newtonsoft.Json.Utilities.ReflectionUtils::EmptyTypes
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___EmptyTypes_0;
public:
inline static int32_t get_offset_of_EmptyTypes_0() { return static_cast<int32_t>(offsetof(ReflectionUtils_t1845D588ADA15C351615E925042ECF790B622987_StaticFields, ___EmptyTypes_0)); }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get_EmptyTypes_0() const { return ___EmptyTypes_0; }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of_EmptyTypes_0() { return &___EmptyTypes_0; }
inline void set_EmptyTypes_0(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* value)
{
___EmptyTypes_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___EmptyTypes_0), (void*)value);
}
};
// Valve.Newtonsoft.Json.Utilities.ThreadSafeStore`2<Valve.Newtonsoft.Json.Serialization.DefaultSerializationBinder_TypeNameKey,System.Type>
struct ThreadSafeStore_2_t4514B8E56056BAF0F4C62DC3FE61190B6C7A83F7 : public RuntimeObject
{
public:
// System.Object Valve.Newtonsoft.Json.Utilities.ThreadSafeStore`2::_lock
RuntimeObject * ____lock_0;
// System.Collections.Generic.Dictionary`2<TKey,TValue> Valve.Newtonsoft.Json.Utilities.ThreadSafeStore`2::_store
Dictionary_2_t19BF97A987EC2212EEF1AFE3B01E168668E1803F * ____store_1;
// System.Func`2<TKey,TValue> Valve.Newtonsoft.Json.Utilities.ThreadSafeStore`2::_creator
Func_2_t613802803AE53BB465170B4BCAD06EC8EEE8FC0D * ____creator_2;
public:
inline static int32_t get_offset_of__lock_0() { return static_cast<int32_t>(offsetof(ThreadSafeStore_2_t4514B8E56056BAF0F4C62DC3FE61190B6C7A83F7, ____lock_0)); }
inline RuntimeObject * get__lock_0() const { return ____lock_0; }
inline RuntimeObject ** get_address_of__lock_0() { return &____lock_0; }
inline void set__lock_0(RuntimeObject * value)
{
____lock_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____lock_0), (void*)value);
}
inline static int32_t get_offset_of__store_1() { return static_cast<int32_t>(offsetof(ThreadSafeStore_2_t4514B8E56056BAF0F4C62DC3FE61190B6C7A83F7, ____store_1)); }
inline Dictionary_2_t19BF97A987EC2212EEF1AFE3B01E168668E1803F * get__store_1() const { return ____store_1; }
inline Dictionary_2_t19BF97A987EC2212EEF1AFE3B01E168668E1803F ** get_address_of__store_1() { return &____store_1; }
inline void set__store_1(Dictionary_2_t19BF97A987EC2212EEF1AFE3B01E168668E1803F * value)
{
____store_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____store_1), (void*)value);
}
inline static int32_t get_offset_of__creator_2() { return static_cast<int32_t>(offsetof(ThreadSafeStore_2_t4514B8E56056BAF0F4C62DC3FE61190B6C7A83F7, ____creator_2)); }
inline Func_2_t613802803AE53BB465170B4BCAD06EC8EEE8FC0D * get__creator_2() const { return ____creator_2; }
inline Func_2_t613802803AE53BB465170B4BCAD06EC8EEE8FC0D ** get_address_of__creator_2() { return &____creator_2; }
inline void set__creator_2(Func_2_t613802803AE53BB465170B4BCAD06EC8EEE8FC0D * value)
{
____creator_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____creator_2), (void*)value);
}
};
// 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.Collections.Generic.KeyValuePair`2<System.Object,System.Object>
struct KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
RuntimeObject * ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
RuntimeObject * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE, ___key_0)); }
inline RuntimeObject * get_key_0() const { return ___key_0; }
inline RuntimeObject ** get_address_of_key_0() { return &___key_0; }
inline void set_key_0(RuntimeObject * value)
{
___key_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value);
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE, ___value_1)); }
inline RuntimeObject * get_value_1() const { return ___value_1; }
inline RuntimeObject ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(RuntimeObject * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.String,Valve.Newtonsoft.Json.Linq.JToken>
struct KeyValuePair_2_t12EC1C8B4977DCEE8CF178DACA28A94CA2A77BCA
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
String_t* ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t12EC1C8B4977DCEE8CF178DACA28A94CA2A77BCA, ___key_0)); }
inline String_t* get_key_0() const { return ___key_0; }
inline String_t** get_address_of_key_0() { return &___key_0; }
inline void set_key_0(String_t* value)
{
___key_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value);
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t12EC1C8B4977DCEE8CF178DACA28A94CA2A77BCA, ___value_1)); }
inline JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * get_value_1() const { return ___value_1; }
inline JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
}
};
// System.Collections.Generic.List`1_Enumerator<System.Object>
struct Enumerator_tE0C99528D3DCE5863566CE37BD94162A4C0431CD
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1_Enumerator::list
List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * ___list_0;
// System.Int32 System.Collections.Generic.List`1_Enumerator::index
int32_t ___index_1;
// System.Int32 System.Collections.Generic.List`1_Enumerator::version
int32_t ___version_2;
// T System.Collections.Generic.List`1_Enumerator::current
RuntimeObject * ___current_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_tE0C99528D3DCE5863566CE37BD94162A4C0431CD, ___list_0)); }
inline List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * get_list_0() const { return ___list_0; }
inline List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tE0C99528D3DCE5863566CE37BD94162A4C0431CD, ___index_1)); }
inline int32_t get_index_1() const { return ___index_1; }
inline int32_t* get_address_of_index_1() { return &___index_1; }
inline void set_index_1(int32_t value)
{
___index_1 = value;
}
inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_tE0C99528D3DCE5863566CE37BD94162A4C0431CD, ___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_current_3() { return static_cast<int32_t>(offsetof(Enumerator_tE0C99528D3DCE5863566CE37BD94162A4C0431CD, ___current_3)); }
inline RuntimeObject * get_current_3() const { return ___current_3; }
inline RuntimeObject ** get_address_of_current_3() { return &___current_3; }
inline void set_current_3(RuntimeObject * value)
{
___current_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___current_3), (void*)value);
}
};
// System.Collections.Generic.List`1_Enumerator<System.Reflection.MemberInfo>
struct Enumerator_t485345BBD355ED7025F8E5EA8AF95F42AC192DCE
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1_Enumerator::list
List_1_t610995BF9B0DCC99DF41C7D0D54AA44EF8552AE9 * ___list_0;
// System.Int32 System.Collections.Generic.List`1_Enumerator::index
int32_t ___index_1;
// System.Int32 System.Collections.Generic.List`1_Enumerator::version
int32_t ___version_2;
// T System.Collections.Generic.List`1_Enumerator::current
MemberInfo_t * ___current_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t485345BBD355ED7025F8E5EA8AF95F42AC192DCE, ___list_0)); }
inline List_1_t610995BF9B0DCC99DF41C7D0D54AA44EF8552AE9 * get_list_0() const { return ___list_0; }
inline List_1_t610995BF9B0DCC99DF41C7D0D54AA44EF8552AE9 ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_t610995BF9B0DCC99DF41C7D0D54AA44EF8552AE9 * value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t485345BBD355ED7025F8E5EA8AF95F42AC192DCE, ___index_1)); }
inline int32_t get_index_1() const { return ___index_1; }
inline int32_t* get_address_of_index_1() { return &___index_1; }
inline void set_index_1(int32_t value)
{
___index_1 = value;
}
inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t485345BBD355ED7025F8E5EA8AF95F42AC192DCE, ___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_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t485345BBD355ED7025F8E5EA8AF95F42AC192DCE, ___current_3)); }
inline MemberInfo_t * get_current_3() const { return ___current_3; }
inline MemberInfo_t ** get_address_of_current_3() { return &___current_3; }
inline void set_current_3(MemberInfo_t * value)
{
___current_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___current_3), (void*)value);
}
};
// System.Collections.Generic.List`1_Enumerator<System.Type>
struct Enumerator_t7708A1C0F78B6722936DF84038D589BB9202C547
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1_Enumerator::list
List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * ___list_0;
// System.Int32 System.Collections.Generic.List`1_Enumerator::index
int32_t ___index_1;
// System.Int32 System.Collections.Generic.List`1_Enumerator::version
int32_t ___version_2;
// T System.Collections.Generic.List`1_Enumerator::current
Type_t * ___current_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t7708A1C0F78B6722936DF84038D589BB9202C547, ___list_0)); }
inline List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * get_list_0() const { return ___list_0; }
inline List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t7708A1C0F78B6722936DF84038D589BB9202C547, ___index_1)); }
inline int32_t get_index_1() const { return ___index_1; }
inline int32_t* get_address_of_index_1() { return &___index_1; }
inline void set_index_1(int32_t value)
{
___index_1 = value;
}
inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t7708A1C0F78B6722936DF84038D589BB9202C547, ___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_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t7708A1C0F78B6722936DF84038D589BB9202C547, ___current_3)); }
inline Type_t * get_current_3() const { return ___current_3; }
inline Type_t ** get_address_of_current_3() { return &___current_3; }
inline void set_current_3(Type_t * value)
{
___current_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___current_3), (void*)value);
}
};
// System.Collections.Generic.List`1_Enumerator<Valve.Newtonsoft.Json.Serialization.SerializationCallback>
struct Enumerator_t1A19A831BA75441941488C4DFBEF3678F2B8D43C
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1_Enumerator::list
List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D * ___list_0;
// System.Int32 System.Collections.Generic.List`1_Enumerator::index
int32_t ___index_1;
// System.Int32 System.Collections.Generic.List`1_Enumerator::version
int32_t ___version_2;
// T System.Collections.Generic.List`1_Enumerator::current
SerializationCallback_t8B5297123C8DFAD6A6701E2F2046982E13CE1B9C * ___current_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t1A19A831BA75441941488C4DFBEF3678F2B8D43C, ___list_0)); }
inline List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D * get_list_0() const { return ___list_0; }
inline List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D * value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t1A19A831BA75441941488C4DFBEF3678F2B8D43C, ___index_1)); }
inline int32_t get_index_1() const { return ___index_1; }
inline int32_t* get_address_of_index_1() { return &___index_1; }
inline void set_index_1(int32_t value)
{
___index_1 = value;
}
inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t1A19A831BA75441941488C4DFBEF3678F2B8D43C, ___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_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t1A19A831BA75441941488C4DFBEF3678F2B8D43C, ___current_3)); }
inline SerializationCallback_t8B5297123C8DFAD6A6701E2F2046982E13CE1B9C * get_current_3() const { return ___current_3; }
inline SerializationCallback_t8B5297123C8DFAD6A6701E2F2046982E13CE1B9C ** get_address_of_current_3() { return &___current_3; }
inline void set_current_3(SerializationCallback_t8B5297123C8DFAD6A6701E2F2046982E13CE1B9C * value)
{
___current_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___current_3), (void*)value);
}
};
// System.Collections.ObjectModel.KeyedCollection`2<System.String,Valve.Newtonsoft.Json.Serialization.JsonProperty>
struct KeyedCollection_2_t351C9C6C1B77E67EB66E2A35EC5236947B488F41 : public Collection_1_t27A27EF9EF4861F4C42EECE795524A3B9959530A
{
public:
// System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.ObjectModel.KeyedCollection`2::comparer
RuntimeObject* ___comparer_2;
// System.Collections.Generic.Dictionary`2<TKey,TItem> System.Collections.ObjectModel.KeyedCollection`2::dict
Dictionary_2_t906A7961F7DF8DF5D59F800377730647D2DE906E * ___dict_3;
// System.Int32 System.Collections.ObjectModel.KeyedCollection`2::keyCount
int32_t ___keyCount_4;
// System.Int32 System.Collections.ObjectModel.KeyedCollection`2::threshold
int32_t ___threshold_5;
public:
inline static int32_t get_offset_of_comparer_2() { return static_cast<int32_t>(offsetof(KeyedCollection_2_t351C9C6C1B77E67EB66E2A35EC5236947B488F41, ___comparer_2)); }
inline RuntimeObject* get_comparer_2() const { return ___comparer_2; }
inline RuntimeObject** get_address_of_comparer_2() { return &___comparer_2; }
inline void set_comparer_2(RuntimeObject* value)
{
___comparer_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___comparer_2), (void*)value);
}
inline static int32_t get_offset_of_dict_3() { return static_cast<int32_t>(offsetof(KeyedCollection_2_t351C9C6C1B77E67EB66E2A35EC5236947B488F41, ___dict_3)); }
inline Dictionary_2_t906A7961F7DF8DF5D59F800377730647D2DE906E * get_dict_3() const { return ___dict_3; }
inline Dictionary_2_t906A7961F7DF8DF5D59F800377730647D2DE906E ** get_address_of_dict_3() { return &___dict_3; }
inline void set_dict_3(Dictionary_2_t906A7961F7DF8DF5D59F800377730647D2DE906E * value)
{
___dict_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___dict_3), (void*)value);
}
inline static int32_t get_offset_of_keyCount_4() { return static_cast<int32_t>(offsetof(KeyedCollection_2_t351C9C6C1B77E67EB66E2A35EC5236947B488F41, ___keyCount_4)); }
inline int32_t get_keyCount_4() const { return ___keyCount_4; }
inline int32_t* get_address_of_keyCount_4() { return &___keyCount_4; }
inline void set_keyCount_4(int32_t value)
{
___keyCount_4 = value;
}
inline static int32_t get_offset_of_threshold_5() { return static_cast<int32_t>(offsetof(KeyedCollection_2_t351C9C6C1B77E67EB66E2A35EC5236947B488F41, ___threshold_5)); }
inline int32_t get_threshold_5() const { return ___threshold_5; }
inline int32_t* get_address_of_threshold_5() { return &___threshold_5; }
inline void set_threshold_5(int32_t value)
{
___threshold_5 = value;
}
};
// System.ComponentModel.DefaultValueAttribute
struct DefaultValueAttribute_t03B1F51B35271D50779D31234C9C6845BC9626EC : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
{
public:
// System.Object System.ComponentModel.DefaultValueAttribute::value
RuntimeObject * ___value_0;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(DefaultValueAttribute_t03B1F51B35271D50779D31234C9C6845BC9626EC, ___value_0)); }
inline RuntimeObject * get_value_0() const { return ___value_0; }
inline RuntimeObject ** get_address_of_value_0() { return &___value_0; }
inline void set_value_0(RuntimeObject * value)
{
___value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_0), (void*)value);
}
};
// System.ComponentModel.PropertyChangedEventArgs
struct PropertyChangedEventArgs_t90CF85B82F87D594F73F03364494C77592B11F46 : public EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E
{
public:
// System.String System.ComponentModel.PropertyChangedEventArgs::propertyName
String_t* ___propertyName_1;
public:
inline static int32_t get_offset_of_propertyName_1() { return static_cast<int32_t>(offsetof(PropertyChangedEventArgs_t90CF85B82F87D594F73F03364494C77592B11F46, ___propertyName_1)); }
inline String_t* get_propertyName_1() const { return ___propertyName_1; }
inline String_t** get_address_of_propertyName_1() { return &___propertyName_1; }
inline void set_propertyName_1(String_t* value)
{
___propertyName_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___propertyName_1), (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.Decimal
struct Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8
{
public:
// System.Int32 System.Decimal::flags
int32_t ___flags_14;
// System.Int32 System.Decimal::hi
int32_t ___hi_15;
// System.Int32 System.Decimal::lo
int32_t ___lo_16;
// System.Int32 System.Decimal::mid
int32_t ___mid_17;
public:
inline static int32_t get_offset_of_flags_14() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, ___flags_14)); }
inline int32_t get_flags_14() const { return ___flags_14; }
inline int32_t* get_address_of_flags_14() { return &___flags_14; }
inline void set_flags_14(int32_t value)
{
___flags_14 = value;
}
inline static int32_t get_offset_of_hi_15() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, ___hi_15)); }
inline int32_t get_hi_15() const { return ___hi_15; }
inline int32_t* get_address_of_hi_15() { return &___hi_15; }
inline void set_hi_15(int32_t value)
{
___hi_15 = value;
}
inline static int32_t get_offset_of_lo_16() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, ___lo_16)); }
inline int32_t get_lo_16() const { return ___lo_16; }
inline int32_t* get_address_of_lo_16() { return &___lo_16; }
inline void set_lo_16(int32_t value)
{
___lo_16 = value;
}
inline static int32_t get_offset_of_mid_17() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, ___mid_17)); }
inline int32_t get_mid_17() const { return ___mid_17; }
inline int32_t* get_address_of_mid_17() { return &___mid_17; }
inline void set_mid_17(int32_t value)
{
___mid_17 = value;
}
};
struct Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields
{
public:
// System.UInt32[] System.Decimal::Powers10
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* ___Powers10_6;
// System.Decimal System.Decimal::Zero
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___Zero_7;
// System.Decimal System.Decimal::One
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___One_8;
// System.Decimal System.Decimal::MinusOne
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___MinusOne_9;
// System.Decimal System.Decimal::MaxValue
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___MaxValue_10;
// System.Decimal System.Decimal::MinValue
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___MinValue_11;
// System.Decimal System.Decimal::NearNegativeZero
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___NearNegativeZero_12;
// System.Decimal System.Decimal::NearPositiveZero
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___NearPositiveZero_13;
public:
inline static int32_t get_offset_of_Powers10_6() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___Powers10_6)); }
inline UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* get_Powers10_6() const { return ___Powers10_6; }
inline UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB** get_address_of_Powers10_6() { return &___Powers10_6; }
inline void set_Powers10_6(UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* value)
{
___Powers10_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Powers10_6), (void*)value);
}
inline static int32_t get_offset_of_Zero_7() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___Zero_7)); }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_Zero_7() const { return ___Zero_7; }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_Zero_7() { return &___Zero_7; }
inline void set_Zero_7(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value)
{
___Zero_7 = value;
}
inline static int32_t get_offset_of_One_8() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___One_8)); }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_One_8() const { return ___One_8; }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_One_8() { return &___One_8; }
inline void set_One_8(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value)
{
___One_8 = value;
}
inline static int32_t get_offset_of_MinusOne_9() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___MinusOne_9)); }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_MinusOne_9() const { return ___MinusOne_9; }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_MinusOne_9() { return &___MinusOne_9; }
inline void set_MinusOne_9(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value)
{
___MinusOne_9 = value;
}
inline static int32_t get_offset_of_MaxValue_10() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___MaxValue_10)); }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_MaxValue_10() const { return ___MaxValue_10; }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_MaxValue_10() { return &___MaxValue_10; }
inline void set_MaxValue_10(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value)
{
___MaxValue_10 = value;
}
inline static int32_t get_offset_of_MinValue_11() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___MinValue_11)); }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_MinValue_11() const { return ___MinValue_11; }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_MinValue_11() { return &___MinValue_11; }
inline void set_MinValue_11(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value)
{
___MinValue_11 = value;
}
inline static int32_t get_offset_of_NearNegativeZero_12() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___NearNegativeZero_12)); }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_NearNegativeZero_12() const { return ___NearNegativeZero_12; }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_NearNegativeZero_12() { return &___NearNegativeZero_12; }
inline void set_NearNegativeZero_12(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value)
{
___NearNegativeZero_12 = value;
}
inline static int32_t get_offset_of_NearPositiveZero_13() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___NearPositiveZero_13)); }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_NearPositiveZero_13() const { return ___NearPositiveZero_13; }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_NearPositiveZero_13() { return &___NearPositiveZero_13; }
inline void set_NearPositiveZero_13(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value)
{
___NearPositiveZero_13 = value;
}
};
// System.Double
struct Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409
{
public:
// System.Double System.Double::m_value
double ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409, ___m_value_0)); }
inline double get_m_value_0() const { return ___m_value_0; }
inline double* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(double value)
{
___m_value_0 = value;
}
};
struct Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_StaticFields
{
public:
// System.Double System.Double::NegativeZero
double ___NegativeZero_7;
public:
inline static int32_t get_offset_of_NegativeZero_7() { return static_cast<int32_t>(offsetof(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_StaticFields, ___NegativeZero_7)); }
inline double get_NegativeZero_7() const { return ___NegativeZero_7; }
inline double* get_address_of_NegativeZero_7() { return &___NegativeZero_7; }
inline void set_NegativeZero_7(double value)
{
___NegativeZero_7 = value;
}
};
// 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.Guid
struct Guid_t
{
public:
// System.Int32 System.Guid::_a
int32_t ____a_1;
// System.Int16 System.Guid::_b
int16_t ____b_2;
// System.Int16 System.Guid::_c
int16_t ____c_3;
// System.Byte System.Guid::_d
uint8_t ____d_4;
// System.Byte System.Guid::_e
uint8_t ____e_5;
// System.Byte System.Guid::_f
uint8_t ____f_6;
// System.Byte System.Guid::_g
uint8_t ____g_7;
// System.Byte System.Guid::_h
uint8_t ____h_8;
// System.Byte System.Guid::_i
uint8_t ____i_9;
// System.Byte System.Guid::_j
uint8_t ____j_10;
// System.Byte System.Guid::_k
uint8_t ____k_11;
public:
inline static int32_t get_offset_of__a_1() { return static_cast<int32_t>(offsetof(Guid_t, ____a_1)); }
inline int32_t get__a_1() const { return ____a_1; }
inline int32_t* get_address_of__a_1() { return &____a_1; }
inline void set__a_1(int32_t value)
{
____a_1 = value;
}
inline static int32_t get_offset_of__b_2() { return static_cast<int32_t>(offsetof(Guid_t, ____b_2)); }
inline int16_t get__b_2() const { return ____b_2; }
inline int16_t* get_address_of__b_2() { return &____b_2; }
inline void set__b_2(int16_t value)
{
____b_2 = value;
}
inline static int32_t get_offset_of__c_3() { return static_cast<int32_t>(offsetof(Guid_t, ____c_3)); }
inline int16_t get__c_3() const { return ____c_3; }
inline int16_t* get_address_of__c_3() { return &____c_3; }
inline void set__c_3(int16_t value)
{
____c_3 = value;
}
inline static int32_t get_offset_of__d_4() { return static_cast<int32_t>(offsetof(Guid_t, ____d_4)); }
inline uint8_t get__d_4() const { return ____d_4; }
inline uint8_t* get_address_of__d_4() { return &____d_4; }
inline void set__d_4(uint8_t value)
{
____d_4 = value;
}
inline static int32_t get_offset_of__e_5() { return static_cast<int32_t>(offsetof(Guid_t, ____e_5)); }
inline uint8_t get__e_5() const { return ____e_5; }
inline uint8_t* get_address_of__e_5() { return &____e_5; }
inline void set__e_5(uint8_t value)
{
____e_5 = value;
}
inline static int32_t get_offset_of__f_6() { return static_cast<int32_t>(offsetof(Guid_t, ____f_6)); }
inline uint8_t get__f_6() const { return ____f_6; }
inline uint8_t* get_address_of__f_6() { return &____f_6; }
inline void set__f_6(uint8_t value)
{
____f_6 = value;
}
inline static int32_t get_offset_of__g_7() { return static_cast<int32_t>(offsetof(Guid_t, ____g_7)); }
inline uint8_t get__g_7() const { return ____g_7; }
inline uint8_t* get_address_of__g_7() { return &____g_7; }
inline void set__g_7(uint8_t value)
{
____g_7 = value;
}
inline static int32_t get_offset_of__h_8() { return static_cast<int32_t>(offsetof(Guid_t, ____h_8)); }
inline uint8_t get__h_8() const { return ____h_8; }
inline uint8_t* get_address_of__h_8() { return &____h_8; }
inline void set__h_8(uint8_t value)
{
____h_8 = value;
}
inline static int32_t get_offset_of__i_9() { return static_cast<int32_t>(offsetof(Guid_t, ____i_9)); }
inline uint8_t get__i_9() const { return ____i_9; }
inline uint8_t* get_address_of__i_9() { return &____i_9; }
inline void set__i_9(uint8_t value)
{
____i_9 = value;
}
inline static int32_t get_offset_of__j_10() { return static_cast<int32_t>(offsetof(Guid_t, ____j_10)); }
inline uint8_t get__j_10() const { return ____j_10; }
inline uint8_t* get_address_of__j_10() { return &____j_10; }
inline void set__j_10(uint8_t value)
{
____j_10 = value;
}
inline static int32_t get_offset_of__k_11() { return static_cast<int32_t>(offsetof(Guid_t, ____k_11)); }
inline uint8_t get__k_11() const { return ____k_11; }
inline uint8_t* get_address_of__k_11() { return &____k_11; }
inline void set__k_11(uint8_t value)
{
____k_11 = value;
}
};
struct Guid_t_StaticFields
{
public:
// System.Guid System.Guid::Empty
Guid_t ___Empty_0;
// System.Object System.Guid::_rngAccess
RuntimeObject * ____rngAccess_12;
// System.Security.Cryptography.RandomNumberGenerator System.Guid::_rng
RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * ____rng_13;
// System.Security.Cryptography.RandomNumberGenerator System.Guid::_fastRng
RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * ____fastRng_14;
public:
inline static int32_t get_offset_of_Empty_0() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ___Empty_0)); }
inline Guid_t get_Empty_0() const { return ___Empty_0; }
inline Guid_t * get_address_of_Empty_0() { return &___Empty_0; }
inline void set_Empty_0(Guid_t value)
{
___Empty_0 = value;
}
inline static int32_t get_offset_of__rngAccess_12() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____rngAccess_12)); }
inline RuntimeObject * get__rngAccess_12() const { return ____rngAccess_12; }
inline RuntimeObject ** get_address_of__rngAccess_12() { return &____rngAccess_12; }
inline void set__rngAccess_12(RuntimeObject * value)
{
____rngAccess_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&____rngAccess_12), (void*)value);
}
inline static int32_t get_offset_of__rng_13() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____rng_13)); }
inline RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * get__rng_13() const { return ____rng_13; }
inline RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 ** get_address_of__rng_13() { return &____rng_13; }
inline void set__rng_13(RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * value)
{
____rng_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&____rng_13), (void*)value);
}
inline static int32_t get_offset_of__fastRng_14() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____fastRng_14)); }
inline RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * get__fastRng_14() const { return ____fastRng_14; }
inline RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 ** get_address_of__fastRng_14() { return &____fastRng_14; }
inline void set__fastRng_14(RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * value)
{
____fastRng_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&____fastRng_14), (void*)value);
}
};
// System.IO.TextWriter
struct TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 : public MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF
{
public:
// System.Char[] System.IO.TextWriter::CoreNewLine
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___CoreNewLine_9;
// System.IFormatProvider System.IO.TextWriter::InternalFormatProvider
RuntimeObject* ___InternalFormatProvider_10;
public:
inline static int32_t get_offset_of_CoreNewLine_9() { return static_cast<int32_t>(offsetof(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0, ___CoreNewLine_9)); }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_CoreNewLine_9() const { return ___CoreNewLine_9; }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_CoreNewLine_9() { return &___CoreNewLine_9; }
inline void set_CoreNewLine_9(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
{
___CoreNewLine_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___CoreNewLine_9), (void*)value);
}
inline static int32_t get_offset_of_InternalFormatProvider_10() { return static_cast<int32_t>(offsetof(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0, ___InternalFormatProvider_10)); }
inline RuntimeObject* get_InternalFormatProvider_10() const { return ___InternalFormatProvider_10; }
inline RuntimeObject** get_address_of_InternalFormatProvider_10() { return &___InternalFormatProvider_10; }
inline void set_InternalFormatProvider_10(RuntimeObject* value)
{
___InternalFormatProvider_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___InternalFormatProvider_10), (void*)value);
}
};
struct TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_StaticFields
{
public:
// System.IO.TextWriter System.IO.TextWriter::Null
TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * ___Null_1;
// System.Action`1<System.Object> System.IO.TextWriter::_WriteCharDelegate
Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * ____WriteCharDelegate_2;
// System.Action`1<System.Object> System.IO.TextWriter::_WriteStringDelegate
Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * ____WriteStringDelegate_3;
// System.Action`1<System.Object> System.IO.TextWriter::_WriteCharArrayRangeDelegate
Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * ____WriteCharArrayRangeDelegate_4;
// System.Action`1<System.Object> System.IO.TextWriter::_WriteLineCharDelegate
Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * ____WriteLineCharDelegate_5;
// System.Action`1<System.Object> System.IO.TextWriter::_WriteLineStringDelegate
Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * ____WriteLineStringDelegate_6;
// System.Action`1<System.Object> System.IO.TextWriter::_WriteLineCharArrayRangeDelegate
Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * ____WriteLineCharArrayRangeDelegate_7;
// System.Action`1<System.Object> System.IO.TextWriter::_FlushDelegate
Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * ____FlushDelegate_8;
public:
inline static int32_t get_offset_of_Null_1() { return static_cast<int32_t>(offsetof(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_StaticFields, ___Null_1)); }
inline TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * get_Null_1() const { return ___Null_1; }
inline TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 ** get_address_of_Null_1() { return &___Null_1; }
inline void set_Null_1(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * value)
{
___Null_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Null_1), (void*)value);
}
inline static int32_t get_offset_of__WriteCharDelegate_2() { return static_cast<int32_t>(offsetof(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_StaticFields, ____WriteCharDelegate_2)); }
inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * get__WriteCharDelegate_2() const { return ____WriteCharDelegate_2; }
inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 ** get_address_of__WriteCharDelegate_2() { return &____WriteCharDelegate_2; }
inline void set__WriteCharDelegate_2(Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * value)
{
____WriteCharDelegate_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____WriteCharDelegate_2), (void*)value);
}
inline static int32_t get_offset_of__WriteStringDelegate_3() { return static_cast<int32_t>(offsetof(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_StaticFields, ____WriteStringDelegate_3)); }
inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * get__WriteStringDelegate_3() const { return ____WriteStringDelegate_3; }
inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 ** get_address_of__WriteStringDelegate_3() { return &____WriteStringDelegate_3; }
inline void set__WriteStringDelegate_3(Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * value)
{
____WriteStringDelegate_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____WriteStringDelegate_3), (void*)value);
}
inline static int32_t get_offset_of__WriteCharArrayRangeDelegate_4() { return static_cast<int32_t>(offsetof(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_StaticFields, ____WriteCharArrayRangeDelegate_4)); }
inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * get__WriteCharArrayRangeDelegate_4() const { return ____WriteCharArrayRangeDelegate_4; }
inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 ** get_address_of__WriteCharArrayRangeDelegate_4() { return &____WriteCharArrayRangeDelegate_4; }
inline void set__WriteCharArrayRangeDelegate_4(Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * value)
{
____WriteCharArrayRangeDelegate_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____WriteCharArrayRangeDelegate_4), (void*)value);
}
inline static int32_t get_offset_of__WriteLineCharDelegate_5() { return static_cast<int32_t>(offsetof(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_StaticFields, ____WriteLineCharDelegate_5)); }
inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * get__WriteLineCharDelegate_5() const { return ____WriteLineCharDelegate_5; }
inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 ** get_address_of__WriteLineCharDelegate_5() { return &____WriteLineCharDelegate_5; }
inline void set__WriteLineCharDelegate_5(Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * value)
{
____WriteLineCharDelegate_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____WriteLineCharDelegate_5), (void*)value);
}
inline static int32_t get_offset_of__WriteLineStringDelegate_6() { return static_cast<int32_t>(offsetof(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_StaticFields, ____WriteLineStringDelegate_6)); }
inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * get__WriteLineStringDelegate_6() const { return ____WriteLineStringDelegate_6; }
inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 ** get_address_of__WriteLineStringDelegate_6() { return &____WriteLineStringDelegate_6; }
inline void set__WriteLineStringDelegate_6(Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * value)
{
____WriteLineStringDelegate_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____WriteLineStringDelegate_6), (void*)value);
}
inline static int32_t get_offset_of__WriteLineCharArrayRangeDelegate_7() { return static_cast<int32_t>(offsetof(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_StaticFields, ____WriteLineCharArrayRangeDelegate_7)); }
inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * get__WriteLineCharArrayRangeDelegate_7() const { return ____WriteLineCharArrayRangeDelegate_7; }
inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 ** get_address_of__WriteLineCharArrayRangeDelegate_7() { return &____WriteLineCharArrayRangeDelegate_7; }
inline void set__WriteLineCharArrayRangeDelegate_7(Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * value)
{
____WriteLineCharArrayRangeDelegate_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____WriteLineCharArrayRangeDelegate_7), (void*)value);
}
inline static int32_t get_offset_of__FlushDelegate_8() { return static_cast<int32_t>(offsetof(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_StaticFields, ____FlushDelegate_8)); }
inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * get__FlushDelegate_8() const { return ____FlushDelegate_8; }
inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 ** get_address_of__FlushDelegate_8() { return &____FlushDelegate_8; }
inline void set__FlushDelegate_8(Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * value)
{
____FlushDelegate_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&____FlushDelegate_8), (void*)value);
}
};
// 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.NonSerializedAttribute
struct NonSerializedAttribute_t1D1C4A9662B6C2FAC28237FCDFA49FA4747BC3BA : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
{
public:
public:
};
// 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.Nullable`1<System.Byte>
struct Nullable_1_tB4C4F9557481ABDC6DFB4E6C55B481A29DDCC299
{
public:
// T System.Nullable`1::value
uint8_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_tB4C4F9557481ABDC6DFB4E6C55B481A29DDCC299, ___value_0)); }
inline uint8_t get_value_0() const { return ___value_0; }
inline uint8_t* get_address_of_value_0() { return &___value_0; }
inline void set_value_0(uint8_t value)
{
___value_0 = value;
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_tB4C4F9557481ABDC6DFB4E6C55B481A29DDCC299, ___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<System.Char>
struct Nullable_1_tEB9036CD852DD7DCDAC49BEEC424155F285C4FD6
{
public:
// T System.Nullable`1::value
Il2CppChar ___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_tEB9036CD852DD7DCDAC49BEEC424155F285C4FD6, ___value_0)); }
inline Il2CppChar get_value_0() const { return ___value_0; }
inline Il2CppChar* get_address_of_value_0() { return &___value_0; }
inline void set_value_0(Il2CppChar value)
{
___value_0 = value;
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_tEB9036CD852DD7DCDAC49BEEC424155F285C4FD6, ___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<System.Double>
struct Nullable_1_tBFE8022F4FD60FAE6E29634776F92F0C7DDF0ECF
{
public:
// T System.Nullable`1::value
double ___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_tBFE8022F4FD60FAE6E29634776F92F0C7DDF0ECF, ___value_0)); }
inline double get_value_0() const { return ___value_0; }
inline double* get_address_of_value_0() { return &___value_0; }
inline void set_value_0(double value)
{
___value_0 = value;
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_tBFE8022F4FD60FAE6E29634776F92F0C7DDF0ECF, ___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<System.Int16>
struct Nullable_1_t6DD1091F06288053C77A1E21CDA46B9FC0C082FE
{
public:
// T System.Nullable`1::value
int16_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_t6DD1091F06288053C77A1E21CDA46B9FC0C082FE, ___value_0)); }
inline int16_t get_value_0() const { return ___value_0; }
inline int16_t* get_address_of_value_0() { return &___value_0; }
inline void set_value_0(int16_t value)
{
___value_0 = value;
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_t6DD1091F06288053C77A1E21CDA46B9FC0C082FE, ___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<System.Int32>
struct Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB
{
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_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB, ___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_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB, ___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<System.Int64>
struct Nullable_1_t8A84BC5F3B3D55B8E96E9B812BDCCCB962EB2AB5
{
public:
// T System.Nullable`1::value
int64_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_t8A84BC5F3B3D55B8E96E9B812BDCCCB962EB2AB5, ___value_0)); }
inline int64_t get_value_0() const { return ___value_0; }
inline int64_t* get_address_of_value_0() { return &___value_0; }
inline void set_value_0(int64_t value)
{
___value_0 = value;
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_t8A84BC5F3B3D55B8E96E9B812BDCCCB962EB2AB5, ___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<System.SByte>
struct Nullable_1_t2F4FA162D87EDE69C4CAA5E3E739CB702A780EAE
{
public:
// T System.Nullable`1::value
int8_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_t2F4FA162D87EDE69C4CAA5E3E739CB702A780EAE, ___value_0)); }
inline int8_t get_value_0() const { return ___value_0; }
inline int8_t* get_address_of_value_0() { return &___value_0; }
inline void set_value_0(int8_t value)
{
___value_0 = value;
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_t2F4FA162D87EDE69C4CAA5E3E739CB702A780EAE, ___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<System.Single>
struct Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0
{
public:
// T System.Nullable`1::value
float ___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_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0, ___value_0)); }
inline float get_value_0() const { return ___value_0; }
inline float* get_address_of_value_0() { return &___value_0; }
inline void set_value_0(float value)
{
___value_0 = value;
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0, ___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<System.UInt16>
struct Nullable_1_tF0BF09F44075092EA142C4F8348486254518EEA0
{
public:
// T System.Nullable`1::value
uint16_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_tF0BF09F44075092EA142C4F8348486254518EEA0, ___value_0)); }
inline uint16_t get_value_0() const { return ___value_0; }
inline uint16_t* get_address_of_value_0() { return &___value_0; }
inline void set_value_0(uint16_t value)
{
___value_0 = value;
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_tF0BF09F44075092EA142C4F8348486254518EEA0, ___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<System.UInt32>
struct Nullable_1_tF156B0EB96E1F21CE812F1DFC94779464E49DAF3
{
public:
// T System.Nullable`1::value
uint32_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_tF156B0EB96E1F21CE812F1DFC94779464E49DAF3, ___value_0)); }
inline uint32_t get_value_0() const { return ___value_0; }
inline uint32_t* get_address_of_value_0() { return &___value_0; }
inline void set_value_0(uint32_t value)
{
___value_0 = value;
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_tF156B0EB96E1F21CE812F1DFC94779464E49DAF3, ___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<System.UInt64>
struct Nullable_1_tE6DB2821D06FC32375C83F1A7E8AFF51557CE14B
{
public:
// T System.Nullable`1::value
uint64_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_tE6DB2821D06FC32375C83F1A7E8AFF51557CE14B, ___value_0)); }
inline uint64_t get_value_0() const { return ___value_0; }
inline uint64_t* get_address_of_value_0() { return &___value_0; }
inline void set_value_0(uint64_t value)
{
___value_0 = value;
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_tE6DB2821D06FC32375C83F1A7E8AFF51557CE14B, ___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.FieldInfo
struct FieldInfo_t : public MemberInfo_t
{
public:
public:
};
// System.Reflection.MethodBase
struct MethodBase_t : public MemberInfo_t
{
public:
public:
};
// System.Reflection.ParameterModifier
struct ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E
{
public:
// System.Boolean[] System.Reflection.ParameterModifier::_byRef
BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* ____byRef_0;
public:
inline static int32_t get_offset_of__byRef_0() { return static_cast<int32_t>(offsetof(ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E, ____byRef_0)); }
inline BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* get__byRef_0() const { return ____byRef_0; }
inline BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040** get_address_of__byRef_0() { return &____byRef_0; }
inline void set__byRef_0(BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* value)
{
____byRef_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____byRef_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Reflection.ParameterModifier
struct ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_marshaled_pinvoke
{
int32_t* ____byRef_0;
};
// Native definition for COM marshalling of System.Reflection.ParameterModifier
struct ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_marshaled_com
{
int32_t* ____byRef_0;
};
// System.Reflection.PropertyInfo
struct PropertyInfo_t : public MemberInfo_t
{
public:
public:
};
// System.Runtime.Serialization.DataContractAttribute
struct DataContractAttribute_tAD58D5877BD04EADB56BB4AEDDE342C73F032FC5 : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
{
public:
// System.Boolean System.Runtime.Serialization.DataContractAttribute::isReference
bool ___isReference_0;
public:
inline static int32_t get_offset_of_isReference_0() { return static_cast<int32_t>(offsetof(DataContractAttribute_tAD58D5877BD04EADB56BB4AEDDE342C73F032FC5, ___isReference_0)); }
inline bool get_isReference_0() const { return ___isReference_0; }
inline bool* get_address_of_isReference_0() { return &___isReference_0; }
inline void set_isReference_0(bool value)
{
___isReference_0 = value;
}
};
// System.Runtime.Serialization.DataMemberAttribute
struct DataMemberAttribute_tC865433FEC93FFD46D6F3E4BB28F262C9EE40525 : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
{
public:
// System.String System.Runtime.Serialization.DataMemberAttribute::name
String_t* ___name_0;
// System.Int32 System.Runtime.Serialization.DataMemberAttribute::order
int32_t ___order_1;
// System.Boolean System.Runtime.Serialization.DataMemberAttribute::isRequired
bool ___isRequired_2;
// System.Boolean System.Runtime.Serialization.DataMemberAttribute::emitDefaultValue
bool ___emitDefaultValue_3;
public:
inline static int32_t get_offset_of_name_0() { return static_cast<int32_t>(offsetof(DataMemberAttribute_tC865433FEC93FFD46D6F3E4BB28F262C9EE40525, ___name_0)); }
inline String_t* get_name_0() const { return ___name_0; }
inline String_t** get_address_of_name_0() { return &___name_0; }
inline void set_name_0(String_t* value)
{
___name_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___name_0), (void*)value);
}
inline static int32_t get_offset_of_order_1() { return static_cast<int32_t>(offsetof(DataMemberAttribute_tC865433FEC93FFD46D6F3E4BB28F262C9EE40525, ___order_1)); }
inline int32_t get_order_1() const { return ___order_1; }
inline int32_t* get_address_of_order_1() { return &___order_1; }
inline void set_order_1(int32_t value)
{
___order_1 = value;
}
inline static int32_t get_offset_of_isRequired_2() { return static_cast<int32_t>(offsetof(DataMemberAttribute_tC865433FEC93FFD46D6F3E4BB28F262C9EE40525, ___isRequired_2)); }
inline bool get_isRequired_2() const { return ___isRequired_2; }
inline bool* get_address_of_isRequired_2() { return &___isRequired_2; }
inline void set_isRequired_2(bool value)
{
___isRequired_2 = value;
}
inline static int32_t get_offset_of_emitDefaultValue_3() { return static_cast<int32_t>(offsetof(DataMemberAttribute_tC865433FEC93FFD46D6F3E4BB28F262C9EE40525, ___emitDefaultValue_3)); }
inline bool get_emitDefaultValue_3() const { return ___emitDefaultValue_3; }
inline bool* get_address_of_emitDefaultValue_3() { return &___emitDefaultValue_3; }
inline void set_emitDefaultValue_3(bool value)
{
___emitDefaultValue_3 = value;
}
};
// System.SByte
struct SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF
{
public:
// System.SByte System.SByte::m_value
int8_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, ___m_value_0)); }
inline int8_t get_m_value_0() const { return ___m_value_0; }
inline int8_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(int8_t value)
{
___m_value_0 = value;
}
};
// System.Single
struct Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1
{
public:
// System.Single System.Single::m_value
float ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, ___m_value_0)); }
inline float get_m_value_0() const { return ___m_value_0; }
inline float* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(float value)
{
___m_value_0 = value;
}
};
// 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:
};
// Valve.Newtonsoft.Json.Converters.BinaryConverter
struct BinaryConverter_t03DC719B247B4C2889C9D314434AF1BC491EFF57 : public JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595
{
public:
// Valve.Newtonsoft.Json.Utilities.ReflectionObject Valve.Newtonsoft.Json.Converters.BinaryConverter::_reflectionObject
ReflectionObject_t95CE0EEC27D4251A6F4778D26E57AC8072C6C8F5 * ____reflectionObject_0;
public:
inline static int32_t get_offset_of__reflectionObject_0() { return static_cast<int32_t>(offsetof(BinaryConverter_t03DC719B247B4C2889C9D314434AF1BC491EFF57, ____reflectionObject_0)); }
inline ReflectionObject_t95CE0EEC27D4251A6F4778D26E57AC8072C6C8F5 * get__reflectionObject_0() const { return ____reflectionObject_0; }
inline ReflectionObject_t95CE0EEC27D4251A6F4778D26E57AC8072C6C8F5 ** get_address_of__reflectionObject_0() { return &____reflectionObject_0; }
inline void set__reflectionObject_0(ReflectionObject_t95CE0EEC27D4251A6F4778D26E57AC8072C6C8F5 * value)
{
____reflectionObject_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____reflectionObject_0), (void*)value);
}
};
// Valve.Newtonsoft.Json.Converters.BsonObjectIdConverter
struct BsonObjectIdConverter_t93B9311C1D401CC4ADD6C3FE3D8E8A17FD1B13BE : public JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595
{
public:
public:
};
// Valve.Newtonsoft.Json.Converters.KeyValuePairConverter
struct KeyValuePairConverter_t623AF45824C80A791AEE4381012644750CEC9FF9 : public JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595
{
public:
public:
};
struct KeyValuePairConverter_t623AF45824C80A791AEE4381012644750CEC9FF9_StaticFields
{
public:
// Valve.Newtonsoft.Json.Utilities.ThreadSafeStore`2<System.Type,Valve.Newtonsoft.Json.Utilities.ReflectionObject> Valve.Newtonsoft.Json.Converters.KeyValuePairConverter::ReflectionObjectPerType
ThreadSafeStore_2_tDBF880F3EC7F9428C77DC19AF731FE33E3CB7B2D * ___ReflectionObjectPerType_0;
public:
inline static int32_t get_offset_of_ReflectionObjectPerType_0() { return static_cast<int32_t>(offsetof(KeyValuePairConverter_t623AF45824C80A791AEE4381012644750CEC9FF9_StaticFields, ___ReflectionObjectPerType_0)); }
inline ThreadSafeStore_2_tDBF880F3EC7F9428C77DC19AF731FE33E3CB7B2D * get_ReflectionObjectPerType_0() const { return ___ReflectionObjectPerType_0; }
inline ThreadSafeStore_2_tDBF880F3EC7F9428C77DC19AF731FE33E3CB7B2D ** get_address_of_ReflectionObjectPerType_0() { return &___ReflectionObjectPerType_0; }
inline void set_ReflectionObjectPerType_0(ThreadSafeStore_2_tDBF880F3EC7F9428C77DC19AF731FE33E3CB7B2D * value)
{
___ReflectionObjectPerType_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ReflectionObjectPerType_0), (void*)value);
}
};
// Valve.Newtonsoft.Json.Converters.RegexConverter
struct RegexConverter_t732C85CCD56E0511E2154E9E284FD426FB467882 : public JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595
{
public:
public:
};
// Valve.Newtonsoft.Json.JsonExtensionDataAttribute
struct JsonExtensionDataAttribute_tC858B08E1ACE700629982E390F2FDA7A0580C208 : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
{
public:
// System.Boolean Valve.Newtonsoft.Json.JsonExtensionDataAttribute::<WriteData>k__BackingField
bool ___U3CWriteDataU3Ek__BackingField_0;
// System.Boolean Valve.Newtonsoft.Json.JsonExtensionDataAttribute::<ReadData>k__BackingField
bool ___U3CReadDataU3Ek__BackingField_1;
public:
inline static int32_t get_offset_of_U3CWriteDataU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(JsonExtensionDataAttribute_tC858B08E1ACE700629982E390F2FDA7A0580C208, ___U3CWriteDataU3Ek__BackingField_0)); }
inline bool get_U3CWriteDataU3Ek__BackingField_0() const { return ___U3CWriteDataU3Ek__BackingField_0; }
inline bool* get_address_of_U3CWriteDataU3Ek__BackingField_0() { return &___U3CWriteDataU3Ek__BackingField_0; }
inline void set_U3CWriteDataU3Ek__BackingField_0(bool value)
{
___U3CWriteDataU3Ek__BackingField_0 = value;
}
inline static int32_t get_offset_of_U3CReadDataU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(JsonExtensionDataAttribute_tC858B08E1ACE700629982E390F2FDA7A0580C208, ___U3CReadDataU3Ek__BackingField_1)); }
inline bool get_U3CReadDataU3Ek__BackingField_1() const { return ___U3CReadDataU3Ek__BackingField_1; }
inline bool* get_address_of_U3CReadDataU3Ek__BackingField_1() { return &___U3CReadDataU3Ek__BackingField_1; }
inline void set_U3CReadDataU3Ek__BackingField_1(bool value)
{
___U3CReadDataU3Ek__BackingField_1 = value;
}
};
// Valve.Newtonsoft.Json.JsonIgnoreAttribute
struct JsonIgnoreAttribute_t3BE833571932FA661098014E11BECC2E8D61A95C : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
{
public:
public:
};
// Valve.Newtonsoft.Json.JsonRequiredAttribute
struct JsonRequiredAttribute_t9DE102747DCD1EBD135D2545271F6E894CEA77AB : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
{
public:
public:
};
// Valve.Newtonsoft.Json.Linq.JContainer
struct JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC : public JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2
{
public:
// System.Object Valve.Newtonsoft.Json.Linq.JContainer::_syncRoot
RuntimeObject * ____syncRoot_13;
// System.Boolean Valve.Newtonsoft.Json.Linq.JContainer::_busy
bool ____busy_14;
public:
inline static int32_t get_offset_of__syncRoot_13() { return static_cast<int32_t>(offsetof(JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC, ____syncRoot_13)); }
inline RuntimeObject * get__syncRoot_13() const { return ____syncRoot_13; }
inline RuntimeObject ** get_address_of__syncRoot_13() { return &____syncRoot_13; }
inline void set__syncRoot_13(RuntimeObject * value)
{
____syncRoot_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_13), (void*)value);
}
inline static int32_t get_offset_of__busy_14() { return static_cast<int32_t>(offsetof(JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC, ____busy_14)); }
inline bool get__busy_14() const { return ____busy_14; }
inline bool* get_address_of__busy_14() { return &____busy_14; }
inline void set__busy_14(bool value)
{
____busy_14 = value;
}
};
// Valve.Newtonsoft.Json.Linq.JEnumerable`1<System.Object>
struct JEnumerable_1_t0692028F1F49BF617F898E878F495BDA60AAA349
{
public:
// System.Collections.Generic.IEnumerable`1<T> Valve.Newtonsoft.Json.Linq.JEnumerable`1::_enumerable
RuntimeObject* ____enumerable_1;
public:
inline static int32_t get_offset_of__enumerable_1() { return static_cast<int32_t>(offsetof(JEnumerable_1_t0692028F1F49BF617F898E878F495BDA60AAA349, ____enumerable_1)); }
inline RuntimeObject* get__enumerable_1() const { return ____enumerable_1; }
inline RuntimeObject** get_address_of__enumerable_1() { return &____enumerable_1; }
inline void set__enumerable_1(RuntimeObject* value)
{
____enumerable_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____enumerable_1), (void*)value);
}
};
struct JEnumerable_1_t0692028F1F49BF617F898E878F495BDA60AAA349_StaticFields
{
public:
// Valve.Newtonsoft.Json.Linq.JEnumerable`1<T> Valve.Newtonsoft.Json.Linq.JEnumerable`1::Empty
JEnumerable_1_t0692028F1F49BF617F898E878F495BDA60AAA349 ___Empty_0;
public:
inline static int32_t get_offset_of_Empty_0() { return static_cast<int32_t>(offsetof(JEnumerable_1_t0692028F1F49BF617F898E878F495BDA60AAA349_StaticFields, ___Empty_0)); }
inline JEnumerable_1_t0692028F1F49BF617F898E878F495BDA60AAA349 get_Empty_0() const { return ___Empty_0; }
inline JEnumerable_1_t0692028F1F49BF617F898E878F495BDA60AAA349 * get_address_of_Empty_0() { return &___Empty_0; }
inline void set_Empty_0(JEnumerable_1_t0692028F1F49BF617F898E878F495BDA60AAA349 value)
{
___Empty_0 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___Empty_0))->____enumerable_1), (void*)NULL);
}
};
// Valve.Newtonsoft.Json.Linq.JEnumerable`1<Valve.Newtonsoft.Json.Linq.JToken>
struct JEnumerable_1_t8D29AB2A452946C954DC038C163C500CD83ACEF1
{
public:
// System.Collections.Generic.IEnumerable`1<T> Valve.Newtonsoft.Json.Linq.JEnumerable`1::_enumerable
RuntimeObject* ____enumerable_1;
public:
inline static int32_t get_offset_of__enumerable_1() { return static_cast<int32_t>(offsetof(JEnumerable_1_t8D29AB2A452946C954DC038C163C500CD83ACEF1, ____enumerable_1)); }
inline RuntimeObject* get__enumerable_1() const { return ____enumerable_1; }
inline RuntimeObject** get_address_of__enumerable_1() { return &____enumerable_1; }
inline void set__enumerable_1(RuntimeObject* value)
{
____enumerable_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____enumerable_1), (void*)value);
}
};
struct JEnumerable_1_t8D29AB2A452946C954DC038C163C500CD83ACEF1_StaticFields
{
public:
// Valve.Newtonsoft.Json.Linq.JEnumerable`1<T> Valve.Newtonsoft.Json.Linq.JEnumerable`1::Empty
JEnumerable_1_t8D29AB2A452946C954DC038C163C500CD83ACEF1 ___Empty_0;
public:
inline static int32_t get_offset_of_Empty_0() { return static_cast<int32_t>(offsetof(JEnumerable_1_t8D29AB2A452946C954DC038C163C500CD83ACEF1_StaticFields, ___Empty_0)); }
inline JEnumerable_1_t8D29AB2A452946C954DC038C163C500CD83ACEF1 get_Empty_0() const { return ___Empty_0; }
inline JEnumerable_1_t8D29AB2A452946C954DC038C163C500CD83ACEF1 * get_address_of_Empty_0() { return &___Empty_0; }
inline void set_Empty_0(JEnumerable_1_t8D29AB2A452946C954DC038C163C500CD83ACEF1 value)
{
___Empty_0 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___Empty_0))->____enumerable_1), (void*)NULL);
}
};
// Valve.Newtonsoft.Json.Linq.JPropertyKeyedCollection
struct JPropertyKeyedCollection_t9EEDCB4FA22748C56AC9E4CD74AAA26F9D54A668 : public Collection_1_tE93A51FAD5C6E4AC1EA698A55BAC243AF37645E8
{
public:
// System.Collections.Generic.Dictionary`2<System.String,Valve.Newtonsoft.Json.Linq.JToken> Valve.Newtonsoft.Json.Linq.JPropertyKeyedCollection::_dictionary
Dictionary_2_t40E91C81D5ADA639FA8CD3CD9E4F8824FE177EB5 * ____dictionary_3;
public:
inline static int32_t get_offset_of__dictionary_3() { return static_cast<int32_t>(offsetof(JPropertyKeyedCollection_t9EEDCB4FA22748C56AC9E4CD74AAA26F9D54A668, ____dictionary_3)); }
inline Dictionary_2_t40E91C81D5ADA639FA8CD3CD9E4F8824FE177EB5 * get__dictionary_3() const { return ____dictionary_3; }
inline Dictionary_2_t40E91C81D5ADA639FA8CD3CD9E4F8824FE177EB5 ** get_address_of__dictionary_3() { return &____dictionary_3; }
inline void set__dictionary_3(Dictionary_2_t40E91C81D5ADA639FA8CD3CD9E4F8824FE177EB5 * value)
{
____dictionary_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____dictionary_3), (void*)value);
}
};
struct JPropertyKeyedCollection_t9EEDCB4FA22748C56AC9E4CD74AAA26F9D54A668_StaticFields
{
public:
// System.Collections.Generic.IEqualityComparer`1<System.String> Valve.Newtonsoft.Json.Linq.JPropertyKeyedCollection::Comparer
RuntimeObject* ___Comparer_2;
public:
inline static int32_t get_offset_of_Comparer_2() { return static_cast<int32_t>(offsetof(JPropertyKeyedCollection_t9EEDCB4FA22748C56AC9E4CD74AAA26F9D54A668_StaticFields, ___Comparer_2)); }
inline RuntimeObject* get_Comparer_2() const { return ___Comparer_2; }
inline RuntimeObject** get_address_of_Comparer_2() { return &___Comparer_2; }
inline void set_Comparer_2(RuntimeObject* value)
{
___Comparer_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Comparer_2), (void*)value);
}
};
// Valve.Newtonsoft.Json.Serialization.DefaultSerializationBinder
struct DefaultSerializationBinder_t920F0511A88D51A0CCDFDCB3C8F0E12CEDB5F3E3 : public SerializationBinder_tB5EBAF328371FB7CF23E37F5984D8412762CFFA4
{
public:
// Valve.Newtonsoft.Json.Utilities.ThreadSafeStore`2<Valve.Newtonsoft.Json.Serialization.DefaultSerializationBinder_TypeNameKey,System.Type> Valve.Newtonsoft.Json.Serialization.DefaultSerializationBinder::_typeCache
ThreadSafeStore_2_t4514B8E56056BAF0F4C62DC3FE61190B6C7A83F7 * ____typeCache_1;
public:
inline static int32_t get_offset_of__typeCache_1() { return static_cast<int32_t>(offsetof(DefaultSerializationBinder_t920F0511A88D51A0CCDFDCB3C8F0E12CEDB5F3E3, ____typeCache_1)); }
inline ThreadSafeStore_2_t4514B8E56056BAF0F4C62DC3FE61190B6C7A83F7 * get__typeCache_1() const { return ____typeCache_1; }
inline ThreadSafeStore_2_t4514B8E56056BAF0F4C62DC3FE61190B6C7A83F7 ** get_address_of__typeCache_1() { return &____typeCache_1; }
inline void set__typeCache_1(ThreadSafeStore_2_t4514B8E56056BAF0F4C62DC3FE61190B6C7A83F7 * value)
{
____typeCache_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____typeCache_1), (void*)value);
}
};
struct DefaultSerializationBinder_t920F0511A88D51A0CCDFDCB3C8F0E12CEDB5F3E3_StaticFields
{
public:
// Valve.Newtonsoft.Json.Serialization.DefaultSerializationBinder Valve.Newtonsoft.Json.Serialization.DefaultSerializationBinder::Instance
DefaultSerializationBinder_t920F0511A88D51A0CCDFDCB3C8F0E12CEDB5F3E3 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(DefaultSerializationBinder_t920F0511A88D51A0CCDFDCB3C8F0E12CEDB5F3E3_StaticFields, ___Instance_0)); }
inline DefaultSerializationBinder_t920F0511A88D51A0CCDFDCB3C8F0E12CEDB5F3E3 * get_Instance_0() const { return ___Instance_0; }
inline DefaultSerializationBinder_t920F0511A88D51A0CCDFDCB3C8F0E12CEDB5F3E3 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(DefaultSerializationBinder_t920F0511A88D51A0CCDFDCB3C8F0E12CEDB5F3E3 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// Valve.Newtonsoft.Json.Serialization.DefaultSerializationBinder_TypeNameKey
struct TypeNameKey_tF95DA6A58197B920C4D8C069E6543C6EEDA08312
{
public:
// System.String Valve.Newtonsoft.Json.Serialization.DefaultSerializationBinder_TypeNameKey::AssemblyName
String_t* ___AssemblyName_0;
// System.String Valve.Newtonsoft.Json.Serialization.DefaultSerializationBinder_TypeNameKey::TypeName
String_t* ___TypeName_1;
public:
inline static int32_t get_offset_of_AssemblyName_0() { return static_cast<int32_t>(offsetof(TypeNameKey_tF95DA6A58197B920C4D8C069E6543C6EEDA08312, ___AssemblyName_0)); }
inline String_t* get_AssemblyName_0() const { return ___AssemblyName_0; }
inline String_t** get_address_of_AssemblyName_0() { return &___AssemblyName_0; }
inline void set_AssemblyName_0(String_t* value)
{
___AssemblyName_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___AssemblyName_0), (void*)value);
}
inline static int32_t get_offset_of_TypeName_1() { return static_cast<int32_t>(offsetof(TypeNameKey_tF95DA6A58197B920C4D8C069E6543C6EEDA08312, ___TypeName_1)); }
inline String_t* get_TypeName_1() const { return ___TypeName_1; }
inline String_t** get_address_of_TypeName_1() { return &___TypeName_1; }
inline void set_TypeName_1(String_t* value)
{
___TypeName_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___TypeName_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of Valve.Newtonsoft.Json.Serialization.DefaultSerializationBinder/TypeNameKey
struct TypeNameKey_tF95DA6A58197B920C4D8C069E6543C6EEDA08312_marshaled_pinvoke
{
char* ___AssemblyName_0;
char* ___TypeName_1;
};
// Native definition for COM marshalling of Valve.Newtonsoft.Json.Serialization.DefaultSerializationBinder/TypeNameKey
struct TypeNameKey_tF95DA6A58197B920C4D8C069E6543C6EEDA08312_marshaled_com
{
Il2CppChar* ___AssemblyName_0;
Il2CppChar* ___TypeName_1;
};
// Valve.Newtonsoft.Json.Serialization.ErrorEventArgs
struct ErrorEventArgs_tB0943D7E08A6FA558FC6C2E534DFF2FC535FF298 : public EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E
{
public:
// System.Object Valve.Newtonsoft.Json.Serialization.ErrorEventArgs::<CurrentObject>k__BackingField
RuntimeObject * ___U3CCurrentObjectU3Ek__BackingField_1;
// Valve.Newtonsoft.Json.Serialization.ErrorContext Valve.Newtonsoft.Json.Serialization.ErrorEventArgs::<ErrorContext>k__BackingField
ErrorContext_t61739A48B44A4707051088E7013FD4E347DBE7A0 * ___U3CErrorContextU3Ek__BackingField_2;
public:
inline static int32_t get_offset_of_U3CCurrentObjectU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(ErrorEventArgs_tB0943D7E08A6FA558FC6C2E534DFF2FC535FF298, ___U3CCurrentObjectU3Ek__BackingField_1)); }
inline RuntimeObject * get_U3CCurrentObjectU3Ek__BackingField_1() const { return ___U3CCurrentObjectU3Ek__BackingField_1; }
inline RuntimeObject ** get_address_of_U3CCurrentObjectU3Ek__BackingField_1() { return &___U3CCurrentObjectU3Ek__BackingField_1; }
inline void set_U3CCurrentObjectU3Ek__BackingField_1(RuntimeObject * value)
{
___U3CCurrentObjectU3Ek__BackingField_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CCurrentObjectU3Ek__BackingField_1), (void*)value);
}
inline static int32_t get_offset_of_U3CErrorContextU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(ErrorEventArgs_tB0943D7E08A6FA558FC6C2E534DFF2FC535FF298, ___U3CErrorContextU3Ek__BackingField_2)); }
inline ErrorContext_t61739A48B44A4707051088E7013FD4E347DBE7A0 * get_U3CErrorContextU3Ek__BackingField_2() const { return ___U3CErrorContextU3Ek__BackingField_2; }
inline ErrorContext_t61739A48B44A4707051088E7013FD4E347DBE7A0 ** get_address_of_U3CErrorContextU3Ek__BackingField_2() { return &___U3CErrorContextU3Ek__BackingField_2; }
inline void set_U3CErrorContextU3Ek__BackingField_2(ErrorContext_t61739A48B44A4707051088E7013FD4E347DBE7A0 * value)
{
___U3CErrorContextU3Ek__BackingField_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CErrorContextU3Ek__BackingField_2), (void*)value);
}
};
// Valve.Newtonsoft.Json.Serialization.ResolverContractKey
struct ResolverContractKey_tFC0DA3A6971980AA6D4E6E0D85CEB0D25615534B
{
public:
// System.Type Valve.Newtonsoft.Json.Serialization.ResolverContractKey::_resolverType
Type_t * ____resolverType_0;
// System.Type Valve.Newtonsoft.Json.Serialization.ResolverContractKey::_contractType
Type_t * ____contractType_1;
public:
inline static int32_t get_offset_of__resolverType_0() { return static_cast<int32_t>(offsetof(ResolverContractKey_tFC0DA3A6971980AA6D4E6E0D85CEB0D25615534B, ____resolverType_0)); }
inline Type_t * get__resolverType_0() const { return ____resolverType_0; }
inline Type_t ** get_address_of__resolverType_0() { return &____resolverType_0; }
inline void set__resolverType_0(Type_t * value)
{
____resolverType_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____resolverType_0), (void*)value);
}
inline static int32_t get_offset_of__contractType_1() { return static_cast<int32_t>(offsetof(ResolverContractKey_tFC0DA3A6971980AA6D4E6E0D85CEB0D25615534B, ____contractType_1)); }
inline Type_t * get__contractType_1() const { return ____contractType_1; }
inline Type_t ** get_address_of__contractType_1() { return &____contractType_1; }
inline void set__contractType_1(Type_t * value)
{
____contractType_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____contractType_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of Valve.Newtonsoft.Json.Serialization.ResolverContractKey
struct ResolverContractKey_tFC0DA3A6971980AA6D4E6E0D85CEB0D25615534B_marshaled_pinvoke
{
Type_t * ____resolverType_0;
Type_t * ____contractType_1;
};
// Native definition for COM marshalling of Valve.Newtonsoft.Json.Serialization.ResolverContractKey
struct ResolverContractKey_tFC0DA3A6971980AA6D4E6E0D85CEB0D25615534B_marshaled_com
{
Type_t * ____resolverType_0;
Type_t * ____contractType_1;
};
// System.AppDomain
struct AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 : public MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF
{
public:
// System.IntPtr System.AppDomain::_mono_app_domain
intptr_t ____mono_app_domain_1;
// System.Object System.AppDomain::_evidence
RuntimeObject * ____evidence_6;
// System.Object System.AppDomain::_granted
RuntimeObject * ____granted_7;
// System.Int32 System.AppDomain::_principalPolicy
int32_t ____principalPolicy_8;
// System.AssemblyLoadEventHandler System.AppDomain::AssemblyLoad
AssemblyLoadEventHandler_t53F8340027F9EE67E8A22E7D8C1A3770345153C9 * ___AssemblyLoad_11;
// System.ResolveEventHandler System.AppDomain::AssemblyResolve
ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 * ___AssemblyResolve_12;
// System.EventHandler System.AppDomain::DomainUnload
EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * ___DomainUnload_13;
// System.EventHandler System.AppDomain::ProcessExit
EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * ___ProcessExit_14;
// System.ResolveEventHandler System.AppDomain::ResourceResolve
ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 * ___ResourceResolve_15;
// System.ResolveEventHandler System.AppDomain::TypeResolve
ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 * ___TypeResolve_16;
// System.UnhandledExceptionEventHandler System.AppDomain::UnhandledException
UnhandledExceptionEventHandler_tB0DFF05ABF7A3A234C87D4F7A71F98E9AB2D91DE * ___UnhandledException_17;
// System.EventHandler`1<System.Runtime.ExceptionServices.FirstChanceExceptionEventArgs> System.AppDomain::FirstChanceException
EventHandler_1_t1E35ED2E29145994C6C03E57601C6D48C61083FF * ___FirstChanceException_18;
// System.Object System.AppDomain::_domain_manager
RuntimeObject * ____domain_manager_19;
// System.ResolveEventHandler System.AppDomain::ReflectionOnlyAssemblyResolve
ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 * ___ReflectionOnlyAssemblyResolve_20;
// System.Object System.AppDomain::_activation
RuntimeObject * ____activation_21;
// System.Object System.AppDomain::_applicationIdentity
RuntimeObject * ____applicationIdentity_22;
// System.Collections.Generic.List`1<System.String> System.AppDomain::compatibility_switch
List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * ___compatibility_switch_23;
public:
inline static int32_t get_offset_of__mono_app_domain_1() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8, ____mono_app_domain_1)); }
inline intptr_t get__mono_app_domain_1() const { return ____mono_app_domain_1; }
inline intptr_t* get_address_of__mono_app_domain_1() { return &____mono_app_domain_1; }
inline void set__mono_app_domain_1(intptr_t value)
{
____mono_app_domain_1 = value;
}
inline static int32_t get_offset_of__evidence_6() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8, ____evidence_6)); }
inline RuntimeObject * get__evidence_6() const { return ____evidence_6; }
inline RuntimeObject ** get_address_of__evidence_6() { return &____evidence_6; }
inline void set__evidence_6(RuntimeObject * value)
{
____evidence_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____evidence_6), (void*)value);
}
inline static int32_t get_offset_of__granted_7() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8, ____granted_7)); }
inline RuntimeObject * get__granted_7() const { return ____granted_7; }
inline RuntimeObject ** get_address_of__granted_7() { return &____granted_7; }
inline void set__granted_7(RuntimeObject * value)
{
____granted_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____granted_7), (void*)value);
}
inline static int32_t get_offset_of__principalPolicy_8() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8, ____principalPolicy_8)); }
inline int32_t get__principalPolicy_8() const { return ____principalPolicy_8; }
inline int32_t* get_address_of__principalPolicy_8() { return &____principalPolicy_8; }
inline void set__principalPolicy_8(int32_t value)
{
____principalPolicy_8 = value;
}
inline static int32_t get_offset_of_AssemblyLoad_11() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8, ___AssemblyLoad_11)); }
inline AssemblyLoadEventHandler_t53F8340027F9EE67E8A22E7D8C1A3770345153C9 * get_AssemblyLoad_11() const { return ___AssemblyLoad_11; }
inline AssemblyLoadEventHandler_t53F8340027F9EE67E8A22E7D8C1A3770345153C9 ** get_address_of_AssemblyLoad_11() { return &___AssemblyLoad_11; }
inline void set_AssemblyLoad_11(AssemblyLoadEventHandler_t53F8340027F9EE67E8A22E7D8C1A3770345153C9 * value)
{
___AssemblyLoad_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___AssemblyLoad_11), (void*)value);
}
inline static int32_t get_offset_of_AssemblyResolve_12() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8, ___AssemblyResolve_12)); }
inline ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 * get_AssemblyResolve_12() const { return ___AssemblyResolve_12; }
inline ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 ** get_address_of_AssemblyResolve_12() { return &___AssemblyResolve_12; }
inline void set_AssemblyResolve_12(ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 * value)
{
___AssemblyResolve_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___AssemblyResolve_12), (void*)value);
}
inline static int32_t get_offset_of_DomainUnload_13() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8, ___DomainUnload_13)); }
inline EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * get_DomainUnload_13() const { return ___DomainUnload_13; }
inline EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C ** get_address_of_DomainUnload_13() { return &___DomainUnload_13; }
inline void set_DomainUnload_13(EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * value)
{
___DomainUnload_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___DomainUnload_13), (void*)value);
}
inline static int32_t get_offset_of_ProcessExit_14() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8, ___ProcessExit_14)); }
inline EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * get_ProcessExit_14() const { return ___ProcessExit_14; }
inline EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C ** get_address_of_ProcessExit_14() { return &___ProcessExit_14; }
inline void set_ProcessExit_14(EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * value)
{
___ProcessExit_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ProcessExit_14), (void*)value);
}
inline static int32_t get_offset_of_ResourceResolve_15() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8, ___ResourceResolve_15)); }
inline ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 * get_ResourceResolve_15() const { return ___ResourceResolve_15; }
inline ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 ** get_address_of_ResourceResolve_15() { return &___ResourceResolve_15; }
inline void set_ResourceResolve_15(ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 * value)
{
___ResourceResolve_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ResourceResolve_15), (void*)value);
}
inline static int32_t get_offset_of_TypeResolve_16() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8, ___TypeResolve_16)); }
inline ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 * get_TypeResolve_16() const { return ___TypeResolve_16; }
inline ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 ** get_address_of_TypeResolve_16() { return &___TypeResolve_16; }
inline void set_TypeResolve_16(ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 * value)
{
___TypeResolve_16 = value;
Il2CppCodeGenWriteBarrier((void**)(&___TypeResolve_16), (void*)value);
}
inline static int32_t get_offset_of_UnhandledException_17() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8, ___UnhandledException_17)); }
inline UnhandledExceptionEventHandler_tB0DFF05ABF7A3A234C87D4F7A71F98E9AB2D91DE * get_UnhandledException_17() const { return ___UnhandledException_17; }
inline UnhandledExceptionEventHandler_tB0DFF05ABF7A3A234C87D4F7A71F98E9AB2D91DE ** get_address_of_UnhandledException_17() { return &___UnhandledException_17; }
inline void set_UnhandledException_17(UnhandledExceptionEventHandler_tB0DFF05ABF7A3A234C87D4F7A71F98E9AB2D91DE * value)
{
___UnhandledException_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&___UnhandledException_17), (void*)value);
}
inline static int32_t get_offset_of_FirstChanceException_18() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8, ___FirstChanceException_18)); }
inline EventHandler_1_t1E35ED2E29145994C6C03E57601C6D48C61083FF * get_FirstChanceException_18() const { return ___FirstChanceException_18; }
inline EventHandler_1_t1E35ED2E29145994C6C03E57601C6D48C61083FF ** get_address_of_FirstChanceException_18() { return &___FirstChanceException_18; }
inline void set_FirstChanceException_18(EventHandler_1_t1E35ED2E29145994C6C03E57601C6D48C61083FF * value)
{
___FirstChanceException_18 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FirstChanceException_18), (void*)value);
}
inline static int32_t get_offset_of__domain_manager_19() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8, ____domain_manager_19)); }
inline RuntimeObject * get__domain_manager_19() const { return ____domain_manager_19; }
inline RuntimeObject ** get_address_of__domain_manager_19() { return &____domain_manager_19; }
inline void set__domain_manager_19(RuntimeObject * value)
{
____domain_manager_19 = value;
Il2CppCodeGenWriteBarrier((void**)(&____domain_manager_19), (void*)value);
}
inline static int32_t get_offset_of_ReflectionOnlyAssemblyResolve_20() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8, ___ReflectionOnlyAssemblyResolve_20)); }
inline ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 * get_ReflectionOnlyAssemblyResolve_20() const { return ___ReflectionOnlyAssemblyResolve_20; }
inline ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 ** get_address_of_ReflectionOnlyAssemblyResolve_20() { return &___ReflectionOnlyAssemblyResolve_20; }
inline void set_ReflectionOnlyAssemblyResolve_20(ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 * value)
{
___ReflectionOnlyAssemblyResolve_20 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ReflectionOnlyAssemblyResolve_20), (void*)value);
}
inline static int32_t get_offset_of__activation_21() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8, ____activation_21)); }
inline RuntimeObject * get__activation_21() const { return ____activation_21; }
inline RuntimeObject ** get_address_of__activation_21() { return &____activation_21; }
inline void set__activation_21(RuntimeObject * value)
{
____activation_21 = value;
Il2CppCodeGenWriteBarrier((void**)(&____activation_21), (void*)value);
}
inline static int32_t get_offset_of__applicationIdentity_22() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8, ____applicationIdentity_22)); }
inline RuntimeObject * get__applicationIdentity_22() const { return ____applicationIdentity_22; }
inline RuntimeObject ** get_address_of__applicationIdentity_22() { return &____applicationIdentity_22; }
inline void set__applicationIdentity_22(RuntimeObject * value)
{
____applicationIdentity_22 = value;
Il2CppCodeGenWriteBarrier((void**)(&____applicationIdentity_22), (void*)value);
}
inline static int32_t get_offset_of_compatibility_switch_23() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8, ___compatibility_switch_23)); }
inline List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * get_compatibility_switch_23() const { return ___compatibility_switch_23; }
inline List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 ** get_address_of_compatibility_switch_23() { return &___compatibility_switch_23; }
inline void set_compatibility_switch_23(List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * value)
{
___compatibility_switch_23 = value;
Il2CppCodeGenWriteBarrier((void**)(&___compatibility_switch_23), (void*)value);
}
};
struct AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8_StaticFields
{
public:
// System.String System.AppDomain::_process_guid
String_t* ____process_guid_2;
// System.AppDomain System.AppDomain::default_domain
AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * ___default_domain_10;
public:
inline static int32_t get_offset_of__process_guid_2() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8_StaticFields, ____process_guid_2)); }
inline String_t* get__process_guid_2() const { return ____process_guid_2; }
inline String_t** get_address_of__process_guid_2() { return &____process_guid_2; }
inline void set__process_guid_2(String_t* value)
{
____process_guid_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____process_guid_2), (void*)value);
}
inline static int32_t get_offset_of_default_domain_10() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8_StaticFields, ___default_domain_10)); }
inline AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * get_default_domain_10() const { return ___default_domain_10; }
inline AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 ** get_address_of_default_domain_10() { return &___default_domain_10; }
inline void set_default_domain_10(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * value)
{
___default_domain_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___default_domain_10), (void*)value);
}
};
struct AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8_ThreadStaticFields
{
public:
// System.Collections.Generic.Dictionary`2<System.String,System.Object> System.AppDomain::type_resolve_in_progress
Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA * ___type_resolve_in_progress_3;
// System.Collections.Generic.Dictionary`2<System.String,System.Object> System.AppDomain::assembly_resolve_in_progress
Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA * ___assembly_resolve_in_progress_4;
// System.Collections.Generic.Dictionary`2<System.String,System.Object> System.AppDomain::assembly_resolve_in_progress_refonly
Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA * ___assembly_resolve_in_progress_refonly_5;
// System.Object System.AppDomain::_principal
RuntimeObject * ____principal_9;
public:
inline static int32_t get_offset_of_type_resolve_in_progress_3() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8_ThreadStaticFields, ___type_resolve_in_progress_3)); }
inline Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA * get_type_resolve_in_progress_3() const { return ___type_resolve_in_progress_3; }
inline Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA ** get_address_of_type_resolve_in_progress_3() { return &___type_resolve_in_progress_3; }
inline void set_type_resolve_in_progress_3(Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA * value)
{
___type_resolve_in_progress_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___type_resolve_in_progress_3), (void*)value);
}
inline static int32_t get_offset_of_assembly_resolve_in_progress_4() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8_ThreadStaticFields, ___assembly_resolve_in_progress_4)); }
inline Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA * get_assembly_resolve_in_progress_4() const { return ___assembly_resolve_in_progress_4; }
inline Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA ** get_address_of_assembly_resolve_in_progress_4() { return &___assembly_resolve_in_progress_4; }
inline void set_assembly_resolve_in_progress_4(Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA * value)
{
___assembly_resolve_in_progress_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___assembly_resolve_in_progress_4), (void*)value);
}
inline static int32_t get_offset_of_assembly_resolve_in_progress_refonly_5() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8_ThreadStaticFields, ___assembly_resolve_in_progress_refonly_5)); }
inline Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA * get_assembly_resolve_in_progress_refonly_5() const { return ___assembly_resolve_in_progress_refonly_5; }
inline Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA ** get_address_of_assembly_resolve_in_progress_refonly_5() { return &___assembly_resolve_in_progress_refonly_5; }
inline void set_assembly_resolve_in_progress_refonly_5(Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA * value)
{
___assembly_resolve_in_progress_refonly_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___assembly_resolve_in_progress_refonly_5), (void*)value);
}
inline static int32_t get_offset_of__principal_9() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8_ThreadStaticFields, ____principal_9)); }
inline RuntimeObject * get__principal_9() const { return ____principal_9; }
inline RuntimeObject ** get_address_of__principal_9() { return &____principal_9; }
inline void set__principal_9(RuntimeObject * value)
{
____principal_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&____principal_9), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.AppDomain
struct AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8_marshaled_pinvoke : public MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshaled_pinvoke
{
intptr_t ____mono_app_domain_1;
Il2CppIUnknown* ____evidence_6;
Il2CppIUnknown* ____granted_7;
int32_t ____principalPolicy_8;
Il2CppMethodPointer ___AssemblyLoad_11;
Il2CppMethodPointer ___AssemblyResolve_12;
Il2CppMethodPointer ___DomainUnload_13;
Il2CppMethodPointer ___ProcessExit_14;
Il2CppMethodPointer ___ResourceResolve_15;
Il2CppMethodPointer ___TypeResolve_16;
Il2CppMethodPointer ___UnhandledException_17;
Il2CppMethodPointer ___FirstChanceException_18;
Il2CppIUnknown* ____domain_manager_19;
Il2CppMethodPointer ___ReflectionOnlyAssemblyResolve_20;
Il2CppIUnknown* ____activation_21;
Il2CppIUnknown* ____applicationIdentity_22;
List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * ___compatibility_switch_23;
};
// Native definition for COM marshalling of System.AppDomain
struct AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8_marshaled_com : public MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshaled_com
{
intptr_t ____mono_app_domain_1;
Il2CppIUnknown* ____evidence_6;
Il2CppIUnknown* ____granted_7;
int32_t ____principalPolicy_8;
Il2CppMethodPointer ___AssemblyLoad_11;
Il2CppMethodPointer ___AssemblyResolve_12;
Il2CppMethodPointer ___DomainUnload_13;
Il2CppMethodPointer ___ProcessExit_14;
Il2CppMethodPointer ___ResourceResolve_15;
Il2CppMethodPointer ___TypeResolve_16;
Il2CppMethodPointer ___UnhandledException_17;
Il2CppMethodPointer ___FirstChanceException_18;
Il2CppIUnknown* ____domain_manager_19;
Il2CppMethodPointer ___ReflectionOnlyAssemblyResolve_20;
Il2CppIUnknown* ____activation_21;
Il2CppIUnknown* ____applicationIdentity_22;
List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * ___compatibility_switch_23;
};
// System.ComponentModel.TypeConverter
struct TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB : public RuntimeObject
{
public:
public:
};
struct TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB_StaticFields
{
public:
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.ComponentModel.TypeConverter::useCompatibleTypeConversion
bool ___useCompatibleTypeConversion_1;
public:
inline static int32_t get_offset_of_useCompatibleTypeConversion_1() { return static_cast<int32_t>(offsetof(TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB_StaticFields, ___useCompatibleTypeConversion_1)); }
inline bool get_useCompatibleTypeConversion_1() const { return ___useCompatibleTypeConversion_1; }
inline bool* get_address_of_useCompatibleTypeConversion_1() { return &___useCompatibleTypeConversion_1; }
inline void set_useCompatibleTypeConversion_1(bool value)
{
___useCompatibleTypeConversion_1 = value;
}
};
// System.DateTimeOffset
struct DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85
{
public:
// System.DateTime System.DateTimeOffset::m_dateTime
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___m_dateTime_2;
// System.Int16 System.DateTimeOffset::m_offsetMinutes
int16_t ___m_offsetMinutes_3;
public:
inline static int32_t get_offset_of_m_dateTime_2() { return static_cast<int32_t>(offsetof(DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85, ___m_dateTime_2)); }
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 get_m_dateTime_2() const { return ___m_dateTime_2; }
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * get_address_of_m_dateTime_2() { return &___m_dateTime_2; }
inline void set_m_dateTime_2(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 value)
{
___m_dateTime_2 = value;
}
inline static int32_t get_offset_of_m_offsetMinutes_3() { return static_cast<int32_t>(offsetof(DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85, ___m_offsetMinutes_3)); }
inline int16_t get_m_offsetMinutes_3() const { return ___m_offsetMinutes_3; }
inline int16_t* get_address_of_m_offsetMinutes_3() { return &___m_offsetMinutes_3; }
inline void set_m_offsetMinutes_3(int16_t value)
{
___m_offsetMinutes_3 = value;
}
};
struct DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_StaticFields
{
public:
// System.DateTimeOffset System.DateTimeOffset::MinValue
DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 ___MinValue_0;
// System.DateTimeOffset System.DateTimeOffset::MaxValue
DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 ___MaxValue_1;
public:
inline static int32_t get_offset_of_MinValue_0() { return static_cast<int32_t>(offsetof(DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_StaticFields, ___MinValue_0)); }
inline DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 get_MinValue_0() const { return ___MinValue_0; }
inline DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 * get_address_of_MinValue_0() { return &___MinValue_0; }
inline void set_MinValue_0(DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 value)
{
___MinValue_0 = value;
}
inline static int32_t get_offset_of_MaxValue_1() { return static_cast<int32_t>(offsetof(DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_StaticFields, ___MaxValue_1)); }
inline DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 get_MaxValue_1() const { return ___MaxValue_1; }
inline DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 * get_address_of_MaxValue_1() { return &___MaxValue_1; }
inline void set_MaxValue_1(DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 value)
{
___MaxValue_1 = 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.IO.StringWriter
struct StringWriter_t194EF1526E072B93984370042AA80926C2EB6139 : public TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0
{
public:
// System.Text.StringBuilder System.IO.StringWriter::_sb
StringBuilder_t * ____sb_11;
// System.Boolean System.IO.StringWriter::_isOpen
bool ____isOpen_12;
public:
inline static int32_t get_offset_of__sb_11() { return static_cast<int32_t>(offsetof(StringWriter_t194EF1526E072B93984370042AA80926C2EB6139, ____sb_11)); }
inline StringBuilder_t * get__sb_11() const { return ____sb_11; }
inline StringBuilder_t ** get_address_of__sb_11() { return &____sb_11; }
inline void set__sb_11(StringBuilder_t * value)
{
____sb_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&____sb_11), (void*)value);
}
inline static int32_t get_offset_of__isOpen_12() { return static_cast<int32_t>(offsetof(StringWriter_t194EF1526E072B93984370042AA80926C2EB6139, ____isOpen_12)); }
inline bool get__isOpen_12() const { return ____isOpen_12; }
inline bool* get_address_of__isOpen_12() { return &____isOpen_12; }
inline void set__isOpen_12(bool value)
{
____isOpen_12 = value;
}
};
// System.Int32Enum
struct Int32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD
{
public:
// System.Int32 System.Int32Enum::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Int32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD, ___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.Nullable`1<System.Decimal>
struct Nullable_1_t980A9BF956626264580BF8B4E1E3DBD88D9337C1
{
public:
// T System.Nullable`1::value
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___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_t980A9BF956626264580BF8B4E1E3DBD88D9337C1, ___value_0)); }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_value_0() const { return ___value_0; }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_value_0() { return &___value_0; }
inline void set_value_0(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value)
{
___value_0 = value;
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_t980A9BF956626264580BF8B4E1E3DBD88D9337C1, ___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<System.Guid>
struct Nullable_1_t98453FD73999D83935C31555C4C67329F550B15D
{
public:
// T System.Nullable`1::value
Guid_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_t98453FD73999D83935C31555C4C67329F550B15D, ___value_0)); }
inline Guid_t get_value_0() const { return ___value_0; }
inline Guid_t * get_address_of_value_0() { return &___value_0; }
inline void set_value_0(Guid_t value)
{
___value_0 = value;
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_t98453FD73999D83935C31555C4C67329F550B15D, ___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.Assembly
struct Assembly_t : public RuntimeObject
{
public:
// System.IntPtr System.Reflection.Assembly::_mono_assembly
intptr_t ____mono_assembly_0;
// System.Reflection.Assembly_ResolveEventHolder System.Reflection.Assembly::resolve_event_holder
ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E * ___resolve_event_holder_1;
// System.Object System.Reflection.Assembly::_evidence
RuntimeObject * ____evidence_2;
// System.Object System.Reflection.Assembly::_minimum
RuntimeObject * ____minimum_3;
// System.Object System.Reflection.Assembly::_optional
RuntimeObject * ____optional_4;
// System.Object System.Reflection.Assembly::_refuse
RuntimeObject * ____refuse_5;
// System.Object System.Reflection.Assembly::_granted
RuntimeObject * ____granted_6;
// System.Object System.Reflection.Assembly::_denied
RuntimeObject * ____denied_7;
// System.Boolean System.Reflection.Assembly::fromByteArray
bool ___fromByteArray_8;
// System.String System.Reflection.Assembly::assemblyName
String_t* ___assemblyName_9;
public:
inline static int32_t get_offset_of__mono_assembly_0() { return static_cast<int32_t>(offsetof(Assembly_t, ____mono_assembly_0)); }
inline intptr_t get__mono_assembly_0() const { return ____mono_assembly_0; }
inline intptr_t* get_address_of__mono_assembly_0() { return &____mono_assembly_0; }
inline void set__mono_assembly_0(intptr_t value)
{
____mono_assembly_0 = value;
}
inline static int32_t get_offset_of_resolve_event_holder_1() { return static_cast<int32_t>(offsetof(Assembly_t, ___resolve_event_holder_1)); }
inline ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E * get_resolve_event_holder_1() const { return ___resolve_event_holder_1; }
inline ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E ** get_address_of_resolve_event_holder_1() { return &___resolve_event_holder_1; }
inline void set_resolve_event_holder_1(ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E * value)
{
___resolve_event_holder_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___resolve_event_holder_1), (void*)value);
}
inline static int32_t get_offset_of__evidence_2() { return static_cast<int32_t>(offsetof(Assembly_t, ____evidence_2)); }
inline RuntimeObject * get__evidence_2() const { return ____evidence_2; }
inline RuntimeObject ** get_address_of__evidence_2() { return &____evidence_2; }
inline void set__evidence_2(RuntimeObject * value)
{
____evidence_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____evidence_2), (void*)value);
}
inline static int32_t get_offset_of__minimum_3() { return static_cast<int32_t>(offsetof(Assembly_t, ____minimum_3)); }
inline RuntimeObject * get__minimum_3() const { return ____minimum_3; }
inline RuntimeObject ** get_address_of__minimum_3() { return &____minimum_3; }
inline void set__minimum_3(RuntimeObject * value)
{
____minimum_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____minimum_3), (void*)value);
}
inline static int32_t get_offset_of__optional_4() { return static_cast<int32_t>(offsetof(Assembly_t, ____optional_4)); }
inline RuntimeObject * get__optional_4() const { return ____optional_4; }
inline RuntimeObject ** get_address_of__optional_4() { return &____optional_4; }
inline void set__optional_4(RuntimeObject * value)
{
____optional_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____optional_4), (void*)value);
}
inline static int32_t get_offset_of__refuse_5() { return static_cast<int32_t>(offsetof(Assembly_t, ____refuse_5)); }
inline RuntimeObject * get__refuse_5() const { return ____refuse_5; }
inline RuntimeObject ** get_address_of__refuse_5() { return &____refuse_5; }
inline void set__refuse_5(RuntimeObject * value)
{
____refuse_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____refuse_5), (void*)value);
}
inline static int32_t get_offset_of__granted_6() { return static_cast<int32_t>(offsetof(Assembly_t, ____granted_6)); }
inline RuntimeObject * get__granted_6() const { return ____granted_6; }
inline RuntimeObject ** get_address_of__granted_6() { return &____granted_6; }
inline void set__granted_6(RuntimeObject * value)
{
____granted_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____granted_6), (void*)value);
}
inline static int32_t get_offset_of__denied_7() { return static_cast<int32_t>(offsetof(Assembly_t, ____denied_7)); }
inline RuntimeObject * get__denied_7() const { return ____denied_7; }
inline RuntimeObject ** get_address_of__denied_7() { return &____denied_7; }
inline void set__denied_7(RuntimeObject * value)
{
____denied_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____denied_7), (void*)value);
}
inline static int32_t get_offset_of_fromByteArray_8() { return static_cast<int32_t>(offsetof(Assembly_t, ___fromByteArray_8)); }
inline bool get_fromByteArray_8() const { return ___fromByteArray_8; }
inline bool* get_address_of_fromByteArray_8() { return &___fromByteArray_8; }
inline void set_fromByteArray_8(bool value)
{
___fromByteArray_8 = value;
}
inline static int32_t get_offset_of_assemblyName_9() { return static_cast<int32_t>(offsetof(Assembly_t, ___assemblyName_9)); }
inline String_t* get_assemblyName_9() const { return ___assemblyName_9; }
inline String_t** get_address_of_assemblyName_9() { return &___assemblyName_9; }
inline void set_assemblyName_9(String_t* value)
{
___assemblyName_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___assemblyName_9), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Reflection.Assembly
struct Assembly_t_marshaled_pinvoke
{
intptr_t ____mono_assembly_0;
ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E * ___resolve_event_holder_1;
Il2CppIUnknown* ____evidence_2;
Il2CppIUnknown* ____minimum_3;
Il2CppIUnknown* ____optional_4;
Il2CppIUnknown* ____refuse_5;
Il2CppIUnknown* ____granted_6;
Il2CppIUnknown* ____denied_7;
int32_t ___fromByteArray_8;
char* ___assemblyName_9;
};
// Native definition for COM marshalling of System.Reflection.Assembly
struct Assembly_t_marshaled_com
{
intptr_t ____mono_assembly_0;
ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E * ___resolve_event_holder_1;
Il2CppIUnknown* ____evidence_2;
Il2CppIUnknown* ____minimum_3;
Il2CppIUnknown* ____optional_4;
Il2CppIUnknown* ____refuse_5;
Il2CppIUnknown* ____granted_6;
Il2CppIUnknown* ____denied_7;
int32_t ___fromByteArray_8;
Il2CppChar* ___assemblyName_9;
};
// 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.Reflection.ConstructorInfo
struct ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF : public MethodBase_t
{
public:
public:
};
struct ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF_StaticFields
{
public:
// System.String System.Reflection.ConstructorInfo::ConstructorName
String_t* ___ConstructorName_0;
// System.String System.Reflection.ConstructorInfo::TypeConstructorName
String_t* ___TypeConstructorName_1;
public:
inline static int32_t get_offset_of_ConstructorName_0() { return static_cast<int32_t>(offsetof(ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF_StaticFields, ___ConstructorName_0)); }
inline String_t* get_ConstructorName_0() const { return ___ConstructorName_0; }
inline String_t** get_address_of_ConstructorName_0() { return &___ConstructorName_0; }
inline void set_ConstructorName_0(String_t* value)
{
___ConstructorName_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ConstructorName_0), (void*)value);
}
inline static int32_t get_offset_of_TypeConstructorName_1() { return static_cast<int32_t>(offsetof(ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF_StaticFields, ___TypeConstructorName_1)); }
inline String_t* get_TypeConstructorName_1() const { return ___TypeConstructorName_1; }
inline String_t** get_address_of_TypeConstructorName_1() { return &___TypeConstructorName_1; }
inline void set_TypeConstructorName_1(String_t* value)
{
___TypeConstructorName_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___TypeConstructorName_1), (void*)value);
}
};
// System.Reflection.MemberTypes
struct MemberTypes_t3FEDC67D8B994D09AF155FFB2CFD26023F245041
{
public:
// System.Int32 System.Reflection.MemberTypes::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(MemberTypes_t3FEDC67D8B994D09AF155FFB2CFD26023F245041, ___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.Reflection.MethodInfo
struct MethodInfo_t : public MethodBase_t
{
public:
public:
};
// System.Reflection.ParameterAttributes
struct ParameterAttributes_tF9962395513C2A48CF5AF2F371C66DD52789F110
{
public:
// System.Int32 System.Reflection.ParameterAttributes::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ParameterAttributes_tF9962395513C2A48CF5AF2F371C66DD52789F110, ___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.Runtime.Serialization.Formatters.FormatterAssemblyStyle
struct FormatterAssemblyStyle_tA1E8A300026362A0AE091830C5DBDEFCBCD5213A
{
public:
// System.Int32 System.Runtime.Serialization.Formatters.FormatterAssemblyStyle::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(FormatterAssemblyStyle_tA1E8A300026362A0AE091830C5DBDEFCBCD5213A, ___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.Runtime.Serialization.StreamingContextStates
struct StreamingContextStates_t6D16CD7BC584A66A29B702F5FD59DF62BB1BDD3F
{
public:
// System.Int32 System.Runtime.Serialization.StreamingContextStates::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(StreamingContextStates_t6D16CD7BC584A66A29B702F5FD59DF62BB1BDD3F, ___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.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.TimeSpan
struct TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4
{
public:
// System.Int64 System.TimeSpan::_ticks
int64_t ____ticks_3;
public:
inline static int32_t get_offset_of__ticks_3() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4, ____ticks_3)); }
inline int64_t get__ticks_3() const { return ____ticks_3; }
inline int64_t* get_address_of__ticks_3() { return &____ticks_3; }
inline void set__ticks_3(int64_t value)
{
____ticks_3 = value;
}
};
struct TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields
{
public:
// System.TimeSpan System.TimeSpan::Zero
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___Zero_0;
// System.TimeSpan System.TimeSpan::MaxValue
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___MaxValue_1;
// System.TimeSpan System.TimeSpan::MinValue
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___MinValue_2;
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.TimeSpan::_legacyConfigChecked
bool ____legacyConfigChecked_4;
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.TimeSpan::_legacyMode
bool ____legacyMode_5;
public:
inline static int32_t get_offset_of_Zero_0() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields, ___Zero_0)); }
inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 get_Zero_0() const { return ___Zero_0; }
inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * get_address_of_Zero_0() { return &___Zero_0; }
inline void set_Zero_0(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value)
{
___Zero_0 = value;
}
inline static int32_t get_offset_of_MaxValue_1() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields, ___MaxValue_1)); }
inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 get_MaxValue_1() const { return ___MaxValue_1; }
inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * get_address_of_MaxValue_1() { return &___MaxValue_1; }
inline void set_MaxValue_1(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value)
{
___MaxValue_1 = value;
}
inline static int32_t get_offset_of_MinValue_2() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields, ___MinValue_2)); }
inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 get_MinValue_2() const { return ___MinValue_2; }
inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * get_address_of_MinValue_2() { return &___MinValue_2; }
inline void set_MinValue_2(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value)
{
___MinValue_2 = value;
}
inline static int32_t get_offset_of__legacyConfigChecked_4() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields, ____legacyConfigChecked_4)); }
inline bool get__legacyConfigChecked_4() const { return ____legacyConfigChecked_4; }
inline bool* get_address_of__legacyConfigChecked_4() { return &____legacyConfigChecked_4; }
inline void set__legacyConfigChecked_4(bool value)
{
____legacyConfigChecked_4 = value;
}
inline static int32_t get_offset_of__legacyMode_5() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields, ____legacyMode_5)); }
inline bool get__legacyMode_5() const { return ____legacyMode_5; }
inline bool* get_address_of__legacyMode_5() { return &____legacyMode_5; }
inline void set__legacyMode_5(bool value)
{
____legacyMode_5 = value;
}
};
// System.TypeCode
struct TypeCode_t03ED52F888000DAF40C550C434F29F39A23D61C6
{
public:
// System.Int32 System.TypeCode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TypeCode_t03ED52F888000DAF40C550C434F29F39A23D61C6, ___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.Uri_Flags
struct Flags_tEBE7CABEBD13F16920D6950B384EB8F988250A2A
{
public:
// System.UInt64 System.Uri_Flags::value__
uint64_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Flags_tEBE7CABEBD13F16920D6950B384EB8F988250A2A, ___value___2)); }
inline uint64_t get_value___2() const { return ___value___2; }
inline uint64_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(uint64_t value)
{
___value___2 = value;
}
};
// System.UriIdnScope
struct UriIdnScope_tE1574B39C7492C761EFE2FC12DDE82DE013AC9D1
{
public:
// System.Int32 System.UriIdnScope::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(UriIdnScope_tE1574B39C7492C761EFE2FC12DDE82DE013AC9D1, ___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;
}
};
// Valve.Newtonsoft.Json.ConstructorHandling
struct ConstructorHandling_tDE4AE01D617B759EB0DD875B80968D1355C03DC8
{
public:
// System.Int32 Valve.Newtonsoft.Json.ConstructorHandling::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ConstructorHandling_tDE4AE01D617B759EB0DD875B80968D1355C03DC8, ___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;
}
};
// Valve.Newtonsoft.Json.DateFormatHandling
struct DateFormatHandling_tB49E0C8E225D4B34BA14A34724BF0AF804D5A2EC
{
public:
// System.Int32 Valve.Newtonsoft.Json.DateFormatHandling::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(DateFormatHandling_tB49E0C8E225D4B34BA14A34724BF0AF804D5A2EC, ___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;
}
};
// Valve.Newtonsoft.Json.DateParseHandling
struct DateParseHandling_t762CEDA7FB28E85D3AC5B30DE8440DB5C2E3DF38
{
public:
// System.Int32 Valve.Newtonsoft.Json.DateParseHandling::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(DateParseHandling_t762CEDA7FB28E85D3AC5B30DE8440DB5C2E3DF38, ___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;
}
};
// Valve.Newtonsoft.Json.DateTimeZoneHandling
struct DateTimeZoneHandling_t7D2E50EE2C7F9492164616E4443896C59BA8A1E8
{
public:
// System.Int32 Valve.Newtonsoft.Json.DateTimeZoneHandling::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(DateTimeZoneHandling_t7D2E50EE2C7F9492164616E4443896C59BA8A1E8, ___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;
}
};
// Valve.Newtonsoft.Json.DefaultValueHandling
struct DefaultValueHandling_t0C31CFFB197545488DBF758B30B8E24CD4869F11
{
public:
// System.Int32 Valve.Newtonsoft.Json.DefaultValueHandling::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(DefaultValueHandling_t0C31CFFB197545488DBF758B30B8E24CD4869F11, ___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;
}
};
// Valve.Newtonsoft.Json.FloatFormatHandling
struct FloatFormatHandling_tF00F32C36FFC85E723CBFA461966252E107A2665
{
public:
// System.Int32 Valve.Newtonsoft.Json.FloatFormatHandling::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(FloatFormatHandling_tF00F32C36FFC85E723CBFA461966252E107A2665, ___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;
}
};
// Valve.Newtonsoft.Json.FloatParseHandling
struct FloatParseHandling_t6154021C30483690740ABA428346753F434FB9ED
{
public:
// System.Int32 Valve.Newtonsoft.Json.FloatParseHandling::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(FloatParseHandling_t6154021C30483690740ABA428346753F434FB9ED, ___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;
}
};
// Valve.Newtonsoft.Json.Formatting
struct Formatting_tC35ADA1E13EEC1A194DBD5563EFA8C406E43F6CD
{
public:
// System.Int32 Valve.Newtonsoft.Json.Formatting::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Formatting_tC35ADA1E13EEC1A194DBD5563EFA8C406E43F6CD, ___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;
}
};
// Valve.Newtonsoft.Json.JsonContainerType
struct JsonContainerType_t8E4BCE450948E9F961CB9987B73979342830FDB4
{
public:
// System.Int32 Valve.Newtonsoft.Json.JsonContainerType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(JsonContainerType_t8E4BCE450948E9F961CB9987B73979342830FDB4, ___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;
}
};
// Valve.Newtonsoft.Json.JsonReader_State
struct State_tC111979921FFB7FEFF8B60FA89E79307E6D147C9
{
public:
// System.Int32 Valve.Newtonsoft.Json.JsonReader_State::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(State_tC111979921FFB7FEFF8B60FA89E79307E6D147C9, ___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;
}
};
// Valve.Newtonsoft.Json.JsonToken
struct JsonToken_t0C71FBC985C653C19D3A1CA63373FC84B6F13406
{
public:
// System.Int32 Valve.Newtonsoft.Json.JsonToken::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(JsonToken_t0C71FBC985C653C19D3A1CA63373FC84B6F13406, ___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;
}
};
// Valve.Newtonsoft.Json.JsonWriter_State
struct State_tB8158AA561F13A6CD78769E8234E198F55BBBEAC
{
public:
// System.Int32 Valve.Newtonsoft.Json.JsonWriter_State::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(State_tB8158AA561F13A6CD78769E8234E198F55BBBEAC, ___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;
}
};
// Valve.Newtonsoft.Json.Linq.CommentHandling
struct CommentHandling_t60A9358E35810EEDB54FB7228459CC1C3BEB27AE
{
public:
// System.Int32 Valve.Newtonsoft.Json.Linq.CommentHandling::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CommentHandling_t60A9358E35810EEDB54FB7228459CC1C3BEB27AE, ___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;
}
};
// Valve.Newtonsoft.Json.Linq.JArray
struct JArray_t8AE8A8AB34EFB9A770BC34AB9EA47BE9DC7F45C2 : public JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC
{
public:
// System.Collections.Generic.List`1<Valve.Newtonsoft.Json.Linq.JToken> Valve.Newtonsoft.Json.Linq.JArray::_values
List_1_t1FE4F7D4C3DCC24F3D8A78270F707A3AD8614891 * ____values_15;
public:
inline static int32_t get_offset_of__values_15() { return static_cast<int32_t>(offsetof(JArray_t8AE8A8AB34EFB9A770BC34AB9EA47BE9DC7F45C2, ____values_15)); }
inline List_1_t1FE4F7D4C3DCC24F3D8A78270F707A3AD8614891 * get__values_15() const { return ____values_15; }
inline List_1_t1FE4F7D4C3DCC24F3D8A78270F707A3AD8614891 ** get_address_of__values_15() { return &____values_15; }
inline void set__values_15(List_1_t1FE4F7D4C3DCC24F3D8A78270F707A3AD8614891 * value)
{
____values_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&____values_15), (void*)value);
}
};
// Valve.Newtonsoft.Json.Linq.JConstructor
struct JConstructor_t31B236A37CEC95856D10CB7C3F276D6C4CA0B26B : public JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC
{
public:
// System.String Valve.Newtonsoft.Json.Linq.JConstructor::_name
String_t* ____name_15;
// System.Collections.Generic.List`1<Valve.Newtonsoft.Json.Linq.JToken> Valve.Newtonsoft.Json.Linq.JConstructor::_values
List_1_t1FE4F7D4C3DCC24F3D8A78270F707A3AD8614891 * ____values_16;
public:
inline static int32_t get_offset_of__name_15() { return static_cast<int32_t>(offsetof(JConstructor_t31B236A37CEC95856D10CB7C3F276D6C4CA0B26B, ____name_15)); }
inline String_t* get__name_15() const { return ____name_15; }
inline String_t** get_address_of__name_15() { return &____name_15; }
inline void set__name_15(String_t* value)
{
____name_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&____name_15), (void*)value);
}
inline static int32_t get_offset_of__values_16() { return static_cast<int32_t>(offsetof(JConstructor_t31B236A37CEC95856D10CB7C3F276D6C4CA0B26B, ____values_16)); }
inline List_1_t1FE4F7D4C3DCC24F3D8A78270F707A3AD8614891 * get__values_16() const { return ____values_16; }
inline List_1_t1FE4F7D4C3DCC24F3D8A78270F707A3AD8614891 ** get_address_of__values_16() { return &____values_16; }
inline void set__values_16(List_1_t1FE4F7D4C3DCC24F3D8A78270F707A3AD8614891 * value)
{
____values_16 = value;
Il2CppCodeGenWriteBarrier((void**)(&____values_16), (void*)value);
}
};
// Valve.Newtonsoft.Json.Linq.JObject
struct JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21 : public JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC
{
public:
// Valve.Newtonsoft.Json.Linq.JPropertyKeyedCollection Valve.Newtonsoft.Json.Linq.JObject::_properties
JPropertyKeyedCollection_t9EEDCB4FA22748C56AC9E4CD74AAA26F9D54A668 * ____properties_15;
// System.ComponentModel.PropertyChangedEventHandler Valve.Newtonsoft.Json.Linq.JObject::PropertyChanged
PropertyChangedEventHandler_t617E98E1876A8EB394D2B329340CE02D21FFFC82 * ___PropertyChanged_16;
public:
inline static int32_t get_offset_of__properties_15() { return static_cast<int32_t>(offsetof(JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21, ____properties_15)); }
inline JPropertyKeyedCollection_t9EEDCB4FA22748C56AC9E4CD74AAA26F9D54A668 * get__properties_15() const { return ____properties_15; }
inline JPropertyKeyedCollection_t9EEDCB4FA22748C56AC9E4CD74AAA26F9D54A668 ** get_address_of__properties_15() { return &____properties_15; }
inline void set__properties_15(JPropertyKeyedCollection_t9EEDCB4FA22748C56AC9E4CD74AAA26F9D54A668 * value)
{
____properties_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&____properties_15), (void*)value);
}
inline static int32_t get_offset_of_PropertyChanged_16() { return static_cast<int32_t>(offsetof(JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21, ___PropertyChanged_16)); }
inline PropertyChangedEventHandler_t617E98E1876A8EB394D2B329340CE02D21FFFC82 * get_PropertyChanged_16() const { return ___PropertyChanged_16; }
inline PropertyChangedEventHandler_t617E98E1876A8EB394D2B329340CE02D21FFFC82 ** get_address_of_PropertyChanged_16() { return &___PropertyChanged_16; }
inline void set_PropertyChanged_16(PropertyChangedEventHandler_t617E98E1876A8EB394D2B329340CE02D21FFFC82 * value)
{
___PropertyChanged_16 = value;
Il2CppCodeGenWriteBarrier((void**)(&___PropertyChanged_16), (void*)value);
}
};
// Valve.Newtonsoft.Json.Linq.JObject_<GetEnumerator>d__55
struct U3CGetEnumeratorU3Ed__55_tAF5C1853556CCCC9CEF660623C26BDD211A03777 : public RuntimeObject
{
public:
// System.Int32 Valve.Newtonsoft.Json.Linq.JObject_<GetEnumerator>d__55::<>1__state
int32_t ___U3CU3E1__state_0;
// System.Collections.Generic.KeyValuePair`2<System.String,Valve.Newtonsoft.Json.Linq.JToken> Valve.Newtonsoft.Json.Linq.JObject_<GetEnumerator>d__55::<>2__current
KeyValuePair_2_t12EC1C8B4977DCEE8CF178DACA28A94CA2A77BCA ___U3CU3E2__current_1;
// Valve.Newtonsoft.Json.Linq.JObject Valve.Newtonsoft.Json.Linq.JObject_<GetEnumerator>d__55::<>4__this
JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21 * ___U3CU3E4__this_2;
// System.Collections.Generic.IEnumerator`1<Valve.Newtonsoft.Json.Linq.JToken> Valve.Newtonsoft.Json.Linq.JObject_<GetEnumerator>d__55::<>7__wrap1
RuntimeObject* ___U3CU3E7__wrap1_3;
public:
inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CGetEnumeratorU3Ed__55_tAF5C1853556CCCC9CEF660623C26BDD211A03777, ___U3CU3E1__state_0)); }
inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; }
inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; }
inline void set_U3CU3E1__state_0(int32_t value)
{
___U3CU3E1__state_0 = value;
}
inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3CGetEnumeratorU3Ed__55_tAF5C1853556CCCC9CEF660623C26BDD211A03777, ___U3CU3E2__current_1)); }
inline KeyValuePair_2_t12EC1C8B4977DCEE8CF178DACA28A94CA2A77BCA get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; }
inline KeyValuePair_2_t12EC1C8B4977DCEE8CF178DACA28A94CA2A77BCA * get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; }
inline void set_U3CU3E2__current_1(KeyValuePair_2_t12EC1C8B4977DCEE8CF178DACA28A94CA2A77BCA value)
{
___U3CU3E2__current_1 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___U3CU3E2__current_1))->___key_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___U3CU3E2__current_1))->___value_1), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_U3CU3E4__this_2() { return static_cast<int32_t>(offsetof(U3CGetEnumeratorU3Ed__55_tAF5C1853556CCCC9CEF660623C26BDD211A03777, ___U3CU3E4__this_2)); }
inline JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21 * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; }
inline JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21 ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; }
inline void set_U3CU3E4__this_2(JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21 * value)
{
___U3CU3E4__this_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_2), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E7__wrap1_3() { return static_cast<int32_t>(offsetof(U3CGetEnumeratorU3Ed__55_tAF5C1853556CCCC9CEF660623C26BDD211A03777, ___U3CU3E7__wrap1_3)); }
inline RuntimeObject* get_U3CU3E7__wrap1_3() const { return ___U3CU3E7__wrap1_3; }
inline RuntimeObject** get_address_of_U3CU3E7__wrap1_3() { return &___U3CU3E7__wrap1_3; }
inline void set_U3CU3E7__wrap1_3(RuntimeObject* value)
{
___U3CU3E7__wrap1_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E7__wrap1_3), (void*)value);
}
};
// Valve.Newtonsoft.Json.Linq.JProperty
struct JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF : public JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC
{
public:
// Valve.Newtonsoft.Json.Linq.JProperty_JPropertyList Valve.Newtonsoft.Json.Linq.JProperty::_content
JPropertyList_t134608E64E62337A93C6668B1266F077ABBA87A7 * ____content_15;
// System.String Valve.Newtonsoft.Json.Linq.JProperty::_name
String_t* ____name_16;
public:
inline static int32_t get_offset_of__content_15() { return static_cast<int32_t>(offsetof(JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF, ____content_15)); }
inline JPropertyList_t134608E64E62337A93C6668B1266F077ABBA87A7 * get__content_15() const { return ____content_15; }
inline JPropertyList_t134608E64E62337A93C6668B1266F077ABBA87A7 ** get_address_of__content_15() { return &____content_15; }
inline void set__content_15(JPropertyList_t134608E64E62337A93C6668B1266F077ABBA87A7 * value)
{
____content_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&____content_15), (void*)value);
}
inline static int32_t get_offset_of__name_16() { return static_cast<int32_t>(offsetof(JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF, ____name_16)); }
inline String_t* get__name_16() const { return ____name_16; }
inline String_t** get_address_of__name_16() { return &____name_16; }
inline void set__name_16(String_t* value)
{
____name_16 = value;
Il2CppCodeGenWriteBarrier((void**)(&____name_16), (void*)value);
}
};
// Valve.Newtonsoft.Json.Linq.JTokenType
struct JTokenType_t43765D0A61D4F44B41AA73D201C761E37F4DDDAD
{
public:
// System.Int32 Valve.Newtonsoft.Json.Linq.JTokenType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(JTokenType_t43765D0A61D4F44B41AA73D201C761E37F4DDDAD, ___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;
}
};
// Valve.Newtonsoft.Json.Linq.LineInfoHandling
struct LineInfoHandling_t1A871FBFEB26100739B768A7E0C845BF447B43E4
{
public:
// System.Int32 Valve.Newtonsoft.Json.Linq.LineInfoHandling::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(LineInfoHandling_t1A871FBFEB26100739B768A7E0C845BF447B43E4, ___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;
}
};
// Valve.Newtonsoft.Json.MemberSerialization
struct MemberSerialization_t514772991859E5896107D730EC7B0511AC97C3F2
{
public:
// System.Int32 Valve.Newtonsoft.Json.MemberSerialization::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(MemberSerialization_t514772991859E5896107D730EC7B0511AC97C3F2, ___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;
}
};
// Valve.Newtonsoft.Json.MetadataPropertyHandling
struct MetadataPropertyHandling_t2B1F4E83742125398A4B271CC47164AFEFEC1AB7
{
public:
// System.Int32 Valve.Newtonsoft.Json.MetadataPropertyHandling::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(MetadataPropertyHandling_t2B1F4E83742125398A4B271CC47164AFEFEC1AB7, ___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;
}
};
// Valve.Newtonsoft.Json.MissingMemberHandling
struct MissingMemberHandling_t25AFA50998C081179EDAB70821C57C56E80457E2
{
public:
// System.Int32 Valve.Newtonsoft.Json.MissingMemberHandling::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(MissingMemberHandling_t25AFA50998C081179EDAB70821C57C56E80457E2, ___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;
}
};
// Valve.Newtonsoft.Json.NullValueHandling
struct NullValueHandling_t3BB227A27DEF77C458A041CA2E2B97DC598273DD
{
public:
// System.Int32 Valve.Newtonsoft.Json.NullValueHandling::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(NullValueHandling_t3BB227A27DEF77C458A041CA2E2B97DC598273DD, ___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;
}
};
// Valve.Newtonsoft.Json.ObjectCreationHandling
struct ObjectCreationHandling_tE92A7914EC80F68407E080DC9AE86AA1730F062B
{
public:
// System.Int32 Valve.Newtonsoft.Json.ObjectCreationHandling::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ObjectCreationHandling_tE92A7914EC80F68407E080DC9AE86AA1730F062B, ___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;
}
};
// Valve.Newtonsoft.Json.PreserveReferencesHandling
struct PreserveReferencesHandling_t6A917E324310C0C8518BD5CCFCE4959B9989CD2E
{
public:
// System.Int32 Valve.Newtonsoft.Json.PreserveReferencesHandling::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(PreserveReferencesHandling_t6A917E324310C0C8518BD5CCFCE4959B9989CD2E, ___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;
}
};
// Valve.Newtonsoft.Json.ReadType
struct ReadType_tC014F3ED7EAC101F8681659580DD32526B1E2C1E
{
public:
// System.Int32 Valve.Newtonsoft.Json.ReadType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ReadType_tC014F3ED7EAC101F8681659580DD32526B1E2C1E, ___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;
}
};
// Valve.Newtonsoft.Json.ReferenceLoopHandling
struct ReferenceLoopHandling_t9D5BDAA1B3291986677F3C9934E30D1866F359D6
{
public:
// System.Int32 Valve.Newtonsoft.Json.ReferenceLoopHandling::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ReferenceLoopHandling_t9D5BDAA1B3291986677F3C9934E30D1866F359D6, ___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;
}
};
// Valve.Newtonsoft.Json.Required
struct Required_t70EBBE7A6467C4709C3AF6F10D9E440974C7DD45
{
public:
// System.Int32 Valve.Newtonsoft.Json.Required::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Required_t70EBBE7A6467C4709C3AF6F10D9E440974C7DD45, ___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;
}
};
// Valve.Newtonsoft.Json.Serialization.JsonContractType
struct JsonContractType_tD3F7EED9F0657C143DBF403CA3ACA34F582E9E38
{
public:
// System.Int32 Valve.Newtonsoft.Json.Serialization.JsonContractType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(JsonContractType_tD3F7EED9F0657C143DBF403CA3ACA34F582E9E38, ___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;
}
};
// Valve.Newtonsoft.Json.Serialization.JsonPropertyCollection
struct JsonPropertyCollection_tC08CC5508836C9712A08DDE9E2BC413BD3A61715 : public KeyedCollection_2_t351C9C6C1B77E67EB66E2A35EC5236947B488F41
{
public:
// System.Type Valve.Newtonsoft.Json.Serialization.JsonPropertyCollection::_type
Type_t * ____type_6;
// System.Collections.Generic.List`1<Valve.Newtonsoft.Json.Serialization.JsonProperty> Valve.Newtonsoft.Json.Serialization.JsonPropertyCollection::_list
List_1_t6058A2EE1FD0D50A7FFCAD444A5E3330BC73DA8E * ____list_7;
public:
inline static int32_t get_offset_of__type_6() { return static_cast<int32_t>(offsetof(JsonPropertyCollection_tC08CC5508836C9712A08DDE9E2BC413BD3A61715, ____type_6)); }
inline Type_t * get__type_6() const { return ____type_6; }
inline Type_t ** get_address_of__type_6() { return &____type_6; }
inline void set__type_6(Type_t * value)
{
____type_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____type_6), (void*)value);
}
inline static int32_t get_offset_of__list_7() { return static_cast<int32_t>(offsetof(JsonPropertyCollection_tC08CC5508836C9712A08DDE9E2BC413BD3A61715, ____list_7)); }
inline List_1_t6058A2EE1FD0D50A7FFCAD444A5E3330BC73DA8E * get__list_7() const { return ____list_7; }
inline List_1_t6058A2EE1FD0D50A7FFCAD444A5E3330BC73DA8E ** get_address_of__list_7() { return &____list_7; }
inline void set__list_7(List_1_t6058A2EE1FD0D50A7FFCAD444A5E3330BC73DA8E * value)
{
____list_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____list_7), (void*)value);
}
};
// Valve.Newtonsoft.Json.StringEscapeHandling
struct StringEscapeHandling_t3F97FB1134399801BA7B86A7EC05132014171FE2
{
public:
// System.Int32 Valve.Newtonsoft.Json.StringEscapeHandling::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(StringEscapeHandling_t3F97FB1134399801BA7B86A7EC05132014171FE2, ___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;
}
};
// Valve.Newtonsoft.Json.TypeNameHandling
struct TypeNameHandling_t8F653469F61CAFEAFA1151A7402EDB7438DB2C24
{
public:
// System.Int32 Valve.Newtonsoft.Json.TypeNameHandling::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TypeNameHandling_t8F653469F61CAFEAFA1151A7402EDB7438DB2C24, ___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;
}
};
// Valve.Newtonsoft.Json.Utilities.PrimitiveTypeCode
struct PrimitiveTypeCode_t47E91EE6FE93F3E1F550F562C6914F1AC52183AF
{
public:
// System.Int32 Valve.Newtonsoft.Json.Utilities.PrimitiveTypeCode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(PrimitiveTypeCode_t47E91EE6FE93F3E1F550F562C6914F1AC52183AF, ___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.ComponentModel.ReferenceConverter
struct ReferenceConverter_t5080472EE999A1F00721E6C5C97013762C85C7E4 : public TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB
{
public:
// System.Type System.ComponentModel.ReferenceConverter::type
Type_t * ___type_3;
public:
inline static int32_t get_offset_of_type_3() { return static_cast<int32_t>(offsetof(ReferenceConverter_t5080472EE999A1F00721E6C5C97013762C85C7E4, ___type_3)); }
inline Type_t * get_type_3() const { return ___type_3; }
inline Type_t ** get_address_of_type_3() { return &___type_3; }
inline void set_type_3(Type_t * value)
{
___type_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___type_3), (void*)value);
}
};
struct ReferenceConverter_t5080472EE999A1F00721E6C5C97013762C85C7E4_StaticFields
{
public:
// System.String System.ComponentModel.ReferenceConverter::none
String_t* ___none_2;
public:
inline static int32_t get_offset_of_none_2() { return static_cast<int32_t>(offsetof(ReferenceConverter_t5080472EE999A1F00721E6C5C97013762C85C7E4_StaticFields, ___none_2)); }
inline String_t* get_none_2() const { return ___none_2; }
inline String_t** get_address_of_none_2() { return &___none_2; }
inline void set_none_2(String_t* value)
{
___none_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___none_2), (void*)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<System.DateTimeOffset>
struct Nullable_1_tD63596AAA40EDF5AE4981F1C2B4F3A8A24E1DD67
{
public:
// T System.Nullable`1::value
DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 ___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_tD63596AAA40EDF5AE4981F1C2B4F3A8A24E1DD67, ___value_0)); }
inline DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 get_value_0() const { return ___value_0; }
inline DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 * get_address_of_value_0() { return &___value_0; }
inline void set_value_0(DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 value)
{
___value_0 = value;
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_tD63596AAA40EDF5AE4981F1C2B4F3A8A24E1DD67, ___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<System.Int32Enum>
struct Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833
{
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_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833, ___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_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833, ___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<System.TimeSpan>
struct Nullable_1_tA5F97AD8281B6EDEE6731D95047BA50C9996309E
{
public:
// T System.Nullable`1::value
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___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_tA5F97AD8281B6EDEE6731D95047BA50C9996309E, ___value_0)); }
inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 get_value_0() const { return ___value_0; }
inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * get_address_of_value_0() { return &___value_0; }
inline void set_value_0(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value)
{
___value_0 = value;
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_tA5F97AD8281B6EDEE6731D95047BA50C9996309E, ___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<Valve.Newtonsoft.Json.DateFormatHandling>
struct Nullable_1_t73A49F34D2106A79207E843251A0114D691E6535
{
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_t73A49F34D2106A79207E843251A0114D691E6535, ___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_t73A49F34D2106A79207E843251A0114D691E6535, ___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<Valve.Newtonsoft.Json.DateParseHandling>
struct Nullable_1_t9F3BCE47D35303B9D866BA82D305DF4DA2E6C229
{
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_t9F3BCE47D35303B9D866BA82D305DF4DA2E6C229, ___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_t9F3BCE47D35303B9D866BA82D305DF4DA2E6C229, ___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<Valve.Newtonsoft.Json.DateTimeZoneHandling>
struct Nullable_1_t18139C674E3B5AFCBF40873314559D51856D0E4E
{
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_t18139C674E3B5AFCBF40873314559D51856D0E4E, ___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_t18139C674E3B5AFCBF40873314559D51856D0E4E, ___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<Valve.Newtonsoft.Json.DefaultValueHandling>
struct Nullable_1_tE7CF0A7BC2816D39007C0EEB41F32FA7DB86B394
{
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_tE7CF0A7BC2816D39007C0EEB41F32FA7DB86B394, ___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_tE7CF0A7BC2816D39007C0EEB41F32FA7DB86B394, ___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<Valve.Newtonsoft.Json.FloatFormatHandling>
struct Nullable_1_t8ECA5E7C2A987CD73EBA2940127D43060369D94A
{
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_t8ECA5E7C2A987CD73EBA2940127D43060369D94A, ___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_t8ECA5E7C2A987CD73EBA2940127D43060369D94A, ___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<Valve.Newtonsoft.Json.FloatParseHandling>
struct Nullable_1_t4679CD5E6858682FA8A2CCD73B2F363C1C8431E9
{
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_t4679CD5E6858682FA8A2CCD73B2F363C1C8431E9, ___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_t4679CD5E6858682FA8A2CCD73B2F363C1C8431E9, ___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<Valve.Newtonsoft.Json.Formatting>
struct Nullable_1_tE7B6669302569AA700286CE2883D293CE8172C7A
{
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_tE7B6669302569AA700286CE2883D293CE8172C7A, ___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_tE7B6669302569AA700286CE2883D293CE8172C7A, ___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<Valve.Newtonsoft.Json.JsonToken>
struct Nullable_1_tB0A5FC022F6A5257A48FBAD802C5460B76704D56
{
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_tB0A5FC022F6A5257A48FBAD802C5460B76704D56, ___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_tB0A5FC022F6A5257A48FBAD802C5460B76704D56, ___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<Valve.Newtonsoft.Json.Linq.JTokenType>
struct Nullable_1_t4FE8EDAD79D2EC3D50B7ED18BE847A12A2306D57
{
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_t4FE8EDAD79D2EC3D50B7ED18BE847A12A2306D57, ___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_t4FE8EDAD79D2EC3D50B7ED18BE847A12A2306D57, ___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<Valve.Newtonsoft.Json.NullValueHandling>
struct Nullable_1_t1E3E10A718340D5055F8DB98AE1C03F47CDC19FC
{
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_t1E3E10A718340D5055F8DB98AE1C03F47CDC19FC, ___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_t1E3E10A718340D5055F8DB98AE1C03F47CDC19FC, ___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<Valve.Newtonsoft.Json.ObjectCreationHandling>
struct Nullable_1_t6F16A066F0D8E92AEDC11791932E5B9D887F402E
{
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_t6F16A066F0D8E92AEDC11791932E5B9D887F402E, ___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_t6F16A066F0D8E92AEDC11791932E5B9D887F402E, ___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<Valve.Newtonsoft.Json.ReferenceLoopHandling>
struct Nullable_1_tD485E28BBBAFB03563161D92A5E03A20B8691DF7
{
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_tD485E28BBBAFB03563161D92A5E03A20B8691DF7, ___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_tD485E28BBBAFB03563161D92A5E03A20B8691DF7, ___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<Valve.Newtonsoft.Json.Required>
struct Nullable_1_t240C94038A74304286AD4C81EAEFD24E6E435A06
{
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_t240C94038A74304286AD4C81EAEFD24E6E435A06, ___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_t240C94038A74304286AD4C81EAEFD24E6E435A06, ___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<Valve.Newtonsoft.Json.StringEscapeHandling>
struct Nullable_1_tCC61AA36549A190C69D05B18E796D97D76E84458
{
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_tCC61AA36549A190C69D05B18E796D97D76E84458, ___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_tCC61AA36549A190C69D05B18E796D97D76E84458, ___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<Valve.Newtonsoft.Json.TypeNameHandling>
struct Nullable_1_t03BF155C19CE72C93934F0A7CDDA0C202A278E11
{
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_t03BF155C19CE72C93934F0A7CDDA0C202A278E11, ___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_t03BF155C19CE72C93934F0A7CDDA0C202A278E11, ___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.ParameterInfo
struct ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB : public RuntimeObject
{
public:
// System.Type System.Reflection.ParameterInfo::ClassImpl
Type_t * ___ClassImpl_0;
// System.Object System.Reflection.ParameterInfo::DefaultValueImpl
RuntimeObject * ___DefaultValueImpl_1;
// System.Reflection.MemberInfo System.Reflection.ParameterInfo::MemberImpl
MemberInfo_t * ___MemberImpl_2;
// System.String System.Reflection.ParameterInfo::NameImpl
String_t* ___NameImpl_3;
// System.Int32 System.Reflection.ParameterInfo::PositionImpl
int32_t ___PositionImpl_4;
// System.Reflection.ParameterAttributes System.Reflection.ParameterInfo::AttrsImpl
int32_t ___AttrsImpl_5;
// System.Runtime.InteropServices.MarshalAsAttribute System.Reflection.ParameterInfo::marshalAs
MarshalAsAttribute_t1F5CB9960D7AD6C3305475C98A397BD0B9C64020 * ___marshalAs_6;
public:
inline static int32_t get_offset_of_ClassImpl_0() { return static_cast<int32_t>(offsetof(ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB, ___ClassImpl_0)); }
inline Type_t * get_ClassImpl_0() const { return ___ClassImpl_0; }
inline Type_t ** get_address_of_ClassImpl_0() { return &___ClassImpl_0; }
inline void set_ClassImpl_0(Type_t * value)
{
___ClassImpl_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ClassImpl_0), (void*)value);
}
inline static int32_t get_offset_of_DefaultValueImpl_1() { return static_cast<int32_t>(offsetof(ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB, ___DefaultValueImpl_1)); }
inline RuntimeObject * get_DefaultValueImpl_1() const { return ___DefaultValueImpl_1; }
inline RuntimeObject ** get_address_of_DefaultValueImpl_1() { return &___DefaultValueImpl_1; }
inline void set_DefaultValueImpl_1(RuntimeObject * value)
{
___DefaultValueImpl_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___DefaultValueImpl_1), (void*)value);
}
inline static int32_t get_offset_of_MemberImpl_2() { return static_cast<int32_t>(offsetof(ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB, ___MemberImpl_2)); }
inline MemberInfo_t * get_MemberImpl_2() const { return ___MemberImpl_2; }
inline MemberInfo_t ** get_address_of_MemberImpl_2() { return &___MemberImpl_2; }
inline void set_MemberImpl_2(MemberInfo_t * value)
{
___MemberImpl_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___MemberImpl_2), (void*)value);
}
inline static int32_t get_offset_of_NameImpl_3() { return static_cast<int32_t>(offsetof(ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB, ___NameImpl_3)); }
inline String_t* get_NameImpl_3() const { return ___NameImpl_3; }
inline String_t** get_address_of_NameImpl_3() { return &___NameImpl_3; }
inline void set_NameImpl_3(String_t* value)
{
___NameImpl_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___NameImpl_3), (void*)value);
}
inline static int32_t get_offset_of_PositionImpl_4() { return static_cast<int32_t>(offsetof(ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB, ___PositionImpl_4)); }
inline int32_t get_PositionImpl_4() const { return ___PositionImpl_4; }
inline int32_t* get_address_of_PositionImpl_4() { return &___PositionImpl_4; }
inline void set_PositionImpl_4(int32_t value)
{
___PositionImpl_4 = value;
}
inline static int32_t get_offset_of_AttrsImpl_5() { return static_cast<int32_t>(offsetof(ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB, ___AttrsImpl_5)); }
inline int32_t get_AttrsImpl_5() const { return ___AttrsImpl_5; }
inline int32_t* get_address_of_AttrsImpl_5() { return &___AttrsImpl_5; }
inline void set_AttrsImpl_5(int32_t value)
{
___AttrsImpl_5 = value;
}
inline static int32_t get_offset_of_marshalAs_6() { return static_cast<int32_t>(offsetof(ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB, ___marshalAs_6)); }
inline MarshalAsAttribute_t1F5CB9960D7AD6C3305475C98A397BD0B9C64020 * get_marshalAs_6() const { return ___marshalAs_6; }
inline MarshalAsAttribute_t1F5CB9960D7AD6C3305475C98A397BD0B9C64020 ** get_address_of_marshalAs_6() { return &___marshalAs_6; }
inline void set_marshalAs_6(MarshalAsAttribute_t1F5CB9960D7AD6C3305475C98A397BD0B9C64020 * value)
{
___marshalAs_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___marshalAs_6), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Reflection.ParameterInfo
struct ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_marshaled_pinvoke
{
Type_t * ___ClassImpl_0;
Il2CppIUnknown* ___DefaultValueImpl_1;
MemberInfo_t * ___MemberImpl_2;
char* ___NameImpl_3;
int32_t ___PositionImpl_4;
int32_t ___AttrsImpl_5;
MarshalAsAttribute_t1F5CB9960D7AD6C3305475C98A397BD0B9C64020 * ___marshalAs_6;
};
// Native definition for COM marshalling of System.Reflection.ParameterInfo
struct ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_marshaled_com
{
Type_t * ___ClassImpl_0;
Il2CppIUnknown* ___DefaultValueImpl_1;
MemberInfo_t * ___MemberImpl_2;
Il2CppChar* ___NameImpl_3;
int32_t ___PositionImpl_4;
int32_t ___AttrsImpl_5;
MarshalAsAttribute_t1F5CB9960D7AD6C3305475C98A397BD0B9C64020 * ___marshalAs_6;
};
// System.Runtime.Serialization.StreamingContext
struct StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034
{
public:
// System.Object System.Runtime.Serialization.StreamingContext::m_additionalContext
RuntimeObject * ___m_additionalContext_0;
// System.Runtime.Serialization.StreamingContextStates System.Runtime.Serialization.StreamingContext::m_state
int32_t ___m_state_1;
public:
inline static int32_t get_offset_of_m_additionalContext_0() { return static_cast<int32_t>(offsetof(StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034, ___m_additionalContext_0)); }
inline RuntimeObject * get_m_additionalContext_0() const { return ___m_additionalContext_0; }
inline RuntimeObject ** get_address_of_m_additionalContext_0() { return &___m_additionalContext_0; }
inline void set_m_additionalContext_0(RuntimeObject * value)
{
___m_additionalContext_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_additionalContext_0), (void*)value);
}
inline static int32_t get_offset_of_m_state_1() { return static_cast<int32_t>(offsetof(StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034, ___m_state_1)); }
inline int32_t get_m_state_1() const { return ___m_state_1; }
inline int32_t* get_address_of_m_state_1() { return &___m_state_1; }
inline void set_m_state_1(int32_t value)
{
___m_state_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Runtime.Serialization.StreamingContext
struct StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034_marshaled_pinvoke
{
Il2CppIUnknown* ___m_additionalContext_0;
int32_t ___m_state_1;
};
// Native definition for COM marshalling of System.Runtime.Serialization.StreamingContext
struct StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034_marshaled_com
{
Il2CppIUnknown* ___m_additionalContext_0;
int32_t ___m_state_1;
};
// 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);
}
};
// System.Uri
struct Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E : public RuntimeObject
{
public:
// System.String System.Uri::m_String
String_t* ___m_String_13;
// System.String System.Uri::m_originalUnicodeString
String_t* ___m_originalUnicodeString_14;
// System.UriParser System.Uri::m_Syntax
UriParser_t07C77D673CCE8D2DA253B8A7ACCB010147F1A4AC * ___m_Syntax_15;
// System.String System.Uri::m_DnsSafeHost
String_t* ___m_DnsSafeHost_16;
// System.Uri_Flags System.Uri::m_Flags
uint64_t ___m_Flags_17;
// System.Uri_UriInfo System.Uri::m_Info
UriInfo_t9FCC6BD4EC1EA14D75209E6A35417057BF6EDC5E * ___m_Info_18;
// System.Boolean System.Uri::m_iriParsing
bool ___m_iriParsing_19;
public:
inline static int32_t get_offset_of_m_String_13() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E, ___m_String_13)); }
inline String_t* get_m_String_13() const { return ___m_String_13; }
inline String_t** get_address_of_m_String_13() { return &___m_String_13; }
inline void set_m_String_13(String_t* value)
{
___m_String_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_String_13), (void*)value);
}
inline static int32_t get_offset_of_m_originalUnicodeString_14() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E, ___m_originalUnicodeString_14)); }
inline String_t* get_m_originalUnicodeString_14() const { return ___m_originalUnicodeString_14; }
inline String_t** get_address_of_m_originalUnicodeString_14() { return &___m_originalUnicodeString_14; }
inline void set_m_originalUnicodeString_14(String_t* value)
{
___m_originalUnicodeString_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_originalUnicodeString_14), (void*)value);
}
inline static int32_t get_offset_of_m_Syntax_15() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E, ___m_Syntax_15)); }
inline UriParser_t07C77D673CCE8D2DA253B8A7ACCB010147F1A4AC * get_m_Syntax_15() const { return ___m_Syntax_15; }
inline UriParser_t07C77D673CCE8D2DA253B8A7ACCB010147F1A4AC ** get_address_of_m_Syntax_15() { return &___m_Syntax_15; }
inline void set_m_Syntax_15(UriParser_t07C77D673CCE8D2DA253B8A7ACCB010147F1A4AC * value)
{
___m_Syntax_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Syntax_15), (void*)value);
}
inline static int32_t get_offset_of_m_DnsSafeHost_16() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E, ___m_DnsSafeHost_16)); }
inline String_t* get_m_DnsSafeHost_16() const { return ___m_DnsSafeHost_16; }
inline String_t** get_address_of_m_DnsSafeHost_16() { return &___m_DnsSafeHost_16; }
inline void set_m_DnsSafeHost_16(String_t* value)
{
___m_DnsSafeHost_16 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_DnsSafeHost_16), (void*)value);
}
inline static int32_t get_offset_of_m_Flags_17() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E, ___m_Flags_17)); }
inline uint64_t get_m_Flags_17() const { return ___m_Flags_17; }
inline uint64_t* get_address_of_m_Flags_17() { return &___m_Flags_17; }
inline void set_m_Flags_17(uint64_t value)
{
___m_Flags_17 = value;
}
inline static int32_t get_offset_of_m_Info_18() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E, ___m_Info_18)); }
inline UriInfo_t9FCC6BD4EC1EA14D75209E6A35417057BF6EDC5E * get_m_Info_18() const { return ___m_Info_18; }
inline UriInfo_t9FCC6BD4EC1EA14D75209E6A35417057BF6EDC5E ** get_address_of_m_Info_18() { return &___m_Info_18; }
inline void set_m_Info_18(UriInfo_t9FCC6BD4EC1EA14D75209E6A35417057BF6EDC5E * value)
{
___m_Info_18 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Info_18), (void*)value);
}
inline static int32_t get_offset_of_m_iriParsing_19() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E, ___m_iriParsing_19)); }
inline bool get_m_iriParsing_19() const { return ___m_iriParsing_19; }
inline bool* get_address_of_m_iriParsing_19() { return &___m_iriParsing_19; }
inline void set_m_iriParsing_19(bool value)
{
___m_iriParsing_19 = value;
}
};
struct Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields
{
public:
// System.String System.Uri::UriSchemeFile
String_t* ___UriSchemeFile_0;
// System.String System.Uri::UriSchemeFtp
String_t* ___UriSchemeFtp_1;
// System.String System.Uri::UriSchemeGopher
String_t* ___UriSchemeGopher_2;
// System.String System.Uri::UriSchemeHttp
String_t* ___UriSchemeHttp_3;
// System.String System.Uri::UriSchemeHttps
String_t* ___UriSchemeHttps_4;
// System.String System.Uri::UriSchemeWs
String_t* ___UriSchemeWs_5;
// System.String System.Uri::UriSchemeWss
String_t* ___UriSchemeWss_6;
// System.String System.Uri::UriSchemeMailto
String_t* ___UriSchemeMailto_7;
// System.String System.Uri::UriSchemeNews
String_t* ___UriSchemeNews_8;
// System.String System.Uri::UriSchemeNntp
String_t* ___UriSchemeNntp_9;
// System.String System.Uri::UriSchemeNetTcp
String_t* ___UriSchemeNetTcp_10;
// System.String System.Uri::UriSchemeNetPipe
String_t* ___UriSchemeNetPipe_11;
// System.String System.Uri::SchemeDelimiter
String_t* ___SchemeDelimiter_12;
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Uri::s_ConfigInitialized
bool ___s_ConfigInitialized_20;
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Uri::s_ConfigInitializing
bool ___s_ConfigInitializing_21;
// System.UriIdnScope modreq(System.Runtime.CompilerServices.IsVolatile) System.Uri::s_IdnScope
int32_t ___s_IdnScope_22;
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Uri::s_IriParsing
bool ___s_IriParsing_23;
// System.Boolean System.Uri::useDotNetRelativeOrAbsolute
bool ___useDotNetRelativeOrAbsolute_24;
// System.Boolean System.Uri::IsWindowsFileSystem
bool ___IsWindowsFileSystem_25;
// System.Object System.Uri::s_initLock
RuntimeObject * ___s_initLock_26;
// System.Char[] System.Uri::HexLowerChars
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___HexLowerChars_27;
// System.Char[] System.Uri::_WSchars
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ____WSchars_28;
public:
inline static int32_t get_offset_of_UriSchemeFile_0() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___UriSchemeFile_0)); }
inline String_t* get_UriSchemeFile_0() const { return ___UriSchemeFile_0; }
inline String_t** get_address_of_UriSchemeFile_0() { return &___UriSchemeFile_0; }
inline void set_UriSchemeFile_0(String_t* value)
{
___UriSchemeFile_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeFile_0), (void*)value);
}
inline static int32_t get_offset_of_UriSchemeFtp_1() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___UriSchemeFtp_1)); }
inline String_t* get_UriSchemeFtp_1() const { return ___UriSchemeFtp_1; }
inline String_t** get_address_of_UriSchemeFtp_1() { return &___UriSchemeFtp_1; }
inline void set_UriSchemeFtp_1(String_t* value)
{
___UriSchemeFtp_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeFtp_1), (void*)value);
}
inline static int32_t get_offset_of_UriSchemeGopher_2() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___UriSchemeGopher_2)); }
inline String_t* get_UriSchemeGopher_2() const { return ___UriSchemeGopher_2; }
inline String_t** get_address_of_UriSchemeGopher_2() { return &___UriSchemeGopher_2; }
inline void set_UriSchemeGopher_2(String_t* value)
{
___UriSchemeGopher_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeGopher_2), (void*)value);
}
inline static int32_t get_offset_of_UriSchemeHttp_3() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___UriSchemeHttp_3)); }
inline String_t* get_UriSchemeHttp_3() const { return ___UriSchemeHttp_3; }
inline String_t** get_address_of_UriSchemeHttp_3() { return &___UriSchemeHttp_3; }
inline void set_UriSchemeHttp_3(String_t* value)
{
___UriSchemeHttp_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeHttp_3), (void*)value);
}
inline static int32_t get_offset_of_UriSchemeHttps_4() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___UriSchemeHttps_4)); }
inline String_t* get_UriSchemeHttps_4() const { return ___UriSchemeHttps_4; }
inline String_t** get_address_of_UriSchemeHttps_4() { return &___UriSchemeHttps_4; }
inline void set_UriSchemeHttps_4(String_t* value)
{
___UriSchemeHttps_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeHttps_4), (void*)value);
}
inline static int32_t get_offset_of_UriSchemeWs_5() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___UriSchemeWs_5)); }
inline String_t* get_UriSchemeWs_5() const { return ___UriSchemeWs_5; }
inline String_t** get_address_of_UriSchemeWs_5() { return &___UriSchemeWs_5; }
inline void set_UriSchemeWs_5(String_t* value)
{
___UriSchemeWs_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeWs_5), (void*)value);
}
inline static int32_t get_offset_of_UriSchemeWss_6() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___UriSchemeWss_6)); }
inline String_t* get_UriSchemeWss_6() const { return ___UriSchemeWss_6; }
inline String_t** get_address_of_UriSchemeWss_6() { return &___UriSchemeWss_6; }
inline void set_UriSchemeWss_6(String_t* value)
{
___UriSchemeWss_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeWss_6), (void*)value);
}
inline static int32_t get_offset_of_UriSchemeMailto_7() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___UriSchemeMailto_7)); }
inline String_t* get_UriSchemeMailto_7() const { return ___UriSchemeMailto_7; }
inline String_t** get_address_of_UriSchemeMailto_7() { return &___UriSchemeMailto_7; }
inline void set_UriSchemeMailto_7(String_t* value)
{
___UriSchemeMailto_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeMailto_7), (void*)value);
}
inline static int32_t get_offset_of_UriSchemeNews_8() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___UriSchemeNews_8)); }
inline String_t* get_UriSchemeNews_8() const { return ___UriSchemeNews_8; }
inline String_t** get_address_of_UriSchemeNews_8() { return &___UriSchemeNews_8; }
inline void set_UriSchemeNews_8(String_t* value)
{
___UriSchemeNews_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeNews_8), (void*)value);
}
inline static int32_t get_offset_of_UriSchemeNntp_9() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___UriSchemeNntp_9)); }
inline String_t* get_UriSchemeNntp_9() const { return ___UriSchemeNntp_9; }
inline String_t** get_address_of_UriSchemeNntp_9() { return &___UriSchemeNntp_9; }
inline void set_UriSchemeNntp_9(String_t* value)
{
___UriSchemeNntp_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeNntp_9), (void*)value);
}
inline static int32_t get_offset_of_UriSchemeNetTcp_10() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___UriSchemeNetTcp_10)); }
inline String_t* get_UriSchemeNetTcp_10() const { return ___UriSchemeNetTcp_10; }
inline String_t** get_address_of_UriSchemeNetTcp_10() { return &___UriSchemeNetTcp_10; }
inline void set_UriSchemeNetTcp_10(String_t* value)
{
___UriSchemeNetTcp_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeNetTcp_10), (void*)value);
}
inline static int32_t get_offset_of_UriSchemeNetPipe_11() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___UriSchemeNetPipe_11)); }
inline String_t* get_UriSchemeNetPipe_11() const { return ___UriSchemeNetPipe_11; }
inline String_t** get_address_of_UriSchemeNetPipe_11() { return &___UriSchemeNetPipe_11; }
inline void set_UriSchemeNetPipe_11(String_t* value)
{
___UriSchemeNetPipe_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeNetPipe_11), (void*)value);
}
inline static int32_t get_offset_of_SchemeDelimiter_12() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___SchemeDelimiter_12)); }
inline String_t* get_SchemeDelimiter_12() const { return ___SchemeDelimiter_12; }
inline String_t** get_address_of_SchemeDelimiter_12() { return &___SchemeDelimiter_12; }
inline void set_SchemeDelimiter_12(String_t* value)
{
___SchemeDelimiter_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___SchemeDelimiter_12), (void*)value);
}
inline static int32_t get_offset_of_s_ConfigInitialized_20() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___s_ConfigInitialized_20)); }
inline bool get_s_ConfigInitialized_20() const { return ___s_ConfigInitialized_20; }
inline bool* get_address_of_s_ConfigInitialized_20() { return &___s_ConfigInitialized_20; }
inline void set_s_ConfigInitialized_20(bool value)
{
___s_ConfigInitialized_20 = value;
}
inline static int32_t get_offset_of_s_ConfigInitializing_21() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___s_ConfigInitializing_21)); }
inline bool get_s_ConfigInitializing_21() const { return ___s_ConfigInitializing_21; }
inline bool* get_address_of_s_ConfigInitializing_21() { return &___s_ConfigInitializing_21; }
inline void set_s_ConfigInitializing_21(bool value)
{
___s_ConfigInitializing_21 = value;
}
inline static int32_t get_offset_of_s_IdnScope_22() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___s_IdnScope_22)); }
inline int32_t get_s_IdnScope_22() const { return ___s_IdnScope_22; }
inline int32_t* get_address_of_s_IdnScope_22() { return &___s_IdnScope_22; }
inline void set_s_IdnScope_22(int32_t value)
{
___s_IdnScope_22 = value;
}
inline static int32_t get_offset_of_s_IriParsing_23() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___s_IriParsing_23)); }
inline bool get_s_IriParsing_23() const { return ___s_IriParsing_23; }
inline bool* get_address_of_s_IriParsing_23() { return &___s_IriParsing_23; }
inline void set_s_IriParsing_23(bool value)
{
___s_IriParsing_23 = value;
}
inline static int32_t get_offset_of_useDotNetRelativeOrAbsolute_24() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___useDotNetRelativeOrAbsolute_24)); }
inline bool get_useDotNetRelativeOrAbsolute_24() const { return ___useDotNetRelativeOrAbsolute_24; }
inline bool* get_address_of_useDotNetRelativeOrAbsolute_24() { return &___useDotNetRelativeOrAbsolute_24; }
inline void set_useDotNetRelativeOrAbsolute_24(bool value)
{
___useDotNetRelativeOrAbsolute_24 = value;
}
inline static int32_t get_offset_of_IsWindowsFileSystem_25() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___IsWindowsFileSystem_25)); }
inline bool get_IsWindowsFileSystem_25() const { return ___IsWindowsFileSystem_25; }
inline bool* get_address_of_IsWindowsFileSystem_25() { return &___IsWindowsFileSystem_25; }
inline void set_IsWindowsFileSystem_25(bool value)
{
___IsWindowsFileSystem_25 = value;
}
inline static int32_t get_offset_of_s_initLock_26() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___s_initLock_26)); }
inline RuntimeObject * get_s_initLock_26() const { return ___s_initLock_26; }
inline RuntimeObject ** get_address_of_s_initLock_26() { return &___s_initLock_26; }
inline void set_s_initLock_26(RuntimeObject * value)
{
___s_initLock_26 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_initLock_26), (void*)value);
}
inline static int32_t get_offset_of_HexLowerChars_27() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___HexLowerChars_27)); }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_HexLowerChars_27() const { return ___HexLowerChars_27; }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_HexLowerChars_27() { return &___HexLowerChars_27; }
inline void set_HexLowerChars_27(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
{
___HexLowerChars_27 = value;
Il2CppCodeGenWriteBarrier((void**)(&___HexLowerChars_27), (void*)value);
}
inline static int32_t get_offset_of__WSchars_28() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ____WSchars_28)); }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get__WSchars_28() const { return ____WSchars_28; }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of__WSchars_28() { return &____WSchars_28; }
inline void set__WSchars_28(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
{
____WSchars_28 = value;
Il2CppCodeGenWriteBarrier((void**)(&____WSchars_28), (void*)value);
}
};
// Valve.Newtonsoft.Json.JsonException
struct JsonException_tB1AABB3C8AE18D781A8A9A14CB03AF7AFEA33928 : public Exception_t
{
public:
public:
};
// Valve.Newtonsoft.Json.JsonPosition
struct JsonPosition_t6ED67A82A34F185D91B222CCC7CBF5E83CF9F422
{
public:
// Valve.Newtonsoft.Json.JsonContainerType Valve.Newtonsoft.Json.JsonPosition::Type
int32_t ___Type_1;
// System.Int32 Valve.Newtonsoft.Json.JsonPosition::Position
int32_t ___Position_2;
// System.String Valve.Newtonsoft.Json.JsonPosition::PropertyName
String_t* ___PropertyName_3;
// System.Boolean Valve.Newtonsoft.Json.JsonPosition::HasIndex
bool ___HasIndex_4;
public:
inline static int32_t get_offset_of_Type_1() { return static_cast<int32_t>(offsetof(JsonPosition_t6ED67A82A34F185D91B222CCC7CBF5E83CF9F422, ___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_Position_2() { return static_cast<int32_t>(offsetof(JsonPosition_t6ED67A82A34F185D91B222CCC7CBF5E83CF9F422, ___Position_2)); }
inline int32_t get_Position_2() const { return ___Position_2; }
inline int32_t* get_address_of_Position_2() { return &___Position_2; }
inline void set_Position_2(int32_t value)
{
___Position_2 = value;
}
inline static int32_t get_offset_of_PropertyName_3() { return static_cast<int32_t>(offsetof(JsonPosition_t6ED67A82A34F185D91B222CCC7CBF5E83CF9F422, ___PropertyName_3)); }
inline String_t* get_PropertyName_3() const { return ___PropertyName_3; }
inline String_t** get_address_of_PropertyName_3() { return &___PropertyName_3; }
inline void set_PropertyName_3(String_t* value)
{
___PropertyName_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___PropertyName_3), (void*)value);
}
inline static int32_t get_offset_of_HasIndex_4() { return static_cast<int32_t>(offsetof(JsonPosition_t6ED67A82A34F185D91B222CCC7CBF5E83CF9F422, ___HasIndex_4)); }
inline bool get_HasIndex_4() const { return ___HasIndex_4; }
inline bool* get_address_of_HasIndex_4() { return &___HasIndex_4; }
inline void set_HasIndex_4(bool value)
{
___HasIndex_4 = value;
}
};
struct JsonPosition_t6ED67A82A34F185D91B222CCC7CBF5E83CF9F422_StaticFields
{
public:
// System.Char[] Valve.Newtonsoft.Json.JsonPosition::SpecialCharacters
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___SpecialCharacters_0;
public:
inline static int32_t get_offset_of_SpecialCharacters_0() { return static_cast<int32_t>(offsetof(JsonPosition_t6ED67A82A34F185D91B222CCC7CBF5E83CF9F422_StaticFields, ___SpecialCharacters_0)); }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_SpecialCharacters_0() const { return ___SpecialCharacters_0; }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_SpecialCharacters_0() { return &___SpecialCharacters_0; }
inline void set_SpecialCharacters_0(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
{
___SpecialCharacters_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___SpecialCharacters_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of Valve.Newtonsoft.Json.JsonPosition
struct JsonPosition_t6ED67A82A34F185D91B222CCC7CBF5E83CF9F422_marshaled_pinvoke
{
int32_t ___Type_1;
int32_t ___Position_2;
char* ___PropertyName_3;
int32_t ___HasIndex_4;
};
// Native definition for COM marshalling of Valve.Newtonsoft.Json.JsonPosition
struct JsonPosition_t6ED67A82A34F185D91B222CCC7CBF5E83CF9F422_marshaled_com
{
int32_t ___Type_1;
int32_t ___Position_2;
Il2CppChar* ___PropertyName_3;
int32_t ___HasIndex_4;
};
// Valve.Newtonsoft.Json.Linq.JValue
struct JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 : public JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2
{
public:
// Valve.Newtonsoft.Json.Linq.JTokenType Valve.Newtonsoft.Json.Linq.JValue::_valueType
int32_t ____valueType_13;
// System.Object Valve.Newtonsoft.Json.Linq.JValue::_value
RuntimeObject * ____value_14;
public:
inline static int32_t get_offset_of__valueType_13() { return static_cast<int32_t>(offsetof(JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3, ____valueType_13)); }
inline int32_t get__valueType_13() const { return ____valueType_13; }
inline int32_t* get_address_of__valueType_13() { return &____valueType_13; }
inline void set__valueType_13(int32_t value)
{
____valueType_13 = value;
}
inline static int32_t get_offset_of__value_14() { return static_cast<int32_t>(offsetof(JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3, ____value_14)); }
inline RuntimeObject * get__value_14() const { return ____value_14; }
inline RuntimeObject ** get_address_of__value_14() { return &____value_14; }
inline void set__value_14(RuntimeObject * value)
{
____value_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&____value_14), (void*)value);
}
};
// Valve.Newtonsoft.Json.Linq.JsonLoadSettings
struct JsonLoadSettings_tB5261F5FE452665393A12B96A793FE21DF91D45A : public RuntimeObject
{
public:
// Valve.Newtonsoft.Json.Linq.CommentHandling Valve.Newtonsoft.Json.Linq.JsonLoadSettings::_commentHandling
int32_t ____commentHandling_0;
// Valve.Newtonsoft.Json.Linq.LineInfoHandling Valve.Newtonsoft.Json.Linq.JsonLoadSettings::_lineInfoHandling
int32_t ____lineInfoHandling_1;
public:
inline static int32_t get_offset_of__commentHandling_0() { return static_cast<int32_t>(offsetof(JsonLoadSettings_tB5261F5FE452665393A12B96A793FE21DF91D45A, ____commentHandling_0)); }
inline int32_t get__commentHandling_0() const { return ____commentHandling_0; }
inline int32_t* get_address_of__commentHandling_0() { return &____commentHandling_0; }
inline void set__commentHandling_0(int32_t value)
{
____commentHandling_0 = value;
}
inline static int32_t get_offset_of__lineInfoHandling_1() { return static_cast<int32_t>(offsetof(JsonLoadSettings_tB5261F5FE452665393A12B96A793FE21DF91D45A, ____lineInfoHandling_1)); }
inline int32_t get__lineInfoHandling_1() const { return ____lineInfoHandling_1; }
inline int32_t* get_address_of__lineInfoHandling_1() { return &____lineInfoHandling_1; }
inline void set__lineInfoHandling_1(int32_t value)
{
____lineInfoHandling_1 = value;
}
};
// Valve.Newtonsoft.Json.Serialization.DefaultContractResolver
struct DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0 : public RuntimeObject
{
public:
// Valve.Newtonsoft.Json.Serialization.DefaultContractResolverState Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::_instanceState
DefaultContractResolverState_t8B0D63DB1C8B5BA14A03ADBEF0EA1141B8604DE6 * ____instanceState_4;
// System.Boolean Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::_sharedCache
bool ____sharedCache_5;
// System.Reflection.BindingFlags Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::<DefaultMembersSearchFlags>k__BackingField
int32_t ___U3CDefaultMembersSearchFlagsU3Ek__BackingField_6;
// System.Boolean Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::<SerializeCompilerGeneratedMembers>k__BackingField
bool ___U3CSerializeCompilerGeneratedMembersU3Ek__BackingField_7;
// System.Boolean Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::<IgnoreSerializableInterface>k__BackingField
bool ___U3CIgnoreSerializableInterfaceU3Ek__BackingField_8;
// System.Boolean Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::<IgnoreSerializableAttribute>k__BackingField
bool ___U3CIgnoreSerializableAttributeU3Ek__BackingField_9;
// Valve.Newtonsoft.Json.Serialization.NamingStrategy Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::<NamingStrategy>k__BackingField
NamingStrategy_tBB6F8138B49E9B2704F7B87BF9130378976B9B46 * ___U3CNamingStrategyU3Ek__BackingField_10;
public:
inline static int32_t get_offset_of__instanceState_4() { return static_cast<int32_t>(offsetof(DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0, ____instanceState_4)); }
inline DefaultContractResolverState_t8B0D63DB1C8B5BA14A03ADBEF0EA1141B8604DE6 * get__instanceState_4() const { return ____instanceState_4; }
inline DefaultContractResolverState_t8B0D63DB1C8B5BA14A03ADBEF0EA1141B8604DE6 ** get_address_of__instanceState_4() { return &____instanceState_4; }
inline void set__instanceState_4(DefaultContractResolverState_t8B0D63DB1C8B5BA14A03ADBEF0EA1141B8604DE6 * value)
{
____instanceState_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____instanceState_4), (void*)value);
}
inline static int32_t get_offset_of__sharedCache_5() { return static_cast<int32_t>(offsetof(DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0, ____sharedCache_5)); }
inline bool get__sharedCache_5() const { return ____sharedCache_5; }
inline bool* get_address_of__sharedCache_5() { return &____sharedCache_5; }
inline void set__sharedCache_5(bool value)
{
____sharedCache_5 = value;
}
inline static int32_t get_offset_of_U3CDefaultMembersSearchFlagsU3Ek__BackingField_6() { return static_cast<int32_t>(offsetof(DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0, ___U3CDefaultMembersSearchFlagsU3Ek__BackingField_6)); }
inline int32_t get_U3CDefaultMembersSearchFlagsU3Ek__BackingField_6() const { return ___U3CDefaultMembersSearchFlagsU3Ek__BackingField_6; }
inline int32_t* get_address_of_U3CDefaultMembersSearchFlagsU3Ek__BackingField_6() { return &___U3CDefaultMembersSearchFlagsU3Ek__BackingField_6; }
inline void set_U3CDefaultMembersSearchFlagsU3Ek__BackingField_6(int32_t value)
{
___U3CDefaultMembersSearchFlagsU3Ek__BackingField_6 = value;
}
inline static int32_t get_offset_of_U3CSerializeCompilerGeneratedMembersU3Ek__BackingField_7() { return static_cast<int32_t>(offsetof(DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0, ___U3CSerializeCompilerGeneratedMembersU3Ek__BackingField_7)); }
inline bool get_U3CSerializeCompilerGeneratedMembersU3Ek__BackingField_7() const { return ___U3CSerializeCompilerGeneratedMembersU3Ek__BackingField_7; }
inline bool* get_address_of_U3CSerializeCompilerGeneratedMembersU3Ek__BackingField_7() { return &___U3CSerializeCompilerGeneratedMembersU3Ek__BackingField_7; }
inline void set_U3CSerializeCompilerGeneratedMembersU3Ek__BackingField_7(bool value)
{
___U3CSerializeCompilerGeneratedMembersU3Ek__BackingField_7 = value;
}
inline static int32_t get_offset_of_U3CIgnoreSerializableInterfaceU3Ek__BackingField_8() { return static_cast<int32_t>(offsetof(DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0, ___U3CIgnoreSerializableInterfaceU3Ek__BackingField_8)); }
inline bool get_U3CIgnoreSerializableInterfaceU3Ek__BackingField_8() const { return ___U3CIgnoreSerializableInterfaceU3Ek__BackingField_8; }
inline bool* get_address_of_U3CIgnoreSerializableInterfaceU3Ek__BackingField_8() { return &___U3CIgnoreSerializableInterfaceU3Ek__BackingField_8; }
inline void set_U3CIgnoreSerializableInterfaceU3Ek__BackingField_8(bool value)
{
___U3CIgnoreSerializableInterfaceU3Ek__BackingField_8 = value;
}
inline static int32_t get_offset_of_U3CIgnoreSerializableAttributeU3Ek__BackingField_9() { return static_cast<int32_t>(offsetof(DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0, ___U3CIgnoreSerializableAttributeU3Ek__BackingField_9)); }
inline bool get_U3CIgnoreSerializableAttributeU3Ek__BackingField_9() const { return ___U3CIgnoreSerializableAttributeU3Ek__BackingField_9; }
inline bool* get_address_of_U3CIgnoreSerializableAttributeU3Ek__BackingField_9() { return &___U3CIgnoreSerializableAttributeU3Ek__BackingField_9; }
inline void set_U3CIgnoreSerializableAttributeU3Ek__BackingField_9(bool value)
{
___U3CIgnoreSerializableAttributeU3Ek__BackingField_9 = value;
}
inline static int32_t get_offset_of_U3CNamingStrategyU3Ek__BackingField_10() { return static_cast<int32_t>(offsetof(DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0, ___U3CNamingStrategyU3Ek__BackingField_10)); }
inline NamingStrategy_tBB6F8138B49E9B2704F7B87BF9130378976B9B46 * get_U3CNamingStrategyU3Ek__BackingField_10() const { return ___U3CNamingStrategyU3Ek__BackingField_10; }
inline NamingStrategy_tBB6F8138B49E9B2704F7B87BF9130378976B9B46 ** get_address_of_U3CNamingStrategyU3Ek__BackingField_10() { return &___U3CNamingStrategyU3Ek__BackingField_10; }
inline void set_U3CNamingStrategyU3Ek__BackingField_10(NamingStrategy_tBB6F8138B49E9B2704F7B87BF9130378976B9B46 * value)
{
___U3CNamingStrategyU3Ek__BackingField_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CNamingStrategyU3Ek__BackingField_10), (void*)value);
}
};
struct DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0_StaticFields
{
public:
// Valve.Newtonsoft.Json.Serialization.IContractResolver Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::_instance
RuntimeObject* ____instance_0;
// Valve.Newtonsoft.Json.JsonConverter[] Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::BuiltInConverters
JsonConverterU5BU5D_tFCEA4D4687200F08D8F41AFF4CDC7EE5E08AACAB* ___BuiltInConverters_1;
// System.Object Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::TypeContractCacheLock
RuntimeObject * ___TypeContractCacheLock_2;
// Valve.Newtonsoft.Json.Serialization.DefaultContractResolverState Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::_sharedState
DefaultContractResolverState_t8B0D63DB1C8B5BA14A03ADBEF0EA1141B8604DE6 * ____sharedState_3;
public:
inline static int32_t get_offset_of__instance_0() { return static_cast<int32_t>(offsetof(DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0_StaticFields, ____instance_0)); }
inline RuntimeObject* get__instance_0() const { return ____instance_0; }
inline RuntimeObject** get_address_of__instance_0() { return &____instance_0; }
inline void set__instance_0(RuntimeObject* value)
{
____instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____instance_0), (void*)value);
}
inline static int32_t get_offset_of_BuiltInConverters_1() { return static_cast<int32_t>(offsetof(DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0_StaticFields, ___BuiltInConverters_1)); }
inline JsonConverterU5BU5D_tFCEA4D4687200F08D8F41AFF4CDC7EE5E08AACAB* get_BuiltInConverters_1() const { return ___BuiltInConverters_1; }
inline JsonConverterU5BU5D_tFCEA4D4687200F08D8F41AFF4CDC7EE5E08AACAB** get_address_of_BuiltInConverters_1() { return &___BuiltInConverters_1; }
inline void set_BuiltInConverters_1(JsonConverterU5BU5D_tFCEA4D4687200F08D8F41AFF4CDC7EE5E08AACAB* value)
{
___BuiltInConverters_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___BuiltInConverters_1), (void*)value);
}
inline static int32_t get_offset_of_TypeContractCacheLock_2() { return static_cast<int32_t>(offsetof(DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0_StaticFields, ___TypeContractCacheLock_2)); }
inline RuntimeObject * get_TypeContractCacheLock_2() const { return ___TypeContractCacheLock_2; }
inline RuntimeObject ** get_address_of_TypeContractCacheLock_2() { return &___TypeContractCacheLock_2; }
inline void set_TypeContractCacheLock_2(RuntimeObject * value)
{
___TypeContractCacheLock_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___TypeContractCacheLock_2), (void*)value);
}
inline static int32_t get_offset_of__sharedState_3() { return static_cast<int32_t>(offsetof(DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0_StaticFields, ____sharedState_3)); }
inline DefaultContractResolverState_t8B0D63DB1C8B5BA14A03ADBEF0EA1141B8604DE6 * get__sharedState_3() const { return ____sharedState_3; }
inline DefaultContractResolverState_t8B0D63DB1C8B5BA14A03ADBEF0EA1141B8604DE6 ** get_address_of__sharedState_3() { return &____sharedState_3; }
inline void set__sharedState_3(DefaultContractResolverState_t8B0D63DB1C8B5BA14A03ADBEF0EA1141B8604DE6 * value)
{
____sharedState_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____sharedState_3), (void*)value);
}
};
// Valve.Newtonsoft.Json.Serialization.JsonContract
struct JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 : public RuntimeObject
{
public:
// System.Boolean Valve.Newtonsoft.Json.Serialization.JsonContract::IsNullable
bool ___IsNullable_0;
// System.Boolean Valve.Newtonsoft.Json.Serialization.JsonContract::IsConvertable
bool ___IsConvertable_1;
// System.Boolean Valve.Newtonsoft.Json.Serialization.JsonContract::IsEnum
bool ___IsEnum_2;
// System.Type Valve.Newtonsoft.Json.Serialization.JsonContract::NonNullableUnderlyingType
Type_t * ___NonNullableUnderlyingType_3;
// Valve.Newtonsoft.Json.ReadType Valve.Newtonsoft.Json.Serialization.JsonContract::InternalReadType
int32_t ___InternalReadType_4;
// Valve.Newtonsoft.Json.Serialization.JsonContractType Valve.Newtonsoft.Json.Serialization.JsonContract::ContractType
int32_t ___ContractType_5;
// System.Boolean Valve.Newtonsoft.Json.Serialization.JsonContract::IsReadOnlyOrFixedSize
bool ___IsReadOnlyOrFixedSize_6;
// System.Boolean Valve.Newtonsoft.Json.Serialization.JsonContract::IsSealed
bool ___IsSealed_7;
// System.Boolean Valve.Newtonsoft.Json.Serialization.JsonContract::IsInstantiable
bool ___IsInstantiable_8;
// System.Collections.Generic.List`1<Valve.Newtonsoft.Json.Serialization.SerializationCallback> Valve.Newtonsoft.Json.Serialization.JsonContract::_onDeserializedCallbacks
List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D * ____onDeserializedCallbacks_9;
// System.Collections.Generic.IList`1<Valve.Newtonsoft.Json.Serialization.SerializationCallback> Valve.Newtonsoft.Json.Serialization.JsonContract::_onDeserializingCallbacks
RuntimeObject* ____onDeserializingCallbacks_10;
// System.Collections.Generic.IList`1<Valve.Newtonsoft.Json.Serialization.SerializationCallback> Valve.Newtonsoft.Json.Serialization.JsonContract::_onSerializedCallbacks
RuntimeObject* ____onSerializedCallbacks_11;
// System.Collections.Generic.IList`1<Valve.Newtonsoft.Json.Serialization.SerializationCallback> Valve.Newtonsoft.Json.Serialization.JsonContract::_onSerializingCallbacks
RuntimeObject* ____onSerializingCallbacks_12;
// System.Collections.Generic.IList`1<Valve.Newtonsoft.Json.Serialization.SerializationErrorCallback> Valve.Newtonsoft.Json.Serialization.JsonContract::_onErrorCallbacks
RuntimeObject* ____onErrorCallbacks_13;
// System.Type Valve.Newtonsoft.Json.Serialization.JsonContract::_createdType
Type_t * ____createdType_14;
// System.Type Valve.Newtonsoft.Json.Serialization.JsonContract::<UnderlyingType>k__BackingField
Type_t * ___U3CUnderlyingTypeU3Ek__BackingField_15;
// System.Nullable`1<System.Boolean> Valve.Newtonsoft.Json.Serialization.JsonContract::<IsReference>k__BackingField
Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 ___U3CIsReferenceU3Ek__BackingField_16;
// Valve.Newtonsoft.Json.JsonConverter Valve.Newtonsoft.Json.Serialization.JsonContract::<Converter>k__BackingField
JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * ___U3CConverterU3Ek__BackingField_17;
// Valve.Newtonsoft.Json.JsonConverter Valve.Newtonsoft.Json.Serialization.JsonContract::<InternalConverter>k__BackingField
JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * ___U3CInternalConverterU3Ek__BackingField_18;
// System.Func`1<System.Object> Valve.Newtonsoft.Json.Serialization.JsonContract::<DefaultCreator>k__BackingField
Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 * ___U3CDefaultCreatorU3Ek__BackingField_19;
// System.Boolean Valve.Newtonsoft.Json.Serialization.JsonContract::<DefaultCreatorNonPublic>k__BackingField
bool ___U3CDefaultCreatorNonPublicU3Ek__BackingField_20;
public:
inline static int32_t get_offset_of_IsNullable_0() { return static_cast<int32_t>(offsetof(JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141, ___IsNullable_0)); }
inline bool get_IsNullable_0() const { return ___IsNullable_0; }
inline bool* get_address_of_IsNullable_0() { return &___IsNullable_0; }
inline void set_IsNullable_0(bool value)
{
___IsNullable_0 = value;
}
inline static int32_t get_offset_of_IsConvertable_1() { return static_cast<int32_t>(offsetof(JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141, ___IsConvertable_1)); }
inline bool get_IsConvertable_1() const { return ___IsConvertable_1; }
inline bool* get_address_of_IsConvertable_1() { return &___IsConvertable_1; }
inline void set_IsConvertable_1(bool value)
{
___IsConvertable_1 = value;
}
inline static int32_t get_offset_of_IsEnum_2() { return static_cast<int32_t>(offsetof(JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141, ___IsEnum_2)); }
inline bool get_IsEnum_2() const { return ___IsEnum_2; }
inline bool* get_address_of_IsEnum_2() { return &___IsEnum_2; }
inline void set_IsEnum_2(bool value)
{
___IsEnum_2 = value;
}
inline static int32_t get_offset_of_NonNullableUnderlyingType_3() { return static_cast<int32_t>(offsetof(JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141, ___NonNullableUnderlyingType_3)); }
inline Type_t * get_NonNullableUnderlyingType_3() const { return ___NonNullableUnderlyingType_3; }
inline Type_t ** get_address_of_NonNullableUnderlyingType_3() { return &___NonNullableUnderlyingType_3; }
inline void set_NonNullableUnderlyingType_3(Type_t * value)
{
___NonNullableUnderlyingType_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___NonNullableUnderlyingType_3), (void*)value);
}
inline static int32_t get_offset_of_InternalReadType_4() { return static_cast<int32_t>(offsetof(JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141, ___InternalReadType_4)); }
inline int32_t get_InternalReadType_4() const { return ___InternalReadType_4; }
inline int32_t* get_address_of_InternalReadType_4() { return &___InternalReadType_4; }
inline void set_InternalReadType_4(int32_t value)
{
___InternalReadType_4 = value;
}
inline static int32_t get_offset_of_ContractType_5() { return static_cast<int32_t>(offsetof(JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141, ___ContractType_5)); }
inline int32_t get_ContractType_5() const { return ___ContractType_5; }
inline int32_t* get_address_of_ContractType_5() { return &___ContractType_5; }
inline void set_ContractType_5(int32_t value)
{
___ContractType_5 = value;
}
inline static int32_t get_offset_of_IsReadOnlyOrFixedSize_6() { return static_cast<int32_t>(offsetof(JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141, ___IsReadOnlyOrFixedSize_6)); }
inline bool get_IsReadOnlyOrFixedSize_6() const { return ___IsReadOnlyOrFixedSize_6; }
inline bool* get_address_of_IsReadOnlyOrFixedSize_6() { return &___IsReadOnlyOrFixedSize_6; }
inline void set_IsReadOnlyOrFixedSize_6(bool value)
{
___IsReadOnlyOrFixedSize_6 = value;
}
inline static int32_t get_offset_of_IsSealed_7() { return static_cast<int32_t>(offsetof(JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141, ___IsSealed_7)); }
inline bool get_IsSealed_7() const { return ___IsSealed_7; }
inline bool* get_address_of_IsSealed_7() { return &___IsSealed_7; }
inline void set_IsSealed_7(bool value)
{
___IsSealed_7 = value;
}
inline static int32_t get_offset_of_IsInstantiable_8() { return static_cast<int32_t>(offsetof(JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141, ___IsInstantiable_8)); }
inline bool get_IsInstantiable_8() const { return ___IsInstantiable_8; }
inline bool* get_address_of_IsInstantiable_8() { return &___IsInstantiable_8; }
inline void set_IsInstantiable_8(bool value)
{
___IsInstantiable_8 = value;
}
inline static int32_t get_offset_of__onDeserializedCallbacks_9() { return static_cast<int32_t>(offsetof(JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141, ____onDeserializedCallbacks_9)); }
inline List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D * get__onDeserializedCallbacks_9() const { return ____onDeserializedCallbacks_9; }
inline List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D ** get_address_of__onDeserializedCallbacks_9() { return &____onDeserializedCallbacks_9; }
inline void set__onDeserializedCallbacks_9(List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D * value)
{
____onDeserializedCallbacks_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&____onDeserializedCallbacks_9), (void*)value);
}
inline static int32_t get_offset_of__onDeserializingCallbacks_10() { return static_cast<int32_t>(offsetof(JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141, ____onDeserializingCallbacks_10)); }
inline RuntimeObject* get__onDeserializingCallbacks_10() const { return ____onDeserializingCallbacks_10; }
inline RuntimeObject** get_address_of__onDeserializingCallbacks_10() { return &____onDeserializingCallbacks_10; }
inline void set__onDeserializingCallbacks_10(RuntimeObject* value)
{
____onDeserializingCallbacks_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&____onDeserializingCallbacks_10), (void*)value);
}
inline static int32_t get_offset_of__onSerializedCallbacks_11() { return static_cast<int32_t>(offsetof(JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141, ____onSerializedCallbacks_11)); }
inline RuntimeObject* get__onSerializedCallbacks_11() const { return ____onSerializedCallbacks_11; }
inline RuntimeObject** get_address_of__onSerializedCallbacks_11() { return &____onSerializedCallbacks_11; }
inline void set__onSerializedCallbacks_11(RuntimeObject* value)
{
____onSerializedCallbacks_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&____onSerializedCallbacks_11), (void*)value);
}
inline static int32_t get_offset_of__onSerializingCallbacks_12() { return static_cast<int32_t>(offsetof(JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141, ____onSerializingCallbacks_12)); }
inline RuntimeObject* get__onSerializingCallbacks_12() const { return ____onSerializingCallbacks_12; }
inline RuntimeObject** get_address_of__onSerializingCallbacks_12() { return &____onSerializingCallbacks_12; }
inline void set__onSerializingCallbacks_12(RuntimeObject* value)
{
____onSerializingCallbacks_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&____onSerializingCallbacks_12), (void*)value);
}
inline static int32_t get_offset_of__onErrorCallbacks_13() { return static_cast<int32_t>(offsetof(JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141, ____onErrorCallbacks_13)); }
inline RuntimeObject* get__onErrorCallbacks_13() const { return ____onErrorCallbacks_13; }
inline RuntimeObject** get_address_of__onErrorCallbacks_13() { return &____onErrorCallbacks_13; }
inline void set__onErrorCallbacks_13(RuntimeObject* value)
{
____onErrorCallbacks_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&____onErrorCallbacks_13), (void*)value);
}
inline static int32_t get_offset_of__createdType_14() { return static_cast<int32_t>(offsetof(JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141, ____createdType_14)); }
inline Type_t * get__createdType_14() const { return ____createdType_14; }
inline Type_t ** get_address_of__createdType_14() { return &____createdType_14; }
inline void set__createdType_14(Type_t * value)
{
____createdType_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&____createdType_14), (void*)value);
}
inline static int32_t get_offset_of_U3CUnderlyingTypeU3Ek__BackingField_15() { return static_cast<int32_t>(offsetof(JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141, ___U3CUnderlyingTypeU3Ek__BackingField_15)); }
inline Type_t * get_U3CUnderlyingTypeU3Ek__BackingField_15() const { return ___U3CUnderlyingTypeU3Ek__BackingField_15; }
inline Type_t ** get_address_of_U3CUnderlyingTypeU3Ek__BackingField_15() { return &___U3CUnderlyingTypeU3Ek__BackingField_15; }
inline void set_U3CUnderlyingTypeU3Ek__BackingField_15(Type_t * value)
{
___U3CUnderlyingTypeU3Ek__BackingField_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CUnderlyingTypeU3Ek__BackingField_15), (void*)value);
}
inline static int32_t get_offset_of_U3CIsReferenceU3Ek__BackingField_16() { return static_cast<int32_t>(offsetof(JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141, ___U3CIsReferenceU3Ek__BackingField_16)); }
inline Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 get_U3CIsReferenceU3Ek__BackingField_16() const { return ___U3CIsReferenceU3Ek__BackingField_16; }
inline Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 * get_address_of_U3CIsReferenceU3Ek__BackingField_16() { return &___U3CIsReferenceU3Ek__BackingField_16; }
inline void set_U3CIsReferenceU3Ek__BackingField_16(Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 value)
{
___U3CIsReferenceU3Ek__BackingField_16 = value;
}
inline static int32_t get_offset_of_U3CConverterU3Ek__BackingField_17() { return static_cast<int32_t>(offsetof(JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141, ___U3CConverterU3Ek__BackingField_17)); }
inline JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * get_U3CConverterU3Ek__BackingField_17() const { return ___U3CConverterU3Ek__BackingField_17; }
inline JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 ** get_address_of_U3CConverterU3Ek__BackingField_17() { return &___U3CConverterU3Ek__BackingField_17; }
inline void set_U3CConverterU3Ek__BackingField_17(JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * value)
{
___U3CConverterU3Ek__BackingField_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CConverterU3Ek__BackingField_17), (void*)value);
}
inline static int32_t get_offset_of_U3CInternalConverterU3Ek__BackingField_18() { return static_cast<int32_t>(offsetof(JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141, ___U3CInternalConverterU3Ek__BackingField_18)); }
inline JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * get_U3CInternalConverterU3Ek__BackingField_18() const { return ___U3CInternalConverterU3Ek__BackingField_18; }
inline JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 ** get_address_of_U3CInternalConverterU3Ek__BackingField_18() { return &___U3CInternalConverterU3Ek__BackingField_18; }
inline void set_U3CInternalConverterU3Ek__BackingField_18(JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * value)
{
___U3CInternalConverterU3Ek__BackingField_18 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CInternalConverterU3Ek__BackingField_18), (void*)value);
}
inline static int32_t get_offset_of_U3CDefaultCreatorU3Ek__BackingField_19() { return static_cast<int32_t>(offsetof(JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141, ___U3CDefaultCreatorU3Ek__BackingField_19)); }
inline Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 * get_U3CDefaultCreatorU3Ek__BackingField_19() const { return ___U3CDefaultCreatorU3Ek__BackingField_19; }
inline Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 ** get_address_of_U3CDefaultCreatorU3Ek__BackingField_19() { return &___U3CDefaultCreatorU3Ek__BackingField_19; }
inline void set_U3CDefaultCreatorU3Ek__BackingField_19(Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 * value)
{
___U3CDefaultCreatorU3Ek__BackingField_19 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CDefaultCreatorU3Ek__BackingField_19), (void*)value);
}
inline static int32_t get_offset_of_U3CDefaultCreatorNonPublicU3Ek__BackingField_20() { return static_cast<int32_t>(offsetof(JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141, ___U3CDefaultCreatorNonPublicU3Ek__BackingField_20)); }
inline bool get_U3CDefaultCreatorNonPublicU3Ek__BackingField_20() const { return ___U3CDefaultCreatorNonPublicU3Ek__BackingField_20; }
inline bool* get_address_of_U3CDefaultCreatorNonPublicU3Ek__BackingField_20() { return &___U3CDefaultCreatorNonPublicU3Ek__BackingField_20; }
inline void set_U3CDefaultCreatorNonPublicU3Ek__BackingField_20(bool value)
{
___U3CDefaultCreatorNonPublicU3Ek__BackingField_20 = value;
}
};
// System.Action`2<System.Object,System.Object>
struct Action_2_t0DB6FD6F515527EAB552B690A291778C6F00D48C : public MulticastDelegate_t
{
public:
public:
};
// 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.AsyncCallback
struct AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 : public MulticastDelegate_t
{
public:
public:
};
// System.ComponentModel.ComponentConverter
struct ComponentConverter_tAFCE49784F59197CB5E92C8ED566B069D1A5766E : public ReferenceConverter_t5080472EE999A1F00721E6C5C97013762C85C7E4
{
public:
public:
};
// System.ComponentModel.PropertyChangedEventHandler
struct PropertyChangedEventHandler_t617E98E1876A8EB394D2B329340CE02D21FFFC82 : public MulticastDelegate_t
{
public:
public:
};
// System.Func`1<System.Object>
struct Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 : public MulticastDelegate_t
{
public:
public:
};
// System.Func`1<Valve.Newtonsoft.Json.JsonSerializerSettings>
struct Func_1_t3CEBF86E0635EABFE16B2FB2AE427AFF966C1E62 : public MulticastDelegate_t
{
public:
public:
};
// System.Func`2<System.Object,System.Object>
struct Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 : public MulticastDelegate_t
{
public:
public:
};
// System.Func`2<System.Reflection.ConstructorInfo,System.Boolean>
struct Func_2_tE50BC1D78F3969472F5276AA4812403240D166E3 : public MulticastDelegate_t
{
public:
public:
};
// System.Func`2<System.Reflection.MemberInfo,System.Boolean>
struct Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422 : public MulticastDelegate_t
{
public:
public:
};
// System.Func`2<System.String,System.String>
struct Func_2_tD9EBF5FAD46B4F561FE5ABE814DC60E6253B8B96 : public MulticastDelegate_t
{
public:
public:
};
// System.Func`2<System.Type,System.Collections.Generic.IEnumerable`1<System.Reflection.MemberInfo>>
struct Func_2_t29F202ACCD37C598BCE6BF369E5B1493D173132A : public MulticastDelegate_t
{
public:
public:
};
// System.Func`2<Valve.Newtonsoft.Json.Serialization.DefaultSerializationBinder_TypeNameKey,System.Type>
struct Func_2_t613802803AE53BB465170B4BCAD06EC8EEE8FC0D : public MulticastDelegate_t
{
public:
public:
};
// System.Func`2<Valve.Newtonsoft.Json.Serialization.JsonProperty,System.Int32>
struct Func_2_t1659F01642289131579A99DC37C5A348E7091892 : public MulticastDelegate_t
{
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.Nullable`1<Valve.Newtonsoft.Json.JsonPosition>
struct Nullable_1_t26D29E116F22D7CF824C44D52B758C14D035667D
{
public:
// T System.Nullable`1::value
JsonPosition_t6ED67A82A34F185D91B222CCC7CBF5E83CF9F422 ___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_t26D29E116F22D7CF824C44D52B758C14D035667D, ___value_0)); }
inline JsonPosition_t6ED67A82A34F185D91B222CCC7CBF5E83CF9F422 get_value_0() const { return ___value_0; }
inline JsonPosition_t6ED67A82A34F185D91B222CCC7CBF5E83CF9F422 * get_address_of_value_0() { return &___value_0; }
inline void set_value_0(JsonPosition_t6ED67A82A34F185D91B222CCC7CBF5E83CF9F422 value)
{
___value_0 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___value_0))->___PropertyName_3), (void*)NULL);
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_t26D29E116F22D7CF824C44D52B758C14D035667D, ___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.Predicate`1<System.Object>
struct Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 : public MulticastDelegate_t
{
public:
public:
};
// Valve.Newtonsoft.Json.JsonContainerAttribute
struct JsonContainerAttribute_t4E39F1E5EA66CF61E90C47C81929BE4A853A2DF3 : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
{
public:
// System.Type Valve.Newtonsoft.Json.JsonContainerAttribute::<ItemConverterType>k__BackingField
Type_t * ___U3CItemConverterTypeU3Ek__BackingField_0;
// System.Object[] Valve.Newtonsoft.Json.JsonContainerAttribute::<ItemConverterParameters>k__BackingField
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___U3CItemConverterParametersU3Ek__BackingField_1;
// Valve.Newtonsoft.Json.Serialization.NamingStrategy Valve.Newtonsoft.Json.JsonContainerAttribute::<NamingStrategyInstance>k__BackingField
NamingStrategy_tBB6F8138B49E9B2704F7B87BF9130378976B9B46 * ___U3CNamingStrategyInstanceU3Ek__BackingField_2;
// System.Nullable`1<System.Boolean> Valve.Newtonsoft.Json.JsonContainerAttribute::_isReference
Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 ____isReference_3;
// System.Nullable`1<System.Boolean> Valve.Newtonsoft.Json.JsonContainerAttribute::_itemIsReference
Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 ____itemIsReference_4;
// System.Nullable`1<Valve.Newtonsoft.Json.ReferenceLoopHandling> Valve.Newtonsoft.Json.JsonContainerAttribute::_itemReferenceLoopHandling
Nullable_1_tD485E28BBBAFB03563161D92A5E03A20B8691DF7 ____itemReferenceLoopHandling_5;
// System.Nullable`1<Valve.Newtonsoft.Json.TypeNameHandling> Valve.Newtonsoft.Json.JsonContainerAttribute::_itemTypeNameHandling
Nullable_1_t03BF155C19CE72C93934F0A7CDDA0C202A278E11 ____itemTypeNameHandling_6;
// System.Type Valve.Newtonsoft.Json.JsonContainerAttribute::_namingStrategyType
Type_t * ____namingStrategyType_7;
// System.Object[] Valve.Newtonsoft.Json.JsonContainerAttribute::_namingStrategyParameters
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ____namingStrategyParameters_8;
public:
inline static int32_t get_offset_of_U3CItemConverterTypeU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(JsonContainerAttribute_t4E39F1E5EA66CF61E90C47C81929BE4A853A2DF3, ___U3CItemConverterTypeU3Ek__BackingField_0)); }
inline Type_t * get_U3CItemConverterTypeU3Ek__BackingField_0() const { return ___U3CItemConverterTypeU3Ek__BackingField_0; }
inline Type_t ** get_address_of_U3CItemConverterTypeU3Ek__BackingField_0() { return &___U3CItemConverterTypeU3Ek__BackingField_0; }
inline void set_U3CItemConverterTypeU3Ek__BackingField_0(Type_t * value)
{
___U3CItemConverterTypeU3Ek__BackingField_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CItemConverterTypeU3Ek__BackingField_0), (void*)value);
}
inline static int32_t get_offset_of_U3CItemConverterParametersU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(JsonContainerAttribute_t4E39F1E5EA66CF61E90C47C81929BE4A853A2DF3, ___U3CItemConverterParametersU3Ek__BackingField_1)); }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_U3CItemConverterParametersU3Ek__BackingField_1() const { return ___U3CItemConverterParametersU3Ek__BackingField_1; }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_U3CItemConverterParametersU3Ek__BackingField_1() { return &___U3CItemConverterParametersU3Ek__BackingField_1; }
inline void set_U3CItemConverterParametersU3Ek__BackingField_1(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
{
___U3CItemConverterParametersU3Ek__BackingField_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CItemConverterParametersU3Ek__BackingField_1), (void*)value);
}
inline static int32_t get_offset_of_U3CNamingStrategyInstanceU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(JsonContainerAttribute_t4E39F1E5EA66CF61E90C47C81929BE4A853A2DF3, ___U3CNamingStrategyInstanceU3Ek__BackingField_2)); }
inline NamingStrategy_tBB6F8138B49E9B2704F7B87BF9130378976B9B46 * get_U3CNamingStrategyInstanceU3Ek__BackingField_2() const { return ___U3CNamingStrategyInstanceU3Ek__BackingField_2; }
inline NamingStrategy_tBB6F8138B49E9B2704F7B87BF9130378976B9B46 ** get_address_of_U3CNamingStrategyInstanceU3Ek__BackingField_2() { return &___U3CNamingStrategyInstanceU3Ek__BackingField_2; }
inline void set_U3CNamingStrategyInstanceU3Ek__BackingField_2(NamingStrategy_tBB6F8138B49E9B2704F7B87BF9130378976B9B46 * value)
{
___U3CNamingStrategyInstanceU3Ek__BackingField_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CNamingStrategyInstanceU3Ek__BackingField_2), (void*)value);
}
inline static int32_t get_offset_of__isReference_3() { return static_cast<int32_t>(offsetof(JsonContainerAttribute_t4E39F1E5EA66CF61E90C47C81929BE4A853A2DF3, ____isReference_3)); }
inline Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 get__isReference_3() const { return ____isReference_3; }
inline Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 * get_address_of__isReference_3() { return &____isReference_3; }
inline void set__isReference_3(Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 value)
{
____isReference_3 = value;
}
inline static int32_t get_offset_of__itemIsReference_4() { return static_cast<int32_t>(offsetof(JsonContainerAttribute_t4E39F1E5EA66CF61E90C47C81929BE4A853A2DF3, ____itemIsReference_4)); }
inline Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 get__itemIsReference_4() const { return ____itemIsReference_4; }
inline Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 * get_address_of__itemIsReference_4() { return &____itemIsReference_4; }
inline void set__itemIsReference_4(Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 value)
{
____itemIsReference_4 = value;
}
inline static int32_t get_offset_of__itemReferenceLoopHandling_5() { return static_cast<int32_t>(offsetof(JsonContainerAttribute_t4E39F1E5EA66CF61E90C47C81929BE4A853A2DF3, ____itemReferenceLoopHandling_5)); }
inline Nullable_1_tD485E28BBBAFB03563161D92A5E03A20B8691DF7 get__itemReferenceLoopHandling_5() const { return ____itemReferenceLoopHandling_5; }
inline Nullable_1_tD485E28BBBAFB03563161D92A5E03A20B8691DF7 * get_address_of__itemReferenceLoopHandling_5() { return &____itemReferenceLoopHandling_5; }
inline void set__itemReferenceLoopHandling_5(Nullable_1_tD485E28BBBAFB03563161D92A5E03A20B8691DF7 value)
{
____itemReferenceLoopHandling_5 = value;
}
inline static int32_t get_offset_of__itemTypeNameHandling_6() { return static_cast<int32_t>(offsetof(JsonContainerAttribute_t4E39F1E5EA66CF61E90C47C81929BE4A853A2DF3, ____itemTypeNameHandling_6)); }
inline Nullable_1_t03BF155C19CE72C93934F0A7CDDA0C202A278E11 get__itemTypeNameHandling_6() const { return ____itemTypeNameHandling_6; }
inline Nullable_1_t03BF155C19CE72C93934F0A7CDDA0C202A278E11 * get_address_of__itemTypeNameHandling_6() { return &____itemTypeNameHandling_6; }
inline void set__itemTypeNameHandling_6(Nullable_1_t03BF155C19CE72C93934F0A7CDDA0C202A278E11 value)
{
____itemTypeNameHandling_6 = value;
}
inline static int32_t get_offset_of__namingStrategyType_7() { return static_cast<int32_t>(offsetof(JsonContainerAttribute_t4E39F1E5EA66CF61E90C47C81929BE4A853A2DF3, ____namingStrategyType_7)); }
inline Type_t * get__namingStrategyType_7() const { return ____namingStrategyType_7; }
inline Type_t ** get_address_of__namingStrategyType_7() { return &____namingStrategyType_7; }
inline void set__namingStrategyType_7(Type_t * value)
{
____namingStrategyType_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____namingStrategyType_7), (void*)value);
}
inline static int32_t get_offset_of__namingStrategyParameters_8() { return static_cast<int32_t>(offsetof(JsonContainerAttribute_t4E39F1E5EA66CF61E90C47C81929BE4A853A2DF3, ____namingStrategyParameters_8)); }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get__namingStrategyParameters_8() const { return ____namingStrategyParameters_8; }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of__namingStrategyParameters_8() { return &____namingStrategyParameters_8; }
inline void set__namingStrategyParameters_8(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
{
____namingStrategyParameters_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&____namingStrategyParameters_8), (void*)value);
}
};
// Valve.Newtonsoft.Json.JsonPropertyAttribute
struct JsonPropertyAttribute_tD66B9C74F3201FFAF7A16DB84AEA31FE8F02ED5F : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
{
public:
// System.Nullable`1<Valve.Newtonsoft.Json.NullValueHandling> Valve.Newtonsoft.Json.JsonPropertyAttribute::_nullValueHandling
Nullable_1_t1E3E10A718340D5055F8DB98AE1C03F47CDC19FC ____nullValueHandling_0;
// System.Nullable`1<Valve.Newtonsoft.Json.DefaultValueHandling> Valve.Newtonsoft.Json.JsonPropertyAttribute::_defaultValueHandling
Nullable_1_tE7CF0A7BC2816D39007C0EEB41F32FA7DB86B394 ____defaultValueHandling_1;
// System.Nullable`1<Valve.Newtonsoft.Json.ReferenceLoopHandling> Valve.Newtonsoft.Json.JsonPropertyAttribute::_referenceLoopHandling
Nullable_1_tD485E28BBBAFB03563161D92A5E03A20B8691DF7 ____referenceLoopHandling_2;
// System.Nullable`1<Valve.Newtonsoft.Json.ObjectCreationHandling> Valve.Newtonsoft.Json.JsonPropertyAttribute::_objectCreationHandling
Nullable_1_t6F16A066F0D8E92AEDC11791932E5B9D887F402E ____objectCreationHandling_3;
// System.Nullable`1<Valve.Newtonsoft.Json.TypeNameHandling> Valve.Newtonsoft.Json.JsonPropertyAttribute::_typeNameHandling
Nullable_1_t03BF155C19CE72C93934F0A7CDDA0C202A278E11 ____typeNameHandling_4;
// System.Nullable`1<System.Boolean> Valve.Newtonsoft.Json.JsonPropertyAttribute::_isReference
Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 ____isReference_5;
// System.Nullable`1<System.Int32> Valve.Newtonsoft.Json.JsonPropertyAttribute::_order
Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB ____order_6;
// System.Nullable`1<Valve.Newtonsoft.Json.Required> Valve.Newtonsoft.Json.JsonPropertyAttribute::_required
Nullable_1_t240C94038A74304286AD4C81EAEFD24E6E435A06 ____required_7;
// System.Nullable`1<System.Boolean> Valve.Newtonsoft.Json.JsonPropertyAttribute::_itemIsReference
Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 ____itemIsReference_8;
// System.Nullable`1<Valve.Newtonsoft.Json.ReferenceLoopHandling> Valve.Newtonsoft.Json.JsonPropertyAttribute::_itemReferenceLoopHandling
Nullable_1_tD485E28BBBAFB03563161D92A5E03A20B8691DF7 ____itemReferenceLoopHandling_9;
// System.Nullable`1<Valve.Newtonsoft.Json.TypeNameHandling> Valve.Newtonsoft.Json.JsonPropertyAttribute::_itemTypeNameHandling
Nullable_1_t03BF155C19CE72C93934F0A7CDDA0C202A278E11 ____itemTypeNameHandling_10;
// System.Type Valve.Newtonsoft.Json.JsonPropertyAttribute::<ItemConverterType>k__BackingField
Type_t * ___U3CItemConverterTypeU3Ek__BackingField_11;
// System.Object[] Valve.Newtonsoft.Json.JsonPropertyAttribute::<ItemConverterParameters>k__BackingField
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___U3CItemConverterParametersU3Ek__BackingField_12;
// System.Type Valve.Newtonsoft.Json.JsonPropertyAttribute::<NamingStrategyType>k__BackingField
Type_t * ___U3CNamingStrategyTypeU3Ek__BackingField_13;
// System.Object[] Valve.Newtonsoft.Json.JsonPropertyAttribute::<NamingStrategyParameters>k__BackingField
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___U3CNamingStrategyParametersU3Ek__BackingField_14;
// System.String Valve.Newtonsoft.Json.JsonPropertyAttribute::<PropertyName>k__BackingField
String_t* ___U3CPropertyNameU3Ek__BackingField_15;
public:
inline static int32_t get_offset_of__nullValueHandling_0() { return static_cast<int32_t>(offsetof(JsonPropertyAttribute_tD66B9C74F3201FFAF7A16DB84AEA31FE8F02ED5F, ____nullValueHandling_0)); }
inline Nullable_1_t1E3E10A718340D5055F8DB98AE1C03F47CDC19FC get__nullValueHandling_0() const { return ____nullValueHandling_0; }
inline Nullable_1_t1E3E10A718340D5055F8DB98AE1C03F47CDC19FC * get_address_of__nullValueHandling_0() { return &____nullValueHandling_0; }
inline void set__nullValueHandling_0(Nullable_1_t1E3E10A718340D5055F8DB98AE1C03F47CDC19FC value)
{
____nullValueHandling_0 = value;
}
inline static int32_t get_offset_of__defaultValueHandling_1() { return static_cast<int32_t>(offsetof(JsonPropertyAttribute_tD66B9C74F3201FFAF7A16DB84AEA31FE8F02ED5F, ____defaultValueHandling_1)); }
inline Nullable_1_tE7CF0A7BC2816D39007C0EEB41F32FA7DB86B394 get__defaultValueHandling_1() const { return ____defaultValueHandling_1; }
inline Nullable_1_tE7CF0A7BC2816D39007C0EEB41F32FA7DB86B394 * get_address_of__defaultValueHandling_1() { return &____defaultValueHandling_1; }
inline void set__defaultValueHandling_1(Nullable_1_tE7CF0A7BC2816D39007C0EEB41F32FA7DB86B394 value)
{
____defaultValueHandling_1 = value;
}
inline static int32_t get_offset_of__referenceLoopHandling_2() { return static_cast<int32_t>(offsetof(JsonPropertyAttribute_tD66B9C74F3201FFAF7A16DB84AEA31FE8F02ED5F, ____referenceLoopHandling_2)); }
inline Nullable_1_tD485E28BBBAFB03563161D92A5E03A20B8691DF7 get__referenceLoopHandling_2() const { return ____referenceLoopHandling_2; }
inline Nullable_1_tD485E28BBBAFB03563161D92A5E03A20B8691DF7 * get_address_of__referenceLoopHandling_2() { return &____referenceLoopHandling_2; }
inline void set__referenceLoopHandling_2(Nullable_1_tD485E28BBBAFB03563161D92A5E03A20B8691DF7 value)
{
____referenceLoopHandling_2 = value;
}
inline static int32_t get_offset_of__objectCreationHandling_3() { return static_cast<int32_t>(offsetof(JsonPropertyAttribute_tD66B9C74F3201FFAF7A16DB84AEA31FE8F02ED5F, ____objectCreationHandling_3)); }
inline Nullable_1_t6F16A066F0D8E92AEDC11791932E5B9D887F402E get__objectCreationHandling_3() const { return ____objectCreationHandling_3; }
inline Nullable_1_t6F16A066F0D8E92AEDC11791932E5B9D887F402E * get_address_of__objectCreationHandling_3() { return &____objectCreationHandling_3; }
inline void set__objectCreationHandling_3(Nullable_1_t6F16A066F0D8E92AEDC11791932E5B9D887F402E value)
{
____objectCreationHandling_3 = value;
}
inline static int32_t get_offset_of__typeNameHandling_4() { return static_cast<int32_t>(offsetof(JsonPropertyAttribute_tD66B9C74F3201FFAF7A16DB84AEA31FE8F02ED5F, ____typeNameHandling_4)); }
inline Nullable_1_t03BF155C19CE72C93934F0A7CDDA0C202A278E11 get__typeNameHandling_4() const { return ____typeNameHandling_4; }
inline Nullable_1_t03BF155C19CE72C93934F0A7CDDA0C202A278E11 * get_address_of__typeNameHandling_4() { return &____typeNameHandling_4; }
inline void set__typeNameHandling_4(Nullable_1_t03BF155C19CE72C93934F0A7CDDA0C202A278E11 value)
{
____typeNameHandling_4 = value;
}
inline static int32_t get_offset_of__isReference_5() { return static_cast<int32_t>(offsetof(JsonPropertyAttribute_tD66B9C74F3201FFAF7A16DB84AEA31FE8F02ED5F, ____isReference_5)); }
inline Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 get__isReference_5() const { return ____isReference_5; }
inline Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 * get_address_of__isReference_5() { return &____isReference_5; }
inline void set__isReference_5(Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 value)
{
____isReference_5 = value;
}
inline static int32_t get_offset_of__order_6() { return static_cast<int32_t>(offsetof(JsonPropertyAttribute_tD66B9C74F3201FFAF7A16DB84AEA31FE8F02ED5F, ____order_6)); }
inline Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB get__order_6() const { return ____order_6; }
inline Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB * get_address_of__order_6() { return &____order_6; }
inline void set__order_6(Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB value)
{
____order_6 = value;
}
inline static int32_t get_offset_of__required_7() { return static_cast<int32_t>(offsetof(JsonPropertyAttribute_tD66B9C74F3201FFAF7A16DB84AEA31FE8F02ED5F, ____required_7)); }
inline Nullable_1_t240C94038A74304286AD4C81EAEFD24E6E435A06 get__required_7() const { return ____required_7; }
inline Nullable_1_t240C94038A74304286AD4C81EAEFD24E6E435A06 * get_address_of__required_7() { return &____required_7; }
inline void set__required_7(Nullable_1_t240C94038A74304286AD4C81EAEFD24E6E435A06 value)
{
____required_7 = value;
}
inline static int32_t get_offset_of__itemIsReference_8() { return static_cast<int32_t>(offsetof(JsonPropertyAttribute_tD66B9C74F3201FFAF7A16DB84AEA31FE8F02ED5F, ____itemIsReference_8)); }
inline Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 get__itemIsReference_8() const { return ____itemIsReference_8; }
inline Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 * get_address_of__itemIsReference_8() { return &____itemIsReference_8; }
inline void set__itemIsReference_8(Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 value)
{
____itemIsReference_8 = value;
}
inline static int32_t get_offset_of__itemReferenceLoopHandling_9() { return static_cast<int32_t>(offsetof(JsonPropertyAttribute_tD66B9C74F3201FFAF7A16DB84AEA31FE8F02ED5F, ____itemReferenceLoopHandling_9)); }
inline Nullable_1_tD485E28BBBAFB03563161D92A5E03A20B8691DF7 get__itemReferenceLoopHandling_9() const { return ____itemReferenceLoopHandling_9; }
inline Nullable_1_tD485E28BBBAFB03563161D92A5E03A20B8691DF7 * get_address_of__itemReferenceLoopHandling_9() { return &____itemReferenceLoopHandling_9; }
inline void set__itemReferenceLoopHandling_9(Nullable_1_tD485E28BBBAFB03563161D92A5E03A20B8691DF7 value)
{
____itemReferenceLoopHandling_9 = value;
}
inline static int32_t get_offset_of__itemTypeNameHandling_10() { return static_cast<int32_t>(offsetof(JsonPropertyAttribute_tD66B9C74F3201FFAF7A16DB84AEA31FE8F02ED5F, ____itemTypeNameHandling_10)); }
inline Nullable_1_t03BF155C19CE72C93934F0A7CDDA0C202A278E11 get__itemTypeNameHandling_10() const { return ____itemTypeNameHandling_10; }
inline Nullable_1_t03BF155C19CE72C93934F0A7CDDA0C202A278E11 * get_address_of__itemTypeNameHandling_10() { return &____itemTypeNameHandling_10; }
inline void set__itemTypeNameHandling_10(Nullable_1_t03BF155C19CE72C93934F0A7CDDA0C202A278E11 value)
{
____itemTypeNameHandling_10 = value;
}
inline static int32_t get_offset_of_U3CItemConverterTypeU3Ek__BackingField_11() { return static_cast<int32_t>(offsetof(JsonPropertyAttribute_tD66B9C74F3201FFAF7A16DB84AEA31FE8F02ED5F, ___U3CItemConverterTypeU3Ek__BackingField_11)); }
inline Type_t * get_U3CItemConverterTypeU3Ek__BackingField_11() const { return ___U3CItemConverterTypeU3Ek__BackingField_11; }
inline Type_t ** get_address_of_U3CItemConverterTypeU3Ek__BackingField_11() { return &___U3CItemConverterTypeU3Ek__BackingField_11; }
inline void set_U3CItemConverterTypeU3Ek__BackingField_11(Type_t * value)
{
___U3CItemConverterTypeU3Ek__BackingField_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CItemConverterTypeU3Ek__BackingField_11), (void*)value);
}
inline static int32_t get_offset_of_U3CItemConverterParametersU3Ek__BackingField_12() { return static_cast<int32_t>(offsetof(JsonPropertyAttribute_tD66B9C74F3201FFAF7A16DB84AEA31FE8F02ED5F, ___U3CItemConverterParametersU3Ek__BackingField_12)); }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_U3CItemConverterParametersU3Ek__BackingField_12() const { return ___U3CItemConverterParametersU3Ek__BackingField_12; }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_U3CItemConverterParametersU3Ek__BackingField_12() { return &___U3CItemConverterParametersU3Ek__BackingField_12; }
inline void set_U3CItemConverterParametersU3Ek__BackingField_12(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
{
___U3CItemConverterParametersU3Ek__BackingField_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CItemConverterParametersU3Ek__BackingField_12), (void*)value);
}
inline static int32_t get_offset_of_U3CNamingStrategyTypeU3Ek__BackingField_13() { return static_cast<int32_t>(offsetof(JsonPropertyAttribute_tD66B9C74F3201FFAF7A16DB84AEA31FE8F02ED5F, ___U3CNamingStrategyTypeU3Ek__BackingField_13)); }
inline Type_t * get_U3CNamingStrategyTypeU3Ek__BackingField_13() const { return ___U3CNamingStrategyTypeU3Ek__BackingField_13; }
inline Type_t ** get_address_of_U3CNamingStrategyTypeU3Ek__BackingField_13() { return &___U3CNamingStrategyTypeU3Ek__BackingField_13; }
inline void set_U3CNamingStrategyTypeU3Ek__BackingField_13(Type_t * value)
{
___U3CNamingStrategyTypeU3Ek__BackingField_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CNamingStrategyTypeU3Ek__BackingField_13), (void*)value);
}
inline static int32_t get_offset_of_U3CNamingStrategyParametersU3Ek__BackingField_14() { return static_cast<int32_t>(offsetof(JsonPropertyAttribute_tD66B9C74F3201FFAF7A16DB84AEA31FE8F02ED5F, ___U3CNamingStrategyParametersU3Ek__BackingField_14)); }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_U3CNamingStrategyParametersU3Ek__BackingField_14() const { return ___U3CNamingStrategyParametersU3Ek__BackingField_14; }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_U3CNamingStrategyParametersU3Ek__BackingField_14() { return &___U3CNamingStrategyParametersU3Ek__BackingField_14; }
inline void set_U3CNamingStrategyParametersU3Ek__BackingField_14(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
{
___U3CNamingStrategyParametersU3Ek__BackingField_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CNamingStrategyParametersU3Ek__BackingField_14), (void*)value);
}
inline static int32_t get_offset_of_U3CPropertyNameU3Ek__BackingField_15() { return static_cast<int32_t>(offsetof(JsonPropertyAttribute_tD66B9C74F3201FFAF7A16DB84AEA31FE8F02ED5F, ___U3CPropertyNameU3Ek__BackingField_15)); }
inline String_t* get_U3CPropertyNameU3Ek__BackingField_15() const { return ___U3CPropertyNameU3Ek__BackingField_15; }
inline String_t** get_address_of_U3CPropertyNameU3Ek__BackingField_15() { return &___U3CPropertyNameU3Ek__BackingField_15; }
inline void set_U3CPropertyNameU3Ek__BackingField_15(String_t* value)
{
___U3CPropertyNameU3Ek__BackingField_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CPropertyNameU3Ek__BackingField_15), (void*)value);
}
};
// Valve.Newtonsoft.Json.JsonReader
struct JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C : public RuntimeObject
{
public:
// Valve.Newtonsoft.Json.JsonToken Valve.Newtonsoft.Json.JsonReader::_tokenType
int32_t ____tokenType_0;
// System.Object Valve.Newtonsoft.Json.JsonReader::_value
RuntimeObject * ____value_1;
// System.Char Valve.Newtonsoft.Json.JsonReader::_quoteChar
Il2CppChar ____quoteChar_2;
// Valve.Newtonsoft.Json.JsonReader_State Valve.Newtonsoft.Json.JsonReader::_currentState
int32_t ____currentState_3;
// Valve.Newtonsoft.Json.JsonPosition Valve.Newtonsoft.Json.JsonReader::_currentPosition
JsonPosition_t6ED67A82A34F185D91B222CCC7CBF5E83CF9F422 ____currentPosition_4;
// System.Globalization.CultureInfo Valve.Newtonsoft.Json.JsonReader::_culture
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ____culture_5;
// Valve.Newtonsoft.Json.DateTimeZoneHandling Valve.Newtonsoft.Json.JsonReader::_dateTimeZoneHandling
int32_t ____dateTimeZoneHandling_6;
// System.Nullable`1<System.Int32> Valve.Newtonsoft.Json.JsonReader::_maxDepth
Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB ____maxDepth_7;
// System.Boolean Valve.Newtonsoft.Json.JsonReader::_hasExceededMaxDepth
bool ____hasExceededMaxDepth_8;
// Valve.Newtonsoft.Json.DateParseHandling Valve.Newtonsoft.Json.JsonReader::_dateParseHandling
int32_t ____dateParseHandling_9;
// Valve.Newtonsoft.Json.FloatParseHandling Valve.Newtonsoft.Json.JsonReader::_floatParseHandling
int32_t ____floatParseHandling_10;
// System.String Valve.Newtonsoft.Json.JsonReader::_dateFormatString
String_t* ____dateFormatString_11;
// System.Collections.Generic.List`1<Valve.Newtonsoft.Json.JsonPosition> Valve.Newtonsoft.Json.JsonReader::_stack
List_1_tB300EBCDF85B082F12B483D22C5C8070412F6C76 * ____stack_12;
// System.Boolean Valve.Newtonsoft.Json.JsonReader::<CloseInput>k__BackingField
bool ___U3CCloseInputU3Ek__BackingField_13;
// System.Boolean Valve.Newtonsoft.Json.JsonReader::<SupportMultipleContent>k__BackingField
bool ___U3CSupportMultipleContentU3Ek__BackingField_14;
public:
inline static int32_t get_offset_of__tokenType_0() { return static_cast<int32_t>(offsetof(JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C, ____tokenType_0)); }
inline int32_t get__tokenType_0() const { return ____tokenType_0; }
inline int32_t* get_address_of__tokenType_0() { return &____tokenType_0; }
inline void set__tokenType_0(int32_t value)
{
____tokenType_0 = value;
}
inline static int32_t get_offset_of__value_1() { return static_cast<int32_t>(offsetof(JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C, ____value_1)); }
inline RuntimeObject * get__value_1() const { return ____value_1; }
inline RuntimeObject ** get_address_of__value_1() { return &____value_1; }
inline void set__value_1(RuntimeObject * value)
{
____value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____value_1), (void*)value);
}
inline static int32_t get_offset_of__quoteChar_2() { return static_cast<int32_t>(offsetof(JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C, ____quoteChar_2)); }
inline Il2CppChar get__quoteChar_2() const { return ____quoteChar_2; }
inline Il2CppChar* get_address_of__quoteChar_2() { return &____quoteChar_2; }
inline void set__quoteChar_2(Il2CppChar value)
{
____quoteChar_2 = value;
}
inline static int32_t get_offset_of__currentState_3() { return static_cast<int32_t>(offsetof(JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C, ____currentState_3)); }
inline int32_t get__currentState_3() const { return ____currentState_3; }
inline int32_t* get_address_of__currentState_3() { return &____currentState_3; }
inline void set__currentState_3(int32_t value)
{
____currentState_3 = value;
}
inline static int32_t get_offset_of__currentPosition_4() { return static_cast<int32_t>(offsetof(JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C, ____currentPosition_4)); }
inline JsonPosition_t6ED67A82A34F185D91B222CCC7CBF5E83CF9F422 get__currentPosition_4() const { return ____currentPosition_4; }
inline JsonPosition_t6ED67A82A34F185D91B222CCC7CBF5E83CF9F422 * get_address_of__currentPosition_4() { return &____currentPosition_4; }
inline void set__currentPosition_4(JsonPosition_t6ED67A82A34F185D91B222CCC7CBF5E83CF9F422 value)
{
____currentPosition_4 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&____currentPosition_4))->___PropertyName_3), (void*)NULL);
}
inline static int32_t get_offset_of__culture_5() { return static_cast<int32_t>(offsetof(JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C, ____culture_5)); }
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get__culture_5() const { return ____culture_5; }
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of__culture_5() { return &____culture_5; }
inline void set__culture_5(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value)
{
____culture_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____culture_5), (void*)value);
}
inline static int32_t get_offset_of__dateTimeZoneHandling_6() { return static_cast<int32_t>(offsetof(JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C, ____dateTimeZoneHandling_6)); }
inline int32_t get__dateTimeZoneHandling_6() const { return ____dateTimeZoneHandling_6; }
inline int32_t* get_address_of__dateTimeZoneHandling_6() { return &____dateTimeZoneHandling_6; }
inline void set__dateTimeZoneHandling_6(int32_t value)
{
____dateTimeZoneHandling_6 = value;
}
inline static int32_t get_offset_of__maxDepth_7() { return static_cast<int32_t>(offsetof(JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C, ____maxDepth_7)); }
inline Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB get__maxDepth_7() const { return ____maxDepth_7; }
inline Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB * get_address_of__maxDepth_7() { return &____maxDepth_7; }
inline void set__maxDepth_7(Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB value)
{
____maxDepth_7 = value;
}
inline static int32_t get_offset_of__hasExceededMaxDepth_8() { return static_cast<int32_t>(offsetof(JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C, ____hasExceededMaxDepth_8)); }
inline bool get__hasExceededMaxDepth_8() const { return ____hasExceededMaxDepth_8; }
inline bool* get_address_of__hasExceededMaxDepth_8() { return &____hasExceededMaxDepth_8; }
inline void set__hasExceededMaxDepth_8(bool value)
{
____hasExceededMaxDepth_8 = value;
}
inline static int32_t get_offset_of__dateParseHandling_9() { return static_cast<int32_t>(offsetof(JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C, ____dateParseHandling_9)); }
inline int32_t get__dateParseHandling_9() const { return ____dateParseHandling_9; }
inline int32_t* get_address_of__dateParseHandling_9() { return &____dateParseHandling_9; }
inline void set__dateParseHandling_9(int32_t value)
{
____dateParseHandling_9 = value;
}
inline static int32_t get_offset_of__floatParseHandling_10() { return static_cast<int32_t>(offsetof(JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C, ____floatParseHandling_10)); }
inline int32_t get__floatParseHandling_10() const { return ____floatParseHandling_10; }
inline int32_t* get_address_of__floatParseHandling_10() { return &____floatParseHandling_10; }
inline void set__floatParseHandling_10(int32_t value)
{
____floatParseHandling_10 = value;
}
inline static int32_t get_offset_of__dateFormatString_11() { return static_cast<int32_t>(offsetof(JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C, ____dateFormatString_11)); }
inline String_t* get__dateFormatString_11() const { return ____dateFormatString_11; }
inline String_t** get_address_of__dateFormatString_11() { return &____dateFormatString_11; }
inline void set__dateFormatString_11(String_t* value)
{
____dateFormatString_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&____dateFormatString_11), (void*)value);
}
inline static int32_t get_offset_of__stack_12() { return static_cast<int32_t>(offsetof(JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C, ____stack_12)); }
inline List_1_tB300EBCDF85B082F12B483D22C5C8070412F6C76 * get__stack_12() const { return ____stack_12; }
inline List_1_tB300EBCDF85B082F12B483D22C5C8070412F6C76 ** get_address_of__stack_12() { return &____stack_12; }
inline void set__stack_12(List_1_tB300EBCDF85B082F12B483D22C5C8070412F6C76 * value)
{
____stack_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&____stack_12), (void*)value);
}
inline static int32_t get_offset_of_U3CCloseInputU3Ek__BackingField_13() { return static_cast<int32_t>(offsetof(JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C, ___U3CCloseInputU3Ek__BackingField_13)); }
inline bool get_U3CCloseInputU3Ek__BackingField_13() const { return ___U3CCloseInputU3Ek__BackingField_13; }
inline bool* get_address_of_U3CCloseInputU3Ek__BackingField_13() { return &___U3CCloseInputU3Ek__BackingField_13; }
inline void set_U3CCloseInputU3Ek__BackingField_13(bool value)
{
___U3CCloseInputU3Ek__BackingField_13 = value;
}
inline static int32_t get_offset_of_U3CSupportMultipleContentU3Ek__BackingField_14() { return static_cast<int32_t>(offsetof(JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C, ___U3CSupportMultipleContentU3Ek__BackingField_14)); }
inline bool get_U3CSupportMultipleContentU3Ek__BackingField_14() const { return ___U3CSupportMultipleContentU3Ek__BackingField_14; }
inline bool* get_address_of_U3CSupportMultipleContentU3Ek__BackingField_14() { return &___U3CSupportMultipleContentU3Ek__BackingField_14; }
inline void set_U3CSupportMultipleContentU3Ek__BackingField_14(bool value)
{
___U3CSupportMultipleContentU3Ek__BackingField_14 = value;
}
};
// Valve.Newtonsoft.Json.JsonReaderException
struct JsonReaderException_t1C6240BBE2D8125B80F7E72F0EE572194B3263DC : public JsonException_tB1AABB3C8AE18D781A8A9A14CB03AF7AFEA33928
{
public:
// System.Int32 Valve.Newtonsoft.Json.JsonReaderException::<LineNumber>k__BackingField
int32_t ___U3CLineNumberU3Ek__BackingField_17;
// System.Int32 Valve.Newtonsoft.Json.JsonReaderException::<LinePosition>k__BackingField
int32_t ___U3CLinePositionU3Ek__BackingField_18;
// System.String Valve.Newtonsoft.Json.JsonReaderException::<Path>k__BackingField
String_t* ___U3CPathU3Ek__BackingField_19;
public:
inline static int32_t get_offset_of_U3CLineNumberU3Ek__BackingField_17() { return static_cast<int32_t>(offsetof(JsonReaderException_t1C6240BBE2D8125B80F7E72F0EE572194B3263DC, ___U3CLineNumberU3Ek__BackingField_17)); }
inline int32_t get_U3CLineNumberU3Ek__BackingField_17() const { return ___U3CLineNumberU3Ek__BackingField_17; }
inline int32_t* get_address_of_U3CLineNumberU3Ek__BackingField_17() { return &___U3CLineNumberU3Ek__BackingField_17; }
inline void set_U3CLineNumberU3Ek__BackingField_17(int32_t value)
{
___U3CLineNumberU3Ek__BackingField_17 = value;
}
inline static int32_t get_offset_of_U3CLinePositionU3Ek__BackingField_18() { return static_cast<int32_t>(offsetof(JsonReaderException_t1C6240BBE2D8125B80F7E72F0EE572194B3263DC, ___U3CLinePositionU3Ek__BackingField_18)); }
inline int32_t get_U3CLinePositionU3Ek__BackingField_18() const { return ___U3CLinePositionU3Ek__BackingField_18; }
inline int32_t* get_address_of_U3CLinePositionU3Ek__BackingField_18() { return &___U3CLinePositionU3Ek__BackingField_18; }
inline void set_U3CLinePositionU3Ek__BackingField_18(int32_t value)
{
___U3CLinePositionU3Ek__BackingField_18 = value;
}
inline static int32_t get_offset_of_U3CPathU3Ek__BackingField_19() { return static_cast<int32_t>(offsetof(JsonReaderException_t1C6240BBE2D8125B80F7E72F0EE572194B3263DC, ___U3CPathU3Ek__BackingField_19)); }
inline String_t* get_U3CPathU3Ek__BackingField_19() const { return ___U3CPathU3Ek__BackingField_19; }
inline String_t** get_address_of_U3CPathU3Ek__BackingField_19() { return &___U3CPathU3Ek__BackingField_19; }
inline void set_U3CPathU3Ek__BackingField_19(String_t* value)
{
___U3CPathU3Ek__BackingField_19 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CPathU3Ek__BackingField_19), (void*)value);
}
};
// Valve.Newtonsoft.Json.JsonSerializationException
struct JsonSerializationException_t041C510BA8DF91FD223402E73A4E55EC1B12E902 : public JsonException_tB1AABB3C8AE18D781A8A9A14CB03AF7AFEA33928
{
public:
public:
};
// Valve.Newtonsoft.Json.JsonSerializer
struct JsonSerializer_t1D5D385AB5641E8958FC0E6ECB498B4DC45BC4D4 : public RuntimeObject
{
public:
// Valve.Newtonsoft.Json.TypeNameHandling Valve.Newtonsoft.Json.JsonSerializer::_typeNameHandling
int32_t ____typeNameHandling_0;
// System.Runtime.Serialization.Formatters.FormatterAssemblyStyle Valve.Newtonsoft.Json.JsonSerializer::_typeNameAssemblyFormat
int32_t ____typeNameAssemblyFormat_1;
// Valve.Newtonsoft.Json.PreserveReferencesHandling Valve.Newtonsoft.Json.JsonSerializer::_preserveReferencesHandling
int32_t ____preserveReferencesHandling_2;
// Valve.Newtonsoft.Json.ReferenceLoopHandling Valve.Newtonsoft.Json.JsonSerializer::_referenceLoopHandling
int32_t ____referenceLoopHandling_3;
// Valve.Newtonsoft.Json.MissingMemberHandling Valve.Newtonsoft.Json.JsonSerializer::_missingMemberHandling
int32_t ____missingMemberHandling_4;
// Valve.Newtonsoft.Json.ObjectCreationHandling Valve.Newtonsoft.Json.JsonSerializer::_objectCreationHandling
int32_t ____objectCreationHandling_5;
// Valve.Newtonsoft.Json.NullValueHandling Valve.Newtonsoft.Json.JsonSerializer::_nullValueHandling
int32_t ____nullValueHandling_6;
// Valve.Newtonsoft.Json.DefaultValueHandling Valve.Newtonsoft.Json.JsonSerializer::_defaultValueHandling
int32_t ____defaultValueHandling_7;
// Valve.Newtonsoft.Json.ConstructorHandling Valve.Newtonsoft.Json.JsonSerializer::_constructorHandling
int32_t ____constructorHandling_8;
// Valve.Newtonsoft.Json.MetadataPropertyHandling Valve.Newtonsoft.Json.JsonSerializer::_metadataPropertyHandling
int32_t ____metadataPropertyHandling_9;
// Valve.Newtonsoft.Json.JsonConverterCollection Valve.Newtonsoft.Json.JsonSerializer::_converters
JsonConverterCollection_t6A37EB366CB43AF8A0215C81C1782825DE816706 * ____converters_10;
// Valve.Newtonsoft.Json.Serialization.IContractResolver Valve.Newtonsoft.Json.JsonSerializer::_contractResolver
RuntimeObject* ____contractResolver_11;
// Valve.Newtonsoft.Json.Serialization.ITraceWriter Valve.Newtonsoft.Json.JsonSerializer::_traceWriter
RuntimeObject* ____traceWriter_12;
// System.Collections.IEqualityComparer Valve.Newtonsoft.Json.JsonSerializer::_equalityComparer
RuntimeObject* ____equalityComparer_13;
// System.Runtime.Serialization.SerializationBinder Valve.Newtonsoft.Json.JsonSerializer::_binder
SerializationBinder_tB5EBAF328371FB7CF23E37F5984D8412762CFFA4 * ____binder_14;
// System.Runtime.Serialization.StreamingContext Valve.Newtonsoft.Json.JsonSerializer::_context
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ____context_15;
// Valve.Newtonsoft.Json.Serialization.IReferenceResolver Valve.Newtonsoft.Json.JsonSerializer::_referenceResolver
RuntimeObject* ____referenceResolver_16;
// System.Nullable`1<Valve.Newtonsoft.Json.Formatting> Valve.Newtonsoft.Json.JsonSerializer::_formatting
Nullable_1_tE7B6669302569AA700286CE2883D293CE8172C7A ____formatting_17;
// System.Nullable`1<Valve.Newtonsoft.Json.DateFormatHandling> Valve.Newtonsoft.Json.JsonSerializer::_dateFormatHandling
Nullable_1_t73A49F34D2106A79207E843251A0114D691E6535 ____dateFormatHandling_18;
// System.Nullable`1<Valve.Newtonsoft.Json.DateTimeZoneHandling> Valve.Newtonsoft.Json.JsonSerializer::_dateTimeZoneHandling
Nullable_1_t18139C674E3B5AFCBF40873314559D51856D0E4E ____dateTimeZoneHandling_19;
// System.Nullable`1<Valve.Newtonsoft.Json.DateParseHandling> Valve.Newtonsoft.Json.JsonSerializer::_dateParseHandling
Nullable_1_t9F3BCE47D35303B9D866BA82D305DF4DA2E6C229 ____dateParseHandling_20;
// System.Nullable`1<Valve.Newtonsoft.Json.FloatFormatHandling> Valve.Newtonsoft.Json.JsonSerializer::_floatFormatHandling
Nullable_1_t8ECA5E7C2A987CD73EBA2940127D43060369D94A ____floatFormatHandling_21;
// System.Nullable`1<Valve.Newtonsoft.Json.FloatParseHandling> Valve.Newtonsoft.Json.JsonSerializer::_floatParseHandling
Nullable_1_t4679CD5E6858682FA8A2CCD73B2F363C1C8431E9 ____floatParseHandling_22;
// System.Nullable`1<Valve.Newtonsoft.Json.StringEscapeHandling> Valve.Newtonsoft.Json.JsonSerializer::_stringEscapeHandling
Nullable_1_tCC61AA36549A190C69D05B18E796D97D76E84458 ____stringEscapeHandling_23;
// System.Globalization.CultureInfo Valve.Newtonsoft.Json.JsonSerializer::_culture
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ____culture_24;
// System.Nullable`1<System.Int32> Valve.Newtonsoft.Json.JsonSerializer::_maxDepth
Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB ____maxDepth_25;
// System.Boolean Valve.Newtonsoft.Json.JsonSerializer::_maxDepthSet
bool ____maxDepthSet_26;
// System.Nullable`1<System.Boolean> Valve.Newtonsoft.Json.JsonSerializer::_checkAdditionalContent
Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 ____checkAdditionalContent_27;
// System.String Valve.Newtonsoft.Json.JsonSerializer::_dateFormatString
String_t* ____dateFormatString_28;
// System.Boolean Valve.Newtonsoft.Json.JsonSerializer::_dateFormatStringSet
bool ____dateFormatStringSet_29;
// System.EventHandler`1<Valve.Newtonsoft.Json.Serialization.ErrorEventArgs> Valve.Newtonsoft.Json.JsonSerializer::Error
EventHandler_1_t9FDC532948E51E57762946306812505DCBFBB21E * ___Error_30;
public:
inline static int32_t get_offset_of__typeNameHandling_0() { return static_cast<int32_t>(offsetof(JsonSerializer_t1D5D385AB5641E8958FC0E6ECB498B4DC45BC4D4, ____typeNameHandling_0)); }
inline int32_t get__typeNameHandling_0() const { return ____typeNameHandling_0; }
inline int32_t* get_address_of__typeNameHandling_0() { return &____typeNameHandling_0; }
inline void set__typeNameHandling_0(int32_t value)
{
____typeNameHandling_0 = value;
}
inline static int32_t get_offset_of__typeNameAssemblyFormat_1() { return static_cast<int32_t>(offsetof(JsonSerializer_t1D5D385AB5641E8958FC0E6ECB498B4DC45BC4D4, ____typeNameAssemblyFormat_1)); }
inline int32_t get__typeNameAssemblyFormat_1() const { return ____typeNameAssemblyFormat_1; }
inline int32_t* get_address_of__typeNameAssemblyFormat_1() { return &____typeNameAssemblyFormat_1; }
inline void set__typeNameAssemblyFormat_1(int32_t value)
{
____typeNameAssemblyFormat_1 = value;
}
inline static int32_t get_offset_of__preserveReferencesHandling_2() { return static_cast<int32_t>(offsetof(JsonSerializer_t1D5D385AB5641E8958FC0E6ECB498B4DC45BC4D4, ____preserveReferencesHandling_2)); }
inline int32_t get__preserveReferencesHandling_2() const { return ____preserveReferencesHandling_2; }
inline int32_t* get_address_of__preserveReferencesHandling_2() { return &____preserveReferencesHandling_2; }
inline void set__preserveReferencesHandling_2(int32_t value)
{
____preserveReferencesHandling_2 = value;
}
inline static int32_t get_offset_of__referenceLoopHandling_3() { return static_cast<int32_t>(offsetof(JsonSerializer_t1D5D385AB5641E8958FC0E6ECB498B4DC45BC4D4, ____referenceLoopHandling_3)); }
inline int32_t get__referenceLoopHandling_3() const { return ____referenceLoopHandling_3; }
inline int32_t* get_address_of__referenceLoopHandling_3() { return &____referenceLoopHandling_3; }
inline void set__referenceLoopHandling_3(int32_t value)
{
____referenceLoopHandling_3 = value;
}
inline static int32_t get_offset_of__missingMemberHandling_4() { return static_cast<int32_t>(offsetof(JsonSerializer_t1D5D385AB5641E8958FC0E6ECB498B4DC45BC4D4, ____missingMemberHandling_4)); }
inline int32_t get__missingMemberHandling_4() const { return ____missingMemberHandling_4; }
inline int32_t* get_address_of__missingMemberHandling_4() { return &____missingMemberHandling_4; }
inline void set__missingMemberHandling_4(int32_t value)
{
____missingMemberHandling_4 = value;
}
inline static int32_t get_offset_of__objectCreationHandling_5() { return static_cast<int32_t>(offsetof(JsonSerializer_t1D5D385AB5641E8958FC0E6ECB498B4DC45BC4D4, ____objectCreationHandling_5)); }
inline int32_t get__objectCreationHandling_5() const { return ____objectCreationHandling_5; }
inline int32_t* get_address_of__objectCreationHandling_5() { return &____objectCreationHandling_5; }
inline void set__objectCreationHandling_5(int32_t value)
{
____objectCreationHandling_5 = value;
}
inline static int32_t get_offset_of__nullValueHandling_6() { return static_cast<int32_t>(offsetof(JsonSerializer_t1D5D385AB5641E8958FC0E6ECB498B4DC45BC4D4, ____nullValueHandling_6)); }
inline int32_t get__nullValueHandling_6() const { return ____nullValueHandling_6; }
inline int32_t* get_address_of__nullValueHandling_6() { return &____nullValueHandling_6; }
inline void set__nullValueHandling_6(int32_t value)
{
____nullValueHandling_6 = value;
}
inline static int32_t get_offset_of__defaultValueHandling_7() { return static_cast<int32_t>(offsetof(JsonSerializer_t1D5D385AB5641E8958FC0E6ECB498B4DC45BC4D4, ____defaultValueHandling_7)); }
inline int32_t get__defaultValueHandling_7() const { return ____defaultValueHandling_7; }
inline int32_t* get_address_of__defaultValueHandling_7() { return &____defaultValueHandling_7; }
inline void set__defaultValueHandling_7(int32_t value)
{
____defaultValueHandling_7 = value;
}
inline static int32_t get_offset_of__constructorHandling_8() { return static_cast<int32_t>(offsetof(JsonSerializer_t1D5D385AB5641E8958FC0E6ECB498B4DC45BC4D4, ____constructorHandling_8)); }
inline int32_t get__constructorHandling_8() const { return ____constructorHandling_8; }
inline int32_t* get_address_of__constructorHandling_8() { return &____constructorHandling_8; }
inline void set__constructorHandling_8(int32_t value)
{
____constructorHandling_8 = value;
}
inline static int32_t get_offset_of__metadataPropertyHandling_9() { return static_cast<int32_t>(offsetof(JsonSerializer_t1D5D385AB5641E8958FC0E6ECB498B4DC45BC4D4, ____metadataPropertyHandling_9)); }
inline int32_t get__metadataPropertyHandling_9() const { return ____metadataPropertyHandling_9; }
inline int32_t* get_address_of__metadataPropertyHandling_9() { return &____metadataPropertyHandling_9; }
inline void set__metadataPropertyHandling_9(int32_t value)
{
____metadataPropertyHandling_9 = value;
}
inline static int32_t get_offset_of__converters_10() { return static_cast<int32_t>(offsetof(JsonSerializer_t1D5D385AB5641E8958FC0E6ECB498B4DC45BC4D4, ____converters_10)); }
inline JsonConverterCollection_t6A37EB366CB43AF8A0215C81C1782825DE816706 * get__converters_10() const { return ____converters_10; }
inline JsonConverterCollection_t6A37EB366CB43AF8A0215C81C1782825DE816706 ** get_address_of__converters_10() { return &____converters_10; }
inline void set__converters_10(JsonConverterCollection_t6A37EB366CB43AF8A0215C81C1782825DE816706 * value)
{
____converters_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&____converters_10), (void*)value);
}
inline static int32_t get_offset_of__contractResolver_11() { return static_cast<int32_t>(offsetof(JsonSerializer_t1D5D385AB5641E8958FC0E6ECB498B4DC45BC4D4, ____contractResolver_11)); }
inline RuntimeObject* get__contractResolver_11() const { return ____contractResolver_11; }
inline RuntimeObject** get_address_of__contractResolver_11() { return &____contractResolver_11; }
inline void set__contractResolver_11(RuntimeObject* value)
{
____contractResolver_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&____contractResolver_11), (void*)value);
}
inline static int32_t get_offset_of__traceWriter_12() { return static_cast<int32_t>(offsetof(JsonSerializer_t1D5D385AB5641E8958FC0E6ECB498B4DC45BC4D4, ____traceWriter_12)); }
inline RuntimeObject* get__traceWriter_12() const { return ____traceWriter_12; }
inline RuntimeObject** get_address_of__traceWriter_12() { return &____traceWriter_12; }
inline void set__traceWriter_12(RuntimeObject* value)
{
____traceWriter_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&____traceWriter_12), (void*)value);
}
inline static int32_t get_offset_of__equalityComparer_13() { return static_cast<int32_t>(offsetof(JsonSerializer_t1D5D385AB5641E8958FC0E6ECB498B4DC45BC4D4, ____equalityComparer_13)); }
inline RuntimeObject* get__equalityComparer_13() const { return ____equalityComparer_13; }
inline RuntimeObject** get_address_of__equalityComparer_13() { return &____equalityComparer_13; }
inline void set__equalityComparer_13(RuntimeObject* value)
{
____equalityComparer_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&____equalityComparer_13), (void*)value);
}
inline static int32_t get_offset_of__binder_14() { return static_cast<int32_t>(offsetof(JsonSerializer_t1D5D385AB5641E8958FC0E6ECB498B4DC45BC4D4, ____binder_14)); }
inline SerializationBinder_tB5EBAF328371FB7CF23E37F5984D8412762CFFA4 * get__binder_14() const { return ____binder_14; }
inline SerializationBinder_tB5EBAF328371FB7CF23E37F5984D8412762CFFA4 ** get_address_of__binder_14() { return &____binder_14; }
inline void set__binder_14(SerializationBinder_tB5EBAF328371FB7CF23E37F5984D8412762CFFA4 * value)
{
____binder_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&____binder_14), (void*)value);
}
inline static int32_t get_offset_of__context_15() { return static_cast<int32_t>(offsetof(JsonSerializer_t1D5D385AB5641E8958FC0E6ECB498B4DC45BC4D4, ____context_15)); }
inline StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 get__context_15() const { return ____context_15; }
inline StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 * get_address_of__context_15() { return &____context_15; }
inline void set__context_15(StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 value)
{
____context_15 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&____context_15))->___m_additionalContext_0), (void*)NULL);
}
inline static int32_t get_offset_of__referenceResolver_16() { return static_cast<int32_t>(offsetof(JsonSerializer_t1D5D385AB5641E8958FC0E6ECB498B4DC45BC4D4, ____referenceResolver_16)); }
inline RuntimeObject* get__referenceResolver_16() const { return ____referenceResolver_16; }
inline RuntimeObject** get_address_of__referenceResolver_16() { return &____referenceResolver_16; }
inline void set__referenceResolver_16(RuntimeObject* value)
{
____referenceResolver_16 = value;
Il2CppCodeGenWriteBarrier((void**)(&____referenceResolver_16), (void*)value);
}
inline static int32_t get_offset_of__formatting_17() { return static_cast<int32_t>(offsetof(JsonSerializer_t1D5D385AB5641E8958FC0E6ECB498B4DC45BC4D4, ____formatting_17)); }
inline Nullable_1_tE7B6669302569AA700286CE2883D293CE8172C7A get__formatting_17() const { return ____formatting_17; }
inline Nullable_1_tE7B6669302569AA700286CE2883D293CE8172C7A * get_address_of__formatting_17() { return &____formatting_17; }
inline void set__formatting_17(Nullable_1_tE7B6669302569AA700286CE2883D293CE8172C7A value)
{
____formatting_17 = value;
}
inline static int32_t get_offset_of__dateFormatHandling_18() { return static_cast<int32_t>(offsetof(JsonSerializer_t1D5D385AB5641E8958FC0E6ECB498B4DC45BC4D4, ____dateFormatHandling_18)); }
inline Nullable_1_t73A49F34D2106A79207E843251A0114D691E6535 get__dateFormatHandling_18() const { return ____dateFormatHandling_18; }
inline Nullable_1_t73A49F34D2106A79207E843251A0114D691E6535 * get_address_of__dateFormatHandling_18() { return &____dateFormatHandling_18; }
inline void set__dateFormatHandling_18(Nullable_1_t73A49F34D2106A79207E843251A0114D691E6535 value)
{
____dateFormatHandling_18 = value;
}
inline static int32_t get_offset_of__dateTimeZoneHandling_19() { return static_cast<int32_t>(offsetof(JsonSerializer_t1D5D385AB5641E8958FC0E6ECB498B4DC45BC4D4, ____dateTimeZoneHandling_19)); }
inline Nullable_1_t18139C674E3B5AFCBF40873314559D51856D0E4E get__dateTimeZoneHandling_19() const { return ____dateTimeZoneHandling_19; }
inline Nullable_1_t18139C674E3B5AFCBF40873314559D51856D0E4E * get_address_of__dateTimeZoneHandling_19() { return &____dateTimeZoneHandling_19; }
inline void set__dateTimeZoneHandling_19(Nullable_1_t18139C674E3B5AFCBF40873314559D51856D0E4E value)
{
____dateTimeZoneHandling_19 = value;
}
inline static int32_t get_offset_of__dateParseHandling_20() { return static_cast<int32_t>(offsetof(JsonSerializer_t1D5D385AB5641E8958FC0E6ECB498B4DC45BC4D4, ____dateParseHandling_20)); }
inline Nullable_1_t9F3BCE47D35303B9D866BA82D305DF4DA2E6C229 get__dateParseHandling_20() const { return ____dateParseHandling_20; }
inline Nullable_1_t9F3BCE47D35303B9D866BA82D305DF4DA2E6C229 * get_address_of__dateParseHandling_20() { return &____dateParseHandling_20; }
inline void set__dateParseHandling_20(Nullable_1_t9F3BCE47D35303B9D866BA82D305DF4DA2E6C229 value)
{
____dateParseHandling_20 = value;
}
inline static int32_t get_offset_of__floatFormatHandling_21() { return static_cast<int32_t>(offsetof(JsonSerializer_t1D5D385AB5641E8958FC0E6ECB498B4DC45BC4D4, ____floatFormatHandling_21)); }
inline Nullable_1_t8ECA5E7C2A987CD73EBA2940127D43060369D94A get__floatFormatHandling_21() const { return ____floatFormatHandling_21; }
inline Nullable_1_t8ECA5E7C2A987CD73EBA2940127D43060369D94A * get_address_of__floatFormatHandling_21() { return &____floatFormatHandling_21; }
inline void set__floatFormatHandling_21(Nullable_1_t8ECA5E7C2A987CD73EBA2940127D43060369D94A value)
{
____floatFormatHandling_21 = value;
}
inline static int32_t get_offset_of__floatParseHandling_22() { return static_cast<int32_t>(offsetof(JsonSerializer_t1D5D385AB5641E8958FC0E6ECB498B4DC45BC4D4, ____floatParseHandling_22)); }
inline Nullable_1_t4679CD5E6858682FA8A2CCD73B2F363C1C8431E9 get__floatParseHandling_22() const { return ____floatParseHandling_22; }
inline Nullable_1_t4679CD5E6858682FA8A2CCD73B2F363C1C8431E9 * get_address_of__floatParseHandling_22() { return &____floatParseHandling_22; }
inline void set__floatParseHandling_22(Nullable_1_t4679CD5E6858682FA8A2CCD73B2F363C1C8431E9 value)
{
____floatParseHandling_22 = value;
}
inline static int32_t get_offset_of__stringEscapeHandling_23() { return static_cast<int32_t>(offsetof(JsonSerializer_t1D5D385AB5641E8958FC0E6ECB498B4DC45BC4D4, ____stringEscapeHandling_23)); }
inline Nullable_1_tCC61AA36549A190C69D05B18E796D97D76E84458 get__stringEscapeHandling_23() const { return ____stringEscapeHandling_23; }
inline Nullable_1_tCC61AA36549A190C69D05B18E796D97D76E84458 * get_address_of__stringEscapeHandling_23() { return &____stringEscapeHandling_23; }
inline void set__stringEscapeHandling_23(Nullable_1_tCC61AA36549A190C69D05B18E796D97D76E84458 value)
{
____stringEscapeHandling_23 = value;
}
inline static int32_t get_offset_of__culture_24() { return static_cast<int32_t>(offsetof(JsonSerializer_t1D5D385AB5641E8958FC0E6ECB498B4DC45BC4D4, ____culture_24)); }
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get__culture_24() const { return ____culture_24; }
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of__culture_24() { return &____culture_24; }
inline void set__culture_24(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value)
{
____culture_24 = value;
Il2CppCodeGenWriteBarrier((void**)(&____culture_24), (void*)value);
}
inline static int32_t get_offset_of__maxDepth_25() { return static_cast<int32_t>(offsetof(JsonSerializer_t1D5D385AB5641E8958FC0E6ECB498B4DC45BC4D4, ____maxDepth_25)); }
inline Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB get__maxDepth_25() const { return ____maxDepth_25; }
inline Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB * get_address_of__maxDepth_25() { return &____maxDepth_25; }
inline void set__maxDepth_25(Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB value)
{
____maxDepth_25 = value;
}
inline static int32_t get_offset_of__maxDepthSet_26() { return static_cast<int32_t>(offsetof(JsonSerializer_t1D5D385AB5641E8958FC0E6ECB498B4DC45BC4D4, ____maxDepthSet_26)); }
inline bool get__maxDepthSet_26() const { return ____maxDepthSet_26; }
inline bool* get_address_of__maxDepthSet_26() { return &____maxDepthSet_26; }
inline void set__maxDepthSet_26(bool value)
{
____maxDepthSet_26 = value;
}
inline static int32_t get_offset_of__checkAdditionalContent_27() { return static_cast<int32_t>(offsetof(JsonSerializer_t1D5D385AB5641E8958FC0E6ECB498B4DC45BC4D4, ____checkAdditionalContent_27)); }
inline Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 get__checkAdditionalContent_27() const { return ____checkAdditionalContent_27; }
inline Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 * get_address_of__checkAdditionalContent_27() { return &____checkAdditionalContent_27; }
inline void set__checkAdditionalContent_27(Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 value)
{
____checkAdditionalContent_27 = value;
}
inline static int32_t get_offset_of__dateFormatString_28() { return static_cast<int32_t>(offsetof(JsonSerializer_t1D5D385AB5641E8958FC0E6ECB498B4DC45BC4D4, ____dateFormatString_28)); }
inline String_t* get__dateFormatString_28() const { return ____dateFormatString_28; }
inline String_t** get_address_of__dateFormatString_28() { return &____dateFormatString_28; }
inline void set__dateFormatString_28(String_t* value)
{
____dateFormatString_28 = value;
Il2CppCodeGenWriteBarrier((void**)(&____dateFormatString_28), (void*)value);
}
inline static int32_t get_offset_of__dateFormatStringSet_29() { return static_cast<int32_t>(offsetof(JsonSerializer_t1D5D385AB5641E8958FC0E6ECB498B4DC45BC4D4, ____dateFormatStringSet_29)); }
inline bool get__dateFormatStringSet_29() const { return ____dateFormatStringSet_29; }
inline bool* get_address_of__dateFormatStringSet_29() { return &____dateFormatStringSet_29; }
inline void set__dateFormatStringSet_29(bool value)
{
____dateFormatStringSet_29 = value;
}
inline static int32_t get_offset_of_Error_30() { return static_cast<int32_t>(offsetof(JsonSerializer_t1D5D385AB5641E8958FC0E6ECB498B4DC45BC4D4, ___Error_30)); }
inline EventHandler_1_t9FDC532948E51E57762946306812505DCBFBB21E * get_Error_30() const { return ___Error_30; }
inline EventHandler_1_t9FDC532948E51E57762946306812505DCBFBB21E ** get_address_of_Error_30() { return &___Error_30; }
inline void set_Error_30(EventHandler_1_t9FDC532948E51E57762946306812505DCBFBB21E * value)
{
___Error_30 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Error_30), (void*)value);
}
};
// Valve.Newtonsoft.Json.JsonWriter
struct JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E : public RuntimeObject
{
public:
// System.Collections.Generic.List`1<Valve.Newtonsoft.Json.JsonPosition> Valve.Newtonsoft.Json.JsonWriter::_stack
List_1_tB300EBCDF85B082F12B483D22C5C8070412F6C76 * ____stack_2;
// Valve.Newtonsoft.Json.JsonPosition Valve.Newtonsoft.Json.JsonWriter::_currentPosition
JsonPosition_t6ED67A82A34F185D91B222CCC7CBF5E83CF9F422 ____currentPosition_3;
// Valve.Newtonsoft.Json.JsonWriter_State Valve.Newtonsoft.Json.JsonWriter::_currentState
int32_t ____currentState_4;
// Valve.Newtonsoft.Json.Formatting Valve.Newtonsoft.Json.JsonWriter::_formatting
int32_t ____formatting_5;
// System.Boolean Valve.Newtonsoft.Json.JsonWriter::<CloseOutput>k__BackingField
bool ___U3CCloseOutputU3Ek__BackingField_6;
// Valve.Newtonsoft.Json.DateFormatHandling Valve.Newtonsoft.Json.JsonWriter::_dateFormatHandling
int32_t ____dateFormatHandling_7;
// Valve.Newtonsoft.Json.DateTimeZoneHandling Valve.Newtonsoft.Json.JsonWriter::_dateTimeZoneHandling
int32_t ____dateTimeZoneHandling_8;
// Valve.Newtonsoft.Json.StringEscapeHandling Valve.Newtonsoft.Json.JsonWriter::_stringEscapeHandling
int32_t ____stringEscapeHandling_9;
// Valve.Newtonsoft.Json.FloatFormatHandling Valve.Newtonsoft.Json.JsonWriter::_floatFormatHandling
int32_t ____floatFormatHandling_10;
// System.String Valve.Newtonsoft.Json.JsonWriter::_dateFormatString
String_t* ____dateFormatString_11;
// System.Globalization.CultureInfo Valve.Newtonsoft.Json.JsonWriter::_culture
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ____culture_12;
public:
inline static int32_t get_offset_of__stack_2() { return static_cast<int32_t>(offsetof(JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E, ____stack_2)); }
inline List_1_tB300EBCDF85B082F12B483D22C5C8070412F6C76 * get__stack_2() const { return ____stack_2; }
inline List_1_tB300EBCDF85B082F12B483D22C5C8070412F6C76 ** get_address_of__stack_2() { return &____stack_2; }
inline void set__stack_2(List_1_tB300EBCDF85B082F12B483D22C5C8070412F6C76 * value)
{
____stack_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____stack_2), (void*)value);
}
inline static int32_t get_offset_of__currentPosition_3() { return static_cast<int32_t>(offsetof(JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E, ____currentPosition_3)); }
inline JsonPosition_t6ED67A82A34F185D91B222CCC7CBF5E83CF9F422 get__currentPosition_3() const { return ____currentPosition_3; }
inline JsonPosition_t6ED67A82A34F185D91B222CCC7CBF5E83CF9F422 * get_address_of__currentPosition_3() { return &____currentPosition_3; }
inline void set__currentPosition_3(JsonPosition_t6ED67A82A34F185D91B222CCC7CBF5E83CF9F422 value)
{
____currentPosition_3 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&____currentPosition_3))->___PropertyName_3), (void*)NULL);
}
inline static int32_t get_offset_of__currentState_4() { return static_cast<int32_t>(offsetof(JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E, ____currentState_4)); }
inline int32_t get__currentState_4() const { return ____currentState_4; }
inline int32_t* get_address_of__currentState_4() { return &____currentState_4; }
inline void set__currentState_4(int32_t value)
{
____currentState_4 = value;
}
inline static int32_t get_offset_of__formatting_5() { return static_cast<int32_t>(offsetof(JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E, ____formatting_5)); }
inline int32_t get__formatting_5() const { return ____formatting_5; }
inline int32_t* get_address_of__formatting_5() { return &____formatting_5; }
inline void set__formatting_5(int32_t value)
{
____formatting_5 = value;
}
inline static int32_t get_offset_of_U3CCloseOutputU3Ek__BackingField_6() { return static_cast<int32_t>(offsetof(JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E, ___U3CCloseOutputU3Ek__BackingField_6)); }
inline bool get_U3CCloseOutputU3Ek__BackingField_6() const { return ___U3CCloseOutputU3Ek__BackingField_6; }
inline bool* get_address_of_U3CCloseOutputU3Ek__BackingField_6() { return &___U3CCloseOutputU3Ek__BackingField_6; }
inline void set_U3CCloseOutputU3Ek__BackingField_6(bool value)
{
___U3CCloseOutputU3Ek__BackingField_6 = value;
}
inline static int32_t get_offset_of__dateFormatHandling_7() { return static_cast<int32_t>(offsetof(JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E, ____dateFormatHandling_7)); }
inline int32_t get__dateFormatHandling_7() const { return ____dateFormatHandling_7; }
inline int32_t* get_address_of__dateFormatHandling_7() { return &____dateFormatHandling_7; }
inline void set__dateFormatHandling_7(int32_t value)
{
____dateFormatHandling_7 = value;
}
inline static int32_t get_offset_of__dateTimeZoneHandling_8() { return static_cast<int32_t>(offsetof(JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E, ____dateTimeZoneHandling_8)); }
inline int32_t get__dateTimeZoneHandling_8() const { return ____dateTimeZoneHandling_8; }
inline int32_t* get_address_of__dateTimeZoneHandling_8() { return &____dateTimeZoneHandling_8; }
inline void set__dateTimeZoneHandling_8(int32_t value)
{
____dateTimeZoneHandling_8 = value;
}
inline static int32_t get_offset_of__stringEscapeHandling_9() { return static_cast<int32_t>(offsetof(JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E, ____stringEscapeHandling_9)); }
inline int32_t get__stringEscapeHandling_9() const { return ____stringEscapeHandling_9; }
inline int32_t* get_address_of__stringEscapeHandling_9() { return &____stringEscapeHandling_9; }
inline void set__stringEscapeHandling_9(int32_t value)
{
____stringEscapeHandling_9 = value;
}
inline static int32_t get_offset_of__floatFormatHandling_10() { return static_cast<int32_t>(offsetof(JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E, ____floatFormatHandling_10)); }
inline int32_t get__floatFormatHandling_10() const { return ____floatFormatHandling_10; }
inline int32_t* get_address_of__floatFormatHandling_10() { return &____floatFormatHandling_10; }
inline void set__floatFormatHandling_10(int32_t value)
{
____floatFormatHandling_10 = value;
}
inline static int32_t get_offset_of__dateFormatString_11() { return static_cast<int32_t>(offsetof(JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E, ____dateFormatString_11)); }
inline String_t* get__dateFormatString_11() const { return ____dateFormatString_11; }
inline String_t** get_address_of__dateFormatString_11() { return &____dateFormatString_11; }
inline void set__dateFormatString_11(String_t* value)
{
____dateFormatString_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&____dateFormatString_11), (void*)value);
}
inline static int32_t get_offset_of__culture_12() { return static_cast<int32_t>(offsetof(JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E, ____culture_12)); }
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get__culture_12() const { return ____culture_12; }
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of__culture_12() { return &____culture_12; }
inline void set__culture_12(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value)
{
____culture_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&____culture_12), (void*)value);
}
};
struct JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E_StaticFields
{
public:
// Valve.Newtonsoft.Json.JsonWriter_State[][] Valve.Newtonsoft.Json.JsonWriter::StateArray
StateU5BU5DU5BU5D_t52D9F9EA6D3AB3D8FB1F5DD83A2D197A7E9D98DC* ___StateArray_0;
// Valve.Newtonsoft.Json.JsonWriter_State[][] Valve.Newtonsoft.Json.JsonWriter::StateArrayTempate
StateU5BU5DU5BU5D_t52D9F9EA6D3AB3D8FB1F5DD83A2D197A7E9D98DC* ___StateArrayTempate_1;
public:
inline static int32_t get_offset_of_StateArray_0() { return static_cast<int32_t>(offsetof(JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E_StaticFields, ___StateArray_0)); }
inline StateU5BU5DU5BU5D_t52D9F9EA6D3AB3D8FB1F5DD83A2D197A7E9D98DC* get_StateArray_0() const { return ___StateArray_0; }
inline StateU5BU5DU5BU5D_t52D9F9EA6D3AB3D8FB1F5DD83A2D197A7E9D98DC** get_address_of_StateArray_0() { return &___StateArray_0; }
inline void set_StateArray_0(StateU5BU5DU5BU5D_t52D9F9EA6D3AB3D8FB1F5DD83A2D197A7E9D98DC* value)
{
___StateArray_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___StateArray_0), (void*)value);
}
inline static int32_t get_offset_of_StateArrayTempate_1() { return static_cast<int32_t>(offsetof(JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E_StaticFields, ___StateArrayTempate_1)); }
inline StateU5BU5DU5BU5D_t52D9F9EA6D3AB3D8FB1F5DD83A2D197A7E9D98DC* get_StateArrayTempate_1() const { return ___StateArrayTempate_1; }
inline StateU5BU5DU5BU5D_t52D9F9EA6D3AB3D8FB1F5DD83A2D197A7E9D98DC** get_address_of_StateArrayTempate_1() { return &___StateArrayTempate_1; }
inline void set_StateArrayTempate_1(StateU5BU5DU5BU5D_t52D9F9EA6D3AB3D8FB1F5DD83A2D197A7E9D98DC* value)
{
___StateArrayTempate_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___StateArrayTempate_1), (void*)value);
}
};
// Valve.Newtonsoft.Json.Linq.JRaw
struct JRaw_tEA065B3ED6F70E2FA12CA996B102A3FD16330C86 : public JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3
{
public:
public:
};
// Valve.Newtonsoft.Json.Serialization.ExtensionDataGetter
struct ExtensionDataGetter_t6CC1D4868317A6C03ADA77795B2563E77D993860 : public MulticastDelegate_t
{
public:
public:
};
// Valve.Newtonsoft.Json.Serialization.ExtensionDataSetter
struct ExtensionDataSetter_t887F53572558DF1949C2035B2EC92D39343FE586 : public MulticastDelegate_t
{
public:
public:
};
// Valve.Newtonsoft.Json.Serialization.JsonContainerContract
struct JsonContainerContract_tD54146B123969809E06196AE0C5BB3D6E9A679B9 : public JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141
{
public:
// Valve.Newtonsoft.Json.Serialization.JsonContract Valve.Newtonsoft.Json.Serialization.JsonContainerContract::_itemContract
JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * ____itemContract_21;
// Valve.Newtonsoft.Json.Serialization.JsonContract Valve.Newtonsoft.Json.Serialization.JsonContainerContract::_finalItemContract
JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * ____finalItemContract_22;
// Valve.Newtonsoft.Json.JsonConverter Valve.Newtonsoft.Json.Serialization.JsonContainerContract::<ItemConverter>k__BackingField
JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * ___U3CItemConverterU3Ek__BackingField_23;
// System.Nullable`1<System.Boolean> Valve.Newtonsoft.Json.Serialization.JsonContainerContract::<ItemIsReference>k__BackingField
Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 ___U3CItemIsReferenceU3Ek__BackingField_24;
// System.Nullable`1<Valve.Newtonsoft.Json.ReferenceLoopHandling> Valve.Newtonsoft.Json.Serialization.JsonContainerContract::<ItemReferenceLoopHandling>k__BackingField
Nullable_1_tD485E28BBBAFB03563161D92A5E03A20B8691DF7 ___U3CItemReferenceLoopHandlingU3Ek__BackingField_25;
// System.Nullable`1<Valve.Newtonsoft.Json.TypeNameHandling> Valve.Newtonsoft.Json.Serialization.JsonContainerContract::<ItemTypeNameHandling>k__BackingField
Nullable_1_t03BF155C19CE72C93934F0A7CDDA0C202A278E11 ___U3CItemTypeNameHandlingU3Ek__BackingField_26;
public:
inline static int32_t get_offset_of__itemContract_21() { return static_cast<int32_t>(offsetof(JsonContainerContract_tD54146B123969809E06196AE0C5BB3D6E9A679B9, ____itemContract_21)); }
inline JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * get__itemContract_21() const { return ____itemContract_21; }
inline JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 ** get_address_of__itemContract_21() { return &____itemContract_21; }
inline void set__itemContract_21(JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * value)
{
____itemContract_21 = value;
Il2CppCodeGenWriteBarrier((void**)(&____itemContract_21), (void*)value);
}
inline static int32_t get_offset_of__finalItemContract_22() { return static_cast<int32_t>(offsetof(JsonContainerContract_tD54146B123969809E06196AE0C5BB3D6E9A679B9, ____finalItemContract_22)); }
inline JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * get__finalItemContract_22() const { return ____finalItemContract_22; }
inline JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 ** get_address_of__finalItemContract_22() { return &____finalItemContract_22; }
inline void set__finalItemContract_22(JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * value)
{
____finalItemContract_22 = value;
Il2CppCodeGenWriteBarrier((void**)(&____finalItemContract_22), (void*)value);
}
inline static int32_t get_offset_of_U3CItemConverterU3Ek__BackingField_23() { return static_cast<int32_t>(offsetof(JsonContainerContract_tD54146B123969809E06196AE0C5BB3D6E9A679B9, ___U3CItemConverterU3Ek__BackingField_23)); }
inline JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * get_U3CItemConverterU3Ek__BackingField_23() const { return ___U3CItemConverterU3Ek__BackingField_23; }
inline JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 ** get_address_of_U3CItemConverterU3Ek__BackingField_23() { return &___U3CItemConverterU3Ek__BackingField_23; }
inline void set_U3CItemConverterU3Ek__BackingField_23(JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * value)
{
___U3CItemConverterU3Ek__BackingField_23 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CItemConverterU3Ek__BackingField_23), (void*)value);
}
inline static int32_t get_offset_of_U3CItemIsReferenceU3Ek__BackingField_24() { return static_cast<int32_t>(offsetof(JsonContainerContract_tD54146B123969809E06196AE0C5BB3D6E9A679B9, ___U3CItemIsReferenceU3Ek__BackingField_24)); }
inline Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 get_U3CItemIsReferenceU3Ek__BackingField_24() const { return ___U3CItemIsReferenceU3Ek__BackingField_24; }
inline Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 * get_address_of_U3CItemIsReferenceU3Ek__BackingField_24() { return &___U3CItemIsReferenceU3Ek__BackingField_24; }
inline void set_U3CItemIsReferenceU3Ek__BackingField_24(Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 value)
{
___U3CItemIsReferenceU3Ek__BackingField_24 = value;
}
inline static int32_t get_offset_of_U3CItemReferenceLoopHandlingU3Ek__BackingField_25() { return static_cast<int32_t>(offsetof(JsonContainerContract_tD54146B123969809E06196AE0C5BB3D6E9A679B9, ___U3CItemReferenceLoopHandlingU3Ek__BackingField_25)); }
inline Nullable_1_tD485E28BBBAFB03563161D92A5E03A20B8691DF7 get_U3CItemReferenceLoopHandlingU3Ek__BackingField_25() const { return ___U3CItemReferenceLoopHandlingU3Ek__BackingField_25; }
inline Nullable_1_tD485E28BBBAFB03563161D92A5E03A20B8691DF7 * get_address_of_U3CItemReferenceLoopHandlingU3Ek__BackingField_25() { return &___U3CItemReferenceLoopHandlingU3Ek__BackingField_25; }
inline void set_U3CItemReferenceLoopHandlingU3Ek__BackingField_25(Nullable_1_tD485E28BBBAFB03563161D92A5E03A20B8691DF7 value)
{
___U3CItemReferenceLoopHandlingU3Ek__BackingField_25 = value;
}
inline static int32_t get_offset_of_U3CItemTypeNameHandlingU3Ek__BackingField_26() { return static_cast<int32_t>(offsetof(JsonContainerContract_tD54146B123969809E06196AE0C5BB3D6E9A679B9, ___U3CItemTypeNameHandlingU3Ek__BackingField_26)); }
inline Nullable_1_t03BF155C19CE72C93934F0A7CDDA0C202A278E11 get_U3CItemTypeNameHandlingU3Ek__BackingField_26() const { return ___U3CItemTypeNameHandlingU3Ek__BackingField_26; }
inline Nullable_1_t03BF155C19CE72C93934F0A7CDDA0C202A278E11 * get_address_of_U3CItemTypeNameHandlingU3Ek__BackingField_26() { return &___U3CItemTypeNameHandlingU3Ek__BackingField_26; }
inline void set_U3CItemTypeNameHandlingU3Ek__BackingField_26(Nullable_1_t03BF155C19CE72C93934F0A7CDDA0C202A278E11 value)
{
___U3CItemTypeNameHandlingU3Ek__BackingField_26 = value;
}
};
// Valve.Newtonsoft.Json.Serialization.JsonLinqContract
struct JsonLinqContract_t55453AE956FB1B39CD404E4ED22E563B434C1BED : public JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141
{
public:
public:
};
// Valve.Newtonsoft.Json.Serialization.JsonPrimitiveContract
struct JsonPrimitiveContract_t13E2CBC31714CB100233EB2014184B40973C2C84 : public JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141
{
public:
// Valve.Newtonsoft.Json.Utilities.PrimitiveTypeCode Valve.Newtonsoft.Json.Serialization.JsonPrimitiveContract::<TypeCode>k__BackingField
int32_t ___U3CTypeCodeU3Ek__BackingField_21;
public:
inline static int32_t get_offset_of_U3CTypeCodeU3Ek__BackingField_21() { return static_cast<int32_t>(offsetof(JsonPrimitiveContract_t13E2CBC31714CB100233EB2014184B40973C2C84, ___U3CTypeCodeU3Ek__BackingField_21)); }
inline int32_t get_U3CTypeCodeU3Ek__BackingField_21() const { return ___U3CTypeCodeU3Ek__BackingField_21; }
inline int32_t* get_address_of_U3CTypeCodeU3Ek__BackingField_21() { return &___U3CTypeCodeU3Ek__BackingField_21; }
inline void set_U3CTypeCodeU3Ek__BackingField_21(int32_t value)
{
___U3CTypeCodeU3Ek__BackingField_21 = value;
}
};
struct JsonPrimitiveContract_t13E2CBC31714CB100233EB2014184B40973C2C84_StaticFields
{
public:
// System.Collections.Generic.Dictionary`2<System.Type,Valve.Newtonsoft.Json.ReadType> Valve.Newtonsoft.Json.Serialization.JsonPrimitiveContract::ReadTypeMap
Dictionary_2_tA954C383835C628CE0F7069B81D14ACEE9281695 * ___ReadTypeMap_22;
public:
inline static int32_t get_offset_of_ReadTypeMap_22() { return static_cast<int32_t>(offsetof(JsonPrimitiveContract_t13E2CBC31714CB100233EB2014184B40973C2C84_StaticFields, ___ReadTypeMap_22)); }
inline Dictionary_2_tA954C383835C628CE0F7069B81D14ACEE9281695 * get_ReadTypeMap_22() const { return ___ReadTypeMap_22; }
inline Dictionary_2_tA954C383835C628CE0F7069B81D14ACEE9281695 ** get_address_of_ReadTypeMap_22() { return &___ReadTypeMap_22; }
inline void set_ReadTypeMap_22(Dictionary_2_tA954C383835C628CE0F7069B81D14ACEE9281695 * value)
{
___ReadTypeMap_22 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ReadTypeMap_22), (void*)value);
}
};
// Valve.Newtonsoft.Json.Serialization.JsonProperty
struct JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB : public RuntimeObject
{
public:
// System.Nullable`1<Valve.Newtonsoft.Json.Required> Valve.Newtonsoft.Json.Serialization.JsonProperty::_required
Nullable_1_t240C94038A74304286AD4C81EAEFD24E6E435A06 ____required_0;
// System.Boolean Valve.Newtonsoft.Json.Serialization.JsonProperty::_hasExplicitDefaultValue
bool ____hasExplicitDefaultValue_1;
// System.Object Valve.Newtonsoft.Json.Serialization.JsonProperty::_defaultValue
RuntimeObject * ____defaultValue_2;
// System.Boolean Valve.Newtonsoft.Json.Serialization.JsonProperty::_hasGeneratedDefaultValue
bool ____hasGeneratedDefaultValue_3;
// System.String Valve.Newtonsoft.Json.Serialization.JsonProperty::_propertyName
String_t* ____propertyName_4;
// System.Boolean Valve.Newtonsoft.Json.Serialization.JsonProperty::_skipPropertyNameEscape
bool ____skipPropertyNameEscape_5;
// System.Type Valve.Newtonsoft.Json.Serialization.JsonProperty::_propertyType
Type_t * ____propertyType_6;
// Valve.Newtonsoft.Json.Serialization.JsonContract Valve.Newtonsoft.Json.Serialization.JsonProperty::<PropertyContract>k__BackingField
JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * ___U3CPropertyContractU3Ek__BackingField_7;
// System.Type Valve.Newtonsoft.Json.Serialization.JsonProperty::<DeclaringType>k__BackingField
Type_t * ___U3CDeclaringTypeU3Ek__BackingField_8;
// System.Nullable`1<System.Int32> Valve.Newtonsoft.Json.Serialization.JsonProperty::<Order>k__BackingField
Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB ___U3COrderU3Ek__BackingField_9;
// System.String Valve.Newtonsoft.Json.Serialization.JsonProperty::<UnderlyingName>k__BackingField
String_t* ___U3CUnderlyingNameU3Ek__BackingField_10;
// Valve.Newtonsoft.Json.Serialization.IValueProvider Valve.Newtonsoft.Json.Serialization.JsonProperty::<ValueProvider>k__BackingField
RuntimeObject* ___U3CValueProviderU3Ek__BackingField_11;
// Valve.Newtonsoft.Json.Serialization.IAttributeProvider Valve.Newtonsoft.Json.Serialization.JsonProperty::<AttributeProvider>k__BackingField
RuntimeObject* ___U3CAttributeProviderU3Ek__BackingField_12;
// Valve.Newtonsoft.Json.JsonConverter Valve.Newtonsoft.Json.Serialization.JsonProperty::<Converter>k__BackingField
JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * ___U3CConverterU3Ek__BackingField_13;
// Valve.Newtonsoft.Json.JsonConverter Valve.Newtonsoft.Json.Serialization.JsonProperty::<MemberConverter>k__BackingField
JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * ___U3CMemberConverterU3Ek__BackingField_14;
// System.Boolean Valve.Newtonsoft.Json.Serialization.JsonProperty::<Ignored>k__BackingField
bool ___U3CIgnoredU3Ek__BackingField_15;
// System.Boolean Valve.Newtonsoft.Json.Serialization.JsonProperty::<Readable>k__BackingField
bool ___U3CReadableU3Ek__BackingField_16;
// System.Boolean Valve.Newtonsoft.Json.Serialization.JsonProperty::<Writable>k__BackingField
bool ___U3CWritableU3Ek__BackingField_17;
// System.Boolean Valve.Newtonsoft.Json.Serialization.JsonProperty::<HasMemberAttribute>k__BackingField
bool ___U3CHasMemberAttributeU3Ek__BackingField_18;
// System.Nullable`1<System.Boolean> Valve.Newtonsoft.Json.Serialization.JsonProperty::<IsReference>k__BackingField
Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 ___U3CIsReferenceU3Ek__BackingField_19;
// System.Nullable`1<Valve.Newtonsoft.Json.NullValueHandling> Valve.Newtonsoft.Json.Serialization.JsonProperty::<NullValueHandling>k__BackingField
Nullable_1_t1E3E10A718340D5055F8DB98AE1C03F47CDC19FC ___U3CNullValueHandlingU3Ek__BackingField_20;
// System.Nullable`1<Valve.Newtonsoft.Json.DefaultValueHandling> Valve.Newtonsoft.Json.Serialization.JsonProperty::<DefaultValueHandling>k__BackingField
Nullable_1_tE7CF0A7BC2816D39007C0EEB41F32FA7DB86B394 ___U3CDefaultValueHandlingU3Ek__BackingField_21;
// System.Nullable`1<Valve.Newtonsoft.Json.ReferenceLoopHandling> Valve.Newtonsoft.Json.Serialization.JsonProperty::<ReferenceLoopHandling>k__BackingField
Nullable_1_tD485E28BBBAFB03563161D92A5E03A20B8691DF7 ___U3CReferenceLoopHandlingU3Ek__BackingField_22;
// System.Nullable`1<Valve.Newtonsoft.Json.ObjectCreationHandling> Valve.Newtonsoft.Json.Serialization.JsonProperty::<ObjectCreationHandling>k__BackingField
Nullable_1_t6F16A066F0D8E92AEDC11791932E5B9D887F402E ___U3CObjectCreationHandlingU3Ek__BackingField_23;
// System.Nullable`1<Valve.Newtonsoft.Json.TypeNameHandling> Valve.Newtonsoft.Json.Serialization.JsonProperty::<TypeNameHandling>k__BackingField
Nullable_1_t03BF155C19CE72C93934F0A7CDDA0C202A278E11 ___U3CTypeNameHandlingU3Ek__BackingField_24;
// System.Predicate`1<System.Object> Valve.Newtonsoft.Json.Serialization.JsonProperty::<ShouldSerialize>k__BackingField
Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 * ___U3CShouldSerializeU3Ek__BackingField_25;
// System.Predicate`1<System.Object> Valve.Newtonsoft.Json.Serialization.JsonProperty::<ShouldDeserialize>k__BackingField
Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 * ___U3CShouldDeserializeU3Ek__BackingField_26;
// System.Predicate`1<System.Object> Valve.Newtonsoft.Json.Serialization.JsonProperty::<GetIsSpecified>k__BackingField
Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 * ___U3CGetIsSpecifiedU3Ek__BackingField_27;
// System.Action`2<System.Object,System.Object> Valve.Newtonsoft.Json.Serialization.JsonProperty::<SetIsSpecified>k__BackingField
Action_2_t0DB6FD6F515527EAB552B690A291778C6F00D48C * ___U3CSetIsSpecifiedU3Ek__BackingField_28;
// Valve.Newtonsoft.Json.JsonConverter Valve.Newtonsoft.Json.Serialization.JsonProperty::<ItemConverter>k__BackingField
JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * ___U3CItemConverterU3Ek__BackingField_29;
// System.Nullable`1<System.Boolean> Valve.Newtonsoft.Json.Serialization.JsonProperty::<ItemIsReference>k__BackingField
Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 ___U3CItemIsReferenceU3Ek__BackingField_30;
// System.Nullable`1<Valve.Newtonsoft.Json.TypeNameHandling> Valve.Newtonsoft.Json.Serialization.JsonProperty::<ItemTypeNameHandling>k__BackingField
Nullable_1_t03BF155C19CE72C93934F0A7CDDA0C202A278E11 ___U3CItemTypeNameHandlingU3Ek__BackingField_31;
// System.Nullable`1<Valve.Newtonsoft.Json.ReferenceLoopHandling> Valve.Newtonsoft.Json.Serialization.JsonProperty::<ItemReferenceLoopHandling>k__BackingField
Nullable_1_tD485E28BBBAFB03563161D92A5E03A20B8691DF7 ___U3CItemReferenceLoopHandlingU3Ek__BackingField_32;
public:
inline static int32_t get_offset_of__required_0() { return static_cast<int32_t>(offsetof(JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB, ____required_0)); }
inline Nullable_1_t240C94038A74304286AD4C81EAEFD24E6E435A06 get__required_0() const { return ____required_0; }
inline Nullable_1_t240C94038A74304286AD4C81EAEFD24E6E435A06 * get_address_of__required_0() { return &____required_0; }
inline void set__required_0(Nullable_1_t240C94038A74304286AD4C81EAEFD24E6E435A06 value)
{
____required_0 = value;
}
inline static int32_t get_offset_of__hasExplicitDefaultValue_1() { return static_cast<int32_t>(offsetof(JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB, ____hasExplicitDefaultValue_1)); }
inline bool get__hasExplicitDefaultValue_1() const { return ____hasExplicitDefaultValue_1; }
inline bool* get_address_of__hasExplicitDefaultValue_1() { return &____hasExplicitDefaultValue_1; }
inline void set__hasExplicitDefaultValue_1(bool value)
{
____hasExplicitDefaultValue_1 = value;
}
inline static int32_t get_offset_of__defaultValue_2() { return static_cast<int32_t>(offsetof(JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB, ____defaultValue_2)); }
inline RuntimeObject * get__defaultValue_2() const { return ____defaultValue_2; }
inline RuntimeObject ** get_address_of__defaultValue_2() { return &____defaultValue_2; }
inline void set__defaultValue_2(RuntimeObject * value)
{
____defaultValue_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____defaultValue_2), (void*)value);
}
inline static int32_t get_offset_of__hasGeneratedDefaultValue_3() { return static_cast<int32_t>(offsetof(JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB, ____hasGeneratedDefaultValue_3)); }
inline bool get__hasGeneratedDefaultValue_3() const { return ____hasGeneratedDefaultValue_3; }
inline bool* get_address_of__hasGeneratedDefaultValue_3() { return &____hasGeneratedDefaultValue_3; }
inline void set__hasGeneratedDefaultValue_3(bool value)
{
____hasGeneratedDefaultValue_3 = value;
}
inline static int32_t get_offset_of__propertyName_4() { return static_cast<int32_t>(offsetof(JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB, ____propertyName_4)); }
inline String_t* get__propertyName_4() const { return ____propertyName_4; }
inline String_t** get_address_of__propertyName_4() { return &____propertyName_4; }
inline void set__propertyName_4(String_t* value)
{
____propertyName_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____propertyName_4), (void*)value);
}
inline static int32_t get_offset_of__skipPropertyNameEscape_5() { return static_cast<int32_t>(offsetof(JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB, ____skipPropertyNameEscape_5)); }
inline bool get__skipPropertyNameEscape_5() const { return ____skipPropertyNameEscape_5; }
inline bool* get_address_of__skipPropertyNameEscape_5() { return &____skipPropertyNameEscape_5; }
inline void set__skipPropertyNameEscape_5(bool value)
{
____skipPropertyNameEscape_5 = value;
}
inline static int32_t get_offset_of__propertyType_6() { return static_cast<int32_t>(offsetof(JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB, ____propertyType_6)); }
inline Type_t * get__propertyType_6() const { return ____propertyType_6; }
inline Type_t ** get_address_of__propertyType_6() { return &____propertyType_6; }
inline void set__propertyType_6(Type_t * value)
{
____propertyType_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____propertyType_6), (void*)value);
}
inline static int32_t get_offset_of_U3CPropertyContractU3Ek__BackingField_7() { return static_cast<int32_t>(offsetof(JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB, ___U3CPropertyContractU3Ek__BackingField_7)); }
inline JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * get_U3CPropertyContractU3Ek__BackingField_7() const { return ___U3CPropertyContractU3Ek__BackingField_7; }
inline JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 ** get_address_of_U3CPropertyContractU3Ek__BackingField_7() { return &___U3CPropertyContractU3Ek__BackingField_7; }
inline void set_U3CPropertyContractU3Ek__BackingField_7(JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * value)
{
___U3CPropertyContractU3Ek__BackingField_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CPropertyContractU3Ek__BackingField_7), (void*)value);
}
inline static int32_t get_offset_of_U3CDeclaringTypeU3Ek__BackingField_8() { return static_cast<int32_t>(offsetof(JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB, ___U3CDeclaringTypeU3Ek__BackingField_8)); }
inline Type_t * get_U3CDeclaringTypeU3Ek__BackingField_8() const { return ___U3CDeclaringTypeU3Ek__BackingField_8; }
inline Type_t ** get_address_of_U3CDeclaringTypeU3Ek__BackingField_8() { return &___U3CDeclaringTypeU3Ek__BackingField_8; }
inline void set_U3CDeclaringTypeU3Ek__BackingField_8(Type_t * value)
{
___U3CDeclaringTypeU3Ek__BackingField_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CDeclaringTypeU3Ek__BackingField_8), (void*)value);
}
inline static int32_t get_offset_of_U3COrderU3Ek__BackingField_9() { return static_cast<int32_t>(offsetof(JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB, ___U3COrderU3Ek__BackingField_9)); }
inline Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB get_U3COrderU3Ek__BackingField_9() const { return ___U3COrderU3Ek__BackingField_9; }
inline Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB * get_address_of_U3COrderU3Ek__BackingField_9() { return &___U3COrderU3Ek__BackingField_9; }
inline void set_U3COrderU3Ek__BackingField_9(Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB value)
{
___U3COrderU3Ek__BackingField_9 = value;
}
inline static int32_t get_offset_of_U3CUnderlyingNameU3Ek__BackingField_10() { return static_cast<int32_t>(offsetof(JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB, ___U3CUnderlyingNameU3Ek__BackingField_10)); }
inline String_t* get_U3CUnderlyingNameU3Ek__BackingField_10() const { return ___U3CUnderlyingNameU3Ek__BackingField_10; }
inline String_t** get_address_of_U3CUnderlyingNameU3Ek__BackingField_10() { return &___U3CUnderlyingNameU3Ek__BackingField_10; }
inline void set_U3CUnderlyingNameU3Ek__BackingField_10(String_t* value)
{
___U3CUnderlyingNameU3Ek__BackingField_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CUnderlyingNameU3Ek__BackingField_10), (void*)value);
}
inline static int32_t get_offset_of_U3CValueProviderU3Ek__BackingField_11() { return static_cast<int32_t>(offsetof(JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB, ___U3CValueProviderU3Ek__BackingField_11)); }
inline RuntimeObject* get_U3CValueProviderU3Ek__BackingField_11() const { return ___U3CValueProviderU3Ek__BackingField_11; }
inline RuntimeObject** get_address_of_U3CValueProviderU3Ek__BackingField_11() { return &___U3CValueProviderU3Ek__BackingField_11; }
inline void set_U3CValueProviderU3Ek__BackingField_11(RuntimeObject* value)
{
___U3CValueProviderU3Ek__BackingField_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CValueProviderU3Ek__BackingField_11), (void*)value);
}
inline static int32_t get_offset_of_U3CAttributeProviderU3Ek__BackingField_12() { return static_cast<int32_t>(offsetof(JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB, ___U3CAttributeProviderU3Ek__BackingField_12)); }
inline RuntimeObject* get_U3CAttributeProviderU3Ek__BackingField_12() const { return ___U3CAttributeProviderU3Ek__BackingField_12; }
inline RuntimeObject** get_address_of_U3CAttributeProviderU3Ek__BackingField_12() { return &___U3CAttributeProviderU3Ek__BackingField_12; }
inline void set_U3CAttributeProviderU3Ek__BackingField_12(RuntimeObject* value)
{
___U3CAttributeProviderU3Ek__BackingField_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CAttributeProviderU3Ek__BackingField_12), (void*)value);
}
inline static int32_t get_offset_of_U3CConverterU3Ek__BackingField_13() { return static_cast<int32_t>(offsetof(JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB, ___U3CConverterU3Ek__BackingField_13)); }
inline JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * get_U3CConverterU3Ek__BackingField_13() const { return ___U3CConverterU3Ek__BackingField_13; }
inline JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 ** get_address_of_U3CConverterU3Ek__BackingField_13() { return &___U3CConverterU3Ek__BackingField_13; }
inline void set_U3CConverterU3Ek__BackingField_13(JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * value)
{
___U3CConverterU3Ek__BackingField_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CConverterU3Ek__BackingField_13), (void*)value);
}
inline static int32_t get_offset_of_U3CMemberConverterU3Ek__BackingField_14() { return static_cast<int32_t>(offsetof(JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB, ___U3CMemberConverterU3Ek__BackingField_14)); }
inline JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * get_U3CMemberConverterU3Ek__BackingField_14() const { return ___U3CMemberConverterU3Ek__BackingField_14; }
inline JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 ** get_address_of_U3CMemberConverterU3Ek__BackingField_14() { return &___U3CMemberConverterU3Ek__BackingField_14; }
inline void set_U3CMemberConverterU3Ek__BackingField_14(JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * value)
{
___U3CMemberConverterU3Ek__BackingField_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CMemberConverterU3Ek__BackingField_14), (void*)value);
}
inline static int32_t get_offset_of_U3CIgnoredU3Ek__BackingField_15() { return static_cast<int32_t>(offsetof(JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB, ___U3CIgnoredU3Ek__BackingField_15)); }
inline bool get_U3CIgnoredU3Ek__BackingField_15() const { return ___U3CIgnoredU3Ek__BackingField_15; }
inline bool* get_address_of_U3CIgnoredU3Ek__BackingField_15() { return &___U3CIgnoredU3Ek__BackingField_15; }
inline void set_U3CIgnoredU3Ek__BackingField_15(bool value)
{
___U3CIgnoredU3Ek__BackingField_15 = value;
}
inline static int32_t get_offset_of_U3CReadableU3Ek__BackingField_16() { return static_cast<int32_t>(offsetof(JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB, ___U3CReadableU3Ek__BackingField_16)); }
inline bool get_U3CReadableU3Ek__BackingField_16() const { return ___U3CReadableU3Ek__BackingField_16; }
inline bool* get_address_of_U3CReadableU3Ek__BackingField_16() { return &___U3CReadableU3Ek__BackingField_16; }
inline void set_U3CReadableU3Ek__BackingField_16(bool value)
{
___U3CReadableU3Ek__BackingField_16 = value;
}
inline static int32_t get_offset_of_U3CWritableU3Ek__BackingField_17() { return static_cast<int32_t>(offsetof(JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB, ___U3CWritableU3Ek__BackingField_17)); }
inline bool get_U3CWritableU3Ek__BackingField_17() const { return ___U3CWritableU3Ek__BackingField_17; }
inline bool* get_address_of_U3CWritableU3Ek__BackingField_17() { return &___U3CWritableU3Ek__BackingField_17; }
inline void set_U3CWritableU3Ek__BackingField_17(bool value)
{
___U3CWritableU3Ek__BackingField_17 = value;
}
inline static int32_t get_offset_of_U3CHasMemberAttributeU3Ek__BackingField_18() { return static_cast<int32_t>(offsetof(JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB, ___U3CHasMemberAttributeU3Ek__BackingField_18)); }
inline bool get_U3CHasMemberAttributeU3Ek__BackingField_18() const { return ___U3CHasMemberAttributeU3Ek__BackingField_18; }
inline bool* get_address_of_U3CHasMemberAttributeU3Ek__BackingField_18() { return &___U3CHasMemberAttributeU3Ek__BackingField_18; }
inline void set_U3CHasMemberAttributeU3Ek__BackingField_18(bool value)
{
___U3CHasMemberAttributeU3Ek__BackingField_18 = value;
}
inline static int32_t get_offset_of_U3CIsReferenceU3Ek__BackingField_19() { return static_cast<int32_t>(offsetof(JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB, ___U3CIsReferenceU3Ek__BackingField_19)); }
inline Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 get_U3CIsReferenceU3Ek__BackingField_19() const { return ___U3CIsReferenceU3Ek__BackingField_19; }
inline Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 * get_address_of_U3CIsReferenceU3Ek__BackingField_19() { return &___U3CIsReferenceU3Ek__BackingField_19; }
inline void set_U3CIsReferenceU3Ek__BackingField_19(Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 value)
{
___U3CIsReferenceU3Ek__BackingField_19 = value;
}
inline static int32_t get_offset_of_U3CNullValueHandlingU3Ek__BackingField_20() { return static_cast<int32_t>(offsetof(JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB, ___U3CNullValueHandlingU3Ek__BackingField_20)); }
inline Nullable_1_t1E3E10A718340D5055F8DB98AE1C03F47CDC19FC get_U3CNullValueHandlingU3Ek__BackingField_20() const { return ___U3CNullValueHandlingU3Ek__BackingField_20; }
inline Nullable_1_t1E3E10A718340D5055F8DB98AE1C03F47CDC19FC * get_address_of_U3CNullValueHandlingU3Ek__BackingField_20() { return &___U3CNullValueHandlingU3Ek__BackingField_20; }
inline void set_U3CNullValueHandlingU3Ek__BackingField_20(Nullable_1_t1E3E10A718340D5055F8DB98AE1C03F47CDC19FC value)
{
___U3CNullValueHandlingU3Ek__BackingField_20 = value;
}
inline static int32_t get_offset_of_U3CDefaultValueHandlingU3Ek__BackingField_21() { return static_cast<int32_t>(offsetof(JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB, ___U3CDefaultValueHandlingU3Ek__BackingField_21)); }
inline Nullable_1_tE7CF0A7BC2816D39007C0EEB41F32FA7DB86B394 get_U3CDefaultValueHandlingU3Ek__BackingField_21() const { return ___U3CDefaultValueHandlingU3Ek__BackingField_21; }
inline Nullable_1_tE7CF0A7BC2816D39007C0EEB41F32FA7DB86B394 * get_address_of_U3CDefaultValueHandlingU3Ek__BackingField_21() { return &___U3CDefaultValueHandlingU3Ek__BackingField_21; }
inline void set_U3CDefaultValueHandlingU3Ek__BackingField_21(Nullable_1_tE7CF0A7BC2816D39007C0EEB41F32FA7DB86B394 value)
{
___U3CDefaultValueHandlingU3Ek__BackingField_21 = value;
}
inline static int32_t get_offset_of_U3CReferenceLoopHandlingU3Ek__BackingField_22() { return static_cast<int32_t>(offsetof(JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB, ___U3CReferenceLoopHandlingU3Ek__BackingField_22)); }
inline Nullable_1_tD485E28BBBAFB03563161D92A5E03A20B8691DF7 get_U3CReferenceLoopHandlingU3Ek__BackingField_22() const { return ___U3CReferenceLoopHandlingU3Ek__BackingField_22; }
inline Nullable_1_tD485E28BBBAFB03563161D92A5E03A20B8691DF7 * get_address_of_U3CReferenceLoopHandlingU3Ek__BackingField_22() { return &___U3CReferenceLoopHandlingU3Ek__BackingField_22; }
inline void set_U3CReferenceLoopHandlingU3Ek__BackingField_22(Nullable_1_tD485E28BBBAFB03563161D92A5E03A20B8691DF7 value)
{
___U3CReferenceLoopHandlingU3Ek__BackingField_22 = value;
}
inline static int32_t get_offset_of_U3CObjectCreationHandlingU3Ek__BackingField_23() { return static_cast<int32_t>(offsetof(JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB, ___U3CObjectCreationHandlingU3Ek__BackingField_23)); }
inline Nullable_1_t6F16A066F0D8E92AEDC11791932E5B9D887F402E get_U3CObjectCreationHandlingU3Ek__BackingField_23() const { return ___U3CObjectCreationHandlingU3Ek__BackingField_23; }
inline Nullable_1_t6F16A066F0D8E92AEDC11791932E5B9D887F402E * get_address_of_U3CObjectCreationHandlingU3Ek__BackingField_23() { return &___U3CObjectCreationHandlingU3Ek__BackingField_23; }
inline void set_U3CObjectCreationHandlingU3Ek__BackingField_23(Nullable_1_t6F16A066F0D8E92AEDC11791932E5B9D887F402E value)
{
___U3CObjectCreationHandlingU3Ek__BackingField_23 = value;
}
inline static int32_t get_offset_of_U3CTypeNameHandlingU3Ek__BackingField_24() { return static_cast<int32_t>(offsetof(JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB, ___U3CTypeNameHandlingU3Ek__BackingField_24)); }
inline Nullable_1_t03BF155C19CE72C93934F0A7CDDA0C202A278E11 get_U3CTypeNameHandlingU3Ek__BackingField_24() const { return ___U3CTypeNameHandlingU3Ek__BackingField_24; }
inline Nullable_1_t03BF155C19CE72C93934F0A7CDDA0C202A278E11 * get_address_of_U3CTypeNameHandlingU3Ek__BackingField_24() { return &___U3CTypeNameHandlingU3Ek__BackingField_24; }
inline void set_U3CTypeNameHandlingU3Ek__BackingField_24(Nullable_1_t03BF155C19CE72C93934F0A7CDDA0C202A278E11 value)
{
___U3CTypeNameHandlingU3Ek__BackingField_24 = value;
}
inline static int32_t get_offset_of_U3CShouldSerializeU3Ek__BackingField_25() { return static_cast<int32_t>(offsetof(JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB, ___U3CShouldSerializeU3Ek__BackingField_25)); }
inline Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 * get_U3CShouldSerializeU3Ek__BackingField_25() const { return ___U3CShouldSerializeU3Ek__BackingField_25; }
inline Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 ** get_address_of_U3CShouldSerializeU3Ek__BackingField_25() { return &___U3CShouldSerializeU3Ek__BackingField_25; }
inline void set_U3CShouldSerializeU3Ek__BackingField_25(Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 * value)
{
___U3CShouldSerializeU3Ek__BackingField_25 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CShouldSerializeU3Ek__BackingField_25), (void*)value);
}
inline static int32_t get_offset_of_U3CShouldDeserializeU3Ek__BackingField_26() { return static_cast<int32_t>(offsetof(JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB, ___U3CShouldDeserializeU3Ek__BackingField_26)); }
inline Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 * get_U3CShouldDeserializeU3Ek__BackingField_26() const { return ___U3CShouldDeserializeU3Ek__BackingField_26; }
inline Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 ** get_address_of_U3CShouldDeserializeU3Ek__BackingField_26() { return &___U3CShouldDeserializeU3Ek__BackingField_26; }
inline void set_U3CShouldDeserializeU3Ek__BackingField_26(Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 * value)
{
___U3CShouldDeserializeU3Ek__BackingField_26 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CShouldDeserializeU3Ek__BackingField_26), (void*)value);
}
inline static int32_t get_offset_of_U3CGetIsSpecifiedU3Ek__BackingField_27() { return static_cast<int32_t>(offsetof(JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB, ___U3CGetIsSpecifiedU3Ek__BackingField_27)); }
inline Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 * get_U3CGetIsSpecifiedU3Ek__BackingField_27() const { return ___U3CGetIsSpecifiedU3Ek__BackingField_27; }
inline Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 ** get_address_of_U3CGetIsSpecifiedU3Ek__BackingField_27() { return &___U3CGetIsSpecifiedU3Ek__BackingField_27; }
inline void set_U3CGetIsSpecifiedU3Ek__BackingField_27(Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 * value)
{
___U3CGetIsSpecifiedU3Ek__BackingField_27 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CGetIsSpecifiedU3Ek__BackingField_27), (void*)value);
}
inline static int32_t get_offset_of_U3CSetIsSpecifiedU3Ek__BackingField_28() { return static_cast<int32_t>(offsetof(JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB, ___U3CSetIsSpecifiedU3Ek__BackingField_28)); }
inline Action_2_t0DB6FD6F515527EAB552B690A291778C6F00D48C * get_U3CSetIsSpecifiedU3Ek__BackingField_28() const { return ___U3CSetIsSpecifiedU3Ek__BackingField_28; }
inline Action_2_t0DB6FD6F515527EAB552B690A291778C6F00D48C ** get_address_of_U3CSetIsSpecifiedU3Ek__BackingField_28() { return &___U3CSetIsSpecifiedU3Ek__BackingField_28; }
inline void set_U3CSetIsSpecifiedU3Ek__BackingField_28(Action_2_t0DB6FD6F515527EAB552B690A291778C6F00D48C * value)
{
___U3CSetIsSpecifiedU3Ek__BackingField_28 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CSetIsSpecifiedU3Ek__BackingField_28), (void*)value);
}
inline static int32_t get_offset_of_U3CItemConverterU3Ek__BackingField_29() { return static_cast<int32_t>(offsetof(JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB, ___U3CItemConverterU3Ek__BackingField_29)); }
inline JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * get_U3CItemConverterU3Ek__BackingField_29() const { return ___U3CItemConverterU3Ek__BackingField_29; }
inline JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 ** get_address_of_U3CItemConverterU3Ek__BackingField_29() { return &___U3CItemConverterU3Ek__BackingField_29; }
inline void set_U3CItemConverterU3Ek__BackingField_29(JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * value)
{
___U3CItemConverterU3Ek__BackingField_29 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CItemConverterU3Ek__BackingField_29), (void*)value);
}
inline static int32_t get_offset_of_U3CItemIsReferenceU3Ek__BackingField_30() { return static_cast<int32_t>(offsetof(JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB, ___U3CItemIsReferenceU3Ek__BackingField_30)); }
inline Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 get_U3CItemIsReferenceU3Ek__BackingField_30() const { return ___U3CItemIsReferenceU3Ek__BackingField_30; }
inline Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 * get_address_of_U3CItemIsReferenceU3Ek__BackingField_30() { return &___U3CItemIsReferenceU3Ek__BackingField_30; }
inline void set_U3CItemIsReferenceU3Ek__BackingField_30(Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 value)
{
___U3CItemIsReferenceU3Ek__BackingField_30 = value;
}
inline static int32_t get_offset_of_U3CItemTypeNameHandlingU3Ek__BackingField_31() { return static_cast<int32_t>(offsetof(JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB, ___U3CItemTypeNameHandlingU3Ek__BackingField_31)); }
inline Nullable_1_t03BF155C19CE72C93934F0A7CDDA0C202A278E11 get_U3CItemTypeNameHandlingU3Ek__BackingField_31() const { return ___U3CItemTypeNameHandlingU3Ek__BackingField_31; }
inline Nullable_1_t03BF155C19CE72C93934F0A7CDDA0C202A278E11 * get_address_of_U3CItemTypeNameHandlingU3Ek__BackingField_31() { return &___U3CItemTypeNameHandlingU3Ek__BackingField_31; }
inline void set_U3CItemTypeNameHandlingU3Ek__BackingField_31(Nullable_1_t03BF155C19CE72C93934F0A7CDDA0C202A278E11 value)
{
___U3CItemTypeNameHandlingU3Ek__BackingField_31 = value;
}
inline static int32_t get_offset_of_U3CItemReferenceLoopHandlingU3Ek__BackingField_32() { return static_cast<int32_t>(offsetof(JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB, ___U3CItemReferenceLoopHandlingU3Ek__BackingField_32)); }
inline Nullable_1_tD485E28BBBAFB03563161D92A5E03A20B8691DF7 get_U3CItemReferenceLoopHandlingU3Ek__BackingField_32() const { return ___U3CItemReferenceLoopHandlingU3Ek__BackingField_32; }
inline Nullable_1_tD485E28BBBAFB03563161D92A5E03A20B8691DF7 * get_address_of_U3CItemReferenceLoopHandlingU3Ek__BackingField_32() { return &___U3CItemReferenceLoopHandlingU3Ek__BackingField_32; }
inline void set_U3CItemReferenceLoopHandlingU3Ek__BackingField_32(Nullable_1_tD485E28BBBAFB03563161D92A5E03A20B8691DF7 value)
{
___U3CItemReferenceLoopHandlingU3Ek__BackingField_32 = value;
}
};
// Valve.Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object>
struct ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 : public MulticastDelegate_t
{
public:
public:
};
// Valve.Newtonsoft.Json.Serialization.SerializationCallback
struct SerializationCallback_t8B5297123C8DFAD6A6701E2F2046982E13CE1B9C : public MulticastDelegate_t
{
public:
public:
};
// Valve.Newtonsoft.Json.Serialization.SerializationErrorCallback
struct SerializationErrorCallback_t6EAECB0A4E241F49CA0D2A29EFCF4DCDDC9884B2 : public MulticastDelegate_t
{
public:
public:
};
// Valve.Newtonsoft.Json.Utilities.MethodCall`2<System.Object,System.Object>
struct MethodCall_2_t56986CA125FFF5F08B7842782AF0C0E8499096EC : public MulticastDelegate_t
{
public:
public:
};
// 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);
}
};
// Valve.Newtonsoft.Json.JsonArrayAttribute
struct JsonArrayAttribute_t609984D834AAFFAA816EEE2AFF222F4A49815F8D : public JsonContainerAttribute_t4E39F1E5EA66CF61E90C47C81929BE4A853A2DF3
{
public:
public:
};
// Valve.Newtonsoft.Json.JsonDictionaryAttribute
struct JsonDictionaryAttribute_tFB78E6CDFB0FC45A05E03DD5201A04D848CF3BE1 : public JsonContainerAttribute_t4E39F1E5EA66CF61E90C47C81929BE4A853A2DF3
{
public:
public:
};
// Valve.Newtonsoft.Json.JsonObjectAttribute
struct JsonObjectAttribute_tBFAF1467CED5A13D2048CF8E61AEEEC05413CC62 : public JsonContainerAttribute_t4E39F1E5EA66CF61E90C47C81929BE4A853A2DF3
{
public:
// Valve.Newtonsoft.Json.MemberSerialization Valve.Newtonsoft.Json.JsonObjectAttribute::_memberSerialization
int32_t ____memberSerialization_9;
// System.Nullable`1<Valve.Newtonsoft.Json.Required> Valve.Newtonsoft.Json.JsonObjectAttribute::_itemRequired
Nullable_1_t240C94038A74304286AD4C81EAEFD24E6E435A06 ____itemRequired_10;
public:
inline static int32_t get_offset_of__memberSerialization_9() { return static_cast<int32_t>(offsetof(JsonObjectAttribute_tBFAF1467CED5A13D2048CF8E61AEEEC05413CC62, ____memberSerialization_9)); }
inline int32_t get__memberSerialization_9() const { return ____memberSerialization_9; }
inline int32_t* get_address_of__memberSerialization_9() { return &____memberSerialization_9; }
inline void set__memberSerialization_9(int32_t value)
{
____memberSerialization_9 = value;
}
inline static int32_t get_offset_of__itemRequired_10() { return static_cast<int32_t>(offsetof(JsonObjectAttribute_tBFAF1467CED5A13D2048CF8E61AEEEC05413CC62, ____itemRequired_10)); }
inline Nullable_1_t240C94038A74304286AD4C81EAEFD24E6E435A06 get__itemRequired_10() const { return ____itemRequired_10; }
inline Nullable_1_t240C94038A74304286AD4C81EAEFD24E6E435A06 * get_address_of__itemRequired_10() { return &____itemRequired_10; }
inline void set__itemRequired_10(Nullable_1_t240C94038A74304286AD4C81EAEFD24E6E435A06 value)
{
____itemRequired_10 = value;
}
};
// Valve.Newtonsoft.Json.JsonTextWriter
struct JsonTextWriter_t56407EC76E70ABAD12ED7BF65BCF353E98D18FC6 : public JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E
{
public:
// System.IO.TextWriter Valve.Newtonsoft.Json.JsonTextWriter::_writer
TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * ____writer_13;
// Valve.Newtonsoft.Json.Utilities.Base64Encoder Valve.Newtonsoft.Json.JsonTextWriter::_base64Encoder
Base64Encoder_tEF7BE63485AB4A008FE9C6B448BAB5E9EBF7F21F * ____base64Encoder_14;
// System.Char Valve.Newtonsoft.Json.JsonTextWriter::_indentChar
Il2CppChar ____indentChar_15;
// System.Int32 Valve.Newtonsoft.Json.JsonTextWriter::_indentation
int32_t ____indentation_16;
// System.Char Valve.Newtonsoft.Json.JsonTextWriter::_quoteChar
Il2CppChar ____quoteChar_17;
// System.Boolean Valve.Newtonsoft.Json.JsonTextWriter::_quoteName
bool ____quoteName_18;
// System.Boolean[] Valve.Newtonsoft.Json.JsonTextWriter::_charEscapeFlags
BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* ____charEscapeFlags_19;
// System.Char[] Valve.Newtonsoft.Json.JsonTextWriter::_writeBuffer
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ____writeBuffer_20;
// Valve.Newtonsoft.Json.IArrayPool`1<System.Char> Valve.Newtonsoft.Json.JsonTextWriter::_arrayPool
RuntimeObject* ____arrayPool_21;
// System.Char[] Valve.Newtonsoft.Json.JsonTextWriter::_indentChars
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ____indentChars_22;
public:
inline static int32_t get_offset_of__writer_13() { return static_cast<int32_t>(offsetof(JsonTextWriter_t56407EC76E70ABAD12ED7BF65BCF353E98D18FC6, ____writer_13)); }
inline TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * get__writer_13() const { return ____writer_13; }
inline TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 ** get_address_of__writer_13() { return &____writer_13; }
inline void set__writer_13(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * value)
{
____writer_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&____writer_13), (void*)value);
}
inline static int32_t get_offset_of__base64Encoder_14() { return static_cast<int32_t>(offsetof(JsonTextWriter_t56407EC76E70ABAD12ED7BF65BCF353E98D18FC6, ____base64Encoder_14)); }
inline Base64Encoder_tEF7BE63485AB4A008FE9C6B448BAB5E9EBF7F21F * get__base64Encoder_14() const { return ____base64Encoder_14; }
inline Base64Encoder_tEF7BE63485AB4A008FE9C6B448BAB5E9EBF7F21F ** get_address_of__base64Encoder_14() { return &____base64Encoder_14; }
inline void set__base64Encoder_14(Base64Encoder_tEF7BE63485AB4A008FE9C6B448BAB5E9EBF7F21F * value)
{
____base64Encoder_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&____base64Encoder_14), (void*)value);
}
inline static int32_t get_offset_of__indentChar_15() { return static_cast<int32_t>(offsetof(JsonTextWriter_t56407EC76E70ABAD12ED7BF65BCF353E98D18FC6, ____indentChar_15)); }
inline Il2CppChar get__indentChar_15() const { return ____indentChar_15; }
inline Il2CppChar* get_address_of__indentChar_15() { return &____indentChar_15; }
inline void set__indentChar_15(Il2CppChar value)
{
____indentChar_15 = value;
}
inline static int32_t get_offset_of__indentation_16() { return static_cast<int32_t>(offsetof(JsonTextWriter_t56407EC76E70ABAD12ED7BF65BCF353E98D18FC6, ____indentation_16)); }
inline int32_t get__indentation_16() const { return ____indentation_16; }
inline int32_t* get_address_of__indentation_16() { return &____indentation_16; }
inline void set__indentation_16(int32_t value)
{
____indentation_16 = value;
}
inline static int32_t get_offset_of__quoteChar_17() { return static_cast<int32_t>(offsetof(JsonTextWriter_t56407EC76E70ABAD12ED7BF65BCF353E98D18FC6, ____quoteChar_17)); }
inline Il2CppChar get__quoteChar_17() const { return ____quoteChar_17; }
inline Il2CppChar* get_address_of__quoteChar_17() { return &____quoteChar_17; }
inline void set__quoteChar_17(Il2CppChar value)
{
____quoteChar_17 = value;
}
inline static int32_t get_offset_of__quoteName_18() { return static_cast<int32_t>(offsetof(JsonTextWriter_t56407EC76E70ABAD12ED7BF65BCF353E98D18FC6, ____quoteName_18)); }
inline bool get__quoteName_18() const { return ____quoteName_18; }
inline bool* get_address_of__quoteName_18() { return &____quoteName_18; }
inline void set__quoteName_18(bool value)
{
____quoteName_18 = value;
}
inline static int32_t get_offset_of__charEscapeFlags_19() { return static_cast<int32_t>(offsetof(JsonTextWriter_t56407EC76E70ABAD12ED7BF65BCF353E98D18FC6, ____charEscapeFlags_19)); }
inline BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* get__charEscapeFlags_19() const { return ____charEscapeFlags_19; }
inline BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040** get_address_of__charEscapeFlags_19() { return &____charEscapeFlags_19; }
inline void set__charEscapeFlags_19(BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* value)
{
____charEscapeFlags_19 = value;
Il2CppCodeGenWriteBarrier((void**)(&____charEscapeFlags_19), (void*)value);
}
inline static int32_t get_offset_of__writeBuffer_20() { return static_cast<int32_t>(offsetof(JsonTextWriter_t56407EC76E70ABAD12ED7BF65BCF353E98D18FC6, ____writeBuffer_20)); }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get__writeBuffer_20() const { return ____writeBuffer_20; }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of__writeBuffer_20() { return &____writeBuffer_20; }
inline void set__writeBuffer_20(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
{
____writeBuffer_20 = value;
Il2CppCodeGenWriteBarrier((void**)(&____writeBuffer_20), (void*)value);
}
inline static int32_t get_offset_of__arrayPool_21() { return static_cast<int32_t>(offsetof(JsonTextWriter_t56407EC76E70ABAD12ED7BF65BCF353E98D18FC6, ____arrayPool_21)); }
inline RuntimeObject* get__arrayPool_21() const { return ____arrayPool_21; }
inline RuntimeObject** get_address_of__arrayPool_21() { return &____arrayPool_21; }
inline void set__arrayPool_21(RuntimeObject* value)
{
____arrayPool_21 = value;
Il2CppCodeGenWriteBarrier((void**)(&____arrayPool_21), (void*)value);
}
inline static int32_t get_offset_of__indentChars_22() { return static_cast<int32_t>(offsetof(JsonTextWriter_t56407EC76E70ABAD12ED7BF65BCF353E98D18FC6, ____indentChars_22)); }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get__indentChars_22() const { return ____indentChars_22; }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of__indentChars_22() { return &____indentChars_22; }
inline void set__indentChars_22(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
{
____indentChars_22 = value;
Il2CppCodeGenWriteBarrier((void**)(&____indentChars_22), (void*)value);
}
};
// Valve.Newtonsoft.Json.Linq.JTokenReader
struct JTokenReader_tE3C9B85315EFF6B3CB0796451D8278F1372C6530 : public JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C
{
public:
// Valve.Newtonsoft.Json.Linq.JToken Valve.Newtonsoft.Json.Linq.JTokenReader::_root
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ____root_15;
// System.String Valve.Newtonsoft.Json.Linq.JTokenReader::_initialPath
String_t* ____initialPath_16;
// Valve.Newtonsoft.Json.Linq.JToken Valve.Newtonsoft.Json.Linq.JTokenReader::_parent
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ____parent_17;
// Valve.Newtonsoft.Json.Linq.JToken Valve.Newtonsoft.Json.Linq.JTokenReader::_current
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ____current_18;
public:
inline static int32_t get_offset_of__root_15() { return static_cast<int32_t>(offsetof(JTokenReader_tE3C9B85315EFF6B3CB0796451D8278F1372C6530, ____root_15)); }
inline JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * get__root_15() const { return ____root_15; }
inline JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 ** get_address_of__root_15() { return &____root_15; }
inline void set__root_15(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * value)
{
____root_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&____root_15), (void*)value);
}
inline static int32_t get_offset_of__initialPath_16() { return static_cast<int32_t>(offsetof(JTokenReader_tE3C9B85315EFF6B3CB0796451D8278F1372C6530, ____initialPath_16)); }
inline String_t* get__initialPath_16() const { return ____initialPath_16; }
inline String_t** get_address_of__initialPath_16() { return &____initialPath_16; }
inline void set__initialPath_16(String_t* value)
{
____initialPath_16 = value;
Il2CppCodeGenWriteBarrier((void**)(&____initialPath_16), (void*)value);
}
inline static int32_t get_offset_of__parent_17() { return static_cast<int32_t>(offsetof(JTokenReader_tE3C9B85315EFF6B3CB0796451D8278F1372C6530, ____parent_17)); }
inline JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * get__parent_17() const { return ____parent_17; }
inline JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 ** get_address_of__parent_17() { return &____parent_17; }
inline void set__parent_17(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * value)
{
____parent_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&____parent_17), (void*)value);
}
inline static int32_t get_offset_of__current_18() { return static_cast<int32_t>(offsetof(JTokenReader_tE3C9B85315EFF6B3CB0796451D8278F1372C6530, ____current_18)); }
inline JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * get__current_18() const { return ____current_18; }
inline JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 ** get_address_of__current_18() { return &____current_18; }
inline void set__current_18(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * value)
{
____current_18 = value;
Il2CppCodeGenWriteBarrier((void**)(&____current_18), (void*)value);
}
};
// Valve.Newtonsoft.Json.Linq.JTokenWriter
struct JTokenWriter_t96B1E9B675DE7CD27F8339C82B785C254918BCEF : public JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E
{
public:
// Valve.Newtonsoft.Json.Linq.JContainer Valve.Newtonsoft.Json.Linq.JTokenWriter::_token
JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * ____token_13;
// Valve.Newtonsoft.Json.Linq.JContainer Valve.Newtonsoft.Json.Linq.JTokenWriter::_parent
JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * ____parent_14;
// Valve.Newtonsoft.Json.Linq.JValue Valve.Newtonsoft.Json.Linq.JTokenWriter::_value
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * ____value_15;
// Valve.Newtonsoft.Json.Linq.JToken Valve.Newtonsoft.Json.Linq.JTokenWriter::_current
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ____current_16;
public:
inline static int32_t get_offset_of__token_13() { return static_cast<int32_t>(offsetof(JTokenWriter_t96B1E9B675DE7CD27F8339C82B785C254918BCEF, ____token_13)); }
inline JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * get__token_13() const { return ____token_13; }
inline JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC ** get_address_of__token_13() { return &____token_13; }
inline void set__token_13(JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * value)
{
____token_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&____token_13), (void*)value);
}
inline static int32_t get_offset_of__parent_14() { return static_cast<int32_t>(offsetof(JTokenWriter_t96B1E9B675DE7CD27F8339C82B785C254918BCEF, ____parent_14)); }
inline JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * get__parent_14() const { return ____parent_14; }
inline JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC ** get_address_of__parent_14() { return &____parent_14; }
inline void set__parent_14(JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * value)
{
____parent_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&____parent_14), (void*)value);
}
inline static int32_t get_offset_of__value_15() { return static_cast<int32_t>(offsetof(JTokenWriter_t96B1E9B675DE7CD27F8339C82B785C254918BCEF, ____value_15)); }
inline JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * get__value_15() const { return ____value_15; }
inline JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 ** get_address_of__value_15() { return &____value_15; }
inline void set__value_15(JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * value)
{
____value_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&____value_15), (void*)value);
}
inline static int32_t get_offset_of__current_16() { return static_cast<int32_t>(offsetof(JTokenWriter_t96B1E9B675DE7CD27F8339C82B785C254918BCEF, ____current_16)); }
inline JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * get__current_16() const { return ____current_16; }
inline JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 ** get_address_of__current_16() { return &____current_16; }
inline void set__current_16(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * value)
{
____current_16 = value;
Il2CppCodeGenWriteBarrier((void**)(&____current_16), (void*)value);
}
};
// Valve.Newtonsoft.Json.Serialization.JsonArrayContract
struct JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751 : public JsonContainerContract_tD54146B123969809E06196AE0C5BB3D6E9A679B9
{
public:
// System.Type Valve.Newtonsoft.Json.Serialization.JsonArrayContract::<CollectionItemType>k__BackingField
Type_t * ___U3CCollectionItemTypeU3Ek__BackingField_27;
// System.Boolean Valve.Newtonsoft.Json.Serialization.JsonArrayContract::<IsMultidimensionalArray>k__BackingField
bool ___U3CIsMultidimensionalArrayU3Ek__BackingField_28;
// System.Type Valve.Newtonsoft.Json.Serialization.JsonArrayContract::_genericCollectionDefinitionType
Type_t * ____genericCollectionDefinitionType_29;
// System.Type Valve.Newtonsoft.Json.Serialization.JsonArrayContract::_genericWrapperType
Type_t * ____genericWrapperType_30;
// Valve.Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object> Valve.Newtonsoft.Json.Serialization.JsonArrayContract::_genericWrapperCreator
ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 * ____genericWrapperCreator_31;
// System.Func`1<System.Object> Valve.Newtonsoft.Json.Serialization.JsonArrayContract::_genericTemporaryCollectionCreator
Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 * ____genericTemporaryCollectionCreator_32;
// System.Boolean Valve.Newtonsoft.Json.Serialization.JsonArrayContract::<IsArray>k__BackingField
bool ___U3CIsArrayU3Ek__BackingField_33;
// System.Boolean Valve.Newtonsoft.Json.Serialization.JsonArrayContract::<ShouldCreateWrapper>k__BackingField
bool ___U3CShouldCreateWrapperU3Ek__BackingField_34;
// System.Boolean Valve.Newtonsoft.Json.Serialization.JsonArrayContract::<CanDeserialize>k__BackingField
bool ___U3CCanDeserializeU3Ek__BackingField_35;
// System.Reflection.ConstructorInfo Valve.Newtonsoft.Json.Serialization.JsonArrayContract::_parameterizedConstructor
ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * ____parameterizedConstructor_36;
// Valve.Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object> Valve.Newtonsoft.Json.Serialization.JsonArrayContract::_parameterizedCreator
ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 * ____parameterizedCreator_37;
// Valve.Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object> Valve.Newtonsoft.Json.Serialization.JsonArrayContract::_overrideCreator
ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 * ____overrideCreator_38;
// System.Boolean Valve.Newtonsoft.Json.Serialization.JsonArrayContract::<HasParameterizedCreator>k__BackingField
bool ___U3CHasParameterizedCreatorU3Ek__BackingField_39;
public:
inline static int32_t get_offset_of_U3CCollectionItemTypeU3Ek__BackingField_27() { return static_cast<int32_t>(offsetof(JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751, ___U3CCollectionItemTypeU3Ek__BackingField_27)); }
inline Type_t * get_U3CCollectionItemTypeU3Ek__BackingField_27() const { return ___U3CCollectionItemTypeU3Ek__BackingField_27; }
inline Type_t ** get_address_of_U3CCollectionItemTypeU3Ek__BackingField_27() { return &___U3CCollectionItemTypeU3Ek__BackingField_27; }
inline void set_U3CCollectionItemTypeU3Ek__BackingField_27(Type_t * value)
{
___U3CCollectionItemTypeU3Ek__BackingField_27 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CCollectionItemTypeU3Ek__BackingField_27), (void*)value);
}
inline static int32_t get_offset_of_U3CIsMultidimensionalArrayU3Ek__BackingField_28() { return static_cast<int32_t>(offsetof(JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751, ___U3CIsMultidimensionalArrayU3Ek__BackingField_28)); }
inline bool get_U3CIsMultidimensionalArrayU3Ek__BackingField_28() const { return ___U3CIsMultidimensionalArrayU3Ek__BackingField_28; }
inline bool* get_address_of_U3CIsMultidimensionalArrayU3Ek__BackingField_28() { return &___U3CIsMultidimensionalArrayU3Ek__BackingField_28; }
inline void set_U3CIsMultidimensionalArrayU3Ek__BackingField_28(bool value)
{
___U3CIsMultidimensionalArrayU3Ek__BackingField_28 = value;
}
inline static int32_t get_offset_of__genericCollectionDefinitionType_29() { return static_cast<int32_t>(offsetof(JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751, ____genericCollectionDefinitionType_29)); }
inline Type_t * get__genericCollectionDefinitionType_29() const { return ____genericCollectionDefinitionType_29; }
inline Type_t ** get_address_of__genericCollectionDefinitionType_29() { return &____genericCollectionDefinitionType_29; }
inline void set__genericCollectionDefinitionType_29(Type_t * value)
{
____genericCollectionDefinitionType_29 = value;
Il2CppCodeGenWriteBarrier((void**)(&____genericCollectionDefinitionType_29), (void*)value);
}
inline static int32_t get_offset_of__genericWrapperType_30() { return static_cast<int32_t>(offsetof(JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751, ____genericWrapperType_30)); }
inline Type_t * get__genericWrapperType_30() const { return ____genericWrapperType_30; }
inline Type_t ** get_address_of__genericWrapperType_30() { return &____genericWrapperType_30; }
inline void set__genericWrapperType_30(Type_t * value)
{
____genericWrapperType_30 = value;
Il2CppCodeGenWriteBarrier((void**)(&____genericWrapperType_30), (void*)value);
}
inline static int32_t get_offset_of__genericWrapperCreator_31() { return static_cast<int32_t>(offsetof(JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751, ____genericWrapperCreator_31)); }
inline ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 * get__genericWrapperCreator_31() const { return ____genericWrapperCreator_31; }
inline ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 ** get_address_of__genericWrapperCreator_31() { return &____genericWrapperCreator_31; }
inline void set__genericWrapperCreator_31(ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 * value)
{
____genericWrapperCreator_31 = value;
Il2CppCodeGenWriteBarrier((void**)(&____genericWrapperCreator_31), (void*)value);
}
inline static int32_t get_offset_of__genericTemporaryCollectionCreator_32() { return static_cast<int32_t>(offsetof(JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751, ____genericTemporaryCollectionCreator_32)); }
inline Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 * get__genericTemporaryCollectionCreator_32() const { return ____genericTemporaryCollectionCreator_32; }
inline Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 ** get_address_of__genericTemporaryCollectionCreator_32() { return &____genericTemporaryCollectionCreator_32; }
inline void set__genericTemporaryCollectionCreator_32(Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 * value)
{
____genericTemporaryCollectionCreator_32 = value;
Il2CppCodeGenWriteBarrier((void**)(&____genericTemporaryCollectionCreator_32), (void*)value);
}
inline static int32_t get_offset_of_U3CIsArrayU3Ek__BackingField_33() { return static_cast<int32_t>(offsetof(JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751, ___U3CIsArrayU3Ek__BackingField_33)); }
inline bool get_U3CIsArrayU3Ek__BackingField_33() const { return ___U3CIsArrayU3Ek__BackingField_33; }
inline bool* get_address_of_U3CIsArrayU3Ek__BackingField_33() { return &___U3CIsArrayU3Ek__BackingField_33; }
inline void set_U3CIsArrayU3Ek__BackingField_33(bool value)
{
___U3CIsArrayU3Ek__BackingField_33 = value;
}
inline static int32_t get_offset_of_U3CShouldCreateWrapperU3Ek__BackingField_34() { return static_cast<int32_t>(offsetof(JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751, ___U3CShouldCreateWrapperU3Ek__BackingField_34)); }
inline bool get_U3CShouldCreateWrapperU3Ek__BackingField_34() const { return ___U3CShouldCreateWrapperU3Ek__BackingField_34; }
inline bool* get_address_of_U3CShouldCreateWrapperU3Ek__BackingField_34() { return &___U3CShouldCreateWrapperU3Ek__BackingField_34; }
inline void set_U3CShouldCreateWrapperU3Ek__BackingField_34(bool value)
{
___U3CShouldCreateWrapperU3Ek__BackingField_34 = value;
}
inline static int32_t get_offset_of_U3CCanDeserializeU3Ek__BackingField_35() { return static_cast<int32_t>(offsetof(JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751, ___U3CCanDeserializeU3Ek__BackingField_35)); }
inline bool get_U3CCanDeserializeU3Ek__BackingField_35() const { return ___U3CCanDeserializeU3Ek__BackingField_35; }
inline bool* get_address_of_U3CCanDeserializeU3Ek__BackingField_35() { return &___U3CCanDeserializeU3Ek__BackingField_35; }
inline void set_U3CCanDeserializeU3Ek__BackingField_35(bool value)
{
___U3CCanDeserializeU3Ek__BackingField_35 = value;
}
inline static int32_t get_offset_of__parameterizedConstructor_36() { return static_cast<int32_t>(offsetof(JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751, ____parameterizedConstructor_36)); }
inline ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * get__parameterizedConstructor_36() const { return ____parameterizedConstructor_36; }
inline ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF ** get_address_of__parameterizedConstructor_36() { return &____parameterizedConstructor_36; }
inline void set__parameterizedConstructor_36(ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * value)
{
____parameterizedConstructor_36 = value;
Il2CppCodeGenWriteBarrier((void**)(&____parameterizedConstructor_36), (void*)value);
}
inline static int32_t get_offset_of__parameterizedCreator_37() { return static_cast<int32_t>(offsetof(JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751, ____parameterizedCreator_37)); }
inline ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 * get__parameterizedCreator_37() const { return ____parameterizedCreator_37; }
inline ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 ** get_address_of__parameterizedCreator_37() { return &____parameterizedCreator_37; }
inline void set__parameterizedCreator_37(ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 * value)
{
____parameterizedCreator_37 = value;
Il2CppCodeGenWriteBarrier((void**)(&____parameterizedCreator_37), (void*)value);
}
inline static int32_t get_offset_of__overrideCreator_38() { return static_cast<int32_t>(offsetof(JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751, ____overrideCreator_38)); }
inline ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 * get__overrideCreator_38() const { return ____overrideCreator_38; }
inline ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 ** get_address_of__overrideCreator_38() { return &____overrideCreator_38; }
inline void set__overrideCreator_38(ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 * value)
{
____overrideCreator_38 = value;
Il2CppCodeGenWriteBarrier((void**)(&____overrideCreator_38), (void*)value);
}
inline static int32_t get_offset_of_U3CHasParameterizedCreatorU3Ek__BackingField_39() { return static_cast<int32_t>(offsetof(JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751, ___U3CHasParameterizedCreatorU3Ek__BackingField_39)); }
inline bool get_U3CHasParameterizedCreatorU3Ek__BackingField_39() const { return ___U3CHasParameterizedCreatorU3Ek__BackingField_39; }
inline bool* get_address_of_U3CHasParameterizedCreatorU3Ek__BackingField_39() { return &___U3CHasParameterizedCreatorU3Ek__BackingField_39; }
inline void set_U3CHasParameterizedCreatorU3Ek__BackingField_39(bool value)
{
___U3CHasParameterizedCreatorU3Ek__BackingField_39 = value;
}
};
// Valve.Newtonsoft.Json.Serialization.JsonDictionaryContract
struct JsonDictionaryContract_t7D39A549ABAEDA655A1140F78778D9B36692266C : public JsonContainerContract_tD54146B123969809E06196AE0C5BB3D6E9A679B9
{
public:
// System.Func`2<System.String,System.String> Valve.Newtonsoft.Json.Serialization.JsonDictionaryContract::<DictionaryKeyResolver>k__BackingField
Func_2_tD9EBF5FAD46B4F561FE5ABE814DC60E6253B8B96 * ___U3CDictionaryKeyResolverU3Ek__BackingField_27;
// System.Type Valve.Newtonsoft.Json.Serialization.JsonDictionaryContract::<DictionaryKeyType>k__BackingField
Type_t * ___U3CDictionaryKeyTypeU3Ek__BackingField_28;
// System.Type Valve.Newtonsoft.Json.Serialization.JsonDictionaryContract::<DictionaryValueType>k__BackingField
Type_t * ___U3CDictionaryValueTypeU3Ek__BackingField_29;
// Valve.Newtonsoft.Json.Serialization.JsonContract Valve.Newtonsoft.Json.Serialization.JsonDictionaryContract::<KeyContract>k__BackingField
JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * ___U3CKeyContractU3Ek__BackingField_30;
// System.Type Valve.Newtonsoft.Json.Serialization.JsonDictionaryContract::_genericCollectionDefinitionType
Type_t * ____genericCollectionDefinitionType_31;
// System.Type Valve.Newtonsoft.Json.Serialization.JsonDictionaryContract::_genericWrapperType
Type_t * ____genericWrapperType_32;
// Valve.Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object> Valve.Newtonsoft.Json.Serialization.JsonDictionaryContract::_genericWrapperCreator
ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 * ____genericWrapperCreator_33;
// System.Func`1<System.Object> Valve.Newtonsoft.Json.Serialization.JsonDictionaryContract::_genericTemporaryDictionaryCreator
Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 * ____genericTemporaryDictionaryCreator_34;
// System.Boolean Valve.Newtonsoft.Json.Serialization.JsonDictionaryContract::<ShouldCreateWrapper>k__BackingField
bool ___U3CShouldCreateWrapperU3Ek__BackingField_35;
// System.Reflection.ConstructorInfo Valve.Newtonsoft.Json.Serialization.JsonDictionaryContract::_parameterizedConstructor
ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * ____parameterizedConstructor_36;
// Valve.Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object> Valve.Newtonsoft.Json.Serialization.JsonDictionaryContract::_overrideCreator
ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 * ____overrideCreator_37;
// Valve.Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object> Valve.Newtonsoft.Json.Serialization.JsonDictionaryContract::_parameterizedCreator
ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 * ____parameterizedCreator_38;
// System.Boolean Valve.Newtonsoft.Json.Serialization.JsonDictionaryContract::<HasParameterizedCreator>k__BackingField
bool ___U3CHasParameterizedCreatorU3Ek__BackingField_39;
public:
inline static int32_t get_offset_of_U3CDictionaryKeyResolverU3Ek__BackingField_27() { return static_cast<int32_t>(offsetof(JsonDictionaryContract_t7D39A549ABAEDA655A1140F78778D9B36692266C, ___U3CDictionaryKeyResolverU3Ek__BackingField_27)); }
inline Func_2_tD9EBF5FAD46B4F561FE5ABE814DC60E6253B8B96 * get_U3CDictionaryKeyResolverU3Ek__BackingField_27() const { return ___U3CDictionaryKeyResolverU3Ek__BackingField_27; }
inline Func_2_tD9EBF5FAD46B4F561FE5ABE814DC60E6253B8B96 ** get_address_of_U3CDictionaryKeyResolverU3Ek__BackingField_27() { return &___U3CDictionaryKeyResolverU3Ek__BackingField_27; }
inline void set_U3CDictionaryKeyResolverU3Ek__BackingField_27(Func_2_tD9EBF5FAD46B4F561FE5ABE814DC60E6253B8B96 * value)
{
___U3CDictionaryKeyResolverU3Ek__BackingField_27 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CDictionaryKeyResolverU3Ek__BackingField_27), (void*)value);
}
inline static int32_t get_offset_of_U3CDictionaryKeyTypeU3Ek__BackingField_28() { return static_cast<int32_t>(offsetof(JsonDictionaryContract_t7D39A549ABAEDA655A1140F78778D9B36692266C, ___U3CDictionaryKeyTypeU3Ek__BackingField_28)); }
inline Type_t * get_U3CDictionaryKeyTypeU3Ek__BackingField_28() const { return ___U3CDictionaryKeyTypeU3Ek__BackingField_28; }
inline Type_t ** get_address_of_U3CDictionaryKeyTypeU3Ek__BackingField_28() { return &___U3CDictionaryKeyTypeU3Ek__BackingField_28; }
inline void set_U3CDictionaryKeyTypeU3Ek__BackingField_28(Type_t * value)
{
___U3CDictionaryKeyTypeU3Ek__BackingField_28 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CDictionaryKeyTypeU3Ek__BackingField_28), (void*)value);
}
inline static int32_t get_offset_of_U3CDictionaryValueTypeU3Ek__BackingField_29() { return static_cast<int32_t>(offsetof(JsonDictionaryContract_t7D39A549ABAEDA655A1140F78778D9B36692266C, ___U3CDictionaryValueTypeU3Ek__BackingField_29)); }
inline Type_t * get_U3CDictionaryValueTypeU3Ek__BackingField_29() const { return ___U3CDictionaryValueTypeU3Ek__BackingField_29; }
inline Type_t ** get_address_of_U3CDictionaryValueTypeU3Ek__BackingField_29() { return &___U3CDictionaryValueTypeU3Ek__BackingField_29; }
inline void set_U3CDictionaryValueTypeU3Ek__BackingField_29(Type_t * value)
{
___U3CDictionaryValueTypeU3Ek__BackingField_29 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CDictionaryValueTypeU3Ek__BackingField_29), (void*)value);
}
inline static int32_t get_offset_of_U3CKeyContractU3Ek__BackingField_30() { return static_cast<int32_t>(offsetof(JsonDictionaryContract_t7D39A549ABAEDA655A1140F78778D9B36692266C, ___U3CKeyContractU3Ek__BackingField_30)); }
inline JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * get_U3CKeyContractU3Ek__BackingField_30() const { return ___U3CKeyContractU3Ek__BackingField_30; }
inline JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 ** get_address_of_U3CKeyContractU3Ek__BackingField_30() { return &___U3CKeyContractU3Ek__BackingField_30; }
inline void set_U3CKeyContractU3Ek__BackingField_30(JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * value)
{
___U3CKeyContractU3Ek__BackingField_30 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CKeyContractU3Ek__BackingField_30), (void*)value);
}
inline static int32_t get_offset_of__genericCollectionDefinitionType_31() { return static_cast<int32_t>(offsetof(JsonDictionaryContract_t7D39A549ABAEDA655A1140F78778D9B36692266C, ____genericCollectionDefinitionType_31)); }
inline Type_t * get__genericCollectionDefinitionType_31() const { return ____genericCollectionDefinitionType_31; }
inline Type_t ** get_address_of__genericCollectionDefinitionType_31() { return &____genericCollectionDefinitionType_31; }
inline void set__genericCollectionDefinitionType_31(Type_t * value)
{
____genericCollectionDefinitionType_31 = value;
Il2CppCodeGenWriteBarrier((void**)(&____genericCollectionDefinitionType_31), (void*)value);
}
inline static int32_t get_offset_of__genericWrapperType_32() { return static_cast<int32_t>(offsetof(JsonDictionaryContract_t7D39A549ABAEDA655A1140F78778D9B36692266C, ____genericWrapperType_32)); }
inline Type_t * get__genericWrapperType_32() const { return ____genericWrapperType_32; }
inline Type_t ** get_address_of__genericWrapperType_32() { return &____genericWrapperType_32; }
inline void set__genericWrapperType_32(Type_t * value)
{
____genericWrapperType_32 = value;
Il2CppCodeGenWriteBarrier((void**)(&____genericWrapperType_32), (void*)value);
}
inline static int32_t get_offset_of__genericWrapperCreator_33() { return static_cast<int32_t>(offsetof(JsonDictionaryContract_t7D39A549ABAEDA655A1140F78778D9B36692266C, ____genericWrapperCreator_33)); }
inline ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 * get__genericWrapperCreator_33() const { return ____genericWrapperCreator_33; }
inline ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 ** get_address_of__genericWrapperCreator_33() { return &____genericWrapperCreator_33; }
inline void set__genericWrapperCreator_33(ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 * value)
{
____genericWrapperCreator_33 = value;
Il2CppCodeGenWriteBarrier((void**)(&____genericWrapperCreator_33), (void*)value);
}
inline static int32_t get_offset_of__genericTemporaryDictionaryCreator_34() { return static_cast<int32_t>(offsetof(JsonDictionaryContract_t7D39A549ABAEDA655A1140F78778D9B36692266C, ____genericTemporaryDictionaryCreator_34)); }
inline Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 * get__genericTemporaryDictionaryCreator_34() const { return ____genericTemporaryDictionaryCreator_34; }
inline Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 ** get_address_of__genericTemporaryDictionaryCreator_34() { return &____genericTemporaryDictionaryCreator_34; }
inline void set__genericTemporaryDictionaryCreator_34(Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 * value)
{
____genericTemporaryDictionaryCreator_34 = value;
Il2CppCodeGenWriteBarrier((void**)(&____genericTemporaryDictionaryCreator_34), (void*)value);
}
inline static int32_t get_offset_of_U3CShouldCreateWrapperU3Ek__BackingField_35() { return static_cast<int32_t>(offsetof(JsonDictionaryContract_t7D39A549ABAEDA655A1140F78778D9B36692266C, ___U3CShouldCreateWrapperU3Ek__BackingField_35)); }
inline bool get_U3CShouldCreateWrapperU3Ek__BackingField_35() const { return ___U3CShouldCreateWrapperU3Ek__BackingField_35; }
inline bool* get_address_of_U3CShouldCreateWrapperU3Ek__BackingField_35() { return &___U3CShouldCreateWrapperU3Ek__BackingField_35; }
inline void set_U3CShouldCreateWrapperU3Ek__BackingField_35(bool value)
{
___U3CShouldCreateWrapperU3Ek__BackingField_35 = value;
}
inline static int32_t get_offset_of__parameterizedConstructor_36() { return static_cast<int32_t>(offsetof(JsonDictionaryContract_t7D39A549ABAEDA655A1140F78778D9B36692266C, ____parameterizedConstructor_36)); }
inline ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * get__parameterizedConstructor_36() const { return ____parameterizedConstructor_36; }
inline ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF ** get_address_of__parameterizedConstructor_36() { return &____parameterizedConstructor_36; }
inline void set__parameterizedConstructor_36(ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * value)
{
____parameterizedConstructor_36 = value;
Il2CppCodeGenWriteBarrier((void**)(&____parameterizedConstructor_36), (void*)value);
}
inline static int32_t get_offset_of__overrideCreator_37() { return static_cast<int32_t>(offsetof(JsonDictionaryContract_t7D39A549ABAEDA655A1140F78778D9B36692266C, ____overrideCreator_37)); }
inline ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 * get__overrideCreator_37() const { return ____overrideCreator_37; }
inline ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 ** get_address_of__overrideCreator_37() { return &____overrideCreator_37; }
inline void set__overrideCreator_37(ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 * value)
{
____overrideCreator_37 = value;
Il2CppCodeGenWriteBarrier((void**)(&____overrideCreator_37), (void*)value);
}
inline static int32_t get_offset_of__parameterizedCreator_38() { return static_cast<int32_t>(offsetof(JsonDictionaryContract_t7D39A549ABAEDA655A1140F78778D9B36692266C, ____parameterizedCreator_38)); }
inline ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 * get__parameterizedCreator_38() const { return ____parameterizedCreator_38; }
inline ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 ** get_address_of__parameterizedCreator_38() { return &____parameterizedCreator_38; }
inline void set__parameterizedCreator_38(ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 * value)
{
____parameterizedCreator_38 = value;
Il2CppCodeGenWriteBarrier((void**)(&____parameterizedCreator_38), (void*)value);
}
inline static int32_t get_offset_of_U3CHasParameterizedCreatorU3Ek__BackingField_39() { return static_cast<int32_t>(offsetof(JsonDictionaryContract_t7D39A549ABAEDA655A1140F78778D9B36692266C, ___U3CHasParameterizedCreatorU3Ek__BackingField_39)); }
inline bool get_U3CHasParameterizedCreatorU3Ek__BackingField_39() const { return ___U3CHasParameterizedCreatorU3Ek__BackingField_39; }
inline bool* get_address_of_U3CHasParameterizedCreatorU3Ek__BackingField_39() { return &___U3CHasParameterizedCreatorU3Ek__BackingField_39; }
inline void set_U3CHasParameterizedCreatorU3Ek__BackingField_39(bool value)
{
___U3CHasParameterizedCreatorU3Ek__BackingField_39 = value;
}
};
// Valve.Newtonsoft.Json.Serialization.JsonISerializableContract
struct JsonISerializableContract_tC390B7D7091FE7D26C0FE026BDB2DCA1D1E64AA0 : public JsonContainerContract_tD54146B123969809E06196AE0C5BB3D6E9A679B9
{
public:
// Valve.Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object> Valve.Newtonsoft.Json.Serialization.JsonISerializableContract::<ISerializableCreator>k__BackingField
ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 * ___U3CISerializableCreatorU3Ek__BackingField_27;
public:
inline static int32_t get_offset_of_U3CISerializableCreatorU3Ek__BackingField_27() { return static_cast<int32_t>(offsetof(JsonISerializableContract_tC390B7D7091FE7D26C0FE026BDB2DCA1D1E64AA0, ___U3CISerializableCreatorU3Ek__BackingField_27)); }
inline ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 * get_U3CISerializableCreatorU3Ek__BackingField_27() const { return ___U3CISerializableCreatorU3Ek__BackingField_27; }
inline ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 ** get_address_of_U3CISerializableCreatorU3Ek__BackingField_27() { return &___U3CISerializableCreatorU3Ek__BackingField_27; }
inline void set_U3CISerializableCreatorU3Ek__BackingField_27(ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 * value)
{
___U3CISerializableCreatorU3Ek__BackingField_27 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CISerializableCreatorU3Ek__BackingField_27), (void*)value);
}
};
// Valve.Newtonsoft.Json.Serialization.JsonObjectContract
struct JsonObjectContract_tC08A0614773A277BE2FACD612729195811D606B5 : public JsonContainerContract_tD54146B123969809E06196AE0C5BB3D6E9A679B9
{
public:
// Valve.Newtonsoft.Json.MemberSerialization Valve.Newtonsoft.Json.Serialization.JsonObjectContract::<MemberSerialization>k__BackingField
int32_t ___U3CMemberSerializationU3Ek__BackingField_27;
// System.Nullable`1<Valve.Newtonsoft.Json.Required> Valve.Newtonsoft.Json.Serialization.JsonObjectContract::<ItemRequired>k__BackingField
Nullable_1_t240C94038A74304286AD4C81EAEFD24E6E435A06 ___U3CItemRequiredU3Ek__BackingField_28;
// Valve.Newtonsoft.Json.Serialization.JsonPropertyCollection Valve.Newtonsoft.Json.Serialization.JsonObjectContract::<Properties>k__BackingField
JsonPropertyCollection_tC08CC5508836C9712A08DDE9E2BC413BD3A61715 * ___U3CPropertiesU3Ek__BackingField_29;
// Valve.Newtonsoft.Json.Serialization.ExtensionDataSetter Valve.Newtonsoft.Json.Serialization.JsonObjectContract::<ExtensionDataSetter>k__BackingField
ExtensionDataSetter_t887F53572558DF1949C2035B2EC92D39343FE586 * ___U3CExtensionDataSetterU3Ek__BackingField_30;
// Valve.Newtonsoft.Json.Serialization.ExtensionDataGetter Valve.Newtonsoft.Json.Serialization.JsonObjectContract::<ExtensionDataGetter>k__BackingField
ExtensionDataGetter_t6CC1D4868317A6C03ADA77795B2563E77D993860 * ___U3CExtensionDataGetterU3Ek__BackingField_31;
// System.Boolean Valve.Newtonsoft.Json.Serialization.JsonObjectContract::ExtensionDataIsJToken
bool ___ExtensionDataIsJToken_32;
// System.Nullable`1<System.Boolean> Valve.Newtonsoft.Json.Serialization.JsonObjectContract::_hasRequiredOrDefaultValueProperties
Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 ____hasRequiredOrDefaultValueProperties_33;
// System.Reflection.ConstructorInfo Valve.Newtonsoft.Json.Serialization.JsonObjectContract::_parametrizedConstructor
ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * ____parametrizedConstructor_34;
// System.Reflection.ConstructorInfo Valve.Newtonsoft.Json.Serialization.JsonObjectContract::_overrideConstructor
ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * ____overrideConstructor_35;
// Valve.Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object> Valve.Newtonsoft.Json.Serialization.JsonObjectContract::_overrideCreator
ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 * ____overrideCreator_36;
// Valve.Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object> Valve.Newtonsoft.Json.Serialization.JsonObjectContract::_parameterizedCreator
ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 * ____parameterizedCreator_37;
// Valve.Newtonsoft.Json.Serialization.JsonPropertyCollection Valve.Newtonsoft.Json.Serialization.JsonObjectContract::_creatorParameters
JsonPropertyCollection_tC08CC5508836C9712A08DDE9E2BC413BD3A61715 * ____creatorParameters_38;
// System.Type Valve.Newtonsoft.Json.Serialization.JsonObjectContract::_extensionDataValueType
Type_t * ____extensionDataValueType_39;
public:
inline static int32_t get_offset_of_U3CMemberSerializationU3Ek__BackingField_27() { return static_cast<int32_t>(offsetof(JsonObjectContract_tC08A0614773A277BE2FACD612729195811D606B5, ___U3CMemberSerializationU3Ek__BackingField_27)); }
inline int32_t get_U3CMemberSerializationU3Ek__BackingField_27() const { return ___U3CMemberSerializationU3Ek__BackingField_27; }
inline int32_t* get_address_of_U3CMemberSerializationU3Ek__BackingField_27() { return &___U3CMemberSerializationU3Ek__BackingField_27; }
inline void set_U3CMemberSerializationU3Ek__BackingField_27(int32_t value)
{
___U3CMemberSerializationU3Ek__BackingField_27 = value;
}
inline static int32_t get_offset_of_U3CItemRequiredU3Ek__BackingField_28() { return static_cast<int32_t>(offsetof(JsonObjectContract_tC08A0614773A277BE2FACD612729195811D606B5, ___U3CItemRequiredU3Ek__BackingField_28)); }
inline Nullable_1_t240C94038A74304286AD4C81EAEFD24E6E435A06 get_U3CItemRequiredU3Ek__BackingField_28() const { return ___U3CItemRequiredU3Ek__BackingField_28; }
inline Nullable_1_t240C94038A74304286AD4C81EAEFD24E6E435A06 * get_address_of_U3CItemRequiredU3Ek__BackingField_28() { return &___U3CItemRequiredU3Ek__BackingField_28; }
inline void set_U3CItemRequiredU3Ek__BackingField_28(Nullable_1_t240C94038A74304286AD4C81EAEFD24E6E435A06 value)
{
___U3CItemRequiredU3Ek__BackingField_28 = value;
}
inline static int32_t get_offset_of_U3CPropertiesU3Ek__BackingField_29() { return static_cast<int32_t>(offsetof(JsonObjectContract_tC08A0614773A277BE2FACD612729195811D606B5, ___U3CPropertiesU3Ek__BackingField_29)); }
inline JsonPropertyCollection_tC08CC5508836C9712A08DDE9E2BC413BD3A61715 * get_U3CPropertiesU3Ek__BackingField_29() const { return ___U3CPropertiesU3Ek__BackingField_29; }
inline JsonPropertyCollection_tC08CC5508836C9712A08DDE9E2BC413BD3A61715 ** get_address_of_U3CPropertiesU3Ek__BackingField_29() { return &___U3CPropertiesU3Ek__BackingField_29; }
inline void set_U3CPropertiesU3Ek__BackingField_29(JsonPropertyCollection_tC08CC5508836C9712A08DDE9E2BC413BD3A61715 * value)
{
___U3CPropertiesU3Ek__BackingField_29 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CPropertiesU3Ek__BackingField_29), (void*)value);
}
inline static int32_t get_offset_of_U3CExtensionDataSetterU3Ek__BackingField_30() { return static_cast<int32_t>(offsetof(JsonObjectContract_tC08A0614773A277BE2FACD612729195811D606B5, ___U3CExtensionDataSetterU3Ek__BackingField_30)); }
inline ExtensionDataSetter_t887F53572558DF1949C2035B2EC92D39343FE586 * get_U3CExtensionDataSetterU3Ek__BackingField_30() const { return ___U3CExtensionDataSetterU3Ek__BackingField_30; }
inline ExtensionDataSetter_t887F53572558DF1949C2035B2EC92D39343FE586 ** get_address_of_U3CExtensionDataSetterU3Ek__BackingField_30() { return &___U3CExtensionDataSetterU3Ek__BackingField_30; }
inline void set_U3CExtensionDataSetterU3Ek__BackingField_30(ExtensionDataSetter_t887F53572558DF1949C2035B2EC92D39343FE586 * value)
{
___U3CExtensionDataSetterU3Ek__BackingField_30 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CExtensionDataSetterU3Ek__BackingField_30), (void*)value);
}
inline static int32_t get_offset_of_U3CExtensionDataGetterU3Ek__BackingField_31() { return static_cast<int32_t>(offsetof(JsonObjectContract_tC08A0614773A277BE2FACD612729195811D606B5, ___U3CExtensionDataGetterU3Ek__BackingField_31)); }
inline ExtensionDataGetter_t6CC1D4868317A6C03ADA77795B2563E77D993860 * get_U3CExtensionDataGetterU3Ek__BackingField_31() const { return ___U3CExtensionDataGetterU3Ek__BackingField_31; }
inline ExtensionDataGetter_t6CC1D4868317A6C03ADA77795B2563E77D993860 ** get_address_of_U3CExtensionDataGetterU3Ek__BackingField_31() { return &___U3CExtensionDataGetterU3Ek__BackingField_31; }
inline void set_U3CExtensionDataGetterU3Ek__BackingField_31(ExtensionDataGetter_t6CC1D4868317A6C03ADA77795B2563E77D993860 * value)
{
___U3CExtensionDataGetterU3Ek__BackingField_31 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CExtensionDataGetterU3Ek__BackingField_31), (void*)value);
}
inline static int32_t get_offset_of_ExtensionDataIsJToken_32() { return static_cast<int32_t>(offsetof(JsonObjectContract_tC08A0614773A277BE2FACD612729195811D606B5, ___ExtensionDataIsJToken_32)); }
inline bool get_ExtensionDataIsJToken_32() const { return ___ExtensionDataIsJToken_32; }
inline bool* get_address_of_ExtensionDataIsJToken_32() { return &___ExtensionDataIsJToken_32; }
inline void set_ExtensionDataIsJToken_32(bool value)
{
___ExtensionDataIsJToken_32 = value;
}
inline static int32_t get_offset_of__hasRequiredOrDefaultValueProperties_33() { return static_cast<int32_t>(offsetof(JsonObjectContract_tC08A0614773A277BE2FACD612729195811D606B5, ____hasRequiredOrDefaultValueProperties_33)); }
inline Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 get__hasRequiredOrDefaultValueProperties_33() const { return ____hasRequiredOrDefaultValueProperties_33; }
inline Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 * get_address_of__hasRequiredOrDefaultValueProperties_33() { return &____hasRequiredOrDefaultValueProperties_33; }
inline void set__hasRequiredOrDefaultValueProperties_33(Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 value)
{
____hasRequiredOrDefaultValueProperties_33 = value;
}
inline static int32_t get_offset_of__parametrizedConstructor_34() { return static_cast<int32_t>(offsetof(JsonObjectContract_tC08A0614773A277BE2FACD612729195811D606B5, ____parametrizedConstructor_34)); }
inline ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * get__parametrizedConstructor_34() const { return ____parametrizedConstructor_34; }
inline ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF ** get_address_of__parametrizedConstructor_34() { return &____parametrizedConstructor_34; }
inline void set__parametrizedConstructor_34(ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * value)
{
____parametrizedConstructor_34 = value;
Il2CppCodeGenWriteBarrier((void**)(&____parametrizedConstructor_34), (void*)value);
}
inline static int32_t get_offset_of__overrideConstructor_35() { return static_cast<int32_t>(offsetof(JsonObjectContract_tC08A0614773A277BE2FACD612729195811D606B5, ____overrideConstructor_35)); }
inline ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * get__overrideConstructor_35() const { return ____overrideConstructor_35; }
inline ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF ** get_address_of__overrideConstructor_35() { return &____overrideConstructor_35; }
inline void set__overrideConstructor_35(ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * value)
{
____overrideConstructor_35 = value;
Il2CppCodeGenWriteBarrier((void**)(&____overrideConstructor_35), (void*)value);
}
inline static int32_t get_offset_of__overrideCreator_36() { return static_cast<int32_t>(offsetof(JsonObjectContract_tC08A0614773A277BE2FACD612729195811D606B5, ____overrideCreator_36)); }
inline ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 * get__overrideCreator_36() const { return ____overrideCreator_36; }
inline ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 ** get_address_of__overrideCreator_36() { return &____overrideCreator_36; }
inline void set__overrideCreator_36(ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 * value)
{
____overrideCreator_36 = value;
Il2CppCodeGenWriteBarrier((void**)(&____overrideCreator_36), (void*)value);
}
inline static int32_t get_offset_of__parameterizedCreator_37() { return static_cast<int32_t>(offsetof(JsonObjectContract_tC08A0614773A277BE2FACD612729195811D606B5, ____parameterizedCreator_37)); }
inline ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 * get__parameterizedCreator_37() const { return ____parameterizedCreator_37; }
inline ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 ** get_address_of__parameterizedCreator_37() { return &____parameterizedCreator_37; }
inline void set__parameterizedCreator_37(ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 * value)
{
____parameterizedCreator_37 = value;
Il2CppCodeGenWriteBarrier((void**)(&____parameterizedCreator_37), (void*)value);
}
inline static int32_t get_offset_of__creatorParameters_38() { return static_cast<int32_t>(offsetof(JsonObjectContract_tC08A0614773A277BE2FACD612729195811D606B5, ____creatorParameters_38)); }
inline JsonPropertyCollection_tC08CC5508836C9712A08DDE9E2BC413BD3A61715 * get__creatorParameters_38() const { return ____creatorParameters_38; }
inline JsonPropertyCollection_tC08CC5508836C9712A08DDE9E2BC413BD3A61715 ** get_address_of__creatorParameters_38() { return &____creatorParameters_38; }
inline void set__creatorParameters_38(JsonPropertyCollection_tC08CC5508836C9712A08DDE9E2BC413BD3A61715 * value)
{
____creatorParameters_38 = value;
Il2CppCodeGenWriteBarrier((void**)(&____creatorParameters_38), (void*)value);
}
inline static int32_t get_offset_of__extensionDataValueType_39() { return static_cast<int32_t>(offsetof(JsonObjectContract_tC08A0614773A277BE2FACD612729195811D606B5, ____extensionDataValueType_39)); }
inline Type_t * get__extensionDataValueType_39() const { return ____extensionDataValueType_39; }
inline Type_t ** get_address_of__extensionDataValueType_39() { return &____extensionDataValueType_39; }
inline void set__extensionDataValueType_39(Type_t * value)
{
____extensionDataValueType_39 = value;
Il2CppCodeGenWriteBarrier((void**)(&____extensionDataValueType_39), (void*)value);
}
};
// Valve.Newtonsoft.Json.Serialization.JsonSerializerProxy
struct JsonSerializerProxy_t087EA4189F71D7BC8479FB15347611106FC05276 : public JsonSerializer_t1D5D385AB5641E8958FC0E6ECB498B4DC45BC4D4
{
public:
// Valve.Newtonsoft.Json.Serialization.JsonSerializerInternalReader Valve.Newtonsoft.Json.Serialization.JsonSerializerProxy::_serializerReader
JsonSerializerInternalReader_t1A72A0900D1B4E88BDB92687DA140B371979018A * ____serializerReader_31;
// Valve.Newtonsoft.Json.Serialization.JsonSerializerInternalWriter Valve.Newtonsoft.Json.Serialization.JsonSerializerProxy::_serializerWriter
JsonSerializerInternalWriter_tFC41B1098B36AA0C70654DDE4F15F387ED712EDA * ____serializerWriter_32;
// Valve.Newtonsoft.Json.JsonSerializer Valve.Newtonsoft.Json.Serialization.JsonSerializerProxy::_serializer
JsonSerializer_t1D5D385AB5641E8958FC0E6ECB498B4DC45BC4D4 * ____serializer_33;
public:
inline static int32_t get_offset_of__serializerReader_31() { return static_cast<int32_t>(offsetof(JsonSerializerProxy_t087EA4189F71D7BC8479FB15347611106FC05276, ____serializerReader_31)); }
inline JsonSerializerInternalReader_t1A72A0900D1B4E88BDB92687DA140B371979018A * get__serializerReader_31() const { return ____serializerReader_31; }
inline JsonSerializerInternalReader_t1A72A0900D1B4E88BDB92687DA140B371979018A ** get_address_of__serializerReader_31() { return &____serializerReader_31; }
inline void set__serializerReader_31(JsonSerializerInternalReader_t1A72A0900D1B4E88BDB92687DA140B371979018A * value)
{
____serializerReader_31 = value;
Il2CppCodeGenWriteBarrier((void**)(&____serializerReader_31), (void*)value);
}
inline static int32_t get_offset_of__serializerWriter_32() { return static_cast<int32_t>(offsetof(JsonSerializerProxy_t087EA4189F71D7BC8479FB15347611106FC05276, ____serializerWriter_32)); }
inline JsonSerializerInternalWriter_tFC41B1098B36AA0C70654DDE4F15F387ED712EDA * get__serializerWriter_32() const { return ____serializerWriter_32; }
inline JsonSerializerInternalWriter_tFC41B1098B36AA0C70654DDE4F15F387ED712EDA ** get_address_of__serializerWriter_32() { return &____serializerWriter_32; }
inline void set__serializerWriter_32(JsonSerializerInternalWriter_tFC41B1098B36AA0C70654DDE4F15F387ED712EDA * value)
{
____serializerWriter_32 = value;
Il2CppCodeGenWriteBarrier((void**)(&____serializerWriter_32), (void*)value);
}
inline static int32_t get_offset_of__serializer_33() { return static_cast<int32_t>(offsetof(JsonSerializerProxy_t087EA4189F71D7BC8479FB15347611106FC05276, ____serializer_33)); }
inline JsonSerializer_t1D5D385AB5641E8958FC0E6ECB498B4DC45BC4D4 * get__serializer_33() const { return ____serializer_33; }
inline JsonSerializer_t1D5D385AB5641E8958FC0E6ECB498B4DC45BC4D4 ** get_address_of__serializer_33() { return &____serializer_33; }
inline void set__serializer_33(JsonSerializer_t1D5D385AB5641E8958FC0E6ECB498B4DC45BC4D4 * value)
{
____serializer_33 = value;
Il2CppCodeGenWriteBarrier((void**)(&____serializer_33), (void*)value);
}
};
// Valve.Newtonsoft.Json.Serialization.JsonStringContract
struct JsonStringContract_tCBC48935FDB85CACCA24D751235BCCDA72F91299 : public JsonPrimitiveContract_t13E2CBC31714CB100233EB2014184B40973C2C84
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Valve.Newtonsoft.Json.JsonConverter[]
struct JsonConverterU5BU5D_tFCEA4D4687200F08D8F41AFF4CDC7EE5E08AACAB : public RuntimeArray
{
public:
ALIGN_FIELD (8) JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * m_Items[1];
public:
inline JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 ** 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, JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.String,Valve.Newtonsoft.Json.Linq.JToken>[]
struct KeyValuePair_2U5BU5D_t7A622914A381AA75E5CA5F22228AAEC514D3BE0D : public RuntimeArray
{
public:
ALIGN_FIELD (8) KeyValuePair_2_t12EC1C8B4977DCEE8CF178DACA28A94CA2A77BCA m_Items[1];
public:
inline KeyValuePair_2_t12EC1C8B4977DCEE8CF178DACA28A94CA2A77BCA GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline KeyValuePair_2_t12EC1C8B4977DCEE8CF178DACA28A94CA2A77BCA * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, KeyValuePair_2_t12EC1C8B4977DCEE8CF178DACA28A94CA2A77BCA value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL);
#endif
}
inline KeyValuePair_2_t12EC1C8B4977DCEE8CF178DACA28A94CA2A77BCA GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline KeyValuePair_2_t12EC1C8B4977DCEE8CF178DACA28A94CA2A77BCA * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_t12EC1C8B4977DCEE8CF178DACA28A94CA2A77BCA value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL);
#endif
}
};
// Valve.Newtonsoft.Json.Linq.JToken[]
struct JTokenU5BU5D_t4E50BA12BFD33E2099BB21C26BC05B63AE096327 : public RuntimeArray
{
public:
ALIGN_FIELD (8) JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * m_Items[1];
public:
inline JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 ** 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, JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// Valve.Newtonsoft.Json.Linq.JTokenType[]
struct JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B : public RuntimeArray
{
public:
ALIGN_FIELD (8) int32_t m_Items[1];
public:
inline int32_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline int32_t* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, int32_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline int32_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline int32_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, int32_t value)
{
m_Items[index] = value;
}
};
// System.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;
}
};
// 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.Type[]
struct TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F : public RuntimeArray
{
public:
ALIGN_FIELD (8) Type_t * m_Items[1];
public:
inline Type_t * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Type_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, Type_t * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline Type_t * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Type_t ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Type_t * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Reflection.ConstructorInfo[]
struct ConstructorInfoU5BU5D_t111EE7D53C51A47FE69FC3398DE007F7E100593E : public RuntimeArray
{
public:
ALIGN_FIELD (8) ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * m_Items[1];
public:
inline ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF ** 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, ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Reflection.ParameterInfo[]
struct ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694 : public RuntimeArray
{
public:
ALIGN_FIELD (8) ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * m_Items[1];
public:
inline ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB ** 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, ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Reflection.MethodInfo[]
struct MethodInfoU5BU5D_t93E968F23AF2DB5CFCFF13BE775A0E222C03586B : public RuntimeArray
{
public:
ALIGN_FIELD (8) MethodInfo_t * m_Items[1];
public:
inline MethodInfo_t * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline MethodInfo_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, MethodInfo_t * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline MethodInfo_t * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline MethodInfo_t ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, MethodInfo_t * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Reflection.ParameterModifier[]
struct ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA : public RuntimeArray
{
public:
ALIGN_FIELD (8) ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E m_Items[1];
public:
inline ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E * 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, ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->____byRef_0), (void*)NULL);
}
inline ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->____byRef_0), (void*)NULL);
}
};
// System.Reflection.PropertyInfo[]
struct PropertyInfoU5BU5D_tAD8E99B12FF99CA4F2EA37B612DE68E112B4CF7E : public RuntimeArray
{
public:
ALIGN_FIELD (8) PropertyInfo_t * m_Items[1];
public:
inline PropertyInfo_t * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline PropertyInfo_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, PropertyInfo_t * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline PropertyInfo_t * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline PropertyInfo_t ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, PropertyInfo_t * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Reflection.FieldInfo[]
struct FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE : public RuntimeArray
{
public:
ALIGN_FIELD (8) FieldInfo_t * m_Items[1];
public:
inline FieldInfo_t * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline FieldInfo_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, FieldInfo_t * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline FieldInfo_t * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline FieldInfo_t ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, FieldInfo_t * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Reflection.Assembly[]
struct AssemblyU5BU5D_t90BF014AA048450526A42C74F9583341A138DE58 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Assembly_t * m_Items[1];
public:
inline Assembly_t * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Assembly_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, Assembly_t * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline Assembly_t * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Assembly_t ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Assembly_t * 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);
}
};
// !0 System.Collections.ObjectModel.Collection`1<System.Object>::get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Collection_1_get_Item_mC98D6EB2688EFDD98DD611AE23DB3292F1174788_gshared (Collection_1_t71DBDD60829CD647D0C2B74C708518E5CAEDB942 * __this, int32_t ___index0, const RuntimeMethod* method);
// System.Int32 System.Collections.ObjectModel.Collection`1<System.Object>::get_Count()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Collection_1_get_Count_mB891B2C6170E86BE68B20F0FFE15B8FBA8CD7E27_gshared (Collection_1_t71DBDD60829CD647D0C2B74C708518E5CAEDB942 * __this, const RuntimeMethod* method);
// !0 System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::get_Key()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_m9D4E9BCBAB1BE560871A0889C851FC22A09975F4_gshared_inline (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE * __this, const RuntimeMethod* method);
// !1 System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::get_Value()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Value_m8C7B882C4D425535288FAAD08EAF11D289A43AEC_gshared_inline (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE * __this, const RuntimeMethod* method);
// System.Collections.Generic.IEnumerator`1<!0> System.Collections.ObjectModel.Collection`1<System.Object>::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Collection_1_GetEnumerator_m84C666D3430BC788AD5201FB9E6B1861AA833B36_gshared (Collection_1_t71DBDD60829CD647D0C2B74C708518E5CAEDB942 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::.ctor(!0,!1)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m783A0935E40FCB80D5940E8CCF0EFEFE41D7C7D3_gshared (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<System.Object>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_mC832F1AC0F814BAEB19175F5D7972A7507508BC3_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, const RuntimeMethod* method);
// System.Void System.Collections.ObjectModel.Collection`1<System.Object>::.ctor(System.Collections.Generic.IList`1<!0>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Collection_1__ctor_m0498F9DF24F6A8AC1485F2B59ED5374ED4D9B57A_gshared (Collection_1_t71DBDD60829CD647D0C2B74C708518E5CAEDB942 * __this, RuntimeObject* ___list0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::set_Item(!0,!1)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_set_Item_m466D001F105E25DEB5C9BCB17837EE92A27FDE93_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method);
// System.Void System.Collections.ObjectModel.Collection`1<System.Object>::ClearItems()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Collection_1_ClearItems_m5D99E71614EC357BE6AA7CA102E5636A0FD4F1B5_gshared (Collection_1_t71DBDD60829CD647D0C2B74C708518E5CAEDB942 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::Clear()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Clear_m1115171C74C982EA09CF1B8DB7E4C97ED6AC23D4_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::ContainsKey(!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_ContainsKey_m4EBC00E16E83DA33851A551757D2B7332D5756B9_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, RuntimeObject * ___key0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::.ctor(System.Collections.Generic.IEqualityComparer`1<!0>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m76CDCB0C7BECE95DBA94C7C98467F297E4451EE7_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method);
// System.Void System.Collections.ObjectModel.Collection`1<System.Object>::InsertItem(System.Int32,!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Collection_1_InsertItem_m440BD69ADAA5582A8BC62E0AF3C6F5F6A47F194F_gshared (Collection_1_t71DBDD60829CD647D0C2B74C708518E5CAEDB942 * __this, int32_t ___index0, RuntimeObject * ___item1, const RuntimeMethod* method);
// System.Collections.Generic.IList`1<!0> System.Collections.ObjectModel.Collection`1<System.Object>::get_Items()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject* Collection_1_get_Items_m0865B49FC5FD54F5EBC36C302A198541505330FC_gshared_inline (Collection_1_t71DBDD60829CD647D0C2B74C708518E5CAEDB942 * __this, const RuntimeMethod* method);
// System.Void System.Collections.ObjectModel.Collection`1<System.Object>::RemoveItem(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Collection_1_RemoveItem_mBDC461B2CD29D0B3A0D60916B47094403FEB37C5_gshared (Collection_1_t71DBDD60829CD647D0C2B74C708518E5CAEDB942 * __this, int32_t ___index0, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::Remove(!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_Remove_m0FCCD33CE2C6A7589E52A2AB0872FE361BF5EF60_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, RuntimeObject * ___key0, const RuntimeMethod* method);
// System.Void System.Collections.ObjectModel.Collection`1<System.Object>::SetItem(System.Int32,!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Collection_1_SetItem_mE383970EA590E045AB40C4D145A9FF39658CDA9C_gshared (Collection_1_t71DBDD60829CD647D0C2B74C708518E5CAEDB942 * __this, int32_t ___index0, RuntimeObject * ___item1, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::TryGetValue(!0,!1&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_TryGetValue_m3455807C552312C60038DF52EF328C3687442DE3_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, RuntimeObject * ___key0, RuntimeObject ** ___value1, const RuntimeMethod* method);
// System.Collections.Generic.Dictionary`2/KeyCollection<!0,!1> System.Collections.Generic.Dictionary`2<System.Object,System.Object>::get_Keys()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyCollection_t0394DE2BA7C2C82605C6E9DEBB21A8C5C792E97C * Dictionary_2_get_Keys_m079EE5437EE7D904E9E3F798041C1108B96B3AC3_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, const RuntimeMethod* method);
// System.Int32 Valve.Newtonsoft.Json.Utilities.CollectionUtils::IndexOfReference<System.Object>(System.Collections.Generic.List`1<T>,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CollectionUtils_IndexOfReference_TisRuntimeObject_m6458D9A48A48693002BFD6C82377B775CF05A602_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * ___list0, RuntimeObject * ___item1, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<Valve.Newtonsoft.Json.JsonPosition>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m0DEAE2C460B3FDD0F5DD4F79BA2F9AB9A56217B5_gshared (List_1_tB300EBCDF85B082F12B483D22C5C8070412F6C76 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<Valve.Newtonsoft.Json.JsonPosition>::Add(!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Add_m79C7EA0338961B160D163D636C9BE2C2CFF89147_gshared (List_1_tB300EBCDF85B082F12B483D22C5C8070412F6C76 * __this, JsonPosition_t6ED67A82A34F185D91B222CCC7CBF5E83CF9F422 ___item0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<Valve.Newtonsoft.Json.JsonPosition>::Reverse()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Reverse_m6F54B1AF5F84F297BFC36CD2EF9863F0B400CD9B_gshared (List_1_tB300EBCDF85B082F12B483D22C5C8070412F6C76 * __this, const RuntimeMethod* method);
// System.Int32 System.Array::IndexOf<System.Int32Enum>(!!0[],!!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_mBEB3AE9783E299CC73E61FB5350FA779DB1C80D2_gshared (Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A* ___array0, int32_t ___value1, const RuntimeMethod* method);
// System.Void System.Nullable`1<System.Boolean>::.ctor(!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_mD3154885E88D449C69AD9DEA6F9A3EF66A3FE996_gshared (Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 * __this, bool ___value0, const RuntimeMethod* method);
// System.Void System.Nullable`1<System.DateTime>::.ctor(!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_m381D5B1CD79C026584C8072033C17C7F05398C29_gshared (Nullable_1_t3290384E361396B3724B88B498CBF637D7E87B78 * __this, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___value0, const RuntimeMethod* method);
// System.Void System.Nullable`1<System.DateTimeOffset>::.ctor(!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_mA246C4883116BD24CCF0E607B6144637B4B7A1DA_gshared (Nullable_1_tD63596AAA40EDF5AE4981F1C2B4F3A8A24E1DD67 * __this, DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 ___value0, const RuntimeMethod* method);
// System.Void System.Nullable`1<System.Decimal>::.ctor(!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_m431A7B37A7FB27E824A48CAAF72930B7D596399D_gshared (Nullable_1_t980A9BF956626264580BF8B4E1E3DBD88D9337C1 * __this, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___value0, const RuntimeMethod* method);
// System.Void System.Nullable`1<System.Double>::.ctor(!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_m5ED9C022C8C437BF7E37E2A3B10C055DDA89CD67_gshared (Nullable_1_tBFE8022F4FD60FAE6E29634776F92F0C7DDF0ECF * __this, double ___value0, const RuntimeMethod* method);
// System.Void System.Nullable`1<System.Char>::.ctor(!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_mAFE62620EADA9FD8E49BA1C0E2A2815C8366D491_gshared (Nullable_1_tEB9036CD852DD7DCDAC49BEEC424155F285C4FD6 * __this, Il2CppChar ___value0, const RuntimeMethod* method);
// System.Void System.Nullable`1<System.Int32>::.ctor(!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_m11F9C228CFDF836DDFCD7880C09CB4098AB9D7F2_gshared (Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB * __this, int32_t ___value0, const RuntimeMethod* method);
// System.Void System.Nullable`1<System.Int16>::.ctor(!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_mA2C015497D01701140620ACCA04B8B4E2AE05FBC_gshared (Nullable_1_t6DD1091F06288053C77A1E21CDA46B9FC0C082FE * __this, int16_t ___value0, const RuntimeMethod* method);
// System.Void System.Nullable`1<System.UInt16>::.ctor(!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_m5E44BEDC1AA103BA971F1C268BD4A2B948603D35_gshared (Nullable_1_tF0BF09F44075092EA142C4F8348486254518EEA0 * __this, uint16_t ___value0, const RuntimeMethod* method);
// System.Void System.Nullable`1<System.Byte>::.ctor(!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_m2E6FC0D6DDFF0359075E8195130765ED04EA2010_gshared (Nullable_1_tB4C4F9557481ABDC6DFB4E6C55B481A29DDCC299 * __this, uint8_t ___value0, const RuntimeMethod* method);
// System.Void System.Nullable`1<System.SByte>::.ctor(!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_mC34B5D0417CE39DCD95A14161B422BA0BD5984EA_gshared (Nullable_1_t2F4FA162D87EDE69C4CAA5E3E739CB702A780EAE * __this, int8_t ___value0, const RuntimeMethod* method);
// System.Void System.Nullable`1<System.Int64>::.ctor(!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_m7BFDFEF1C4C2787E71585BBE4908D47CBF80AE30_gshared (Nullable_1_t8A84BC5F3B3D55B8E96E9B812BDCCCB962EB2AB5 * __this, int64_t ___value0, const RuntimeMethod* method);
// System.Void System.Nullable`1<System.Single>::.ctor(!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_mAB819EE77BD7E38C1E0E494C307D52F42DB259AE_gshared (Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 * __this, float ___value0, const RuntimeMethod* method);
// System.Void System.Nullable`1<System.UInt32>::.ctor(!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_m08091F597C74B397324E4C8599F224F6AA9BA3BB_gshared (Nullable_1_tF156B0EB96E1F21CE812F1DFC94779464E49DAF3 * __this, uint32_t ___value0, const RuntimeMethod* method);
// System.Void System.Nullable`1<System.UInt64>::.ctor(!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_m9BFC744597EAD1898820D2D3EC00C3644BC066FB_gshared (Nullable_1_tE6DB2821D06FC32375C83F1A7E8AFF51557CE14B * __this, uint64_t ___value0, const RuntimeMethod* method);
// System.Void System.Nullable`1<System.Guid>::.ctor(!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_m463791C1A9398343D7CEEF8BE9442A7BC643134B_gshared (Nullable_1_t98453FD73999D83935C31555C4C67329F550B15D * __this, Guid_t ___value0, const RuntimeMethod* method);
// System.Void System.Nullable`1<System.TimeSpan>::.ctor(!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_m76013822874DCED561CAA4F6418BCBE65D273DA7_gshared (Nullable_1_tA5F97AD8281B6EDEE6731D95047BA50C9996309E * __this, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___value0, const RuntimeMethod* method);
// System.Collections.Generic.IEnumerator`1<T> Valve.Newtonsoft.Json.Linq.JEnumerable`1<System.Object>::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JEnumerable_1_GetEnumerator_mD38C5E5C8E5CE658A8A0CBE2B1D4363D45876B01_gshared (JEnumerable_1_t0692028F1F49BF617F898E878F495BDA60AAA349 * __this, const RuntimeMethod* method);
// T Valve.Newtonsoft.Json.Linq.JToken::Annotation<System.Object>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * JToken_Annotation_TisRuntimeObject_m24CA9A76D06C18B15A75A3185D91402B9427E125_gshared (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * __this, const RuntimeMethod* method);
// System.Void System.Array::Resize<System.Object>(!!0[]&,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Resize_TisRuntimeObject_mB0DBA075A9D1EE03ADE844755C17088FDC73B1EF_gshared (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** ___array0, int32_t ___newSize1, const RuntimeMethod* method);
// System.Void System.Nullable`1<System.Int32Enum>::.ctor(!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_m5C28B34DE8C6D3A1E136828428C71543A08B32D3_gshared (Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 * __this, int32_t ___value0, const RuntimeMethod* method);
// System.Boolean System.Nullable`1<System.Int32Enum>::get_HasValue()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_mB0A6989529561627BBB65E6E4342DAA6549DD5A9_gshared_inline (Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 * __this, const RuntimeMethod* method);
// !0 System.Nullable`1<System.Int32Enum>::GetValueOrDefault()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t Nullable_1_GetValueOrDefault_m256BDDFFC9F6CE76EBBC5A9A6ED0A6FFB9F0455F_gshared_inline (Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 * __this, const RuntimeMethod* method);
// System.Collections.Generic.Comparer`1<!0> System.Collections.Generic.Comparer`1<System.Object>::get_Default()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Comparer_1_t1DB742817DFA148A84E0F6044361F97B935058A7 * Comparer_1_get_Default_m84DEFB8B389618F98B055848A21DEAB2782581A3_gshared (const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.Dictionary`2<Valve.Newtonsoft.Json.Serialization.ResolverContractKey,System.Object>::TryGetValue(!0,!1&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_TryGetValue_mFCE0DF182B3561320DFC6CA699E9146D996B8567_gshared (Dictionary_2_tFD48FC1CA78C37008F9BE838785DF33D22AABEDA * __this, ResolverContractKey_tFC0DA3A6971980AA6D4E6E0D85CEB0D25615534B ___key0, RuntimeObject ** ___value1, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2<Valve.Newtonsoft.Json.Serialization.ResolverContractKey,System.Object>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_mA022F4451A3A6C627F110984A8299A7AFF185C59_gshared (Dictionary_2_tFD48FC1CA78C37008F9BE838785DF33D22AABEDA * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2<Valve.Newtonsoft.Json.Serialization.ResolverContractKey,System.Object>::.ctor(System.Collections.Generic.IDictionary`2<!0,!1>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_mFA0FB48026BD0BC2053B0F0BD550513F3557101D_gshared (Dictionary_2_tFD48FC1CA78C37008F9BE838785DF33D22AABEDA * __this, RuntimeObject* ___dictionary0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2<Valve.Newtonsoft.Json.Serialization.ResolverContractKey,System.Object>::set_Item(!0,!1)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_set_Item_mDE9325202E28E7E84757B78883B48BF8958C586C_gshared (Dictionary_2_tFD48FC1CA78C37008F9BE838785DF33D22AABEDA * __this, ResolverContractKey_tFC0DA3A6971980AA6D4E6E0D85CEB0D25615534B ___key0, RuntimeObject * ___value1, const RuntimeMethod* method);
// System.Void System.Func`2<System.Object,System.Boolean>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Func_2__ctor_m5153AE6EE06BA488EF3D92A0DCF7E4EF530961B5_gshared (Func_2_t7EE965B791A606D187CCB69569A433D4CBB36879 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method);
// System.Collections.Generic.IEnumerable`1<!!0> System.Linq.Enumerable::Where<System.Object>(System.Collections.Generic.IEnumerable`1<!!0>,System.Func`2<!!0,System.Boolean>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Enumerable_Where_TisRuntimeObject_m77C4748BC22520E365AB1F6A46B2C8A8BF525492_gshared (RuntimeObject* ___source0, Func_2_t7EE965B791A606D187CCB69569A433D4CBB36879 * ___predicate1, const RuntimeMethod* method);
// System.Collections.Generic.List`1<!!0> System.Linq.Enumerable::ToList<System.Object>(System.Collections.Generic.IEnumerable`1<!!0>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * Enumerable_ToList_TisRuntimeObject_mB1685447626095E135D3DC76A9DAA32B14AC7AD2_gshared (RuntimeObject* ___source0, const RuntimeMethod* method);
// System.Collections.Generic.List`1/Enumerator<!0> System.Collections.Generic.List`1<System.Object>::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_tE0C99528D3DCE5863566CE37BD94162A4C0431CD List_1_GetEnumerator_m52CC760E475D226A2B75048D70C4E22692F9F68D_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, const RuntimeMethod* method);
// !0 System.Collections.Generic.List`1/Enumerator<System.Object>::get_Current()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_mD7829C7E8CFBEDD463B15A951CDE9B90A12CC55C_gshared_inline (Enumerator_tE0C99528D3DCE5863566CE37BD94162A4C0431CD * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.List`1<System.Object>::Contains(!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Contains_mE08D561E86879A26245096C572A8593279383FDB_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, RuntimeObject * ___item0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<System.Object>::Add(!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Add_m6930161974C7504C80F52EC379EF012387D43138_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, RuntimeObject * ___item0, const RuntimeMethod* method);
// T Valve.Newtonsoft.Json.Serialization.JsonTypeReflector::GetAttribute<System.Object>(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * JsonTypeReflector_GetAttribute_TisRuntimeObject_mAAF2DC002D6A4A40732F2AFFE03A51CC08DFC465_gshared (RuntimeObject * ___provider0, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Object>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m38B1099DDAD7EEDE2F4CDAB11C095AC784AC2E34_gshared (Enumerator_tE0C99528D3DCE5863566CE37BD94162A4C0431CD * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<System.Object>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m94D0DAE031619503CDA6E53C5C3CC78AF3139472_gshared (Enumerator_tE0C99528D3DCE5863566CE37BD94162A4C0431CD * __this, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Utilities.CollectionUtils::AddRange<System.Object>(System.Collections.Generic.IList`1<T>,System.Collections.Generic.IEnumerable`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionUtils_AddRange_TisRuntimeObject_m3D9182FBB92D8AACB0583059C8339553220DDFE6_gshared (RuntimeObject* ___initial0, RuntimeObject* ___collection1, const RuntimeMethod* method);
// T Valve.Newtonsoft.Json.Serialization.JsonTypeReflector::GetCachedAttribute<System.Object>(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * JsonTypeReflector_GetCachedAttribute_TisRuntimeObject_m236AA84987823AAD85EC94017F7C77BBDB25DF62_gshared (RuntimeObject * ___attributeProvider0, const RuntimeMethod* method);
// System.Void System.Func`1<System.Object>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Func_1__ctor_mE02699FC76D830943069F8FC19D16C3B72A98A1F_gshared (Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method);
// System.Void System.Func`2<System.Object,System.Object>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Func_2__ctor_mE2AF7615AD18E9CD92B1909285F5EC5DA8D180C8_gshared (Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method);
// System.Collections.Generic.IEnumerable`1<!!1> System.Linq.Enumerable::SelectMany<System.Object,System.Object>(System.Collections.Generic.IEnumerable`1<!!0>,System.Func`2<!!0,System.Collections.Generic.IEnumerable`1<!!1>>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Enumerable_SelectMany_TisRuntimeObject_TisRuntimeObject_mC5842AD0D2C99ABB84B41345EA1480587202F268_gshared (RuntimeObject* ___source0, Func_2_t312750ADAF4ADF4BDF5BFE7AD89753C25B90D66C * ___selector1, const RuntimeMethod* method);
// !!0 System.Linq.Enumerable::LastOrDefault<System.Object>(System.Collections.Generic.IEnumerable`1<!!0>,System.Func`2<!!0,System.Boolean>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerable_LastOrDefault_TisRuntimeObject_mD8B42F43A8C1D65529D0CDAD1CAAF84EF7742DA6_gshared (RuntimeObject* ___source0, Func_2_t7EE965B791A606D187CCB69569A433D4CBB36879 * ___predicate1, const RuntimeMethod* method);
// T Valve.Newtonsoft.Json.Utilities.ReflectionUtils::GetAttribute<System.Object>(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ReflectionUtils_GetAttribute_TisRuntimeObject_m03D4886C8E1C9FC954C9D2EF2FBFF0303881696F_gshared (RuntimeObject * ___attributeProvider0, const RuntimeMethod* method);
// System.Func`2<T,System.Object> Valve.Newtonsoft.Json.Utilities.ReflectionDelegateFactory::CreateGet<System.Object>(System.Reflection.MemberInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 * ReflectionDelegateFactory_CreateGet_TisRuntimeObject_m166AF4E86BA33EEBA827CA6E677F832942C2FD27_gshared (ReflectionDelegateFactory_t87E79CD61C3504844C338EEC1949177370F2029A * __this, MemberInfo_t * ___memberInfo0, const RuntimeMethod* method);
// System.Action`2<T,System.Object> Valve.Newtonsoft.Json.Utilities.ReflectionDelegateFactory::CreateSet<System.Object>(System.Reflection.MemberInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Action_2_t0DB6FD6F515527EAB552B690A291778C6F00D48C * ReflectionDelegateFactory_CreateSet_TisRuntimeObject_mB53D97746F5CF11CB4A90CEDAA556F892464DC3A_gshared (ReflectionDelegateFactory_t87E79CD61C3504844C338EEC1949177370F2029A * __this, MemberInfo_t * ___memberInfo0, const RuntimeMethod* method);
// !!0 System.Linq.Enumerable::First<System.Object>(System.Collections.Generic.IEnumerable`1<!!0>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerable_First_TisRuntimeObject_mCB330DB6E69029984A35331B45A118EB39AE73B8_gshared (RuntimeObject* ___source0, const RuntimeMethod* method);
// System.Boolean System.Nullable`1<System.Boolean>::get_HasValue()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_m275A31438FCDAEEE039E95D887684E04FD6ECE2B_gshared_inline (Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<System.Object>::Reverse()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Reverse_m72D0A68F3695A2828EFA0CD851D1A88BEA4827A4_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, const RuntimeMethod* method);
// System.Void System.Func`2<System.Object,System.Int32>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Func_2__ctor_m54408ED2EFA4F730EF559B45507C0009D7EC7917_gshared (Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method);
// System.Linq.IOrderedEnumerable`1<!!0> System.Linq.Enumerable::OrderBy<System.Object,System.Int32>(System.Collections.Generic.IEnumerable`1<!!0>,System.Func`2<!!0,!!1>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Enumerable_OrderBy_TisRuntimeObject_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_mB8C03381361FC6A5A781633557B8E0F196E80787_gshared (RuntimeObject* ___source0, Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 * ___keySelector1, const RuntimeMethod* method);
// System.Void System.Predicate`1<System.Object>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_mBC07C59B061E1B719FFE2B6E5541E9011D906C3C_gshared (Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method);
// System.Boolean System.Nullable`1<System.Int32>::get_HasValue()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_mB664E2C41CADA8413EF8842E6601B8C696A7CE15_gshared_inline (Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB * __this, const RuntimeMethod* method);
// !0 System.Nullable`1<System.Int32>::GetValueOrDefault()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t Nullable_1_GetValueOrDefault_mE89BB8F302DF31EE202251F4746859285860B6B6_gshared_inline (Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB * __this, const RuntimeMethod* method);
// !1 System.Func`2<System.Object,System.Object>::Invoke(!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Func_2_Invoke_m552C133A8966B9ED91540130ACA9BD367212EED4_gshared (Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 * __this, RuntimeObject * ___arg0, const RuntimeMethod* method);
// !0 System.Func`1<System.Object>::Invoke()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Func_1_Invoke_m33E1702C6A8DBC8D2A39F4E9A1F5B14BEFAD9597_gshared (Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 * __this, const RuntimeMethod* method);
// System.Void System.Action`2<System.Object,System.Object>::Invoke(!0,!1)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_2_Invoke_m1738FFAE74BE5E599FD42520FA2BEF69D1AC4709_gshared (Action_2_t0DB6FD6F515527EAB552B690A291778C6F00D48C * __this, RuntimeObject * ___arg10, RuntimeObject * ___arg21, const RuntimeMethod* method);
// TResult Valve.Newtonsoft.Json.Utilities.MethodCall`2<System.Object,System.Object>::Invoke(T,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * MethodCall_2_Invoke_m614565DD357D42A60D8A80E7B1292EF287D88034_gshared (MethodCall_2_t56986CA125FFF5F08B7842782AF0C0E8499096EC * __this, RuntimeObject * ___target0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args1, const RuntimeMethod* method);
// System.Object Valve.Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object>::Invoke(System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ObjectConstructor_1_Invoke_m76CEC2C9D43866532AC0B3DD9666B693A0C2FA70_gshared (ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 * __this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args0, const RuntimeMethod* method);
// System.Boolean Valve.Newtonsoft.Json.Utilities.BidirectionalDictionary`2<System.Object,System.Object>::TryGetByFirst(TFirst,TSecond&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BidirectionalDictionary_2_TryGetByFirst_m7483012CF84D86ADB0E9B270F29DE40040908AFD_gshared (BidirectionalDictionary_2_t76DD1D29B83082CBD7E1DCFFCDB31D713706305F * __this, RuntimeObject * ___first0, RuntimeObject ** ___second1, const RuntimeMethod* method);
// System.Boolean Valve.Newtonsoft.Json.Utilities.BidirectionalDictionary`2<System.Object,System.Object>::TryGetBySecond(TSecond,TFirst&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BidirectionalDictionary_2_TryGetBySecond_mF32044FD3161A0548AD88129B75D49C15D9583F2_gshared (BidirectionalDictionary_2_t76DD1D29B83082CBD7E1DCFFCDB31D713706305F * __this, RuntimeObject * ___second0, RuntimeObject ** ___first1, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Utilities.BidirectionalDictionary`2<System.Object,System.Object>::Set(TFirst,TSecond)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BidirectionalDictionary_2_Set_m1F4DEFD2B8133D86A8291329A1A7CFCE3D3B869F_gshared (BidirectionalDictionary_2_t76DD1D29B83082CBD7E1DCFFCDB31D713706305F * __this, RuntimeObject * ___first0, RuntimeObject * ___second1, const RuntimeMethod* method);
// TValue Valve.Newtonsoft.Json.Utilities.ThreadSafeStore`2<Valve.Newtonsoft.Json.Serialization.DefaultSerializationBinder/TypeNameKey,System.Object>::Get(TKey)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ThreadSafeStore_2_Get_mCC4CA7817233EBB8CF196D666E830EE5C7C1F498_gshared (ThreadSafeStore_2_tD81F450F1E882CA01ABD9599FE3AD28E8E39532E * __this, TypeNameKey_tF95DA6A58197B920C4D8C069E6543C6EEDA08312 ___key0, const RuntimeMethod* method);
// System.Void System.Func`2<Valve.Newtonsoft.Json.Serialization.DefaultSerializationBinder/TypeNameKey,System.Object>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Func_2__ctor_mCC8BBB4B4D0B5CAA90D9A48B1B7535309393F185_gshared (Func_2_tE5701C2289C2DE5C70D801898DAB7305A6A10ABD * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Utilities.ThreadSafeStore`2<Valve.Newtonsoft.Json.Serialization.DefaultSerializationBinder/TypeNameKey,System.Object>::.ctor(System.Func`2<TKey,TValue>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThreadSafeStore_2__ctor_m326F7A2B1892AD60B192245345D475865D849EB8_gshared (ThreadSafeStore_2_tD81F450F1E882CA01ABD9599FE3AD28E8E39532E * __this, Func_2_tE5701C2289C2DE5C70D801898DAB7305A6A10ABD * ___creator0, const RuntimeMethod* method);
// System.Delegate System.Delegate::Combine(System.Delegate,System.Delegate)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Delegate_t * Delegate_Combine_mC25D2F7DECAFBA6D9A2F9EBA8A77063F0658ECF1 (Delegate_t * ___a0, Delegate_t * ___b1, const RuntimeMethod* method);
// System.Delegate System.Delegate::Remove(System.Delegate,System.Delegate)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Delegate_t * Delegate_Remove_m0B0DB7D1B3AF96B71AFAA72BA0EFE32FBBC2932D (Delegate_t * ___source0, Delegate_t * ___value1, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Linq.JPropertyKeyedCollection::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JPropertyKeyedCollection__ctor_m36884BDFA31F8F9F8D9D3F70619D741C57172744 (JPropertyKeyedCollection_t9EEDCB4FA22748C56AC9E4CD74AAA26F9D54A668 * __this, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Linq.JContainer::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JContainer__ctor_m806125BD93FAD395697010C35D9C9E7FDD72C85D (JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * __this, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Linq.JContainer::.ctor(Valve.Newtonsoft.Json.Linq.JContainer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JContainer__ctor_m54AFFDE4AD8BFD964CE72C893D5CC7BC9F8CBE90 (JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * __this, JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * ___other0, const RuntimeMethod* method);
// System.Int32 Valve.Newtonsoft.Json.Linq.JPropertyKeyedCollection::IndexOfReference(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JPropertyKeyedCollection_IndexOfReference_mC199F62EF820B0A14B207970485BA689302058BA (JPropertyKeyedCollection_t9EEDCB4FA22748C56AC9E4CD74AAA26F9D54A668 * __this, JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___t0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Linq.JContainer::InsertItem(System.Int32,Valve.Newtonsoft.Json.Linq.JToken,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JContainer_InsertItem_m6D0281DACCAF85E972DC13B6BDA70FDFF2C62A16 (JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * __this, int32_t ___index0, JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___item1, bool ___skipParentCheck2, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Utilities.ValidationUtils::ArgumentNotNull(System.Object,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidationUtils_ArgumentNotNull_mA6823FB6A1184537A467BD3BAFA6C06126EF7AE9 (RuntimeObject * ___value0, String_t* ___parameterName1, 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.Type System.Object::GetType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60 (RuntimeObject * __this, const RuntimeMethod* method);
// System.String Valve.Newtonsoft.Json.Utilities.StringUtils::FormatWith(System.String,System.IFormatProvider,System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* StringUtils_FormatWith_m0847578DA1FD34776DD9C2AB8A4BA694D05A8C6D (String_t* ___format0, RuntimeObject* ___provider1, RuntimeObject * ___arg02, RuntimeObject * ___arg13, 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);
// System.String Valve.Newtonsoft.Json.Linq.JProperty::get_Name()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* JProperty_get_Name_mB214D204AA250BF1F6F73A038028946203F592ED_inline (JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * __this, 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);
// System.Boolean Valve.Newtonsoft.Json.Linq.JPropertyKeyedCollection::TryGetValue(System.String,Valve.Newtonsoft.Json.Linq.JToken&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JPropertyKeyedCollection_TryGetValue_mA49B9420FDAC72D4FB53F2D8941C254D9C969055 (JPropertyKeyedCollection_t9EEDCB4FA22748C56AC9E4CD74AAA26F9D54A668 * __this, String_t* ___key0, JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 ** ___value1, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Linq.JObject::.ctor(Valve.Newtonsoft.Json.Linq.JObject)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JObject__ctor_mBFA6CD97D90E21A16D4994A223785DA45D6C9650 (JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21 * __this, JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21 * ___other0, const RuntimeMethod* method);
// Valve.Newtonsoft.Json.Linq.JProperty Valve.Newtonsoft.Json.Linq.JObject::Property(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * JObject_Property_mEC5F823BEC18E9431F3D141136C0DF2479E40481 (JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21 * __this, String_t* ___name0, const RuntimeMethod* method);
// Valve.Newtonsoft.Json.Linq.JToken Valve.Newtonsoft.Json.Linq.JProperty::get_Value()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * JProperty_get_Value_m21DE887CFE1475851AB5EACB2D7C91BDE5F70571 (JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * __this, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Linq.JProperty::set_Value(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JProperty_set_Value_mBB9E014490FCA737CD534BA06585F9B86B3636AA (JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * __this, JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Linq.JProperty::.ctor(System.String,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JProperty__ctor_m2EB3FF0AC7616ACC0AF2972AD0141CEFA72FB6E5 (JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * __this, String_t* ___name0, RuntimeObject * ___content1, const RuntimeMethod* method);
// Valve.Newtonsoft.Json.JsonReaderException Valve.Newtonsoft.Json.JsonReaderException::Create(Valve.Newtonsoft.Json.JsonReader,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonReaderException_t1C6240BBE2D8125B80F7E72F0EE572194B3263DC * JsonReaderException_Create_m18EFA18A35D7F56A561A4590598A68B2EABD92DA (JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C * ___reader0, String_t* ___message1, const RuntimeMethod* method);
// System.Boolean Valve.Newtonsoft.Json.JsonReader::MoveToContent()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonReader_MoveToContent_mC731E1F4E1490266724B14F0A196A2F3DD74E07C (JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C * __this, const RuntimeMethod* method);
// System.String Valve.Newtonsoft.Json.Utilities.StringUtils::FormatWith(System.String,System.IFormatProvider,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* StringUtils_FormatWith_mA244260995FC801D82F22EC897F3F8BEB8649583 (String_t* ___format0, RuntimeObject* ___provider1, RuntimeObject * ___arg02, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Linq.JObject::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JObject__ctor_mA5D65F80D283064BD1F55F868F8EB24250880D09 (JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21 * __this, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Linq.JToken::SetLineInfo(Valve.Newtonsoft.Json.IJsonLineInfo,Valve.Newtonsoft.Json.Linq.JsonLoadSettings)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JToken_SetLineInfo_m0315B529EF0753213FB16C33647C9F2539B64193 (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * __this, RuntimeObject* ___lineInfo0, JsonLoadSettings_tB5261F5FE452665393A12B96A793FE21DF91D45A * ___settings1, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Linq.JContainer::ReadTokenFrom(Valve.Newtonsoft.Json.JsonReader,Valve.Newtonsoft.Json.Linq.JsonLoadSettings)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JContainer_ReadTokenFrom_m9F2F0DC444C28738C14E6C38BA5DCB71D4F900C6 (JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * __this, JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C * ___reader0, JsonLoadSettings_tB5261F5FE452665393A12B96A793FE21DF91D45A * ___options1, const RuntimeMethod* method);
// !0 System.Collections.ObjectModel.Collection`1<Valve.Newtonsoft.Json.Linq.JToken>::get_Item(System.Int32)
inline JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * Collection_1_get_Item_m15DBFB0B2A8BBE8C7E7543FBF38F39E2F5FCDD68 (Collection_1_tE93A51FAD5C6E4AC1EA698A55BAC243AF37645E8 * __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * (*) (Collection_1_tE93A51FAD5C6E4AC1EA698A55BAC243AF37645E8 *, int32_t, const RuntimeMethod*))Collection_1_get_Item_mC98D6EB2688EFDD98DD611AE23DB3292F1174788_gshared)(__this, ___index0, method);
}
// System.Int32 System.Collections.ObjectModel.Collection`1<Valve.Newtonsoft.Json.Linq.JToken>::get_Count()
inline int32_t Collection_1_get_Count_mFBAF831BD2E005EC9C48277B8A772455C7BD7F98 (Collection_1_tE93A51FAD5C6E4AC1EA698A55BAC243AF37645E8 * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (Collection_1_tE93A51FAD5C6E4AC1EA698A55BAC243AF37645E8 *, const RuntimeMethod*))Collection_1_get_Count_mB891B2C6170E86BE68B20F0FFE15B8FBA8CD7E27_gshared)(__this, method);
}
// System.Boolean Valve.Newtonsoft.Json.Linq.JPropertyKeyedCollection::Contains(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JPropertyKeyedCollection_Contains_m9BB27B5F4B094F98E40DF0EAC64317EEDB446A5B (JPropertyKeyedCollection_t9EEDCB4FA22748C56AC9E4CD74AAA26F9D54A668 * __this, String_t* ___key0, const RuntimeMethod* method);
// System.Collections.Generic.ICollection`1<System.String> Valve.Newtonsoft.Json.Linq.JPropertyKeyedCollection::get_Keys()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JPropertyKeyedCollection_get_Keys_m577631D5857315D17E55A844F7299E726DA73611 (JPropertyKeyedCollection_t9EEDCB4FA22748C56AC9E4CD74AAA26F9D54A668 * __this, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Linq.JToken::Remove()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JToken_Remove_mF35E87978A3AA0EBAAC3BEDE0489BAF613EB0816 (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * __this, const RuntimeMethod* method);
// System.Void System.NotImplementedException::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotImplementedException__ctor_m8BEA657E260FC05F0C6D2C43A6E9BC08040F59C4 (NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4 * __this, const RuntimeMethod* method);
// !0 System.Collections.Generic.KeyValuePair`2<System.String,Valve.Newtonsoft.Json.Linq.JToken>::get_Key()
inline String_t* KeyValuePair_2_get_Key_m45BFA059E51F33E95AF197929A0137E9D6259472_inline (KeyValuePair_2_t12EC1C8B4977DCEE8CF178DACA28A94CA2A77BCA * __this, const RuntimeMethod* method)
{
return (( String_t* (*) (KeyValuePair_2_t12EC1C8B4977DCEE8CF178DACA28A94CA2A77BCA *, const RuntimeMethod*))KeyValuePair_2_get_Key_m9D4E9BCBAB1BE560871A0889C851FC22A09975F4_gshared_inline)(__this, method);
}
// !1 System.Collections.Generic.KeyValuePair`2<System.String,Valve.Newtonsoft.Json.Linq.JToken>::get_Value()
inline JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * KeyValuePair_2_get_Value_m9489FE438F11E13960A112B6A2D6C0C4E9C80CF9_inline (KeyValuePair_2_t12EC1C8B4977DCEE8CF178DACA28A94CA2A77BCA * __this, const RuntimeMethod* method)
{
return (( JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * (*) (KeyValuePair_2_t12EC1C8B4977DCEE8CF178DACA28A94CA2A77BCA *, const RuntimeMethod*))KeyValuePair_2_get_Value_m8C7B882C4D425535288FAAD08EAF11D289A43AEC_gshared_inline)(__this, method);
}
// System.Void Valve.Newtonsoft.Json.Linq.JContainer::RemoveAll()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JContainer_RemoveAll_m163DE07E22FF6C36233AA61D83378135F7B03026 (JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * __this, 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.Void System.ArgumentOutOfRangeException::.ctor(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * __this, String_t* ___paramName0, String_t* ___message1, const RuntimeMethod* method);
// System.Int32 Valve.Newtonsoft.Json.Linq.JContainer::get_Count()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JContainer_get_Count_mCB2E5A4D2368D8D4F78C0906FC1CCB1E1659E482 (JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * __this, const RuntimeMethod* method);
// System.Collections.Generic.IEnumerator`1<!0> System.Collections.ObjectModel.Collection`1<Valve.Newtonsoft.Json.Linq.JToken>::GetEnumerator()
inline RuntimeObject* Collection_1_GetEnumerator_m5EA56D38D8EE8ADBC32C0F009BBC6C4C5FC4CA95 (Collection_1_tE93A51FAD5C6E4AC1EA698A55BAC243AF37645E8 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject* (*) (Collection_1_tE93A51FAD5C6E4AC1EA698A55BAC243AF37645E8 *, const RuntimeMethod*))Collection_1_GetEnumerator_m84C666D3430BC788AD5201FB9E6B1861AA833B36_gshared)(__this, method);
}
// System.Void System.Collections.Generic.KeyValuePair`2<System.String,Valve.Newtonsoft.Json.Linq.JToken>::.ctor(!0,!1)
inline void KeyValuePair_2__ctor_mF3F60729C52A21BEFF75A44C41F46B3081B48BC1 (KeyValuePair_2_t12EC1C8B4977DCEE8CF178DACA28A94CA2A77BCA * __this, String_t* ___key0, JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value1, const RuntimeMethod* method)
{
(( void (*) (KeyValuePair_2_t12EC1C8B4977DCEE8CF178DACA28A94CA2A77BCA *, String_t*, JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 *, const RuntimeMethod*))KeyValuePair_2__ctor_m783A0935E40FCB80D5940E8CCF0EFEFE41D7C7D3_gshared)(__this, ___key0, ___value1, method);
}
// System.Void Valve.Newtonsoft.Json.Linq.JObject/<GetEnumerator>d__55::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CGetEnumeratorU3Ed__55__ctor_m554515660591E66C92F3E696226F7A6E349E0C65 (U3CGetEnumeratorU3Ed__55_tAF5C1853556CCCC9CEF660623C26BDD211A03777 * __this, int32_t ___U3CU3E1__state0, const RuntimeMethod* method);
// System.Void System.ComponentModel.PropertyChangedEventArgs::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyChangedEventArgs__ctor_mBC582C76F42CDEE455B350302FFDF687D135A9E2 (PropertyChangedEventArgs_t90CF85B82F87D594F73F03364494C77592B11F46 * __this, String_t* ___propertyName0, const RuntimeMethod* method);
// System.Void System.ComponentModel.PropertyChangedEventHandler::Invoke(System.Object,System.ComponentModel.PropertyChangedEventArgs)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyChangedEventHandler_Invoke_m7DB0AABF07302887DD3FEE589E1F585B4C768F57 (PropertyChangedEventHandler_t617E98E1876A8EB394D2B329340CE02D21FFFC82 * __this, RuntimeObject * ___sender0, PropertyChangedEventArgs_t90CF85B82F87D594F73F03364494C77592B11F46 * ___e1, const RuntimeMethod* method);
// System.Void System.Object::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0 (RuntimeObject * __this, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Linq.JObject/<GetEnumerator>d__55::<>m__Finally1()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CGetEnumeratorU3Ed__55_U3CU3Em__Finally1_m923EB67AD63F8F966D85D16A3399D9DC00F02DFD (U3CGetEnumeratorU3Ed__55_tAF5C1853556CCCC9CEF660623C26BDD211A03777 * __this, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Linq.JObject/<GetEnumerator>d__55::System.IDisposable.Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CGetEnumeratorU3Ed__55_System_IDisposable_Dispose_m3C1D12677D20FB533460944785276DFB04E8867E (U3CGetEnumeratorU3Ed__55_tAF5C1853556CCCC9CEF660623C26BDD211A03777 * __this, const RuntimeMethod* method);
// System.Void System.NotSupportedException::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotSupportedException__ctor_mA121DE1CAC8F25277DEB489DC7771209D91CAE33 (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * __this, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Linq.JContainer::CheckReentrancy()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JContainer_CheckReentrancy_mAF327BEEBF2AB369F2BAB29B24E969EB3AE4BA54 (JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * __this, const RuntimeMethod* method);
// Valve.Newtonsoft.Json.Linq.JValue Valve.Newtonsoft.Json.Linq.JValue::CreateNull()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * JValue_CreateNull_m3CCD3BCA725D2424F3C62FA811D56AD35DCD1066 (const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Linq.JProperty/JPropertyList::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JPropertyList__ctor_m54C446E38B7BA765A9810A494C43DCF834BE8615 (JPropertyList_t134608E64E62337A93C6668B1266F077ABBA87A7 * __this, const RuntimeMethod* method);
// System.Void System.ArgumentOutOfRangeException::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_m215F35137EDD190A037E2E9BDA3BF5DC056FD7C3 (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * __this, const RuntimeMethod* method);
// System.Boolean Valve.Newtonsoft.Json.Linq.JContainer::IsTokenUnchanged(Valve.Newtonsoft.Json.Linq.JToken,Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JContainer_IsTokenUnchanged_mF79EB885D6A4D06837FE4636230D656CB01907CE (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___currentValue0, JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___newValue1, const RuntimeMethod* method);
// Valve.Newtonsoft.Json.Linq.JContainer Valve.Newtonsoft.Json.Linq.JToken::get_Parent()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * JToken_get_Parent_m68142FEB329F72F2258F55D7A790C43E7E823F54_inline (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * __this, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Linq.JObject::InternalPropertyChanging(Valve.Newtonsoft.Json.Linq.JProperty)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JObject_InternalPropertyChanging_m309C03018467BBBA00844368ABBC50EDC04F7901 (JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21 * __this, JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * ___childProperty0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Linq.JContainer::SetItem(System.Int32,Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JContainer_SetItem_mD87FDD449FAC5704E1F14E0A6C243C18BDE3AFBC (JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * __this, int32_t ___index0, JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___item1, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Linq.JObject::InternalPropertyChanged(Valve.Newtonsoft.Json.Linq.JProperty)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JObject_InternalPropertyChanged_mE24B885ECDE4741DFDFB719B13366F0FDADEA2EB (JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21 * __this, JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * ___childProperty0, const RuntimeMethod* method);
// System.Type System.Type::GetTypeFromHandle(System.RuntimeTypeHandle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6 (RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D ___handle0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.JsonException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonException__ctor_m6AA74CB38DE6808C894C51C26CA5FB64B861204A (JsonException_tB1AABB3C8AE18D781A8A9A14CB03AF7AFEA33928 * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Int32 Valve.Newtonsoft.Json.Linq.JProperty/JPropertyList::IndexOf(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JPropertyList_IndexOf_m95CFD1504BC9EDA47B597C063630BA895B2CDC23 (JPropertyList_t134608E64E62337A93C6668B1266F077ABBA87A7 * __this, JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___item0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Linq.JProperty::.ctor(Valve.Newtonsoft.Json.Linq.JProperty)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JProperty__ctor_m25284D52407BE7C243C3050B71C802F7FE02E6AB (JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * __this, JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * ___other0, const RuntimeMethod* method);
// System.Boolean Valve.Newtonsoft.Json.Linq.JContainer::IsMultiContent(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JContainer_IsMultiContent_mA7CCA5F8B591B81E90ACBF6F95B07F2FE920C1E2 (JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * __this, RuntimeObject * ___content0, const RuntimeMethod* method);
// Valve.Newtonsoft.Json.Linq.JToken Valve.Newtonsoft.Json.Linq.JContainer::CreateFromContent(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * JContainer_CreateFromContent_m6C1B7EED8B07C91FDAEED4C1AD3C22ABA8F2B6EC (RuntimeObject * ___content0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Linq.JArray::.ctor(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JArray__ctor_m537FC96A0306E2BB2EFEB4203E546E3FA5C95FF7 (JArray_t8AE8A8AB34EFB9A770BC34AB9EA47BE9DC7F45C2 * __this, RuntimeObject * ___content0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Linq.JProperty::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JProperty__ctor_mA6F2A9891CC8E62C2DA933667DCC34E3CAD58D30 (JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * __this, String_t* ___name0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Linq.JProperty/JPropertyList/<GetEnumerator>d__1::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CGetEnumeratorU3Ed__1__ctor_m91764E42D1685BD1F138059EE4AA3324A883E5D3 (U3CGetEnumeratorU3Ed__1_tC1FEADB7666AE584966BE3173BB361B41F66278B * __this, int32_t ___U3CU3E1__state0, const RuntimeMethod* method);
// System.Collections.Generic.IEnumerator`1<Valve.Newtonsoft.Json.Linq.JToken> Valve.Newtonsoft.Json.Linq.JProperty/JPropertyList::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JPropertyList_GetEnumerator_mA8DB59314C0CF0952CD07FBE30F8B966952648AE (JPropertyList_t134608E64E62337A93C6668B1266F077ABBA87A7 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<Valve.Newtonsoft.Json.Linq.JToken>::.ctor()
inline void List_1__ctor_m45E107F2041DA7F9BD3655EB428863FF929CC0A7 (List_1_t1FE4F7D4C3DCC24F3D8A78270F707A3AD8614891 * __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t1FE4F7D4C3DCC24F3D8A78270F707A3AD8614891 *, const RuntimeMethod*))List_1__ctor_mC832F1AC0F814BAEB19175F5D7972A7507508BC3_gshared)(__this, method);
}
// System.Void System.Collections.ObjectModel.Collection`1<Valve.Newtonsoft.Json.Linq.JToken>::.ctor(System.Collections.Generic.IList`1<!0>)
inline void Collection_1__ctor_m42F90571DF5E7BEF7C89058C2D97F53401B48ADA (Collection_1_tE93A51FAD5C6E4AC1EA698A55BAC243AF37645E8 * __this, RuntimeObject* ___list0, const RuntimeMethod* method)
{
(( void (*) (Collection_1_tE93A51FAD5C6E4AC1EA698A55BAC243AF37645E8 *, RuntimeObject*, const RuntimeMethod*))Collection_1__ctor_m0498F9DF24F6A8AC1485F2B59ED5374ED4D9B57A_gshared)(__this, ___list0, method);
}
// System.Void Valve.Newtonsoft.Json.Linq.JPropertyKeyedCollection::EnsureDictionary()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JPropertyKeyedCollection_EnsureDictionary_mA93022ABABD31F2D927AD5105DBFA7709F1596A5 (JPropertyKeyedCollection_t9EEDCB4FA22748C56AC9E4CD74AAA26F9D54A668 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2<System.String,Valve.Newtonsoft.Json.Linq.JToken>::set_Item(!0,!1)
inline void Dictionary_2_set_Item_mEAFCBE178160D90F6B1B13D32DC79EF10956C7B1 (Dictionary_2_t40E91C81D5ADA639FA8CD3CD9E4F8824FE177EB5 * __this, String_t* ___key0, JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value1, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_t40E91C81D5ADA639FA8CD3CD9E4F8824FE177EB5 *, String_t*, JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 *, const RuntimeMethod*))Dictionary_2_set_Item_m466D001F105E25DEB5C9BCB17837EE92A27FDE93_gshared)(__this, ___key0, ___value1, method);
}
// System.Void System.Collections.ObjectModel.Collection`1<Valve.Newtonsoft.Json.Linq.JToken>::ClearItems()
inline void Collection_1_ClearItems_mCB99294ADE5F3E816455A1D6065314DCF59E8441 (Collection_1_tE93A51FAD5C6E4AC1EA698A55BAC243AF37645E8 * __this, const RuntimeMethod* method)
{
(( void (*) (Collection_1_tE93A51FAD5C6E4AC1EA698A55BAC243AF37645E8 *, const RuntimeMethod*))Collection_1_ClearItems_m5D99E71614EC357BE6AA7CA102E5636A0FD4F1B5_gshared)(__this, method);
}
// System.Void System.Collections.Generic.Dictionary`2<System.String,Valve.Newtonsoft.Json.Linq.JToken>::Clear()
inline void Dictionary_2_Clear_mB3BCF9056485232023D77666585314524CA939F0 (Dictionary_2_t40E91C81D5ADA639FA8CD3CD9E4F8824FE177EB5 * __this, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_t40E91C81D5ADA639FA8CD3CD9E4F8824FE177EB5 *, const RuntimeMethod*))Dictionary_2_Clear_m1115171C74C982EA09CF1B8DB7E4C97ED6AC23D4_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.Dictionary`2<System.String,Valve.Newtonsoft.Json.Linq.JToken>::ContainsKey(!0)
inline bool Dictionary_2_ContainsKey_m46DAB166725A201739D8CFAD762065E32BC2332F (Dictionary_2_t40E91C81D5ADA639FA8CD3CD9E4F8824FE177EB5 * __this, String_t* ___key0, const RuntimeMethod* method)
{
return (( bool (*) (Dictionary_2_t40E91C81D5ADA639FA8CD3CD9E4F8824FE177EB5 *, String_t*, const RuntimeMethod*))Dictionary_2_ContainsKey_m4EBC00E16E83DA33851A551757D2B7332D5756B9_gshared)(__this, ___key0, method);
}
// System.Void System.Collections.Generic.Dictionary`2<System.String,Valve.Newtonsoft.Json.Linq.JToken>::.ctor(System.Collections.Generic.IEqualityComparer`1<!0>)
inline void Dictionary_2__ctor_m823795218CD6E4A6E6024D6F34B7B5A8C9F301D8 (Dictionary_2_t40E91C81D5ADA639FA8CD3CD9E4F8824FE177EB5 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_t40E91C81D5ADA639FA8CD3CD9E4F8824FE177EB5 *, RuntimeObject*, const RuntimeMethod*))Dictionary_2__ctor_m76CDCB0C7BECE95DBA94C7C98467F297E4451EE7_gshared)(__this, ___comparer0, method);
}
// System.String Valve.Newtonsoft.Json.Linq.JPropertyKeyedCollection::GetKeyForItem(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JPropertyKeyedCollection_GetKeyForItem_mCB510667D2C6D59E50940F715265C448420BC709 (JPropertyKeyedCollection_t9EEDCB4FA22748C56AC9E4CD74AAA26F9D54A668 * __this, JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___item0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Linq.JPropertyKeyedCollection::AddKey(System.String,Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JPropertyKeyedCollection_AddKey_mC54F260B46D7282F96138F85453EEF9B35EB9F52 (JPropertyKeyedCollection_t9EEDCB4FA22748C56AC9E4CD74AAA26F9D54A668 * __this, String_t* ___key0, JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___item1, const RuntimeMethod* method);
// System.Void System.Collections.ObjectModel.Collection`1<Valve.Newtonsoft.Json.Linq.JToken>::InsertItem(System.Int32,!0)
inline void Collection_1_InsertItem_m5D953906118E75375B29BC0BC86344F5BBF17108 (Collection_1_tE93A51FAD5C6E4AC1EA698A55BAC243AF37645E8 * __this, int32_t ___index0, JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___item1, const RuntimeMethod* method)
{
(( void (*) (Collection_1_tE93A51FAD5C6E4AC1EA698A55BAC243AF37645E8 *, int32_t, JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 *, const RuntimeMethod*))Collection_1_InsertItem_m440BD69ADAA5582A8BC62E0AF3C6F5F6A47F194F_gshared)(__this, ___index0, ___item1, method);
}
// System.Collections.Generic.IList`1<!0> System.Collections.ObjectModel.Collection`1<Valve.Newtonsoft.Json.Linq.JToken>::get_Items()
inline RuntimeObject* Collection_1_get_Items_m6513B3933A70CD2F3015EA2D86D807724ECC7855_inline (Collection_1_tE93A51FAD5C6E4AC1EA698A55BAC243AF37645E8 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject* (*) (Collection_1_tE93A51FAD5C6E4AC1EA698A55BAC243AF37645E8 *, const RuntimeMethod*))Collection_1_get_Items_m0865B49FC5FD54F5EBC36C302A198541505330FC_gshared_inline)(__this, method);
}
// System.Void Valve.Newtonsoft.Json.Linq.JPropertyKeyedCollection::RemoveKey(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JPropertyKeyedCollection_RemoveKey_mB3D9093735829DBAA7459C1F439D3E31A2C650A3 (JPropertyKeyedCollection_t9EEDCB4FA22748C56AC9E4CD74AAA26F9D54A668 * __this, String_t* ___key0, const RuntimeMethod* method);
// System.Void System.Collections.ObjectModel.Collection`1<Valve.Newtonsoft.Json.Linq.JToken>::RemoveItem(System.Int32)
inline void Collection_1_RemoveItem_m63344A784362304AC7E63FB0A92D5483592880D1 (Collection_1_tE93A51FAD5C6E4AC1EA698A55BAC243AF37645E8 * __this, int32_t ___index0, const RuntimeMethod* method)
{
(( void (*) (Collection_1_tE93A51FAD5C6E4AC1EA698A55BAC243AF37645E8 *, int32_t, const RuntimeMethod*))Collection_1_RemoveItem_mBDC461B2CD29D0B3A0D60916B47094403FEB37C5_gshared)(__this, ___index0, method);
}
// System.Boolean System.Collections.Generic.Dictionary`2<System.String,Valve.Newtonsoft.Json.Linq.JToken>::Remove(!0)
inline bool Dictionary_2_Remove_m18C9B6951739FD37B26D91F1C4AAD76841979CB8 (Dictionary_2_t40E91C81D5ADA639FA8CD3CD9E4F8824FE177EB5 * __this, String_t* ___key0, const RuntimeMethod* method)
{
return (( bool (*) (Dictionary_2_t40E91C81D5ADA639FA8CD3CD9E4F8824FE177EB5 *, String_t*, const RuntimeMethod*))Dictionary_2_Remove_m0FCCD33CE2C6A7589E52A2AB0872FE361BF5EF60_gshared)(__this, ___key0, method);
}
// System.Void System.Collections.ObjectModel.Collection`1<Valve.Newtonsoft.Json.Linq.JToken>::SetItem(System.Int32,!0)
inline void Collection_1_SetItem_mC3BE48879B5DD38EF28EA5CB0A99BA62DF69EBAA (Collection_1_tE93A51FAD5C6E4AC1EA698A55BAC243AF37645E8 * __this, int32_t ___index0, JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___item1, const RuntimeMethod* method)
{
(( void (*) (Collection_1_tE93A51FAD5C6E4AC1EA698A55BAC243AF37645E8 *, int32_t, JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 *, const RuntimeMethod*))Collection_1_SetItem_mE383970EA590E045AB40C4D145A9FF39658CDA9C_gshared)(__this, ___index0, ___item1, method);
}
// System.Boolean System.Collections.Generic.Dictionary`2<System.String,Valve.Newtonsoft.Json.Linq.JToken>::TryGetValue(!0,!1&)
inline bool Dictionary_2_TryGetValue_m44BA172B67C17DEDD31FC62AC8CC1749EE881B38 (Dictionary_2_t40E91C81D5ADA639FA8CD3CD9E4F8824FE177EB5 * __this, String_t* ___key0, JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 ** ___value1, const RuntimeMethod* method)
{
return (( bool (*) (Dictionary_2_t40E91C81D5ADA639FA8CD3CD9E4F8824FE177EB5 *, String_t*, JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 **, const RuntimeMethod*))Dictionary_2_TryGetValue_m3455807C552312C60038DF52EF328C3687442DE3_gshared)(__this, ___key0, ___value1, method);
}
// System.Collections.Generic.Dictionary`2/KeyCollection<!0,!1> System.Collections.Generic.Dictionary`2<System.String,Valve.Newtonsoft.Json.Linq.JToken>::get_Keys()
inline KeyCollection_t44B3F4E6CFC63F9D85C76C64DE24F71FCD3A5E7F * Dictionary_2_get_Keys_m1BA1B40A2CDEC15D25F9DE17D4B913B6D2C5039B (Dictionary_2_t40E91C81D5ADA639FA8CD3CD9E4F8824FE177EB5 * __this, const RuntimeMethod* method)
{
return (( KeyCollection_t44B3F4E6CFC63F9D85C76C64DE24F71FCD3A5E7F * (*) (Dictionary_2_t40E91C81D5ADA639FA8CD3CD9E4F8824FE177EB5 *, const RuntimeMethod*))Dictionary_2_get_Keys_m079EE5437EE7D904E9E3F798041C1108B96B3AC3_gshared)(__this, method);
}
// System.Int32 Valve.Newtonsoft.Json.Utilities.CollectionUtils::IndexOfReference<Valve.Newtonsoft.Json.Linq.JToken>(System.Collections.Generic.List`1<T>,T)
inline int32_t CollectionUtils_IndexOfReference_TisJToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_mE594989165E77E1DBF642A36960514AB8A8ECE39 (List_1_t1FE4F7D4C3DCC24F3D8A78270F707A3AD8614891 * ___list0, JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___item1, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t1FE4F7D4C3DCC24F3D8A78270F707A3AD8614891 *, JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 *, const RuntimeMethod*))CollectionUtils_IndexOfReference_TisRuntimeObject_m6458D9A48A48693002BFD6C82377B775CF05A602_gshared)(___list0, ___item1, method);
}
// System.StringComparer System.StringComparer::get_Ordinal()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * StringComparer_get_Ordinal_m1F38FBAB170DF80D33FE2A849D30FF2E314D9FDB_inline (const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Linq.JValue::.ctor(Valve.Newtonsoft.Json.Linq.JValue)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JValue__ctor_m250481A9F85445244713F31837B372A9C88618FB (JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * __this, JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * ___other0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Linq.JValue::.ctor(System.Object,Valve.Newtonsoft.Json.Linq.JTokenType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JValue__ctor_mCB35F856D5396641B4783B5A647B6C0545D9EC18 (JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * __this, RuntimeObject * ___value0, int32_t ___type1, const RuntimeMethod* method);
// System.Void System.IO.StringWriter::.ctor(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringWriter__ctor_m4D44D4D5B0CFDEEB172C7D61171340D76432A1EE (StringWriter_t194EF1526E072B93984370042AA80926C2EB6139 * __this, RuntimeObject* ___formatProvider0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.JsonTextWriter::.ctor(System.IO.TextWriter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonTextWriter__ctor_m6A65911186F3177C78B402AA4E42B375BFB38482 (JsonTextWriter_t56407EC76E70ABAD12ED7BF65BCF353E98D18FC6 * __this, TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * ___textWriter0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.JsonWriter::WriteToken(Valve.Newtonsoft.Json.JsonReader)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_WriteToken_m837CD7EF44EDBDDEBF96CF29EE0EE66CA037293B (JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * __this, JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C * ___reader0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Linq.JRaw::.ctor(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JRaw__ctor_m48FA7D8C382E6F0829C9BEAFEC03E2D42ADE2F32 (JRaw_tEA065B3ED6F70E2FA12CA996B102A3FD16330C86 * __this, RuntimeObject * ___rawJson0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Linq.JRaw::.ctor(Valve.Newtonsoft.Json.Linq.JRaw)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JRaw__ctor_m3492D1F41DB1545B9E274355D1F01F3907197C8C (JRaw_tEA065B3ED6F70E2FA12CA996B102A3FD16330C86 * __this, JRaw_tEA065B3ED6F70E2FA12CA996B102A3FD16330C86 * ___other0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<Valve.Newtonsoft.Json.JsonPosition>::.ctor()
inline void List_1__ctor_m0DEAE2C460B3FDD0F5DD4F79BA2F9AB9A56217B5 (List_1_tB300EBCDF85B082F12B483D22C5C8070412F6C76 * __this, const RuntimeMethod* method)
{
(( void (*) (List_1_tB300EBCDF85B082F12B483D22C5C8070412F6C76 *, const RuntimeMethod*))List_1__ctor_m0DEAE2C460B3FDD0F5DD4F79BA2F9AB9A56217B5_gshared)(__this, method);
}
// System.Void Valve.Newtonsoft.Json.JsonPosition::.ctor(Valve.Newtonsoft.Json.JsonContainerType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonPosition__ctor_m5216051B7C101053D8EB886DC2BB0D990DD91E9E (JsonPosition_t6ED67A82A34F185D91B222CCC7CBF5E83CF9F422 * __this, int32_t ___type0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<Valve.Newtonsoft.Json.JsonPosition>::Add(!0)
inline void List_1_Add_m79C7EA0338961B160D163D636C9BE2C2CFF89147 (List_1_tB300EBCDF85B082F12B483D22C5C8070412F6C76 * __this, JsonPosition_t6ED67A82A34F185D91B222CCC7CBF5E83CF9F422 ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_tB300EBCDF85B082F12B483D22C5C8070412F6C76 *, JsonPosition_t6ED67A82A34F185D91B222CCC7CBF5E83CF9F422 , const RuntimeMethod*))List_1_Add_m79C7EA0338961B160D163D636C9BE2C2CFF89147_gshared)(__this, ___item0, method);
}
// System.Void System.Collections.Generic.List`1<Valve.Newtonsoft.Json.JsonPosition>::Reverse()
inline void List_1_Reverse_m6F54B1AF5F84F297BFC36CD2EF9863F0B400CD9B (List_1_tB300EBCDF85B082F12B483D22C5C8070412F6C76 * __this, const RuntimeMethod* method)
{
(( void (*) (List_1_tB300EBCDF85B082F12B483D22C5C8070412F6C76 *, const RuntimeMethod*))List_1_Reverse_m6F54B1AF5F84F297BFC36CD2EF9863F0B400CD9B_gshared)(__this, method);
}
// System.String Valve.Newtonsoft.Json.JsonPosition::BuildPath(System.Collections.Generic.List`1<Valve.Newtonsoft.Json.JsonPosition>,System.Nullable`1<Valve.Newtonsoft.Json.JsonPosition>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JsonPosition_BuildPath_m0D65BA29F845BD67FDC75467E6C48B6E2F1F6A09 (List_1_tB300EBCDF85B082F12B483D22C5C8070412F6C76 * ___positions0, Nullable_1_t26D29E116F22D7CF824C44D52B758C14D035667D ___currentPosition1, 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.String Valve.Newtonsoft.Json.Linq.JToken::ToString(Valve.Newtonsoft.Json.Formatting,Valve.Newtonsoft.Json.JsonConverter[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JToken_ToString_m306344673FA4886CFDDFBFEA927AE665A55ADA22 (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * __this, int32_t ___formatting0, JsonConverterU5BU5D_tFCEA4D4687200F08D8F41AFF4CDC7EE5E08AACAB* ___converters1, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.JsonWriter::set_Formatting(Valve.Newtonsoft.Json.Formatting)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_set_Formatting_m5CDDE84AEA2B048C10F16AF91243CCFDE0387CA1 (JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * __this, int32_t ___value0, const RuntimeMethod* method);
// System.Int32 System.Array::IndexOf<Valve.Newtonsoft.Json.Linq.JTokenType>(!!0[],!!0)
inline int32_t Array_IndexOf_TisJTokenType_t43765D0A61D4F44B41AA73D201C761E37F4DDDAD_mA520CE43FA4D4479B47F64810CC997867FCA3823 (JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* ___array0, int32_t ___value1, const RuntimeMethod* method)
{
return (( int32_t (*) (JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B*, int32_t, const RuntimeMethod*))Array_IndexOf_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_mBEB3AE9783E299CC73E61FB5350FA779DB1C80D2_gshared)(___array0, ___value1, method);
}
// Valve.Newtonsoft.Json.Linq.JValue Valve.Newtonsoft.Json.Linq.JToken::EnsureValue(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * JToken_EnsureValue_m29697CE7680576BB6FBCBE36F876F9AF97384D85 (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method);
// System.Boolean Valve.Newtonsoft.Json.Linq.JToken::ValidateToken(Valve.Newtonsoft.Json.Linq.JToken,Valve.Newtonsoft.Json.Linq.JTokenType[],System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JToken_ValidateToken_m7301477AC0BE9EA8911A05AC253126C4F2B05F68 (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___o0, JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* ___validTypes1, bool ___nullable2, const RuntimeMethod* method);
// System.String Valve.Newtonsoft.Json.Linq.JToken::GetType(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JToken_GetType_m936BAF5656FA294832F37052918D181807F59906 (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___token0, const RuntimeMethod* method);
// System.Object Valve.Newtonsoft.Json.Linq.JValue::get_Value()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline (JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * __this, const RuntimeMethod* method);
// System.Boolean System.Convert::ToBoolean(System.Object,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Convert_ToBoolean_m881535C7C6F8B032F5883E7F18A90C27690FB5E4 (RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method);
// System.DateTimeOffset System.DateTimeOffset::Parse(System.String,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 DateTimeOffset_Parse_m219FE48FD7B6B4936B3BD5257F5D87CFA1545ED7 (String_t* ___input0, RuntimeObject* ___formatProvider1, const RuntimeMethod* method);
// System.DateTime System.Convert::ToDateTime(System.Object,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 Convert_ToDateTime_m246003CF3103F7DF9D6E817DCEFAE2CF8068862D (RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method);
// System.Void System.DateTimeOffset::.ctor(System.DateTime)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTimeOffset__ctor_mFD299293EB81B2254A30C665E7613F7C40A10C69 (DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 * __this, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___dateTime0, const RuntimeMethod* method);
// System.Void System.Nullable`1<System.Boolean>::.ctor(!0)
inline void Nullable_1__ctor_mD3154885E88D449C69AD9DEA6F9A3EF66A3FE996 (Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 * __this, bool ___value0, const RuntimeMethod* method)
{
(( void (*) (Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 *, bool, const RuntimeMethod*))Nullable_1__ctor_mD3154885E88D449C69AD9DEA6F9A3EF66A3FE996_gshared)(__this, ___value0, method);
}
// System.Int64 System.Convert::ToInt64(System.Object,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_m8964FDE5D82FEC54106DBF35E1F67D70F6E73E29 (RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method);
// System.DateTime System.DateTimeOffset::get_DateTime()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 DateTimeOffset_get_DateTime_m5101B7B7920B8C28AB2D5A7E4B8F7C2FAFC2F328 (DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 * __this, const RuntimeMethod* method);
// System.Void System.Nullable`1<System.DateTime>::.ctor(!0)
inline void Nullable_1__ctor_m381D5B1CD79C026584C8072033C17C7F05398C29 (Nullable_1_t3290384E361396B3724B88B498CBF637D7E87B78 * __this, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___value0, const RuntimeMethod* method)
{
(( void (*) (Nullable_1_t3290384E361396B3724B88B498CBF637D7E87B78 *, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 , const RuntimeMethod*))Nullable_1__ctor_m381D5B1CD79C026584C8072033C17C7F05398C29_gshared)(__this, ___value0, method);
}
// System.Void System.Nullable`1<System.DateTimeOffset>::.ctor(!0)
inline void Nullable_1__ctor_mA246C4883116BD24CCF0E607B6144637B4B7A1DA (Nullable_1_tD63596AAA40EDF5AE4981F1C2B4F3A8A24E1DD67 * __this, DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 ___value0, const RuntimeMethod* method)
{
(( void (*) (Nullable_1_tD63596AAA40EDF5AE4981F1C2B4F3A8A24E1DD67 *, DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 , const RuntimeMethod*))Nullable_1__ctor_mA246C4883116BD24CCF0E607B6144637B4B7A1DA_gshared)(__this, ___value0, method);
}
// System.Decimal System.Convert::ToDecimal(System.Object,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Convert_ToDecimal_mD8F65E8B251DBE61789CAD032172D089375D1E5B (RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method);
// System.Void System.Nullable`1<System.Decimal>::.ctor(!0)
inline void Nullable_1__ctor_m431A7B37A7FB27E824A48CAAF72930B7D596399D (Nullable_1_t980A9BF956626264580BF8B4E1E3DBD88D9337C1 * __this, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___value0, const RuntimeMethod* method)
{
(( void (*) (Nullable_1_t980A9BF956626264580BF8B4E1E3DBD88D9337C1 *, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 , const RuntimeMethod*))Nullable_1__ctor_m431A7B37A7FB27E824A48CAAF72930B7D596399D_gshared)(__this, ___value0, method);
}
// System.Double System.Convert::ToDouble(System.Object,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Convert_ToDouble_m053A47D87C59CA7A87D4E67E5E06368D775D7651 (RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method);
// System.Void System.Nullable`1<System.Double>::.ctor(!0)
inline void Nullable_1__ctor_m5ED9C022C8C437BF7E37E2A3B10C055DDA89CD67 (Nullable_1_tBFE8022F4FD60FAE6E29634776F92F0C7DDF0ECF * __this, double ___value0, const RuntimeMethod* method)
{
(( void (*) (Nullable_1_tBFE8022F4FD60FAE6E29634776F92F0C7DDF0ECF *, double, const RuntimeMethod*))Nullable_1__ctor_m5ED9C022C8C437BF7E37E2A3B10C055DDA89CD67_gshared)(__this, ___value0, method);
}
// System.Char System.Convert::ToChar(System.Object,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Convert_ToChar_m94EF86BDBD5110CF4C652C48A625F546AA24CE95 (RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method);
// System.Void System.Nullable`1<System.Char>::.ctor(!0)
inline void Nullable_1__ctor_mAFE62620EADA9FD8E49BA1C0E2A2815C8366D491 (Nullable_1_tEB9036CD852DD7DCDAC49BEEC424155F285C4FD6 * __this, Il2CppChar ___value0, const RuntimeMethod* method)
{
(( void (*) (Nullable_1_tEB9036CD852DD7DCDAC49BEEC424155F285C4FD6 *, Il2CppChar, const RuntimeMethod*))Nullable_1__ctor_mAFE62620EADA9FD8E49BA1C0E2A2815C8366D491_gshared)(__this, ___value0, method);
}
// System.Int32 System.Convert::ToInt32(System.Object,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_m5D40340597602FB6C20BAB933E8B29617232757A (RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method);
// System.Int16 System.Convert::ToInt16(System.Object,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_m9E4E48A97E050355468F58D2EAEB3AB3C811CE8B (RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method);
// System.UInt16 System.Convert::ToUInt16(System.Object,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_mB7311DB5960043FD81C1305B69C5328126F43C89 (RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method);
// System.Byte System.Convert::ToByte(System.Object,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_m71CFEFDB61F13E2AD7ECF91BA5DEE0616C1E857A (RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method);
// System.SByte System.Convert::ToSByte(System.Object,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_m2716303126BD8C930D1D4E8590F8706A8F26AD48 (RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method);
// System.Void System.Nullable`1<System.Int32>::.ctor(!0)
inline void Nullable_1__ctor_m11F9C228CFDF836DDFCD7880C09CB4098AB9D7F2 (Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB * __this, int32_t ___value0, const RuntimeMethod* method)
{
(( void (*) (Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB *, int32_t, const RuntimeMethod*))Nullable_1__ctor_m11F9C228CFDF836DDFCD7880C09CB4098AB9D7F2_gshared)(__this, ___value0, method);
}
// System.Void System.Nullable`1<System.Int16>::.ctor(!0)
inline void Nullable_1__ctor_mA2C015497D01701140620ACCA04B8B4E2AE05FBC (Nullable_1_t6DD1091F06288053C77A1E21CDA46B9FC0C082FE * __this, int16_t ___value0, const RuntimeMethod* method)
{
(( void (*) (Nullable_1_t6DD1091F06288053C77A1E21CDA46B9FC0C082FE *, int16_t, const RuntimeMethod*))Nullable_1__ctor_mA2C015497D01701140620ACCA04B8B4E2AE05FBC_gshared)(__this, ___value0, method);
}
// System.Void System.Nullable`1<System.UInt16>::.ctor(!0)
inline void Nullable_1__ctor_m5E44BEDC1AA103BA971F1C268BD4A2B948603D35 (Nullable_1_tF0BF09F44075092EA142C4F8348486254518EEA0 * __this, uint16_t ___value0, const RuntimeMethod* method)
{
(( void (*) (Nullable_1_tF0BF09F44075092EA142C4F8348486254518EEA0 *, uint16_t, const RuntimeMethod*))Nullable_1__ctor_m5E44BEDC1AA103BA971F1C268BD4A2B948603D35_gshared)(__this, ___value0, method);
}
// System.Void System.Nullable`1<System.Byte>::.ctor(!0)
inline void Nullable_1__ctor_m2E6FC0D6DDFF0359075E8195130765ED04EA2010 (Nullable_1_tB4C4F9557481ABDC6DFB4E6C55B481A29DDCC299 * __this, uint8_t ___value0, const RuntimeMethod* method)
{
(( void (*) (Nullable_1_tB4C4F9557481ABDC6DFB4E6C55B481A29DDCC299 *, uint8_t, const RuntimeMethod*))Nullable_1__ctor_m2E6FC0D6DDFF0359075E8195130765ED04EA2010_gshared)(__this, ___value0, method);
}
// System.Void System.Nullable`1<System.SByte>::.ctor(!0)
inline void Nullable_1__ctor_mC34B5D0417CE39DCD95A14161B422BA0BD5984EA (Nullable_1_t2F4FA162D87EDE69C4CAA5E3E739CB702A780EAE * __this, int8_t ___value0, const RuntimeMethod* method)
{
(( void (*) (Nullable_1_t2F4FA162D87EDE69C4CAA5E3E739CB702A780EAE *, int8_t, const RuntimeMethod*))Nullable_1__ctor_mC34B5D0417CE39DCD95A14161B422BA0BD5984EA_gshared)(__this, ___value0, method);
}
// System.Void System.Nullable`1<System.Int64>::.ctor(!0)
inline void Nullable_1__ctor_m7BFDFEF1C4C2787E71585BBE4908D47CBF80AE30 (Nullable_1_t8A84BC5F3B3D55B8E96E9B812BDCCCB962EB2AB5 * __this, int64_t ___value0, const RuntimeMethod* method)
{
(( void (*) (Nullable_1_t8A84BC5F3B3D55B8E96E9B812BDCCCB962EB2AB5 *, int64_t, const RuntimeMethod*))Nullable_1__ctor_m7BFDFEF1C4C2787E71585BBE4908D47CBF80AE30_gshared)(__this, ___value0, method);
}
// System.Single System.Convert::ToSingle(System.Object,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Convert_ToSingle_mDC4B8C88AF6F230E79A887EFD4D745CB08341828 (RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method);
// System.Void System.Nullable`1<System.Single>::.ctor(!0)
inline void Nullable_1__ctor_mAB819EE77BD7E38C1E0E494C307D52F42DB259AE (Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 * __this, float ___value0, const RuntimeMethod* method)
{
(( void (*) (Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 *, float, const RuntimeMethod*))Nullable_1__ctor_mAB819EE77BD7E38C1E0E494C307D52F42DB259AE_gshared)(__this, ___value0, method);
}
// System.UInt32 System.Convert::ToUInt32(System.Object,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_mB53B83E03C15DCD785806793ACC3083FCC7F4BCA (RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method);
// System.Void System.Nullable`1<System.UInt32>::.ctor(!0)
inline void Nullable_1__ctor_m08091F597C74B397324E4C8599F224F6AA9BA3BB (Nullable_1_tF156B0EB96E1F21CE812F1DFC94779464E49DAF3 * __this, uint32_t ___value0, const RuntimeMethod* method)
{
(( void (*) (Nullable_1_tF156B0EB96E1F21CE812F1DFC94779464E49DAF3 *, uint32_t, const RuntimeMethod*))Nullable_1__ctor_m08091F597C74B397324E4C8599F224F6AA9BA3BB_gshared)(__this, ___value0, method);
}
// System.UInt64 System.Convert::ToUInt64(System.Object,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_mA8C3C5498FC28CBA0EB0C37409EB9E04CCF6B8D2 (RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method);
// System.Void System.Nullable`1<System.UInt64>::.ctor(!0)
inline void Nullable_1__ctor_m9BFC744597EAD1898820D2D3EC00C3644BC066FB (Nullable_1_tE6DB2821D06FC32375C83F1A7E8AFF51557CE14B * __this, uint64_t ___value0, const RuntimeMethod* method)
{
(( void (*) (Nullable_1_tE6DB2821D06FC32375C83F1A7E8AFF51557CE14B *, uint64_t, const RuntimeMethod*))Nullable_1__ctor_m9BFC744597EAD1898820D2D3EC00C3644BC066FB_gshared)(__this, ___value0, 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.String System.Convert::ToString(System.Object,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Convert_ToString_m10FC2E5535B944C2DFE83E6D2659122C9408F0FF (RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method);
// System.Void System.Guid::.ctor(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Guid__ctor_m93F5E840798B5FB4B96497327B3907829EBA100A (Guid_t * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___b0, const RuntimeMethod* method);
// System.Void System.Guid::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Guid__ctor_mC668142577A40A77D13B78AADDEFFFC2E2705079 (Guid_t * __this, String_t* ___g0, const RuntimeMethod* method);
// System.Void System.Nullable`1<System.Guid>::.ctor(!0)
inline void Nullable_1__ctor_m463791C1A9398343D7CEEF8BE9442A7BC643134B (Nullable_1_t98453FD73999D83935C31555C4C67329F550B15D * __this, Guid_t ___value0, const RuntimeMethod* method)
{
(( void (*) (Nullable_1_t98453FD73999D83935C31555C4C67329F550B15D *, Guid_t , const RuntimeMethod*))Nullable_1__ctor_m463791C1A9398343D7CEEF8BE9442A7BC643134B_gshared)(__this, ___value0, method);
}
// System.TimeSpan Valve.Newtonsoft.Json.Utilities.ConvertUtils::ParseTimeSpan(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ConvertUtils_ParseTimeSpan_m962E4DDBF9BFB4DC60BC979E73D044EA7CF32E4C (String_t* ___input0, const RuntimeMethod* method);
// System.Void System.Nullable`1<System.TimeSpan>::.ctor(!0)
inline void Nullable_1__ctor_m76013822874DCED561CAA4F6418BCBE65D273DA7 (Nullable_1_tA5F97AD8281B6EDEE6731D95047BA50C9996309E * __this, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___value0, const RuntimeMethod* method)
{
(( void (*) (Nullable_1_tA5F97AD8281B6EDEE6731D95047BA50C9996309E *, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 , const RuntimeMethod*))Nullable_1__ctor_m76013822874DCED561CAA4F6418BCBE65D273DA7_gshared)(__this, ___value0, method);
}
// System.Void System.Uri::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri__ctor_mBA69907A1D799CD12ED44B611985B25FE4C626A2 (Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * __this, String_t* ___uriString0, const RuntimeMethod* method);
// System.Collections.Generic.IEnumerator`1<T> Valve.Newtonsoft.Json.Linq.JEnumerable`1<Valve.Newtonsoft.Json.Linq.JToken>::GetEnumerator()
inline RuntimeObject* JEnumerable_1_GetEnumerator_m97C1D763C5868F124F2E8E3EE917282F7B06C28C (JEnumerable_1_t8D29AB2A452946C954DC038C163C500CD83ACEF1 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject* (*) (JEnumerable_1_t8D29AB2A452946C954DC038C163C500CD83ACEF1 *, const RuntimeMethod*))JEnumerable_1_GetEnumerator_mD38C5E5C8E5CE658A8A0CBE2B1D4363D45876B01_gshared)(__this, method);
}
// System.Void Valve.Newtonsoft.Json.Linq.JTokenReader::.ctor(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JTokenReader__ctor_mEC548BE486CDEE63EE9B3A551844ECE3D8AA6E9A (JTokenReader_tE3C9B85315EFF6B3CB0796451D8278F1372C6530 * __this, JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___token0, const RuntimeMethod* method);
// System.Func`1<Valve.Newtonsoft.Json.JsonSerializerSettings> Valve.Newtonsoft.Json.JsonConvert::get_DefaultSettings()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Func_1_t3CEBF86E0635EABFE16B2FB2AE427AFF966C1E62 * JsonConvert_get_DefaultSettings_m06EFD8674EFD5D98521BAB1AF2C2E504580B6944_inline (const RuntimeMethod* method);
// Valve.Newtonsoft.Json.Utilities.PrimitiveTypeCode Valve.Newtonsoft.Json.Utilities.ConvertUtils::GetTypeCode(System.Type,System.Boolean&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ConvertUtils_GetTypeCode_m8787291F428C97CC71FC2972E89B0F258DECB9B5 (Type_t * ___t0, bool* ___isEnum1, const RuntimeMethod* method);
// Valve.Newtonsoft.Json.JsonSerializer Valve.Newtonsoft.Json.JsonSerializer::CreateDefault()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonSerializer_t1D5D385AB5641E8958FC0E6ECB498B4DC45BC4D4 * JsonSerializer_CreateDefault_m50084EFB23A5CFFA3C640E75BA8504FE33F5A97A (const RuntimeMethod* method);
// System.Object Valve.Newtonsoft.Json.Linq.JToken::ToObject(System.Type,Valve.Newtonsoft.Json.JsonSerializer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * JToken_ToObject_m3CB0FEB1BF65579D7E1F1AD5A24A05D63590FC6B (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * __this, Type_t * ___objectType0, JsonSerializer_t1D5D385AB5641E8958FC0E6ECB498B4DC45BC4D4 * ___jsonSerializer1, const RuntimeMethod* method);
// System.Boolean Valve.Newtonsoft.Json.Utilities.TypeExtensions::IsEnum(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeExtensions_IsEnum_m6EE0549656F25383D4F2DD299EC643041CEA0A2D (Type_t * ___type0, const RuntimeMethod* method);
// System.Type System.Nullable::GetUnderlyingType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Nullable_GetUnderlyingType_m038B195642BF738026196B1629997705B6317D04 (Type_t * ___nullableType0, const RuntimeMethod* method);
// System.String Valve.Newtonsoft.Json.Linq.JToken::op_Explicit(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JToken_op_Explicit_m6E58E8AE940056709C57FCA1BD9E9F8ABF029827 (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method);
// System.Void System.ArgumentException::.ctor(System.String,System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m1BF85DCCECA37FCD88A0884AF3C4D03566911BF0 (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * __this, String_t* ___message0, Exception_t * ___innerException1, const RuntimeMethod* method);
// System.Object System.Enum::ToObject(System.Type,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enum_ToObject_mED18F2B01F4BA412C1882396CE977411BB54165D (Type_t * ___enumType0, RuntimeObject * ___value1, const RuntimeMethod* method);
// System.Nullable`1<System.Boolean> Valve.Newtonsoft.Json.Linq.JToken::op_Explicit(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 JToken_op_Explicit_m1E9A9C48AA45CF496362D8EC2C8C710289691F4C (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method);
// System.Boolean Valve.Newtonsoft.Json.Linq.JToken::op_Explicit(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JToken_op_Explicit_mC85A803929686E2746F451B17F94D9C381941970 (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method);
// System.Nullable`1<System.Char> Valve.Newtonsoft.Json.Linq.JToken::op_Explicit(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_tEB9036CD852DD7DCDAC49BEEC424155F285C4FD6 JToken_op_Explicit_m4B2C0E17D59DD2C8C1FF029F40761CBC3F5F997C (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method);
// System.Char Valve.Newtonsoft.Json.Linq.JToken::op_Explicit(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar JToken_op_Explicit_mA3627E69282A828ABE2FF505D43B887C1E54CC6F (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method);
// System.Nullable`1<System.SByte> Valve.Newtonsoft.Json.Linq.JToken::op_Explicit(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_t2F4FA162D87EDE69C4CAA5E3E739CB702A780EAE JToken_op_Explicit_m8A71CA7343DDFE91A7EF435556490C67237B6730 (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method);
// System.SByte Valve.Newtonsoft.Json.Linq.JToken::op_Explicit(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t JToken_op_Explicit_m6246D2129AAA644B0F738E37B7D8EE0C72174C88 (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method);
// System.Nullable`1<System.Byte> Valve.Newtonsoft.Json.Linq.JToken::op_Explicit(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_tB4C4F9557481ABDC6DFB4E6C55B481A29DDCC299 JToken_op_Explicit_m192E38F83BDA627DA2F67D6E8E556C7E8BCFFC0E (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method);
// System.Byte Valve.Newtonsoft.Json.Linq.JToken::op_Explicit(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t JToken_op_Explicit_m082F0E38845FD5F318438D29D7A41D8B278030A8 (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method);
// System.Nullable`1<System.Int16> Valve.Newtonsoft.Json.Linq.JToken::op_Explicit(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_t6DD1091F06288053C77A1E21CDA46B9FC0C082FE JToken_op_Explicit_m0E3D752E4AC01EC03E0C471F25E928CF84C70F4D (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method);
// System.Int16 Valve.Newtonsoft.Json.Linq.JToken::op_Explicit(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t JToken_op_Explicit_mFB7B71446CAF7B4C8B316D719C957D7379D8B45F (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method);
// System.Nullable`1<System.UInt16> Valve.Newtonsoft.Json.Linq.JToken::op_Explicit(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_tF0BF09F44075092EA142C4F8348486254518EEA0 JToken_op_Explicit_m8BE4447D408B52AB5B4C347699BCA9CE5F5C8561 (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method);
// System.UInt16 Valve.Newtonsoft.Json.Linq.JToken::op_Explicit(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t JToken_op_Explicit_mAB7E763BA2CB33D56DFFBB8A5E83F4670B2805A1 (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method);
// System.Nullable`1<System.Int32> Valve.Newtonsoft.Json.Linq.JToken::op_Explicit(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB JToken_op_Explicit_m7BA83EAF9DB15A8ECAFD5DC5D7E80EE34845090A (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method);
// System.Int32 Valve.Newtonsoft.Json.Linq.JToken::op_Explicit(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JToken_op_Explicit_m5623B70899025B395BF68890057E8827DFC09062 (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method);
// System.Nullable`1<System.UInt32> Valve.Newtonsoft.Json.Linq.JToken::op_Explicit(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_tF156B0EB96E1F21CE812F1DFC94779464E49DAF3 JToken_op_Explicit_m41462F6ED4A9D06149285D2ECD7925155A64480E (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method);
// System.UInt32 Valve.Newtonsoft.Json.Linq.JToken::op_Explicit(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t JToken_op_Explicit_mE90FD8213A2770ECA6B0E9628B2D614CAA8B68B1 (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method);
// System.Nullable`1<System.Int64> Valve.Newtonsoft.Json.Linq.JToken::op_Explicit(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_t8A84BC5F3B3D55B8E96E9B812BDCCCB962EB2AB5 JToken_op_Explicit_m4A902F230BF538F167115B997338C4C62E000B5A (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method);
// System.Int64 Valve.Newtonsoft.Json.Linq.JToken::op_Explicit(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t JToken_op_Explicit_m3B70105D407BAD5D01D511E04215FB146ED1C8EF (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method);
// System.Nullable`1<System.UInt64> Valve.Newtonsoft.Json.Linq.JToken::op_Explicit(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_tE6DB2821D06FC32375C83F1A7E8AFF51557CE14B JToken_op_Explicit_m7ED97B5A92E6F2DABB2C58A8E96280683F1294DE (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method);
// System.UInt64 Valve.Newtonsoft.Json.Linq.JToken::op_Explicit(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t JToken_op_Explicit_m60AD9B22AC43C9483A4EC736E8B08DBB098144E9 (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method);
// System.Nullable`1<System.Single> Valve.Newtonsoft.Json.Linq.JToken::op_Explicit(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 JToken_op_Explicit_m8E6B7E51C03E9438547FBAEDEDDD6B53817D68F0 (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method);
// System.Single Valve.Newtonsoft.Json.Linq.JToken::op_Explicit(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float JToken_op_Explicit_m8315F88547897B494F2FAD9E6F9B9F9BE12106CE (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method);
// System.Nullable`1<System.Double> Valve.Newtonsoft.Json.Linq.JToken::op_Explicit(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_tBFE8022F4FD60FAE6E29634776F92F0C7DDF0ECF JToken_op_Explicit_m416851C04EED574BB38FBA7B22993342FB2BF71C (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method);
// System.Double Valve.Newtonsoft.Json.Linq.JToken::op_Explicit(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double JToken_op_Explicit_m82C9797D6694CAD60E2D8C75CE6651DFA5EFF498 (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method);
// System.Nullable`1<System.Decimal> Valve.Newtonsoft.Json.Linq.JToken::op_Explicit(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_t980A9BF956626264580BF8B4E1E3DBD88D9337C1 JToken_op_Explicit_mFB9585959C8EEC5EB76A6F32BD5BB46C970373BC (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method);
// System.Decimal Valve.Newtonsoft.Json.Linq.JToken::op_Explicit(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 JToken_op_Explicit_m3FB97A54D97040485003B7DB9259575E91486DDD (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method);
// System.Nullable`1<System.DateTime> Valve.Newtonsoft.Json.Linq.JToken::op_Explicit(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_t3290384E361396B3724B88B498CBF637D7E87B78 JToken_op_Explicit_m7742F5054343B22E5355351816390A528A303074 (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method);
// System.DateTime Valve.Newtonsoft.Json.Linq.JToken::op_Explicit(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 JToken_op_Explicit_m0170BD465F577BF1F4C284F9318550F3A59B7A6D (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method);
// System.Nullable`1<System.DateTimeOffset> Valve.Newtonsoft.Json.Linq.JToken::op_Explicit(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_tD63596AAA40EDF5AE4981F1C2B4F3A8A24E1DD67 JToken_op_Explicit_mC85D8549261D1AA45EDA536128EB37846421DFFE (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method);
// System.DateTimeOffset Valve.Newtonsoft.Json.Linq.JToken::op_Explicit(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 JToken_op_Explicit_m96FDA8D285EF8DE68D836B9F923CBF88862B3112 (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method);
// System.Nullable`1<System.Guid> Valve.Newtonsoft.Json.Linq.JToken::op_Explicit(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_t98453FD73999D83935C31555C4C67329F550B15D JToken_op_Explicit_mC0182FB7BB4A0132464F0AD3CA2FE73B2737260F (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method);
// System.Guid Valve.Newtonsoft.Json.Linq.JToken::op_Explicit(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Guid_t JToken_op_Explicit_mDFB2FFD5BE9B8D15EA977A3B679B3D1FD38E9C1E (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method);
// System.Uri Valve.Newtonsoft.Json.Linq.JToken::op_Explicit(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * JToken_op_Explicit_m605A541AE39FC83BA1CD7075873845888F231016 (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method);
// System.Nullable`1<System.TimeSpan> Valve.Newtonsoft.Json.Linq.JToken::op_Explicit(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_tA5F97AD8281B6EDEE6731D95047BA50C9996309E JToken_op_Explicit_m4C5743281B40CA02B835681A3F7D032B09E54740 (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method);
// System.TimeSpan Valve.Newtonsoft.Json.Linq.JToken::op_Explicit(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 JToken_op_Explicit_m228743A6F7AA8F1211038881F0200B154F65E4BD (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method);
// System.Object Valve.Newtonsoft.Json.JsonSerializer::Deserialize(Valve.Newtonsoft.Json.JsonReader,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * JsonSerializer_Deserialize_m251062B7395F556D846231726D58C26B863FD888 (JsonSerializer_t1D5D385AB5641E8958FC0E6ECB498B4DC45BC4D4 * __this, JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C * ___reader0, Type_t * ___objectType1, const RuntimeMethod* method);
// Valve.Newtonsoft.Json.Linq.JToken Valve.Newtonsoft.Json.Linq.JToken::ReadFrom(Valve.Newtonsoft.Json.JsonReader,Valve.Newtonsoft.Json.Linq.JsonLoadSettings)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * JToken_ReadFrom_m454A08E195A1697F3C7FA81E045AD7A7886A55D7 (JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C * ___reader0, JsonLoadSettings_tB5261F5FE452665393A12B96A793FE21DF91D45A * ___settings1, const RuntimeMethod* method);
// Valve.Newtonsoft.Json.Linq.CommentHandling Valve.Newtonsoft.Json.Linq.JsonLoadSettings::get_CommentHandling()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t JsonLoadSettings_get_CommentHandling_mBB1D26011CD2B88F331440AAB727BA800E5D44F9_inline (JsonLoadSettings_tB5261F5FE452665393A12B96A793FE21DF91D45A * __this, const RuntimeMethod* method);
// System.Boolean Valve.Newtonsoft.Json.JsonReader::ReadAndMoveToContent()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonReader_ReadAndMoveToContent_mF3EA1BC3847129DDD91AA56E0AB1E06843A133AB (JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C * __this, const RuntimeMethod* method);
// Valve.Newtonsoft.Json.Linq.JObject Valve.Newtonsoft.Json.Linq.JObject::Load(Valve.Newtonsoft.Json.JsonReader,Valve.Newtonsoft.Json.Linq.JsonLoadSettings)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21 * JObject_Load_m2FC3E570F52E343E3B99668B1BA490E65656B1A4 (JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C * ___reader0, JsonLoadSettings_tB5261F5FE452665393A12B96A793FE21DF91D45A * ___settings1, const RuntimeMethod* method);
// Valve.Newtonsoft.Json.Linq.JArray Valve.Newtonsoft.Json.Linq.JArray::Load(Valve.Newtonsoft.Json.JsonReader,Valve.Newtonsoft.Json.Linq.JsonLoadSettings)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JArray_t8AE8A8AB34EFB9A770BC34AB9EA47BE9DC7F45C2 * JArray_Load_m64889E9B34463684A57C890006E3993E13DE75C4 (JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C * ___reader0, JsonLoadSettings_tB5261F5FE452665393A12B96A793FE21DF91D45A * ___settings1, const RuntimeMethod* method);
// Valve.Newtonsoft.Json.Linq.JConstructor Valve.Newtonsoft.Json.Linq.JConstructor::Load(Valve.Newtonsoft.Json.JsonReader,Valve.Newtonsoft.Json.Linq.JsonLoadSettings)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JConstructor_t31B236A37CEC95856D10CB7C3F276D6C4CA0B26B * JConstructor_Load_mF08CFFCFD1193A463DF66B7A9BDD0E2C6A200949 (JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C * ___reader0, JsonLoadSettings_tB5261F5FE452665393A12B96A793FE21DF91D45A * ___settings1, const RuntimeMethod* method);
// Valve.Newtonsoft.Json.Linq.JProperty Valve.Newtonsoft.Json.Linq.JProperty::Load(Valve.Newtonsoft.Json.JsonReader,Valve.Newtonsoft.Json.Linq.JsonLoadSettings)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * JProperty_Load_mDAD45AC264E953A8903F590A7ACC96A1C6F62FDF (JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C * ___reader0, JsonLoadSettings_tB5261F5FE452665393A12B96A793FE21DF91D45A * ___settings1, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Linq.JValue::.ctor(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JValue__ctor_mA1877799B837592DB979A9174AEE2D9521D41985 (JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * __this, RuntimeObject * ___value0, const RuntimeMethod* method);
// Valve.Newtonsoft.Json.Linq.JValue Valve.Newtonsoft.Json.Linq.JValue::CreateComment(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * JValue_CreateComment_mB22EE156BA4E18B35393ED2634F98E19175B524A (String_t* ___value0, const RuntimeMethod* method);
// Valve.Newtonsoft.Json.Linq.JValue Valve.Newtonsoft.Json.Linq.JValue::CreateUndefined()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * JValue_CreateUndefined_m692597F85235F264FFE2608A6AF1C5789A2E0092 (const RuntimeMethod* method);
// Valve.Newtonsoft.Json.Linq.LineInfoHandling Valve.Newtonsoft.Json.Linq.JsonLoadSettings::get_LineInfoHandling()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t JsonLoadSettings_get_LineInfoHandling_m84C480E6D3F94571C4845D2EF2CCB0E045768E0E_inline (JsonLoadSettings_tB5261F5FE452665393A12B96A793FE21DF91D45A * __this, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Linq.JToken::SetLineInfo(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JToken_SetLineInfo_m65B85B867F262916908C023AB03C0048862924E5 (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * __this, int32_t ___lineNumber0, int32_t ___linePosition1, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Linq.JToken/LineInfoAnnotation::.ctor(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LineInfoAnnotation__ctor_m5E4111A49628769151A5844DE6E391F1E5838C54 (LineInfoAnnotation_tC3E34194A1BD45715FC51B0CBEE0ECD100E90D38 * __this, int32_t ___lineNumber0, int32_t ___linePosition1, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Linq.JToken::AddAnnotation(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JToken_AddAnnotation_m6697AE0A4D8A820A24CF3C5EFEB5994BE770886A (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * __this, RuntimeObject * ___annotation0, const RuntimeMethod* method);
// T Valve.Newtonsoft.Json.Linq.JToken::Annotation<Valve.Newtonsoft.Json.Linq.JToken/LineInfoAnnotation>()
inline LineInfoAnnotation_tC3E34194A1BD45715FC51B0CBEE0ECD100E90D38 * JToken_Annotation_TisLineInfoAnnotation_tC3E34194A1BD45715FC51B0CBEE0ECD100E90D38_m5039AE0C83BD134DB58678D6152CEDF67D8160CA (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * __this, const RuntimeMethod* method)
{
return (( LineInfoAnnotation_tC3E34194A1BD45715FC51B0CBEE0ECD100E90D38 * (*) (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 *, const RuntimeMethod*))JToken_Annotation_TisRuntimeObject_m24CA9A76D06C18B15A75A3185D91402B9427E125_gshared)(__this, method);
}
// Valve.Newtonsoft.Json.Linq.JToken Valve.Newtonsoft.Json.Linq.JToken::DeepClone()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * JToken_DeepClone_mC657F3EF887C3642C806A3150BB4D736FF46CFF5 (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * __this, const RuntimeMethod* method);
// System.Void System.Array::Resize<System.Object>(!!0[]&,System.Int32)
inline void Array_Resize_TisRuntimeObject_mB0DBA075A9D1EE03ADE844755C17088FDC73B1EF (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** ___array0, int32_t ___newSize1, const RuntimeMethod* method)
{
(( void (*) (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A**, int32_t, const RuntimeMethod*))Array_Resize_TisRuntimeObject_mB0DBA075A9D1EE03ADE844755C17088FDC73B1EF_gshared)(___array0, ___newSize1, method);
}
// System.Void Valve.Newtonsoft.Json.JsonReader::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonReader__ctor_mE94D5DB6E2AA53D1CA7CE722C96AE87E61C88E4A (JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C * __this, const RuntimeMethod* method);
// Valve.Newtonsoft.Json.JsonReader/State Valve.Newtonsoft.Json.JsonReader::get_CurrentState()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t JsonReader_get_CurrentState_m82A4B2B03B64BDF8B7D0AF08C816C60198F4C0C5_inline (JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C * __this, const RuntimeMethod* method);
// System.Boolean Valve.Newtonsoft.Json.Linq.JTokenReader::ReadInto(Valve.Newtonsoft.Json.Linq.JContainer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JTokenReader_ReadInto_m6CB1E11362119ECAE3D69026E8090FB1D8AA565C (JTokenReader_tE3C9B85315EFF6B3CB0796451D8278F1372C6530 * __this, JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * ___c0, const RuntimeMethod* method);
// System.Boolean Valve.Newtonsoft.Json.Linq.JTokenReader::ReadOver(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JTokenReader_ReadOver_mF0E0932AFA99E496551DEC53BC78D58B3993A53A (JTokenReader_tE3C9B85315EFF6B3CB0796451D8278F1372C6530 * __this, JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___t0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Linq.JTokenReader::SetToken(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JTokenReader_SetToken_m50E5A37B2D44D4A93F489DB38D72E924420912EF (JTokenReader_tE3C9B85315EFF6B3CB0796451D8278F1372C6530 * __this, JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___token0, const RuntimeMethod* method);
// System.Boolean Valve.Newtonsoft.Json.Linq.JTokenReader::ReadToEnd()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JTokenReader_ReadToEnd_mE716CD7EC7C2B4FCFD4D883B694EB0F3730492BE (JTokenReader_tE3C9B85315EFF6B3CB0796451D8278F1372C6530 * __this, const RuntimeMethod* method);
// Valve.Newtonsoft.Json.Linq.JToken Valve.Newtonsoft.Json.Linq.JToken::get_Next()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * JToken_get_Next_m4C86AF5625AFDE37B90698DBAC4B8C589B5F05E3_inline (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * __this, const RuntimeMethod* method);
// System.Boolean Valve.Newtonsoft.Json.Linq.JTokenReader::SetEnd(Valve.Newtonsoft.Json.Linq.JContainer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JTokenReader_SetEnd_m66C6A9990693C35C053B893A75345F3BA2871111 (JTokenReader_tE3C9B85315EFF6B3CB0796451D8278F1372C6530 * __this, JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * ___c0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.JsonReader::SetToken(Valve.Newtonsoft.Json.JsonToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonReader_SetToken_mDF91D9A9FF0A7CEF402EF495A152A2F4C3C620E5 (JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C * __this, int32_t ___newToken0, const RuntimeMethod* method);
// System.Void System.Nullable`1<Valve.Newtonsoft.Json.JsonToken>::.ctor(!0)
inline void Nullable_1__ctor_m31B16CF5778ACE8E99E6017CCC1FE2D3E70A1703 (Nullable_1_tB0A5FC022F6A5257A48FBAD802C5460B76704D56 * __this, int32_t ___value0, const RuntimeMethod* method)
{
(( void (*) (Nullable_1_tB0A5FC022F6A5257A48FBAD802C5460B76704D56 *, int32_t, const RuntimeMethod*))Nullable_1__ctor_m5C28B34DE8C6D3A1E136828428C71543A08B32D3_gshared)(__this, ___value0, method);
}
// System.ArgumentOutOfRangeException Valve.Newtonsoft.Json.Utilities.MiscellaneousUtils::CreateArgumentOutOfRangeException(System.String,System.Object,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * MiscellaneousUtils_CreateArgumentOutOfRangeException_m8E4A0A0A3D556B8811877FEB803AE6CCDD3DE9A0 (String_t* ___paramName0, RuntimeObject * ___actualValue1, String_t* ___message2, const RuntimeMethod* method);
// System.Nullable`1<Valve.Newtonsoft.Json.JsonToken> Valve.Newtonsoft.Json.Linq.JTokenReader::GetEndToken(Valve.Newtonsoft.Json.Linq.JContainer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_tB0A5FC022F6A5257A48FBAD802C5460B76704D56 JTokenReader_GetEndToken_m8CDB32154BBCCE79A921137310EF0DA7179A21B0 (JTokenReader_tE3C9B85315EFF6B3CB0796451D8278F1372C6530 * __this, JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * ___c0, const RuntimeMethod* method);
// System.Boolean System.Nullable`1<Valve.Newtonsoft.Json.JsonToken>::get_HasValue()
inline bool Nullable_1_get_HasValue_m32C396BC34F2684EEB3E4D64CCC54219DEFFC807_inline (Nullable_1_tB0A5FC022F6A5257A48FBAD802C5460B76704D56 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Nullable_1_tB0A5FC022F6A5257A48FBAD802C5460B76704D56 *, const RuntimeMethod*))Nullable_1_get_HasValue_mB0A6989529561627BBB65E6E4342DAA6549DD5A9_gshared_inline)(__this, method);
}
// !0 System.Nullable`1<Valve.Newtonsoft.Json.JsonToken>::GetValueOrDefault()
inline int32_t Nullable_1_GetValueOrDefault_m0650003377853164C2CEED7CE3A7D36A58110C27_inline (Nullable_1_tB0A5FC022F6A5257A48FBAD802C5460B76704D56 * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (Nullable_1_tB0A5FC022F6A5257A48FBAD802C5460B76704D56 *, const RuntimeMethod*))Nullable_1_GetValueOrDefault_m256BDDFFC9F6CE76EBBC5A9A6ED0A6FFB9F0455F_gshared_inline)(__this, method);
}
// System.String Valve.Newtonsoft.Json.Linq.JConstructor::get_Name()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* JConstructor_get_Name_m57AE8C1593EC23F78FE7302A767D7B5F4E700E4D_inline (JConstructor_t31B236A37CEC95856D10CB7C3F276D6C4CA0B26B * __this, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.JsonReader::SetToken(Valve.Newtonsoft.Json.JsonToken,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonReader_SetToken_m11852C967B119680CD2BB627B37C7AFFB88ED882 (JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C * __this, int32_t ___newToken0, RuntimeObject * ___value1, const RuntimeMethod* method);
// System.String Valve.Newtonsoft.Json.Linq.JTokenReader::SafeToString(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JTokenReader_SafeToString_m7B58D6AD80061531CDBCBE3E276936E79C7616BB (JTokenReader_tE3C9B85315EFF6B3CB0796451D8278F1372C6530 * __this, RuntimeObject * ___value0, const RuntimeMethod* method);
// System.String System.Uri::get_OriginalString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_get_OriginalString_m56099E46276F0A52524347F1F46A2F88E948504F (Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * __this, const RuntimeMethod* method);
// System.String Valve.Newtonsoft.Json.JsonReader::get_Path()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JsonReader_get_Path_mC7E72F6CFB87FDE89AA0AD8B12D4EBC4E48E6A81 (JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C * __this, const RuntimeMethod* method);
// System.String Valve.Newtonsoft.Json.Linq.JToken::get_Path()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JToken_get_Path_mDF8410943E43F72FA56B317C89DAC959284005B3 (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * __this, const RuntimeMethod* method);
// System.Boolean System.String::IsNullOrEmpty(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_IsNullOrEmpty_m06A85A206AC2106D1982826C5665B9BD35324229 (String_t* ___value0, const RuntimeMethod* method);
// System.Boolean Valve.Newtonsoft.Json.Utilities.StringUtils::StartsWith(System.String,System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StringUtils_StartsWith_mD7008823EBB1ADEFC439AF6CD8A86EC2DCD0DD8B (String_t* ___source0, Il2CppChar ___value1, 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.String System.String::Concat(System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_mF4626905368D6558695A823466A1AF65EADB9923 (String_t* ___str00, String_t* ___str11, String_t* ___str22, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.JsonWriter::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter__ctor_m2A754E84A486C9963FAA05E390974DAC799B80B4 (JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * __this, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.JsonWriter::Close()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_Close_mE5FA4E3E7AC7E19933B5FD301D8F99FAAAB04986 (JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * __this, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.JsonWriter::WriteStartObject()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_WriteStartObject_m1FEDC2B1810F26A04793BD130910EF2BAFBA68B4 (JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * __this, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Linq.JTokenWriter::AddParent(Valve.Newtonsoft.Json.Linq.JContainer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JTokenWriter_AddParent_m4C32A5F9C73C33D7876EDCCF563143B16A9012E5 (JTokenWriter_t96B1E9B675DE7CD27F8339C82B785C254918BCEF * __this, JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * ___container0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Linq.JContainer::AddAndSkipParentCheck(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JContainer_AddAndSkipParentCheck_mC69CDC523C76A655893E17C881E9F6E95EBCC561 (JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * __this, JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___token0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.JsonWriter::WriteStartArray()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_WriteStartArray_mC195BF909344A95DBC50E07F73382D30D2386459 (JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * __this, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Linq.JArray::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JArray__ctor_m84320AC2A023FE7FCB5359A880861C4BF0F61D53 (JArray_t8AE8A8AB34EFB9A770BC34AB9EA47BE9DC7F45C2 * __this, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.JsonWriter::WriteStartConstructor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_WriteStartConstructor_m051017ADECFAEE4F22C0F03C5D68192555137067 (JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * __this, String_t* ___name0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Linq.JConstructor::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JConstructor__ctor_m79E2C9A1AF240937806186F98B298A1D80E8802D (JConstructor_t31B236A37CEC95856D10CB7C3F276D6C4CA0B26B * __this, String_t* ___name0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Linq.JTokenWriter::RemoveParent()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JTokenWriter_RemoveParent_m41B55794CCFDEFFC8D6897BE888AF31C9FECD204 (JTokenWriter_t96B1E9B675DE7CD27F8339C82B785C254918BCEF * __this, const RuntimeMethod* method);
// System.Boolean Valve.Newtonsoft.Json.Linq.JObject::Remove(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JObject_Remove_m071001E249812891B6817A44EBFEAE9B1324E21C (JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21 * __this, String_t* ___propertyName0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.JsonWriter::WritePropertyName(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_WritePropertyName_m37E4C5E891A7735B94D1ABC7EC71BAD4FE65BAD5 (JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * __this, String_t* ___name0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Linq.JTokenWriter::AddValue(Valve.Newtonsoft.Json.Linq.JValue,Valve.Newtonsoft.Json.JsonToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JTokenWriter_AddValue_m4893801601552FDF07FC01A634117B186E75AD57 (JTokenWriter_t96B1E9B675DE7CD27F8339C82B785C254918BCEF * __this, JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * ___value0, int32_t ___token1, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.JsonWriter::WriteNull()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_WriteNull_m5CF4137C0166CABF0AD21E77B3073B8F2987F0F2 (JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * __this, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.JsonWriter::WriteUndefined()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_WriteUndefined_m857219BD9EE455A3BAC2282B347C8353A3E293F2 (JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * __this, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.JsonWriter::WriteRaw(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_WriteRaw_m2B90B2AD0D946B59DB67A41F82568207CE70F1EA (JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * __this, String_t* ___json0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.JsonWriter::WriteComment(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_WriteComment_mC986B5FE4E0DBBA325AA64A0933F1433BCAA8AF4 (JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * __this, String_t* ___text0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.JsonWriter::WriteValue(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_WriteValue_m49EA9808E532C8348810E4A2736427511EAB1F67 (JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * __this, String_t* ___value0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Linq.JTokenWriter::AddValue(System.Object,Valve.Newtonsoft.Json.JsonToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JTokenWriter_AddValue_mF1C34507EC5AD59339B847AD882751EFCDB72381 (JTokenWriter_t96B1E9B675DE7CD27F8339C82B785C254918BCEF * __this, RuntimeObject * ___value0, int32_t ___token1, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.JsonWriter::WriteValue(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_WriteValue_m5E76F77404330687D8FAA5CAD3CB16D9E7F29105 (JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * __this, int32_t ___value0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.JsonWriter::WriteValue(System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_WriteValue_m6CD89FBB39F30FEBFBC53973908467130534209E (JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * __this, uint32_t ___value0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.JsonWriter::WriteValue(System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_WriteValue_m870DA8F3FEADD24960EA3FC73F3B8FFE20F38AFC (JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * __this, int64_t ___value0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.JsonWriter::WriteValue(System.UInt64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_WriteValue_m03AE2953042426134E86C4C821E4E65682315C8E (JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * __this, uint64_t ___value0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.JsonWriter::WriteValue(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_WriteValue_m917D702A24DEA965C325C3BB562695140879B0CE (JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * __this, float ___value0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.JsonWriter::WriteValue(System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_WriteValue_m112B725536D68B5E478A4132F589141DE620B55E (JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * __this, double ___value0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.JsonWriter::WriteValue(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_WriteValue_m80FC5EFD83EC9DCABF770EF3CC5703AA252E10C5 (JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * __this, bool ___value0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.JsonWriter::WriteValue(System.Int16)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_WriteValue_m529BEE5BDF8FE5A40C941E354E689DCB89B7DDA8 (JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * __this, int16_t ___value0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.JsonWriter::WriteValue(System.UInt16)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_WriteValue_mBC904278CF773056E377B1274A5098A21F90DD34 (JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * __this, uint16_t ___value0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.JsonWriter::WriteValue(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_WriteValue_m4080E1F8D12EC1E86E8167A19D1859AFAF12AC52 (JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * __this, Il2CppChar ___value0, const RuntimeMethod* method);
// System.String System.Char::ToString(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Char_ToString_mF758476EBA0494508C18E74ADF20D7732A872BDE (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.JsonWriter::WriteValue(System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_WriteValue_m94615855CFEFE50CBD01ECC5840F396974BFC86E (JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * __this, uint8_t ___value0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.JsonWriter::WriteValue(System.SByte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_WriteValue_m86A68961251E2B3EE5DE1032055F9EEEA856F7CD (JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * __this, int8_t ___value0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.JsonWriter::WriteValue(System.Decimal)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_WriteValue_m4BAEBAD7F89B298AD8333B20A3F2CDDFE2903837 (JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * __this, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___value0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.JsonWriter::WriteValue(System.DateTime)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_WriteValue_m950794D16F0CEF4400AFF1CB144B930020F0A0F0 (JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * __this, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___value0, const RuntimeMethod* method);
// Valve.Newtonsoft.Json.DateTimeZoneHandling Valve.Newtonsoft.Json.JsonWriter::get_DateTimeZoneHandling()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t JsonWriter_get_DateTimeZoneHandling_mDFAF827652B4F8B1747A36796689D049E9E8F154_inline (JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * __this, const RuntimeMethod* method);
// System.DateTime Valve.Newtonsoft.Json.Utilities.DateTimeUtils::EnsureDateTime(System.DateTime,Valve.Newtonsoft.Json.DateTimeZoneHandling)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 DateTimeUtils_EnsureDateTime_m88A47E3B933627EA4D17E69F3CAE93D8D5509284 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___value0, int32_t ___timeZone1, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.JsonWriter::WriteValue(System.DateTimeOffset)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_WriteValue_mEB32D45EE257E82C423036D12642C48F81C2D569 (JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * __this, DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 ___value0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.JsonWriter::WriteValue(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_WriteValue_m896723B2C4A2E44908EF1B488A36DFAC518D7BA7 (JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___value0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.JsonWriter::WriteValue(System.TimeSpan)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_WriteValue_m9B4C4EF83E009BACEA128F3DDB7AFDD6EF60B4F7 (JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * __this, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___value0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.JsonWriter::WriteValue(System.Guid)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_WriteValue_mB27A6CE96CD19473F5821F316002702313DD93DA (JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * __this, Guid_t ___value0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.JsonWriter::WriteValue(System.Uri)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_WriteValue_mA8D71853BC3715DFA06148499266F0B426608519 (JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * __this, Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * ___value0, const RuntimeMethod* method);
// Valve.Newtonsoft.Json.Linq.JToken Valve.Newtonsoft.Json.Linq.JTokenReader::get_CurrentToken()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * JTokenReader_get_CurrentToken_m4D1878533286E1C58BBB83AC78967CFB15619D3B_inline (JTokenReader_tE3C9B85315EFF6B3CB0796451D8278F1372C6530 * __this, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.JsonWriter::InternalWriteValue(Valve.Newtonsoft.Json.JsonToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_InternalWriteValue_m6F2EDD7A6AB629F4E65D476CC8273A1DC4473CB2 (JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * __this, int32_t ___token0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.JsonReader::Skip()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonReader_Skip_m48E560129D391CC86CCDEFBB161698BF259F9F20 (JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C * __this, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.JsonWriter::WriteToken(Valve.Newtonsoft.Json.JsonReader,System.Boolean,System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_WriteToken_m025EF0952BBFA94D22F78619D21581941FB1AD5A (JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * __this, JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C * ___reader0, bool ___writeChildren1, bool ___writeDateConstructorAsDate2, bool ___writeComments3, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Linq.JToken::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JToken__ctor_mFBA3803E336FDC9475CD92C83699183230065165 (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * __this, const RuntimeMethod* method);
// Valve.Newtonsoft.Json.Linq.JTokenType Valve.Newtonsoft.Json.Linq.JValue::GetValueType(System.Nullable`1<Valve.Newtonsoft.Json.Linq.JTokenType>,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JValue_GetValueType_mFEEF608B99EFB12602AD7C6D030BD8C260EB564D (Nullable_1_t4FE8EDAD79D2EC3D50B7ED18BE847A12A2306D57 ___current0, RuntimeObject * ___value1, const RuntimeMethod* method);
// System.Int32 System.Decimal::CompareTo(System.Decimal)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Decimal_CompareTo_mEAA7E4E03BCF1A02CDA8439E8F2F60181D46B30B (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * __this, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___value0, const RuntimeMethod* method);
// System.Int32 Valve.Newtonsoft.Json.Linq.JValue::CompareFloat(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JValue_CompareFloat_mD063BBA71282EC91F866FB963351E23202A3ED70 (RuntimeObject * ___objA0, RuntimeObject * ___objB1, const RuntimeMethod* method);
// System.Int32 System.Int64::CompareTo(System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Int64_CompareTo_m21E0F72C677E986977303B18D5472487319DCFD2 (int64_t* __this, int64_t ___value0, const RuntimeMethod* method);
// System.Int32 System.String::CompareOrdinal(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_CompareOrdinal_m172D84EDDE0823F53EAB60857C07EA7F85600068 (String_t* ___strA0, String_t* ___strB1, const RuntimeMethod* method);
// System.Int32 System.Boolean::CompareTo(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Boolean_CompareTo_m0646A70387C90DAF7C85AF4234879E31E4422911 (bool* __this, bool ___value0, const RuntimeMethod* method);
// System.Int32 System.DateTime::CompareTo(System.DateTime)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_CompareTo_mB538B6524ED249F1A5ED43E00D61F7D9EB3DAD6E (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___value0, const RuntimeMethod* method);
// System.Int32 System.DateTimeOffset::CompareTo(System.DateTimeOffset)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTimeOffset_CompareTo_mE372597750E856BC3BD7B353C7E33AC3D464CE17 (DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 * __this, DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 ___other0, const RuntimeMethod* method);
// System.Int32 Valve.Newtonsoft.Json.Utilities.MiscellaneousUtils::ByteArrayCompare(System.Byte[],System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MiscellaneousUtils_ByteArrayCompare_m15FC51CFB98AE57CE94C50CB3A8B7E5C4D1ABE56 (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___a10, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___a21, const RuntimeMethod* method);
// System.Int32 System.Guid::CompareTo(System.Guid)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Guid_CompareTo_m85822635D81461BAA94200BF0B3C903E11400996 (Guid_t * __this, Guid_t ___value0, const RuntimeMethod* method);
// System.Collections.Generic.Comparer`1<!0> System.Collections.Generic.Comparer`1<System.String>::get_Default()
inline Comparer_1_tC8913CC0230510AB5B82485EAEF003DA0F4B9903 * Comparer_1_get_Default_m5C03A395556B2D119E9A28F161C86E4B45946CD8 (const RuntimeMethod* method)
{
return (( Comparer_1_tC8913CC0230510AB5B82485EAEF003DA0F4B9903 * (*) (const RuntimeMethod*))Comparer_1_get_Default_m84DEFB8B389618F98B055848A21DEAB2782581A3_gshared)(method);
}
// System.Int32 System.TimeSpan::CompareTo(System.TimeSpan)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TimeSpan_CompareTo_mCC797C9F7FF3BC0D7C8401666BDE7DCE676449E3 (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * __this, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___value0, const RuntimeMethod* method);
// System.Boolean Valve.Newtonsoft.Json.Utilities.MathUtils::ApproxEquals(System.Double,System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MathUtils_ApproxEquals_mF6A8D6AA3AF08A6756A6EAF83C151123375CA7B2 (double ___d10, double ___d21, const RuntimeMethod* method);
// System.Int32 System.Double::CompareTo(System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Double_CompareTo_m569906D5264ACFD3D0D5A1BAD116DC2CBCA0F4B1 (double* __this, double ___value0, const RuntimeMethod* method);
// Valve.Newtonsoft.Json.Linq.JTokenType Valve.Newtonsoft.Json.Linq.JValue::GetStringValueType(System.Nullable`1<Valve.Newtonsoft.Json.Linq.JTokenType>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JValue_GetStringValueType_mC39E95745022629EEB912949D0C5B03D314059EC (Nullable_1_t4FE8EDAD79D2EC3D50B7ED18BE847A12A2306D57 ___current0, const RuntimeMethod* method);
// System.Boolean System.Nullable`1<Valve.Newtonsoft.Json.Linq.JTokenType>::get_HasValue()
inline bool Nullable_1_get_HasValue_m5AAEB2419E1515393FE6C3CE4C92E04D6B545589_inline (Nullable_1_t4FE8EDAD79D2EC3D50B7ED18BE847A12A2306D57 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Nullable_1_t4FE8EDAD79D2EC3D50B7ED18BE847A12A2306D57 *, const RuntimeMethod*))Nullable_1_get_HasValue_mB0A6989529561627BBB65E6E4342DAA6549DD5A9_gshared_inline)(__this, method);
}
// !0 System.Nullable`1<Valve.Newtonsoft.Json.Linq.JTokenType>::GetValueOrDefault()
inline int32_t Nullable_1_GetValueOrDefault_mAD5954CC09B0C1B1E228F9B5295A2EA6B6EAF72E_inline (Nullable_1_t4FE8EDAD79D2EC3D50B7ED18BE847A12A2306D57 * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (Nullable_1_t4FE8EDAD79D2EC3D50B7ED18BE847A12A2306D57 *, const RuntimeMethod*))Nullable_1_GetValueOrDefault_m256BDDFFC9F6CE76EBBC5A9A6ED0A6FFB9F0455F_gshared_inline)(__this, method);
}
// Valve.Newtonsoft.Json.JsonConverter Valve.Newtonsoft.Json.JsonSerializer::GetMatchingConverter(System.Collections.Generic.IList`1<Valve.Newtonsoft.Json.JsonConverter>,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * JsonSerializer_GetMatchingConverter_mAB5315608093639E8A4F5518F05B9AE0FCAA9051 (RuntimeObject* ___converters0, Type_t * ___objectType1, const RuntimeMethod* method);
// System.Int32 Valve.Newtonsoft.Json.Linq.JValue::Compare(Valve.Newtonsoft.Json.Linq.JTokenType,System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JValue_Compare_m9E45171FF4562ADE3112F1468C2E0DB9AAEBD9F8 (int32_t ___valueType0, RuntimeObject * ___objA1, RuntimeObject * ___objB2, const RuntimeMethod* method);
// System.Boolean Valve.Newtonsoft.Json.Linq.JValue::ValuesEquals(Valve.Newtonsoft.Json.Linq.JValue,Valve.Newtonsoft.Json.Linq.JValue)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JValue_ValuesEquals_m0B2F3E5286EE2759AB8D01C81EF45D197592C38A (JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * ___v10, JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * ___v21, const RuntimeMethod* method);
// System.Boolean Valve.Newtonsoft.Json.Linq.JValue::Equals(Valve.Newtonsoft.Json.Linq.JValue)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JValue_Equals_m17BFD844D67EFBDFE8DCA5E992F4C1B5C3795A15 (JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * __this, JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * ___other0, const RuntimeMethod* method);
// System.Boolean System.Object::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Object_Equals_mEEF0C9AADB29464A832CCA4B9B9BFD8E3DC28F7B (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.String Valve.Newtonsoft.Json.Linq.JValue::ToString(System.String,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JValue_ToString_m15013498786D88B25B55CB2D00130932F043C191 (JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * __this, String_t* ___format0, RuntimeObject* ___formatProvider1, const RuntimeMethod* method);
// System.Object Valve.Newtonsoft.Json.Linq.JToken::ToObject(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * JToken_ToObject_m25DE37D91924DB94B96FB2A86FD4CEEB0BE1878D (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * __this, Type_t * ___objectType0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.DefaultContractResolverState::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultContractResolverState__ctor_mBB3FBAADAB4CF37F0B15FD1E1EF4921A35CA9884 (DefaultContractResolverState_t8B0D63DB1C8B5BA14A03ADBEF0EA1141B8604DE6 * __this, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::set_IgnoreSerializableAttribute(System.Boolean)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void DefaultContractResolver_set_IgnoreSerializableAttribute_mE9C620C5A904A43B2233C55065C1AA95178B5AF1_inline (DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0 * __this, bool ___value0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::set_DefaultMembersSearchFlags(System.Reflection.BindingFlags)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void DefaultContractResolver_set_DefaultMembersSearchFlags_mC17D91870D34F29693726A514084D2D2FBDD45D7_inline (DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0 * __this, int32_t ___value0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultContractResolver__ctor_mD2A33AC83A6273FDBB5B1A34763BF33EA08A170E (DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0 * __this, const RuntimeMethod* method);
// Valve.Newtonsoft.Json.Serialization.DefaultContractResolverState Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::GetState()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DefaultContractResolverState_t8B0D63DB1C8B5BA14A03ADBEF0EA1141B8604DE6 * DefaultContractResolver_GetState_mFCCCECDBB23E606E405F563044BC5DBCE097EC78 (DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0 * __this, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.ResolverContractKey::.ctor(System.Type,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ResolverContractKey__ctor_m7F50917B7ACEBC8515292092994727274A708FB5 (ResolverContractKey_tFC0DA3A6971980AA6D4E6E0D85CEB0D25615534B * __this, Type_t * ___resolverType0, Type_t * ___contractType1, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.Dictionary`2<Valve.Newtonsoft.Json.Serialization.ResolverContractKey,Valve.Newtonsoft.Json.Serialization.JsonContract>::TryGetValue(!0,!1&)
inline bool Dictionary_2_TryGetValue_mF3EE7766A8B8DCD452A1665720F9E1003684D7AB (Dictionary_2_t3B0A775E26AFCA1B3A8DF100D5CB736C522494F7 * __this, ResolverContractKey_tFC0DA3A6971980AA6D4E6E0D85CEB0D25615534B ___key0, JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 ** ___value1, const RuntimeMethod* method)
{
return (( bool (*) (Dictionary_2_t3B0A775E26AFCA1B3A8DF100D5CB736C522494F7 *, ResolverContractKey_tFC0DA3A6971980AA6D4E6E0D85CEB0D25615534B , JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 **, const RuntimeMethod*))Dictionary_2_TryGetValue_mFCE0DF182B3561320DFC6CA699E9146D996B8567_gshared)(__this, ___key0, ___value1, method);
}
// System.Void System.Threading.Monitor::Enter(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Enter_m903755FCC479745619842CCDBF5E6355319FA102 (RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2<Valve.Newtonsoft.Json.Serialization.ResolverContractKey,Valve.Newtonsoft.Json.Serialization.JsonContract>::.ctor()
inline void Dictionary_2__ctor_mB39AB93E460ACA277325DF69BE1252620D2CBF96 (Dictionary_2_t3B0A775E26AFCA1B3A8DF100D5CB736C522494F7 * __this, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_t3B0A775E26AFCA1B3A8DF100D5CB736C522494F7 *, const RuntimeMethod*))Dictionary_2__ctor_mA022F4451A3A6C627F110984A8299A7AFF185C59_gshared)(__this, method);
}
// System.Void System.Collections.Generic.Dictionary`2<Valve.Newtonsoft.Json.Serialization.ResolverContractKey,Valve.Newtonsoft.Json.Serialization.JsonContract>::.ctor(System.Collections.Generic.IDictionary`2<!0,!1>)
inline void Dictionary_2__ctor_mD1ACF14CCF3813AFE70918E0FA42DBAFB51FB5DD (Dictionary_2_t3B0A775E26AFCA1B3A8DF100D5CB736C522494F7 * __this, RuntimeObject* ___dictionary0, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_t3B0A775E26AFCA1B3A8DF100D5CB736C522494F7 *, RuntimeObject*, const RuntimeMethod*))Dictionary_2__ctor_mFA0FB48026BD0BC2053B0F0BD550513F3557101D_gshared)(__this, ___dictionary0, method);
}
// System.Void System.Collections.Generic.Dictionary`2<Valve.Newtonsoft.Json.Serialization.ResolverContractKey,Valve.Newtonsoft.Json.Serialization.JsonContract>::set_Item(!0,!1)
inline void Dictionary_2_set_Item_m37A4F5A4FF3E6E252E7D8A933760D916A692D8C9 (Dictionary_2_t3B0A775E26AFCA1B3A8DF100D5CB736C522494F7 * __this, ResolverContractKey_tFC0DA3A6971980AA6D4E6E0D85CEB0D25615534B ___key0, JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * ___value1, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_t3B0A775E26AFCA1B3A8DF100D5CB736C522494F7 *, ResolverContractKey_tFC0DA3A6971980AA6D4E6E0D85CEB0D25615534B , JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 *, const RuntimeMethod*))Dictionary_2_set_Item_mDE9325202E28E7E84757B78883B48BF8958C586C_gshared)(__this, ___key0, ___value1, method);
}
// System.Void System.Threading.Monitor::Exit(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2 (RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Boolean Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::get_IgnoreSerializableAttribute()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool DefaultContractResolver_get_IgnoreSerializableAttribute_mA16EC5B2658D11EC6DC88B5D69D4F503BCFD89AC_inline (DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0 * __this, const RuntimeMethod* method);
// Valve.Newtonsoft.Json.MemberSerialization Valve.Newtonsoft.Json.Serialization.JsonTypeReflector::GetObjectMemberSerialization(System.Type,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JsonTypeReflector_GetObjectMemberSerialization_m352B80C91A5553DFFEB61B2887EC14E05FD09D9F (Type_t * ___objectType0, bool ___ignoreSerializableAttribute1, const RuntimeMethod* method);
// System.Collections.Generic.List`1<System.Reflection.MemberInfo> Valve.Newtonsoft.Json.Utilities.ReflectionUtils::GetFieldsAndProperties(System.Type,System.Reflection.BindingFlags)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_t610995BF9B0DCC99DF41C7D0D54AA44EF8552AE9 * ReflectionUtils_GetFieldsAndProperties_m572513D13B653D23CDAE2DD777E37AC98FFE0EFF (Type_t * ___type0, int32_t ___bindingAttr1, const RuntimeMethod* method);
// System.Void System.Func`2<System.Reflection.MemberInfo,System.Boolean>::.ctor(System.Object,System.IntPtr)
inline void Func_2__ctor_m58DDD084DBBB1A509257D8D2463AE5B269E9D979 (Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422 *, RuntimeObject *, intptr_t, const RuntimeMethod*))Func_2__ctor_m5153AE6EE06BA488EF3D92A0DCF7E4EF530961B5_gshared)(__this, ___object0, ___method1, method);
}
// System.Collections.Generic.IEnumerable`1<!!0> System.Linq.Enumerable::Where<System.Reflection.MemberInfo>(System.Collections.Generic.IEnumerable`1<!!0>,System.Func`2<!!0,System.Boolean>)
inline RuntimeObject* Enumerable_Where_TisMemberInfo_t_m671B17003622EEB0584286D7B36E212C1279FAC3 (RuntimeObject* ___source0, Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422 * ___predicate1, const RuntimeMethod* method)
{
return (( RuntimeObject* (*) (RuntimeObject*, Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422 *, const RuntimeMethod*))Enumerable_Where_TisRuntimeObject_m77C4748BC22520E365AB1F6A46B2C8A8BF525492_gshared)(___source0, ___predicate1, method);
}
// System.Collections.Generic.List`1<!!0> System.Linq.Enumerable::ToList<System.Reflection.MemberInfo>(System.Collections.Generic.IEnumerable`1<!!0>)
inline List_1_t610995BF9B0DCC99DF41C7D0D54AA44EF8552AE9 * Enumerable_ToList_TisMemberInfo_t_m7A213F8EE97FCD65CB42A50AB6108A97C365DCCF (RuntimeObject* ___source0, const RuntimeMethod* method)
{
return (( List_1_t610995BF9B0DCC99DF41C7D0D54AA44EF8552AE9 * (*) (RuntimeObject*, const RuntimeMethod*))Enumerable_ToList_TisRuntimeObject_mB1685447626095E135D3DC76A9DAA32B14AC7AD2_gshared)(___source0, method);
}
// System.Void System.Collections.Generic.List`1<System.Reflection.MemberInfo>::.ctor()
inline void List_1__ctor_mFA8EA6FA453663BACE3484A2991920D2BFC5BFA5 (List_1_t610995BF9B0DCC99DF41C7D0D54AA44EF8552AE9 * __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t610995BF9B0DCC99DF41C7D0D54AA44EF8552AE9 *, const RuntimeMethod*))List_1__ctor_mC832F1AC0F814BAEB19175F5D7972A7507508BC3_gshared)(__this, method);
}
// System.Runtime.Serialization.DataContractAttribute Valve.Newtonsoft.Json.Serialization.JsonTypeReflector::GetDataContractAttribute(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DataContractAttribute_tAD58D5877BD04EADB56BB4AEDDE342C73F032FC5 * JsonTypeReflector_GetDataContractAttribute_m62122785FB6670DF3D75AEF50EAA7ACF6DE1FDFB (Type_t * ___type0, const RuntimeMethod* method);
// System.Reflection.BindingFlags Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::get_DefaultMembersSearchFlags()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t DefaultContractResolver_get_DefaultMembersSearchFlags_m1B01EBF0E7FF14D1E481B705DE1B927566EC6B81_inline (DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0 * __this, const RuntimeMethod* method);
// System.Collections.Generic.List`1/Enumerator<!0> System.Collections.Generic.List`1<System.Reflection.MemberInfo>::GetEnumerator()
inline Enumerator_t485345BBD355ED7025F8E5EA8AF95F42AC192DCE List_1_GetEnumerator_mFEF2B830CDDC70282149401E9A5B02BF87E05640 (List_1_t610995BF9B0DCC99DF41C7D0D54AA44EF8552AE9 * __this, const RuntimeMethod* method)
{
return (( Enumerator_t485345BBD355ED7025F8E5EA8AF95F42AC192DCE (*) (List_1_t610995BF9B0DCC99DF41C7D0D54AA44EF8552AE9 *, const RuntimeMethod*))List_1_GetEnumerator_m52CC760E475D226A2B75048D70C4E22692F9F68D_gshared)(__this, method);
}
// !0 System.Collections.Generic.List`1/Enumerator<System.Reflection.MemberInfo>::get_Current()
inline MemberInfo_t * Enumerator_get_Current_m479DA5158B45BF087D2F8DC029031FFF732A7B00_inline (Enumerator_t485345BBD355ED7025F8E5EA8AF95F42AC192DCE * __this, const RuntimeMethod* method)
{
return (( MemberInfo_t * (*) (Enumerator_t485345BBD355ED7025F8E5EA8AF95F42AC192DCE *, const RuntimeMethod*))Enumerator_get_Current_mD7829C7E8CFBEDD463B15A951CDE9B90A12CC55C_gshared_inline)(__this, method);
}
// System.Boolean Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::get_SerializeCompilerGeneratedMembers()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool DefaultContractResolver_get_SerializeCompilerGeneratedMembers_m3F5EBE5709E33F6EC9829EF76A2E0741508883ED_inline (DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0 * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.List`1<System.Reflection.MemberInfo>::Contains(!0)
inline bool List_1_Contains_mBED8ADA0F3C97C492E753CEBEDAC85BD773182B5 (List_1_t610995BF9B0DCC99DF41C7D0D54AA44EF8552AE9 * __this, MemberInfo_t * ___item0, const RuntimeMethod* method)
{
return (( bool (*) (List_1_t610995BF9B0DCC99DF41C7D0D54AA44EF8552AE9 *, MemberInfo_t *, const RuntimeMethod*))List_1_Contains_mE08D561E86879A26245096C572A8593279383FDB_gshared)(__this, ___item0, method);
}
// System.Void System.Collections.Generic.List`1<System.Reflection.MemberInfo>::Add(!0)
inline void List_1_Add_m44D5E54D0DA87DBF2841553D62C0FC3376B90ACB (List_1_t610995BF9B0DCC99DF41C7D0D54AA44EF8552AE9 * __this, MemberInfo_t * ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_t610995BF9B0DCC99DF41C7D0D54AA44EF8552AE9 *, MemberInfo_t *, const RuntimeMethod*))List_1_Add_m6930161974C7504C80F52EC379EF012387D43138_gshared)(__this, ___item0, method);
}
// T Valve.Newtonsoft.Json.Serialization.JsonTypeReflector::GetAttribute<Valve.Newtonsoft.Json.JsonPropertyAttribute>(System.Object)
inline JsonPropertyAttribute_tD66B9C74F3201FFAF7A16DB84AEA31FE8F02ED5F * JsonTypeReflector_GetAttribute_TisJsonPropertyAttribute_tD66B9C74F3201FFAF7A16DB84AEA31FE8F02ED5F_m627E8BDF71B670CB00F5311E19D499ECA1584EC6 (RuntimeObject * ___provider0, const RuntimeMethod* method)
{
return (( JsonPropertyAttribute_tD66B9C74F3201FFAF7A16DB84AEA31FE8F02ED5F * (*) (RuntimeObject *, const RuntimeMethod*))JsonTypeReflector_GetAttribute_TisRuntimeObject_mAAF2DC002D6A4A40732F2AFFE03A51CC08DFC465_gshared)(___provider0, method);
}
// T Valve.Newtonsoft.Json.Serialization.JsonTypeReflector::GetAttribute<Valve.Newtonsoft.Json.JsonRequiredAttribute>(System.Object)
inline JsonRequiredAttribute_t9DE102747DCD1EBD135D2545271F6E894CEA77AB * JsonTypeReflector_GetAttribute_TisJsonRequiredAttribute_t9DE102747DCD1EBD135D2545271F6E894CEA77AB_m6CB9D398D41E25D413A96E896D10E11D27475B91 (RuntimeObject * ___provider0, const RuntimeMethod* method)
{
return (( JsonRequiredAttribute_t9DE102747DCD1EBD135D2545271F6E894CEA77AB * (*) (RuntimeObject *, const RuntimeMethod*))JsonTypeReflector_GetAttribute_TisRuntimeObject_mAAF2DC002D6A4A40732F2AFFE03A51CC08DFC465_gshared)(___provider0, method);
}
// T Valve.Newtonsoft.Json.Serialization.JsonTypeReflector::GetAttribute<System.Runtime.Serialization.DataMemberAttribute>(System.Object)
inline DataMemberAttribute_tC865433FEC93FFD46D6F3E4BB28F262C9EE40525 * JsonTypeReflector_GetAttribute_TisDataMemberAttribute_tC865433FEC93FFD46D6F3E4BB28F262C9EE40525_mA823032711717A7EE0047E7DBA6F8FE2357353DE (RuntimeObject * ___provider0, const RuntimeMethod* method)
{
return (( DataMemberAttribute_tC865433FEC93FFD46D6F3E4BB28F262C9EE40525 * (*) (RuntimeObject *, const RuntimeMethod*))JsonTypeReflector_GetAttribute_TisRuntimeObject_mAAF2DC002D6A4A40732F2AFFE03A51CC08DFC465_gshared)(___provider0, method);
}
// System.Reflection.MemberTypes Valve.Newtonsoft.Json.Utilities.TypeExtensions::MemberType(System.Reflection.MemberInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TypeExtensions_MemberType_mF6FAE7764FE8D872C9632AD3F93152D623900232 (MemberInfo_t * ___memberInfo0, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Reflection.MemberInfo>::MoveNext()
inline bool Enumerator_MoveNext_m5A102BF020B7804F89B69697EC3D0569F81A3205 (Enumerator_t485345BBD355ED7025F8E5EA8AF95F42AC192DCE * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t485345BBD355ED7025F8E5EA8AF95F42AC192DCE *, const RuntimeMethod*))Enumerator_MoveNext_m38B1099DDAD7EEDE2F4CDAB11C095AC784AC2E34_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.Reflection.MemberInfo>::Dispose()
inline void Enumerator_Dispose_mE9CDCD8C0406CFD21812928A31C5898C38218AB2 (Enumerator_t485345BBD355ED7025F8E5EA8AF95F42AC192DCE * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t485345BBD355ED7025F8E5EA8AF95F42AC192DCE *, const RuntimeMethod*))Enumerator_Dispose_m94D0DAE031619503CDA6E53C5C3CC78AF3139472_gshared)(__this, method);
}
// System.Boolean Valve.Newtonsoft.Json.Utilities.TypeExtensions::AssignableToTypeName(System.Type,System.String,System.Type&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeExtensions_AssignableToTypeName_m21701CDE0E93F32538B6A040843C29FCA64EB860 (Type_t * ___type0, String_t* ___fullTypeName1, Type_t ** ___match2, const RuntimeMethod* method);
// System.Boolean System.Reflection.FieldInfo::get_IsStatic()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FieldInfo_get_IsStatic_mDEB4099D238E5846246F0ACED3FF9AD9C93D8ECA (FieldInfo_t * __this, const RuntimeMethod* method);
// System.Boolean Valve.Newtonsoft.Json.Utilities.TypeExtensions::IsGenericType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeExtensions_IsGenericType_m187F153940B59E33DB80464C8D55569BFD18402E (Type_t * ___type0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.JsonObjectContract::.ctor(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonObjectContract__ctor_m5319DA76CBB1FF6AA8B3879D93E281EB44E2D3FF (JsonObjectContract_tC08A0614773A277BE2FACD612729195811D606B5 * __this, Type_t * ___underlyingType0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::InitializeContract(Valve.Newtonsoft.Json.Serialization.JsonContract)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultContractResolver_InitializeContract_mC72BF19CFC13D483F2BD52C1825F01350DDBF749 (DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0 * __this, JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * ___contract0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.JsonObjectContract::set_MemberSerialization(Valve.Newtonsoft.Json.MemberSerialization)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonObjectContract_set_MemberSerialization_mEC12A9E2B798DDDA5625E899B57B640435B87113_inline (JsonObjectContract_tC08A0614773A277BE2FACD612729195811D606B5 * __this, int32_t ___value0, const RuntimeMethod* method);
// Valve.Newtonsoft.Json.Serialization.JsonPropertyCollection Valve.Newtonsoft.Json.Serialization.JsonObjectContract::get_Properties()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR JsonPropertyCollection_tC08CC5508836C9712A08DDE9E2BC413BD3A61715 * JsonObjectContract_get_Properties_mDF4C6B62A6E7827416EF14490F4F966C94EA47E7_inline (JsonObjectContract_tC08A0614773A277BE2FACD612729195811D606B5 * __this, const RuntimeMethod* method);
// Valve.Newtonsoft.Json.MemberSerialization Valve.Newtonsoft.Json.Serialization.JsonObjectContract::get_MemberSerialization()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t JsonObjectContract_get_MemberSerialization_m613A7C5F80AF3F817B55EB6E250C3A084CF254C9_inline (JsonObjectContract_tC08A0614773A277BE2FACD612729195811D606B5 * __this, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Utilities.CollectionUtils::AddRange<Valve.Newtonsoft.Json.Serialization.JsonProperty>(System.Collections.Generic.IList`1<T>,System.Collections.Generic.IEnumerable`1<T>)
inline void CollectionUtils_AddRange_TisJsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB_m7969A4E6532E739B4C49A481435E53FCFC7D8106 (RuntimeObject* ___initial0, RuntimeObject* ___collection1, const RuntimeMethod* method)
{
(( void (*) (RuntimeObject*, RuntimeObject*, const RuntimeMethod*))CollectionUtils_AddRange_TisRuntimeObject_m3D9182FBB92D8AACB0583059C8339553220DDFE6_gshared)(___initial0, ___collection1, method);
}
// T Valve.Newtonsoft.Json.Serialization.JsonTypeReflector::GetCachedAttribute<Valve.Newtonsoft.Json.JsonObjectAttribute>(System.Object)
inline JsonObjectAttribute_tBFAF1467CED5A13D2048CF8E61AEEEC05413CC62 * JsonTypeReflector_GetCachedAttribute_TisJsonObjectAttribute_tBFAF1467CED5A13D2048CF8E61AEEEC05413CC62_mFFBA00B0579B6472C115CA65EB4EDCA60AF54A10 (RuntimeObject * ___attributeProvider0, const RuntimeMethod* method)
{
return (( JsonObjectAttribute_tBFAF1467CED5A13D2048CF8E61AEEEC05413CC62 * (*) (RuntimeObject *, const RuntimeMethod*))JsonTypeReflector_GetCachedAttribute_TisRuntimeObject_m236AA84987823AAD85EC94017F7C77BBDB25DF62_gshared)(___attributeProvider0, method);
}
// System.Void Valve.Newtonsoft.Json.Serialization.JsonObjectContract::set_ItemRequired(System.Nullable`1<Valve.Newtonsoft.Json.Required>)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonObjectContract_set_ItemRequired_m384A5E1AD0F12835F2523DCBC53495D9747394A2_inline (JsonObjectContract_tC08A0614773A277BE2FACD612729195811D606B5 * __this, Nullable_1_t240C94038A74304286AD4C81EAEFD24E6E435A06 ___value0, const RuntimeMethod* method);
// System.Reflection.ConstructorInfo Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::GetAttributeConstructor(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * DefaultContractResolver_GetAttributeConstructor_m7948A333399831BA741E4E498319B86A299DBC50 (DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0 * __this, Type_t * ___objectType0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.JsonObjectContract::set_OverrideConstructor(System.Reflection.ConstructorInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonObjectContract_set_OverrideConstructor_m043A36DD0DB398D56A6CB28695026216A901204A (JsonObjectContract_tC08A0614773A277BE2FACD612729195811D606B5 * __this, ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * ___value0, const RuntimeMethod* method);
// Valve.Newtonsoft.Json.Serialization.JsonPropertyCollection Valve.Newtonsoft.Json.Serialization.JsonObjectContract::get_CreatorParameters()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonPropertyCollection_tC08CC5508836C9712A08DDE9E2BC413BD3A61715 * JsonObjectContract_get_CreatorParameters_mCF70C7BD9C3B243D1E0D332B324DEBF5844585E2 (JsonObjectContract_tC08A0614773A277BE2FACD612729195811D606B5 * __this, const RuntimeMethod* method);
// System.Boolean Valve.Newtonsoft.Json.Serialization.JsonTypeReflector::get_FullyTrusted()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonTypeReflector_get_FullyTrusted_m8916B2D46C1717E6F353E5DD25F64EF018E13B79 (const RuntimeMethod* method);
// System.Void System.Func`1<System.Object>::.ctor(System.Object,System.IntPtr)
inline void Func_1__ctor_mE02699FC76D830943069F8FC19D16C3B72A98A1F (Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 *, RuntimeObject *, intptr_t, const RuntimeMethod*))Func_1__ctor_mE02699FC76D830943069F8FC19D16C3B72A98A1F_gshared)(__this, ___object0, ___method1, method);
}
// System.Void Valve.Newtonsoft.Json.Serialization.JsonContract::set_DefaultCreator(System.Func`1<System.Object>)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonContract_set_DefaultCreator_mCFA258FC6B3166F8C0DFCABCB8A8F8233704AF6E_inline (JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * __this, Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 * ___value0, const RuntimeMethod* method);
// System.Func`1<System.Object> Valve.Newtonsoft.Json.Serialization.JsonContract::get_DefaultCreator()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 * JsonContract_get_DefaultCreator_mEC599F3E488D3176FBD5D23A13ADF5F548A9749F_inline (JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * __this, const RuntimeMethod* method);
// System.Boolean Valve.Newtonsoft.Json.Serialization.JsonContract::get_DefaultCreatorNonPublic()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool JsonContract_get_DefaultCreatorNonPublic_m16E06A91D081B642B9134CE51AC57A887269FAEE_inline (JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * __this, const RuntimeMethod* method);
// System.Reflection.ConstructorInfo Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::GetParameterizedConstructor(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * DefaultContractResolver_GetParameterizedConstructor_mE487EB54B281EB43B3F1DEEB8143F2188E305564 (DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0 * __this, Type_t * ___objectType0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.JsonObjectContract::set_ParametrizedConstructor(System.Reflection.ConstructorInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonObjectContract_set_ParametrizedConstructor_m6BB49756EA92A768700AD141BF50FDA4FF513FEB (JsonObjectContract_tC08A0614773A277BE2FACD612729195811D606B5 * __this, ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * ___value0, const RuntimeMethod* method);
// System.Reflection.MemberInfo Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::GetExtensionDataMemberForType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MemberInfo_t * DefaultContractResolver_GetExtensionDataMemberForType_m749CA4710908A48EFEE948FAA0C57C9F156FA763 (DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0 * __this, Type_t * ___type0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::SetExtensionDataDelegates(Valve.Newtonsoft.Json.Serialization.JsonObjectContract,System.Reflection.MemberInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultContractResolver_SetExtensionDataDelegates_m98D75D56A50EE016652E1A2496BD192B65391103 (JsonObjectContract_tC08A0614773A277BE2FACD612729195811D606B5 * ___contract0, MemberInfo_t * ___member1, const RuntimeMethod* method);
// System.Collections.Generic.List`1<System.Type> Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::GetClassHierarchyForType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * DefaultContractResolver_GetClassHierarchyForType_mB2C0F793AEC5EC4C1495F0972B81A887F407D9E5 (DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0 * __this, Type_t * ___type0, const RuntimeMethod* method);
// System.Void System.Func`2<System.Type,System.Collections.Generic.IEnumerable`1<System.Reflection.MemberInfo>>::.ctor(System.Object,System.IntPtr)
inline void Func_2__ctor_mFD031D4728B03AEA457A29E691DE1ACBA26C0FC9 (Func_2_t29F202ACCD37C598BCE6BF369E5B1493D173132A * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (Func_2_t29F202ACCD37C598BCE6BF369E5B1493D173132A *, RuntimeObject *, intptr_t, const RuntimeMethod*))Func_2__ctor_mE2AF7615AD18E9CD92B1909285F5EC5DA8D180C8_gshared)(__this, ___object0, ___method1, method);
}
// System.Collections.Generic.IEnumerable`1<!!1> System.Linq.Enumerable::SelectMany<System.Type,System.Reflection.MemberInfo>(System.Collections.Generic.IEnumerable`1<!!0>,System.Func`2<!!0,System.Collections.Generic.IEnumerable`1<!!1>>)
inline RuntimeObject* Enumerable_SelectMany_TisType_t_TisMemberInfo_t_m4C2DC99E9641A40C5E24A32DB7895355A98ECA96 (RuntimeObject* ___source0, Func_2_t29F202ACCD37C598BCE6BF369E5B1493D173132A * ___selector1, const RuntimeMethod* method)
{
return (( RuntimeObject* (*) (RuntimeObject*, Func_2_t29F202ACCD37C598BCE6BF369E5B1493D173132A *, const RuntimeMethod*))Enumerable_SelectMany_TisRuntimeObject_TisRuntimeObject_mC5842AD0D2C99ABB84B41345EA1480587202F268_gshared)(___source0, ___selector1, method);
}
// !!0 System.Linq.Enumerable::LastOrDefault<System.Reflection.MemberInfo>(System.Collections.Generic.IEnumerable`1<!!0>,System.Func`2<!!0,System.Boolean>)
inline MemberInfo_t * Enumerable_LastOrDefault_TisMemberInfo_t_mB68CF49DBC1516E24EABF9C6634563E8DBE6FD4D (RuntimeObject* ___source0, Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422 * ___predicate1, const RuntimeMethod* method)
{
return (( MemberInfo_t * (*) (RuntimeObject*, Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422 *, const RuntimeMethod*))Enumerable_LastOrDefault_TisRuntimeObject_mD8B42F43A8C1D65529D0CDAD1CAAF84EF7742DA6_gshared)(___source0, ___predicate1, method);
}
// System.Void Valve.Newtonsoft.Json.Serialization.DefaultContractResolver/<>c__DisplayClass38_0::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass38_0__ctor_m0053D7D584A80A955B8788CFD642EB173CC7C609 (U3CU3Ec__DisplayClass38_0_t31ED35E7ECFD78ECE1228AF29488F148585F4667 * __this, const RuntimeMethod* method);
// T Valve.Newtonsoft.Json.Utilities.ReflectionUtils::GetAttribute<Valve.Newtonsoft.Json.JsonExtensionDataAttribute>(System.Object)
inline JsonExtensionDataAttribute_tC858B08E1ACE700629982E390F2FDA7A0580C208 * ReflectionUtils_GetAttribute_TisJsonExtensionDataAttribute_tC858B08E1ACE700629982E390F2FDA7A0580C208_m39DA5BEFA21B8168DE32CA17A77A9C44FF9C8956 (RuntimeObject * ___attributeProvider0, const RuntimeMethod* method)
{
return (( JsonExtensionDataAttribute_tC858B08E1ACE700629982E390F2FDA7A0580C208 * (*) (RuntimeObject *, const RuntimeMethod*))ReflectionUtils_GetAttribute_TisRuntimeObject_m03D4886C8E1C9FC954C9D2EF2FBFF0303881696F_gshared)(___attributeProvider0, method);
}
// System.Type Valve.Newtonsoft.Json.Utilities.ReflectionUtils::GetMemberUnderlyingType(System.Reflection.MemberInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * ReflectionUtils_GetMemberUnderlyingType_m22BCFA3BF7FDF789A7801EB57F09CFF695A5A1AE (MemberInfo_t * ___member0, const RuntimeMethod* method);
// System.Boolean Valve.Newtonsoft.Json.Utilities.ReflectionUtils::ImplementsGenericDefinition(System.Type,System.Type,System.Type&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReflectionUtils_ImplementsGenericDefinition_m58DB3D664FDF436112B4EE8A4D653B53E01773B1 (Type_t * ___type0, Type_t * ___genericInterfaceDefinition1, Type_t ** ___implementingType2, const RuntimeMethod* method);
// System.Boolean Valve.Newtonsoft.Json.Utilities.ReflectionUtils::IsGenericDefinition(System.Type,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReflectionUtils_IsGenericDefinition_m11708AE621627DC05121D7397E4A08B7570E962D (Type_t * ___type0, Type_t * ___genericInterfaceDefinition1, const RuntimeMethod* method);
// Valve.Newtonsoft.Json.Utilities.ReflectionDelegateFactory Valve.Newtonsoft.Json.Serialization.JsonTypeReflector::get_ReflectionDelegateFactory()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReflectionDelegateFactory_t87E79CD61C3504844C338EEC1949177370F2029A * JsonTypeReflector_get_ReflectionDelegateFactory_mAD718C1AD00934D6A3A5B334C5494929E45A8DC7 (const RuntimeMethod* method);
// System.Func`2<T,System.Object> Valve.Newtonsoft.Json.Utilities.ReflectionDelegateFactory::CreateGet<System.Object>(System.Reflection.MemberInfo)
inline Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 * ReflectionDelegateFactory_CreateGet_TisRuntimeObject_m166AF4E86BA33EEBA827CA6E677F832942C2FD27 (ReflectionDelegateFactory_t87E79CD61C3504844C338EEC1949177370F2029A * __this, MemberInfo_t * ___memberInfo0, const RuntimeMethod* method)
{
return (( Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 * (*) (ReflectionDelegateFactory_t87E79CD61C3504844C338EEC1949177370F2029A *, MemberInfo_t *, const RuntimeMethod*))ReflectionDelegateFactory_CreateGet_TisRuntimeObject_m166AF4E86BA33EEBA827CA6E677F832942C2FD27_gshared)(__this, ___memberInfo0, method);
}
// System.Boolean Valve.Newtonsoft.Json.JsonExtensionDataAttribute::get_ReadData()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool JsonExtensionDataAttribute_get_ReadData_mDBD066FE73AB5AC1AC8077C85F6FE35E452D9681_inline (JsonExtensionDataAttribute_tC858B08E1ACE700629982E390F2FDA7A0580C208 * __this, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.DefaultContractResolver/<>c__DisplayClass38_1::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass38_1__ctor_mC0D60D876F0CE2742DB3497AA5A15B8DB2FFD553 (U3CU3Ec__DisplayClass38_1_tEB927264D5D83E106F29B33B1F933603E793D80E * __this, const RuntimeMethod* method);
// System.Boolean Valve.Newtonsoft.Json.Utilities.ReflectionUtils::CanSetMemberValue(System.Reflection.MemberInfo,System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReflectionUtils_CanSetMemberValue_mEB160257BB0AF0D73699286C7E01D01D18ECD14D (MemberInfo_t * ___member0, bool ___nonPublic1, bool ___canSetReadOnly2, const RuntimeMethod* method);
// System.Action`2<T,System.Object> Valve.Newtonsoft.Json.Utilities.ReflectionDelegateFactory::CreateSet<System.Object>(System.Reflection.MemberInfo)
inline Action_2_t0DB6FD6F515527EAB552B690A291778C6F00D48C * ReflectionDelegateFactory_CreateSet_TisRuntimeObject_mB53D97746F5CF11CB4A90CEDAA556F892464DC3A (ReflectionDelegateFactory_t87E79CD61C3504844C338EEC1949177370F2029A * __this, MemberInfo_t * ___memberInfo0, const RuntimeMethod* method)
{
return (( Action_2_t0DB6FD6F515527EAB552B690A291778C6F00D48C * (*) (ReflectionDelegateFactory_t87E79CD61C3504844C338EEC1949177370F2029A *, MemberInfo_t *, const RuntimeMethod*))ReflectionDelegateFactory_CreateSet_TisRuntimeObject_mB53D97746F5CF11CB4A90CEDAA556F892464DC3A_gshared)(__this, ___memberInfo0, method);
}
// System.Reflection.MethodInfo System.Type::GetMethod(System.String,System.Type[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * Type_GetMethod_m54E1EF62AFF44AA621E074D123C5C0B3E73A7DD5 (Type_t * __this, String_t* ___name0, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___types1, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.ExtensionDataSetter::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExtensionDataSetter__ctor_m5AAAF27B6B09525CF0D5F641C138F5FD9DAD0D3A (ExtensionDataSetter_t887F53572558DF1949C2035B2EC92D39343FE586 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.JsonObjectContract::set_ExtensionDataSetter(Valve.Newtonsoft.Json.Serialization.ExtensionDataSetter)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonObjectContract_set_ExtensionDataSetter_m784B3C7EB827EA14E5A87171C1066EB341DA64EB_inline (JsonObjectContract_tC08A0614773A277BE2FACD612729195811D606B5 * __this, ExtensionDataSetter_t887F53572558DF1949C2035B2EC92D39343FE586 * ___value0, const RuntimeMethod* method);
// System.Boolean Valve.Newtonsoft.Json.JsonExtensionDataAttribute::get_WriteData()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool JsonExtensionDataAttribute_get_WriteData_mA30CF92ECDD7B8C6D1A8F5D29CDE7FFEDD59CDFF_inline (JsonExtensionDataAttribute_tC858B08E1ACE700629982E390F2FDA7A0580C208 * __this, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.DefaultContractResolver/<>c__DisplayClass38_2::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass38_2__ctor_m9CEF89720ED8EACAAB47A775F3FD54C599F16846 (U3CU3Ec__DisplayClass38_2_t8AE307029E0A48708782194185E7E43CE1EAAD60 * __this, const RuntimeMethod* method);
// System.Reflection.ConstructorInfo[] System.Type::GetConstructors()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstructorInfoU5BU5D_t111EE7D53C51A47FE69FC3398DE007F7E100593E* Type_GetConstructors_m674DDAF4A507C09F344455449273B71384D41CBD (Type_t * __this, const RuntimeMethod* method);
// !!0 System.Linq.Enumerable::First<System.Reflection.ConstructorInfo>(System.Collections.Generic.IEnumerable`1<!!0>)
inline ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * Enumerable_First_TisConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF_m831AC1E4CE9601CF11E36159291087AD8EC0AB0D (RuntimeObject* ___source0, const RuntimeMethod* method)
{
return (( ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * (*) (RuntimeObject*, const RuntimeMethod*))Enumerable_First_TisRuntimeObject_mCB330DB6E69029984A35331B45A118EB39AE73B8_gshared)(___source0, method);
}
// System.Void Valve.Newtonsoft.Json.Serialization.ExtensionDataGetter::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExtensionDataGetter__ctor_mD67AFAC0A07BA876ADF2467C764379063F6319C2 (ExtensionDataGetter_t6CC1D4868317A6C03ADA77795B2563E77D993860 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.JsonObjectContract::set_ExtensionDataGetter(Valve.Newtonsoft.Json.Serialization.ExtensionDataGetter)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonObjectContract_set_ExtensionDataGetter_m8DB30A43CD750BDA1FC03D1A795474443426E9C9_inline (JsonObjectContract_tC08A0614773A277BE2FACD612729195811D606B5 * __this, ExtensionDataGetter_t6CC1D4868317A6C03ADA77795B2563E77D993860 * ___value0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.JsonObjectContract::set_ExtensionDataValueType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonObjectContract_set_ExtensionDataValueType_m6A6F8F47AF8C6AED64205FDCC914C79861B09D94 (JsonObjectContract_tC08A0614773A277BE2FACD612729195811D606B5 * __this, Type_t * ___value0, const RuntimeMethod* method);
// System.Void System.Func`2<System.Reflection.ConstructorInfo,System.Boolean>::.ctor(System.Object,System.IntPtr)
inline void Func_2__ctor_m679DF06801567BA8DB71ABE62D8B691F4E7A5902 (Func_2_tE50BC1D78F3969472F5276AA4812403240D166E3 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (Func_2_tE50BC1D78F3969472F5276AA4812403240D166E3 *, RuntimeObject *, intptr_t, const RuntimeMethod*))Func_2__ctor_m5153AE6EE06BA488EF3D92A0DCF7E4EF530961B5_gshared)(__this, ___object0, ___method1, method);
}
// System.Collections.Generic.IEnumerable`1<!!0> System.Linq.Enumerable::Where<System.Reflection.ConstructorInfo>(System.Collections.Generic.IEnumerable`1<!!0>,System.Func`2<!!0,System.Boolean>)
inline RuntimeObject* Enumerable_Where_TisConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF_mBF4A0E19D89AC541592A04F6D5D4CCBDC631F7AB (RuntimeObject* ___source0, Func_2_tE50BC1D78F3969472F5276AA4812403240D166E3 * ___predicate1, const RuntimeMethod* method)
{
return (( RuntimeObject* (*) (RuntimeObject*, Func_2_tE50BC1D78F3969472F5276AA4812403240D166E3 *, const RuntimeMethod*))Enumerable_Where_TisRuntimeObject_m77C4748BC22520E365AB1F6A46B2C8A8BF525492_gshared)(___source0, ___predicate1, method);
}
// System.Collections.Generic.List`1<!!0> System.Linq.Enumerable::ToList<System.Reflection.ConstructorInfo>(System.Collections.Generic.IEnumerable`1<!!0>)
inline List_1_t6CEA56ED94DFAE80FDAED89141EF7D6AB50F046E * Enumerable_ToList_TisConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF_m911EC3D44A57E78BD6437D6928FBBE287F8489CC (RuntimeObject* ___source0, const RuntimeMethod* method)
{
return (( List_1_t6CEA56ED94DFAE80FDAED89141EF7D6AB50F046E * (*) (RuntimeObject*, const RuntimeMethod*))Enumerable_ToList_TisRuntimeObject_mB1685447626095E135D3DC76A9DAA32B14AC7AD2_gshared)(___source0, method);
}
// System.Reflection.ConstructorInfo System.Type::GetConstructor(System.Type[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * Type_GetConstructor_m4371D7AD6A8E15067C698696B0167323CBC7F3DA (Type_t * __this, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___types0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.JsonPropertyCollection::.ctor(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonPropertyCollection__ctor_m341BA244BB4B57BA6F3B0679FC39B694A7806882 (JsonPropertyCollection_tC08CC5508836C9712A08DDE9E2BC413BD3A61715 * __this, Type_t * ___type0, const RuntimeMethod* method);
// Valve.Newtonsoft.Json.Serialization.JsonProperty Valve.Newtonsoft.Json.Serialization.JsonPropertyCollection::GetClosestMatchProperty(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * JsonPropertyCollection_GetClosestMatchProperty_m9A350E5F107CE24D972870410BD5281B0FE856AD (JsonPropertyCollection_tC08CC5508836C9712A08DDE9E2BC413BD3A61715 * __this, String_t* ___propertyName0, const RuntimeMethod* method);
// System.Type Valve.Newtonsoft.Json.Serialization.JsonProperty::get_PropertyType()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Type_t * JsonProperty_get_PropertyType_m289D59E3FC7ABC9329669C4C4A20F68038688F4E_inline (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __this, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.JsonPropertyCollection::AddProperty(Valve.Newtonsoft.Json.Serialization.JsonProperty)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonPropertyCollection_AddProperty_m4A847629EE58E608DA2FB9EBC2F081CB1EF45D26 (JsonPropertyCollection_tC08CC5508836C9712A08DDE9E2BC413BD3A61715 * __this, JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * ___property0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.JsonProperty::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonProperty__ctor_m5FB1407F8C5EA1535058A763B98DBF13C9CEBBCB (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __this, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.JsonProperty::set_PropertyType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonProperty_set_PropertyType_mD10927033ED0E5CEBC9B37B831B911DBE7EC96FD (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __this, Type_t * ___value0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.ReflectionAttributeProvider::.ctor(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectionAttributeProvider__ctor_m0D9B33D5A8CF4F664B2796EE68D54744D51CA442 (ReflectionAttributeProvider_tD14E62C7D2A1AA1792C9F45D337EC431D30DD7F8 * __this, RuntimeObject * ___attributeProvider0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.JsonProperty::set_AttributeProvider(Valve.Newtonsoft.Json.Serialization.IAttributeProvider)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonProperty_set_AttributeProvider_mA7C5A4B0EC3318FEC23F29FFB348F2E6AB1A09A4_inline (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __this, RuntimeObject* ___value0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::SetPropertySettingsFromAttributes(Valve.Newtonsoft.Json.Serialization.JsonProperty,System.Object,System.String,System.Type,Valve.Newtonsoft.Json.MemberSerialization,System.Boolean&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultContractResolver_SetPropertySettingsFromAttributes_m30707938E365229E29EF770EE5379538F03D4890 (DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0 * __this, JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * ___property0, RuntimeObject * ___attributeProvider1, String_t* ___name2, Type_t * ___declaringType3, int32_t ___memberSerialization4, bool* ___allowNonPublicAccess5, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.JsonProperty::set_Readable(System.Boolean)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonProperty_set_Readable_mD59EEC19DAB96CD04D08D7D4B20BDAAC3CB0FADF_inline (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __this, bool ___value0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.JsonProperty::set_Writable(System.Boolean)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonProperty_set_Writable_m6C087BCCDAA946F6EDF9E96CF34EA6E292E23354_inline (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __this, bool ___value0, const RuntimeMethod* method);
// System.String Valve.Newtonsoft.Json.Serialization.JsonProperty::get_PropertyName()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* JsonProperty_get_PropertyName_m55905C9131ED73513CF8CB006A5BDF904C47A6B4_inline (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __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);
// System.Void Valve.Newtonsoft.Json.Serialization.JsonProperty::set_PropertyName(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonProperty_set_PropertyName_mB5B0FD0E95E50D5236064B1C00DB943BC3761954 (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __this, String_t* ___value0, const RuntimeMethod* method);
// Valve.Newtonsoft.Json.JsonConverter Valve.Newtonsoft.Json.Serialization.JsonProperty::get_Converter()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * JsonProperty_get_Converter_m16E01BE519E24038398BAE7EBED2A1E84BC10D3B_inline (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __this, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.JsonProperty::set_Converter(Valve.Newtonsoft.Json.JsonConverter)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonProperty_set_Converter_m3FFE421E199BB51AFBDB9415A4986D6E091D4CC9_inline (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __this, JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * ___value0, const RuntimeMethod* method);
// Valve.Newtonsoft.Json.JsonConverter Valve.Newtonsoft.Json.Serialization.JsonProperty::get_MemberConverter()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * JsonProperty_get_MemberConverter_mE98C8C699ECF8EDFC43CBE2DD906D18F597FD639_inline (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __this, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.JsonProperty::set_MemberConverter(Valve.Newtonsoft.Json.JsonConverter)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonProperty_set_MemberConverter_mA8BEFA62877DA9FA40B7E871BA7B70EAE325B532_inline (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __this, JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * ___value0, const RuntimeMethod* method);
// System.Object Valve.Newtonsoft.Json.Serialization.JsonProperty::get_DefaultValue()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * JsonProperty_get_DefaultValue_mE664D1FCD37B36BBB206C8F4C5AED857E2924045 (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __this, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.JsonProperty::set_DefaultValue(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonProperty_set_DefaultValue_m947F9A315D06B92E07B70FFB946D8483C5C3E8B5 (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __this, RuntimeObject * ___value0, const RuntimeMethod* method);
// System.Boolean System.Nullable`1<Valve.Newtonsoft.Json.Required>::get_HasValue()
inline bool Nullable_1_get_HasValue_mFCE0054CF56DBE8BEEF3463DBCDE528A0DA167E6_inline (Nullable_1_t240C94038A74304286AD4C81EAEFD24E6E435A06 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Nullable_1_t240C94038A74304286AD4C81EAEFD24E6E435A06 *, const RuntimeMethod*))Nullable_1_get_HasValue_mB0A6989529561627BBB65E6E4342DAA6549DD5A9_gshared_inline)(__this, method);
}
// System.Nullable`1<System.Boolean> Valve.Newtonsoft.Json.Serialization.JsonProperty::get_IsReference()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 JsonProperty_get_IsReference_mAFC18BCBCC991AD924D288048120C2C7D2E8791E_inline (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __this, const RuntimeMethod* method);
// System.Boolean System.Nullable`1<System.Boolean>::get_HasValue()
inline bool Nullable_1_get_HasValue_m275A31438FCDAEEE039E95D887684E04FD6ECE2B_inline (Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 *, const RuntimeMethod*))Nullable_1_get_HasValue_m275A31438FCDAEEE039E95D887684E04FD6ECE2B_gshared_inline)(__this, method);
}
// System.Void Valve.Newtonsoft.Json.Serialization.JsonProperty::set_IsReference(System.Nullable`1<System.Boolean>)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonProperty_set_IsReference_m81A1A0EBD772885E63F4709504EC98E472D4FE2D_inline (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __this, Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 ___value0, const RuntimeMethod* method);
// System.Nullable`1<Valve.Newtonsoft.Json.NullValueHandling> Valve.Newtonsoft.Json.Serialization.JsonProperty::get_NullValueHandling()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Nullable_1_t1E3E10A718340D5055F8DB98AE1C03F47CDC19FC JsonProperty_get_NullValueHandling_mE7AA06F7512F5B5EF656BE4BBB6496BAF99E27D1_inline (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __this, const RuntimeMethod* method);
// System.Boolean System.Nullable`1<Valve.Newtonsoft.Json.NullValueHandling>::get_HasValue()
inline bool Nullable_1_get_HasValue_m8AF9B5180266788239BC000F750CDC830866BC26_inline (Nullable_1_t1E3E10A718340D5055F8DB98AE1C03F47CDC19FC * __this, const RuntimeMethod* method)
{
return (( bool (*) (Nullable_1_t1E3E10A718340D5055F8DB98AE1C03F47CDC19FC *, const RuntimeMethod*))Nullable_1_get_HasValue_mB0A6989529561627BBB65E6E4342DAA6549DD5A9_gshared_inline)(__this, method);
}
// System.Void Valve.Newtonsoft.Json.Serialization.JsonProperty::set_NullValueHandling(System.Nullable`1<Valve.Newtonsoft.Json.NullValueHandling>)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonProperty_set_NullValueHandling_m74AB1DCAB92587EB9572BEA40B5C7E0D88B87AD8_inline (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __this, Nullable_1_t1E3E10A718340D5055F8DB98AE1C03F47CDC19FC ___value0, const RuntimeMethod* method);
// System.Nullable`1<Valve.Newtonsoft.Json.DefaultValueHandling> Valve.Newtonsoft.Json.Serialization.JsonProperty::get_DefaultValueHandling()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Nullable_1_tE7CF0A7BC2816D39007C0EEB41F32FA7DB86B394 JsonProperty_get_DefaultValueHandling_mD2453514E2AC08249DA61848E2403A35ADF457AE_inline (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __this, const RuntimeMethod* method);
// System.Boolean System.Nullable`1<Valve.Newtonsoft.Json.DefaultValueHandling>::get_HasValue()
inline bool Nullable_1_get_HasValue_m2B89AF63243D2ACA8648B4DD0D78484C2DDE3F58_inline (Nullable_1_tE7CF0A7BC2816D39007C0EEB41F32FA7DB86B394 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Nullable_1_tE7CF0A7BC2816D39007C0EEB41F32FA7DB86B394 *, const RuntimeMethod*))Nullable_1_get_HasValue_mB0A6989529561627BBB65E6E4342DAA6549DD5A9_gshared_inline)(__this, method);
}
// System.Void Valve.Newtonsoft.Json.Serialization.JsonProperty::set_DefaultValueHandling(System.Nullable`1<Valve.Newtonsoft.Json.DefaultValueHandling>)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonProperty_set_DefaultValueHandling_m64D0484E336482643196FE2588406C3018077207_inline (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __this, Nullable_1_tE7CF0A7BC2816D39007C0EEB41F32FA7DB86B394 ___value0, const RuntimeMethod* method);
// System.Nullable`1<Valve.Newtonsoft.Json.ReferenceLoopHandling> Valve.Newtonsoft.Json.Serialization.JsonProperty::get_ReferenceLoopHandling()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Nullable_1_tD485E28BBBAFB03563161D92A5E03A20B8691DF7 JsonProperty_get_ReferenceLoopHandling_mF80A4BCFC5BCF5BB1B08DD588D86641E60EA3298_inline (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __this, const RuntimeMethod* method);
// System.Boolean System.Nullable`1<Valve.Newtonsoft.Json.ReferenceLoopHandling>::get_HasValue()
inline bool Nullable_1_get_HasValue_m63F54EB248864AE74E21DD44BC77510735270E5C_inline (Nullable_1_tD485E28BBBAFB03563161D92A5E03A20B8691DF7 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Nullable_1_tD485E28BBBAFB03563161D92A5E03A20B8691DF7 *, const RuntimeMethod*))Nullable_1_get_HasValue_mB0A6989529561627BBB65E6E4342DAA6549DD5A9_gshared_inline)(__this, method);
}
// System.Void Valve.Newtonsoft.Json.Serialization.JsonProperty::set_ReferenceLoopHandling(System.Nullable`1<Valve.Newtonsoft.Json.ReferenceLoopHandling>)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonProperty_set_ReferenceLoopHandling_mFA6874BE6C0DE25CE1921F7F4F0966449BC386EA_inline (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __this, Nullable_1_tD485E28BBBAFB03563161D92A5E03A20B8691DF7 ___value0, const RuntimeMethod* method);
// System.Nullable`1<Valve.Newtonsoft.Json.ObjectCreationHandling> Valve.Newtonsoft.Json.Serialization.JsonProperty::get_ObjectCreationHandling()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Nullable_1_t6F16A066F0D8E92AEDC11791932E5B9D887F402E JsonProperty_get_ObjectCreationHandling_mBA7704FF78CDCAD3994A6CA43443CB4F296FAFD8_inline (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __this, const RuntimeMethod* method);
// System.Boolean System.Nullable`1<Valve.Newtonsoft.Json.ObjectCreationHandling>::get_HasValue()
inline bool Nullable_1_get_HasValue_mEDD393F528BE17016D58C5BF0AAA6BDF4F484DE1_inline (Nullable_1_t6F16A066F0D8E92AEDC11791932E5B9D887F402E * __this, const RuntimeMethod* method)
{
return (( bool (*) (Nullable_1_t6F16A066F0D8E92AEDC11791932E5B9D887F402E *, const RuntimeMethod*))Nullable_1_get_HasValue_mB0A6989529561627BBB65E6E4342DAA6549DD5A9_gshared_inline)(__this, method);
}
// System.Void Valve.Newtonsoft.Json.Serialization.JsonProperty::set_ObjectCreationHandling(System.Nullable`1<Valve.Newtonsoft.Json.ObjectCreationHandling>)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonProperty_set_ObjectCreationHandling_mF627BC5B84EC6A0FBDBC2C3744D35AE5A9BF3C49_inline (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __this, Nullable_1_t6F16A066F0D8E92AEDC11791932E5B9D887F402E ___value0, const RuntimeMethod* method);
// System.Nullable`1<Valve.Newtonsoft.Json.TypeNameHandling> Valve.Newtonsoft.Json.Serialization.JsonProperty::get_TypeNameHandling()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Nullable_1_t03BF155C19CE72C93934F0A7CDDA0C202A278E11 JsonProperty_get_TypeNameHandling_m42F2D8CBE714D0C6254E78C0342AA120E4F905FF_inline (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __this, const RuntimeMethod* method);
// System.Boolean System.Nullable`1<Valve.Newtonsoft.Json.TypeNameHandling>::get_HasValue()
inline bool Nullable_1_get_HasValue_m1353A1AC6FE4E66B27E4109309FED39EC8041967_inline (Nullable_1_t03BF155C19CE72C93934F0A7CDDA0C202A278E11 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Nullable_1_t03BF155C19CE72C93934F0A7CDDA0C202A278E11 *, const RuntimeMethod*))Nullable_1_get_HasValue_mB0A6989529561627BBB65E6E4342DAA6549DD5A9_gshared_inline)(__this, method);
}
// System.Void Valve.Newtonsoft.Json.Serialization.JsonProperty::set_TypeNameHandling(System.Nullable`1<Valve.Newtonsoft.Json.TypeNameHandling>)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonProperty_set_TypeNameHandling_m1705EF65E533500CD4530F872B498F83B1A279B1_inline (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __this, Nullable_1_t03BF155C19CE72C93934F0A7CDDA0C202A278E11 ___value0, const RuntimeMethod* method);
// Valve.Newtonsoft.Json.JsonConverter Valve.Newtonsoft.Json.Serialization.JsonTypeReflector::GetJsonConverter(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * JsonTypeReflector_GetJsonConverter_mBCF9AEC08EA9FB2F2ED049ACE80088CE2B1AE13D (RuntimeObject * ___attributeProvider0, const RuntimeMethod* method);
// T Valve.Newtonsoft.Json.Serialization.JsonTypeReflector::GetCachedAttribute<Valve.Newtonsoft.Json.JsonContainerAttribute>(System.Object)
inline JsonContainerAttribute_t4E39F1E5EA66CF61E90C47C81929BE4A853A2DF3 * JsonTypeReflector_GetCachedAttribute_TisJsonContainerAttribute_t4E39F1E5EA66CF61E90C47C81929BE4A853A2DF3_m65FBB7F4C33DB203411378AD9097CC81AACBF7EC (RuntimeObject * ___attributeProvider0, const RuntimeMethod* method)
{
return (( JsonContainerAttribute_t4E39F1E5EA66CF61E90C47C81929BE4A853A2DF3 * (*) (RuntimeObject *, const RuntimeMethod*))JsonTypeReflector_GetCachedAttribute_TisRuntimeObject_m236AA84987823AAD85EC94017F7C77BBDB25DF62_gshared)(___attributeProvider0, method);
}
// System.Void Valve.Newtonsoft.Json.Serialization.JsonContract::set_IsReference(System.Nullable`1<System.Boolean>)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonContract_set_IsReference_mF3693B660E6ED466D542AC561DA5714F34E103BC_inline (JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * __this, Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 ___value0, const RuntimeMethod* method);
// System.Boolean System.Runtime.Serialization.DataContractAttribute::get_IsReference()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool DataContractAttribute_get_IsReference_m585BCAC661A23A9D652CBB1A143A1A05EC982954_inline (DataContractAttribute_tAD58D5877BD04EADB56BB4AEDDE342C73F032FC5 * __this, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.JsonContract::set_Converter(Valve.Newtonsoft.Json.JsonConverter)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonContract_set_Converter_mD54BDE103380C81E5AC933ECFC739D1654EFD534_inline (JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * __this, JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * ___value0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.JsonContract::set_InternalConverter(Valve.Newtonsoft.Json.JsonConverter)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonContract_set_InternalConverter_m98C9C0B34BB620F23DF3021B456FE2BD90DA1C6F_inline (JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * __this, JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * ___value0, const RuntimeMethod* method);
// System.Type Valve.Newtonsoft.Json.Serialization.JsonContract::get_CreatedType()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Type_t * JsonContract_get_CreatedType_mD4067F78EE8562AECD07B981C18C57182277E1ED_inline (JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * __this, const RuntimeMethod* method);
// System.Boolean Valve.Newtonsoft.Json.Utilities.ReflectionUtils::HasDefaultConstructor(System.Type,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReflectionUtils_HasDefaultConstructor_mA3353430FB209699BE3DF75C4F961703A30D14F2 (Type_t * ___t0, bool ___nonPublic1, const RuntimeMethod* method);
// System.Boolean Valve.Newtonsoft.Json.Utilities.TypeExtensions::IsValueType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeExtensions_IsValueType_m62264CEFFFA52D66E14FDE2A153BE660D3B6703A (Type_t * ___type0, const RuntimeMethod* method);
// System.Func`1<System.Object> Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::GetDefaultCreator(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 * DefaultContractResolver_GetDefaultCreator_mBE8EFAA4E35FFAEFCAFC20354EA0F2603B847E19 (DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0 * __this, Type_t * ___createdType0, const RuntimeMethod* method);
// System.Reflection.ConstructorInfo Valve.Newtonsoft.Json.Utilities.ReflectionUtils::GetDefaultConstructor(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * ReflectionUtils_GetDefaultConstructor_m5094BC349E8D5B8C86AC96C2CC31D10598BCD4D2 (Type_t * ___t0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.JsonContract::set_DefaultCreatorNonPublic(System.Boolean)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonContract_set_DefaultCreatorNonPublic_m919D262C28DED0670FA02472AE90A298B672FDE2_inline (JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * __this, bool ___value0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::ResolveCallbackMethods(Valve.Newtonsoft.Json.Serialization.JsonContract,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultContractResolver_ResolveCallbackMethods_mFF8D14250AC34CBF3BE9F528370250B3D98E9112 (DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0 * __this, JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * ___contract0, Type_t * ___t1, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::GetCallbackMethodsForType(System.Type,System.Collections.Generic.List`1<Valve.Newtonsoft.Json.Serialization.SerializationCallback>&,System.Collections.Generic.List`1<Valve.Newtonsoft.Json.Serialization.SerializationCallback>&,System.Collections.Generic.List`1<Valve.Newtonsoft.Json.Serialization.SerializationCallback>&,System.Collections.Generic.List`1<Valve.Newtonsoft.Json.Serialization.SerializationCallback>&,System.Collections.Generic.List`1<Valve.Newtonsoft.Json.Serialization.SerializationErrorCallback>&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultContractResolver_GetCallbackMethodsForType_m4476762551D8DFCE836C3A3E3478F5DB2C9AEBF2 (DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0 * __this, Type_t * ___type0, List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D ** ___onSerializing1, List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D ** ___onSerialized2, List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D ** ___onDeserializing3, List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D ** ___onDeserialized4, List_1_t3146B8EA2F3BD8E6B4682F880C8713B77D27EC6D ** ___onError5, const RuntimeMethod* method);
// System.Collections.Generic.IList`1<Valve.Newtonsoft.Json.Serialization.SerializationCallback> Valve.Newtonsoft.Json.Serialization.JsonContract::get_OnSerializingCallbacks()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonContract_get_OnSerializingCallbacks_mB55F85A655EA1FAA9136A1D41E1CEE79512F2DF0 (JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * __this, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Utilities.CollectionUtils::AddRange<Valve.Newtonsoft.Json.Serialization.SerializationCallback>(System.Collections.Generic.IList`1<T>,System.Collections.Generic.IEnumerable`1<T>)
inline void CollectionUtils_AddRange_TisSerializationCallback_t8B5297123C8DFAD6A6701E2F2046982E13CE1B9C_m369EBEC082C91131B8B81FDD3738D46ECCC73255 (RuntimeObject* ___initial0, RuntimeObject* ___collection1, const RuntimeMethod* method)
{
(( void (*) (RuntimeObject*, RuntimeObject*, const RuntimeMethod*))CollectionUtils_AddRange_TisRuntimeObject_m3D9182FBB92D8AACB0583059C8339553220DDFE6_gshared)(___initial0, ___collection1, method);
}
// System.Collections.Generic.IList`1<Valve.Newtonsoft.Json.Serialization.SerializationCallback> Valve.Newtonsoft.Json.Serialization.JsonContract::get_OnSerializedCallbacks()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonContract_get_OnSerializedCallbacks_mFACCA186A597E0FFAB2F805B34260A506B8F038F (JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * __this, const RuntimeMethod* method);
// System.Collections.Generic.IList`1<Valve.Newtonsoft.Json.Serialization.SerializationCallback> Valve.Newtonsoft.Json.Serialization.JsonContract::get_OnDeserializingCallbacks()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonContract_get_OnDeserializingCallbacks_mEB236A5F4F95BE2A531E33B0F210A590823B36CF (JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * __this, const RuntimeMethod* method);
// System.Collections.Generic.IList`1<Valve.Newtonsoft.Json.Serialization.SerializationCallback> Valve.Newtonsoft.Json.Serialization.JsonContract::get_OnDeserializedCallbacks()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonContract_get_OnDeserializedCallbacks_m9B8797DA83096104A2B1803A6EF96E684EA073AA (JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * __this, const RuntimeMethod* method);
// System.Collections.Generic.IList`1<Valve.Newtonsoft.Json.Serialization.SerializationErrorCallback> Valve.Newtonsoft.Json.Serialization.JsonContract::get_OnErrorCallbacks()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonContract_get_OnErrorCallbacks_m1130B623BD0E2E61C483C12C5C7895071A0867B9 (JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * __this, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Utilities.CollectionUtils::AddRange<Valve.Newtonsoft.Json.Serialization.SerializationErrorCallback>(System.Collections.Generic.IList`1<T>,System.Collections.Generic.IEnumerable`1<T>)
inline void CollectionUtils_AddRange_TisSerializationErrorCallback_t6EAECB0A4E241F49CA0D2A29EFCF4DCDDC9884B2_m78618F6A6C93300D92B667693A50490272C01353 (RuntimeObject* ___initial0, RuntimeObject* ___collection1, const RuntimeMethod* method)
{
(( void (*) (RuntimeObject*, RuntimeObject*, const RuntimeMethod*))CollectionUtils_AddRange_TisRuntimeObject_m3D9182FBB92D8AACB0583059C8339553220DDFE6_gshared)(___initial0, ___collection1, method);
}
// System.Collections.Generic.List`1/Enumerator<!0> System.Collections.Generic.List`1<System.Type>::GetEnumerator()
inline Enumerator_t7708A1C0F78B6722936DF84038D589BB9202C547 List_1_GetEnumerator_mEBF49DD908914F1048D109AA7FCB1696F8637906 (List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * __this, const RuntimeMethod* method)
{
return (( Enumerator_t7708A1C0F78B6722936DF84038D589BB9202C547 (*) (List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 *, const RuntimeMethod*))List_1_GetEnumerator_m52CC760E475D226A2B75048D70C4E22692F9F68D_gshared)(__this, method);
}
// !0 System.Collections.Generic.List`1/Enumerator<System.Type>::get_Current()
inline Type_t * Enumerator_get_Current_mDA529EA93697DB0544B90D07B18ED558B8DCC27F_inline (Enumerator_t7708A1C0F78B6722936DF84038D589BB9202C547 * __this, const RuntimeMethod* method)
{
return (( Type_t * (*) (Enumerator_t7708A1C0F78B6722936DF84038D589BB9202C547 *, const RuntimeMethod*))Enumerator_get_Current_mD7829C7E8CFBEDD463B15A951CDE9B90A12CC55C_gshared_inline)(__this, method);
}
// System.Boolean Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::ShouldSkipSerializing(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DefaultContractResolver_ShouldSkipSerializing_m5914BE0F17FE60E604EAF56D6FF19957DDFC824B (Type_t * ___t0, const RuntimeMethod* method);
// System.Boolean Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::ShouldSkipDeserialized(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DefaultContractResolver_ShouldSkipDeserialized_m0EB084844A00EB70791CE739F2307D1C1F9FA4F5 (Type_t * ___t0, const RuntimeMethod* method);
// System.Boolean Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::IsValidCallback(System.Reflection.MethodInfo,System.Reflection.ParameterInfo[],System.Type,System.Reflection.MethodInfo,System.Type&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DefaultContractResolver_IsValidCallback_m7CF3C3A4FCF267F4C459E71B2DCFA5722AD67728 (MethodInfo_t * ___method0, ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* ___parameters1, Type_t * ___attributeType2, MethodInfo_t * ___currentCallback3, Type_t ** ___prevAttributeType4, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<Valve.Newtonsoft.Json.Serialization.SerializationCallback>::.ctor()
inline void List_1__ctor_mF63E182EEB4786A2E9FB7F2C8C8D0683BD9ED093 (List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D * __this, const RuntimeMethod* method)
{
(( void (*) (List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D *, const RuntimeMethod*))List_1__ctor_mC832F1AC0F814BAEB19175F5D7972A7507508BC3_gshared)(__this, method);
}
// Valve.Newtonsoft.Json.Serialization.SerializationCallback Valve.Newtonsoft.Json.Serialization.JsonContract::CreateSerializationCallback(System.Reflection.MethodInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SerializationCallback_t8B5297123C8DFAD6A6701E2F2046982E13CE1B9C * JsonContract_CreateSerializationCallback_m80237D008F37FEF1CAC489A20645120CE18FDE80 (MethodInfo_t * ___callbackMethodInfo0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<Valve.Newtonsoft.Json.Serialization.SerializationCallback>::Add(!0)
inline void List_1_Add_m1C03816896BC8C445C628164F59987CE886EC12E (List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D * __this, SerializationCallback_t8B5297123C8DFAD6A6701E2F2046982E13CE1B9C * ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D *, SerializationCallback_t8B5297123C8DFAD6A6701E2F2046982E13CE1B9C *, const RuntimeMethod*))List_1_Add_m6930161974C7504C80F52EC379EF012387D43138_gshared)(__this, ___item0, method);
}
// System.Void System.Collections.Generic.List`1<Valve.Newtonsoft.Json.Serialization.SerializationErrorCallback>::.ctor()
inline void List_1__ctor_m5510BC9CF019EE224165E524578F0231D4840066 (List_1_t3146B8EA2F3BD8E6B4682F880C8713B77D27EC6D * __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t3146B8EA2F3BD8E6B4682F880C8713B77D27EC6D *, const RuntimeMethod*))List_1__ctor_mC832F1AC0F814BAEB19175F5D7972A7507508BC3_gshared)(__this, method);
}
// Valve.Newtonsoft.Json.Serialization.SerializationErrorCallback Valve.Newtonsoft.Json.Serialization.JsonContract::CreateSerializationErrorCallback(System.Reflection.MethodInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SerializationErrorCallback_t6EAECB0A4E241F49CA0D2A29EFCF4DCDDC9884B2 * JsonContract_CreateSerializationErrorCallback_m570404ACFD6C0BACE5B3B39519FE05ADB43FA82F (MethodInfo_t * ___callbackMethodInfo0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<Valve.Newtonsoft.Json.Serialization.SerializationErrorCallback>::Add(!0)
inline void List_1_Add_mC9EC28432007C3F3966DA8B2E368E3B3131975CB (List_1_t3146B8EA2F3BD8E6B4682F880C8713B77D27EC6D * __this, SerializationErrorCallback_t6EAECB0A4E241F49CA0D2A29EFCF4DCDDC9884B2 * ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_t3146B8EA2F3BD8E6B4682F880C8713B77D27EC6D *, SerializationErrorCallback_t6EAECB0A4E241F49CA0D2A29EFCF4DCDDC9884B2 *, const RuntimeMethod*))List_1_Add_m6930161974C7504C80F52EC379EF012387D43138_gshared)(__this, ___item0, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Type>::MoveNext()
inline bool Enumerator_MoveNext_mC501C7889B13D4FBA7F68FA6F8A0B617290E5EC9 (Enumerator_t7708A1C0F78B6722936DF84038D589BB9202C547 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t7708A1C0F78B6722936DF84038D589BB9202C547 *, const RuntimeMethod*))Enumerator_MoveNext_m38B1099DDAD7EEDE2F4CDAB11C095AC784AC2E34_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.Type>::Dispose()
inline void Enumerator_Dispose_m0D740B2062332CFA4AA69C3F1D45D5C834153AFC (Enumerator_t7708A1C0F78B6722936DF84038D589BB9202C547 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t7708A1C0F78B6722936DF84038D589BB9202C547 *, const RuntimeMethod*))Enumerator_Dispose_m94D0DAE031619503CDA6E53C5C3CC78AF3139472_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1<System.Type>::.ctor()
inline void List_1__ctor_m7C0781C8A2C9C48F1851408CD69DA6E3A8587154 (List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * __this, const RuntimeMethod* method)
{
(( void (*) (List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 *, const RuntimeMethod*))List_1__ctor_mC832F1AC0F814BAEB19175F5D7972A7507508BC3_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1<System.Type>::Add(!0)
inline void List_1_Add_m57994E0773CB740B2495C2AE0CE7CBE3C47BB938 (List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * __this, Type_t * ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 *, Type_t *, const RuntimeMethod*))List_1_Add_m6930161974C7504C80F52EC379EF012387D43138_gshared)(__this, ___item0, method);
}
// System.Type Valve.Newtonsoft.Json.Utilities.TypeExtensions::BaseType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * TypeExtensions_BaseType_mE9173550A813685C11468E8AE97FCA2564B6FB8F (Type_t * ___type0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<System.Type>::Reverse()
inline void List_1_Reverse_m5E938FE28794339BAC583720C1498831C8CD7C75 (List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * __this, const RuntimeMethod* method)
{
(( void (*) (List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 *, const RuntimeMethod*))List_1_Reverse_m72D0A68F3695A2828EFA0CD851D1A88BEA4827A4_gshared)(__this, method);
}
// System.Void Valve.Newtonsoft.Json.Serialization.JsonDictionaryContract::.ctor(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonDictionaryContract__ctor_m71EEB830BC26666C81BB1157E13C344ED1DD34A9 (JsonDictionaryContract_t7D39A549ABAEDA655A1140F78778D9B36692266C * __this, Type_t * ___underlyingType0, const RuntimeMethod* method);
// T Valve.Newtonsoft.Json.Serialization.JsonTypeReflector::GetAttribute<Valve.Newtonsoft.Json.JsonContainerAttribute>(System.Object)
inline JsonContainerAttribute_t4E39F1E5EA66CF61E90C47C81929BE4A853A2DF3 * JsonTypeReflector_GetAttribute_TisJsonContainerAttribute_t4E39F1E5EA66CF61E90C47C81929BE4A853A2DF3_m286674358436D5DD111A8F1F6A1DC2B5118FE0FF (RuntimeObject * ___provider0, const RuntimeMethod* method)
{
return (( JsonContainerAttribute_t4E39F1E5EA66CF61E90C47C81929BE4A853A2DF3 * (*) (RuntimeObject *, const RuntimeMethod*))JsonTypeReflector_GetAttribute_TisRuntimeObject_mAAF2DC002D6A4A40732F2AFFE03A51CC08DFC465_gshared)(___provider0, method);
}
// System.Type Valve.Newtonsoft.Json.JsonContainerAttribute::get_NamingStrategyType()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Type_t * JsonContainerAttribute_get_NamingStrategyType_m9748E3B19B3404BB56F8FB5DEAF9ED2B1EE74F41_inline (JsonContainerAttribute_t4E39F1E5EA66CF61E90C47C81929BE4A853A2DF3 * __this, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.DefaultContractResolver/<>c__DisplayClass52_0::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass52_0__ctor_mB9E0FD4F85253DDEF7B5406C30599E3FC15885FE (U3CU3Ec__DisplayClass52_0_t5662E89E4E0071A8350BC73F90FAA92457EC2F91 * __this, const RuntimeMethod* method);
// Valve.Newtonsoft.Json.Serialization.NamingStrategy Valve.Newtonsoft.Json.Serialization.JsonTypeReflector::GetContainerNamingStrategy(Valve.Newtonsoft.Json.JsonContainerAttribute)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NamingStrategy_tBB6F8138B49E9B2704F7B87BF9130378976B9B46 * JsonTypeReflector_GetContainerNamingStrategy_mD2D9E45963E078EB4629CE06BDB0ECC8B48EC907 (JsonContainerAttribute_t4E39F1E5EA66CF61E90C47C81929BE4A853A2DF3 * ___containerAttribute0, const RuntimeMethod* method);
// System.Void System.Func`2<System.String,System.String>::.ctor(System.Object,System.IntPtr)
inline void Func_2__ctor_mC276B952F432851DB174123FCF79CFABDF753BB0 (Func_2_tD9EBF5FAD46B4F561FE5ABE814DC60E6253B8B96 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (Func_2_tD9EBF5FAD46B4F561FE5ABE814DC60E6253B8B96 *, RuntimeObject *, intptr_t, const RuntimeMethod*))Func_2__ctor_mE2AF7615AD18E9CD92B1909285F5EC5DA8D180C8_gshared)(__this, ___object0, ___method1, method);
}
// System.Void Valve.Newtonsoft.Json.Serialization.JsonDictionaryContract::set_DictionaryKeyResolver(System.Func`2<System.String,System.String>)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonDictionaryContract_set_DictionaryKeyResolver_m1FDDCC3B1C40A57217ECBD9C6B7817F095A6B32A_inline (JsonDictionaryContract_t7D39A549ABAEDA655A1140F78778D9B36692266C * __this, Func_2_tD9EBF5FAD46B4F561FE5ABE814DC60E6253B8B96 * ___value0, const RuntimeMethod* method);
// System.Type Valve.Newtonsoft.Json.Serialization.JsonDictionaryContract::get_DictionaryKeyType()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Type_t * JsonDictionaryContract_get_DictionaryKeyType_m8AB18997E686EF0B88B8306998130323C07C3306_inline (JsonDictionaryContract_t7D39A549ABAEDA655A1140F78778D9B36692266C * __this, const RuntimeMethod* method);
// System.Type Valve.Newtonsoft.Json.Serialization.JsonDictionaryContract::get_DictionaryValueType()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Type_t * JsonDictionaryContract_get_DictionaryValueType_mB354460AD2F7AFCE45F309951B8F9EDE009A3CDB_inline (JsonDictionaryContract_t7D39A549ABAEDA655A1140F78778D9B36692266C * __this, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.JsonDictionaryContract::set_HasParameterizedCreator(System.Boolean)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonDictionaryContract_set_HasParameterizedCreator_m8BCF12CC0AAC9F1DF6FEB1C52E41BFC00243D3B0_inline (JsonDictionaryContract_t7D39A549ABAEDA655A1140F78778D9B36692266C * __this, bool ___value0, const RuntimeMethod* method);
// System.Type Valve.Newtonsoft.Json.Serialization.JsonContract::get_UnderlyingType()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Type_t * JsonContract_get_UnderlyingType_m7F278992455AC78881DB024ACB6646D1086025F1_inline (JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * __this, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.JsonDictionaryContract::set_OverrideCreator(Valve.Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object>)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonDictionaryContract_set_OverrideCreator_m7D5C91C09FAF108A51CE4EAABF59F55DECDF54B5_inline (JsonDictionaryContract_t7D39A549ABAEDA655A1140F78778D9B36692266C * __this, ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 * ___value0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.JsonArrayContract::.ctor(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonArrayContract__ctor_m202B363DE8BE2077F790591E8947AF8AED933D18 (JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751 * __this, Type_t * ___underlyingType0, const RuntimeMethod* method);
// System.Type Valve.Newtonsoft.Json.Serialization.JsonArrayContract::get_CollectionItemType()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Type_t * JsonArrayContract_get_CollectionItemType_m10E501E1CDDDBFD2D6D70553B4BDDF5A067BC976_inline (JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751 * __this, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.JsonArrayContract::set_HasParameterizedCreator(System.Boolean)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonArrayContract_set_HasParameterizedCreator_m3982B915EC8BFE7EF384D8D6663D1147AD6E2859_inline (JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751 * __this, bool ___value0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.JsonArrayContract::set_OverrideCreator(Valve.Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonArrayContract_set_OverrideCreator_mF1BC2767BD2532C54ACD739C8098B703CB8F0E08 (JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751 * __this, ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 * ___value0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.JsonPrimitiveContract::.ctor(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonPrimitiveContract__ctor_mAAB8E3EC58C7D137FACEFE9B953B4838684329EC (JsonPrimitiveContract_t13E2CBC31714CB100233EB2014184B40973C2C84 * __this, Type_t * ___underlyingType0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.JsonLinqContract::.ctor(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonLinqContract__ctor_m7B7EB01959849DBF32327526D6E06A0DE3292D6F (JsonLinqContract_t55453AE956FB1B39CD404E4ED22E563B434C1BED * __this, Type_t * ___underlyingType0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.JsonISerializableContract::.ctor(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonISerializableContract__ctor_m74C3F2C4B4DB692919D6A06C2C1793D7E8508673 (JsonISerializableContract_tC390B7D7091FE7D26C0FE026BDB2DCA1D1E64AA0 * __this, Type_t * ___underlyingType0, const RuntimeMethod* method);
// System.Reflection.ConstructorInfo System.Type::GetConstructor(System.Reflection.BindingFlags,System.Reflection.Binder,System.Type[],System.Reflection.ParameterModifier[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * Type_GetConstructor_m53CF9E12A23096404A64D1BB7B894657C9063A07 (Type_t * __this, int32_t ___bindingAttr0, Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * ___binder1, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___types2, ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA* ___modifiers3, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.JsonISerializableContract::set_ISerializableCreator(Valve.Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object>)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonISerializableContract_set_ISerializableCreator_m8C9FCFA15BD4554D507B36FAFD77301F530C954E_inline (JsonISerializableContract_tC390B7D7091FE7D26C0FE026BDB2DCA1D1E64AA0 * __this, ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 * ___value0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.JsonStringContract::.ctor(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonStringContract__ctor_m33AD10998643A43645F1368995EE2E9419DFA9EF (JsonStringContract_tCBC48935FDB85CACCA24D751235BCCDA72F91299 * __this, Type_t * ___underlyingType0, const RuntimeMethod* method);
// System.Boolean Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::IsJsonPrimitiveType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DefaultContractResolver_IsJsonPrimitiveType_mEC01637E154D3F72466AC49F74A808C48481317E (Type_t * ___t0, const RuntimeMethod* method);
// System.Type Valve.Newtonsoft.Json.Utilities.ReflectionUtils::EnsureNotNullableType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * ReflectionUtils_EnsureNotNullableType_m753193EC20CD9BEA42E910266A76C1A2580ACF7A (Type_t * ___t0, const RuntimeMethod* method);
// System.Boolean Valve.Newtonsoft.Json.Utilities.CollectionUtils::IsDictionaryType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CollectionUtils_IsDictionaryType_mBF325EBC9B5610B0755AC7FB063BC1877F96778C (Type_t * ___type0, const RuntimeMethod* method);
// System.Boolean Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::CanConvertToString(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DefaultContractResolver_CanConvertToString_m17AFEBA19D02B283354EBB28758C8758C9FD2EB5 (Type_t * ___type0, const RuntimeMethod* method);
// System.Boolean Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::get_IgnoreSerializableInterface()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool DefaultContractResolver_get_IgnoreSerializableInterface_m3573E97397949ED13C4ABFED4A9A86DD317F451E_inline (DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0 * __this, const RuntimeMethod* method);
// System.Boolean Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::IsIConvertible(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DefaultContractResolver_IsIConvertible_mADF4E484E6B768A67C17A39860BA56181AB14A8D (Type_t * ___t0, const RuntimeMethod* method);
// Valve.Newtonsoft.Json.Utilities.PrimitiveTypeCode Valve.Newtonsoft.Json.Utilities.ConvertUtils::GetTypeCode(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ConvertUtils_GetTypeCode_m95E65290441B5FEC7C2ACA3B5262B4A10F517826 (Type_t * ___t0, const RuntimeMethod* method);
// System.Boolean Valve.Newtonsoft.Json.Utilities.ReflectionUtils::IsNullableType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReflectionUtils_IsNullableType_m8EA034BEA71F38E85D062B63F7C87C1AC02F4B70 (Type_t * ___t0, const RuntimeMethod* method);
// System.ComponentModel.TypeConverter Valve.Newtonsoft.Json.Utilities.ConvertUtils::GetConverter(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * ConvertUtils_GetConverter_m284C1B47B7110B5B2B9F0DBF0E962F77B326128F (Type_t * ___t0, const RuntimeMethod* method);
// System.Boolean System.ComponentModel.TypeConverter::CanConvertTo(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeConverter_CanConvertTo_mFD084EFAE4C064C6844E20E5A0C6719925A2D938 (TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * __this, Type_t * ___destinationType0, const RuntimeMethod* method);
// System.String Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::GetClrTypeFullName(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DefaultContractResolver_GetClrTypeFullName_m33C4566EC0DE01AFF07A3EB76BEB5E261EF94098 (Type_t * ___type0, const RuntimeMethod* method);
// System.String Valve.Newtonsoft.Json.Utilities.StringUtils::FormatWith(System.String,System.IFormatProvider,System.Object,System.Object,System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* StringUtils_FormatWith_mACF1C89EBA5A049134865B73284A20EC78AB5E4A (String_t* ___format0, RuntimeObject* ___provider1, RuntimeObject * ___arg02, RuntimeObject * ___arg13, RuntimeObject * ___arg24, RuntimeObject * ___arg35, const RuntimeMethod* method);
// System.Boolean System.Reflection.MethodBase::get_IsVirtual()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MethodBase_get_IsVirtual_m60B52F086B75D675CAB423C351C3B0CA062675F4 (MethodBase_t * __this, const RuntimeMethod* method);
// System.String Valve.Newtonsoft.Json.Utilities.StringUtils::FormatWith(System.String,System.IFormatProvider,System.Object,System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* StringUtils_FormatWith_m13A601B2072054E1557E01230EC9D90A59858320 (String_t* ___format0, RuntimeObject* ___provider1, RuntimeObject * ___arg02, RuntimeObject * ___arg13, RuntimeObject * ___arg24, const RuntimeMethod* method);
// System.Boolean Valve.Newtonsoft.Json.Utilities.TypeExtensions::IsGenericTypeDefinition(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeExtensions_IsGenericTypeDefinition_m35827D73D785827233F8D5EE78D910F90E6B70AB (Type_t * ___type0, const RuntimeMethod* method);
// System.Boolean Valve.Newtonsoft.Json.Utilities.TypeExtensions::ContainsGenericParameters(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeExtensions_ContainsGenericParameters_m98BE2EF3CBA0CD6C9BCAF918172FC7AC9651D430 (Type_t * ___type0, const RuntimeMethod* method);
// System.String System.String::Format(System.IFormatProvider,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_mF68EE0DEC1AA5ADE9DFEF9AE0508E428FBB10EFD (RuntimeObject* ___provider0, String_t* ___format1, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args2, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.JsonSerializationException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonSerializationException__ctor_mEB80B2C2AEA10E8D417D22CF77D40C10DBF51795 (JsonSerializationException_t041C510BA8DF91FD223402E73A4E55EC1B12E902 * __this, String_t* ___message0, const RuntimeMethod* method);
// System.String Valve.Newtonsoft.Json.Utilities.PropertyNameTable::Add(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* PropertyNameTable_Add_m8221857AD3CAB9B8202B359E54AA07CFDC4D695D (PropertyNameTable_t09D6FC2871D681080545544521201A5726C6610D * __this, String_t* ___key0, const RuntimeMethod* method);
// System.Void System.Func`2<Valve.Newtonsoft.Json.Serialization.JsonProperty,System.Int32>::.ctor(System.Object,System.IntPtr)
inline void Func_2__ctor_m1809F02D50F82570E5658F35B318DD8259F2621F (Func_2_t1659F01642289131579A99DC37C5A348E7091892 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (Func_2_t1659F01642289131579A99DC37C5A348E7091892 *, RuntimeObject *, intptr_t, const RuntimeMethod*))Func_2__ctor_m54408ED2EFA4F730EF559B45507C0009D7EC7917_gshared)(__this, ___object0, ___method1, method);
}
// System.Linq.IOrderedEnumerable`1<!!0> System.Linq.Enumerable::OrderBy<Valve.Newtonsoft.Json.Serialization.JsonProperty,System.Int32>(System.Collections.Generic.IEnumerable`1<!!0>,System.Func`2<!!0,!!1>)
inline RuntimeObject* Enumerable_OrderBy_TisJsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m0374099EF3A8594F128850F4F1AD56E67EC77B8A (RuntimeObject* ___source0, Func_2_t1659F01642289131579A99DC37C5A348E7091892 * ___keySelector1, const RuntimeMethod* method)
{
return (( RuntimeObject* (*) (RuntimeObject*, Func_2_t1659F01642289131579A99DC37C5A348E7091892 *, const RuntimeMethod*))Enumerable_OrderBy_TisRuntimeObject_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_mB8C03381361FC6A5A781633557B8E0F196E80787_gshared)(___source0, ___keySelector1, method);
}
// System.Collections.Generic.List`1<!!0> System.Linq.Enumerable::ToList<Valve.Newtonsoft.Json.Serialization.JsonProperty>(System.Collections.Generic.IEnumerable`1<!!0>)
inline List_1_t6058A2EE1FD0D50A7FFCAD444A5E3330BC73DA8E * Enumerable_ToList_TisJsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB_m1866F9412D71C8EC4F3A2999FF445480DD8218AE (RuntimeObject* ___source0, const RuntimeMethod* method)
{
return (( List_1_t6058A2EE1FD0D50A7FFCAD444A5E3330BC73DA8E * (*) (RuntimeObject*, const RuntimeMethod*))Enumerable_ToList_TisRuntimeObject_mB1685447626095E135D3DC76A9DAA32B14AC7AD2_gshared)(___source0, method);
}
// System.Void Valve.Newtonsoft.Json.Serialization.ReflectionValueProvider::.ctor(System.Reflection.MemberInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectionValueProvider__ctor_mAFEB4E9B3503EF8299039C637222F93D864E1EA1 (ReflectionValueProvider_t8149E2427D8DED5E2B15B0F80E8C6CFE4C710A26 * __this, MemberInfo_t * ___memberInfo0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.JsonProperty::set_DeclaringType(System.Type)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonProperty_set_DeclaringType_m4F7A8EBBAAB53A716936F32711DADC5D497DB9A3_inline (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __this, Type_t * ___value0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.JsonProperty::set_ValueProvider(Valve.Newtonsoft.Json.Serialization.IValueProvider)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonProperty_set_ValueProvider_mBEB1B5972CF2072D40E794E51746FC3DBB026DA8_inline (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __this, RuntimeObject* ___value0, const RuntimeMethod* method);
// System.Boolean Valve.Newtonsoft.Json.Utilities.ReflectionUtils::CanReadMemberValue(System.Reflection.MemberInfo,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReflectionUtils_CanReadMemberValue_mE1734CDBBABE8BACAD75399CB892851D14AA71E9 (MemberInfo_t * ___member0, bool ___nonPublic1, const RuntimeMethod* method);
// System.Boolean Valve.Newtonsoft.Json.Serialization.JsonProperty::get_HasMemberAttribute()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool JsonProperty_get_HasMemberAttribute_m90EB927C14261E5B20E8BF12FE366424C9F44E68_inline (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __this, const RuntimeMethod* method);
// System.Predicate`1<System.Object> Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::CreateShouldSerializeTest(System.Reflection.MemberInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 * DefaultContractResolver_CreateShouldSerializeTest_m89AC077F623A80B62A6704A59A8DC42F4CCA0184 (DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0 * __this, MemberInfo_t * ___member0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.JsonProperty::set_ShouldSerialize(System.Predicate`1<System.Object>)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonProperty_set_ShouldSerialize_mAA26700AE6294F2DD8AF959A325C59AC743ABA69_inline (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __this, Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 * ___value0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::SetIsSpecifiedActions(Valve.Newtonsoft.Json.Serialization.JsonProperty,System.Reflection.MemberInfo,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultContractResolver_SetIsSpecifiedActions_m2A020865FC552D59D7ACBC8E299602D2F61DC8F8 (DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0 * __this, JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * ___property0, MemberInfo_t * ___member1, bool ___allowNonPublicAccess2, const RuntimeMethod* method);
// System.Runtime.Serialization.DataMemberAttribute Valve.Newtonsoft.Json.Serialization.JsonTypeReflector::GetDataMemberAttribute(System.Reflection.MemberInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DataMemberAttribute_tC865433FEC93FFD46D6F3E4BB28F262C9EE40525 * JsonTypeReflector_GetDataMemberAttribute_mB4B357B4C915D994DBC15288C8362D4174B576A0 (MemberInfo_t * ___memberInfo0, const RuntimeMethod* method);
// System.String Valve.Newtonsoft.Json.JsonPropertyAttribute::get_PropertyName()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* JsonPropertyAttribute_get_PropertyName_mE1AF1CF51FB33A6F013CA79442A51B3422F208C0_inline (JsonPropertyAttribute_tD66B9C74F3201FFAF7A16DB84AEA31FE8F02ED5F * __this, const RuntimeMethod* method);
// System.String System.Runtime.Serialization.DataMemberAttribute::get_Name()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* DataMemberAttribute_get_Name_mA626FA1D50DB99B87C7EB674B93622431E14F973_inline (DataMemberAttribute_tC865433FEC93FFD46D6F3E4BB28F262C9EE40525 * __this, const RuntimeMethod* method);
// System.Type Valve.Newtonsoft.Json.JsonPropertyAttribute::get_NamingStrategyType()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Type_t * JsonPropertyAttribute_get_NamingStrategyType_m1565DA70E1B2B86F069B794C47BA77A11CDB229B_inline (JsonPropertyAttribute_tD66B9C74F3201FFAF7A16DB84AEA31FE8F02ED5F * __this, const RuntimeMethod* method);
// System.Object[] Valve.Newtonsoft.Json.JsonPropertyAttribute::get_NamingStrategyParameters()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* JsonPropertyAttribute_get_NamingStrategyParameters_mD0B7544805A4C5F2281FB5B57B525AB17004DC4B_inline (JsonPropertyAttribute_tD66B9C74F3201FFAF7A16DB84AEA31FE8F02ED5F * __this, const RuntimeMethod* method);
// Valve.Newtonsoft.Json.Serialization.NamingStrategy Valve.Newtonsoft.Json.Serialization.JsonTypeReflector::CreateNamingStrategyInstance(System.Type,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NamingStrategy_tBB6F8138B49E9B2704F7B87BF9130378976B9B46 * JsonTypeReflector_CreateNamingStrategyInstance_m585F95E0DD806F907EC8EDF722E5E0E9CD351C20 (Type_t * ___namingStrategyType0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___converterArgs1, const RuntimeMethod* method);
// Valve.Newtonsoft.Json.Serialization.NamingStrategy Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::get_NamingStrategy()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR NamingStrategy_tBB6F8138B49E9B2704F7B87BF9130378976B9B46 * DefaultContractResolver_get_NamingStrategy_m541D750140B66BB0B36E32CEC1F984F1C2037FD4_inline (DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0 * __this, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.JsonProperty::set_UnderlyingName(System.String)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonProperty_set_UnderlyingName_m51FFF9A38B8657E0893AE2ED0369394E1076E83A_inline (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __this, String_t* ___value0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.JsonProperty::set_Order(System.Nullable`1<System.Int32>)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonProperty_set_Order_m1BC09410DF4CE67DD2E3F7B83F7C31463059DB32_inline (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __this, Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB ___value0, const RuntimeMethod* method);
// System.Boolean System.Runtime.Serialization.DataMemberAttribute::get_IsRequired()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool DataMemberAttribute_get_IsRequired_m03BFAD34E0B734E253D49357A981D360B21CCEFA_inline (DataMemberAttribute_tC865433FEC93FFD46D6F3E4BB28F262C9EE40525 * __this, const RuntimeMethod* method);
// System.Void System.Nullable`1<Valve.Newtonsoft.Json.Required>::.ctor(!0)
inline void Nullable_1__ctor_m60DFD5C5C9C025B94DE6AF1A623DBBFC09048956 (Nullable_1_t240C94038A74304286AD4C81EAEFD24E6E435A06 * __this, int32_t ___value0, const RuntimeMethod* method)
{
(( void (*) (Nullable_1_t240C94038A74304286AD4C81EAEFD24E6E435A06 *, int32_t, const RuntimeMethod*))Nullable_1__ctor_m5C28B34DE8C6D3A1E136828428C71543A08B32D3_gshared)(__this, ___value0, method);
}
// System.Int32 System.Runtime.Serialization.DataMemberAttribute::get_Order()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t DataMemberAttribute_get_Order_m1A3ADBDD919D8B3CECEDB183C5F8567F76CC9632_inline (DataMemberAttribute_tC865433FEC93FFD46D6F3E4BB28F262C9EE40525 * __this, const RuntimeMethod* method);
// System.Boolean System.Runtime.Serialization.DataMemberAttribute::get_EmitDefaultValue()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool DataMemberAttribute_get_EmitDefaultValue_mDFB2F1161572605FA84B4BD480360965FFB4DC9D_inline (DataMemberAttribute_tC865433FEC93FFD46D6F3E4BB28F262C9EE40525 * __this, const RuntimeMethod* method);
// System.Void System.Nullable`1<Valve.Newtonsoft.Json.DefaultValueHandling>::.ctor(!0)
inline void Nullable_1__ctor_m8D26829C8FBCF4D95A80984F459CFBA594E34E7B (Nullable_1_tE7CF0A7BC2816D39007C0EEB41F32FA7DB86B394 * __this, int32_t ___value0, const RuntimeMethod* method)
{
(( void (*) (Nullable_1_tE7CF0A7BC2816D39007C0EEB41F32FA7DB86B394 *, int32_t, const RuntimeMethod*))Nullable_1__ctor_m5C28B34DE8C6D3A1E136828428C71543A08B32D3_gshared)(__this, ___value0, method);
}
// System.Void Valve.Newtonsoft.Json.Serialization.JsonProperty::set_HasMemberAttribute(System.Boolean)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonProperty_set_HasMemberAttribute_m31D6785AAFB8BE4772054C439224C82C37ADC6F0_inline (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __this, bool ___value0, const RuntimeMethod* method);
// T Valve.Newtonsoft.Json.Serialization.JsonTypeReflector::GetAttribute<Valve.Newtonsoft.Json.JsonIgnoreAttribute>(System.Object)
inline JsonIgnoreAttribute_t3BE833571932FA661098014E11BECC2E8D61A95C * JsonTypeReflector_GetAttribute_TisJsonIgnoreAttribute_t3BE833571932FA661098014E11BECC2E8D61A95C_mD8C1EAAAC6E76A9AA019795926EDCA6E82298DA6 (RuntimeObject * ___provider0, const RuntimeMethod* method)
{
return (( JsonIgnoreAttribute_t3BE833571932FA661098014E11BECC2E8D61A95C * (*) (RuntimeObject *, const RuntimeMethod*))JsonTypeReflector_GetAttribute_TisRuntimeObject_mAAF2DC002D6A4A40732F2AFFE03A51CC08DFC465_gshared)(___provider0, method);
}
// T Valve.Newtonsoft.Json.Serialization.JsonTypeReflector::GetAttribute<Valve.Newtonsoft.Json.JsonExtensionDataAttribute>(System.Object)
inline JsonExtensionDataAttribute_tC858B08E1ACE700629982E390F2FDA7A0580C208 * JsonTypeReflector_GetAttribute_TisJsonExtensionDataAttribute_tC858B08E1ACE700629982E390F2FDA7A0580C208_m03976BD7D7C735A7A5C5DD9177EAB582FCF8FC48 (RuntimeObject * ___provider0, const RuntimeMethod* method)
{
return (( JsonExtensionDataAttribute_tC858B08E1ACE700629982E390F2FDA7A0580C208 * (*) (RuntimeObject *, const RuntimeMethod*))JsonTypeReflector_GetAttribute_TisRuntimeObject_mAAF2DC002D6A4A40732F2AFFE03A51CC08DFC465_gshared)(___provider0, method);
}
// T Valve.Newtonsoft.Json.Serialization.JsonTypeReflector::GetAttribute<System.NonSerializedAttribute>(System.Object)
inline NonSerializedAttribute_t1D1C4A9662B6C2FAC28237FCDFA49FA4747BC3BA * JsonTypeReflector_GetAttribute_TisNonSerializedAttribute_t1D1C4A9662B6C2FAC28237FCDFA49FA4747BC3BA_m2CB45DAD4991DA08B67587FD0AD4F7B8FD66A9E9 (RuntimeObject * ___provider0, const RuntimeMethod* method)
{
return (( NonSerializedAttribute_t1D1C4A9662B6C2FAC28237FCDFA49FA4747BC3BA * (*) (RuntimeObject *, const RuntimeMethod*))JsonTypeReflector_GetAttribute_TisRuntimeObject_mAAF2DC002D6A4A40732F2AFFE03A51CC08DFC465_gshared)(___provider0, method);
}
// System.Void Valve.Newtonsoft.Json.Serialization.JsonProperty::set_Ignored(System.Boolean)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonProperty_set_Ignored_mFBBD3BA453B107E9C8F8B09E015A30C48BC9471E_inline (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __this, bool ___value0, const RuntimeMethod* method);
// T Valve.Newtonsoft.Json.Serialization.JsonTypeReflector::GetAttribute<System.ComponentModel.DefaultValueAttribute>(System.Object)
inline DefaultValueAttribute_t03B1F51B35271D50779D31234C9C6845BC9626EC * JsonTypeReflector_GetAttribute_TisDefaultValueAttribute_t03B1F51B35271D50779D31234C9C6845BC9626EC_mF2558DD7F4609B1154C2ADC2DE8872B09E668438 (RuntimeObject * ___provider0, const RuntimeMethod* method)
{
return (( DefaultValueAttribute_t03B1F51B35271D50779D31234C9C6845BC9626EC * (*) (RuntimeObject *, const RuntimeMethod*))JsonTypeReflector_GetAttribute_TisRuntimeObject_mAAF2DC002D6A4A40732F2AFFE03A51CC08DFC465_gshared)(___provider0, method);
}
// System.Void Valve.Newtonsoft.Json.Serialization.JsonProperty::set_ItemIsReference(System.Nullable`1<System.Boolean>)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonProperty_set_ItemIsReference_m13E3230285E4340B1E58D507B618377BE88BD57D_inline (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __this, Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 ___value0, const RuntimeMethod* method);
// System.Type Valve.Newtonsoft.Json.JsonPropertyAttribute::get_ItemConverterType()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Type_t * JsonPropertyAttribute_get_ItemConverterType_mB1E467548F5C538A1D34A6B083170A4C4A4C5C56_inline (JsonPropertyAttribute_tD66B9C74F3201FFAF7A16DB84AEA31FE8F02ED5F * __this, const RuntimeMethod* method);
// System.Object[] Valve.Newtonsoft.Json.JsonPropertyAttribute::get_ItemConverterParameters()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* JsonPropertyAttribute_get_ItemConverterParameters_mC1C5C995D4DFED0E9979A8A2E4179C4EF1898C71_inline (JsonPropertyAttribute_tD66B9C74F3201FFAF7A16DB84AEA31FE8F02ED5F * __this, const RuntimeMethod* method);
// Valve.Newtonsoft.Json.JsonConverter Valve.Newtonsoft.Json.Serialization.JsonTypeReflector::CreateJsonConverterInstance(System.Type,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * JsonTypeReflector_CreateJsonConverterInstance_mF210879CC3332D8BFAAD51FC1F446DF1B138EFDF (Type_t * ___converterType0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___converterArgs1, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.JsonProperty::set_ItemConverter(Valve.Newtonsoft.Json.JsonConverter)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonProperty_set_ItemConverter_m8C4DC9722F99040811BCDB141ACDD00B72C45A71_inline (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __this, JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * ___value0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.JsonProperty::set_ItemReferenceLoopHandling(System.Nullable`1<Valve.Newtonsoft.Json.ReferenceLoopHandling>)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonProperty_set_ItemReferenceLoopHandling_m1CDEE3989196F8894230245599408BC9DF3EE8A9_inline (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __this, Nullable_1_tD485E28BBBAFB03563161D92A5E03A20B8691DF7 ___value0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.JsonProperty::set_ItemTypeNameHandling(System.Nullable`1<Valve.Newtonsoft.Json.TypeNameHandling>)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonProperty_set_ItemTypeNameHandling_mEB8A85DB36850A8F0660DA687B80B6B40CB6B9AF_inline (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __this, Nullable_1_t03BF155C19CE72C93934F0A7CDDA0C202A278E11 ___value0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.DefaultContractResolver/<>c__DisplayClass68_0::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass68_0__ctor_mCB5870E5A11CE83ED10457825CBB519F065B1E26 (U3CU3Ec__DisplayClass68_0_t1E454C6A98ED08013AAE420DD137F8DC23C918B3 * __this, const RuntimeMethod* method);
// System.Void System.Predicate`1<System.Object>::.ctor(System.Object,System.IntPtr)
inline void Predicate_1__ctor_mBC07C59B061E1B719FFE2B6E5541E9011D906C3C (Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 *, RuntimeObject *, intptr_t, const RuntimeMethod*))Predicate_1__ctor_mBC07C59B061E1B719FFE2B6E5541E9011D906C3C_gshared)(__this, ___object0, ___method1, method);
}
// System.Void Valve.Newtonsoft.Json.Serialization.DefaultContractResolver/<>c__DisplayClass69_0::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass69_0__ctor_mAD41CD2C541555A97FBE04E5E807700D41A3CC24 (U3CU3Ec__DisplayClass69_0_tF21BC3EDD90BFA18331A484ECF156E30EF474FCA * __this, const RuntimeMethod* method);
// System.Reflection.PropertyInfo System.Type::GetProperty(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyInfo_t * Type_GetProperty_m309A76AAAFC344BA5EB24ACD874400F90B6E877E (Type_t * __this, String_t* ___name0, const RuntimeMethod* method);
// System.Reflection.FieldInfo System.Type::GetField(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FieldInfo_t * Type_GetField_m564F7686385A6EA8C30F81C939250D5010DC0CA5 (Type_t * __this, String_t* ___name0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.JsonProperty::set_GetIsSpecified(System.Predicate`1<System.Object>)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonProperty_set_GetIsSpecified_m1AC9A2E2BAC8E9A8B8294041A79C7483636EB4F6_inline (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __this, Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 * ___value0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.JsonProperty::set_SetIsSpecified(System.Action`2<System.Object,System.Object>)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonProperty_set_SetIsSpecified_m63982926E0533FEA5543D1147F34349A1D22B282_inline (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __this, Action_2_t0DB6FD6F515527EAB552B690A291778C6F00D48C * ___value0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::.ctor(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultContractResolver__ctor_mF8FC2874A070CE97DD4C37BDC435B00D73D7A139 (DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0 * __this, bool ___shareCache0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Converters.BinaryConverter::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BinaryConverter__ctor_mCD43BB3A53223FEAC58A23F49C70C862CB43BE01 (BinaryConverter_t03DC719B247B4C2889C9D314434AF1BC491EFF57 * __this, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Converters.KeyValuePairConverter::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyValuePairConverter__ctor_m1A4AA45F002B3B4A225F777B8611AB1BE53185DD (KeyValuePairConverter_t623AF45824C80A791AEE4381012644750CEC9FF9 * __this, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Converters.BsonObjectIdConverter::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BsonObjectIdConverter__ctor_mDD6BE18F035E021BB0D7E0FE54A15C41EE850533 (BsonObjectIdConverter_t93B9311C1D401CC4ADD6C3FE3D8E8A17FD1B13BE * __this, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Converters.RegexConverter::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexConverter__ctor_mE961EEBE8ACC799199EA173703318CBAF1EF1DAD (RegexConverter_t732C85CCD56E0511E2154E9E284FD426FB467882 * __this, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.DefaultContractResolver/<>c::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_m93A7BF139A196F224046DB26797AA9F21B705142 (U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A * __this, const RuntimeMethod* method);
// System.Boolean Valve.Newtonsoft.Json.Utilities.ReflectionUtils::IsIndexedProperty(System.Reflection.MemberInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReflectionUtils_IsIndexedProperty_mFEC4C2ADE4F08B2A40DEBC96451EDDDDF0F29F62 (MemberInfo_t * ___member0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Utilities.CollectionUtils::AddRange<System.Reflection.MemberInfo>(System.Collections.Generic.IList`1<T>,System.Collections.Generic.IEnumerable`1<T>)
inline void CollectionUtils_AddRange_TisMemberInfo_t_m4ED77C07EA82037D4B1BDF97ECD91F05B6BD05EB (RuntimeObject* ___initial0, RuntimeObject* ___collection1, const RuntimeMethod* method)
{
(( void (*) (RuntimeObject*, RuntimeObject*, const RuntimeMethod*))CollectionUtils_AddRange_TisRuntimeObject_m3D9182FBB92D8AACB0583059C8339553220DDFE6_gshared)(___initial0, ___collection1, method);
}
// System.Nullable`1<System.Int32> Valve.Newtonsoft.Json.Serialization.JsonProperty::get_Order()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB JsonProperty_get_Order_m2CB3D4BF263582BA6293D5C77A28F452C21D5FE1_inline (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __this, const RuntimeMethod* method);
// System.Boolean System.Nullable`1<System.Int32>::get_HasValue()
inline bool Nullable_1_get_HasValue_mB664E2C41CADA8413EF8842E6601B8C696A7CE15_inline (Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB * __this, const RuntimeMethod* method)
{
return (( bool (*) (Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB *, const RuntimeMethod*))Nullable_1_get_HasValue_mB664E2C41CADA8413EF8842E6601B8C696A7CE15_gshared_inline)(__this, method);
}
// !0 System.Nullable`1<System.Int32>::GetValueOrDefault()
inline int32_t Nullable_1_GetValueOrDefault_mE89BB8F302DF31EE202251F4746859285860B6B6_inline (Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB *, const RuntimeMethod*))Nullable_1_GetValueOrDefault_mE89BB8F302DF31EE202251F4746859285860B6B6_gshared_inline)(__this, method);
}
// !1 System.Func`2<System.Object,System.Object>::Invoke(!0)
inline RuntimeObject * Func_2_Invoke_m552C133A8966B9ED91540130ACA9BD367212EED4 (Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 * __this, RuntimeObject * ___arg0, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 *, RuntimeObject *, const RuntimeMethod*))Func_2_Invoke_m552C133A8966B9ED91540130ACA9BD367212EED4_gshared)(__this, ___arg0, method);
}
// !0 System.Func`1<System.Object>::Invoke()
inline RuntimeObject * Func_1_Invoke_m33E1702C6A8DBC8D2A39F4E9A1F5B14BEFAD9597 (Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 *, const RuntimeMethod*))Func_1_Invoke_m33E1702C6A8DBC8D2A39F4E9A1F5B14BEFAD9597_gshared)(__this, method);
}
// System.Void System.Action`2<System.Object,System.Object>::Invoke(!0,!1)
inline void Action_2_Invoke_m1738FFAE74BE5E599FD42520FA2BEF69D1AC4709 (Action_2_t0DB6FD6F515527EAB552B690A291778C6F00D48C * __this, RuntimeObject * ___arg10, RuntimeObject * ___arg21, const RuntimeMethod* method)
{
(( void (*) (Action_2_t0DB6FD6F515527EAB552B690A291778C6F00D48C *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*))Action_2_Invoke_m1738FFAE74BE5E599FD42520FA2BEF69D1AC4709_gshared)(__this, ___arg10, ___arg21, method);
}
// TResult Valve.Newtonsoft.Json.Utilities.MethodCall`2<System.Object,System.Object>::Invoke(T,System.Object[])
inline RuntimeObject * MethodCall_2_Invoke_m614565DD357D42A60D8A80E7B1292EF287D88034 (MethodCall_2_t56986CA125FFF5F08B7842782AF0C0E8499096EC * __this, RuntimeObject * ___target0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args1, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (MethodCall_2_t56986CA125FFF5F08B7842782AF0C0E8499096EC *, RuntimeObject *, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, const RuntimeMethod*))MethodCall_2_Invoke_m614565DD357D42A60D8A80E7B1292EF287D88034_gshared)(__this, ___target0, ___args1, method);
}
// System.Object Valve.Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object>::Invoke(System.Object[])
inline RuntimeObject * ObjectConstructor_1_Invoke_m76CEC2C9D43866532AC0B3DD9666B693A0C2FA70 (ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 * __this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args0, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 *, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, const RuntimeMethod*))ObjectConstructor_1_Invoke_m76CEC2C9D43866532AC0B3DD9666B693A0C2FA70_gshared)(__this, ___args0, method);
}
// System.Void Valve.Newtonsoft.Json.Utilities.PropertyNameTable::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyNameTable__ctor_m95B2B5A571D81E61D83D90D5AE219B08302B52D4 (PropertyNameTable_t09D6FC2871D681080545544521201A5726C6610D * __this, const RuntimeMethod* method);
// Valve.Newtonsoft.Json.Serialization.JsonSerializerInternalBase Valve.Newtonsoft.Json.Serialization.JsonSerializerProxy::GetInternalSerializer()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonSerializerInternalBase_t10636B4A3D430A7F6597EF873C98E30894ACF1F7 * JsonSerializerProxy_GetInternalSerializer_mDC3D70E23AAE5DAD7CBD097B110BA7449884E033 (JsonSerializerProxy_t087EA4189F71D7BC8479FB15347611106FC05276 * __this, const RuntimeMethod* method);
// Valve.Newtonsoft.Json.Utilities.BidirectionalDictionary`2<System.String,System.Object> Valve.Newtonsoft.Json.Serialization.JsonSerializerInternalBase::get_DefaultReferenceMappings()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BidirectionalDictionary_2_t099435761F49B07DBF2BBA49D1D2D6865002A8D5 * JsonSerializerInternalBase_get_DefaultReferenceMappings_m57542B936852961AC5382117DEAAB01446F85318 (JsonSerializerInternalBase_t10636B4A3D430A7F6597EF873C98E30894ACF1F7 * __this, const RuntimeMethod* method);
// Valve.Newtonsoft.Json.Utilities.BidirectionalDictionary`2<System.String,System.Object> Valve.Newtonsoft.Json.Serialization.DefaultReferenceResolver::GetMappings(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BidirectionalDictionary_2_t099435761F49B07DBF2BBA49D1D2D6865002A8D5 * DefaultReferenceResolver_GetMappings_m3D4025A129FB759AE3DCF61DD6A3F530D26EC8EF (DefaultReferenceResolver_t1313CA0D668FADF15BF2ACA61C526B6FED83C977 * __this, RuntimeObject * ___context0, const RuntimeMethod* method);
// System.Boolean Valve.Newtonsoft.Json.Utilities.BidirectionalDictionary`2<System.String,System.Object>::TryGetByFirst(TFirst,TSecond&)
inline bool BidirectionalDictionary_2_TryGetByFirst_mE8659F15AC48DDC478256BAD844F1D8CFA9BCF91 (BidirectionalDictionary_2_t099435761F49B07DBF2BBA49D1D2D6865002A8D5 * __this, String_t* ___first0, RuntimeObject ** ___second1, const RuntimeMethod* method)
{
return (( bool (*) (BidirectionalDictionary_2_t099435761F49B07DBF2BBA49D1D2D6865002A8D5 *, String_t*, RuntimeObject **, const RuntimeMethod*))BidirectionalDictionary_2_TryGetByFirst_m7483012CF84D86ADB0E9B270F29DE40040908AFD_gshared)(__this, ___first0, ___second1, method);
}
// System.Boolean Valve.Newtonsoft.Json.Utilities.BidirectionalDictionary`2<System.String,System.Object>::TryGetBySecond(TSecond,TFirst&)
inline bool BidirectionalDictionary_2_TryGetBySecond_m336D3CFE81BE67FFD3E78EB62766A2AF622E7A7A (BidirectionalDictionary_2_t099435761F49B07DBF2BBA49D1D2D6865002A8D5 * __this, RuntimeObject * ___second0, String_t** ___first1, const RuntimeMethod* method)
{
return (( bool (*) (BidirectionalDictionary_2_t099435761F49B07DBF2BBA49D1D2D6865002A8D5 *, RuntimeObject *, String_t**, const RuntimeMethod*))BidirectionalDictionary_2_TryGetBySecond_mF32044FD3161A0548AD88129B75D49C15D9583F2_gshared)(__this, ___second0, ___first1, method);
}
// System.String System.Int32::ToString(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int32_ToString_m1D0AF82BDAB5D4710527DD3FEFA6F01246D128A5 (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Utilities.BidirectionalDictionary`2<System.String,System.Object>::Set(TFirst,TSecond)
inline void BidirectionalDictionary_2_Set_m6D40E52AC98F507DEE615B3B7D92DD5152BB1FC5 (BidirectionalDictionary_2_t099435761F49B07DBF2BBA49D1D2D6865002A8D5 * __this, String_t* ___first0, RuntimeObject * ___second1, const RuntimeMethod* method)
{
(( void (*) (BidirectionalDictionary_2_t099435761F49B07DBF2BBA49D1D2D6865002A8D5 *, String_t*, RuntimeObject *, const RuntimeMethod*))BidirectionalDictionary_2_Set_m1F4DEFD2B8133D86A8291329A1A7CFCE3D3B869F_gshared)(__this, ___first0, ___second1, method);
}
// System.Reflection.Assembly System.Reflection.Assembly::LoadWithPartialName(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Assembly_t * Assembly_LoadWithPartialName_m9230151DE79E538B7B90936F0B2F30F99BBCD307 (String_t* ___partialName0, const RuntimeMethod* method);
// System.AppDomain System.AppDomain::get_CurrentDomain()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * AppDomain_get_CurrentDomain_m3D3D52C9382D6853E49551DA6182DBC5F1118BF0 (const RuntimeMethod* method);
// System.Reflection.Assembly[] System.AppDomain::GetAssemblies()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AssemblyU5BU5D_t90BF014AA048450526A42C74F9583341A138DE58* AppDomain_GetAssemblies_mF1A63ADFC80562168DF846017BB72CAB09298A23 (AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * __this, 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.Void Valve.Newtonsoft.Json.Serialization.DefaultSerializationBinder/TypeNameKey::.ctor(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeNameKey__ctor_m0C661D040D3CE82C94B32C42AE91D841C793F57A (TypeNameKey_tF95DA6A58197B920C4D8C069E6543C6EEDA08312 * __this, String_t* ___assemblyName0, String_t* ___typeName1, const RuntimeMethod* method);
// TValue Valve.Newtonsoft.Json.Utilities.ThreadSafeStore`2<Valve.Newtonsoft.Json.Serialization.DefaultSerializationBinder/TypeNameKey,System.Type>::Get(TKey)
inline Type_t * ThreadSafeStore_2_Get_mA1AE5E345A837263A7350B63C9902C30D9604D25 (ThreadSafeStore_2_t4514B8E56056BAF0F4C62DC3FE61190B6C7A83F7 * __this, TypeNameKey_tF95DA6A58197B920C4D8C069E6543C6EEDA08312 ___key0, const RuntimeMethod* method)
{
return (( Type_t * (*) (ThreadSafeStore_2_t4514B8E56056BAF0F4C62DC3FE61190B6C7A83F7 *, TypeNameKey_tF95DA6A58197B920C4D8C069E6543C6EEDA08312 , const RuntimeMethod*))ThreadSafeStore_2_Get_mCC4CA7817233EBB8CF196D666E830EE5C7C1F498_gshared)(__this, ___key0, method);
}
// System.Void System.Func`2<Valve.Newtonsoft.Json.Serialization.DefaultSerializationBinder/TypeNameKey,System.Type>::.ctor(System.Object,System.IntPtr)
inline void Func_2__ctor_m58F596FD3DEF4EA03042DB2653E77D81EF716B13 (Func_2_t613802803AE53BB465170B4BCAD06EC8EEE8FC0D * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (Func_2_t613802803AE53BB465170B4BCAD06EC8EEE8FC0D *, RuntimeObject *, intptr_t, const RuntimeMethod*))Func_2__ctor_mCC8BBB4B4D0B5CAA90D9A48B1B7535309393F185_gshared)(__this, ___object0, ___method1, method);
}
// System.Void Valve.Newtonsoft.Json.Utilities.ThreadSafeStore`2<Valve.Newtonsoft.Json.Serialization.DefaultSerializationBinder/TypeNameKey,System.Type>::.ctor(System.Func`2<TKey,TValue>)
inline void ThreadSafeStore_2__ctor_m0B31182B9AB59FFF512BEA154E9C43A8E940079E (ThreadSafeStore_2_t4514B8E56056BAF0F4C62DC3FE61190B6C7A83F7 * __this, Func_2_t613802803AE53BB465170B4BCAD06EC8EEE8FC0D * ___creator0, const RuntimeMethod* method)
{
(( void (*) (ThreadSafeStore_2_t4514B8E56056BAF0F4C62DC3FE61190B6C7A83F7 *, Func_2_t613802803AE53BB465170B4BCAD06EC8EEE8FC0D *, const RuntimeMethod*))ThreadSafeStore_2__ctor_m326F7A2B1892AD60B192245345D475865D849EB8_gshared)(__this, ___creator0, method);
}
// System.Void System.Runtime.Serialization.SerializationBinder::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationBinder__ctor_m6561AFDA7048873AC600F63E0C7EA19C5253E811 (SerializationBinder_tB5EBAF328371FB7CF23E37F5984D8412762CFFA4 * __this, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.DefaultSerializationBinder::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultSerializationBinder__ctor_mD09C65B0B1B951EA7DB548F1E938C7F22A57D8A1 (DefaultSerializationBinder_t920F0511A88D51A0CCDFDCB3C8F0E12CEDB5F3E3 * __this, const RuntimeMethod* method);
// System.Int32 Valve.Newtonsoft.Json.Serialization.DefaultSerializationBinder/TypeNameKey::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TypeNameKey_GetHashCode_m2C8DC929361776447E54603C27AAD7E2F2BEBCE8 (TypeNameKey_tF95DA6A58197B920C4D8C069E6543C6EEDA08312 * __this, const RuntimeMethod* method);
// System.Boolean Valve.Newtonsoft.Json.Serialization.DefaultSerializationBinder/TypeNameKey::Equals(Valve.Newtonsoft.Json.Serialization.DefaultSerializationBinder/TypeNameKey)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeNameKey_Equals_mBA82DBA60A4C38C97CC9B8AAB962B5DADD52BBAE (TypeNameKey_tF95DA6A58197B920C4D8C069E6543C6EEDA08312 * __this, TypeNameKey_tF95DA6A58197B920C4D8C069E6543C6EEDA08312 ___other0, const RuntimeMethod* method);
// System.Boolean Valve.Newtonsoft.Json.Serialization.DefaultSerializationBinder/TypeNameKey::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeNameKey_Equals_mA9CB7987E39F1CEC63E3F4FA1EFEE88C627CC973 (TypeNameKey_tF95DA6A58197B920C4D8C069E6543C6EEDA08312 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.ErrorContext::set_OriginalObject(System.Object)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void ErrorContext_set_OriginalObject_m8E938A5CA43E07F4313D5836F8B246FAEFBBFBDD_inline (ErrorContext_t61739A48B44A4707051088E7013FD4E347DBE7A0 * __this, RuntimeObject * ___value0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.ErrorContext::set_Member(System.Object)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void ErrorContext_set_Member_mB992679E80AFF52E170B4758CFF8035F80687D99_inline (ErrorContext_t61739A48B44A4707051088E7013FD4E347DBE7A0 * __this, RuntimeObject * ___value0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.ErrorContext::set_Error(System.Exception)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void ErrorContext_set_Error_m0E5CE8FC8C1F4738DC69C22A3E9DDC424DF80161_inline (ErrorContext_t61739A48B44A4707051088E7013FD4E347DBE7A0 * __this, Exception_t * ___value0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.ErrorContext::set_Path(System.String)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void ErrorContext_set_Path_m845955C49F8D6597E42A4D5C027291F6BA483FAA_inline (ErrorContext_t61739A48B44A4707051088E7013FD4E347DBE7A0 * __this, String_t* ___value0, const RuntimeMethod* method);
// System.Void System.EventArgs::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventArgs__ctor_m3551293259861C5A78CD47689D559F828ED29DF7 (EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * __this, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.ErrorEventArgs::set_CurrentObject(System.Object)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void ErrorEventArgs_set_CurrentObject_mBF49E39F8488905B42037F852CE94E7835C88CB0_inline (ErrorEventArgs_tB0943D7E08A6FA558FC6C2E534DFF2FC535FF298 * __this, RuntimeObject * ___value0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.ErrorEventArgs::set_ErrorContext(Valve.Newtonsoft.Json.Serialization.ErrorContext)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void ErrorEventArgs_set_ErrorContext_m71E35FBC6FD80B30D0520D87CB0838E04DAAFFEB_inline (ErrorEventArgs_tB0943D7E08A6FA558FC6C2E534DFF2FC535FF298 * __this, ErrorContext_t61739A48B44A4707051088E7013FD4E347DBE7A0 * ___value0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.JsonArrayContract::set_CanDeserialize(System.Boolean)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonArrayContract_set_CanDeserialize_mE5D171AF6B30958A25CC505A16F424F227D029AA_inline (JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751 * __this, bool ___value0, const RuntimeMethod* method);
// System.Boolean Valve.Newtonsoft.Json.Serialization.JsonArrayContract::get_HasParameterizedCreator()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool JsonArrayContract_get_HasParameterizedCreator_m4B57EBA3CBC19A697E5BB71E4963FDFC4395F599_inline (JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751 * __this, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.JsonContainerContract::.ctor(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonContainerContract__ctor_mEA7E83B6B87C0584E30AE5B52DACA72037AFD37B (JsonContainerContract_tD54146B123969809E06196AE0C5BB3D6E9A679B9 * __this, Type_t * ___underlyingType0, const RuntimeMethod* method);
// System.Boolean System.Type::get_IsArray()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsArray_m0B4E20F93B1B34C0B5C4B089F543D1AA338DC9FE (Type_t * __this, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.JsonArrayContract::set_IsArray(System.Boolean)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonArrayContract_set_IsArray_m70EF7EB5FDC94591CD78A769E2A95DC86B041EA7_inline (JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751 * __this, bool ___value0, const RuntimeMethod* method);
// System.Boolean Valve.Newtonsoft.Json.Serialization.JsonArrayContract::get_IsArray()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool JsonArrayContract_get_IsArray_mA108F1403D28761C05D8050D8C36D9A5C68EABD0_inline (JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751 * __this, const RuntimeMethod* method);
// System.Type Valve.Newtonsoft.Json.Utilities.ReflectionUtils::GetCollectionItemType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * ReflectionUtils_GetCollectionItemType_mE42A0352D1CEC9F9F75952F1F0729E34EEA9494F (Type_t * ___type0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.JsonArrayContract::set_CollectionItemType(System.Type)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonArrayContract_set_CollectionItemType_m4ED7E451B8262125D9C3A330DCBEF423A15332AB_inline (JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751 * __this, Type_t * ___value0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.JsonArrayContract::set_IsMultidimensionalArray(System.Boolean)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonArrayContract_set_IsMultidimensionalArray_mA0F2911D038F28838DF4EE720819D9448D521B72_inline (JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751 * __this, bool ___value0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.JsonContract::set_CreatedType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonContract_set_CreatedType_mDE35D10E5501FF83D76D15188B22BC4697BE5687 (JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * __this, Type_t * ___value0, const RuntimeMethod* method);
// System.Reflection.ConstructorInfo Valve.Newtonsoft.Json.Utilities.CollectionUtils::ResolveEnumerableCollectionConstructor(System.Type,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * CollectionUtils_ResolveEnumerableCollectionConstructor_m08BA9F1F15B6C07EF7204642AF4528A7075E7581 (Type_t * ___collectionType0, Type_t * ___collectionItemType1, const RuntimeMethod* method);
// System.Boolean Valve.Newtonsoft.Json.Utilities.ReflectionUtils::InheritsGenericDefinition(System.Type,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReflectionUtils_InheritsGenericDefinition_mDA99DE3E50D227F0C91FB7777E10C0F603134417 (Type_t * ___type0, Type_t * ___genericClassDefinition1, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.JsonArrayContract::set_ShouldCreateWrapper(System.Boolean)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonArrayContract_set_ShouldCreateWrapper_m948CE129A45979C3B8AA8296309FC8B2CAA3F837_inline (JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751 * __this, bool ___value0, const RuntimeMethod* method);
// System.Boolean Valve.Newtonsoft.Json.Serialization.JsonArrayContract::get_HasParameterizedCreatorInternal()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonArrayContract_get_HasParameterizedCreatorInternal_mAA9CFA8DE1E6DB10A2AE6EABFCDE4F166FA9CA8F (JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751 * __this, const RuntimeMethod* method);
// System.Boolean Valve.Newtonsoft.Json.Utilities.ReflectionUtils::InheritsGenericDefinition(System.Type,System.Type,System.Type&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReflectionUtils_InheritsGenericDefinition_mEFCFA43C1BB68B2B873520686173E720BE618D20 (Type_t * ___type0, Type_t * ___genericClassDefinition1, Type_t ** ___implementingType2, const RuntimeMethod* method);
// System.Boolean Valve.Newtonsoft.Json.Serialization.JsonArrayContract::get_IsMultidimensionalArray()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool JsonArrayContract_get_IsMultidimensionalArray_m5A93A212D49B64AB8DF564E054409B96A5AFCE48_inline (JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751 * __this, const RuntimeMethod* method);
// System.Boolean Valve.Newtonsoft.Json.Utilities.TypeExtensions::IsSealed(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeExtensions_IsSealed_mFE6A869FAD8A650F90D12D57C9D7D085CED7D8F5 (Type_t * ___type0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.JsonContract::.ctor(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonContract__ctor_mBD20DDB17E51F8C0EFE39E44C1A96B9103C5662F (JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * __this, Type_t * ___underlyingType0, const RuntimeMethod* method);
// System.Type Valve.Newtonsoft.Json.JsonContainerAttribute::get_ItemConverterType()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Type_t * JsonContainerAttribute_get_ItemConverterType_mAE499FC40A3D9BA300ABED486EEEFB69303D648B_inline (JsonContainerAttribute_t4E39F1E5EA66CF61E90C47C81929BE4A853A2DF3 * __this, const RuntimeMethod* method);
// System.Object[] Valve.Newtonsoft.Json.JsonContainerAttribute::get_ItemConverterParameters()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* JsonContainerAttribute_get_ItemConverterParameters_m3D2CB234BA796FBE7FE299BAE796D89147391B07_inline (JsonContainerAttribute_t4E39F1E5EA66CF61E90C47C81929BE4A853A2DF3 * __this, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.JsonContainerContract::set_ItemConverter(Valve.Newtonsoft.Json.JsonConverter)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonContainerContract_set_ItemConverter_mF8D7E92BF1E245119C8C93AF4008FC2D217899AA_inline (JsonContainerContract_tD54146B123969809E06196AE0C5BB3D6E9A679B9 * __this, JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * ___value0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.JsonContainerContract::set_ItemIsReference(System.Nullable`1<System.Boolean>)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonContainerContract_set_ItemIsReference_mD49AC15281D9B7652A0AF80EEEDCA79BC92D6578_inline (JsonContainerContract_tD54146B123969809E06196AE0C5BB3D6E9A679B9 * __this, Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 ___value0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.JsonContainerContract::set_ItemReferenceLoopHandling(System.Nullable`1<Valve.Newtonsoft.Json.ReferenceLoopHandling>)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonContainerContract_set_ItemReferenceLoopHandling_mD2E386B30881EFCD0E9B44D521116F31DA225233_inline (JsonContainerContract_tD54146B123969809E06196AE0C5BB3D6E9A679B9 * __this, Nullable_1_tD485E28BBBAFB03563161D92A5E03A20B8691DF7 ___value0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.JsonContainerContract::set_ItemTypeNameHandling(System.Nullable`1<Valve.Newtonsoft.Json.TypeNameHandling>)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonContainerContract_set_ItemTypeNameHandling_m09C7A16150E2822C582DAE7C9F23CD9CB5BA558F_inline (JsonContainerContract_tD54146B123969809E06196AE0C5BB3D6E9A679B9 * __this, Nullable_1_t03BF155C19CE72C93934F0A7CDDA0C202A278E11 ___value0, const RuntimeMethod* method);
// System.Boolean Valve.Newtonsoft.Json.Utilities.TypeExtensions::IsInterface(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeExtensions_IsInterface_mA344FF930F6F73FCDE134C62F39C11A2E853E8FA (Type_t * ___type0, const RuntimeMethod* method);
// System.Boolean Valve.Newtonsoft.Json.Utilities.TypeExtensions::IsAbstract(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeExtensions_IsAbstract_mCEA720F1609FF2C9446ABACCBC507E180D0AC2B1 (Type_t * ___type0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.JsonContract::set_UnderlyingType(System.Type)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonContract_set_UnderlyingType_mF954896C7C5865210BA18F39C112F06D9F8EF85D_inline (JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * __this, Type_t * ___value0, const RuntimeMethod* method);
// System.Boolean Valve.Newtonsoft.Json.Utilities.ReflectionUtils::IsNullable(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReflectionUtils_IsNullable_mEE2044F3C4871D0E2F5476AC3807F116E38BEEE6 (Type_t * ___t0, const RuntimeMethod* method);
// System.Boolean Valve.Newtonsoft.Json.Utilities.ConvertUtils::IsConvertible(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConvertUtils_IsConvertible_mEB515FF7DF47BFD5657FBDDBAACC8D189394DC86 (Type_t * ___t0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.SerializationCallback::Invoke(System.Object,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationCallback_Invoke_m85C852BD260BEC5555160CD5F6C6AB5CD6216C53 (SerializationCallback_t8B5297123C8DFAD6A6701E2F2046982E13CE1B9C * __this, RuntimeObject * ___o0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method);
// System.Collections.Generic.List`1/Enumerator<!0> System.Collections.Generic.List`1<Valve.Newtonsoft.Json.Serialization.SerializationCallback>::GetEnumerator()
inline Enumerator_t1A19A831BA75441941488C4DFBEF3678F2B8D43C List_1_GetEnumerator_m7D2B2093F1FFA407229D768856BF328C7246B929 (List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D * __this, const RuntimeMethod* method)
{
return (( Enumerator_t1A19A831BA75441941488C4DFBEF3678F2B8D43C (*) (List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D *, const RuntimeMethod*))List_1_GetEnumerator_m52CC760E475D226A2B75048D70C4E22692F9F68D_gshared)(__this, method);
}
// !0 System.Collections.Generic.List`1/Enumerator<Valve.Newtonsoft.Json.Serialization.SerializationCallback>::get_Current()
inline SerializationCallback_t8B5297123C8DFAD6A6701E2F2046982E13CE1B9C * Enumerator_get_Current_m24C9B51A40544679FAB4E3BCFDFB09765E223F51_inline (Enumerator_t1A19A831BA75441941488C4DFBEF3678F2B8D43C * __this, const RuntimeMethod* method)
{
return (( SerializationCallback_t8B5297123C8DFAD6A6701E2F2046982E13CE1B9C * (*) (Enumerator_t1A19A831BA75441941488C4DFBEF3678F2B8D43C *, const RuntimeMethod*))Enumerator_get_Current_mD7829C7E8CFBEDD463B15A951CDE9B90A12CC55C_gshared_inline)(__this, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<Valve.Newtonsoft.Json.Serialization.SerializationCallback>::MoveNext()
inline bool Enumerator_MoveNext_m4CBF49756F227E2743AC348A57E9CC6B0C8991E1 (Enumerator_t1A19A831BA75441941488C4DFBEF3678F2B8D43C * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t1A19A831BA75441941488C4DFBEF3678F2B8D43C *, const RuntimeMethod*))Enumerator_MoveNext_m38B1099DDAD7EEDE2F4CDAB11C095AC784AC2E34_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<Valve.Newtonsoft.Json.Serialization.SerializationCallback>::Dispose()
inline void Enumerator_Dispose_m64BC59AA82A6589BCCB99B429CE347ECFDD67BDD (Enumerator_t1A19A831BA75441941488C4DFBEF3678F2B8D43C * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t1A19A831BA75441941488C4DFBEF3678F2B8D43C *, const RuntimeMethod*))Enumerator_Dispose_m94D0DAE031619503CDA6E53C5C3CC78AF3139472_gshared)(__this, method);
}
// System.Void Valve.Newtonsoft.Json.Serialization.SerializationErrorCallback::Invoke(System.Object,System.Runtime.Serialization.StreamingContext,Valve.Newtonsoft.Json.Serialization.ErrorContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationErrorCallback_Invoke_m66D2E1E5A9BF46E924AD9FA1B8B8F9A60F6AEF92 (SerializationErrorCallback_t6EAECB0A4E241F49CA0D2A29EFCF4DCDDC9884B2 * __this, RuntimeObject * ___o0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, ErrorContext_t61739A48B44A4707051088E7013FD4E347DBE7A0 * ___errorContext2, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.JsonContract/<>c__DisplayClass73_0::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass73_0__ctor_mD8F4D97E6E75082E4646E3CA1AED5E83EA3515D2 (U3CU3Ec__DisplayClass73_0_t10F98427038E7A3850E5C9CCA33A1494BA83E561 * __this, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.SerializationCallback::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationCallback__ctor_mE68F23E5ADB4421AC6AFC613D1AF9407F1118EF6 (SerializationCallback_t8B5297123C8DFAD6A6701E2F2046982E13CE1B9C * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.JsonContract/<>c__DisplayClass74_0::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass74_0__ctor_m4F6124EE42C972851F9DA6CE9B4D85607BF614E2 (U3CU3Ec__DisplayClass74_0_tB49FD8A25B86AF68D3E126A7721C2B7F46F80A92 * __this, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.SerializationErrorCallback::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationErrorCallback__ctor_mA0AF0534C0654B75C3B16AAF86F4B511A6A2BE4B (SerializationErrorCallback_t6EAECB0A4E241F49CA0D2A29EFCF4DCDDC9884B2 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method);
// System.Object System.Reflection.MethodBase::Invoke(System.Object,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * MethodBase_Invoke_m471794D56262D9DB5B5A324883030AB16BD39674 (MethodBase_t * __this, RuntimeObject * ___obj0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___parameters1, const RuntimeMethod* method);
// System.Boolean Valve.Newtonsoft.Json.Serialization.JsonDictionaryContract::get_HasParameterizedCreator()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool JsonDictionaryContract_get_HasParameterizedCreator_mC567FA98200152009ABEFB52199373C9CB13C901_inline (JsonDictionaryContract_t7D39A549ABAEDA655A1140F78778D9B36692266C * __this, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Utilities.ReflectionUtils::GetDictionaryKeyValueTypes(System.Type,System.Type&,System.Type&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectionUtils_GetDictionaryKeyValueTypes_m3F693CE4F51DB3B497F85CBD5669648BF4C26029 (Type_t * ___dictionaryType0, Type_t ** ___keyType1, Type_t ** ___valueType2, const RuntimeMethod* method);
// System.Reflection.ConstructorInfo Valve.Newtonsoft.Json.Utilities.CollectionUtils::ResolveEnumerableCollectionConstructor(System.Type,System.Type,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * CollectionUtils_ResolveEnumerableCollectionConstructor_m62B5DB9ABE0D2B53B86317FC222795C0FAA5342A (Type_t * ___collectionType0, Type_t * ___collectionItemType1, Type_t * ___constructorArgumentType2, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.JsonDictionaryContract::set_ShouldCreateWrapper(System.Boolean)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonDictionaryContract_set_ShouldCreateWrapper_mFC7263B8CB80D12A013D2B9360FC36C08ED7BB97_inline (JsonDictionaryContract_t7D39A549ABAEDA655A1140F78778D9B36692266C * __this, bool ___value0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.JsonDictionaryContract::set_DictionaryKeyType(System.Type)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonDictionaryContract_set_DictionaryKeyType_mB6E03C44881CE214102AFEF4C7A324ED668939B4_inline (JsonDictionaryContract_t7D39A549ABAEDA655A1140F78778D9B36692266C * __this, Type_t * ___value0, const RuntimeMethod* method);
// System.Void Valve.Newtonsoft.Json.Serialization.JsonDictionaryContract::set_DictionaryValueType(System.Type)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonDictionaryContract_set_DictionaryValueType_m2F9D7D3F7F66D7CA191F7B3A9B2CEBC7A8A2B910_inline (JsonDictionaryContract_t7D39A549ABAEDA655A1140F78778D9B36692266C * __this, Type_t * ___value0, const RuntimeMethod* method);
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.IList`1<Valve.Newtonsoft.Json.Linq.JToken> Valve.Newtonsoft.Json.Linq.JObject::get_ChildrenTokens()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JObject_get_ChildrenTokens_m919B6EAD2D32CDFFD60043C372F1F450EEE4DA41 (JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21 * __this, const RuntimeMethod* method)
{
{
JPropertyKeyedCollection_t9EEDCB4FA22748C56AC9E4CD74AAA26F9D54A668 * L_0 = __this->get__properties_15();
return L_0;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JObject::add_PropertyChanged(System.ComponentModel.PropertyChangedEventHandler)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JObject_add_PropertyChanged_m61EA05BB21BE2B6A457C37E5A06E236D3D878801 (JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21 * __this, PropertyChangedEventHandler_t617E98E1876A8EB394D2B329340CE02D21FFFC82 * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JObject_add_PropertyChanged_m61EA05BB21BE2B6A457C37E5A06E236D3D878801_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
PropertyChangedEventHandler_t617E98E1876A8EB394D2B329340CE02D21FFFC82 * V_0 = NULL;
PropertyChangedEventHandler_t617E98E1876A8EB394D2B329340CE02D21FFFC82 * V_1 = NULL;
PropertyChangedEventHandler_t617E98E1876A8EB394D2B329340CE02D21FFFC82 * V_2 = NULL;
{
PropertyChangedEventHandler_t617E98E1876A8EB394D2B329340CE02D21FFFC82 * L_0 = __this->get_PropertyChanged_16();
V_0 = L_0;
}
IL_0007:
{
PropertyChangedEventHandler_t617E98E1876A8EB394D2B329340CE02D21FFFC82 * L_1 = V_0;
V_1 = L_1;
PropertyChangedEventHandler_t617E98E1876A8EB394D2B329340CE02D21FFFC82 * L_2 = V_1;
PropertyChangedEventHandler_t617E98E1876A8EB394D2B329340CE02D21FFFC82 * L_3 = ___value0;
Delegate_t * L_4 = Delegate_Combine_mC25D2F7DECAFBA6D9A2F9EBA8A77063F0658ECF1(L_2, L_3, /*hidden argument*/NULL);
V_2 = ((PropertyChangedEventHandler_t617E98E1876A8EB394D2B329340CE02D21FFFC82 *)CastclassSealed((RuntimeObject*)L_4, PropertyChangedEventHandler_t617E98E1876A8EB394D2B329340CE02D21FFFC82_il2cpp_TypeInfo_var));
PropertyChangedEventHandler_t617E98E1876A8EB394D2B329340CE02D21FFFC82 ** L_5 = __this->get_address_of_PropertyChanged_16();
PropertyChangedEventHandler_t617E98E1876A8EB394D2B329340CE02D21FFFC82 * L_6 = V_2;
PropertyChangedEventHandler_t617E98E1876A8EB394D2B329340CE02D21FFFC82 * L_7 = V_1;
PropertyChangedEventHandler_t617E98E1876A8EB394D2B329340CE02D21FFFC82 * L_8 = InterlockedCompareExchangeImpl<PropertyChangedEventHandler_t617E98E1876A8EB394D2B329340CE02D21FFFC82 *>((PropertyChangedEventHandler_t617E98E1876A8EB394D2B329340CE02D21FFFC82 **)L_5, L_6, L_7);
V_0 = L_8;
PropertyChangedEventHandler_t617E98E1876A8EB394D2B329340CE02D21FFFC82 * L_9 = V_0;
PropertyChangedEventHandler_t617E98E1876A8EB394D2B329340CE02D21FFFC82 * L_10 = V_1;
if ((!(((RuntimeObject*)(PropertyChangedEventHandler_t617E98E1876A8EB394D2B329340CE02D21FFFC82 *)L_9) == ((RuntimeObject*)(PropertyChangedEventHandler_t617E98E1876A8EB394D2B329340CE02D21FFFC82 *)L_10))))
{
goto IL_0007;
}
}
{
return;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JObject::remove_PropertyChanged(System.ComponentModel.PropertyChangedEventHandler)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JObject_remove_PropertyChanged_m19C5F4BACDF0B289BE2A3682D2D0D9ECA88FF7D6 (JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21 * __this, PropertyChangedEventHandler_t617E98E1876A8EB394D2B329340CE02D21FFFC82 * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JObject_remove_PropertyChanged_m19C5F4BACDF0B289BE2A3682D2D0D9ECA88FF7D6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
PropertyChangedEventHandler_t617E98E1876A8EB394D2B329340CE02D21FFFC82 * V_0 = NULL;
PropertyChangedEventHandler_t617E98E1876A8EB394D2B329340CE02D21FFFC82 * V_1 = NULL;
PropertyChangedEventHandler_t617E98E1876A8EB394D2B329340CE02D21FFFC82 * V_2 = NULL;
{
PropertyChangedEventHandler_t617E98E1876A8EB394D2B329340CE02D21FFFC82 * L_0 = __this->get_PropertyChanged_16();
V_0 = L_0;
}
IL_0007:
{
PropertyChangedEventHandler_t617E98E1876A8EB394D2B329340CE02D21FFFC82 * L_1 = V_0;
V_1 = L_1;
PropertyChangedEventHandler_t617E98E1876A8EB394D2B329340CE02D21FFFC82 * L_2 = V_1;
PropertyChangedEventHandler_t617E98E1876A8EB394D2B329340CE02D21FFFC82 * L_3 = ___value0;
Delegate_t * L_4 = Delegate_Remove_m0B0DB7D1B3AF96B71AFAA72BA0EFE32FBBC2932D(L_2, L_3, /*hidden argument*/NULL);
V_2 = ((PropertyChangedEventHandler_t617E98E1876A8EB394D2B329340CE02D21FFFC82 *)CastclassSealed((RuntimeObject*)L_4, PropertyChangedEventHandler_t617E98E1876A8EB394D2B329340CE02D21FFFC82_il2cpp_TypeInfo_var));
PropertyChangedEventHandler_t617E98E1876A8EB394D2B329340CE02D21FFFC82 ** L_5 = __this->get_address_of_PropertyChanged_16();
PropertyChangedEventHandler_t617E98E1876A8EB394D2B329340CE02D21FFFC82 * L_6 = V_2;
PropertyChangedEventHandler_t617E98E1876A8EB394D2B329340CE02D21FFFC82 * L_7 = V_1;
PropertyChangedEventHandler_t617E98E1876A8EB394D2B329340CE02D21FFFC82 * L_8 = InterlockedCompareExchangeImpl<PropertyChangedEventHandler_t617E98E1876A8EB394D2B329340CE02D21FFFC82 *>((PropertyChangedEventHandler_t617E98E1876A8EB394D2B329340CE02D21FFFC82 **)L_5, L_6, L_7);
V_0 = L_8;
PropertyChangedEventHandler_t617E98E1876A8EB394D2B329340CE02D21FFFC82 * L_9 = V_0;
PropertyChangedEventHandler_t617E98E1876A8EB394D2B329340CE02D21FFFC82 * L_10 = V_1;
if ((!(((RuntimeObject*)(PropertyChangedEventHandler_t617E98E1876A8EB394D2B329340CE02D21FFFC82 *)L_9) == ((RuntimeObject*)(PropertyChangedEventHandler_t617E98E1876A8EB394D2B329340CE02D21FFFC82 *)L_10))))
{
goto IL_0007;
}
}
{
return;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JObject::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JObject__ctor_mA5D65F80D283064BD1F55F868F8EB24250880D09 (JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JObject__ctor_mA5D65F80D283064BD1F55F868F8EB24250880D09_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
JPropertyKeyedCollection_t9EEDCB4FA22748C56AC9E4CD74AAA26F9D54A668 * L_0 = (JPropertyKeyedCollection_t9EEDCB4FA22748C56AC9E4CD74AAA26F9D54A668 *)il2cpp_codegen_object_new(JPropertyKeyedCollection_t9EEDCB4FA22748C56AC9E4CD74AAA26F9D54A668_il2cpp_TypeInfo_var);
JPropertyKeyedCollection__ctor_m36884BDFA31F8F9F8D9D3F70619D741C57172744(L_0, /*hidden argument*/NULL);
__this->set__properties_15(L_0);
JContainer__ctor_m806125BD93FAD395697010C35D9C9E7FDD72C85D(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JObject::.ctor(Valve.Newtonsoft.Json.Linq.JObject)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JObject__ctor_mBFA6CD97D90E21A16D4994A223785DA45D6C9650 (JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21 * __this, JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21 * ___other0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JObject__ctor_mBFA6CD97D90E21A16D4994A223785DA45D6C9650_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
JPropertyKeyedCollection_t9EEDCB4FA22748C56AC9E4CD74AAA26F9D54A668 * L_0 = (JPropertyKeyedCollection_t9EEDCB4FA22748C56AC9E4CD74AAA26F9D54A668 *)il2cpp_codegen_object_new(JPropertyKeyedCollection_t9EEDCB4FA22748C56AC9E4CD74AAA26F9D54A668_il2cpp_TypeInfo_var);
JPropertyKeyedCollection__ctor_m36884BDFA31F8F9F8D9D3F70619D741C57172744(L_0, /*hidden argument*/NULL);
__this->set__properties_15(L_0);
JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21 * L_1 = ___other0;
JContainer__ctor_m54AFFDE4AD8BFD964CE72C893D5CC7BC9F8CBE90(__this, L_1, /*hidden argument*/NULL);
return;
}
}
// System.Int32 Valve.Newtonsoft.Json.Linq.JObject::IndexOfItem(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JObject_IndexOfItem_mF9420DC39ECC5DF4A56B6BA428E341081205151D (JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21 * __this, JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___item0, const RuntimeMethod* method)
{
{
JPropertyKeyedCollection_t9EEDCB4FA22748C56AC9E4CD74AAA26F9D54A668 * L_0 = __this->get__properties_15();
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_1 = ___item0;
NullCheck(L_0);
int32_t L_2 = JPropertyKeyedCollection_IndexOfReference_mC199F62EF820B0A14B207970485BA689302058BA(L_0, L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JObject::InsertItem(System.Int32,Valve.Newtonsoft.Json.Linq.JToken,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JObject_InsertItem_m218A0E5C41886C9E3DDC1B2C6CB0FADFFB2BEC3A (JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21 * __this, int32_t ___index0, JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___item1, bool ___skipParentCheck2, const RuntimeMethod* method)
{
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_0 = ___item1;
if (!L_0)
{
goto IL_000d;
}
}
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_1 = ___item1;
NullCheck(L_1);
int32_t L_2 = VirtFuncInvoker0< int32_t >::Invoke(11 /* Valve.Newtonsoft.Json.Linq.JTokenType Valve.Newtonsoft.Json.Linq.JToken::get_Type() */, L_1);
if ((!(((uint32_t)L_2) == ((uint32_t)5))))
{
goto IL_000d;
}
}
{
return;
}
IL_000d:
{
int32_t L_3 = ___index0;
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_4 = ___item1;
bool L_5 = ___skipParentCheck2;
JContainer_InsertItem_m6D0281DACCAF85E972DC13B6BDA70FDFF2C62A16(__this, L_3, L_4, L_5, /*hidden argument*/NULL);
return;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JObject::ValidateToken(Valve.Newtonsoft.Json.Linq.JToken,Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JObject_ValidateToken_m914D161CDE482087CB8C7295232D10A83E1EF72F (JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21 * __this, JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___o0, JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___existing1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JObject_ValidateToken_m914D161CDE482087CB8C7295232D10A83E1EF72F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * V_0 = NULL;
JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * V_1 = NULL;
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_0 = ___o0;
ValidationUtils_ArgumentNotNull_mA6823FB6A1184537A467BD3BAFA6C06126EF7AE9(L_0, _stringLiteral7A81AF3E591AC713F81EA1EFE93DCF36157D8376, /*hidden argument*/NULL);
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_1 = ___o0;
NullCheck(L_1);
int32_t L_2 = VirtFuncInvoker0< int32_t >::Invoke(11 /* Valve.Newtonsoft.Json.Linq.JTokenType Valve.Newtonsoft.Json.Linq.JToken::get_Type() */, L_1);
if ((((int32_t)L_2) == ((int32_t)4)))
{
goto IL_0035;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_3 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_4 = ___o0;
NullCheck(L_4);
Type_t * L_5 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_4, /*hidden argument*/NULL);
Type_t * L_6 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(__this, /*hidden argument*/NULL);
String_t* L_7 = StringUtils_FormatWith_m0847578DA1FD34776DD9C2AB8A4BA694D05A8C6D(_stringLiteralDEEBAAE3047CF6CBD5FB3318857D24264A676A4F, L_3, L_5, L_6, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_8 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_8, L_7, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, JObject_ValidateToken_m914D161CDE482087CB8C7295232D10A83E1EF72F_RuntimeMethod_var);
}
IL_0035:
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_9 = ___o0;
V_0 = ((JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF *)CastclassClass((RuntimeObject*)L_9, JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF_il2cpp_TypeInfo_var));
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_10 = ___existing1;
if (!L_10)
{
goto IL_005a;
}
}
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_11 = ___existing1;
V_1 = ((JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF *)CastclassClass((RuntimeObject*)L_11, JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF_il2cpp_TypeInfo_var));
JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * L_12 = V_0;
NullCheck(L_12);
String_t* L_13 = JProperty_get_Name_mB214D204AA250BF1F6F73A038028946203F592ED_inline(L_12, /*hidden argument*/NULL);
JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * L_14 = V_1;
NullCheck(L_14);
String_t* L_15 = JProperty_get_Name_mB214D204AA250BF1F6F73A038028946203F592ED_inline(L_14, /*hidden argument*/NULL);
bool L_16 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_13, L_15, /*hidden argument*/NULL);
if (!L_16)
{
goto IL_005a;
}
}
{
return;
}
IL_005a:
{
JPropertyKeyedCollection_t9EEDCB4FA22748C56AC9E4CD74AAA26F9D54A668 * L_17 = __this->get__properties_15();
JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * L_18 = V_0;
NullCheck(L_18);
String_t* L_19 = JProperty_get_Name_mB214D204AA250BF1F6F73A038028946203F592ED_inline(L_18, /*hidden argument*/NULL);
NullCheck(L_17);
bool L_20 = JPropertyKeyedCollection_TryGetValue_mA49B9420FDAC72D4FB53F2D8941C254D9C969055(L_17, L_19, (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 **)(&___existing1), /*hidden argument*/NULL);
if (!L_20)
{
goto IL_0090;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_21 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * L_22 = V_0;
NullCheck(L_22);
String_t* L_23 = JProperty_get_Name_mB214D204AA250BF1F6F73A038028946203F592ED_inline(L_22, /*hidden argument*/NULL);
Type_t * L_24 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(__this, /*hidden argument*/NULL);
String_t* L_25 = StringUtils_FormatWith_m0847578DA1FD34776DD9C2AB8A4BA694D05A8C6D(_stringLiteral8585804C16B71BA222095EC678B9BD5911507C1B, L_21, L_23, L_24, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_26 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_26, L_25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_26, JObject_ValidateToken_m914D161CDE482087CB8C7295232D10A83E1EF72F_RuntimeMethod_var);
}
IL_0090:
{
return;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JObject::InternalPropertyChanged(Valve.Newtonsoft.Json.Linq.JProperty)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JObject_InternalPropertyChanged_mE24B885ECDE4741DFDFB719B13366F0FDADEA2EB (JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21 * __this, JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * ___childProperty0, const RuntimeMethod* method)
{
{
JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * L_0 = ___childProperty0;
NullCheck(L_0);
String_t* L_1 = JProperty_get_Name_mB214D204AA250BF1F6F73A038028946203F592ED_inline(L_0, /*hidden argument*/NULL);
VirtActionInvoker1< String_t* >::Invoke(75 /* System.Void Valve.Newtonsoft.Json.Linq.JObject::OnPropertyChanged(System.String) */, __this, L_1);
return;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JObject::InternalPropertyChanging(Valve.Newtonsoft.Json.Linq.JProperty)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JObject_InternalPropertyChanging_m309C03018467BBBA00844368ABBC50EDC04F7901 (JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21 * __this, JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * ___childProperty0, const RuntimeMethod* method)
{
{
return;
}
}
// Valve.Newtonsoft.Json.Linq.JToken Valve.Newtonsoft.Json.Linq.JObject::CloneToken()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * JObject_CloneToken_m06AF14F0BE72800CC23B075131AF347F545D7530 (JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JObject_CloneToken_m06AF14F0BE72800CC23B075131AF347F545D7530_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21 * L_0 = (JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21 *)il2cpp_codegen_object_new(JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21_il2cpp_TypeInfo_var);
JObject__ctor_mBFA6CD97D90E21A16D4994A223785DA45D6C9650(L_0, __this, /*hidden argument*/NULL);
return L_0;
}
}
// Valve.Newtonsoft.Json.Linq.JTokenType Valve.Newtonsoft.Json.Linq.JObject::get_Type()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JObject_get_Type_m717B3949B881D01B3755DD10DC803EC16621E7D4 (JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21 * __this, const RuntimeMethod* method)
{
{
return (int32_t)(1);
}
}
// Valve.Newtonsoft.Json.Linq.JProperty Valve.Newtonsoft.Json.Linq.JObject::Property(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * JObject_Property_mEC5F823BEC18E9431F3D141136C0DF2479E40481 (JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21 * __this, String_t* ___name0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JObject_Property_mEC5F823BEC18E9431F3D141136C0DF2479E40481_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * V_0 = NULL;
{
String_t* L_0 = ___name0;
if (L_0)
{
goto IL_0005;
}
}
{
return (JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF *)NULL;
}
IL_0005:
{
JPropertyKeyedCollection_t9EEDCB4FA22748C56AC9E4CD74AAA26F9D54A668 * L_1 = __this->get__properties_15();
String_t* L_2 = ___name0;
NullCheck(L_1);
JPropertyKeyedCollection_TryGetValue_mA49B9420FDAC72D4FB53F2D8941C254D9C969055(L_1, L_2, (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 **)(&V_0), /*hidden argument*/NULL);
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_3 = V_0;
return ((JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF *)CastclassClass((RuntimeObject*)L_3, JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF_il2cpp_TypeInfo_var));
}
}
// Valve.Newtonsoft.Json.Linq.JToken Valve.Newtonsoft.Json.Linq.JObject::get_Item(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * JObject_get_Item_mE84F54A89A823A8C892ACBB8BB7D150C786A9D96 (JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21 * __this, String_t* ___propertyName0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JObject_get_Item_mE84F54A89A823A8C892ACBB8BB7D150C786A9D96_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * V_0 = NULL;
{
String_t* L_0 = ___propertyName0;
ValidationUtils_ArgumentNotNull_mA6823FB6A1184537A467BD3BAFA6C06126EF7AE9(L_0, _stringLiteralDEAEB26764551C6A022D74CF85AFD8F0BBF999D7, /*hidden argument*/NULL);
String_t* L_1 = ___propertyName0;
JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * L_2 = JObject_Property_mEC5F823BEC18E9431F3D141136C0DF2479E40481(__this, L_1, /*hidden argument*/NULL);
V_0 = L_2;
JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * L_3 = V_0;
if (L_3)
{
goto IL_0018;
}
}
{
return (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 *)NULL;
}
IL_0018:
{
JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * L_4 = V_0;
NullCheck(L_4);
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_5 = JProperty_get_Value_m21DE887CFE1475851AB5EACB2D7C91BDE5F70571(L_4, /*hidden argument*/NULL);
return L_5;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JObject::set_Item(System.String,Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JObject_set_Item_m69F3E86B1D8BADE7CA1F9CAAB0EF9DA1E2E123EB (JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21 * __this, String_t* ___propertyName0, JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JObject_set_Item_m69F3E86B1D8BADE7CA1F9CAAB0EF9DA1E2E123EB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * V_0 = NULL;
{
String_t* L_0 = ___propertyName0;
JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * L_1 = JObject_Property_mEC5F823BEC18E9431F3D141136C0DF2479E40481(__this, L_0, /*hidden argument*/NULL);
V_0 = L_1;
JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * L_2 = V_0;
if (!L_2)
{
goto IL_0013;
}
}
{
JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * L_3 = V_0;
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_4 = ___value1;
NullCheck(L_3);
JProperty_set_Value_mBB9E014490FCA737CD534BA06585F9B86B3636AA(L_3, L_4, /*hidden argument*/NULL);
return;
}
IL_0013:
{
String_t* L_5 = ___propertyName0;
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_6 = ___value1;
JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * L_7 = (JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF *)il2cpp_codegen_object_new(JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF_il2cpp_TypeInfo_var);
JProperty__ctor_m2EB3FF0AC7616ACC0AF2972AD0141CEFA72FB6E5(L_7, L_5, L_6, /*hidden argument*/NULL);
VirtActionInvoker1< RuntimeObject * >::Invoke(56 /* System.Void Valve.Newtonsoft.Json.Linq.JContainer::Add(System.Object) */, __this, L_7);
String_t* L_8 = ___propertyName0;
VirtActionInvoker1< String_t* >::Invoke(75 /* System.Void Valve.Newtonsoft.Json.Linq.JObject::OnPropertyChanged(System.String) */, __this, L_8);
return;
}
}
// Valve.Newtonsoft.Json.Linq.JObject Valve.Newtonsoft.Json.Linq.JObject::Load(Valve.Newtonsoft.Json.JsonReader,Valve.Newtonsoft.Json.Linq.JsonLoadSettings)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21 * JObject_Load_m2FC3E570F52E343E3B99668B1BA490E65656B1A4 (JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C * ___reader0, JsonLoadSettings_tB5261F5FE452665393A12B96A793FE21DF91D45A * ___settings1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JObject_Load_m2FC3E570F52E343E3B99668B1BA490E65656B1A4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C * L_0 = ___reader0;
ValidationUtils_ArgumentNotNull_mA6823FB6A1184537A467BD3BAFA6C06126EF7AE9(L_0, _stringLiteral24B55FE81E9E7B11798D3A4E4677DD48FFC81559, /*hidden argument*/NULL);
JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C * L_1 = ___reader0;
NullCheck(L_1);
int32_t L_2 = VirtFuncInvoker0< int32_t >::Invoke(5 /* Valve.Newtonsoft.Json.JsonToken Valve.Newtonsoft.Json.JsonReader::get_TokenType() */, L_1);
if (L_2)
{
goto IL_0027;
}
}
{
JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C * L_3 = ___reader0;
NullCheck(L_3);
bool L_4 = VirtFuncInvoker0< bool >::Invoke(10 /* System.Boolean Valve.Newtonsoft.Json.JsonReader::Read() */, L_3);
if (L_4)
{
goto IL_0027;
}
}
{
JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C * L_5 = ___reader0;
JsonReaderException_t1C6240BBE2D8125B80F7E72F0EE572194B3263DC * L_6 = JsonReaderException_Create_m18EFA18A35D7F56A561A4590598A68B2EABD92DA(L_5, _stringLiteral6AE0DC000F6B60F38EDA201D8AB189DAA8BDAE27, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, JObject_Load_m2FC3E570F52E343E3B99668B1BA490E65656B1A4_RuntimeMethod_var);
}
IL_0027:
{
JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C * L_7 = ___reader0;
NullCheck(L_7);
JsonReader_MoveToContent_mC731E1F4E1490266724B14F0A196A2F3DD74E07C(L_7, /*hidden argument*/NULL);
JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C * L_8 = ___reader0;
NullCheck(L_8);
int32_t L_9 = VirtFuncInvoker0< int32_t >::Invoke(5 /* Valve.Newtonsoft.Json.JsonToken Valve.Newtonsoft.Json.JsonReader::get_TokenType() */, L_8);
if ((((int32_t)L_9) == ((int32_t)1)))
{
goto IL_0058;
}
}
{
JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C * L_10 = ___reader0;
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_11 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C * L_12 = ___reader0;
NullCheck(L_12);
int32_t L_13 = VirtFuncInvoker0< int32_t >::Invoke(5 /* Valve.Newtonsoft.Json.JsonToken Valve.Newtonsoft.Json.JsonReader::get_TokenType() */, L_12);
int32_t L_14 = L_13;
RuntimeObject * L_15 = Box(JsonToken_t0C71FBC985C653C19D3A1CA63373FC84B6F13406_il2cpp_TypeInfo_var, &L_14);
String_t* L_16 = StringUtils_FormatWith_mA244260995FC801D82F22EC897F3F8BEB8649583(_stringLiteral639012C89D3C30C1AB8D0BA57B99D88DF6369333, L_11, L_15, /*hidden argument*/NULL);
JsonReaderException_t1C6240BBE2D8125B80F7E72F0EE572194B3263DC * L_17 = JsonReaderException_Create_m18EFA18A35D7F56A561A4590598A68B2EABD92DA(L_10, L_16, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, JObject_Load_m2FC3E570F52E343E3B99668B1BA490E65656B1A4_RuntimeMethod_var);
}
IL_0058:
{
JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21 * L_18 = (JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21 *)il2cpp_codegen_object_new(JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21_il2cpp_TypeInfo_var);
JObject__ctor_mA5D65F80D283064BD1F55F868F8EB24250880D09(L_18, /*hidden argument*/NULL);
JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21 * L_19 = L_18;
JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C * L_20 = ___reader0;
JsonLoadSettings_tB5261F5FE452665393A12B96A793FE21DF91D45A * L_21 = ___settings1;
NullCheck(L_19);
JToken_SetLineInfo_m0315B529EF0753213FB16C33647C9F2539B64193(L_19, ((RuntimeObject*)IsInst((RuntimeObject*)L_20, IJsonLineInfo_t7E81AAC43FB40592D509A17DBF8FAABAAE6AC29D_il2cpp_TypeInfo_var)), L_21, /*hidden argument*/NULL);
JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21 * L_22 = L_19;
JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C * L_23 = ___reader0;
JsonLoadSettings_tB5261F5FE452665393A12B96A793FE21DF91D45A * L_24 = ___settings1;
NullCheck(L_22);
JContainer_ReadTokenFrom_m9F2F0DC444C28738C14E6C38BA5DCB71D4F900C6(L_22, L_23, L_24, /*hidden argument*/NULL);
return L_22;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JObject::WriteTo(Valve.Newtonsoft.Json.JsonWriter,Valve.Newtonsoft.Json.JsonConverter[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JObject_WriteTo_m87E6EF2F27DB2FEC2505A1C54A96D073240A2F05 (JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21 * __this, JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * ___writer0, JsonConverterU5BU5D_tFCEA4D4687200F08D8F41AFF4CDC7EE5E08AACAB* ___converters1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JObject_WriteTo_m87E6EF2F27DB2FEC2505A1C54A96D073240A2F05_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * L_0 = ___writer0;
NullCheck(L_0);
VirtActionInvoker0::Invoke(7 /* System.Void Valve.Newtonsoft.Json.JsonWriter::WriteStartObject() */, L_0);
V_0 = 0;
goto IL_0021;
}
IL_000a:
{
JPropertyKeyedCollection_t9EEDCB4FA22748C56AC9E4CD74AAA26F9D54A668 * L_1 = __this->get__properties_15();
int32_t L_2 = V_0;
NullCheck(L_1);
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_3 = Collection_1_get_Item_m15DBFB0B2A8BBE8C7E7543FBF38F39E2F5FCDD68(L_1, L_2, /*hidden argument*/Collection_1_get_Item_m15DBFB0B2A8BBE8C7E7543FBF38F39E2F5FCDD68_RuntimeMethod_var);
JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * L_4 = ___writer0;
JsonConverterU5BU5D_tFCEA4D4687200F08D8F41AFF4CDC7EE5E08AACAB* L_5 = ___converters1;
NullCheck(L_3);
VirtActionInvoker2< JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E *, JsonConverterU5BU5D_tFCEA4D4687200F08D8F41AFF4CDC7EE5E08AACAB* >::Invoke(16 /* System.Void Valve.Newtonsoft.Json.Linq.JToken::WriteTo(Valve.Newtonsoft.Json.JsonWriter,Valve.Newtonsoft.Json.JsonConverter[]) */, L_3, L_4, L_5);
int32_t L_6 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)1));
}
IL_0021:
{
int32_t L_7 = V_0;
JPropertyKeyedCollection_t9EEDCB4FA22748C56AC9E4CD74AAA26F9D54A668 * L_8 = __this->get__properties_15();
NullCheck(L_8);
int32_t L_9 = Collection_1_get_Count_mFBAF831BD2E005EC9C48277B8A772455C7BD7F98(L_8, /*hidden argument*/Collection_1_get_Count_mFBAF831BD2E005EC9C48277B8A772455C7BD7F98_RuntimeMethod_var);
if ((((int32_t)L_7) < ((int32_t)L_9)))
{
goto IL_000a;
}
}
{
JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * L_10 = ___writer0;
NullCheck(L_10);
VirtActionInvoker0::Invoke(8 /* System.Void Valve.Newtonsoft.Json.JsonWriter::WriteEndObject() */, L_10);
return;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JObject::Add(System.String,Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JObject_Add_m2D4BF9413B123EA2EA7B7BAFA5E22A95D48BD343 (JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21 * __this, String_t* ___propertyName0, JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JObject_Add_m2D4BF9413B123EA2EA7B7BAFA5E22A95D48BD343_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___propertyName0;
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_1 = ___value1;
JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * L_2 = (JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF *)il2cpp_codegen_object_new(JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF_il2cpp_TypeInfo_var);
JProperty__ctor_m2EB3FF0AC7616ACC0AF2972AD0141CEFA72FB6E5(L_2, L_0, L_1, /*hidden argument*/NULL);
VirtActionInvoker1< RuntimeObject * >::Invoke(56 /* System.Void Valve.Newtonsoft.Json.Linq.JContainer::Add(System.Object) */, __this, L_2);
return;
}
}
// System.Boolean Valve.Newtonsoft.Json.Linq.JObject::System.Collections.Generic.IDictionary<System.String,Valve.Newtonsoft.Json.Linq.JToken>.ContainsKey(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JObject_System_Collections_Generic_IDictionaryU3CSystem_StringU2CValve_Newtonsoft_Json_Linq_JTokenU3E_ContainsKey_mCD391ABC5254F7C9ECE8F234A4694ECE90E54D7B (JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21 * __this, String_t* ___key0, const RuntimeMethod* method)
{
{
JPropertyKeyedCollection_t9EEDCB4FA22748C56AC9E4CD74AAA26F9D54A668 * L_0 = __this->get__properties_15();
String_t* L_1 = ___key0;
NullCheck(L_0);
bool L_2 = JPropertyKeyedCollection_Contains_m9BB27B5F4B094F98E40DF0EAC64317EEDB446A5B(L_0, L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.Collections.Generic.ICollection`1<System.String> Valve.Newtonsoft.Json.Linq.JObject::System.Collections.Generic.IDictionary<System.String,Valve.Newtonsoft.Json.Linq.JToken>.get_Keys()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JObject_System_Collections_Generic_IDictionaryU3CSystem_StringU2CValve_Newtonsoft_Json_Linq_JTokenU3E_get_Keys_m6F126DD80E60AFBAFD300C2EEBBA341B1996E632 (JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21 * __this, const RuntimeMethod* method)
{
{
JPropertyKeyedCollection_t9EEDCB4FA22748C56AC9E4CD74AAA26F9D54A668 * L_0 = __this->get__properties_15();
NullCheck(L_0);
RuntimeObject* L_1 = JPropertyKeyedCollection_get_Keys_m577631D5857315D17E55A844F7299E726DA73611(L_0, /*hidden argument*/NULL);
return L_1;
}
}
// System.Boolean Valve.Newtonsoft.Json.Linq.JObject::Remove(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JObject_Remove_m071001E249812891B6817A44EBFEAE9B1324E21C (JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21 * __this, String_t* ___propertyName0, const RuntimeMethod* method)
{
JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * V_0 = NULL;
{
String_t* L_0 = ___propertyName0;
JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * L_1 = JObject_Property_mEC5F823BEC18E9431F3D141136C0DF2479E40481(__this, L_0, /*hidden argument*/NULL);
V_0 = L_1;
JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * L_2 = V_0;
if (L_2)
{
goto IL_000d;
}
}
{
return (bool)0;
}
IL_000d:
{
JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * L_3 = V_0;
NullCheck(L_3);
JToken_Remove_mF35E87978A3AA0EBAAC3BEDE0489BAF613EB0816(L_3, /*hidden argument*/NULL);
return (bool)1;
}
}
// System.Boolean Valve.Newtonsoft.Json.Linq.JObject::TryGetValue(System.String,Valve.Newtonsoft.Json.Linq.JToken&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JObject_TryGetValue_m32AE4995DA8B91FF829CAE06C2CAE150363893DE (JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21 * __this, String_t* ___propertyName0, JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 ** ___value1, const RuntimeMethod* method)
{
JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * V_0 = NULL;
{
String_t* L_0 = ___propertyName0;
JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * L_1 = JObject_Property_mEC5F823BEC18E9431F3D141136C0DF2479E40481(__this, L_0, /*hidden argument*/NULL);
V_0 = L_1;
JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * L_2 = V_0;
if (L_2)
{
goto IL_0010;
}
}
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 ** L_3 = ___value1;
*((RuntimeObject **)L_3) = (RuntimeObject *)NULL;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_3, (void*)(RuntimeObject *)NULL);
return (bool)0;
}
IL_0010:
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 ** L_4 = ___value1;
JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * L_5 = V_0;
NullCheck(L_5);
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_6 = JProperty_get_Value_m21DE887CFE1475851AB5EACB2D7C91BDE5F70571(L_5, /*hidden argument*/NULL);
*((RuntimeObject **)L_4) = (RuntimeObject *)L_6;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_4, (void*)(RuntimeObject *)L_6);
return (bool)1;
}
}
// System.Collections.Generic.ICollection`1<Valve.Newtonsoft.Json.Linq.JToken> Valve.Newtonsoft.Json.Linq.JObject::System.Collections.Generic.IDictionary<System.String,Valve.Newtonsoft.Json.Linq.JToken>.get_Values()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JObject_System_Collections_Generic_IDictionaryU3CSystem_StringU2CValve_Newtonsoft_Json_Linq_JTokenU3E_get_Values_m9807B639E965C169F143CB3F9E7F9E5C2373B578 (JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JObject_System_Collections_Generic_IDictionaryU3CSystem_StringU2CValve_Newtonsoft_Json_Linq_JTokenU3E_get_Values_m9807B639E965C169F143CB3F9E7F9E5C2373B578_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4 * L_0 = (NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4 *)il2cpp_codegen_object_new(NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4_il2cpp_TypeInfo_var);
NotImplementedException__ctor_m8BEA657E260FC05F0C6D2C43A6E9BC08040F59C4(L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, JObject_System_Collections_Generic_IDictionaryU3CSystem_StringU2CValve_Newtonsoft_Json_Linq_JTokenU3E_get_Values_m9807B639E965C169F143CB3F9E7F9E5C2373B578_RuntimeMethod_var);
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JObject::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<System.String,Valve.Newtonsoft.Json.Linq.JToken>>.Add(System.Collections.Generic.KeyValuePair`2<System.String,Valve.Newtonsoft.Json.Linq.JToken>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JObject_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CSystem_StringU2CValve_Newtonsoft_Json_Linq_JTokenU3EU3E_Add_mF70121A817AB0340BACC70E4557A85CBEE4759D6 (JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21 * __this, KeyValuePair_2_t12EC1C8B4977DCEE8CF178DACA28A94CA2A77BCA ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JObject_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CSystem_StringU2CValve_Newtonsoft_Json_Linq_JTokenU3EU3E_Add_mF70121A817AB0340BACC70E4557A85CBEE4759D6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = KeyValuePair_2_get_Key_m45BFA059E51F33E95AF197929A0137E9D6259472_inline((KeyValuePair_2_t12EC1C8B4977DCEE8CF178DACA28A94CA2A77BCA *)(&___item0), /*hidden argument*/KeyValuePair_2_get_Key_m45BFA059E51F33E95AF197929A0137E9D6259472_RuntimeMethod_var);
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_1 = KeyValuePair_2_get_Value_m9489FE438F11E13960A112B6A2D6C0C4E9C80CF9_inline((KeyValuePair_2_t12EC1C8B4977DCEE8CF178DACA28A94CA2A77BCA *)(&___item0), /*hidden argument*/KeyValuePair_2_get_Value_m9489FE438F11E13960A112B6A2D6C0C4E9C80CF9_RuntimeMethod_var);
JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * L_2 = (JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF *)il2cpp_codegen_object_new(JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF_il2cpp_TypeInfo_var);
JProperty__ctor_m2EB3FF0AC7616ACC0AF2972AD0141CEFA72FB6E5(L_2, L_0, L_1, /*hidden argument*/NULL);
VirtActionInvoker1< RuntimeObject * >::Invoke(56 /* System.Void Valve.Newtonsoft.Json.Linq.JContainer::Add(System.Object) */, __this, L_2);
return;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JObject::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<System.String,Valve.Newtonsoft.Json.Linq.JToken>>.Clear()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JObject_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CSystem_StringU2CValve_Newtonsoft_Json_Linq_JTokenU3EU3E_Clear_mF37542C4B0D6E84F87A9FAE7CD4F48EA64E8780E (JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21 * __this, const RuntimeMethod* method)
{
{
JContainer_RemoveAll_m163DE07E22FF6C36233AA61D83378135F7B03026(__this, /*hidden argument*/NULL);
return;
}
}
// System.Boolean Valve.Newtonsoft.Json.Linq.JObject::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<System.String,Valve.Newtonsoft.Json.Linq.JToken>>.Contains(System.Collections.Generic.KeyValuePair`2<System.String,Valve.Newtonsoft.Json.Linq.JToken>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JObject_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CSystem_StringU2CValve_Newtonsoft_Json_Linq_JTokenU3EU3E_Contains_m6C357744530DBB9D5D970B52D48E761619068EEF (JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21 * __this, KeyValuePair_2_t12EC1C8B4977DCEE8CF178DACA28A94CA2A77BCA ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JObject_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CSystem_StringU2CValve_Newtonsoft_Json_Linq_JTokenU3EU3E_Contains_m6C357744530DBB9D5D970B52D48E761619068EEF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * V_0 = NULL;
{
String_t* L_0 = KeyValuePair_2_get_Key_m45BFA059E51F33E95AF197929A0137E9D6259472_inline((KeyValuePair_2_t12EC1C8B4977DCEE8CF178DACA28A94CA2A77BCA *)(&___item0), /*hidden argument*/KeyValuePair_2_get_Key_m45BFA059E51F33E95AF197929A0137E9D6259472_RuntimeMethod_var);
JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * L_1 = JObject_Property_mEC5F823BEC18E9431F3D141136C0DF2479E40481(__this, L_0, /*hidden argument*/NULL);
V_0 = L_1;
JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * L_2 = V_0;
if (L_2)
{
goto IL_0013;
}
}
{
return (bool)0;
}
IL_0013:
{
JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * L_3 = V_0;
NullCheck(L_3);
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_4 = JProperty_get_Value_m21DE887CFE1475851AB5EACB2D7C91BDE5F70571(L_3, /*hidden argument*/NULL);
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_5 = KeyValuePair_2_get_Value_m9489FE438F11E13960A112B6A2D6C0C4E9C80CF9_inline((KeyValuePair_2_t12EC1C8B4977DCEE8CF178DACA28A94CA2A77BCA *)(&___item0), /*hidden argument*/KeyValuePair_2_get_Value_m9489FE438F11E13960A112B6A2D6C0C4E9C80CF9_RuntimeMethod_var);
return (bool)((((RuntimeObject*)(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 *)L_4) == ((RuntimeObject*)(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 *)L_5))? 1 : 0);
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JObject::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<System.String,Valve.Newtonsoft.Json.Linq.JToken>>.CopyTo(System.Collections.Generic.KeyValuePair`2<System.String,Valve.Newtonsoft.Json.Linq.JToken>[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JObject_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CSystem_StringU2CValve_Newtonsoft_Json_Linq_JTokenU3EU3E_CopyTo_m6B4FD36A3D23FA31F22C7F51FB687CD4AC5E4149 (JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21 * __this, KeyValuePair_2U5BU5D_t7A622914A381AA75E5CA5F22228AAEC514D3BE0D* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JObject_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CSystem_StringU2CValve_Newtonsoft_Json_Linq_JTokenU3EU3E_CopyTo_m6B4FD36A3D23FA31F22C7F51FB687CD4AC5E4149_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
RuntimeObject* V_1 = NULL;
JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * V_2 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
KeyValuePair_2U5BU5D_t7A622914A381AA75E5CA5F22228AAEC514D3BE0D* L_0 = ___array0;
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, _stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, JObject_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CSystem_StringU2CValve_Newtonsoft_Json_Linq_JTokenU3EU3E_CopyTo_m6B4FD36A3D23FA31F22C7F51FB687CD4AC5E4149_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___arrayIndex1;
if ((((int32_t)L_2) >= ((int32_t)0)))
{
goto IL_0022;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_3 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_3, _stringLiteralFA5342C4F12AD1A860B71DA5AD002761768999C3, _stringLiteralD7D80F57447BD43A65E2159D7EBC8A94B41526A5, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, JObject_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CSystem_StringU2CValve_Newtonsoft_Json_Linq_JTokenU3EU3E_CopyTo_m6B4FD36A3D23FA31F22C7F51FB687CD4AC5E4149_RuntimeMethod_var);
}
IL_0022:
{
int32_t L_4 = ___arrayIndex1;
KeyValuePair_2U5BU5D_t7A622914A381AA75E5CA5F22228AAEC514D3BE0D* L_5 = ___array0;
NullCheck(L_5);
if ((((int32_t)L_4) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_5)->max_length)))))))
{
goto IL_0036;
}
}
{
int32_t L_6 = ___arrayIndex1;
if (!L_6)
{
goto IL_0036;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_7 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_7, _stringLiteralCE1335811BB5BCD032ADF4A8C918ECA33CB80885, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, JObject_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CSystem_StringU2CValve_Newtonsoft_Json_Linq_JTokenU3EU3E_CopyTo_m6B4FD36A3D23FA31F22C7F51FB687CD4AC5E4149_RuntimeMethod_var);
}
IL_0036:
{
int32_t L_8 = JContainer_get_Count_mCB2E5A4D2368D8D4F78C0906FC1CCB1E1659E482(__this, /*hidden argument*/NULL);
KeyValuePair_2U5BU5D_t7A622914A381AA75E5CA5F22228AAEC514D3BE0D* L_9 = ___array0;
NullCheck(L_9);
int32_t L_10 = ___arrayIndex1;
if ((((int32_t)L_8) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length)))), (int32_t)L_10)))))
{
goto IL_004e;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_11 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_11, _stringLiteralF68763F54E7B6CD457783F62FE2C2A105A1AD9F4, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, JObject_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CSystem_StringU2CValve_Newtonsoft_Json_Linq_JTokenU3EU3E_CopyTo_m6B4FD36A3D23FA31F22C7F51FB687CD4AC5E4149_RuntimeMethod_var);
}
IL_004e:
{
V_0 = 0;
JPropertyKeyedCollection_t9EEDCB4FA22748C56AC9E4CD74AAA26F9D54A668 * L_12 = __this->get__properties_15();
NullCheck(L_12);
RuntimeObject* L_13 = Collection_1_GetEnumerator_m5EA56D38D8EE8ADBC32C0F009BBC6C4C5FC4CA95(L_12, /*hidden argument*/Collection_1_GetEnumerator_m5EA56D38D8EE8ADBC32C0F009BBC6C4C5FC4CA95_RuntimeMethod_var);
V_1 = L_13;
}
IL_005c:
try
{ // begin try (depth: 1)
{
goto IL_0088;
}
IL_005e:
{
RuntimeObject* L_14 = V_1;
NullCheck(L_14);
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_15 = InterfaceFuncInvoker0< JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<Valve.Newtonsoft.Json.Linq.JToken>::get_Current() */, IEnumerator_1_tDC9E800425EFE4DEEBAB153A333E0E385FE9C771_il2cpp_TypeInfo_var, L_14);
V_2 = ((JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF *)CastclassClass((RuntimeObject*)L_15, JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF_il2cpp_TypeInfo_var));
KeyValuePair_2U5BU5D_t7A622914A381AA75E5CA5F22228AAEC514D3BE0D* L_16 = ___array0;
int32_t L_17 = ___arrayIndex1;
int32_t L_18 = V_0;
JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * L_19 = V_2;
NullCheck(L_19);
String_t* L_20 = JProperty_get_Name_mB214D204AA250BF1F6F73A038028946203F592ED_inline(L_19, /*hidden argument*/NULL);
JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * L_21 = V_2;
NullCheck(L_21);
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_22 = JProperty_get_Value_m21DE887CFE1475851AB5EACB2D7C91BDE5F70571(L_21, /*hidden argument*/NULL);
KeyValuePair_2_t12EC1C8B4977DCEE8CF178DACA28A94CA2A77BCA L_23;
memset((&L_23), 0, sizeof(L_23));
KeyValuePair_2__ctor_mF3F60729C52A21BEFF75A44C41F46B3081B48BC1((&L_23), L_20, L_22, /*hidden argument*/KeyValuePair_2__ctor_mF3F60729C52A21BEFF75A44C41F46B3081B48BC1_RuntimeMethod_var);
NullCheck(L_16);
(L_16)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)L_18))), (KeyValuePair_2_t12EC1C8B4977DCEE8CF178DACA28A94CA2A77BCA )L_23);
int32_t L_24 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)1));
}
IL_0088:
{
RuntimeObject* L_25 = V_1;
NullCheck(L_25);
bool L_26 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_25);
if (L_26)
{
goto IL_005e;
}
}
IL_0090:
{
IL2CPP_LEAVE(0x9C, FINALLY_0092);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0092;
}
FINALLY_0092:
{ // begin finally (depth: 1)
{
RuntimeObject* L_27 = V_1;
if (!L_27)
{
goto IL_009b;
}
}
IL_0095:
{
RuntimeObject* L_28 = V_1;
NullCheck(L_28);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_28);
}
IL_009b:
{
IL2CPP_END_FINALLY(146)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(146)
{
IL2CPP_JUMP_TBL(0x9C, IL_009c)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_009c:
{
return;
}
}
// System.Boolean Valve.Newtonsoft.Json.Linq.JObject::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<System.String,Valve.Newtonsoft.Json.Linq.JToken>>.get_IsReadOnly()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JObject_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CSystem_StringU2CValve_Newtonsoft_Json_Linq_JTokenU3EU3E_get_IsReadOnly_mCDF8C0068A30E42F47616A6BD738E62DD555803C (JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// System.Boolean Valve.Newtonsoft.Json.Linq.JObject::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<System.String,Valve.Newtonsoft.Json.Linq.JToken>>.Remove(System.Collections.Generic.KeyValuePair`2<System.String,Valve.Newtonsoft.Json.Linq.JToken>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JObject_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CSystem_StringU2CValve_Newtonsoft_Json_Linq_JTokenU3EU3E_Remove_m71F8CBEFE1D42DED489418661939D6A034BB28B9 (JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21 * __this, KeyValuePair_2_t12EC1C8B4977DCEE8CF178DACA28A94CA2A77BCA ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JObject_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CSystem_StringU2CValve_Newtonsoft_Json_Linq_JTokenU3EU3E_Remove_m71F8CBEFE1D42DED489418661939D6A034BB28B9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
KeyValuePair_2_t12EC1C8B4977DCEE8CF178DACA28A94CA2A77BCA L_0 = ___item0;
bool L_1 = InterfaceFuncInvoker1< bool, KeyValuePair_2_t12EC1C8B4977DCEE8CF178DACA28A94CA2A77BCA >::Invoke(4 /* System.Boolean System.Collections.Generic.ICollection`1<System.Collections.Generic.KeyValuePair`2<System.String,Valve.Newtonsoft.Json.Linq.JToken>>::Contains(!0) */, ICollection_1_t2B4BA8E42280135B4F62515C9A1DC40EEF92D1D0_il2cpp_TypeInfo_var, __this, L_0);
if (L_1)
{
goto IL_000b;
}
}
{
return (bool)0;
}
IL_000b:
{
String_t* L_2 = KeyValuePair_2_get_Key_m45BFA059E51F33E95AF197929A0137E9D6259472_inline((KeyValuePair_2_t12EC1C8B4977DCEE8CF178DACA28A94CA2A77BCA *)(&___item0), /*hidden argument*/KeyValuePair_2_get_Key_m45BFA059E51F33E95AF197929A0137E9D6259472_RuntimeMethod_var);
InterfaceFuncInvoker1< bool, String_t* >::Invoke(6 /* System.Boolean System.Collections.Generic.IDictionary`2<System.String,Valve.Newtonsoft.Json.Linq.JToken>::Remove(!0) */, IDictionary_2_t76019BBF4DE2FADC5A16985EB663963F838CFCB9_il2cpp_TypeInfo_var, __this, L_2);
return (bool)1;
}
}
// System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.String,Valve.Newtonsoft.Json.Linq.JToken>> Valve.Newtonsoft.Json.Linq.JObject::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JObject_GetEnumerator_mC878042F431996441EB6D85176A9DE0D6EF71116 (JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JObject_GetEnumerator_mC878042F431996441EB6D85176A9DE0D6EF71116_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
U3CGetEnumeratorU3Ed__55_tAF5C1853556CCCC9CEF660623C26BDD211A03777 * L_0 = (U3CGetEnumeratorU3Ed__55_tAF5C1853556CCCC9CEF660623C26BDD211A03777 *)il2cpp_codegen_object_new(U3CGetEnumeratorU3Ed__55_tAF5C1853556CCCC9CEF660623C26BDD211A03777_il2cpp_TypeInfo_var);
U3CGetEnumeratorU3Ed__55__ctor_m554515660591E66C92F3E696226F7A6E349E0C65(L_0, 0, /*hidden argument*/NULL);
U3CGetEnumeratorU3Ed__55_tAF5C1853556CCCC9CEF660623C26BDD211A03777 * L_1 = L_0;
NullCheck(L_1);
L_1->set_U3CU3E4__this_2(__this);
return L_1;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JObject::OnPropertyChanged(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JObject_OnPropertyChanged_m7F7907D76B2305B308BC43E65D8949A34C57E3F4 (JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21 * __this, String_t* ___propertyName0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JObject_OnPropertyChanged_m7F7907D76B2305B308BC43E65D8949A34C57E3F4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
PropertyChangedEventHandler_t617E98E1876A8EB394D2B329340CE02D21FFFC82 * L_0 = __this->get_PropertyChanged_16();
if (!L_0)
{
goto IL_001a;
}
}
{
PropertyChangedEventHandler_t617E98E1876A8EB394D2B329340CE02D21FFFC82 * L_1 = __this->get_PropertyChanged_16();
String_t* L_2 = ___propertyName0;
PropertyChangedEventArgs_t90CF85B82F87D594F73F03364494C77592B11F46 * L_3 = (PropertyChangedEventArgs_t90CF85B82F87D594F73F03364494C77592B11F46 *)il2cpp_codegen_object_new(PropertyChangedEventArgs_t90CF85B82F87D594F73F03364494C77592B11F46_il2cpp_TypeInfo_var);
PropertyChangedEventArgs__ctor_mBC582C76F42CDEE455B350302FFDF687D135A9E2(L_3, L_2, /*hidden argument*/NULL);
NullCheck(L_1);
PropertyChangedEventHandler_Invoke_m7DB0AABF07302887DD3FEE589E1F585B4C768F57(L_1, __this, L_3, /*hidden argument*/NULL);
}
IL_001a:
{
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 Valve.Newtonsoft.Json.Linq.JObject_<GetEnumerator>d__55::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CGetEnumeratorU3Ed__55__ctor_m554515660591E66C92F3E696226F7A6E349E0C65 (U3CGetEnumeratorU3Ed__55_tAF5C1853556CCCC9CEF660623C26BDD211A03777 * __this, int32_t ___U3CU3E1__state0, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
int32_t L_0 = ___U3CU3E1__state0;
__this->set_U3CU3E1__state_0(L_0);
return;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JObject_<GetEnumerator>d__55::System.IDisposable.Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CGetEnumeratorU3Ed__55_System_IDisposable_Dispose_m3C1D12677D20FB533460944785276DFB04E8867E (U3CGetEnumeratorU3Ed__55_tAF5C1853556CCCC9CEF660623C26BDD211A03777 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 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);
{
int32_t L_0 = __this->get_U3CU3E1__state_0();
V_0 = L_0;
int32_t L_1 = V_0;
if ((((int32_t)L_1) == ((int32_t)((int32_t)-3))))
{
goto IL_0010;
}
}
{
int32_t L_2 = V_0;
if ((!(((uint32_t)L_2) == ((uint32_t)1))))
{
goto IL_001a;
}
}
IL_0010:
{
}
IL_0011:
try
{ // begin try (depth: 1)
IL2CPP_LEAVE(0x1A, FINALLY_0013);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0013;
}
FINALLY_0013:
{ // begin finally (depth: 1)
U3CGetEnumeratorU3Ed__55_U3CU3Em__Finally1_m923EB67AD63F8F966D85D16A3399D9DC00F02DFD(__this, /*hidden argument*/NULL);
IL2CPP_END_FINALLY(19)
} // end finally (depth: 1)
IL2CPP_CLEANUP(19)
{
IL2CPP_JUMP_TBL(0x1A, IL_001a)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_001a:
{
return;
}
}
// System.Boolean Valve.Newtonsoft.Json.Linq.JObject_<GetEnumerator>d__55::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CGetEnumeratorU3Ed__55_MoveNext_mAED3917FCF6ED31BC154AF348623CCC36CB674CD (U3CGetEnumeratorU3Ed__55_tAF5C1853556CCCC9CEF660623C26BDD211A03777 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CGetEnumeratorU3Ed__55_MoveNext_mAED3917FCF6ED31BC154AF348623CCC36CB674CD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
int32_t V_1 = 0;
JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21 * V_2 = NULL;
JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * 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) * 3);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
IL_0000:
try
{ // begin try (depth: 1)
{
int32_t L_0 = __this->get_U3CU3E1__state_0();
V_1 = L_0;
JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21 * L_1 = __this->get_U3CU3E4__this_2();
V_2 = L_1;
int32_t L_2 = V_1;
if (!L_2)
{
goto IL_001c;
}
}
IL_0011:
{
int32_t L_3 = V_1;
if ((((int32_t)L_3) == ((int32_t)1)))
{
goto IL_0071;
}
}
IL_0015:
{
V_0 = (bool)0;
goto IL_009e;
}
IL_001c:
{
__this->set_U3CU3E1__state_0((-1));
JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21 * L_4 = V_2;
NullCheck(L_4);
JPropertyKeyedCollection_t9EEDCB4FA22748C56AC9E4CD74AAA26F9D54A668 * L_5 = L_4->get__properties_15();
NullCheck(L_5);
RuntimeObject* L_6 = Collection_1_GetEnumerator_m5EA56D38D8EE8ADBC32C0F009BBC6C4C5FC4CA95(L_5, /*hidden argument*/Collection_1_GetEnumerator_m5EA56D38D8EE8ADBC32C0F009BBC6C4C5FC4CA95_RuntimeMethod_var);
__this->set_U3CU3E7__wrap1_3(L_6);
__this->set_U3CU3E1__state_0(((int32_t)-3));
goto IL_0079;
}
IL_003e:
{
RuntimeObject* L_7 = __this->get_U3CU3E7__wrap1_3();
NullCheck(L_7);
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_8 = InterfaceFuncInvoker0< JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<Valve.Newtonsoft.Json.Linq.JToken>::get_Current() */, IEnumerator_1_tDC9E800425EFE4DEEBAB153A333E0E385FE9C771_il2cpp_TypeInfo_var, L_7);
V_3 = ((JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF *)CastclassClass((RuntimeObject*)L_8, JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF_il2cpp_TypeInfo_var));
JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * L_9 = V_3;
NullCheck(L_9);
String_t* L_10 = JProperty_get_Name_mB214D204AA250BF1F6F73A038028946203F592ED_inline(L_9, /*hidden argument*/NULL);
JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * L_11 = V_3;
NullCheck(L_11);
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_12 = JProperty_get_Value_m21DE887CFE1475851AB5EACB2D7C91BDE5F70571(L_11, /*hidden argument*/NULL);
KeyValuePair_2_t12EC1C8B4977DCEE8CF178DACA28A94CA2A77BCA L_13;
memset((&L_13), 0, sizeof(L_13));
KeyValuePair_2__ctor_mF3F60729C52A21BEFF75A44C41F46B3081B48BC1((&L_13), L_10, L_12, /*hidden argument*/KeyValuePair_2__ctor_mF3F60729C52A21BEFF75A44C41F46B3081B48BC1_RuntimeMethod_var);
__this->set_U3CU3E2__current_1(L_13);
__this->set_U3CU3E1__state_0(1);
V_0 = (bool)1;
goto IL_009e;
}
IL_0071:
{
__this->set_U3CU3E1__state_0(((int32_t)-3));
}
IL_0079:
{
RuntimeObject* L_14 = __this->get_U3CU3E7__wrap1_3();
NullCheck(L_14);
bool L_15 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_14);
if (L_15)
{
goto IL_003e;
}
}
IL_0086:
{
U3CGetEnumeratorU3Ed__55_U3CU3Em__Finally1_m923EB67AD63F8F966D85D16A3399D9DC00F02DFD(__this, /*hidden argument*/NULL);
__this->set_U3CU3E7__wrap1_3((RuntimeObject*)NULL);
V_0 = (bool)0;
goto IL_009e;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FAULT_0097;
}
FAULT_0097:
{ // begin fault (depth: 1)
U3CGetEnumeratorU3Ed__55_System_IDisposable_Dispose_m3C1D12677D20FB533460944785276DFB04E8867E(__this, /*hidden argument*/NULL);
IL2CPP_END_FINALLY(151)
} // end fault
IL2CPP_CLEANUP(151)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_009e:
{
bool L_16 = V_0;
return L_16;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JObject_<GetEnumerator>d__55::<>m__Finally1()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CGetEnumeratorU3Ed__55_U3CU3Em__Finally1_m923EB67AD63F8F966D85D16A3399D9DC00F02DFD (U3CGetEnumeratorU3Ed__55_tAF5C1853556CCCC9CEF660623C26BDD211A03777 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CGetEnumeratorU3Ed__55_U3CU3Em__Finally1_m923EB67AD63F8F966D85D16A3399D9DC00F02DFD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
__this->set_U3CU3E1__state_0((-1));
RuntimeObject* L_0 = __this->get_U3CU3E7__wrap1_3();
if (!L_0)
{
goto IL_001a;
}
}
{
RuntimeObject* L_1 = __this->get_U3CU3E7__wrap1_3();
NullCheck(L_1);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_1);
}
IL_001a:
{
return;
}
}
// System.Collections.Generic.KeyValuePair`2<System.String,Valve.Newtonsoft.Json.Linq.JToken> Valve.Newtonsoft.Json.Linq.JObject_<GetEnumerator>d__55::System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<System.String,Valve.Newtonsoft.Json.Linq.JToken>>.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t12EC1C8B4977DCEE8CF178DACA28A94CA2A77BCA U3CGetEnumeratorU3Ed__55_System_Collections_Generic_IEnumeratorU3CSystem_Collections_Generic_KeyValuePairU3CSystem_StringU2CValve_Newtonsoft_Json_Linq_JTokenU3EU3E_get_Current_mF9AD6CEE7FF84FAA941C0890712637F0F4F85DA3 (U3CGetEnumeratorU3Ed__55_tAF5C1853556CCCC9CEF660623C26BDD211A03777 * __this, const RuntimeMethod* method)
{
{
KeyValuePair_2_t12EC1C8B4977DCEE8CF178DACA28A94CA2A77BCA L_0 = __this->get_U3CU3E2__current_1();
return L_0;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JObject_<GetEnumerator>d__55::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CGetEnumeratorU3Ed__55_System_Collections_IEnumerator_Reset_m8592FD9B229A18F7B2FD32ED3622AA07DD973582 (U3CGetEnumeratorU3Ed__55_tAF5C1853556CCCC9CEF660623C26BDD211A03777 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CGetEnumeratorU3Ed__55_System_Collections_IEnumerator_Reset_m8592FD9B229A18F7B2FD32ED3622AA07DD973582_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mA121DE1CAC8F25277DEB489DC7771209D91CAE33(L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, U3CGetEnumeratorU3Ed__55_System_Collections_IEnumerator_Reset_m8592FD9B229A18F7B2FD32ED3622AA07DD973582_RuntimeMethod_var);
}
}
// System.Object Valve.Newtonsoft.Json.Linq.JObject_<GetEnumerator>d__55::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * U3CGetEnumeratorU3Ed__55_System_Collections_IEnumerator_get_Current_m8AA68DFDEBB7362E6EDC250A55471AA34AC54D61 (U3CGetEnumeratorU3Ed__55_tAF5C1853556CCCC9CEF660623C26BDD211A03777 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CGetEnumeratorU3Ed__55_System_Collections_IEnumerator_get_Current_m8AA68DFDEBB7362E6EDC250A55471AA34AC54D61_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
KeyValuePair_2_t12EC1C8B4977DCEE8CF178DACA28A94CA2A77BCA L_0 = __this->get_U3CU3E2__current_1();
KeyValuePair_2_t12EC1C8B4977DCEE8CF178DACA28A94CA2A77BCA L_1 = L_0;
RuntimeObject * L_2 = Box(KeyValuePair_2_t12EC1C8B4977DCEE8CF178DACA28A94CA2A77BCA_il2cpp_TypeInfo_var, &L_1);
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.Collections.Generic.IList`1<Valve.Newtonsoft.Json.Linq.JToken> Valve.Newtonsoft.Json.Linq.JProperty::get_ChildrenTokens()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JProperty_get_ChildrenTokens_m51A15A0E3585499B3F2A2F6EA429A182A45E8D3B (JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * __this, const RuntimeMethod* method)
{
{
JPropertyList_t134608E64E62337A93C6668B1266F077ABBA87A7 * L_0 = __this->get__content_15();
return L_0;
}
}
// System.String Valve.Newtonsoft.Json.Linq.JProperty::get_Name()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JProperty_get_Name_mB214D204AA250BF1F6F73A038028946203F592ED (JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get__name_16();
return L_0;
}
}
// Valve.Newtonsoft.Json.Linq.JToken Valve.Newtonsoft.Json.Linq.JProperty::get_Value()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * JProperty_get_Value_m21DE887CFE1475851AB5EACB2D7C91BDE5F70571 (JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * __this, const RuntimeMethod* method)
{
{
JPropertyList_t134608E64E62337A93C6668B1266F077ABBA87A7 * L_0 = __this->get__content_15();
NullCheck(L_0);
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_1 = L_0->get__token_0();
return L_1;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JProperty::set_Value(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JProperty_set_Value_mBB9E014490FCA737CD534BA06585F9B86B3636AA (JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * __this, JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method)
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * V_0 = NULL;
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * G_B2_0 = NULL;
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * G_B1_0 = NULL;
{
JContainer_CheckReentrancy_mAF327BEEBF2AB369F2BAB29B24E969EB3AE4BA54(__this, /*hidden argument*/NULL);
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_0 = ___value0;
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_1 = L_0;
G_B1_0 = L_1;
if (L_1)
{
G_B2_0 = L_1;
goto IL_0010;
}
}
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_2 = JValue_CreateNull_m3CCD3BCA725D2424F3C62FA811D56AD35DCD1066(/*hidden argument*/NULL);
G_B2_0 = ((JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 *)(L_2));
}
IL_0010:
{
V_0 = G_B2_0;
JPropertyList_t134608E64E62337A93C6668B1266F077ABBA87A7 * L_3 = __this->get__content_15();
NullCheck(L_3);
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_4 = L_3->get__token_0();
if (L_4)
{
goto IL_0028;
}
}
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_5 = V_0;
VirtActionInvoker3< int32_t, JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 *, bool >::Invoke(46 /* System.Void Valve.Newtonsoft.Json.Linq.JContainer::InsertItem(System.Int32,Valve.Newtonsoft.Json.Linq.JToken,System.Boolean) */, __this, 0, L_5, (bool)0);
return;
}
IL_0028:
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_6 = V_0;
VirtActionInvoker2< int32_t, JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * >::Invoke(50 /* System.Void Valve.Newtonsoft.Json.Linq.JContainer::SetItem(System.Int32,Valve.Newtonsoft.Json.Linq.JToken) */, __this, 0, L_6);
return;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JProperty::.ctor(Valve.Newtonsoft.Json.Linq.JProperty)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JProperty__ctor_m25284D52407BE7C243C3050B71C802F7FE02E6AB (JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * __this, JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * ___other0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JProperty__ctor_m25284D52407BE7C243C3050B71C802F7FE02E6AB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
JPropertyList_t134608E64E62337A93C6668B1266F077ABBA87A7 * L_0 = (JPropertyList_t134608E64E62337A93C6668B1266F077ABBA87A7 *)il2cpp_codegen_object_new(JPropertyList_t134608E64E62337A93C6668B1266F077ABBA87A7_il2cpp_TypeInfo_var);
JPropertyList__ctor_m54C446E38B7BA765A9810A494C43DCF834BE8615(L_0, /*hidden argument*/NULL);
__this->set__content_15(L_0);
JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * L_1 = ___other0;
JContainer__ctor_m54AFFDE4AD8BFD964CE72C893D5CC7BC9F8CBE90(__this, L_1, /*hidden argument*/NULL);
JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * L_2 = ___other0;
NullCheck(L_2);
String_t* L_3 = JProperty_get_Name_mB214D204AA250BF1F6F73A038028946203F592ED_inline(L_2, /*hidden argument*/NULL);
__this->set__name_16(L_3);
return;
}
}
// Valve.Newtonsoft.Json.Linq.JToken Valve.Newtonsoft.Json.Linq.JProperty::GetItem(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * JProperty_GetItem_mF994E2CC66016E946B8B77FEE02E03000E38E66C (JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JProperty_GetItem_mF994E2CC66016E946B8B77FEE02E03000E38E66C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___index0;
if (!L_0)
{
goto IL_0009;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_1 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m215F35137EDD190A037E2E9BDA3BF5DC056FD7C3(L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, JProperty_GetItem_mF994E2CC66016E946B8B77FEE02E03000E38E66C_RuntimeMethod_var);
}
IL_0009:
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_2 = JProperty_get_Value_m21DE887CFE1475851AB5EACB2D7C91BDE5F70571(__this, /*hidden argument*/NULL);
return L_2;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JProperty::SetItem(System.Int32,Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JProperty_SetItem_mB24AF712A535C283C2E195062D0EB24925AF3DF8 (JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * __this, int32_t ___index0, JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JProperty_SetItem_mB24AF712A535C283C2E195062D0EB24925AF3DF8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___index0;
if (!L_0)
{
goto IL_0009;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_1 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m215F35137EDD190A037E2E9BDA3BF5DC056FD7C3(L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, JProperty_SetItem_mB24AF712A535C283C2E195062D0EB24925AF3DF8_RuntimeMethod_var);
}
IL_0009:
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_2 = JProperty_get_Value_m21DE887CFE1475851AB5EACB2D7C91BDE5F70571(__this, /*hidden argument*/NULL);
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_3 = ___item1;
bool L_4 = JContainer_IsTokenUnchanged_mF79EB885D6A4D06837FE4636230D656CB01907CE(L_2, L_3, /*hidden argument*/NULL);
if (!L_4)
{
goto IL_0018;
}
}
{
return;
}
IL_0018:
{
JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * L_5 = JToken_get_Parent_m68142FEB329F72F2258F55D7A790C43E7E823F54_inline(__this, /*hidden argument*/NULL);
if (!L_5)
{
goto IL_0031;
}
}
{
JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * L_6 = JToken_get_Parent_m68142FEB329F72F2258F55D7A790C43E7E823F54_inline(__this, /*hidden argument*/NULL);
NullCheck(((JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21 *)CastclassClass((RuntimeObject*)L_6, JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21_il2cpp_TypeInfo_var)));
JObject_InternalPropertyChanging_m309C03018467BBBA00844368ABBC50EDC04F7901(((JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21 *)CastclassClass((RuntimeObject*)L_6, JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21_il2cpp_TypeInfo_var)), __this, /*hidden argument*/NULL);
}
IL_0031:
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_7 = ___item1;
JContainer_SetItem_mD87FDD449FAC5704E1F14E0A6C243C18BDE3AFBC(__this, 0, L_7, /*hidden argument*/NULL);
JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * L_8 = JToken_get_Parent_m68142FEB329F72F2258F55D7A790C43E7E823F54_inline(__this, /*hidden argument*/NULL);
if (!L_8)
{
goto IL_0052;
}
}
{
JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * L_9 = JToken_get_Parent_m68142FEB329F72F2258F55D7A790C43E7E823F54_inline(__this, /*hidden argument*/NULL);
NullCheck(((JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21 *)CastclassClass((RuntimeObject*)L_9, JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21_il2cpp_TypeInfo_var)));
JObject_InternalPropertyChanged_mE24B885ECDE4741DFDFB719B13366F0FDADEA2EB(((JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21 *)CastclassClass((RuntimeObject*)L_9, JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21_il2cpp_TypeInfo_var)), __this, /*hidden argument*/NULL);
}
IL_0052:
{
return;
}
}
// System.Boolean Valve.Newtonsoft.Json.Linq.JProperty::RemoveItem(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JProperty_RemoveItem_mB24C41E81A7456A7D13924F75D22BA93D5FC43C1 (JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * __this, JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JProperty_RemoveItem_mB24C41E81A7456A7D13924F75D22BA93D5FC43C1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_0 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_1 = { reinterpret_cast<intptr_t> (JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_2 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_1, /*hidden argument*/NULL);
String_t* L_3 = StringUtils_FormatWith_mA244260995FC801D82F22EC897F3F8BEB8649583(_stringLiteralDA4951CA6674AEEDC2F97B5C37DCF6FDFA4EDF6D, L_0, L_2, /*hidden argument*/NULL);
JsonException_tB1AABB3C8AE18D781A8A9A14CB03AF7AFEA33928 * L_4 = (JsonException_tB1AABB3C8AE18D781A8A9A14CB03AF7AFEA33928 *)il2cpp_codegen_object_new(JsonException_tB1AABB3C8AE18D781A8A9A14CB03AF7AFEA33928_il2cpp_TypeInfo_var);
JsonException__ctor_m6AA74CB38DE6808C894C51C26CA5FB64B861204A(L_4, L_3, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, JProperty_RemoveItem_mB24C41E81A7456A7D13924F75D22BA93D5FC43C1_RuntimeMethod_var);
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JProperty::RemoveItemAt(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JProperty_RemoveItemAt_mCB20DE864A5DDDC7F68F6EAC0105D5717AFA8774 (JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JProperty_RemoveItemAt_mCB20DE864A5DDDC7F68F6EAC0105D5717AFA8774_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_0 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_1 = { reinterpret_cast<intptr_t> (JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_2 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_1, /*hidden argument*/NULL);
String_t* L_3 = StringUtils_FormatWith_mA244260995FC801D82F22EC897F3F8BEB8649583(_stringLiteralDA4951CA6674AEEDC2F97B5C37DCF6FDFA4EDF6D, L_0, L_2, /*hidden argument*/NULL);
JsonException_tB1AABB3C8AE18D781A8A9A14CB03AF7AFEA33928 * L_4 = (JsonException_tB1AABB3C8AE18D781A8A9A14CB03AF7AFEA33928 *)il2cpp_codegen_object_new(JsonException_tB1AABB3C8AE18D781A8A9A14CB03AF7AFEA33928_il2cpp_TypeInfo_var);
JsonException__ctor_m6AA74CB38DE6808C894C51C26CA5FB64B861204A(L_4, L_3, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, JProperty_RemoveItemAt_mCB20DE864A5DDDC7F68F6EAC0105D5717AFA8774_RuntimeMethod_var);
}
}
// System.Int32 Valve.Newtonsoft.Json.Linq.JProperty::IndexOfItem(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JProperty_IndexOfItem_m53F16E34FD7E4C5C0C4650C025860A610AFC296F (JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * __this, JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___item0, const RuntimeMethod* method)
{
{
JPropertyList_t134608E64E62337A93C6668B1266F077ABBA87A7 * L_0 = __this->get__content_15();
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_1 = ___item0;
NullCheck(L_0);
int32_t L_2 = JPropertyList_IndexOf_m95CFD1504BC9EDA47B597C063630BA895B2CDC23(L_0, L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JProperty::InsertItem(System.Int32,Valve.Newtonsoft.Json.Linq.JToken,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JProperty_InsertItem_m78BE061EAB61FE997A7F1DD9303641C3FA123171 (JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * __this, int32_t ___index0, JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___item1, bool ___skipParentCheck2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JProperty_InsertItem_m78BE061EAB61FE997A7F1DD9303641C3FA123171_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_0 = ___item1;
if (!L_0)
{
goto IL_000d;
}
}
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_1 = ___item1;
NullCheck(L_1);
int32_t L_2 = VirtFuncInvoker0< int32_t >::Invoke(11 /* Valve.Newtonsoft.Json.Linq.JTokenType Valve.Newtonsoft.Json.Linq.JToken::get_Type() */, L_1);
if ((!(((uint32_t)L_2) == ((uint32_t)5))))
{
goto IL_000d;
}
}
{
return;
}
IL_000d:
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_3 = JProperty_get_Value_m21DE887CFE1475851AB5EACB2D7C91BDE5F70571(__this, /*hidden argument*/NULL);
if (!L_3)
{
goto IL_0034;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_4 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_5 = { reinterpret_cast<intptr_t> (JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_6 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_5, /*hidden argument*/NULL);
String_t* L_7 = StringUtils_FormatWith_mA244260995FC801D82F22EC897F3F8BEB8649583(_stringLiteral6D3A703C6D4FBFE631CBD81FB9D114896F8F086E, L_4, L_6, /*hidden argument*/NULL);
JsonException_tB1AABB3C8AE18D781A8A9A14CB03AF7AFEA33928 * L_8 = (JsonException_tB1AABB3C8AE18D781A8A9A14CB03AF7AFEA33928 *)il2cpp_codegen_object_new(JsonException_tB1AABB3C8AE18D781A8A9A14CB03AF7AFEA33928_il2cpp_TypeInfo_var);
JsonException__ctor_m6AA74CB38DE6808C894C51C26CA5FB64B861204A(L_8, L_7, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, JProperty_InsertItem_m78BE061EAB61FE997A7F1DD9303641C3FA123171_RuntimeMethod_var);
}
IL_0034:
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_9 = ___item1;
JContainer_InsertItem_m6D0281DACCAF85E972DC13B6BDA70FDFF2C62A16(__this, 0, L_9, (bool)0, /*hidden argument*/NULL);
return;
}
}
// System.Boolean Valve.Newtonsoft.Json.Linq.JProperty::ContainsItem(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JProperty_ContainsItem_m39ABB2D6B85C1AE8CCC4D7FBCE5527B7B63FC9A6 (JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * __this, JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___item0, const RuntimeMethod* method)
{
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_0 = JProperty_get_Value_m21DE887CFE1475851AB5EACB2D7C91BDE5F70571(__this, /*hidden argument*/NULL);
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_1 = ___item0;
return (bool)((((RuntimeObject*)(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 *)L_0) == ((RuntimeObject*)(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 *)L_1))? 1 : 0);
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JProperty::ClearItems()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JProperty_ClearItems_mF937AD6D0AB373C6B775AC14A37C6DBEC42F0FFD (JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JProperty_ClearItems_mF937AD6D0AB373C6B775AC14A37C6DBEC42F0FFD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_0 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_1 = { reinterpret_cast<intptr_t> (JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_2 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_1, /*hidden argument*/NULL);
String_t* L_3 = StringUtils_FormatWith_mA244260995FC801D82F22EC897F3F8BEB8649583(_stringLiteralDA4951CA6674AEEDC2F97B5C37DCF6FDFA4EDF6D, L_0, L_2, /*hidden argument*/NULL);
JsonException_tB1AABB3C8AE18D781A8A9A14CB03AF7AFEA33928 * L_4 = (JsonException_tB1AABB3C8AE18D781A8A9A14CB03AF7AFEA33928 *)il2cpp_codegen_object_new(JsonException_tB1AABB3C8AE18D781A8A9A14CB03AF7AFEA33928_il2cpp_TypeInfo_var);
JsonException__ctor_m6AA74CB38DE6808C894C51C26CA5FB64B861204A(L_4, L_3, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, JProperty_ClearItems_mF937AD6D0AB373C6B775AC14A37C6DBEC42F0FFD_RuntimeMethod_var);
}
}
// Valve.Newtonsoft.Json.Linq.JToken Valve.Newtonsoft.Json.Linq.JProperty::CloneToken()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * JProperty_CloneToken_m1DA91D11A3D72B9DA0F274AA83E7FC3FD1903610 (JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JProperty_CloneToken_m1DA91D11A3D72B9DA0F274AA83E7FC3FD1903610_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * L_0 = (JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF *)il2cpp_codegen_object_new(JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF_il2cpp_TypeInfo_var);
JProperty__ctor_m25284D52407BE7C243C3050B71C802F7FE02E6AB(L_0, __this, /*hidden argument*/NULL);
return L_0;
}
}
// Valve.Newtonsoft.Json.Linq.JTokenType Valve.Newtonsoft.Json.Linq.JProperty::get_Type()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JProperty_get_Type_m6DE8D1599BAA7CC05F3DAD46F22D6B074F9D7F6A (JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * __this, const RuntimeMethod* method)
{
{
return (int32_t)(4);
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JProperty::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JProperty__ctor_mA6F2A9891CC8E62C2DA933667DCC34E3CAD58D30 (JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * __this, String_t* ___name0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JProperty__ctor_mA6F2A9891CC8E62C2DA933667DCC34E3CAD58D30_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
JPropertyList_t134608E64E62337A93C6668B1266F077ABBA87A7 * L_0 = (JPropertyList_t134608E64E62337A93C6668B1266F077ABBA87A7 *)il2cpp_codegen_object_new(JPropertyList_t134608E64E62337A93C6668B1266F077ABBA87A7_il2cpp_TypeInfo_var);
JPropertyList__ctor_m54C446E38B7BA765A9810A494C43DCF834BE8615(L_0, /*hidden argument*/NULL);
__this->set__content_15(L_0);
JContainer__ctor_m806125BD93FAD395697010C35D9C9E7FDD72C85D(__this, /*hidden argument*/NULL);
String_t* L_1 = ___name0;
ValidationUtils_ArgumentNotNull_mA6823FB6A1184537A467BD3BAFA6C06126EF7AE9(L_1, _stringLiteral6AE999552A0D2DCA14D62E2BC8B764D377B1DD6C, /*hidden argument*/NULL);
String_t* L_2 = ___name0;
__this->set__name_16(L_2);
return;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JProperty::.ctor(System.String,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JProperty__ctor_m2EB3FF0AC7616ACC0AF2972AD0141CEFA72FB6E5 (JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * __this, String_t* ___name0, RuntimeObject * ___content1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JProperty__ctor_m2EB3FF0AC7616ACC0AF2972AD0141CEFA72FB6E5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * G_B2_0 = NULL;
JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * G_B1_0 = NULL;
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * G_B3_0 = NULL;
JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * G_B3_1 = NULL;
{
JPropertyList_t134608E64E62337A93C6668B1266F077ABBA87A7 * L_0 = (JPropertyList_t134608E64E62337A93C6668B1266F077ABBA87A7 *)il2cpp_codegen_object_new(JPropertyList_t134608E64E62337A93C6668B1266F077ABBA87A7_il2cpp_TypeInfo_var);
JPropertyList__ctor_m54C446E38B7BA765A9810A494C43DCF834BE8615(L_0, /*hidden argument*/NULL);
__this->set__content_15(L_0);
JContainer__ctor_m806125BD93FAD395697010C35D9C9E7FDD72C85D(__this, /*hidden argument*/NULL);
String_t* L_1 = ___name0;
ValidationUtils_ArgumentNotNull_mA6823FB6A1184537A467BD3BAFA6C06126EF7AE9(L_1, _stringLiteral6AE999552A0D2DCA14D62E2BC8B764D377B1DD6C, /*hidden argument*/NULL);
String_t* L_2 = ___name0;
__this->set__name_16(L_2);
RuntimeObject * L_3 = ___content1;
bool L_4 = JContainer_IsMultiContent_mA7CCA5F8B591B81E90ACBF6F95B07F2FE920C1E2(__this, L_3, /*hidden argument*/NULL);
G_B1_0 = __this;
if (L_4)
{
G_B2_0 = __this;
goto IL_0035;
}
}
{
RuntimeObject * L_5 = ___content1;
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_6 = JContainer_CreateFromContent_m6C1B7EED8B07C91FDAEED4C1AD3C22ABA8F2B6EC(L_5, /*hidden argument*/NULL);
G_B3_0 = L_6;
G_B3_1 = G_B1_0;
goto IL_003b;
}
IL_0035:
{
RuntimeObject * L_7 = ___content1;
JArray_t8AE8A8AB34EFB9A770BC34AB9EA47BE9DC7F45C2 * L_8 = (JArray_t8AE8A8AB34EFB9A770BC34AB9EA47BE9DC7F45C2 *)il2cpp_codegen_object_new(JArray_t8AE8A8AB34EFB9A770BC34AB9EA47BE9DC7F45C2_il2cpp_TypeInfo_var);
JArray__ctor_m537FC96A0306E2BB2EFEB4203E546E3FA5C95FF7(L_8, L_7, /*hidden argument*/NULL);
G_B3_0 = ((JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 *)(L_8));
G_B3_1 = G_B2_0;
}
IL_003b:
{
NullCheck(G_B3_1);
JProperty_set_Value_mBB9E014490FCA737CD534BA06585F9B86B3636AA(G_B3_1, G_B3_0, /*hidden argument*/NULL);
return;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JProperty::WriteTo(Valve.Newtonsoft.Json.JsonWriter,Valve.Newtonsoft.Json.JsonConverter[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JProperty_WriteTo_m5F0A8F8B533F25C9F502EAFB362585BF06624DA3 (JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * __this, JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * ___writer0, JsonConverterU5BU5D_tFCEA4D4687200F08D8F41AFF4CDC7EE5E08AACAB* ___converters1, const RuntimeMethod* method)
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * V_0 = NULL;
{
JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * L_0 = ___writer0;
String_t* L_1 = __this->get__name_16();
NullCheck(L_0);
VirtActionInvoker1< String_t* >::Invoke(13 /* System.Void Valve.Newtonsoft.Json.JsonWriter::WritePropertyName(System.String) */, L_0, L_1);
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_2 = JProperty_get_Value_m21DE887CFE1475851AB5EACB2D7C91BDE5F70571(__this, /*hidden argument*/NULL);
V_0 = L_2;
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_3 = V_0;
if (!L_3)
{
goto IL_001f;
}
}
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_4 = V_0;
JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * L_5 = ___writer0;
JsonConverterU5BU5D_tFCEA4D4687200F08D8F41AFF4CDC7EE5E08AACAB* L_6 = ___converters1;
NullCheck(L_4);
VirtActionInvoker2< JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E *, JsonConverterU5BU5D_tFCEA4D4687200F08D8F41AFF4CDC7EE5E08AACAB* >::Invoke(16 /* System.Void Valve.Newtonsoft.Json.Linq.JToken::WriteTo(Valve.Newtonsoft.Json.JsonWriter,Valve.Newtonsoft.Json.JsonConverter[]) */, L_4, L_5, L_6);
return;
}
IL_001f:
{
JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * L_7 = ___writer0;
NullCheck(L_7);
VirtActionInvoker0::Invoke(21 /* System.Void Valve.Newtonsoft.Json.JsonWriter::WriteNull() */, L_7);
return;
}
}
// Valve.Newtonsoft.Json.Linq.JProperty Valve.Newtonsoft.Json.Linq.JProperty::Load(Valve.Newtonsoft.Json.JsonReader,Valve.Newtonsoft.Json.Linq.JsonLoadSettings)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * JProperty_Load_mDAD45AC264E953A8903F590A7ACC96A1C6F62FDF (JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C * ___reader0, JsonLoadSettings_tB5261F5FE452665393A12B96A793FE21DF91D45A * ___settings1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JProperty_Load_mDAD45AC264E953A8903F590A7ACC96A1C6F62FDF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C * L_0 = ___reader0;
NullCheck(L_0);
int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(5 /* Valve.Newtonsoft.Json.JsonToken Valve.Newtonsoft.Json.JsonReader::get_TokenType() */, L_0);
if (L_1)
{
goto IL_001c;
}
}
{
JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C * L_2 = ___reader0;
NullCheck(L_2);
bool L_3 = VirtFuncInvoker0< bool >::Invoke(10 /* System.Boolean Valve.Newtonsoft.Json.JsonReader::Read() */, L_2);
if (L_3)
{
goto IL_001c;
}
}
{
JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C * L_4 = ___reader0;
JsonReaderException_t1C6240BBE2D8125B80F7E72F0EE572194B3263DC * L_5 = JsonReaderException_Create_m18EFA18A35D7F56A561A4590598A68B2EABD92DA(L_4, _stringLiteral8E8B0286F169892749E8F773C4DEA9E85E8F6F34, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, JProperty_Load_mDAD45AC264E953A8903F590A7ACC96A1C6F62FDF_RuntimeMethod_var);
}
IL_001c:
{
JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C * L_6 = ___reader0;
NullCheck(L_6);
JsonReader_MoveToContent_mC731E1F4E1490266724B14F0A196A2F3DD74E07C(L_6, /*hidden argument*/NULL);
JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C * L_7 = ___reader0;
NullCheck(L_7);
int32_t L_8 = VirtFuncInvoker0< int32_t >::Invoke(5 /* Valve.Newtonsoft.Json.JsonToken Valve.Newtonsoft.Json.JsonReader::get_TokenType() */, L_7);
if ((((int32_t)L_8) == ((int32_t)4)))
{
goto IL_004d;
}
}
{
JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C * L_9 = ___reader0;
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_10 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C * L_11 = ___reader0;
NullCheck(L_11);
int32_t L_12 = VirtFuncInvoker0< int32_t >::Invoke(5 /* Valve.Newtonsoft.Json.JsonToken Valve.Newtonsoft.Json.JsonReader::get_TokenType() */, L_11);
int32_t L_13 = L_12;
RuntimeObject * L_14 = Box(JsonToken_t0C71FBC985C653C19D3A1CA63373FC84B6F13406_il2cpp_TypeInfo_var, &L_13);
String_t* L_15 = StringUtils_FormatWith_mA244260995FC801D82F22EC897F3F8BEB8649583(_stringLiteralF2E23575AA15ED29EC76FB73B4E08DE11CCBCF74, L_10, L_14, /*hidden argument*/NULL);
JsonReaderException_t1C6240BBE2D8125B80F7E72F0EE572194B3263DC * L_16 = JsonReaderException_Create_m18EFA18A35D7F56A561A4590598A68B2EABD92DA(L_9, L_15, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_16, JProperty_Load_mDAD45AC264E953A8903F590A7ACC96A1C6F62FDF_RuntimeMethod_var);
}
IL_004d:
{
JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C * L_17 = ___reader0;
NullCheck(L_17);
RuntimeObject * L_18 = VirtFuncInvoker0< RuntimeObject * >::Invoke(6 /* System.Object Valve.Newtonsoft.Json.JsonReader::get_Value() */, L_17);
JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * L_19 = (JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF *)il2cpp_codegen_object_new(JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF_il2cpp_TypeInfo_var);
JProperty__ctor_mA6F2A9891CC8E62C2DA933667DCC34E3CAD58D30(L_19, ((String_t*)CastclassSealed((RuntimeObject*)L_18, String_t_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * L_20 = L_19;
JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C * L_21 = ___reader0;
JsonLoadSettings_tB5261F5FE452665393A12B96A793FE21DF91D45A * L_22 = ___settings1;
NullCheck(L_20);
JToken_SetLineInfo_m0315B529EF0753213FB16C33647C9F2539B64193(L_20, ((RuntimeObject*)IsInst((RuntimeObject*)L_21, IJsonLineInfo_t7E81AAC43FB40592D509A17DBF8FAABAAE6AC29D_il2cpp_TypeInfo_var)), L_22, /*hidden argument*/NULL);
JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * L_23 = L_20;
JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C * L_24 = ___reader0;
JsonLoadSettings_tB5261F5FE452665393A12B96A793FE21DF91D45A * L_25 = ___settings1;
NullCheck(L_23);
JContainer_ReadTokenFrom_m9F2F0DC444C28738C14E6C38BA5DCB71D4F900C6(L_23, L_24, L_25, /*hidden argument*/NULL);
return L_23;
}
}
#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.Collections.Generic.IEnumerator`1<Valve.Newtonsoft.Json.Linq.JToken> Valve.Newtonsoft.Json.Linq.JProperty_JPropertyList::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JPropertyList_GetEnumerator_mA8DB59314C0CF0952CD07FBE30F8B966952648AE (JPropertyList_t134608E64E62337A93C6668B1266F077ABBA87A7 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JPropertyList_GetEnumerator_mA8DB59314C0CF0952CD07FBE30F8B966952648AE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
U3CGetEnumeratorU3Ed__1_tC1FEADB7666AE584966BE3173BB361B41F66278B * L_0 = (U3CGetEnumeratorU3Ed__1_tC1FEADB7666AE584966BE3173BB361B41F66278B *)il2cpp_codegen_object_new(U3CGetEnumeratorU3Ed__1_tC1FEADB7666AE584966BE3173BB361B41F66278B_il2cpp_TypeInfo_var);
U3CGetEnumeratorU3Ed__1__ctor_m91764E42D1685BD1F138059EE4AA3324A883E5D3(L_0, 0, /*hidden argument*/NULL);
U3CGetEnumeratorU3Ed__1_tC1FEADB7666AE584966BE3173BB361B41F66278B * L_1 = L_0;
NullCheck(L_1);
L_1->set_U3CU3E4__this_2(__this);
return L_1;
}
}
// System.Collections.IEnumerator Valve.Newtonsoft.Json.Linq.JProperty_JPropertyList::System.Collections.IEnumerable.GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JPropertyList_System_Collections_IEnumerable_GetEnumerator_m0DDCFA44A13936C6F6027C966A5EA42AF797F85E (JPropertyList_t134608E64E62337A93C6668B1266F077ABBA87A7 * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = JPropertyList_GetEnumerator_mA8DB59314C0CF0952CD07FBE30F8B966952648AE(__this, /*hidden argument*/NULL);
return L_0;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JProperty_JPropertyList::Add(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JPropertyList_Add_m600775D441BE12E1A6875A7D9A12F426AE9536B8 (JPropertyList_t134608E64E62337A93C6668B1266F077ABBA87A7 * __this, JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___item0, const RuntimeMethod* method)
{
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_0 = ___item0;
__this->set__token_0(L_0);
return;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JProperty_JPropertyList::Clear()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JPropertyList_Clear_mA57779B22E8DD106C2409675870E021B3172A042 (JPropertyList_t134608E64E62337A93C6668B1266F077ABBA87A7 * __this, const RuntimeMethod* method)
{
{
__this->set__token_0((JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 *)NULL);
return;
}
}
// System.Boolean Valve.Newtonsoft.Json.Linq.JProperty_JPropertyList::Contains(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JPropertyList_Contains_m32F1189C8BC4BAC21A77A8DBADB992F627BA440E (JPropertyList_t134608E64E62337A93C6668B1266F077ABBA87A7 * __this, JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___item0, const RuntimeMethod* method)
{
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_0 = __this->get__token_0();
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_1 = ___item0;
return (bool)((((RuntimeObject*)(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 *)L_0) == ((RuntimeObject*)(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 *)L_1))? 1 : 0);
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JProperty_JPropertyList::CopyTo(Valve.Newtonsoft.Json.Linq.JToken[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JPropertyList_CopyTo_m83C115DFE64A09FF09F2AC484D3C7BFBBF56A808 (JPropertyList_t134608E64E62337A93C6668B1266F077ABBA87A7 * __this, JTokenU5BU5D_t4E50BA12BFD33E2099BB21C26BC05B63AE096327* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_0 = __this->get__token_0();
if (!L_0)
{
goto IL_0011;
}
}
{
JTokenU5BU5D_t4E50BA12BFD33E2099BB21C26BC05B63AE096327* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_3 = __this->get__token_0();
NullCheck(L_1);
ArrayElementTypeCheck (L_1, L_3);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(L_2), (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 *)L_3);
}
IL_0011:
{
return;
}
}
// System.Boolean Valve.Newtonsoft.Json.Linq.JProperty_JPropertyList::Remove(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JPropertyList_Remove_mECB1587C1C66AC0055144ED89267E3A38C0B4CF7 (JPropertyList_t134608E64E62337A93C6668B1266F077ABBA87A7 * __this, JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___item0, const RuntimeMethod* method)
{
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_0 = __this->get__token_0();
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_1 = ___item0;
if ((!(((RuntimeObject*)(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 *)L_0) == ((RuntimeObject*)(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 *)L_1))))
{
goto IL_0012;
}
}
{
__this->set__token_0((JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 *)NULL);
return (bool)1;
}
IL_0012:
{
return (bool)0;
}
}
// System.Int32 Valve.Newtonsoft.Json.Linq.JProperty_JPropertyList::get_Count()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JPropertyList_get_Count_m7A3193FF7FED404411184383F5CDCDE945726890 (JPropertyList_t134608E64E62337A93C6668B1266F077ABBA87A7 * __this, const RuntimeMethod* method)
{
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_0 = __this->get__token_0();
if (L_0)
{
goto IL_000a;
}
}
{
return 0;
}
IL_000a:
{
return 1;
}
}
// System.Boolean Valve.Newtonsoft.Json.Linq.JProperty_JPropertyList::get_IsReadOnly()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JPropertyList_get_IsReadOnly_mE432CE1D4D7A60354C9CBF9EE1A3961C3F7EC28B (JPropertyList_t134608E64E62337A93C6668B1266F077ABBA87A7 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// System.Int32 Valve.Newtonsoft.Json.Linq.JProperty_JPropertyList::IndexOf(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JPropertyList_IndexOf_m95CFD1504BC9EDA47B597C063630BA895B2CDC23 (JPropertyList_t134608E64E62337A93C6668B1266F077ABBA87A7 * __this, JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___item0, const RuntimeMethod* method)
{
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_0 = __this->get__token_0();
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_1 = ___item0;
if ((((RuntimeObject*)(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 *)L_0) == ((RuntimeObject*)(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 *)L_1)))
{
goto IL_000b;
}
}
{
return (-1);
}
IL_000b:
{
return 0;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JProperty_JPropertyList::Insert(System.Int32,Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JPropertyList_Insert_m370BCD2E6C3E60B833B7836D224F7142379615E2 (JPropertyList_t134608E64E62337A93C6668B1266F077ABBA87A7 * __this, int32_t ___index0, JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___item1, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
if (L_0)
{
goto IL_000a;
}
}
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_1 = ___item1;
__this->set__token_0(L_1);
}
IL_000a:
{
return;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JProperty_JPropertyList::RemoveAt(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JPropertyList_RemoveAt_mB09F2F324394849AD46C4129CAADF12361F477A3 (JPropertyList_t134608E64E62337A93C6668B1266F077ABBA87A7 * __this, int32_t ___index0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
if (L_0)
{
goto IL_000a;
}
}
{
__this->set__token_0((JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 *)NULL);
}
IL_000a:
{
return;
}
}
// Valve.Newtonsoft.Json.Linq.JToken Valve.Newtonsoft.Json.Linq.JProperty_JPropertyList::get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * JPropertyList_get_Item_mA72D18AFA86BEC94A9925A526115E1836ED32859 (JPropertyList_t134608E64E62337A93C6668B1266F077ABBA87A7 * __this, int32_t ___index0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
if (!L_0)
{
goto IL_0005;
}
}
{
return (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 *)NULL;
}
IL_0005:
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_1 = __this->get__token_0();
return L_1;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JProperty_JPropertyList::set_Item(System.Int32,Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JPropertyList_set_Item_m4E795BF31C065E63930869EC7A972662421E986D (JPropertyList_t134608E64E62337A93C6668B1266F077ABBA87A7 * __this, int32_t ___index0, JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value1, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
if (L_0)
{
goto IL_000a;
}
}
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_1 = ___value1;
__this->set__token_0(L_1);
}
IL_000a:
{
return;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JProperty_JPropertyList::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JPropertyList__ctor_m54C446E38B7BA765A9810A494C43DCF834BE8615 (JPropertyList_t134608E64E62337A93C6668B1266F077ABBA87A7 * __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 Valve.Newtonsoft.Json.Linq.JProperty_JPropertyList_<GetEnumerator>d__1::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CGetEnumeratorU3Ed__1__ctor_m91764E42D1685BD1F138059EE4AA3324A883E5D3 (U3CGetEnumeratorU3Ed__1_tC1FEADB7666AE584966BE3173BB361B41F66278B * __this, int32_t ___U3CU3E1__state0, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
int32_t L_0 = ___U3CU3E1__state0;
__this->set_U3CU3E1__state_0(L_0);
return;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JProperty_JPropertyList_<GetEnumerator>d__1::System.IDisposable.Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CGetEnumeratorU3Ed__1_System_IDisposable_Dispose_m06A4EC112BFC2BC68C7CE23D8F2AFB55E8D9F512 (U3CGetEnumeratorU3Ed__1_tC1FEADB7666AE584966BE3173BB361B41F66278B * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean Valve.Newtonsoft.Json.Linq.JProperty_JPropertyList_<GetEnumerator>d__1::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CGetEnumeratorU3Ed__1_MoveNext_m4EE6092C675EC065F9168D1657B796475C32DC4E (U3CGetEnumeratorU3Ed__1_tC1FEADB7666AE584966BE3173BB361B41F66278B * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
JPropertyList_t134608E64E62337A93C6668B1266F077ABBA87A7 * V_1 = NULL;
{
int32_t L_0 = __this->get_U3CU3E1__state_0();
V_0 = L_0;
JPropertyList_t134608E64E62337A93C6668B1266F077ABBA87A7 * L_1 = __this->get_U3CU3E4__this_2();
V_1 = L_1;
int32_t L_2 = V_0;
if (!L_2)
{
goto IL_0017;
}
}
{
int32_t L_3 = V_0;
if ((((int32_t)L_3) == ((int32_t)1)))
{
goto IL_003b;
}
}
{
return (bool)0;
}
IL_0017:
{
__this->set_U3CU3E1__state_0((-1));
JPropertyList_t134608E64E62337A93C6668B1266F077ABBA87A7 * L_4 = V_1;
NullCheck(L_4);
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_5 = L_4->get__token_0();
if (!L_5)
{
goto IL_0042;
}
}
{
JPropertyList_t134608E64E62337A93C6668B1266F077ABBA87A7 * L_6 = V_1;
NullCheck(L_6);
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_7 = L_6->get__token_0();
__this->set_U3CU3E2__current_1(L_7);
__this->set_U3CU3E1__state_0(1);
return (bool)1;
}
IL_003b:
{
__this->set_U3CU3E1__state_0((-1));
}
IL_0042:
{
return (bool)0;
}
}
// Valve.Newtonsoft.Json.Linq.JToken Valve.Newtonsoft.Json.Linq.JProperty_JPropertyList_<GetEnumerator>d__1::System.Collections.Generic.IEnumerator<Valve.Newtonsoft.Json.Linq.JToken>.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * U3CGetEnumeratorU3Ed__1_System_Collections_Generic_IEnumeratorU3CValve_Newtonsoft_Json_Linq_JTokenU3E_get_Current_mB335390AF25E5237023083416D19FA3460718069 (U3CGetEnumeratorU3Ed__1_tC1FEADB7666AE584966BE3173BB361B41F66278B * __this, const RuntimeMethod* method)
{
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_0 = __this->get_U3CU3E2__current_1();
return L_0;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JProperty_JPropertyList_<GetEnumerator>d__1::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CGetEnumeratorU3Ed__1_System_Collections_IEnumerator_Reset_mE490090DE0DE2ECA8F7A8FB981E759B7BFB59DEF (U3CGetEnumeratorU3Ed__1_tC1FEADB7666AE584966BE3173BB361B41F66278B * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CGetEnumeratorU3Ed__1_System_Collections_IEnumerator_Reset_mE490090DE0DE2ECA8F7A8FB981E759B7BFB59DEF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mA121DE1CAC8F25277DEB489DC7771209D91CAE33(L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, U3CGetEnumeratorU3Ed__1_System_Collections_IEnumerator_Reset_mE490090DE0DE2ECA8F7A8FB981E759B7BFB59DEF_RuntimeMethod_var);
}
}
// System.Object Valve.Newtonsoft.Json.Linq.JProperty_JPropertyList_<GetEnumerator>d__1::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * U3CGetEnumeratorU3Ed__1_System_Collections_IEnumerator_get_Current_m159FE4181F20AB9C474E3B4FE9DF96493CF15F39 (U3CGetEnumeratorU3Ed__1_tC1FEADB7666AE584966BE3173BB361B41F66278B * __this, const RuntimeMethod* method)
{
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_0 = __this->get_U3CU3E2__current_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
// System.Void Valve.Newtonsoft.Json.Linq.JPropertyKeyedCollection::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JPropertyKeyedCollection__ctor_m36884BDFA31F8F9F8D9D3F70619D741C57172744 (JPropertyKeyedCollection_t9EEDCB4FA22748C56AC9E4CD74AAA26F9D54A668 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JPropertyKeyedCollection__ctor_m36884BDFA31F8F9F8D9D3F70619D741C57172744_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
List_1_t1FE4F7D4C3DCC24F3D8A78270F707A3AD8614891 * L_0 = (List_1_t1FE4F7D4C3DCC24F3D8A78270F707A3AD8614891 *)il2cpp_codegen_object_new(List_1_t1FE4F7D4C3DCC24F3D8A78270F707A3AD8614891_il2cpp_TypeInfo_var);
List_1__ctor_m45E107F2041DA7F9BD3655EB428863FF929CC0A7(L_0, /*hidden argument*/List_1__ctor_m45E107F2041DA7F9BD3655EB428863FF929CC0A7_RuntimeMethod_var);
Collection_1__ctor_m42F90571DF5E7BEF7C89058C2D97F53401B48ADA(__this, L_0, /*hidden argument*/Collection_1__ctor_m42F90571DF5E7BEF7C89058C2D97F53401B48ADA_RuntimeMethod_var);
return;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JPropertyKeyedCollection::AddKey(System.String,Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JPropertyKeyedCollection_AddKey_mC54F260B46D7282F96138F85453EEF9B35EB9F52 (JPropertyKeyedCollection_t9EEDCB4FA22748C56AC9E4CD74AAA26F9D54A668 * __this, String_t* ___key0, JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JPropertyKeyedCollection_AddKey_mC54F260B46D7282F96138F85453EEF9B35EB9F52_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
JPropertyKeyedCollection_EnsureDictionary_mA93022ABABD31F2D927AD5105DBFA7709F1596A5(__this, /*hidden argument*/NULL);
Dictionary_2_t40E91C81D5ADA639FA8CD3CD9E4F8824FE177EB5 * L_0 = __this->get__dictionary_3();
String_t* L_1 = ___key0;
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_2 = ___item1;
NullCheck(L_0);
Dictionary_2_set_Item_mEAFCBE178160D90F6B1B13D32DC79EF10956C7B1(L_0, L_1, L_2, /*hidden argument*/Dictionary_2_set_Item_mEAFCBE178160D90F6B1B13D32DC79EF10956C7B1_RuntimeMethod_var);
return;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JPropertyKeyedCollection::ClearItems()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JPropertyKeyedCollection_ClearItems_m12019FEF733B7D4FFC148AA10D5FFA004C115A25 (JPropertyKeyedCollection_t9EEDCB4FA22748C56AC9E4CD74AAA26F9D54A668 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JPropertyKeyedCollection_ClearItems_m12019FEF733B7D4FFC148AA10D5FFA004C115A25_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Collection_1_ClearItems_mCB99294ADE5F3E816455A1D6065314DCF59E8441(__this, /*hidden argument*/Collection_1_ClearItems_mCB99294ADE5F3E816455A1D6065314DCF59E8441_RuntimeMethod_var);
Dictionary_2_t40E91C81D5ADA639FA8CD3CD9E4F8824FE177EB5 * L_0 = __this->get__dictionary_3();
if (!L_0)
{
goto IL_0019;
}
}
{
Dictionary_2_t40E91C81D5ADA639FA8CD3CD9E4F8824FE177EB5 * L_1 = __this->get__dictionary_3();
NullCheck(L_1);
Dictionary_2_Clear_mB3BCF9056485232023D77666585314524CA939F0(L_1, /*hidden argument*/Dictionary_2_Clear_mB3BCF9056485232023D77666585314524CA939F0_RuntimeMethod_var);
}
IL_0019:
{
return;
}
}
// System.Boolean Valve.Newtonsoft.Json.Linq.JPropertyKeyedCollection::Contains(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JPropertyKeyedCollection_Contains_m9BB27B5F4B094F98E40DF0EAC64317EEDB446A5B (JPropertyKeyedCollection_t9EEDCB4FA22748C56AC9E4CD74AAA26F9D54A668 * __this, String_t* ___key0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JPropertyKeyedCollection_Contains_m9BB27B5F4B094F98E40DF0EAC64317EEDB446A5B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___key0;
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, _stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, JPropertyKeyedCollection_Contains_m9BB27B5F4B094F98E40DF0EAC64317EEDB446A5B_RuntimeMethod_var);
}
IL_000e:
{
Dictionary_2_t40E91C81D5ADA639FA8CD3CD9E4F8824FE177EB5 * L_2 = __this->get__dictionary_3();
if (!L_2)
{
goto IL_0023;
}
}
{
Dictionary_2_t40E91C81D5ADA639FA8CD3CD9E4F8824FE177EB5 * L_3 = __this->get__dictionary_3();
String_t* L_4 = ___key0;
NullCheck(L_3);
bool L_5 = Dictionary_2_ContainsKey_m46DAB166725A201739D8CFAD762065E32BC2332F(L_3, L_4, /*hidden argument*/Dictionary_2_ContainsKey_m46DAB166725A201739D8CFAD762065E32BC2332F_RuntimeMethod_var);
return L_5;
}
IL_0023:
{
return (bool)0;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JPropertyKeyedCollection::EnsureDictionary()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JPropertyKeyedCollection_EnsureDictionary_mA93022ABABD31F2D927AD5105DBFA7709F1596A5 (JPropertyKeyedCollection_t9EEDCB4FA22748C56AC9E4CD74AAA26F9D54A668 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JPropertyKeyedCollection_EnsureDictionary_mA93022ABABD31F2D927AD5105DBFA7709F1596A5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Dictionary_2_t40E91C81D5ADA639FA8CD3CD9E4F8824FE177EB5 * L_0 = __this->get__dictionary_3();
if (L_0)
{
goto IL_0018;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(JPropertyKeyedCollection_t9EEDCB4FA22748C56AC9E4CD74AAA26F9D54A668_il2cpp_TypeInfo_var);
RuntimeObject* L_1 = ((JPropertyKeyedCollection_t9EEDCB4FA22748C56AC9E4CD74AAA26F9D54A668_StaticFields*)il2cpp_codegen_static_fields_for(JPropertyKeyedCollection_t9EEDCB4FA22748C56AC9E4CD74AAA26F9D54A668_il2cpp_TypeInfo_var))->get_Comparer_2();
Dictionary_2_t40E91C81D5ADA639FA8CD3CD9E4F8824FE177EB5 * L_2 = (Dictionary_2_t40E91C81D5ADA639FA8CD3CD9E4F8824FE177EB5 *)il2cpp_codegen_object_new(Dictionary_2_t40E91C81D5ADA639FA8CD3CD9E4F8824FE177EB5_il2cpp_TypeInfo_var);
Dictionary_2__ctor_m823795218CD6E4A6E6024D6F34B7B5A8C9F301D8(L_2, L_1, /*hidden argument*/Dictionary_2__ctor_m823795218CD6E4A6E6024D6F34B7B5A8C9F301D8_RuntimeMethod_var);
__this->set__dictionary_3(L_2);
}
IL_0018:
{
return;
}
}
// System.String Valve.Newtonsoft.Json.Linq.JPropertyKeyedCollection::GetKeyForItem(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JPropertyKeyedCollection_GetKeyForItem_mCB510667D2C6D59E50940F715265C448420BC709 (JPropertyKeyedCollection_t9EEDCB4FA22748C56AC9E4CD74AAA26F9D54A668 * __this, JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JPropertyKeyedCollection_GetKeyForItem_mCB510667D2C6D59E50940F715265C448420BC709_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_0 = ___item0;
NullCheck(((JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF *)CastclassClass((RuntimeObject*)L_0, JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF_il2cpp_TypeInfo_var)));
String_t* L_1 = JProperty_get_Name_mB214D204AA250BF1F6F73A038028946203F592ED_inline(((JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF *)CastclassClass((RuntimeObject*)L_0, JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
return L_1;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JPropertyKeyedCollection::InsertItem(System.Int32,Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JPropertyKeyedCollection_InsertItem_m090C226F682861055654F3E3A6DBB8EC929AF8D4 (JPropertyKeyedCollection_t9EEDCB4FA22748C56AC9E4CD74AAA26F9D54A668 * __this, int32_t ___index0, JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JPropertyKeyedCollection_InsertItem_m090C226F682861055654F3E3A6DBB8EC929AF8D4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_0 = ___item1;
String_t* L_1 = JPropertyKeyedCollection_GetKeyForItem_mCB510667D2C6D59E50940F715265C448420BC709(__this, L_0, /*hidden argument*/NULL);
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_2 = ___item1;
JPropertyKeyedCollection_AddKey_mC54F260B46D7282F96138F85453EEF9B35EB9F52(__this, L_1, L_2, /*hidden argument*/NULL);
int32_t L_3 = ___index0;
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_4 = ___item1;
Collection_1_InsertItem_m5D953906118E75375B29BC0BC86344F5BBF17108(__this, L_3, L_4, /*hidden argument*/Collection_1_InsertItem_m5D953906118E75375B29BC0BC86344F5BBF17108_RuntimeMethod_var);
return;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JPropertyKeyedCollection::RemoveItem(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JPropertyKeyedCollection_RemoveItem_m9EF73697649DA7A047A1F20D61CD6162624E0A74 (JPropertyKeyedCollection_t9EEDCB4FA22748C56AC9E4CD74AAA26F9D54A668 * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JPropertyKeyedCollection_RemoveItem_m9EF73697649DA7A047A1F20D61CD6162624E0A74_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
RuntimeObject* L_0 = Collection_1_get_Items_m6513B3933A70CD2F3015EA2D86D807724ECC7855_inline(__this, /*hidden argument*/Collection_1_get_Items_m6513B3933A70CD2F3015EA2D86D807724ECC7855_RuntimeMethod_var);
int32_t L_1 = ___index0;
NullCheck(L_0);
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_2 = InterfaceFuncInvoker1< JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 *, int32_t >::Invoke(0 /* !0 System.Collections.Generic.IList`1<Valve.Newtonsoft.Json.Linq.JToken>::get_Item(System.Int32) */, IList_1_tD0A73252EB025BC5ABDD8D9259A4BB17D94D5882_il2cpp_TypeInfo_var, L_0, L_1);
String_t* L_3 = JPropertyKeyedCollection_GetKeyForItem_mCB510667D2C6D59E50940F715265C448420BC709(__this, L_2, /*hidden argument*/NULL);
V_0 = L_3;
String_t* L_4 = V_0;
JPropertyKeyedCollection_RemoveKey_mB3D9093735829DBAA7459C1F439D3E31A2C650A3(__this, L_4, /*hidden argument*/NULL);
int32_t L_5 = ___index0;
Collection_1_RemoveItem_m63344A784362304AC7E63FB0A92D5483592880D1(__this, L_5, /*hidden argument*/Collection_1_RemoveItem_m63344A784362304AC7E63FB0A92D5483592880D1_RuntimeMethod_var);
return;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JPropertyKeyedCollection::RemoveKey(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JPropertyKeyedCollection_RemoveKey_mB3D9093735829DBAA7459C1F439D3E31A2C650A3 (JPropertyKeyedCollection_t9EEDCB4FA22748C56AC9E4CD74AAA26F9D54A668 * __this, String_t* ___key0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JPropertyKeyedCollection_RemoveKey_mB3D9093735829DBAA7459C1F439D3E31A2C650A3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Dictionary_2_t40E91C81D5ADA639FA8CD3CD9E4F8824FE177EB5 * L_0 = __this->get__dictionary_3();
if (!L_0)
{
goto IL_0015;
}
}
{
Dictionary_2_t40E91C81D5ADA639FA8CD3CD9E4F8824FE177EB5 * L_1 = __this->get__dictionary_3();
String_t* L_2 = ___key0;
NullCheck(L_1);
Dictionary_2_Remove_m18C9B6951739FD37B26D91F1C4AAD76841979CB8(L_1, L_2, /*hidden argument*/Dictionary_2_Remove_m18C9B6951739FD37B26D91F1C4AAD76841979CB8_RuntimeMethod_var);
}
IL_0015:
{
return;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JPropertyKeyedCollection::SetItem(System.Int32,Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JPropertyKeyedCollection_SetItem_m51BE3C279FF04722417E5839392DA029E0AFDEC4 (JPropertyKeyedCollection_t9EEDCB4FA22748C56AC9E4CD74AAA26F9D54A668 * __this, int32_t ___index0, JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JPropertyKeyedCollection_SetItem_m51BE3C279FF04722417E5839392DA029E0AFDEC4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
String_t* V_1 = NULL;
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_0 = ___item1;
String_t* L_1 = JPropertyKeyedCollection_GetKeyForItem_mCB510667D2C6D59E50940F715265C448420BC709(__this, L_0, /*hidden argument*/NULL);
V_0 = L_1;
RuntimeObject* L_2 = Collection_1_get_Items_m6513B3933A70CD2F3015EA2D86D807724ECC7855_inline(__this, /*hidden argument*/Collection_1_get_Items_m6513B3933A70CD2F3015EA2D86D807724ECC7855_RuntimeMethod_var);
int32_t L_3 = ___index0;
NullCheck(L_2);
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_4 = InterfaceFuncInvoker1< JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 *, int32_t >::Invoke(0 /* !0 System.Collections.Generic.IList`1<Valve.Newtonsoft.Json.Linq.JToken>::get_Item(System.Int32) */, IList_1_tD0A73252EB025BC5ABDD8D9259A4BB17D94D5882_il2cpp_TypeInfo_var, L_2, L_3);
String_t* L_5 = JPropertyKeyedCollection_GetKeyForItem_mCB510667D2C6D59E50940F715265C448420BC709(__this, L_4, /*hidden argument*/NULL);
V_1 = L_5;
IL2CPP_RUNTIME_CLASS_INIT(JPropertyKeyedCollection_t9EEDCB4FA22748C56AC9E4CD74AAA26F9D54A668_il2cpp_TypeInfo_var);
RuntimeObject* L_6 = ((JPropertyKeyedCollection_t9EEDCB4FA22748C56AC9E4CD74AAA26F9D54A668_StaticFields*)il2cpp_codegen_static_fields_for(JPropertyKeyedCollection_t9EEDCB4FA22748C56AC9E4CD74AAA26F9D54A668_il2cpp_TypeInfo_var))->get_Comparer_2();
String_t* L_7 = V_1;
String_t* L_8 = V_0;
NullCheck(L_6);
bool L_9 = InterfaceFuncInvoker2< bool, String_t*, String_t* >::Invoke(0 /* System.Boolean System.Collections.Generic.IEqualityComparer`1<System.String>::Equals(!0,!0) */, IEqualityComparer_1_t1F07EAC22CC1D4F279164B144240E4718BD7E7A9_il2cpp_TypeInfo_var, L_6, L_7, L_8);
if (!L_9)
{
goto IL_0040;
}
}
{
Dictionary_2_t40E91C81D5ADA639FA8CD3CD9E4F8824FE177EB5 * L_10 = __this->get__dictionary_3();
if (!L_10)
{
goto IL_0052;
}
}
{
Dictionary_2_t40E91C81D5ADA639FA8CD3CD9E4F8824FE177EB5 * L_11 = __this->get__dictionary_3();
String_t* L_12 = V_0;
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_13 = ___item1;
NullCheck(L_11);
Dictionary_2_set_Item_mEAFCBE178160D90F6B1B13D32DC79EF10956C7B1(L_11, L_12, L_13, /*hidden argument*/Dictionary_2_set_Item_mEAFCBE178160D90F6B1B13D32DC79EF10956C7B1_RuntimeMethod_var);
goto IL_0052;
}
IL_0040:
{
String_t* L_14 = V_0;
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_15 = ___item1;
JPropertyKeyedCollection_AddKey_mC54F260B46D7282F96138F85453EEF9B35EB9F52(__this, L_14, L_15, /*hidden argument*/NULL);
String_t* L_16 = V_1;
if (!L_16)
{
goto IL_0052;
}
}
{
String_t* L_17 = V_1;
JPropertyKeyedCollection_RemoveKey_mB3D9093735829DBAA7459C1F439D3E31A2C650A3(__this, L_17, /*hidden argument*/NULL);
}
IL_0052:
{
int32_t L_18 = ___index0;
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_19 = ___item1;
Collection_1_SetItem_mC3BE48879B5DD38EF28EA5CB0A99BA62DF69EBAA(__this, L_18, L_19, /*hidden argument*/Collection_1_SetItem_mC3BE48879B5DD38EF28EA5CB0A99BA62DF69EBAA_RuntimeMethod_var);
return;
}
}
// System.Boolean Valve.Newtonsoft.Json.Linq.JPropertyKeyedCollection::TryGetValue(System.String,Valve.Newtonsoft.Json.Linq.JToken&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JPropertyKeyedCollection_TryGetValue_mA49B9420FDAC72D4FB53F2D8941C254D9C969055 (JPropertyKeyedCollection_t9EEDCB4FA22748C56AC9E4CD74AAA26F9D54A668 * __this, String_t* ___key0, JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 ** ___value1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JPropertyKeyedCollection_TryGetValue_mA49B9420FDAC72D4FB53F2D8941C254D9C969055_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Dictionary_2_t40E91C81D5ADA639FA8CD3CD9E4F8824FE177EB5 * L_0 = __this->get__dictionary_3();
if (L_0)
{
goto IL_000d;
}
}
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 ** L_1 = ___value1;
*((RuntimeObject **)L_1) = (RuntimeObject *)NULL;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_1, (void*)(RuntimeObject *)NULL);
return (bool)0;
}
IL_000d:
{
Dictionary_2_t40E91C81D5ADA639FA8CD3CD9E4F8824FE177EB5 * L_2 = __this->get__dictionary_3();
String_t* L_3 = ___key0;
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 ** L_4 = ___value1;
NullCheck(L_2);
bool L_5 = Dictionary_2_TryGetValue_m44BA172B67C17DEDD31FC62AC8CC1749EE881B38(L_2, L_3, (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 **)L_4, /*hidden argument*/Dictionary_2_TryGetValue_m44BA172B67C17DEDD31FC62AC8CC1749EE881B38_RuntimeMethod_var);
return L_5;
}
}
// System.Collections.Generic.ICollection`1<System.String> Valve.Newtonsoft.Json.Linq.JPropertyKeyedCollection::get_Keys()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JPropertyKeyedCollection_get_Keys_m577631D5857315D17E55A844F7299E726DA73611 (JPropertyKeyedCollection_t9EEDCB4FA22748C56AC9E4CD74AAA26F9D54A668 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JPropertyKeyedCollection_get_Keys_m577631D5857315D17E55A844F7299E726DA73611_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
JPropertyKeyedCollection_EnsureDictionary_mA93022ABABD31F2D927AD5105DBFA7709F1596A5(__this, /*hidden argument*/NULL);
Dictionary_2_t40E91C81D5ADA639FA8CD3CD9E4F8824FE177EB5 * L_0 = __this->get__dictionary_3();
NullCheck(L_0);
KeyCollection_t44B3F4E6CFC63F9D85C76C64DE24F71FCD3A5E7F * L_1 = Dictionary_2_get_Keys_m1BA1B40A2CDEC15D25F9DE17D4B913B6D2C5039B(L_0, /*hidden argument*/Dictionary_2_get_Keys_m1BA1B40A2CDEC15D25F9DE17D4B913B6D2C5039B_RuntimeMethod_var);
return L_1;
}
}
// System.Int32 Valve.Newtonsoft.Json.Linq.JPropertyKeyedCollection::IndexOfReference(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JPropertyKeyedCollection_IndexOfReference_mC199F62EF820B0A14B207970485BA689302058BA (JPropertyKeyedCollection_t9EEDCB4FA22748C56AC9E4CD74AAA26F9D54A668 * __this, JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___t0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JPropertyKeyedCollection_IndexOfReference_mC199F62EF820B0A14B207970485BA689302058BA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = Collection_1_get_Items_m6513B3933A70CD2F3015EA2D86D807724ECC7855_inline(__this, /*hidden argument*/Collection_1_get_Items_m6513B3933A70CD2F3015EA2D86D807724ECC7855_RuntimeMethod_var);
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_1 = ___t0;
int32_t L_2 = CollectionUtils_IndexOfReference_TisJToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_mE594989165E77E1DBF642A36960514AB8A8ECE39(((List_1_t1FE4F7D4C3DCC24F3D8A78270F707A3AD8614891 *)CastclassClass((RuntimeObject*)L_0, List_1_t1FE4F7D4C3DCC24F3D8A78270F707A3AD8614891_il2cpp_TypeInfo_var)), L_1, /*hidden argument*/CollectionUtils_IndexOfReference_TisJToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_mE594989165E77E1DBF642A36960514AB8A8ECE39_RuntimeMethod_var);
return L_2;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JPropertyKeyedCollection::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JPropertyKeyedCollection__cctor_m88BFDC86930ABAC9536F6AECC062EFA707FF5961 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JPropertyKeyedCollection__cctor_m88BFDC86930ABAC9536F6AECC062EFA707FF5961_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_il2cpp_TypeInfo_var);
StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * L_0 = StringComparer_get_Ordinal_m1F38FBAB170DF80D33FE2A849D30FF2E314D9FDB_inline(/*hidden argument*/NULL);
((JPropertyKeyedCollection_t9EEDCB4FA22748C56AC9E4CD74AAA26F9D54A668_StaticFields*)il2cpp_codegen_static_fields_for(JPropertyKeyedCollection_t9EEDCB4FA22748C56AC9E4CD74AAA26F9D54A668_il2cpp_TypeInfo_var))->set_Comparer_2(L_0);
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 Valve.Newtonsoft.Json.Linq.JRaw::.ctor(Valve.Newtonsoft.Json.Linq.JRaw)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JRaw__ctor_m3492D1F41DB1545B9E274355D1F01F3907197C8C (JRaw_tEA065B3ED6F70E2FA12CA996B102A3FD16330C86 * __this, JRaw_tEA065B3ED6F70E2FA12CA996B102A3FD16330C86 * ___other0, const RuntimeMethod* method)
{
{
JRaw_tEA065B3ED6F70E2FA12CA996B102A3FD16330C86 * L_0 = ___other0;
JValue__ctor_m250481A9F85445244713F31837B372A9C88618FB(__this, L_0, /*hidden argument*/NULL);
return;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JRaw::.ctor(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JRaw__ctor_m48FA7D8C382E6F0829C9BEAFEC03E2D42ADE2F32 (JRaw_tEA065B3ED6F70E2FA12CA996B102A3FD16330C86 * __this, RuntimeObject * ___rawJson0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___rawJson0;
JValue__ctor_mCB35F856D5396641B4783B5A647B6C0545D9EC18(__this, L_0, ((int32_t)13), /*hidden argument*/NULL);
return;
}
}
// Valve.Newtonsoft.Json.Linq.JRaw Valve.Newtonsoft.Json.Linq.JRaw::Create(Valve.Newtonsoft.Json.JsonReader)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JRaw_tEA065B3ED6F70E2FA12CA996B102A3FD16330C86 * JRaw_Create_m68158A14DD0FBDCDCBDBC6DAA439C56A4B3A2289 (JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C * ___reader0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JRaw_Create_m68158A14DD0FBDCDCBDBC6DAA439C56A4B3A2289_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
StringWriter_t194EF1526E072B93984370042AA80926C2EB6139 * V_0 = NULL;
JsonTextWriter_t56407EC76E70ABAD12ED7BF65BCF353E98D18FC6 * V_1 = NULL;
JRaw_tEA065B3ED6F70E2FA12CA996B102A3FD16330C86 * V_2 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_0 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
StringWriter_t194EF1526E072B93984370042AA80926C2EB6139 * L_1 = (StringWriter_t194EF1526E072B93984370042AA80926C2EB6139 *)il2cpp_codegen_object_new(StringWriter_t194EF1526E072B93984370042AA80926C2EB6139_il2cpp_TypeInfo_var);
StringWriter__ctor_m4D44D4D5B0CFDEEB172C7D61171340D76432A1EE(L_1, L_0, /*hidden argument*/NULL);
V_0 = L_1;
}
IL_000b:
try
{ // begin try (depth: 1)
{
StringWriter_t194EF1526E072B93984370042AA80926C2EB6139 * L_2 = V_0;
JsonTextWriter_t56407EC76E70ABAD12ED7BF65BCF353E98D18FC6 * L_3 = (JsonTextWriter_t56407EC76E70ABAD12ED7BF65BCF353E98D18FC6 *)il2cpp_codegen_object_new(JsonTextWriter_t56407EC76E70ABAD12ED7BF65BCF353E98D18FC6_il2cpp_TypeInfo_var);
JsonTextWriter__ctor_m6A65911186F3177C78B402AA4E42B375BFB38482(L_3, L_2, /*hidden argument*/NULL);
V_1 = L_3;
}
IL_0012:
try
{ // begin try (depth: 2)
JsonTextWriter_t56407EC76E70ABAD12ED7BF65BCF353E98D18FC6 * L_4 = V_1;
JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C * L_5 = ___reader0;
NullCheck(L_4);
JsonWriter_WriteToken_m837CD7EF44EDBDDEBF96CF29EE0EE66CA037293B(L_4, L_5, /*hidden argument*/NULL);
StringWriter_t194EF1526E072B93984370042AA80926C2EB6139 * L_6 = V_0;
NullCheck(L_6);
String_t* L_7 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_6);
JRaw_tEA065B3ED6F70E2FA12CA996B102A3FD16330C86 * L_8 = (JRaw_tEA065B3ED6F70E2FA12CA996B102A3FD16330C86 *)il2cpp_codegen_object_new(JRaw_tEA065B3ED6F70E2FA12CA996B102A3FD16330C86_il2cpp_TypeInfo_var);
JRaw__ctor_m48FA7D8C382E6F0829C9BEAFEC03E2D42ADE2F32(L_8, L_7, /*hidden argument*/NULL);
V_2 = L_8;
IL2CPP_LEAVE(0x3B, FINALLY_0027);
} // end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0027;
}
FINALLY_0027:
{ // begin finally (depth: 2)
{
JsonTextWriter_t56407EC76E70ABAD12ED7BF65BCF353E98D18FC6 * L_9 = V_1;
if (!L_9)
{
goto IL_0030;
}
}
IL_002a:
{
JsonTextWriter_t56407EC76E70ABAD12ED7BF65BCF353E98D18FC6 * L_10 = V_1;
NullCheck(L_10);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_10);
}
IL_0030:
{
IL2CPP_END_FINALLY(39)
}
} // end finally (depth: 2)
IL2CPP_CLEANUP(39)
{
IL2CPP_END_CLEANUP(0x3B, FINALLY_0031);
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0031;
}
FINALLY_0031:
{ // begin finally (depth: 1)
{
StringWriter_t194EF1526E072B93984370042AA80926C2EB6139 * L_11 = V_0;
if (!L_11)
{
goto IL_003a;
}
}
IL_0034:
{
StringWriter_t194EF1526E072B93984370042AA80926C2EB6139 * L_12 = V_0;
NullCheck(L_12);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_12);
}
IL_003a:
{
IL2CPP_END_FINALLY(49)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(49)
{
IL2CPP_JUMP_TBL(0x3B, IL_003b)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_003b:
{
JRaw_tEA065B3ED6F70E2FA12CA996B102A3FD16330C86 * L_13 = V_2;
return L_13;
}
}
// Valve.Newtonsoft.Json.Linq.JToken Valve.Newtonsoft.Json.Linq.JRaw::CloneToken()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * JRaw_CloneToken_mF7D651EFCD26521E9E3547FF6A1545F780850D24 (JRaw_tEA065B3ED6F70E2FA12CA996B102A3FD16330C86 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JRaw_CloneToken_mF7D651EFCD26521E9E3547FF6A1545F780850D24_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
JRaw_tEA065B3ED6F70E2FA12CA996B102A3FD16330C86 * L_0 = (JRaw_tEA065B3ED6F70E2FA12CA996B102A3FD16330C86 *)il2cpp_codegen_object_new(JRaw_tEA065B3ED6F70E2FA12CA996B102A3FD16330C86_il2cpp_TypeInfo_var);
JRaw__ctor_m3492D1F41DB1545B9E274355D1F01F3907197C8C(L_0, __this, /*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
// Valve.Newtonsoft.Json.Linq.JContainer Valve.Newtonsoft.Json.Linq.JToken::get_Parent()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * JToken_get_Parent_m68142FEB329F72F2258F55D7A790C43E7E823F54 (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * __this, const RuntimeMethod* method)
{
{
JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * L_0 = __this->get__parent_0();
return L_0;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JToken::set_Parent(Valve.Newtonsoft.Json.Linq.JContainer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JToken_set_Parent_m58AA2BBC16CF76778358D7638F88FFC46FC85653 (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * __this, JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * ___value0, const RuntimeMethod* method)
{
{
JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * L_0 = ___value0;
__this->set__parent_0(L_0);
return;
}
}
// Valve.Newtonsoft.Json.Linq.JToken Valve.Newtonsoft.Json.Linq.JToken::get_Root()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * JToken_get_Root_m71568B599FD731C2A850CAC67D4A25334F82BD4D (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * __this, const RuntimeMethod* method)
{
JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * V_0 = NULL;
{
JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * L_0 = JToken_get_Parent_m68142FEB329F72F2258F55D7A790C43E7E823F54_inline(__this, /*hidden argument*/NULL);
V_0 = L_0;
JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * L_1 = V_0;
if (L_1)
{
goto IL_0013;
}
}
{
return __this;
}
IL_000c:
{
JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * L_2 = V_0;
NullCheck(L_2);
JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * L_3 = JToken_get_Parent_m68142FEB329F72F2258F55D7A790C43E7E823F54_inline(L_2, /*hidden argument*/NULL);
V_0 = L_3;
}
IL_0013:
{
JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * L_4 = V_0;
NullCheck(L_4);
JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * L_5 = JToken_get_Parent_m68142FEB329F72F2258F55D7A790C43E7E823F54_inline(L_4, /*hidden argument*/NULL);
if (L_5)
{
goto IL_000c;
}
}
{
JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * L_6 = V_0;
return L_6;
}
}
// Valve.Newtonsoft.Json.Linq.JToken Valve.Newtonsoft.Json.Linq.JToken::get_Next()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * JToken_get_Next_m4C86AF5625AFDE37B90698DBAC4B8C589B5F05E3 (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * __this, const RuntimeMethod* method)
{
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_0 = __this->get__next_2();
return L_0;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JToken::set_Next(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JToken_set_Next_m872985237271424978DD78BA5D2A2D1A696E5B9E (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * __this, JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method)
{
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_0 = ___value0;
__this->set__next_2(L_0);
return;
}
}
// Valve.Newtonsoft.Json.Linq.JToken Valve.Newtonsoft.Json.Linq.JToken::get_Previous()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * JToken_get_Previous_m0630E84EDEC366F93156D566D48DA63F90F6E2E5 (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * __this, const RuntimeMethod* method)
{
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_0 = __this->get__previous_1();
return L_0;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JToken::set_Previous(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JToken_set_Previous_m30B91B81E8BBC5E748D0DD59AB9B6EAA4D774FD7 (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * __this, JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method)
{
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_0 = ___value0;
__this->set__previous_1(L_0);
return;
}
}
// System.String Valve.Newtonsoft.Json.Linq.JToken::get_Path()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JToken_get_Path_mDF8410943E43F72FA56B317C89DAC959284005B3 (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JToken_get_Path_mDF8410943E43F72FA56B317C89DAC959284005B3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
List_1_tB300EBCDF85B082F12B483D22C5C8070412F6C76 * V_0 = NULL;
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * V_1 = NULL;
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * V_2 = NULL;
int32_t V_3 = 0;
JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * V_4 = NULL;
JsonPosition_t6ED67A82A34F185D91B222CCC7CBF5E83CF9F422 V_5;
memset((&V_5), 0, sizeof(V_5));
int32_t V_6 = 0;
Nullable_1_t26D29E116F22D7CF824C44D52B758C14D035667D V_7;
memset((&V_7), 0, sizeof(V_7));
{
JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * L_0 = JToken_get_Parent_m68142FEB329F72F2258F55D7A790C43E7E823F54_inline(__this, /*hidden argument*/NULL);
if (L_0)
{
goto IL_000e;
}
}
{
String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5();
return L_1;
}
IL_000e:
{
List_1_tB300EBCDF85B082F12B483D22C5C8070412F6C76 * L_2 = (List_1_tB300EBCDF85B082F12B483D22C5C8070412F6C76 *)il2cpp_codegen_object_new(List_1_tB300EBCDF85B082F12B483D22C5C8070412F6C76_il2cpp_TypeInfo_var);
List_1__ctor_m0DEAE2C460B3FDD0F5DD4F79BA2F9AB9A56217B5(L_2, /*hidden argument*/List_1__ctor_m0DEAE2C460B3FDD0F5DD4F79BA2F9AB9A56217B5_RuntimeMethod_var);
V_0 = L_2;
V_1 = (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 *)NULL;
V_2 = __this;
goto IL_0086;
}
IL_001a:
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_3 = V_2;
NullCheck(L_3);
int32_t L_4 = VirtFuncInvoker0< int32_t >::Invoke(11 /* Valve.Newtonsoft.Json.Linq.JTokenType Valve.Newtonsoft.Json.Linq.JToken::get_Type() */, L_3);
V_3 = L_4;
int32_t L_5 = V_3;
if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_5, (int32_t)2))) > ((uint32_t)1))))
{
goto IL_0053;
}
}
{
int32_t L_6 = V_3;
if ((!(((uint32_t)L_6) == ((uint32_t)4))))
{
goto IL_007d;
}
}
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_7 = V_2;
V_4 = ((JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF *)CastclassClass((RuntimeObject*)L_7, JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF_il2cpp_TypeInfo_var));
List_1_tB300EBCDF85B082F12B483D22C5C8070412F6C76 * L_8 = V_0;
JsonPosition__ctor_m5216051B7C101053D8EB886DC2BB0D990DD91E9E((JsonPosition_t6ED67A82A34F185D91B222CCC7CBF5E83CF9F422 *)(&V_5), 1, /*hidden argument*/NULL);
JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * L_9 = V_4;
NullCheck(L_9);
String_t* L_10 = JProperty_get_Name_mB214D204AA250BF1F6F73A038028946203F592ED_inline(L_9, /*hidden argument*/NULL);
(&V_5)->set_PropertyName_3(L_10);
JsonPosition_t6ED67A82A34F185D91B222CCC7CBF5E83CF9F422 L_11 = V_5;
NullCheck(L_8);
List_1_Add_m79C7EA0338961B160D163D636C9BE2C2CFF89147(L_8, L_11, /*hidden argument*/List_1_Add_m79C7EA0338961B160D163D636C9BE2C2CFF89147_RuntimeMethod_var);
goto IL_007d;
}
IL_0053:
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_12 = V_1;
if (!L_12)
{
goto IL_007d;
}
}
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_13 = V_2;
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_14 = V_1;
NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_13, IList_1_tD0A73252EB025BC5ABDD8D9259A4BB17D94D5882_il2cpp_TypeInfo_var)));
int32_t L_15 = InterfaceFuncInvoker1< int32_t, JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * >::Invoke(2 /* System.Int32 System.Collections.Generic.IList`1<Valve.Newtonsoft.Json.Linq.JToken>::IndexOf(!0) */, IList_1_tD0A73252EB025BC5ABDD8D9259A4BB17D94D5882_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_13, IList_1_tD0A73252EB025BC5ABDD8D9259A4BB17D94D5882_il2cpp_TypeInfo_var)), L_14);
V_6 = L_15;
List_1_tB300EBCDF85B082F12B483D22C5C8070412F6C76 * L_16 = V_0;
JsonPosition__ctor_m5216051B7C101053D8EB886DC2BB0D990DD91E9E((JsonPosition_t6ED67A82A34F185D91B222CCC7CBF5E83CF9F422 *)(&V_5), 2, /*hidden argument*/NULL);
int32_t L_17 = V_6;
(&V_5)->set_Position_2(L_17);
JsonPosition_t6ED67A82A34F185D91B222CCC7CBF5E83CF9F422 L_18 = V_5;
NullCheck(L_16);
List_1_Add_m79C7EA0338961B160D163D636C9BE2C2CFF89147(L_16, L_18, /*hidden argument*/List_1_Add_m79C7EA0338961B160D163D636C9BE2C2CFF89147_RuntimeMethod_var);
}
IL_007d:
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_19 = V_2;
V_1 = L_19;
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_20 = V_2;
NullCheck(L_20);
JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * L_21 = JToken_get_Parent_m68142FEB329F72F2258F55D7A790C43E7E823F54_inline(L_20, /*hidden argument*/NULL);
V_2 = L_21;
}
IL_0086:
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_22 = V_2;
if (L_22)
{
goto IL_001a;
}
}
{
List_1_tB300EBCDF85B082F12B483D22C5C8070412F6C76 * L_23 = V_0;
NullCheck(L_23);
List_1_Reverse_m6F54B1AF5F84F297BFC36CD2EF9863F0B400CD9B(L_23, /*hidden argument*/List_1_Reverse_m6F54B1AF5F84F297BFC36CD2EF9863F0B400CD9B_RuntimeMethod_var);
List_1_tB300EBCDF85B082F12B483D22C5C8070412F6C76 * L_24 = V_0;
il2cpp_codegen_initobj((&V_7), sizeof(Nullable_1_t26D29E116F22D7CF824C44D52B758C14D035667D ));
Nullable_1_t26D29E116F22D7CF824C44D52B758C14D035667D L_25 = V_7;
IL2CPP_RUNTIME_CLASS_INIT(JsonPosition_t6ED67A82A34F185D91B222CCC7CBF5E83CF9F422_il2cpp_TypeInfo_var);
String_t* L_26 = JsonPosition_BuildPath_m0D65BA29F845BD67FDC75467E6C48B6E2F1F6A09(L_24, L_25, /*hidden argument*/NULL);
return L_26;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JToken::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JToken__ctor_mFBA3803E336FDC9475CD92C83699183230065165 (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * __this, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
return;
}
}
// Valve.Newtonsoft.Json.Linq.JToken Valve.Newtonsoft.Json.Linq.JToken::get_First()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * JToken_get_First_mACDC4C6067F17114CC17CCFB41F0590DD962F347 (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JToken_get_First_mACDC4C6067F17114CC17CCFB41F0590DD962F347_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_0 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
Type_t * L_1 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(__this, /*hidden argument*/NULL);
String_t* L_2 = StringUtils_FormatWith_mA244260995FC801D82F22EC897F3F8BEB8649583(_stringLiteralCF820FA88EF10869FEFC4154B5F08774A408962D, L_0, L_1, /*hidden argument*/NULL);
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, L_2, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, JToken_get_First_mACDC4C6067F17114CC17CCFB41F0590DD962F347_RuntimeMethod_var);
}
}
// Valve.Newtonsoft.Json.Linq.JToken Valve.Newtonsoft.Json.Linq.JToken::get_Last()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * JToken_get_Last_mDDE24270C3A42FFD753457D6BD49F7B58035263F (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JToken_get_Last_mDDE24270C3A42FFD753457D6BD49F7B58035263F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_0 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
Type_t * L_1 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(__this, /*hidden argument*/NULL);
String_t* L_2 = StringUtils_FormatWith_mA244260995FC801D82F22EC897F3F8BEB8649583(_stringLiteralCF820FA88EF10869FEFC4154B5F08774A408962D, L_0, L_1, /*hidden argument*/NULL);
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, L_2, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, JToken_get_Last_mDDE24270C3A42FFD753457D6BD49F7B58035263F_RuntimeMethod_var);
}
}
// Valve.Newtonsoft.Json.Linq.JEnumerable`1<Valve.Newtonsoft.Json.Linq.JToken> Valve.Newtonsoft.Json.Linq.JToken::Children()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JEnumerable_1_t8D29AB2A452946C954DC038C163C500CD83ACEF1 JToken_Children_mB3D08F8C0748352E27B4EC687455499E91270DE2 (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JToken_Children_mB3D08F8C0748352E27B4EC687455499E91270DE2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(JEnumerable_1_t8D29AB2A452946C954DC038C163C500CD83ACEF1_il2cpp_TypeInfo_var);
JEnumerable_1_t8D29AB2A452946C954DC038C163C500CD83ACEF1 L_0 = ((JEnumerable_1_t8D29AB2A452946C954DC038C163C500CD83ACEF1_StaticFields*)il2cpp_codegen_static_fields_for(JEnumerable_1_t8D29AB2A452946C954DC038C163C500CD83ACEF1_il2cpp_TypeInfo_var))->get_Empty_0();
return L_0;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JToken::Remove()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JToken_Remove_mF35E87978A3AA0EBAAC3BEDE0489BAF613EB0816 (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JToken_Remove_mF35E87978A3AA0EBAAC3BEDE0489BAF613EB0816_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * L_0 = __this->get__parent_0();
if (L_0)
{
goto IL_0013;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, _stringLiteral6C78F1B60E71C02186DABD32E2331DA327CE2D12, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, JToken_Remove_mF35E87978A3AA0EBAAC3BEDE0489BAF613EB0816_RuntimeMethod_var);
}
IL_0013:
{
JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * L_2 = __this->get__parent_0();
NullCheck(L_2);
VirtFuncInvoker1< bool, JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * >::Invoke(48 /* System.Boolean Valve.Newtonsoft.Json.Linq.JContainer::RemoveItem(Valve.Newtonsoft.Json.Linq.JToken) */, L_2, __this);
return;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JToken::Replace(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JToken_Replace_mBD488D6D6B819F847C52F1FFC5205712C01438F6 (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * __this, JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JToken_Replace_mBD488D6D6B819F847C52F1FFC5205712C01438F6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * L_0 = __this->get__parent_0();
if (L_0)
{
goto IL_0013;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, _stringLiteral6C78F1B60E71C02186DABD32E2331DA327CE2D12, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, JToken_Replace_mBD488D6D6B819F847C52F1FFC5205712C01438F6_RuntimeMethod_var);
}
IL_0013:
{
JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * L_2 = __this->get__parent_0();
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_3 = ___value0;
NullCheck(L_2);
VirtActionInvoker2< JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 *, JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * >::Invoke(52 /* System.Void Valve.Newtonsoft.Json.Linq.JContainer::ReplaceItem(Valve.Newtonsoft.Json.Linq.JToken,Valve.Newtonsoft.Json.Linq.JToken) */, L_2, __this, L_3);
return;
}
}
// System.String Valve.Newtonsoft.Json.Linq.JToken::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JToken_ToString_m8082E5C3FD49D09ACCAB8BA84B9FBE16F36E61E8 (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JToken_ToString_m8082E5C3FD49D09ACCAB8BA84B9FBE16F36E61E8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
JsonConverterU5BU5D_tFCEA4D4687200F08D8F41AFF4CDC7EE5E08AACAB* L_0 = (JsonConverterU5BU5D_tFCEA4D4687200F08D8F41AFF4CDC7EE5E08AACAB*)(JsonConverterU5BU5D_tFCEA4D4687200F08D8F41AFF4CDC7EE5E08AACAB*)SZArrayNew(JsonConverterU5BU5D_tFCEA4D4687200F08D8F41AFF4CDC7EE5E08AACAB_il2cpp_TypeInfo_var, (uint32_t)0);
String_t* L_1 = JToken_ToString_m306344673FA4886CFDDFBFEA927AE665A55ADA22(__this, 1, L_0, /*hidden argument*/NULL);
return L_1;
}
}
// System.String Valve.Newtonsoft.Json.Linq.JToken::ToString(Valve.Newtonsoft.Json.Formatting,Valve.Newtonsoft.Json.JsonConverter[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JToken_ToString_m306344673FA4886CFDDFBFEA927AE665A55ADA22 (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * __this, int32_t ___formatting0, JsonConverterU5BU5D_tFCEA4D4687200F08D8F41AFF4CDC7EE5E08AACAB* ___converters1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JToken_ToString_m306344673FA4886CFDDFBFEA927AE665A55ADA22_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
StringWriter_t194EF1526E072B93984370042AA80926C2EB6139 * V_0 = NULL;
JsonTextWriter_t56407EC76E70ABAD12ED7BF65BCF353E98D18FC6 * V_1 = NULL;
String_t* V_2 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_0 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
StringWriter_t194EF1526E072B93984370042AA80926C2EB6139 * L_1 = (StringWriter_t194EF1526E072B93984370042AA80926C2EB6139 *)il2cpp_codegen_object_new(StringWriter_t194EF1526E072B93984370042AA80926C2EB6139_il2cpp_TypeInfo_var);
StringWriter__ctor_m4D44D4D5B0CFDEEB172C7D61171340D76432A1EE(L_1, L_0, /*hidden argument*/NULL);
V_0 = L_1;
}
IL_000b:
try
{ // begin try (depth: 1)
StringWriter_t194EF1526E072B93984370042AA80926C2EB6139 * L_2 = V_0;
JsonTextWriter_t56407EC76E70ABAD12ED7BF65BCF353E98D18FC6 * L_3 = (JsonTextWriter_t56407EC76E70ABAD12ED7BF65BCF353E98D18FC6 *)il2cpp_codegen_object_new(JsonTextWriter_t56407EC76E70ABAD12ED7BF65BCF353E98D18FC6_il2cpp_TypeInfo_var);
JsonTextWriter__ctor_m6A65911186F3177C78B402AA4E42B375BFB38482(L_3, L_2, /*hidden argument*/NULL);
V_1 = L_3;
JsonTextWriter_t56407EC76E70ABAD12ED7BF65BCF353E98D18FC6 * L_4 = V_1;
int32_t L_5 = ___formatting0;
NullCheck(L_4);
JsonWriter_set_Formatting_m5CDDE84AEA2B048C10F16AF91243CCFDE0387CA1(L_4, L_5, /*hidden argument*/NULL);
JsonTextWriter_t56407EC76E70ABAD12ED7BF65BCF353E98D18FC6 * L_6 = V_1;
JsonConverterU5BU5D_tFCEA4D4687200F08D8F41AFF4CDC7EE5E08AACAB* L_7 = ___converters1;
VirtActionInvoker2< JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E *, JsonConverterU5BU5D_tFCEA4D4687200F08D8F41AFF4CDC7EE5E08AACAB* >::Invoke(16 /* System.Void Valve.Newtonsoft.Json.Linq.JToken::WriteTo(Valve.Newtonsoft.Json.JsonWriter,Valve.Newtonsoft.Json.JsonConverter[]) */, __this, L_6, L_7);
StringWriter_t194EF1526E072B93984370042AA80926C2EB6139 * L_8 = V_0;
NullCheck(L_8);
String_t* L_9 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_8);
V_2 = L_9;
IL2CPP_LEAVE(0x34, FINALLY_002a);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_002a;
}
FINALLY_002a:
{ // begin finally (depth: 1)
{
StringWriter_t194EF1526E072B93984370042AA80926C2EB6139 * L_10 = V_0;
if (!L_10)
{
goto IL_0033;
}
}
IL_002d:
{
StringWriter_t194EF1526E072B93984370042AA80926C2EB6139 * L_11 = V_0;
NullCheck(L_11);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_11);
}
IL_0033:
{
IL2CPP_END_FINALLY(42)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(42)
{
IL2CPP_JUMP_TBL(0x34, IL_0034)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0034:
{
String_t* L_12 = V_2;
return L_12;
}
}
// Valve.Newtonsoft.Json.Linq.JValue Valve.Newtonsoft.Json.Linq.JToken::EnsureValue(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * JToken_EnsureValue_m29697CE7680576BB6FBCBE36F876F9AF97384D85 (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JToken_EnsureValue_m29697CE7680576BB6FBCBE36F876F9AF97384D85_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * 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, _stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, JToken_EnsureValue_m29697CE7680576BB6FBCBE36F876F9AF97384D85_RuntimeMethod_var);
}
IL_000e:
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_2 = ___value0;
if (!((JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF *)IsInstClass((RuntimeObject*)L_2, JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF_il2cpp_TypeInfo_var)))
{
goto IL_0023;
}
}
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_3 = ___value0;
NullCheck(((JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF *)CastclassClass((RuntimeObject*)L_3, JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF_il2cpp_TypeInfo_var)));
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_4 = JProperty_get_Value_m21DE887CFE1475851AB5EACB2D7C91BDE5F70571(((JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF *)CastclassClass((RuntimeObject*)L_3, JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
___value0 = L_4;
}
IL_0023:
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_5 = ___value0;
return ((JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 *)IsInstClass((RuntimeObject*)L_5, JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3_il2cpp_TypeInfo_var));
}
}
// System.String Valve.Newtonsoft.Json.Linq.JToken::GetType(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JToken_GetType_m936BAF5656FA294832F37052918D181807F59906 (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___token0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JToken_GetType_m936BAF5656FA294832F37052918D181807F59906_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_0 = ___token0;
ValidationUtils_ArgumentNotNull_mA6823FB6A1184537A467BD3BAFA6C06126EF7AE9(L_0, _stringLiteralEE977806D7286510DA8B9A7492BA58E2484C0ECC, /*hidden argument*/NULL);
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_1 = ___token0;
if (!((JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF *)IsInstClass((RuntimeObject*)L_1, JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF_il2cpp_TypeInfo_var)))
{
goto IL_0020;
}
}
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_2 = ___token0;
NullCheck(((JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF *)CastclassClass((RuntimeObject*)L_2, JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF_il2cpp_TypeInfo_var)));
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_3 = JProperty_get_Value_m21DE887CFE1475851AB5EACB2D7C91BDE5F70571(((JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF *)CastclassClass((RuntimeObject*)L_2, JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
___token0 = L_3;
}
IL_0020:
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_4 = ___token0;
NullCheck(L_4);
int32_t L_5 = VirtFuncInvoker0< int32_t >::Invoke(11 /* Valve.Newtonsoft.Json.Linq.JTokenType Valve.Newtonsoft.Json.Linq.JToken::get_Type() */, L_4);
V_0 = L_5;
RuntimeObject * L_6 = Box(JTokenType_t43765D0A61D4F44B41AA73D201C761E37F4DDDAD_il2cpp_TypeInfo_var, (&V_0));
NullCheck(L_6);
String_t* L_7 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_6);
V_0 = *(int32_t*)UnBox(L_6);
return L_7;
}
}
// System.Boolean Valve.Newtonsoft.Json.Linq.JToken::ValidateToken(Valve.Newtonsoft.Json.Linq.JToken,Valve.Newtonsoft.Json.Linq.JTokenType[],System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JToken_ValidateToken_m7301477AC0BE9EA8911A05AC253126C4F2B05F68 (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___o0, JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* ___validTypes1, bool ___nullable2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JToken_ValidateToken_m7301477AC0BE9EA8911A05AC253126C4F2B05F68_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_0 = ___validTypes1;
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_1 = ___o0;
NullCheck(L_1);
int32_t L_2 = VirtFuncInvoker0< int32_t >::Invoke(11 /* Valve.Newtonsoft.Json.Linq.JTokenType Valve.Newtonsoft.Json.Linq.JToken::get_Type() */, L_1);
int32_t L_3 = Array_IndexOf_TisJTokenType_t43765D0A61D4F44B41AA73D201C761E37F4DDDAD_mA520CE43FA4D4479B47F64810CC997867FCA3823(L_0, L_2, /*hidden argument*/Array_IndexOf_TisJTokenType_t43765D0A61D4F44B41AA73D201C761E37F4DDDAD_mA520CE43FA4D4479B47F64810CC997867FCA3823_RuntimeMethod_var);
if ((!(((uint32_t)L_3) == ((uint32_t)(-1)))))
{
goto IL_002b;
}
}
{
bool L_4 = ___nullable2;
if (!L_4)
{
goto IL_0029;
}
}
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_5 = ___o0;
NullCheck(L_5);
int32_t L_6 = VirtFuncInvoker0< int32_t >::Invoke(11 /* Valve.Newtonsoft.Json.Linq.JTokenType Valve.Newtonsoft.Json.Linq.JToken::get_Type() */, L_5);
if ((((int32_t)L_6) == ((int32_t)((int32_t)10))))
{
goto IL_0027;
}
}
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_7 = ___o0;
NullCheck(L_7);
int32_t L_8 = VirtFuncInvoker0< int32_t >::Invoke(11 /* Valve.Newtonsoft.Json.Linq.JTokenType Valve.Newtonsoft.Json.Linq.JToken::get_Type() */, L_7);
return (bool)((((int32_t)L_8) == ((int32_t)((int32_t)11)))? 1 : 0);
}
IL_0027:
{
return (bool)1;
}
IL_0029:
{
return (bool)0;
}
IL_002b:
{
return (bool)1;
}
}
// System.Boolean Valve.Newtonsoft.Json.Linq.JToken::op_Explicit(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JToken_op_Explicit_mC85A803929686E2746F451B17F94D9C381941970 (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JToken_op_Explicit_mC85A803929686E2746F451B17F94D9C381941970_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * V_0 = NULL;
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_0 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_1 = JToken_EnsureValue_m29697CE7680576BB6FBCBE36F876F9AF97384D85(L_0, /*hidden argument*/NULL);
V_0 = L_1;
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_2 = V_0;
if (!L_2)
{
goto IL_0018;
}
}
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_3 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_4 = ((JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_StaticFields*)il2cpp_codegen_static_fields_for(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var))->get_BooleanTypes_4();
bool L_5 = JToken_ValidateToken_m7301477AC0BE9EA8911A05AC253126C4F2B05F68(L_3, L_4, (bool)0, /*hidden argument*/NULL);
if (L_5)
{
goto IL_0033;
}
}
IL_0018:
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_6 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_7 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
String_t* L_8 = JToken_GetType_m936BAF5656FA294832F37052918D181807F59906(L_7, /*hidden argument*/NULL);
String_t* L_9 = StringUtils_FormatWith_mA244260995FC801D82F22EC897F3F8BEB8649583(_stringLiteralBF53DFA37AD6507D1881FF7E3333E19BAE917757, L_6, L_8, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_10 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_10, L_9, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, JToken_op_Explicit_mC85A803929686E2746F451B17F94D9C381941970_RuntimeMethod_var);
}
IL_0033:
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_11 = V_0;
NullCheck(L_11);
RuntimeObject * L_12 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_11, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_13 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
bool L_14 = Convert_ToBoolean_m881535C7C6F8B032F5883E7F18A90C27690FB5E4(L_12, L_13, /*hidden argument*/NULL);
return L_14;
}
}
// System.DateTimeOffset Valve.Newtonsoft.Json.Linq.JToken::op_Explicit(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 JToken_op_Explicit_m96FDA8D285EF8DE68D836B9F923CBF88862B3112 (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JToken_op_Explicit_m96FDA8D285EF8DE68D836B9F923CBF88862B3112_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * V_0 = NULL;
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_0 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_1 = JToken_EnsureValue_m29697CE7680576BB6FBCBE36F876F9AF97384D85(L_0, /*hidden argument*/NULL);
V_0 = L_1;
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_2 = V_0;
if (!L_2)
{
goto IL_0018;
}
}
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_3 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_4 = ((JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_StaticFields*)il2cpp_codegen_static_fields_for(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var))->get_DateTimeTypes_11();
bool L_5 = JToken_ValidateToken_m7301477AC0BE9EA8911A05AC253126C4F2B05F68(L_3, L_4, (bool)0, /*hidden argument*/NULL);
if (L_5)
{
goto IL_0033;
}
}
IL_0018:
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_6 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_7 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
String_t* L_8 = JToken_GetType_m936BAF5656FA294832F37052918D181807F59906(L_7, /*hidden argument*/NULL);
String_t* L_9 = StringUtils_FormatWith_mA244260995FC801D82F22EC897F3F8BEB8649583(_stringLiteral3FCACDE1D22CD4DF1B9EF0ED89079C31B4C13AA0, L_6, L_8, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_10 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_10, L_9, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, JToken_op_Explicit_m96FDA8D285EF8DE68D836B9F923CBF88862B3112_RuntimeMethod_var);
}
IL_0033:
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_11 = V_0;
NullCheck(L_11);
RuntimeObject * L_12 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_11, /*hidden argument*/NULL);
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_12, DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_il2cpp_TypeInfo_var)))
{
goto IL_004c;
}
}
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_13 = V_0;
NullCheck(L_13);
RuntimeObject * L_14 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_13, /*hidden argument*/NULL);
return ((*(DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 *)((DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 *)UnBox(L_14, DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_il2cpp_TypeInfo_var))));
}
IL_004c:
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_15 = V_0;
NullCheck(L_15);
RuntimeObject * L_16 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_15, /*hidden argument*/NULL);
if (!((String_t*)IsInstSealed((RuntimeObject*)L_16, String_t_il2cpp_TypeInfo_var)))
{
goto IL_006f;
}
}
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_17 = V_0;
NullCheck(L_17);
RuntimeObject * L_18 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_17, /*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(DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_il2cpp_TypeInfo_var);
DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 L_20 = DateTimeOffset_Parse_m219FE48FD7B6B4936B3BD5257F5D87CFA1545ED7(((String_t*)CastclassSealed((RuntimeObject*)L_18, String_t_il2cpp_TypeInfo_var)), L_19, /*hidden argument*/NULL);
return L_20;
}
IL_006f:
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_21 = V_0;
NullCheck(L_21);
RuntimeObject * L_22 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_21, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_23 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_24 = Convert_ToDateTime_m246003CF3103F7DF9D6E817DCEFAE2CF8068862D(L_22, L_23, /*hidden argument*/NULL);
DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 L_25;
memset((&L_25), 0, sizeof(L_25));
DateTimeOffset__ctor_mFD299293EB81B2254A30C665E7613F7C40A10C69((&L_25), L_24, /*hidden argument*/NULL);
return L_25;
}
}
// System.Nullable`1<System.Boolean> Valve.Newtonsoft.Json.Linq.JToken::op_Explicit(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 JToken_op_Explicit_m1E9A9C48AA45CF496362D8EC2C8C710289691F4C (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JToken_op_Explicit_m1E9A9C48AA45CF496362D8EC2C8C710289691F4C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * V_0 = NULL;
Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 V_1;
memset((&V_1), 0, sizeof(V_1));
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_0 = ___value0;
if (L_0)
{
goto IL_000d;
}
}
{
il2cpp_codegen_initobj((&V_1), sizeof(Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 ));
Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 L_1 = V_1;
return L_1;
}
IL_000d:
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_2 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_3 = JToken_EnsureValue_m29697CE7680576BB6FBCBE36F876F9AF97384D85(L_2, /*hidden argument*/NULL);
V_0 = L_3;
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_4 = V_0;
if (!L_4)
{
goto IL_0025;
}
}
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_5 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_6 = ((JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_StaticFields*)il2cpp_codegen_static_fields_for(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var))->get_BooleanTypes_4();
bool L_7 = JToken_ValidateToken_m7301477AC0BE9EA8911A05AC253126C4F2B05F68(L_5, L_6, (bool)1, /*hidden argument*/NULL);
if (L_7)
{
goto IL_0040;
}
}
IL_0025:
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_8 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_9 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
String_t* L_10 = JToken_GetType_m936BAF5656FA294832F37052918D181807F59906(L_9, /*hidden argument*/NULL);
String_t* L_11 = StringUtils_FormatWith_mA244260995FC801D82F22EC897F3F8BEB8649583(_stringLiteralBF53DFA37AD6507D1881FF7E3333E19BAE917757, L_8, L_10, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_12 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_12, L_11, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, JToken_op_Explicit_m1E9A9C48AA45CF496362D8EC2C8C710289691F4C_RuntimeMethod_var);
}
IL_0040:
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_13 = V_0;
NullCheck(L_13);
RuntimeObject * L_14 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_13, /*hidden argument*/NULL);
if (L_14)
{
goto IL_0052;
}
}
{
il2cpp_codegen_initobj((&V_1), sizeof(Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 ));
Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 L_15 = V_1;
return L_15;
}
IL_0052:
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_16 = V_0;
NullCheck(L_16);
RuntimeObject * L_17 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_16, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_18 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
bool L_19 = Convert_ToBoolean_m881535C7C6F8B032F5883E7F18A90C27690FB5E4(L_17, L_18, /*hidden argument*/NULL);
Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 L_20;
memset((&L_20), 0, sizeof(L_20));
Nullable_1__ctor_mD3154885E88D449C69AD9DEA6F9A3EF66A3FE996((&L_20), L_19, /*hidden argument*/Nullable_1__ctor_mD3154885E88D449C69AD9DEA6F9A3EF66A3FE996_RuntimeMethod_var);
return L_20;
}
}
// System.Int64 Valve.Newtonsoft.Json.Linq.JToken::op_Explicit(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t JToken_op_Explicit_m3B70105D407BAD5D01D511E04215FB146ED1C8EF (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JToken_op_Explicit_m3B70105D407BAD5D01D511E04215FB146ED1C8EF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * V_0 = NULL;
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_0 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_1 = JToken_EnsureValue_m29697CE7680576BB6FBCBE36F876F9AF97384D85(L_0, /*hidden argument*/NULL);
V_0 = L_1;
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_2 = V_0;
if (!L_2)
{
goto IL_0018;
}
}
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_3 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_4 = ((JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_StaticFields*)il2cpp_codegen_static_fields_for(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var))->get_NumberTypes_5();
bool L_5 = JToken_ValidateToken_m7301477AC0BE9EA8911A05AC253126C4F2B05F68(L_3, L_4, (bool)0, /*hidden argument*/NULL);
if (L_5)
{
goto IL_0033;
}
}
IL_0018:
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_6 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_7 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
String_t* L_8 = JToken_GetType_m936BAF5656FA294832F37052918D181807F59906(L_7, /*hidden argument*/NULL);
String_t* L_9 = StringUtils_FormatWith_mA244260995FC801D82F22EC897F3F8BEB8649583(_stringLiteral05AFC91C2FD53968B9C5F6D20522BC27CDDA09D0, L_6, L_8, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_10 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_10, L_9, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, JToken_op_Explicit_m3B70105D407BAD5D01D511E04215FB146ED1C8EF_RuntimeMethod_var);
}
IL_0033:
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_11 = V_0;
NullCheck(L_11);
RuntimeObject * L_12 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_11, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_13 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
int64_t L_14 = Convert_ToInt64_m8964FDE5D82FEC54106DBF35E1F67D70F6E73E29(L_12, L_13, /*hidden argument*/NULL);
return L_14;
}
}
// System.Nullable`1<System.DateTime> Valve.Newtonsoft.Json.Linq.JToken::op_Explicit(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_t3290384E361396B3724B88B498CBF637D7E87B78 JToken_op_Explicit_m7742F5054343B22E5355351816390A528A303074 (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JToken_op_Explicit_m7742F5054343B22E5355351816390A528A303074_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * V_0 = NULL;
Nullable_1_t3290384E361396B3724B88B498CBF637D7E87B78 V_1;
memset((&V_1), 0, sizeof(V_1));
DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 V_2;
memset((&V_2), 0, sizeof(V_2));
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_0 = ___value0;
if (L_0)
{
goto IL_000d;
}
}
{
il2cpp_codegen_initobj((&V_1), sizeof(Nullable_1_t3290384E361396B3724B88B498CBF637D7E87B78 ));
Nullable_1_t3290384E361396B3724B88B498CBF637D7E87B78 L_1 = V_1;
return L_1;
}
IL_000d:
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_2 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_3 = JToken_EnsureValue_m29697CE7680576BB6FBCBE36F876F9AF97384D85(L_2, /*hidden argument*/NULL);
V_0 = L_3;
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_4 = V_0;
if (!L_4)
{
goto IL_0025;
}
}
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_5 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_6 = ((JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_StaticFields*)il2cpp_codegen_static_fields_for(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var))->get_DateTimeTypes_11();
bool L_7 = JToken_ValidateToken_m7301477AC0BE9EA8911A05AC253126C4F2B05F68(L_5, L_6, (bool)1, /*hidden argument*/NULL);
if (L_7)
{
goto IL_0040;
}
}
IL_0025:
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_8 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_9 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
String_t* L_10 = JToken_GetType_m936BAF5656FA294832F37052918D181807F59906(L_9, /*hidden argument*/NULL);
String_t* L_11 = StringUtils_FormatWith_mA244260995FC801D82F22EC897F3F8BEB8649583(_stringLiteral287963E3FCCA4558A1264C7711945B6152BA400E, L_8, L_10, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_12 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_12, L_11, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, JToken_op_Explicit_m7742F5054343B22E5355351816390A528A303074_RuntimeMethod_var);
}
IL_0040:
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_13 = V_0;
NullCheck(L_13);
RuntimeObject * L_14 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_13, /*hidden argument*/NULL);
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_14, DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_il2cpp_TypeInfo_var)))
{
goto IL_0066;
}
}
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_15 = V_0;
NullCheck(L_15);
RuntimeObject * L_16 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_15, /*hidden argument*/NULL);
V_2 = ((*(DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 *)((DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 *)UnBox(L_16, DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_il2cpp_TypeInfo_var))));
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_17 = DateTimeOffset_get_DateTime_m5101B7B7920B8C28AB2D5A7E4B8F7C2FAFC2F328((DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 *)(&V_2), /*hidden argument*/NULL);
Nullable_1_t3290384E361396B3724B88B498CBF637D7E87B78 L_18;
memset((&L_18), 0, sizeof(L_18));
Nullable_1__ctor_m381D5B1CD79C026584C8072033C17C7F05398C29((&L_18), L_17, /*hidden argument*/Nullable_1__ctor_m381D5B1CD79C026584C8072033C17C7F05398C29_RuntimeMethod_var);
return L_18;
}
IL_0066:
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_19 = V_0;
NullCheck(L_19);
RuntimeObject * L_20 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_19, /*hidden argument*/NULL);
if (L_20)
{
goto IL_0078;
}
}
{
il2cpp_codegen_initobj((&V_1), sizeof(Nullable_1_t3290384E361396B3724B88B498CBF637D7E87B78 ));
Nullable_1_t3290384E361396B3724B88B498CBF637D7E87B78 L_21 = V_1;
return L_21;
}
IL_0078:
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_22 = V_0;
NullCheck(L_22);
RuntimeObject * L_23 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_22, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_24 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_25 = Convert_ToDateTime_m246003CF3103F7DF9D6E817DCEFAE2CF8068862D(L_23, L_24, /*hidden argument*/NULL);
Nullable_1_t3290384E361396B3724B88B498CBF637D7E87B78 L_26;
memset((&L_26), 0, sizeof(L_26));
Nullable_1__ctor_m381D5B1CD79C026584C8072033C17C7F05398C29((&L_26), L_25, /*hidden argument*/Nullable_1__ctor_m381D5B1CD79C026584C8072033C17C7F05398C29_RuntimeMethod_var);
return L_26;
}
}
// System.Nullable`1<System.DateTimeOffset> Valve.Newtonsoft.Json.Linq.JToken::op_Explicit(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_tD63596AAA40EDF5AE4981F1C2B4F3A8A24E1DD67 JToken_op_Explicit_mC85D8549261D1AA45EDA536128EB37846421DFFE (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JToken_op_Explicit_mC85D8549261D1AA45EDA536128EB37846421DFFE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * V_0 = NULL;
Nullable_1_tD63596AAA40EDF5AE4981F1C2B4F3A8A24E1DD67 V_1;
memset((&V_1), 0, sizeof(V_1));
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_0 = ___value0;
if (L_0)
{
goto IL_000d;
}
}
{
il2cpp_codegen_initobj((&V_1), sizeof(Nullable_1_tD63596AAA40EDF5AE4981F1C2B4F3A8A24E1DD67 ));
Nullable_1_tD63596AAA40EDF5AE4981F1C2B4F3A8A24E1DD67 L_1 = V_1;
return L_1;
}
IL_000d:
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_2 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_3 = JToken_EnsureValue_m29697CE7680576BB6FBCBE36F876F9AF97384D85(L_2, /*hidden argument*/NULL);
V_0 = L_3;
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_4 = V_0;
if (!L_4)
{
goto IL_0025;
}
}
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_5 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_6 = ((JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_StaticFields*)il2cpp_codegen_static_fields_for(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var))->get_DateTimeTypes_11();
bool L_7 = JToken_ValidateToken_m7301477AC0BE9EA8911A05AC253126C4F2B05F68(L_5, L_6, (bool)1, /*hidden argument*/NULL);
if (L_7)
{
goto IL_0040;
}
}
IL_0025:
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_8 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_9 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
String_t* L_10 = JToken_GetType_m936BAF5656FA294832F37052918D181807F59906(L_9, /*hidden argument*/NULL);
String_t* L_11 = StringUtils_FormatWith_mA244260995FC801D82F22EC897F3F8BEB8649583(_stringLiteral3FCACDE1D22CD4DF1B9EF0ED89079C31B4C13AA0, L_8, L_10, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_12 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_12, L_11, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, JToken_op_Explicit_mC85D8549261D1AA45EDA536128EB37846421DFFE_RuntimeMethod_var);
}
IL_0040:
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_13 = V_0;
NullCheck(L_13);
RuntimeObject * L_14 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_13, /*hidden argument*/NULL);
if (L_14)
{
goto IL_0052;
}
}
{
il2cpp_codegen_initobj((&V_1), sizeof(Nullable_1_tD63596AAA40EDF5AE4981F1C2B4F3A8A24E1DD67 ));
Nullable_1_tD63596AAA40EDF5AE4981F1C2B4F3A8A24E1DD67 L_15 = V_1;
return L_15;
}
IL_0052:
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_16 = V_0;
NullCheck(L_16);
RuntimeObject * L_17 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_16, /*hidden argument*/NULL);
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_17, DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_il2cpp_TypeInfo_var)))
{
goto IL_006b;
}
}
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_18 = V_0;
NullCheck(L_18);
RuntimeObject * L_19 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_18, /*hidden argument*/NULL);
void* L_20 = alloca(sizeof(Nullable_1_tD63596AAA40EDF5AE4981F1C2B4F3A8A24E1DD67 ));
UnBoxNullable(L_19, DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_il2cpp_TypeInfo_var, L_20);
return ((*(Nullable_1_tD63596AAA40EDF5AE4981F1C2B4F3A8A24E1DD67 *)((Nullable_1_tD63596AAA40EDF5AE4981F1C2B4F3A8A24E1DD67 *)L_20)));
}
IL_006b:
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_21 = V_0;
NullCheck(L_21);
RuntimeObject * L_22 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_21, /*hidden argument*/NULL);
if (!((String_t*)IsInstSealed((RuntimeObject*)L_22, String_t_il2cpp_TypeInfo_var)))
{
goto IL_0093;
}
}
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_23 = V_0;
NullCheck(L_23);
RuntimeObject * L_24 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_23, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_25 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_il2cpp_TypeInfo_var);
DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 L_26 = DateTimeOffset_Parse_m219FE48FD7B6B4936B3BD5257F5D87CFA1545ED7(((String_t*)CastclassSealed((RuntimeObject*)L_24, String_t_il2cpp_TypeInfo_var)), L_25, /*hidden argument*/NULL);
Nullable_1_tD63596AAA40EDF5AE4981F1C2B4F3A8A24E1DD67 L_27;
memset((&L_27), 0, sizeof(L_27));
Nullable_1__ctor_mA246C4883116BD24CCF0E607B6144637B4B7A1DA((&L_27), L_26, /*hidden argument*/Nullable_1__ctor_mA246C4883116BD24CCF0E607B6144637B4B7A1DA_RuntimeMethod_var);
return L_27;
}
IL_0093:
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_28 = V_0;
NullCheck(L_28);
RuntimeObject * L_29 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_28, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_30 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_31 = Convert_ToDateTime_m246003CF3103F7DF9D6E817DCEFAE2CF8068862D(L_29, L_30, /*hidden argument*/NULL);
DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 L_32;
memset((&L_32), 0, sizeof(L_32));
DateTimeOffset__ctor_mFD299293EB81B2254A30C665E7613F7C40A10C69((&L_32), L_31, /*hidden argument*/NULL);
Nullable_1_tD63596AAA40EDF5AE4981F1C2B4F3A8A24E1DD67 L_33;
memset((&L_33), 0, sizeof(L_33));
Nullable_1__ctor_mA246C4883116BD24CCF0E607B6144637B4B7A1DA((&L_33), L_32, /*hidden argument*/Nullable_1__ctor_mA246C4883116BD24CCF0E607B6144637B4B7A1DA_RuntimeMethod_var);
return L_33;
}
}
// System.Nullable`1<System.Decimal> Valve.Newtonsoft.Json.Linq.JToken::op_Explicit(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_t980A9BF956626264580BF8B4E1E3DBD88D9337C1 JToken_op_Explicit_mFB9585959C8EEC5EB76A6F32BD5BB46C970373BC (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JToken_op_Explicit_mFB9585959C8EEC5EB76A6F32BD5BB46C970373BC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * V_0 = NULL;
Nullable_1_t980A9BF956626264580BF8B4E1E3DBD88D9337C1 V_1;
memset((&V_1), 0, sizeof(V_1));
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_0 = ___value0;
if (L_0)
{
goto IL_000d;
}
}
{
il2cpp_codegen_initobj((&V_1), sizeof(Nullable_1_t980A9BF956626264580BF8B4E1E3DBD88D9337C1 ));
Nullable_1_t980A9BF956626264580BF8B4E1E3DBD88D9337C1 L_1 = V_1;
return L_1;
}
IL_000d:
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_2 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_3 = JToken_EnsureValue_m29697CE7680576BB6FBCBE36F876F9AF97384D85(L_2, /*hidden argument*/NULL);
V_0 = L_3;
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_4 = V_0;
if (!L_4)
{
goto IL_0025;
}
}
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_5 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_6 = ((JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_StaticFields*)il2cpp_codegen_static_fields_for(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var))->get_NumberTypes_5();
bool L_7 = JToken_ValidateToken_m7301477AC0BE9EA8911A05AC253126C4F2B05F68(L_5, L_6, (bool)1, /*hidden argument*/NULL);
if (L_7)
{
goto IL_0040;
}
}
IL_0025:
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_8 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_9 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
String_t* L_10 = JToken_GetType_m936BAF5656FA294832F37052918D181807F59906(L_9, /*hidden argument*/NULL);
String_t* L_11 = StringUtils_FormatWith_mA244260995FC801D82F22EC897F3F8BEB8649583(_stringLiteralB1ADD154930F109C2BDFA7849F24552E1685AB98, L_8, L_10, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_12 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_12, L_11, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, JToken_op_Explicit_mFB9585959C8EEC5EB76A6F32BD5BB46C970373BC_RuntimeMethod_var);
}
IL_0040:
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_13 = V_0;
NullCheck(L_13);
RuntimeObject * L_14 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_13, /*hidden argument*/NULL);
if (L_14)
{
goto IL_0052;
}
}
{
il2cpp_codegen_initobj((&V_1), sizeof(Nullable_1_t980A9BF956626264580BF8B4E1E3DBD88D9337C1 ));
Nullable_1_t980A9BF956626264580BF8B4E1E3DBD88D9337C1 L_15 = V_1;
return L_15;
}
IL_0052:
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_16 = V_0;
NullCheck(L_16);
RuntimeObject * L_17 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_16, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_18 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_19 = Convert_ToDecimal_mD8F65E8B251DBE61789CAD032172D089375D1E5B(L_17, L_18, /*hidden argument*/NULL);
Nullable_1_t980A9BF956626264580BF8B4E1E3DBD88D9337C1 L_20;
memset((&L_20), 0, sizeof(L_20));
Nullable_1__ctor_m431A7B37A7FB27E824A48CAAF72930B7D596399D((&L_20), L_19, /*hidden argument*/Nullable_1__ctor_m431A7B37A7FB27E824A48CAAF72930B7D596399D_RuntimeMethod_var);
return L_20;
}
}
// System.Nullable`1<System.Double> Valve.Newtonsoft.Json.Linq.JToken::op_Explicit(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_tBFE8022F4FD60FAE6E29634776F92F0C7DDF0ECF JToken_op_Explicit_m416851C04EED574BB38FBA7B22993342FB2BF71C (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JToken_op_Explicit_m416851C04EED574BB38FBA7B22993342FB2BF71C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * V_0 = NULL;
Nullable_1_tBFE8022F4FD60FAE6E29634776F92F0C7DDF0ECF V_1;
memset((&V_1), 0, sizeof(V_1));
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_0 = ___value0;
if (L_0)
{
goto IL_000d;
}
}
{
il2cpp_codegen_initobj((&V_1), sizeof(Nullable_1_tBFE8022F4FD60FAE6E29634776F92F0C7DDF0ECF ));
Nullable_1_tBFE8022F4FD60FAE6E29634776F92F0C7DDF0ECF L_1 = V_1;
return L_1;
}
IL_000d:
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_2 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_3 = JToken_EnsureValue_m29697CE7680576BB6FBCBE36F876F9AF97384D85(L_2, /*hidden argument*/NULL);
V_0 = L_3;
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_4 = V_0;
if (!L_4)
{
goto IL_0025;
}
}
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_5 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_6 = ((JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_StaticFields*)il2cpp_codegen_static_fields_for(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var))->get_NumberTypes_5();
bool L_7 = JToken_ValidateToken_m7301477AC0BE9EA8911A05AC253126C4F2B05F68(L_5, L_6, (bool)1, /*hidden argument*/NULL);
if (L_7)
{
goto IL_0040;
}
}
IL_0025:
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_8 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_9 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
String_t* L_10 = JToken_GetType_m936BAF5656FA294832F37052918D181807F59906(L_9, /*hidden argument*/NULL);
String_t* L_11 = StringUtils_FormatWith_mA244260995FC801D82F22EC897F3F8BEB8649583(_stringLiteralC538E2C770D6019AF5417BC48E03CD72E0EE0E3B, L_8, L_10, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_12 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_12, L_11, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, JToken_op_Explicit_m416851C04EED574BB38FBA7B22993342FB2BF71C_RuntimeMethod_var);
}
IL_0040:
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_13 = V_0;
NullCheck(L_13);
RuntimeObject * L_14 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_13, /*hidden argument*/NULL);
if (L_14)
{
goto IL_0052;
}
}
{
il2cpp_codegen_initobj((&V_1), sizeof(Nullable_1_tBFE8022F4FD60FAE6E29634776F92F0C7DDF0ECF ));
Nullable_1_tBFE8022F4FD60FAE6E29634776F92F0C7DDF0ECF L_15 = V_1;
return L_15;
}
IL_0052:
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_16 = V_0;
NullCheck(L_16);
RuntimeObject * L_17 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_16, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_18 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
double L_19 = Convert_ToDouble_m053A47D87C59CA7A87D4E67E5E06368D775D7651(L_17, L_18, /*hidden argument*/NULL);
Nullable_1_tBFE8022F4FD60FAE6E29634776F92F0C7DDF0ECF L_20;
memset((&L_20), 0, sizeof(L_20));
Nullable_1__ctor_m5ED9C022C8C437BF7E37E2A3B10C055DDA89CD67((&L_20), L_19, /*hidden argument*/Nullable_1__ctor_m5ED9C022C8C437BF7E37E2A3B10C055DDA89CD67_RuntimeMethod_var);
return L_20;
}
}
// System.Nullable`1<System.Char> Valve.Newtonsoft.Json.Linq.JToken::op_Explicit(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_tEB9036CD852DD7DCDAC49BEEC424155F285C4FD6 JToken_op_Explicit_m4B2C0E17D59DD2C8C1FF029F40761CBC3F5F997C (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JToken_op_Explicit_m4B2C0E17D59DD2C8C1FF029F40761CBC3F5F997C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * V_0 = NULL;
Nullable_1_tEB9036CD852DD7DCDAC49BEEC424155F285C4FD6 V_1;
memset((&V_1), 0, sizeof(V_1));
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_0 = ___value0;
if (L_0)
{
goto IL_000d;
}
}
{
il2cpp_codegen_initobj((&V_1), sizeof(Nullable_1_tEB9036CD852DD7DCDAC49BEEC424155F285C4FD6 ));
Nullable_1_tEB9036CD852DD7DCDAC49BEEC424155F285C4FD6 L_1 = V_1;
return L_1;
}
IL_000d:
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_2 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_3 = JToken_EnsureValue_m29697CE7680576BB6FBCBE36F876F9AF97384D85(L_2, /*hidden argument*/NULL);
V_0 = L_3;
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_4 = V_0;
if (!L_4)
{
goto IL_0025;
}
}
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_5 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_6 = ((JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_StaticFields*)il2cpp_codegen_static_fields_for(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var))->get_CharTypes_10();
bool L_7 = JToken_ValidateToken_m7301477AC0BE9EA8911A05AC253126C4F2B05F68(L_5, L_6, (bool)1, /*hidden argument*/NULL);
if (L_7)
{
goto IL_0040;
}
}
IL_0025:
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_8 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_9 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
String_t* L_10 = JToken_GetType_m936BAF5656FA294832F37052918D181807F59906(L_9, /*hidden argument*/NULL);
String_t* L_11 = StringUtils_FormatWith_mA244260995FC801D82F22EC897F3F8BEB8649583(_stringLiteral9BF8C9F3359FADD5E5334EF76B7C1BD967F955BC, L_8, L_10, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_12 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_12, L_11, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, JToken_op_Explicit_m4B2C0E17D59DD2C8C1FF029F40761CBC3F5F997C_RuntimeMethod_var);
}
IL_0040:
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_13 = V_0;
NullCheck(L_13);
RuntimeObject * L_14 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_13, /*hidden argument*/NULL);
if (L_14)
{
goto IL_0052;
}
}
{
il2cpp_codegen_initobj((&V_1), sizeof(Nullable_1_tEB9036CD852DD7DCDAC49BEEC424155F285C4FD6 ));
Nullable_1_tEB9036CD852DD7DCDAC49BEEC424155F285C4FD6 L_15 = V_1;
return L_15;
}
IL_0052:
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_16 = V_0;
NullCheck(L_16);
RuntimeObject * L_17 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_16, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_18 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
Il2CppChar L_19 = Convert_ToChar_m94EF86BDBD5110CF4C652C48A625F546AA24CE95(L_17, L_18, /*hidden argument*/NULL);
Nullable_1_tEB9036CD852DD7DCDAC49BEEC424155F285C4FD6 L_20;
memset((&L_20), 0, sizeof(L_20));
Nullable_1__ctor_mAFE62620EADA9FD8E49BA1C0E2A2815C8366D491((&L_20), L_19, /*hidden argument*/Nullable_1__ctor_mAFE62620EADA9FD8E49BA1C0E2A2815C8366D491_RuntimeMethod_var);
return L_20;
}
}
// System.Int32 Valve.Newtonsoft.Json.Linq.JToken::op_Explicit(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JToken_op_Explicit_m5623B70899025B395BF68890057E8827DFC09062 (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JToken_op_Explicit_m5623B70899025B395BF68890057E8827DFC09062_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * V_0 = NULL;
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_0 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_1 = JToken_EnsureValue_m29697CE7680576BB6FBCBE36F876F9AF97384D85(L_0, /*hidden argument*/NULL);
V_0 = L_1;
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_2 = V_0;
if (!L_2)
{
goto IL_0018;
}
}
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_3 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_4 = ((JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_StaticFields*)il2cpp_codegen_static_fields_for(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var))->get_NumberTypes_5();
bool L_5 = JToken_ValidateToken_m7301477AC0BE9EA8911A05AC253126C4F2B05F68(L_3, L_4, (bool)0, /*hidden argument*/NULL);
if (L_5)
{
goto IL_0033;
}
}
IL_0018:
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_6 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_7 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
String_t* L_8 = JToken_GetType_m936BAF5656FA294832F37052918D181807F59906(L_7, /*hidden argument*/NULL);
String_t* L_9 = StringUtils_FormatWith_mA244260995FC801D82F22EC897F3F8BEB8649583(_stringLiteralB2B5A792BA9DE865B14E2F9F7A2C4570571316B8, L_6, L_8, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_10 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_10, L_9, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, JToken_op_Explicit_m5623B70899025B395BF68890057E8827DFC09062_RuntimeMethod_var);
}
IL_0033:
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_11 = V_0;
NullCheck(L_11);
RuntimeObject * L_12 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_11, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_13 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
int32_t L_14 = Convert_ToInt32_m5D40340597602FB6C20BAB933E8B29617232757A(L_12, L_13, /*hidden argument*/NULL);
return L_14;
}
}
// System.Int16 Valve.Newtonsoft.Json.Linq.JToken::op_Explicit(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t JToken_op_Explicit_mFB7B71446CAF7B4C8B316D719C957D7379D8B45F (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JToken_op_Explicit_mFB7B71446CAF7B4C8B316D719C957D7379D8B45F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * V_0 = NULL;
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_0 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_1 = JToken_EnsureValue_m29697CE7680576BB6FBCBE36F876F9AF97384D85(L_0, /*hidden argument*/NULL);
V_0 = L_1;
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_2 = V_0;
if (!L_2)
{
goto IL_0018;
}
}
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_3 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_4 = ((JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_StaticFields*)il2cpp_codegen_static_fields_for(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var))->get_NumberTypes_5();
bool L_5 = JToken_ValidateToken_m7301477AC0BE9EA8911A05AC253126C4F2B05F68(L_3, L_4, (bool)0, /*hidden argument*/NULL);
if (L_5)
{
goto IL_0033;
}
}
IL_0018:
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_6 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_7 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
String_t* L_8 = JToken_GetType_m936BAF5656FA294832F37052918D181807F59906(L_7, /*hidden argument*/NULL);
String_t* L_9 = StringUtils_FormatWith_mA244260995FC801D82F22EC897F3F8BEB8649583(_stringLiteral9C6091F85A2D152EC49625D16996AD476352D8AB, L_6, L_8, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_10 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_10, L_9, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, JToken_op_Explicit_mFB7B71446CAF7B4C8B316D719C957D7379D8B45F_RuntimeMethod_var);
}
IL_0033:
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_11 = V_0;
NullCheck(L_11);
RuntimeObject * L_12 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_11, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_13 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
int16_t L_14 = Convert_ToInt16_m9E4E48A97E050355468F58D2EAEB3AB3C811CE8B(L_12, L_13, /*hidden argument*/NULL);
return L_14;
}
}
// System.UInt16 Valve.Newtonsoft.Json.Linq.JToken::op_Explicit(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t JToken_op_Explicit_mAB7E763BA2CB33D56DFFBB8A5E83F4670B2805A1 (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JToken_op_Explicit_mAB7E763BA2CB33D56DFFBB8A5E83F4670B2805A1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * V_0 = NULL;
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_0 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_1 = JToken_EnsureValue_m29697CE7680576BB6FBCBE36F876F9AF97384D85(L_0, /*hidden argument*/NULL);
V_0 = L_1;
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_2 = V_0;
if (!L_2)
{
goto IL_0018;
}
}
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_3 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_4 = ((JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_StaticFields*)il2cpp_codegen_static_fields_for(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var))->get_NumberTypes_5();
bool L_5 = JToken_ValidateToken_m7301477AC0BE9EA8911A05AC253126C4F2B05F68(L_3, L_4, (bool)0, /*hidden argument*/NULL);
if (L_5)
{
goto IL_0033;
}
}
IL_0018:
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_6 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_7 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
String_t* L_8 = JToken_GetType_m936BAF5656FA294832F37052918D181807F59906(L_7, /*hidden argument*/NULL);
String_t* L_9 = StringUtils_FormatWith_mA244260995FC801D82F22EC897F3F8BEB8649583(_stringLiteralE1C5DF38EBC500A74B5F66D754DDF5CB66C9685F, L_6, L_8, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_10 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_10, L_9, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, JToken_op_Explicit_mAB7E763BA2CB33D56DFFBB8A5E83F4670B2805A1_RuntimeMethod_var);
}
IL_0033:
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_11 = V_0;
NullCheck(L_11);
RuntimeObject * L_12 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_11, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_13 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
uint16_t L_14 = Convert_ToUInt16_mB7311DB5960043FD81C1305B69C5328126F43C89(L_12, L_13, /*hidden argument*/NULL);
return L_14;
}
}
// System.Char Valve.Newtonsoft.Json.Linq.JToken::op_Explicit(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar JToken_op_Explicit_mA3627E69282A828ABE2FF505D43B887C1E54CC6F (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JToken_op_Explicit_mA3627E69282A828ABE2FF505D43B887C1E54CC6F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * V_0 = NULL;
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_0 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_1 = JToken_EnsureValue_m29697CE7680576BB6FBCBE36F876F9AF97384D85(L_0, /*hidden argument*/NULL);
V_0 = L_1;
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_2 = V_0;
if (!L_2)
{
goto IL_0018;
}
}
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_3 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_4 = ((JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_StaticFields*)il2cpp_codegen_static_fields_for(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var))->get_CharTypes_10();
bool L_5 = JToken_ValidateToken_m7301477AC0BE9EA8911A05AC253126C4F2B05F68(L_3, L_4, (bool)0, /*hidden argument*/NULL);
if (L_5)
{
goto IL_0033;
}
}
IL_0018:
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_6 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_7 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
String_t* L_8 = JToken_GetType_m936BAF5656FA294832F37052918D181807F59906(L_7, /*hidden argument*/NULL);
String_t* L_9 = StringUtils_FormatWith_mA244260995FC801D82F22EC897F3F8BEB8649583(_stringLiteral9BF8C9F3359FADD5E5334EF76B7C1BD967F955BC, L_6, L_8, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_10 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_10, L_9, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, JToken_op_Explicit_mA3627E69282A828ABE2FF505D43B887C1E54CC6F_RuntimeMethod_var);
}
IL_0033:
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_11 = V_0;
NullCheck(L_11);
RuntimeObject * L_12 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_11, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_13 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
Il2CppChar L_14 = Convert_ToChar_m94EF86BDBD5110CF4C652C48A625F546AA24CE95(L_12, L_13, /*hidden argument*/NULL);
return L_14;
}
}
// System.Byte Valve.Newtonsoft.Json.Linq.JToken::op_Explicit(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t JToken_op_Explicit_m082F0E38845FD5F318438D29D7A41D8B278030A8 (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JToken_op_Explicit_m082F0E38845FD5F318438D29D7A41D8B278030A8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * V_0 = NULL;
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_0 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_1 = JToken_EnsureValue_m29697CE7680576BB6FBCBE36F876F9AF97384D85(L_0, /*hidden argument*/NULL);
V_0 = L_1;
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_2 = V_0;
if (!L_2)
{
goto IL_0018;
}
}
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_3 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_4 = ((JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_StaticFields*)il2cpp_codegen_static_fields_for(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var))->get_NumberTypes_5();
bool L_5 = JToken_ValidateToken_m7301477AC0BE9EA8911A05AC253126C4F2B05F68(L_3, L_4, (bool)0, /*hidden argument*/NULL);
if (L_5)
{
goto IL_0033;
}
}
IL_0018:
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_6 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_7 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
String_t* L_8 = JToken_GetType_m936BAF5656FA294832F37052918D181807F59906(L_7, /*hidden argument*/NULL);
String_t* L_9 = StringUtils_FormatWith_mA244260995FC801D82F22EC897F3F8BEB8649583(_stringLiteral7ACD99495C31B128E1A3063A9DA00E4F324DD3DA, L_6, L_8, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_10 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_10, L_9, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, JToken_op_Explicit_m082F0E38845FD5F318438D29D7A41D8B278030A8_RuntimeMethod_var);
}
IL_0033:
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_11 = V_0;
NullCheck(L_11);
RuntimeObject * L_12 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_11, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_13 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
uint8_t L_14 = Convert_ToByte_m71CFEFDB61F13E2AD7ECF91BA5DEE0616C1E857A(L_12, L_13, /*hidden argument*/NULL);
return L_14;
}
}
// System.SByte Valve.Newtonsoft.Json.Linq.JToken::op_Explicit(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t JToken_op_Explicit_m6246D2129AAA644B0F738E37B7D8EE0C72174C88 (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JToken_op_Explicit_m6246D2129AAA644B0F738E37B7D8EE0C72174C88_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * V_0 = NULL;
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_0 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_1 = JToken_EnsureValue_m29697CE7680576BB6FBCBE36F876F9AF97384D85(L_0, /*hidden argument*/NULL);
V_0 = L_1;
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_2 = V_0;
if (!L_2)
{
goto IL_0018;
}
}
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_3 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_4 = ((JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_StaticFields*)il2cpp_codegen_static_fields_for(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var))->get_NumberTypes_5();
bool L_5 = JToken_ValidateToken_m7301477AC0BE9EA8911A05AC253126C4F2B05F68(L_3, L_4, (bool)0, /*hidden argument*/NULL);
if (L_5)
{
goto IL_0033;
}
}
IL_0018:
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_6 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_7 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
String_t* L_8 = JToken_GetType_m936BAF5656FA294832F37052918D181807F59906(L_7, /*hidden argument*/NULL);
String_t* L_9 = StringUtils_FormatWith_mA244260995FC801D82F22EC897F3F8BEB8649583(_stringLiteralA8EC779675B7B743128715CA048C1ACD687FADE0, L_6, L_8, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_10 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_10, L_9, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, JToken_op_Explicit_m6246D2129AAA644B0F738E37B7D8EE0C72174C88_RuntimeMethod_var);
}
IL_0033:
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_11 = V_0;
NullCheck(L_11);
RuntimeObject * L_12 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_11, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_13 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
int8_t L_14 = Convert_ToSByte_m2716303126BD8C930D1D4E8590F8706A8F26AD48(L_12, L_13, /*hidden argument*/NULL);
return L_14;
}
}
// System.Nullable`1<System.Int32> Valve.Newtonsoft.Json.Linq.JToken::op_Explicit(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB JToken_op_Explicit_m7BA83EAF9DB15A8ECAFD5DC5D7E80EE34845090A (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JToken_op_Explicit_m7BA83EAF9DB15A8ECAFD5DC5D7E80EE34845090A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * V_0 = NULL;
Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB V_1;
memset((&V_1), 0, sizeof(V_1));
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_0 = ___value0;
if (L_0)
{
goto IL_000d;
}
}
{
il2cpp_codegen_initobj((&V_1), sizeof(Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB ));
Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB L_1 = V_1;
return L_1;
}
IL_000d:
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_2 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_3 = JToken_EnsureValue_m29697CE7680576BB6FBCBE36F876F9AF97384D85(L_2, /*hidden argument*/NULL);
V_0 = L_3;
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_4 = V_0;
if (!L_4)
{
goto IL_0025;
}
}
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_5 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_6 = ((JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_StaticFields*)il2cpp_codegen_static_fields_for(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var))->get_NumberTypes_5();
bool L_7 = JToken_ValidateToken_m7301477AC0BE9EA8911A05AC253126C4F2B05F68(L_5, L_6, (bool)1, /*hidden argument*/NULL);
if (L_7)
{
goto IL_0040;
}
}
IL_0025:
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_8 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_9 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
String_t* L_10 = JToken_GetType_m936BAF5656FA294832F37052918D181807F59906(L_9, /*hidden argument*/NULL);
String_t* L_11 = StringUtils_FormatWith_mA244260995FC801D82F22EC897F3F8BEB8649583(_stringLiteralB2B5A792BA9DE865B14E2F9F7A2C4570571316B8, L_8, L_10, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_12 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_12, L_11, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, JToken_op_Explicit_m7BA83EAF9DB15A8ECAFD5DC5D7E80EE34845090A_RuntimeMethod_var);
}
IL_0040:
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_13 = V_0;
NullCheck(L_13);
RuntimeObject * L_14 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_13, /*hidden argument*/NULL);
if (L_14)
{
goto IL_0052;
}
}
{
il2cpp_codegen_initobj((&V_1), sizeof(Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB ));
Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB L_15 = V_1;
return L_15;
}
IL_0052:
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_16 = V_0;
NullCheck(L_16);
RuntimeObject * L_17 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_16, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_18 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
int32_t L_19 = Convert_ToInt32_m5D40340597602FB6C20BAB933E8B29617232757A(L_17, L_18, /*hidden argument*/NULL);
Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB L_20;
memset((&L_20), 0, sizeof(L_20));
Nullable_1__ctor_m11F9C228CFDF836DDFCD7880C09CB4098AB9D7F2((&L_20), L_19, /*hidden argument*/Nullable_1__ctor_m11F9C228CFDF836DDFCD7880C09CB4098AB9D7F2_RuntimeMethod_var);
return L_20;
}
}
// System.Nullable`1<System.Int16> Valve.Newtonsoft.Json.Linq.JToken::op_Explicit(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_t6DD1091F06288053C77A1E21CDA46B9FC0C082FE JToken_op_Explicit_m0E3D752E4AC01EC03E0C471F25E928CF84C70F4D (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JToken_op_Explicit_m0E3D752E4AC01EC03E0C471F25E928CF84C70F4D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * V_0 = NULL;
Nullable_1_t6DD1091F06288053C77A1E21CDA46B9FC0C082FE V_1;
memset((&V_1), 0, sizeof(V_1));
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_0 = ___value0;
if (L_0)
{
goto IL_000d;
}
}
{
il2cpp_codegen_initobj((&V_1), sizeof(Nullable_1_t6DD1091F06288053C77A1E21CDA46B9FC0C082FE ));
Nullable_1_t6DD1091F06288053C77A1E21CDA46B9FC0C082FE L_1 = V_1;
return L_1;
}
IL_000d:
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_2 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_3 = JToken_EnsureValue_m29697CE7680576BB6FBCBE36F876F9AF97384D85(L_2, /*hidden argument*/NULL);
V_0 = L_3;
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_4 = V_0;
if (!L_4)
{
goto IL_0025;
}
}
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_5 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_6 = ((JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_StaticFields*)il2cpp_codegen_static_fields_for(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var))->get_NumberTypes_5();
bool L_7 = JToken_ValidateToken_m7301477AC0BE9EA8911A05AC253126C4F2B05F68(L_5, L_6, (bool)1, /*hidden argument*/NULL);
if (L_7)
{
goto IL_0040;
}
}
IL_0025:
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_8 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_9 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
String_t* L_10 = JToken_GetType_m936BAF5656FA294832F37052918D181807F59906(L_9, /*hidden argument*/NULL);
String_t* L_11 = StringUtils_FormatWith_mA244260995FC801D82F22EC897F3F8BEB8649583(_stringLiteral9C6091F85A2D152EC49625D16996AD476352D8AB, L_8, L_10, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_12 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_12, L_11, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, JToken_op_Explicit_m0E3D752E4AC01EC03E0C471F25E928CF84C70F4D_RuntimeMethod_var);
}
IL_0040:
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_13 = V_0;
NullCheck(L_13);
RuntimeObject * L_14 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_13, /*hidden argument*/NULL);
if (L_14)
{
goto IL_0052;
}
}
{
il2cpp_codegen_initobj((&V_1), sizeof(Nullable_1_t6DD1091F06288053C77A1E21CDA46B9FC0C082FE ));
Nullable_1_t6DD1091F06288053C77A1E21CDA46B9FC0C082FE L_15 = V_1;
return L_15;
}
IL_0052:
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_16 = V_0;
NullCheck(L_16);
RuntimeObject * L_17 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_16, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_18 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
int16_t L_19 = Convert_ToInt16_m9E4E48A97E050355468F58D2EAEB3AB3C811CE8B(L_17, L_18, /*hidden argument*/NULL);
Nullable_1_t6DD1091F06288053C77A1E21CDA46B9FC0C082FE L_20;
memset((&L_20), 0, sizeof(L_20));
Nullable_1__ctor_mA2C015497D01701140620ACCA04B8B4E2AE05FBC((&L_20), L_19, /*hidden argument*/Nullable_1__ctor_mA2C015497D01701140620ACCA04B8B4E2AE05FBC_RuntimeMethod_var);
return L_20;
}
}
// System.Nullable`1<System.UInt16> Valve.Newtonsoft.Json.Linq.JToken::op_Explicit(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_tF0BF09F44075092EA142C4F8348486254518EEA0 JToken_op_Explicit_m8BE4447D408B52AB5B4C347699BCA9CE5F5C8561 (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JToken_op_Explicit_m8BE4447D408B52AB5B4C347699BCA9CE5F5C8561_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * V_0 = NULL;
Nullable_1_tF0BF09F44075092EA142C4F8348486254518EEA0 V_1;
memset((&V_1), 0, sizeof(V_1));
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_0 = ___value0;
if (L_0)
{
goto IL_000d;
}
}
{
il2cpp_codegen_initobj((&V_1), sizeof(Nullable_1_tF0BF09F44075092EA142C4F8348486254518EEA0 ));
Nullable_1_tF0BF09F44075092EA142C4F8348486254518EEA0 L_1 = V_1;
return L_1;
}
IL_000d:
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_2 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_3 = JToken_EnsureValue_m29697CE7680576BB6FBCBE36F876F9AF97384D85(L_2, /*hidden argument*/NULL);
V_0 = L_3;
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_4 = V_0;
if (!L_4)
{
goto IL_0025;
}
}
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_5 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_6 = ((JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_StaticFields*)il2cpp_codegen_static_fields_for(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var))->get_NumberTypes_5();
bool L_7 = JToken_ValidateToken_m7301477AC0BE9EA8911A05AC253126C4F2B05F68(L_5, L_6, (bool)1, /*hidden argument*/NULL);
if (L_7)
{
goto IL_0040;
}
}
IL_0025:
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_8 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_9 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
String_t* L_10 = JToken_GetType_m936BAF5656FA294832F37052918D181807F59906(L_9, /*hidden argument*/NULL);
String_t* L_11 = StringUtils_FormatWith_mA244260995FC801D82F22EC897F3F8BEB8649583(_stringLiteralE1C5DF38EBC500A74B5F66D754DDF5CB66C9685F, L_8, L_10, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_12 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_12, L_11, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, JToken_op_Explicit_m8BE4447D408B52AB5B4C347699BCA9CE5F5C8561_RuntimeMethod_var);
}
IL_0040:
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_13 = V_0;
NullCheck(L_13);
RuntimeObject * L_14 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_13, /*hidden argument*/NULL);
if (L_14)
{
goto IL_0052;
}
}
{
il2cpp_codegen_initobj((&V_1), sizeof(Nullable_1_tF0BF09F44075092EA142C4F8348486254518EEA0 ));
Nullable_1_tF0BF09F44075092EA142C4F8348486254518EEA0 L_15 = V_1;
return L_15;
}
IL_0052:
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_16 = V_0;
NullCheck(L_16);
RuntimeObject * L_17 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_16, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_18 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
uint16_t L_19 = Convert_ToUInt16_mB7311DB5960043FD81C1305B69C5328126F43C89(L_17, L_18, /*hidden argument*/NULL);
Nullable_1_tF0BF09F44075092EA142C4F8348486254518EEA0 L_20;
memset((&L_20), 0, sizeof(L_20));
Nullable_1__ctor_m5E44BEDC1AA103BA971F1C268BD4A2B948603D35((&L_20), L_19, /*hidden argument*/Nullable_1__ctor_m5E44BEDC1AA103BA971F1C268BD4A2B948603D35_RuntimeMethod_var);
return L_20;
}
}
// System.Nullable`1<System.Byte> Valve.Newtonsoft.Json.Linq.JToken::op_Explicit(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_tB4C4F9557481ABDC6DFB4E6C55B481A29DDCC299 JToken_op_Explicit_m192E38F83BDA627DA2F67D6E8E556C7E8BCFFC0E (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JToken_op_Explicit_m192E38F83BDA627DA2F67D6E8E556C7E8BCFFC0E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * V_0 = NULL;
Nullable_1_tB4C4F9557481ABDC6DFB4E6C55B481A29DDCC299 V_1;
memset((&V_1), 0, sizeof(V_1));
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_0 = ___value0;
if (L_0)
{
goto IL_000d;
}
}
{
il2cpp_codegen_initobj((&V_1), sizeof(Nullable_1_tB4C4F9557481ABDC6DFB4E6C55B481A29DDCC299 ));
Nullable_1_tB4C4F9557481ABDC6DFB4E6C55B481A29DDCC299 L_1 = V_1;
return L_1;
}
IL_000d:
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_2 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_3 = JToken_EnsureValue_m29697CE7680576BB6FBCBE36F876F9AF97384D85(L_2, /*hidden argument*/NULL);
V_0 = L_3;
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_4 = V_0;
if (!L_4)
{
goto IL_0025;
}
}
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_5 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_6 = ((JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_StaticFields*)il2cpp_codegen_static_fields_for(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var))->get_NumberTypes_5();
bool L_7 = JToken_ValidateToken_m7301477AC0BE9EA8911A05AC253126C4F2B05F68(L_5, L_6, (bool)1, /*hidden argument*/NULL);
if (L_7)
{
goto IL_0040;
}
}
IL_0025:
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_8 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_9 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
String_t* L_10 = JToken_GetType_m936BAF5656FA294832F37052918D181807F59906(L_9, /*hidden argument*/NULL);
String_t* L_11 = StringUtils_FormatWith_mA244260995FC801D82F22EC897F3F8BEB8649583(_stringLiteral7ACD99495C31B128E1A3063A9DA00E4F324DD3DA, L_8, L_10, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_12 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_12, L_11, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, JToken_op_Explicit_m192E38F83BDA627DA2F67D6E8E556C7E8BCFFC0E_RuntimeMethod_var);
}
IL_0040:
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_13 = V_0;
NullCheck(L_13);
RuntimeObject * L_14 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_13, /*hidden argument*/NULL);
if (L_14)
{
goto IL_0052;
}
}
{
il2cpp_codegen_initobj((&V_1), sizeof(Nullable_1_tB4C4F9557481ABDC6DFB4E6C55B481A29DDCC299 ));
Nullable_1_tB4C4F9557481ABDC6DFB4E6C55B481A29DDCC299 L_15 = V_1;
return L_15;
}
IL_0052:
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_16 = V_0;
NullCheck(L_16);
RuntimeObject * L_17 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_16, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_18 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
uint8_t L_19 = Convert_ToByte_m71CFEFDB61F13E2AD7ECF91BA5DEE0616C1E857A(L_17, L_18, /*hidden argument*/NULL);
Nullable_1_tB4C4F9557481ABDC6DFB4E6C55B481A29DDCC299 L_20;
memset((&L_20), 0, sizeof(L_20));
Nullable_1__ctor_m2E6FC0D6DDFF0359075E8195130765ED04EA2010((&L_20), L_19, /*hidden argument*/Nullable_1__ctor_m2E6FC0D6DDFF0359075E8195130765ED04EA2010_RuntimeMethod_var);
return L_20;
}
}
// System.Nullable`1<System.SByte> Valve.Newtonsoft.Json.Linq.JToken::op_Explicit(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_t2F4FA162D87EDE69C4CAA5E3E739CB702A780EAE JToken_op_Explicit_m8A71CA7343DDFE91A7EF435556490C67237B6730 (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JToken_op_Explicit_m8A71CA7343DDFE91A7EF435556490C67237B6730_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * V_0 = NULL;
Nullable_1_t2F4FA162D87EDE69C4CAA5E3E739CB702A780EAE V_1;
memset((&V_1), 0, sizeof(V_1));
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_0 = ___value0;
if (L_0)
{
goto IL_000d;
}
}
{
il2cpp_codegen_initobj((&V_1), sizeof(Nullable_1_t2F4FA162D87EDE69C4CAA5E3E739CB702A780EAE ));
Nullable_1_t2F4FA162D87EDE69C4CAA5E3E739CB702A780EAE L_1 = V_1;
return L_1;
}
IL_000d:
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_2 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_3 = JToken_EnsureValue_m29697CE7680576BB6FBCBE36F876F9AF97384D85(L_2, /*hidden argument*/NULL);
V_0 = L_3;
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_4 = V_0;
if (!L_4)
{
goto IL_0025;
}
}
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_5 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_6 = ((JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_StaticFields*)il2cpp_codegen_static_fields_for(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var))->get_NumberTypes_5();
bool L_7 = JToken_ValidateToken_m7301477AC0BE9EA8911A05AC253126C4F2B05F68(L_5, L_6, (bool)1, /*hidden argument*/NULL);
if (L_7)
{
goto IL_0040;
}
}
IL_0025:
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_8 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_9 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
String_t* L_10 = JToken_GetType_m936BAF5656FA294832F37052918D181807F59906(L_9, /*hidden argument*/NULL);
String_t* L_11 = StringUtils_FormatWith_mA244260995FC801D82F22EC897F3F8BEB8649583(_stringLiteralA8EC779675B7B743128715CA048C1ACD687FADE0, L_8, L_10, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_12 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_12, L_11, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, JToken_op_Explicit_m8A71CA7343DDFE91A7EF435556490C67237B6730_RuntimeMethod_var);
}
IL_0040:
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_13 = V_0;
NullCheck(L_13);
RuntimeObject * L_14 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_13, /*hidden argument*/NULL);
if (L_14)
{
goto IL_0052;
}
}
{
il2cpp_codegen_initobj((&V_1), sizeof(Nullable_1_t2F4FA162D87EDE69C4CAA5E3E739CB702A780EAE ));
Nullable_1_t2F4FA162D87EDE69C4CAA5E3E739CB702A780EAE L_15 = V_1;
return L_15;
}
IL_0052:
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_16 = V_0;
NullCheck(L_16);
RuntimeObject * L_17 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_16, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_18 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
int8_t L_19 = Convert_ToSByte_m2716303126BD8C930D1D4E8590F8706A8F26AD48(L_17, L_18, /*hidden argument*/NULL);
Nullable_1_t2F4FA162D87EDE69C4CAA5E3E739CB702A780EAE L_20;
memset((&L_20), 0, sizeof(L_20));
Nullable_1__ctor_mC34B5D0417CE39DCD95A14161B422BA0BD5984EA((&L_20), L_19, /*hidden argument*/Nullable_1__ctor_mC34B5D0417CE39DCD95A14161B422BA0BD5984EA_RuntimeMethod_var);
return L_20;
}
}
// System.DateTime Valve.Newtonsoft.Json.Linq.JToken::op_Explicit(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 JToken_op_Explicit_m0170BD465F577BF1F4C284F9318550F3A59B7A6D (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JToken_op_Explicit_m0170BD465F577BF1F4C284F9318550F3A59B7A6D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * V_0 = NULL;
DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 V_1;
memset((&V_1), 0, sizeof(V_1));
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_0 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_1 = JToken_EnsureValue_m29697CE7680576BB6FBCBE36F876F9AF97384D85(L_0, /*hidden argument*/NULL);
V_0 = L_1;
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_2 = V_0;
if (!L_2)
{
goto IL_0018;
}
}
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_3 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_4 = ((JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_StaticFields*)il2cpp_codegen_static_fields_for(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var))->get_DateTimeTypes_11();
bool L_5 = JToken_ValidateToken_m7301477AC0BE9EA8911A05AC253126C4F2B05F68(L_3, L_4, (bool)0, /*hidden argument*/NULL);
if (L_5)
{
goto IL_0033;
}
}
IL_0018:
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_6 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_7 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
String_t* L_8 = JToken_GetType_m936BAF5656FA294832F37052918D181807F59906(L_7, /*hidden argument*/NULL);
String_t* L_9 = StringUtils_FormatWith_mA244260995FC801D82F22EC897F3F8BEB8649583(_stringLiteral287963E3FCCA4558A1264C7711945B6152BA400E, L_6, L_8, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_10 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_10, L_9, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, JToken_op_Explicit_m0170BD465F577BF1F4C284F9318550F3A59B7A6D_RuntimeMethod_var);
}
IL_0033:
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_11 = V_0;
NullCheck(L_11);
RuntimeObject * L_12 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_11, /*hidden argument*/NULL);
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_12, DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_il2cpp_TypeInfo_var)))
{
goto IL_0054;
}
}
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_13 = V_0;
NullCheck(L_13);
RuntimeObject * L_14 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_13, /*hidden argument*/NULL);
V_1 = ((*(DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 *)((DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 *)UnBox(L_14, DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_il2cpp_TypeInfo_var))));
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_15 = DateTimeOffset_get_DateTime_m5101B7B7920B8C28AB2D5A7E4B8F7C2FAFC2F328((DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 *)(&V_1), /*hidden argument*/NULL);
return L_15;
}
IL_0054:
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_16 = V_0;
NullCheck(L_16);
RuntimeObject * L_17 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_16, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_18 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_19 = Convert_ToDateTime_m246003CF3103F7DF9D6E817DCEFAE2CF8068862D(L_17, L_18, /*hidden argument*/NULL);
return L_19;
}
}
// System.Nullable`1<System.Int64> Valve.Newtonsoft.Json.Linq.JToken::op_Explicit(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_t8A84BC5F3B3D55B8E96E9B812BDCCCB962EB2AB5 JToken_op_Explicit_m4A902F230BF538F167115B997338C4C62E000B5A (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JToken_op_Explicit_m4A902F230BF538F167115B997338C4C62E000B5A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * V_0 = NULL;
Nullable_1_t8A84BC5F3B3D55B8E96E9B812BDCCCB962EB2AB5 V_1;
memset((&V_1), 0, sizeof(V_1));
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_0 = ___value0;
if (L_0)
{
goto IL_000d;
}
}
{
il2cpp_codegen_initobj((&V_1), sizeof(Nullable_1_t8A84BC5F3B3D55B8E96E9B812BDCCCB962EB2AB5 ));
Nullable_1_t8A84BC5F3B3D55B8E96E9B812BDCCCB962EB2AB5 L_1 = V_1;
return L_1;
}
IL_000d:
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_2 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_3 = JToken_EnsureValue_m29697CE7680576BB6FBCBE36F876F9AF97384D85(L_2, /*hidden argument*/NULL);
V_0 = L_3;
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_4 = V_0;
if (!L_4)
{
goto IL_0025;
}
}
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_5 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_6 = ((JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_StaticFields*)il2cpp_codegen_static_fields_for(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var))->get_NumberTypes_5();
bool L_7 = JToken_ValidateToken_m7301477AC0BE9EA8911A05AC253126C4F2B05F68(L_5, L_6, (bool)1, /*hidden argument*/NULL);
if (L_7)
{
goto IL_0040;
}
}
IL_0025:
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_8 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_9 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
String_t* L_10 = JToken_GetType_m936BAF5656FA294832F37052918D181807F59906(L_9, /*hidden argument*/NULL);
String_t* L_11 = StringUtils_FormatWith_mA244260995FC801D82F22EC897F3F8BEB8649583(_stringLiteral05AFC91C2FD53968B9C5F6D20522BC27CDDA09D0, L_8, L_10, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_12 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_12, L_11, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, JToken_op_Explicit_m4A902F230BF538F167115B997338C4C62E000B5A_RuntimeMethod_var);
}
IL_0040:
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_13 = V_0;
NullCheck(L_13);
RuntimeObject * L_14 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_13, /*hidden argument*/NULL);
if (L_14)
{
goto IL_0052;
}
}
{
il2cpp_codegen_initobj((&V_1), sizeof(Nullable_1_t8A84BC5F3B3D55B8E96E9B812BDCCCB962EB2AB5 ));
Nullable_1_t8A84BC5F3B3D55B8E96E9B812BDCCCB962EB2AB5 L_15 = V_1;
return L_15;
}
IL_0052:
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_16 = V_0;
NullCheck(L_16);
RuntimeObject * L_17 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_16, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_18 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
int64_t L_19 = Convert_ToInt64_m8964FDE5D82FEC54106DBF35E1F67D70F6E73E29(L_17, L_18, /*hidden argument*/NULL);
Nullable_1_t8A84BC5F3B3D55B8E96E9B812BDCCCB962EB2AB5 L_20;
memset((&L_20), 0, sizeof(L_20));
Nullable_1__ctor_m7BFDFEF1C4C2787E71585BBE4908D47CBF80AE30((&L_20), L_19, /*hidden argument*/Nullable_1__ctor_m7BFDFEF1C4C2787E71585BBE4908D47CBF80AE30_RuntimeMethod_var);
return L_20;
}
}
// System.Nullable`1<System.Single> Valve.Newtonsoft.Json.Linq.JToken::op_Explicit(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 JToken_op_Explicit_m8E6B7E51C03E9438547FBAEDEDDD6B53817D68F0 (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JToken_op_Explicit_m8E6B7E51C03E9438547FBAEDEDDD6B53817D68F0_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * V_0 = NULL;
Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 V_1;
memset((&V_1), 0, sizeof(V_1));
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_0 = ___value0;
if (L_0)
{
goto IL_000d;
}
}
{
il2cpp_codegen_initobj((&V_1), sizeof(Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 ));
Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 L_1 = V_1;
return L_1;
}
IL_000d:
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_2 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_3 = JToken_EnsureValue_m29697CE7680576BB6FBCBE36F876F9AF97384D85(L_2, /*hidden argument*/NULL);
V_0 = L_3;
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_4 = V_0;
if (!L_4)
{
goto IL_0025;
}
}
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_5 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_6 = ((JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_StaticFields*)il2cpp_codegen_static_fields_for(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var))->get_NumberTypes_5();
bool L_7 = JToken_ValidateToken_m7301477AC0BE9EA8911A05AC253126C4F2B05F68(L_5, L_6, (bool)1, /*hidden argument*/NULL);
if (L_7)
{
goto IL_0040;
}
}
IL_0025:
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_8 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_9 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
String_t* L_10 = JToken_GetType_m936BAF5656FA294832F37052918D181807F59906(L_9, /*hidden argument*/NULL);
String_t* L_11 = StringUtils_FormatWith_mA244260995FC801D82F22EC897F3F8BEB8649583(_stringLiteral0C3F4828A3222F00EF9CD0D6CABAA6625BC20A41, L_8, L_10, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_12 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_12, L_11, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, JToken_op_Explicit_m8E6B7E51C03E9438547FBAEDEDDD6B53817D68F0_RuntimeMethod_var);
}
IL_0040:
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_13 = V_0;
NullCheck(L_13);
RuntimeObject * L_14 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_13, /*hidden argument*/NULL);
if (L_14)
{
goto IL_0052;
}
}
{
il2cpp_codegen_initobj((&V_1), sizeof(Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 ));
Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 L_15 = V_1;
return L_15;
}
IL_0052:
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_16 = V_0;
NullCheck(L_16);
RuntimeObject * L_17 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_16, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_18 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
float L_19 = Convert_ToSingle_mDC4B8C88AF6F230E79A887EFD4D745CB08341828(L_17, L_18, /*hidden argument*/NULL);
Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 L_20;
memset((&L_20), 0, sizeof(L_20));
Nullable_1__ctor_mAB819EE77BD7E38C1E0E494C307D52F42DB259AE((&L_20), L_19, /*hidden argument*/Nullable_1__ctor_mAB819EE77BD7E38C1E0E494C307D52F42DB259AE_RuntimeMethod_var);
return L_20;
}
}
// System.Decimal Valve.Newtonsoft.Json.Linq.JToken::op_Explicit(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 JToken_op_Explicit_m3FB97A54D97040485003B7DB9259575E91486DDD (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JToken_op_Explicit_m3FB97A54D97040485003B7DB9259575E91486DDD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * V_0 = NULL;
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_0 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_1 = JToken_EnsureValue_m29697CE7680576BB6FBCBE36F876F9AF97384D85(L_0, /*hidden argument*/NULL);
V_0 = L_1;
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_2 = V_0;
if (!L_2)
{
goto IL_0018;
}
}
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_3 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_4 = ((JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_StaticFields*)il2cpp_codegen_static_fields_for(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var))->get_NumberTypes_5();
bool L_5 = JToken_ValidateToken_m7301477AC0BE9EA8911A05AC253126C4F2B05F68(L_3, L_4, (bool)0, /*hidden argument*/NULL);
if (L_5)
{
goto IL_0033;
}
}
IL_0018:
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_6 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_7 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
String_t* L_8 = JToken_GetType_m936BAF5656FA294832F37052918D181807F59906(L_7, /*hidden argument*/NULL);
String_t* L_9 = StringUtils_FormatWith_mA244260995FC801D82F22EC897F3F8BEB8649583(_stringLiteralB1ADD154930F109C2BDFA7849F24552E1685AB98, L_6, L_8, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_10 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_10, L_9, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, JToken_op_Explicit_m3FB97A54D97040485003B7DB9259575E91486DDD_RuntimeMethod_var);
}
IL_0033:
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_11 = V_0;
NullCheck(L_11);
RuntimeObject * L_12 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_11, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_13 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_14 = Convert_ToDecimal_mD8F65E8B251DBE61789CAD032172D089375D1E5B(L_12, L_13, /*hidden argument*/NULL);
return L_14;
}
}
// System.Nullable`1<System.UInt32> Valve.Newtonsoft.Json.Linq.JToken::op_Explicit(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_tF156B0EB96E1F21CE812F1DFC94779464E49DAF3 JToken_op_Explicit_m41462F6ED4A9D06149285D2ECD7925155A64480E (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JToken_op_Explicit_m41462F6ED4A9D06149285D2ECD7925155A64480E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * V_0 = NULL;
Nullable_1_tF156B0EB96E1F21CE812F1DFC94779464E49DAF3 V_1;
memset((&V_1), 0, sizeof(V_1));
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_0 = ___value0;
if (L_0)
{
goto IL_000d;
}
}
{
il2cpp_codegen_initobj((&V_1), sizeof(Nullable_1_tF156B0EB96E1F21CE812F1DFC94779464E49DAF3 ));
Nullable_1_tF156B0EB96E1F21CE812F1DFC94779464E49DAF3 L_1 = V_1;
return L_1;
}
IL_000d:
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_2 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_3 = JToken_EnsureValue_m29697CE7680576BB6FBCBE36F876F9AF97384D85(L_2, /*hidden argument*/NULL);
V_0 = L_3;
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_4 = V_0;
if (!L_4)
{
goto IL_0025;
}
}
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_5 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_6 = ((JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_StaticFields*)il2cpp_codegen_static_fields_for(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var))->get_NumberTypes_5();
bool L_7 = JToken_ValidateToken_m7301477AC0BE9EA8911A05AC253126C4F2B05F68(L_5, L_6, (bool)1, /*hidden argument*/NULL);
if (L_7)
{
goto IL_0040;
}
}
IL_0025:
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_8 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_9 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
String_t* L_10 = JToken_GetType_m936BAF5656FA294832F37052918D181807F59906(L_9, /*hidden argument*/NULL);
String_t* L_11 = StringUtils_FormatWith_mA244260995FC801D82F22EC897F3F8BEB8649583(_stringLiteralE78418AC83FB0BDD11C77EBC39C5D2EC25FDB5DF, L_8, L_10, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_12 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_12, L_11, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, JToken_op_Explicit_m41462F6ED4A9D06149285D2ECD7925155A64480E_RuntimeMethod_var);
}
IL_0040:
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_13 = V_0;
NullCheck(L_13);
RuntimeObject * L_14 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_13, /*hidden argument*/NULL);
if (L_14)
{
goto IL_0052;
}
}
{
il2cpp_codegen_initobj((&V_1), sizeof(Nullable_1_tF156B0EB96E1F21CE812F1DFC94779464E49DAF3 ));
Nullable_1_tF156B0EB96E1F21CE812F1DFC94779464E49DAF3 L_15 = V_1;
return L_15;
}
IL_0052:
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_16 = V_0;
NullCheck(L_16);
RuntimeObject * L_17 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_16, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_18 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
uint32_t L_19 = Convert_ToUInt32_mB53B83E03C15DCD785806793ACC3083FCC7F4BCA(L_17, L_18, /*hidden argument*/NULL);
Nullable_1_tF156B0EB96E1F21CE812F1DFC94779464E49DAF3 L_20;
memset((&L_20), 0, sizeof(L_20));
Nullable_1__ctor_m08091F597C74B397324E4C8599F224F6AA9BA3BB((&L_20), L_19, /*hidden argument*/Nullable_1__ctor_m08091F597C74B397324E4C8599F224F6AA9BA3BB_RuntimeMethod_var);
return L_20;
}
}
// System.Nullable`1<System.UInt64> Valve.Newtonsoft.Json.Linq.JToken::op_Explicit(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_tE6DB2821D06FC32375C83F1A7E8AFF51557CE14B JToken_op_Explicit_m7ED97B5A92E6F2DABB2C58A8E96280683F1294DE (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JToken_op_Explicit_m7ED97B5A92E6F2DABB2C58A8E96280683F1294DE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * V_0 = NULL;
Nullable_1_tE6DB2821D06FC32375C83F1A7E8AFF51557CE14B V_1;
memset((&V_1), 0, sizeof(V_1));
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_0 = ___value0;
if (L_0)
{
goto IL_000d;
}
}
{
il2cpp_codegen_initobj((&V_1), sizeof(Nullable_1_tE6DB2821D06FC32375C83F1A7E8AFF51557CE14B ));
Nullable_1_tE6DB2821D06FC32375C83F1A7E8AFF51557CE14B L_1 = V_1;
return L_1;
}
IL_000d:
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_2 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_3 = JToken_EnsureValue_m29697CE7680576BB6FBCBE36F876F9AF97384D85(L_2, /*hidden argument*/NULL);
V_0 = L_3;
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_4 = V_0;
if (!L_4)
{
goto IL_0025;
}
}
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_5 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_6 = ((JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_StaticFields*)il2cpp_codegen_static_fields_for(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var))->get_NumberTypes_5();
bool L_7 = JToken_ValidateToken_m7301477AC0BE9EA8911A05AC253126C4F2B05F68(L_5, L_6, (bool)1, /*hidden argument*/NULL);
if (L_7)
{
goto IL_0040;
}
}
IL_0025:
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_8 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_9 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
String_t* L_10 = JToken_GetType_m936BAF5656FA294832F37052918D181807F59906(L_9, /*hidden argument*/NULL);
String_t* L_11 = StringUtils_FormatWith_mA244260995FC801D82F22EC897F3F8BEB8649583(_stringLiteral44D75688A122E519D6F828E409436273856F1BD1, L_8, L_10, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_12 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_12, L_11, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, JToken_op_Explicit_m7ED97B5A92E6F2DABB2C58A8E96280683F1294DE_RuntimeMethod_var);
}
IL_0040:
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_13 = V_0;
NullCheck(L_13);
RuntimeObject * L_14 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_13, /*hidden argument*/NULL);
if (L_14)
{
goto IL_0052;
}
}
{
il2cpp_codegen_initobj((&V_1), sizeof(Nullable_1_tE6DB2821D06FC32375C83F1A7E8AFF51557CE14B ));
Nullable_1_tE6DB2821D06FC32375C83F1A7E8AFF51557CE14B L_15 = V_1;
return L_15;
}
IL_0052:
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_16 = V_0;
NullCheck(L_16);
RuntimeObject * L_17 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_16, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_18 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
uint64_t L_19 = Convert_ToUInt64_mA8C3C5498FC28CBA0EB0C37409EB9E04CCF6B8D2(L_17, L_18, /*hidden argument*/NULL);
Nullable_1_tE6DB2821D06FC32375C83F1A7E8AFF51557CE14B L_20;
memset((&L_20), 0, sizeof(L_20));
Nullable_1__ctor_m9BFC744597EAD1898820D2D3EC00C3644BC066FB((&L_20), L_19, /*hidden argument*/Nullable_1__ctor_m9BFC744597EAD1898820D2D3EC00C3644BC066FB_RuntimeMethod_var);
return L_20;
}
}
// System.Double Valve.Newtonsoft.Json.Linq.JToken::op_Explicit(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double JToken_op_Explicit_m82C9797D6694CAD60E2D8C75CE6651DFA5EFF498 (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JToken_op_Explicit_m82C9797D6694CAD60E2D8C75CE6651DFA5EFF498_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * V_0 = NULL;
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_0 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_1 = JToken_EnsureValue_m29697CE7680576BB6FBCBE36F876F9AF97384D85(L_0, /*hidden argument*/NULL);
V_0 = L_1;
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_2 = V_0;
if (!L_2)
{
goto IL_0018;
}
}
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_3 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_4 = ((JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_StaticFields*)il2cpp_codegen_static_fields_for(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var))->get_NumberTypes_5();
bool L_5 = JToken_ValidateToken_m7301477AC0BE9EA8911A05AC253126C4F2B05F68(L_3, L_4, (bool)0, /*hidden argument*/NULL);
if (L_5)
{
goto IL_0033;
}
}
IL_0018:
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_6 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_7 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
String_t* L_8 = JToken_GetType_m936BAF5656FA294832F37052918D181807F59906(L_7, /*hidden argument*/NULL);
String_t* L_9 = StringUtils_FormatWith_mA244260995FC801D82F22EC897F3F8BEB8649583(_stringLiteralC538E2C770D6019AF5417BC48E03CD72E0EE0E3B, L_6, L_8, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_10 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_10, L_9, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, JToken_op_Explicit_m82C9797D6694CAD60E2D8C75CE6651DFA5EFF498_RuntimeMethod_var);
}
IL_0033:
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_11 = V_0;
NullCheck(L_11);
RuntimeObject * L_12 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_11, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_13 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
double L_14 = Convert_ToDouble_m053A47D87C59CA7A87D4E67E5E06368D775D7651(L_12, L_13, /*hidden argument*/NULL);
return L_14;
}
}
// System.Single Valve.Newtonsoft.Json.Linq.JToken::op_Explicit(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float JToken_op_Explicit_m8315F88547897B494F2FAD9E6F9B9F9BE12106CE (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JToken_op_Explicit_m8315F88547897B494F2FAD9E6F9B9F9BE12106CE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * V_0 = NULL;
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_0 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_1 = JToken_EnsureValue_m29697CE7680576BB6FBCBE36F876F9AF97384D85(L_0, /*hidden argument*/NULL);
V_0 = L_1;
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_2 = V_0;
if (!L_2)
{
goto IL_0018;
}
}
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_3 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_4 = ((JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_StaticFields*)il2cpp_codegen_static_fields_for(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var))->get_NumberTypes_5();
bool L_5 = JToken_ValidateToken_m7301477AC0BE9EA8911A05AC253126C4F2B05F68(L_3, L_4, (bool)0, /*hidden argument*/NULL);
if (L_5)
{
goto IL_0033;
}
}
IL_0018:
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_6 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_7 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
String_t* L_8 = JToken_GetType_m936BAF5656FA294832F37052918D181807F59906(L_7, /*hidden argument*/NULL);
String_t* L_9 = StringUtils_FormatWith_mA244260995FC801D82F22EC897F3F8BEB8649583(_stringLiteral0C3F4828A3222F00EF9CD0D6CABAA6625BC20A41, L_6, L_8, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_10 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_10, L_9, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, JToken_op_Explicit_m8315F88547897B494F2FAD9E6F9B9F9BE12106CE_RuntimeMethod_var);
}
IL_0033:
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_11 = V_0;
NullCheck(L_11);
RuntimeObject * L_12 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_11, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_13 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
float L_14 = Convert_ToSingle_mDC4B8C88AF6F230E79A887EFD4D745CB08341828(L_12, L_13, /*hidden argument*/NULL);
return L_14;
}
}
// System.String Valve.Newtonsoft.Json.Linq.JToken::op_Explicit(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JToken_op_Explicit_m6E58E8AE940056709C57FCA1BD9E9F8ABF029827 (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JToken_op_Explicit_m6E58E8AE940056709C57FCA1BD9E9F8ABF029827_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * V_0 = NULL;
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_0 = ___value0;
if (L_0)
{
goto IL_0005;
}
}
{
return (String_t*)NULL;
}
IL_0005:
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_1 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_2 = JToken_EnsureValue_m29697CE7680576BB6FBCBE36F876F9AF97384D85(L_1, /*hidden argument*/NULL);
V_0 = L_2;
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_3 = V_0;
if (!L_3)
{
goto IL_001d;
}
}
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_4 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_5 = ((JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_StaticFields*)il2cpp_codegen_static_fields_for(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var))->get_StringTypes_6();
bool L_6 = JToken_ValidateToken_m7301477AC0BE9EA8911A05AC253126C4F2B05F68(L_4, L_5, (bool)1, /*hidden argument*/NULL);
if (L_6)
{
goto IL_0038;
}
}
IL_001d:
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_7 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_8 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
String_t* L_9 = JToken_GetType_m936BAF5656FA294832F37052918D181807F59906(L_8, /*hidden argument*/NULL);
String_t* L_10 = StringUtils_FormatWith_mA244260995FC801D82F22EC897F3F8BEB8649583(_stringLiteralBB723ADBDFB4873118D18D055CB7EA1CA6B2815A, L_7, L_9, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_11 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_11, L_10, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, JToken_op_Explicit_m6E58E8AE940056709C57FCA1BD9E9F8ABF029827_RuntimeMethod_var);
}
IL_0038:
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_12 = V_0;
NullCheck(L_12);
RuntimeObject * L_13 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_12, /*hidden argument*/NULL);
if (L_13)
{
goto IL_0042;
}
}
{
return (String_t*)NULL;
}
IL_0042:
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_14 = V_0;
NullCheck(L_14);
RuntimeObject * L_15 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_14, /*hidden argument*/NULL);
if (!((ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)IsInst((RuntimeObject*)L_15, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var)))
{
goto IL_0060;
}
}
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_16 = V_0;
NullCheck(L_16);
RuntimeObject * L_17 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_16, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
String_t* L_18 = Convert_ToBase64String_mF201749AD724C437524C8A6108519470A0F65B84(((ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)Castclass((RuntimeObject*)L_17, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
return L_18;
}
IL_0060:
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_19 = V_0;
NullCheck(L_19);
RuntimeObject * L_20 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_19, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_21 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
String_t* L_22 = Convert_ToString_m10FC2E5535B944C2DFE83E6D2659122C9408F0FF(L_20, L_21, /*hidden argument*/NULL);
return L_22;
}
}
// System.UInt32 Valve.Newtonsoft.Json.Linq.JToken::op_Explicit(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t JToken_op_Explicit_mE90FD8213A2770ECA6B0E9628B2D614CAA8B68B1 (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JToken_op_Explicit_mE90FD8213A2770ECA6B0E9628B2D614CAA8B68B1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * V_0 = NULL;
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_0 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_1 = JToken_EnsureValue_m29697CE7680576BB6FBCBE36F876F9AF97384D85(L_0, /*hidden argument*/NULL);
V_0 = L_1;
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_2 = V_0;
if (!L_2)
{
goto IL_0018;
}
}
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_3 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_4 = ((JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_StaticFields*)il2cpp_codegen_static_fields_for(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var))->get_NumberTypes_5();
bool L_5 = JToken_ValidateToken_m7301477AC0BE9EA8911A05AC253126C4F2B05F68(L_3, L_4, (bool)0, /*hidden argument*/NULL);
if (L_5)
{
goto IL_0033;
}
}
IL_0018:
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_6 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_7 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
String_t* L_8 = JToken_GetType_m936BAF5656FA294832F37052918D181807F59906(L_7, /*hidden argument*/NULL);
String_t* L_9 = StringUtils_FormatWith_mA244260995FC801D82F22EC897F3F8BEB8649583(_stringLiteralE78418AC83FB0BDD11C77EBC39C5D2EC25FDB5DF, L_6, L_8, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_10 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_10, L_9, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, JToken_op_Explicit_mE90FD8213A2770ECA6B0E9628B2D614CAA8B68B1_RuntimeMethod_var);
}
IL_0033:
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_11 = V_0;
NullCheck(L_11);
RuntimeObject * L_12 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_11, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_13 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
uint32_t L_14 = Convert_ToUInt32_mB53B83E03C15DCD785806793ACC3083FCC7F4BCA(L_12, L_13, /*hidden argument*/NULL);
return L_14;
}
}
// System.UInt64 Valve.Newtonsoft.Json.Linq.JToken::op_Explicit(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t JToken_op_Explicit_m60AD9B22AC43C9483A4EC736E8B08DBB098144E9 (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JToken_op_Explicit_m60AD9B22AC43C9483A4EC736E8B08DBB098144E9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * V_0 = NULL;
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_0 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_1 = JToken_EnsureValue_m29697CE7680576BB6FBCBE36F876F9AF97384D85(L_0, /*hidden argument*/NULL);
V_0 = L_1;
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_2 = V_0;
if (!L_2)
{
goto IL_0018;
}
}
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_3 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_4 = ((JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_StaticFields*)il2cpp_codegen_static_fields_for(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var))->get_NumberTypes_5();
bool L_5 = JToken_ValidateToken_m7301477AC0BE9EA8911A05AC253126C4F2B05F68(L_3, L_4, (bool)0, /*hidden argument*/NULL);
if (L_5)
{
goto IL_0033;
}
}
IL_0018:
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_6 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_7 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
String_t* L_8 = JToken_GetType_m936BAF5656FA294832F37052918D181807F59906(L_7, /*hidden argument*/NULL);
String_t* L_9 = StringUtils_FormatWith_mA244260995FC801D82F22EC897F3F8BEB8649583(_stringLiteral44D75688A122E519D6F828E409436273856F1BD1, L_6, L_8, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_10 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_10, L_9, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, JToken_op_Explicit_m60AD9B22AC43C9483A4EC736E8B08DBB098144E9_RuntimeMethod_var);
}
IL_0033:
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_11 = V_0;
NullCheck(L_11);
RuntimeObject * L_12 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_11, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_13 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
uint64_t L_14 = Convert_ToUInt64_mA8C3C5498FC28CBA0EB0C37409EB9E04CCF6B8D2(L_12, L_13, /*hidden argument*/NULL);
return L_14;
}
}
// System.Guid Valve.Newtonsoft.Json.Linq.JToken::op_Explicit(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Guid_t JToken_op_Explicit_mDFB2FFD5BE9B8D15EA977A3B679B3D1FD38E9C1E (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JToken_op_Explicit_mDFB2FFD5BE9B8D15EA977A3B679B3D1FD38E9C1E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * V_0 = NULL;
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_0 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_1 = JToken_EnsureValue_m29697CE7680576BB6FBCBE36F876F9AF97384D85(L_0, /*hidden argument*/NULL);
V_0 = L_1;
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_2 = V_0;
if (!L_2)
{
goto IL_0018;
}
}
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_3 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_4 = ((JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_StaticFields*)il2cpp_codegen_static_fields_for(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var))->get_GuidTypes_7();
bool L_5 = JToken_ValidateToken_m7301477AC0BE9EA8911A05AC253126C4F2B05F68(L_3, L_4, (bool)0, /*hidden argument*/NULL);
if (L_5)
{
goto IL_0033;
}
}
IL_0018:
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_6 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_7 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
String_t* L_8 = JToken_GetType_m936BAF5656FA294832F37052918D181807F59906(L_7, /*hidden argument*/NULL);
String_t* L_9 = StringUtils_FormatWith_mA244260995FC801D82F22EC897F3F8BEB8649583(_stringLiteral34C0BB471C17BDDD180E0D3BA01D93C69BFAB659, L_6, L_8, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_10 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_10, L_9, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, JToken_op_Explicit_mDFB2FFD5BE9B8D15EA977A3B679B3D1FD38E9C1E_RuntimeMethod_var);
}
IL_0033:
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_11 = V_0;
NullCheck(L_11);
RuntimeObject * L_12 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_11, /*hidden argument*/NULL);
if (!((ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)IsInst((RuntimeObject*)L_12, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var)))
{
goto IL_0051;
}
}
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_13 = V_0;
NullCheck(L_13);
RuntimeObject * L_14 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_13, /*hidden argument*/NULL);
Guid_t L_15;
memset((&L_15), 0, sizeof(L_15));
Guid__ctor_m93F5E840798B5FB4B96497327B3907829EBA100A((&L_15), ((ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)Castclass((RuntimeObject*)L_14, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
return L_15;
}
IL_0051:
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_16 = V_0;
NullCheck(L_16);
RuntimeObject * L_17 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_16, /*hidden argument*/NULL);
if (((RuntimeObject *)IsInstSealed((RuntimeObject*)L_17, Guid_t_il2cpp_TypeInfo_var)))
{
goto IL_0074;
}
}
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_18 = V_0;
NullCheck(L_18);
RuntimeObject * L_19 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_18, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_20 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
String_t* L_21 = Convert_ToString_m10FC2E5535B944C2DFE83E6D2659122C9408F0FF(L_19, L_20, /*hidden argument*/NULL);
Guid_t L_22;
memset((&L_22), 0, sizeof(L_22));
Guid__ctor_mC668142577A40A77D13B78AADDEFFFC2E2705079((&L_22), L_21, /*hidden argument*/NULL);
return L_22;
}
IL_0074:
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_23 = V_0;
NullCheck(L_23);
RuntimeObject * L_24 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_23, /*hidden argument*/NULL);
return ((*(Guid_t *)((Guid_t *)UnBox(L_24, Guid_t_il2cpp_TypeInfo_var))));
}
}
// System.Nullable`1<System.Guid> Valve.Newtonsoft.Json.Linq.JToken::op_Explicit(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_t98453FD73999D83935C31555C4C67329F550B15D JToken_op_Explicit_mC0182FB7BB4A0132464F0AD3CA2FE73B2737260F (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JToken_op_Explicit_mC0182FB7BB4A0132464F0AD3CA2FE73B2737260F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * V_0 = NULL;
Nullable_1_t98453FD73999D83935C31555C4C67329F550B15D V_1;
memset((&V_1), 0, sizeof(V_1));
Guid_t G_B12_0;
memset((&G_B12_0), 0, sizeof(G_B12_0));
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_0 = ___value0;
if (L_0)
{
goto IL_000d;
}
}
{
il2cpp_codegen_initobj((&V_1), sizeof(Nullable_1_t98453FD73999D83935C31555C4C67329F550B15D ));
Nullable_1_t98453FD73999D83935C31555C4C67329F550B15D L_1 = V_1;
return L_1;
}
IL_000d:
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_2 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_3 = JToken_EnsureValue_m29697CE7680576BB6FBCBE36F876F9AF97384D85(L_2, /*hidden argument*/NULL);
V_0 = L_3;
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_4 = V_0;
if (!L_4)
{
goto IL_0025;
}
}
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_5 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_6 = ((JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_StaticFields*)il2cpp_codegen_static_fields_for(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var))->get_GuidTypes_7();
bool L_7 = JToken_ValidateToken_m7301477AC0BE9EA8911A05AC253126C4F2B05F68(L_5, L_6, (bool)1, /*hidden argument*/NULL);
if (L_7)
{
goto IL_0040;
}
}
IL_0025:
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_8 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_9 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
String_t* L_10 = JToken_GetType_m936BAF5656FA294832F37052918D181807F59906(L_9, /*hidden argument*/NULL);
String_t* L_11 = StringUtils_FormatWith_mA244260995FC801D82F22EC897F3F8BEB8649583(_stringLiteral34C0BB471C17BDDD180E0D3BA01D93C69BFAB659, L_8, L_10, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_12 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_12, L_11, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, JToken_op_Explicit_mC0182FB7BB4A0132464F0AD3CA2FE73B2737260F_RuntimeMethod_var);
}
IL_0040:
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_13 = V_0;
NullCheck(L_13);
RuntimeObject * L_14 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_13, /*hidden argument*/NULL);
if (L_14)
{
goto IL_0052;
}
}
{
il2cpp_codegen_initobj((&V_1), sizeof(Nullable_1_t98453FD73999D83935C31555C4C67329F550B15D ));
Nullable_1_t98453FD73999D83935C31555C4C67329F550B15D L_15 = V_1;
return L_15;
}
IL_0052:
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_16 = V_0;
NullCheck(L_16);
RuntimeObject * L_17 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_16, /*hidden argument*/NULL);
if (!((ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)IsInst((RuntimeObject*)L_17, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var)))
{
goto IL_0075;
}
}
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_18 = V_0;
NullCheck(L_18);
RuntimeObject * L_19 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_18, /*hidden argument*/NULL);
Guid_t L_20;
memset((&L_20), 0, sizeof(L_20));
Guid__ctor_m93F5E840798B5FB4B96497327B3907829EBA100A((&L_20), ((ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)Castclass((RuntimeObject*)L_19, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
Nullable_1_t98453FD73999D83935C31555C4C67329F550B15D L_21;
memset((&L_21), 0, sizeof(L_21));
Nullable_1__ctor_m463791C1A9398343D7CEEF8BE9442A7BC643134B((&L_21), L_20, /*hidden argument*/Nullable_1__ctor_m463791C1A9398343D7CEEF8BE9442A7BC643134B_RuntimeMethod_var);
return L_21;
}
IL_0075:
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_22 = V_0;
NullCheck(L_22);
RuntimeObject * L_23 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_22, /*hidden argument*/NULL);
if (((RuntimeObject *)IsInstSealed((RuntimeObject*)L_23, Guid_t_il2cpp_TypeInfo_var)))
{
goto IL_0099;
}
}
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_24 = V_0;
NullCheck(L_24);
RuntimeObject * L_25 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_24, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_26 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
String_t* L_27 = Convert_ToString_m10FC2E5535B944C2DFE83E6D2659122C9408F0FF(L_25, L_26, /*hidden argument*/NULL);
Guid_t L_28;
memset((&L_28), 0, sizeof(L_28));
Guid__ctor_mC668142577A40A77D13B78AADDEFFFC2E2705079((&L_28), L_27, /*hidden argument*/NULL);
G_B12_0 = L_28;
goto IL_00a4;
}
IL_0099:
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_29 = V_0;
NullCheck(L_29);
RuntimeObject * L_30 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_29, /*hidden argument*/NULL);
G_B12_0 = ((*(Guid_t *)((Guid_t *)UnBox(L_30, Guid_t_il2cpp_TypeInfo_var))));
}
IL_00a4:
{
Nullable_1_t98453FD73999D83935C31555C4C67329F550B15D L_31;
memset((&L_31), 0, sizeof(L_31));
Nullable_1__ctor_m463791C1A9398343D7CEEF8BE9442A7BC643134B((&L_31), G_B12_0, /*hidden argument*/Nullable_1__ctor_m463791C1A9398343D7CEEF8BE9442A7BC643134B_RuntimeMethod_var);
return L_31;
}
}
// System.TimeSpan Valve.Newtonsoft.Json.Linq.JToken::op_Explicit(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 JToken_op_Explicit_m228743A6F7AA8F1211038881F0200B154F65E4BD (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JToken_op_Explicit_m228743A6F7AA8F1211038881F0200B154F65E4BD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * V_0 = NULL;
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_0 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_1 = JToken_EnsureValue_m29697CE7680576BB6FBCBE36F876F9AF97384D85(L_0, /*hidden argument*/NULL);
V_0 = L_1;
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_2 = V_0;
if (!L_2)
{
goto IL_0018;
}
}
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_3 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_4 = ((JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_StaticFields*)il2cpp_codegen_static_fields_for(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var))->get_TimeSpanTypes_8();
bool L_5 = JToken_ValidateToken_m7301477AC0BE9EA8911A05AC253126C4F2B05F68(L_3, L_4, (bool)0, /*hidden argument*/NULL);
if (L_5)
{
goto IL_0033;
}
}
IL_0018:
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_6 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_7 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
String_t* L_8 = JToken_GetType_m936BAF5656FA294832F37052918D181807F59906(L_7, /*hidden argument*/NULL);
String_t* L_9 = StringUtils_FormatWith_mA244260995FC801D82F22EC897F3F8BEB8649583(_stringLiteralF4AD080975AFD1170408E50758AAA9DDAF3E7771, L_6, L_8, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_10 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_10, L_9, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, JToken_op_Explicit_m228743A6F7AA8F1211038881F0200B154F65E4BD_RuntimeMethod_var);
}
IL_0033:
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_11 = V_0;
NullCheck(L_11);
RuntimeObject * L_12 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_11, /*hidden argument*/NULL);
if (((RuntimeObject *)IsInstSealed((RuntimeObject*)L_12, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var)))
{
goto IL_0056;
}
}
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_13 = V_0;
NullCheck(L_13);
RuntimeObject * L_14 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_13, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_15 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
String_t* L_16 = Convert_ToString_m10FC2E5535B944C2DFE83E6D2659122C9408F0FF(L_14, L_15, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(ConvertUtils_tC3DD9049164372FED28C737BA8BF739779E0E272_il2cpp_TypeInfo_var);
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_17 = ConvertUtils_ParseTimeSpan_m962E4DDBF9BFB4DC60BC979E73D044EA7CF32E4C(L_16, /*hidden argument*/NULL);
return L_17;
}
IL_0056:
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_18 = V_0;
NullCheck(L_18);
RuntimeObject * L_19 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_18, /*hidden argument*/NULL);
return ((*(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)UnBox(L_19, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var))));
}
}
// System.Nullable`1<System.TimeSpan> Valve.Newtonsoft.Json.Linq.JToken::op_Explicit(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_tA5F97AD8281B6EDEE6731D95047BA50C9996309E JToken_op_Explicit_m4C5743281B40CA02B835681A3F7D032B09E54740 (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JToken_op_Explicit_m4C5743281B40CA02B835681A3F7D032B09E54740_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * V_0 = NULL;
Nullable_1_tA5F97AD8281B6EDEE6731D95047BA50C9996309E V_1;
memset((&V_1), 0, sizeof(V_1));
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 G_B10_0;
memset((&G_B10_0), 0, sizeof(G_B10_0));
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_0 = ___value0;
if (L_0)
{
goto IL_000d;
}
}
{
il2cpp_codegen_initobj((&V_1), sizeof(Nullable_1_tA5F97AD8281B6EDEE6731D95047BA50C9996309E ));
Nullable_1_tA5F97AD8281B6EDEE6731D95047BA50C9996309E L_1 = V_1;
return L_1;
}
IL_000d:
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_2 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_3 = JToken_EnsureValue_m29697CE7680576BB6FBCBE36F876F9AF97384D85(L_2, /*hidden argument*/NULL);
V_0 = L_3;
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_4 = V_0;
if (!L_4)
{
goto IL_0025;
}
}
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_5 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_6 = ((JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_StaticFields*)il2cpp_codegen_static_fields_for(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var))->get_TimeSpanTypes_8();
bool L_7 = JToken_ValidateToken_m7301477AC0BE9EA8911A05AC253126C4F2B05F68(L_5, L_6, (bool)1, /*hidden argument*/NULL);
if (L_7)
{
goto IL_0040;
}
}
IL_0025:
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_8 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_9 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
String_t* L_10 = JToken_GetType_m936BAF5656FA294832F37052918D181807F59906(L_9, /*hidden argument*/NULL);
String_t* L_11 = StringUtils_FormatWith_mA244260995FC801D82F22EC897F3F8BEB8649583(_stringLiteralF4AD080975AFD1170408E50758AAA9DDAF3E7771, L_8, L_10, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_12 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_12, L_11, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, JToken_op_Explicit_m4C5743281B40CA02B835681A3F7D032B09E54740_RuntimeMethod_var);
}
IL_0040:
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_13 = V_0;
NullCheck(L_13);
RuntimeObject * L_14 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_13, /*hidden argument*/NULL);
if (L_14)
{
goto IL_0052;
}
}
{
il2cpp_codegen_initobj((&V_1), sizeof(Nullable_1_tA5F97AD8281B6EDEE6731D95047BA50C9996309E ));
Nullable_1_tA5F97AD8281B6EDEE6731D95047BA50C9996309E L_15 = V_1;
return L_15;
}
IL_0052:
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_16 = V_0;
NullCheck(L_16);
RuntimeObject * L_17 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_16, /*hidden argument*/NULL);
if (((RuntimeObject *)IsInstSealed((RuntimeObject*)L_17, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var)))
{
goto IL_0076;
}
}
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_18 = V_0;
NullCheck(L_18);
RuntimeObject * L_19 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_18, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_20 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
String_t* L_21 = Convert_ToString_m10FC2E5535B944C2DFE83E6D2659122C9408F0FF(L_19, L_20, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(ConvertUtils_tC3DD9049164372FED28C737BA8BF739779E0E272_il2cpp_TypeInfo_var);
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_22 = ConvertUtils_ParseTimeSpan_m962E4DDBF9BFB4DC60BC979E73D044EA7CF32E4C(L_21, /*hidden argument*/NULL);
G_B10_0 = L_22;
goto IL_0081;
}
IL_0076:
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_23 = V_0;
NullCheck(L_23);
RuntimeObject * L_24 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_23, /*hidden argument*/NULL);
G_B10_0 = ((*(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)UnBox(L_24, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var))));
}
IL_0081:
{
Nullable_1_tA5F97AD8281B6EDEE6731D95047BA50C9996309E L_25;
memset((&L_25), 0, sizeof(L_25));
Nullable_1__ctor_m76013822874DCED561CAA4F6418BCBE65D273DA7((&L_25), G_B10_0, /*hidden argument*/Nullable_1__ctor_m76013822874DCED561CAA4F6418BCBE65D273DA7_RuntimeMethod_var);
return L_25;
}
}
// System.Uri Valve.Newtonsoft.Json.Linq.JToken::op_Explicit(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * JToken_op_Explicit_m605A541AE39FC83BA1CD7075873845888F231016 (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JToken_op_Explicit_m605A541AE39FC83BA1CD7075873845888F231016_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * V_0 = NULL;
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_0 = ___value0;
if (L_0)
{
goto IL_0005;
}
}
{
return (Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E *)NULL;
}
IL_0005:
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_1 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_2 = JToken_EnsureValue_m29697CE7680576BB6FBCBE36F876F9AF97384D85(L_1, /*hidden argument*/NULL);
V_0 = L_2;
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_3 = V_0;
if (!L_3)
{
goto IL_001d;
}
}
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_4 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_5 = ((JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_StaticFields*)il2cpp_codegen_static_fields_for(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var))->get_UriTypes_9();
bool L_6 = JToken_ValidateToken_m7301477AC0BE9EA8911A05AC253126C4F2B05F68(L_4, L_5, (bool)1, /*hidden argument*/NULL);
if (L_6)
{
goto IL_0038;
}
}
IL_001d:
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_7 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_8 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
String_t* L_9 = JToken_GetType_m936BAF5656FA294832F37052918D181807F59906(L_8, /*hidden argument*/NULL);
String_t* L_10 = StringUtils_FormatWith_mA244260995FC801D82F22EC897F3F8BEB8649583(_stringLiteral7A977D91AB00FBA9BAC39F8F26EE71A5AA34AB77, L_7, L_9, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_11 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_11, L_10, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, JToken_op_Explicit_m605A541AE39FC83BA1CD7075873845888F231016_RuntimeMethod_var);
}
IL_0038:
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_12 = V_0;
NullCheck(L_12);
RuntimeObject * L_13 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_12, /*hidden argument*/NULL);
if (L_13)
{
goto IL_0042;
}
}
{
return (Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E *)NULL;
}
IL_0042:
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_14 = V_0;
NullCheck(L_14);
RuntimeObject * L_15 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_14, /*hidden argument*/NULL);
if (((Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E *)IsInstClass((RuntimeObject*)L_15, Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_il2cpp_TypeInfo_var)))
{
goto IL_0065;
}
}
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_16 = V_0;
NullCheck(L_16);
RuntimeObject * L_17 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_16, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_18 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
String_t* L_19 = Convert_ToString_m10FC2E5535B944C2DFE83E6D2659122C9408F0FF(L_17, L_18, /*hidden argument*/NULL);
Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * L_20 = (Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E *)il2cpp_codegen_object_new(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_il2cpp_TypeInfo_var);
Uri__ctor_mBA69907A1D799CD12ED44B611985B25FE4C626A2(L_20, L_19, /*hidden argument*/NULL);
return L_20;
}
IL_0065:
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_21 = V_0;
NullCheck(L_21);
RuntimeObject * L_22 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_21, /*hidden argument*/NULL);
return ((Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E *)CastclassClass((RuntimeObject*)L_22, Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_il2cpp_TypeInfo_var));
}
}
// System.Collections.IEnumerator Valve.Newtonsoft.Json.Linq.JToken::System.Collections.IEnumerable.GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JToken_System_Collections_IEnumerable_GetEnumerator_mC18B87C479A499B4E52D2BFF28B4DA9E7DBD44BC (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JToken_System_Collections_IEnumerable_GetEnumerator_mC18B87C479A499B4E52D2BFF28B4DA9E7DBD44BC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<Valve.Newtonsoft.Json.Linq.JToken>::GetEnumerator() */, IEnumerable_1_t060AF8C2D7B1984BA0AD638BA3C871F299F37B3A_il2cpp_TypeInfo_var, __this);
return L_0;
}
}
// System.Collections.Generic.IEnumerator`1<Valve.Newtonsoft.Json.Linq.JToken> Valve.Newtonsoft.Json.Linq.JToken::System.Collections.Generic.IEnumerable<Valve.Newtonsoft.Json.Linq.JToken>.GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JToken_System_Collections_Generic_IEnumerableU3CValve_Newtonsoft_Json_Linq_JTokenU3E_GetEnumerator_m65DAB59FF99E717D799AE474925729B66CD7B60E (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JToken_System_Collections_Generic_IEnumerableU3CValve_Newtonsoft_Json_Linq_JTokenU3E_GetEnumerator_m65DAB59FF99E717D799AE474925729B66CD7B60E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
JEnumerable_1_t8D29AB2A452946C954DC038C163C500CD83ACEF1 V_0;
memset((&V_0), 0, sizeof(V_0));
{
JEnumerable_1_t8D29AB2A452946C954DC038C163C500CD83ACEF1 L_0 = VirtFuncInvoker0< JEnumerable_1_t8D29AB2A452946C954DC038C163C500CD83ACEF1 >::Invoke(15 /* Valve.Newtonsoft.Json.Linq.JEnumerable`1<Valve.Newtonsoft.Json.Linq.JToken> Valve.Newtonsoft.Json.Linq.JToken::Children() */, __this);
V_0 = L_0;
RuntimeObject* L_1 = JEnumerable_1_GetEnumerator_m97C1D763C5868F124F2E8E3EE917282F7B06C28C((JEnumerable_1_t8D29AB2A452946C954DC038C163C500CD83ACEF1 *)(&V_0), /*hidden argument*/JEnumerable_1_GetEnumerator_m97C1D763C5868F124F2E8E3EE917282F7B06C28C_RuntimeMethod_var);
return L_1;
}
}
// Valve.Newtonsoft.Json.JsonReader Valve.Newtonsoft.Json.Linq.JToken::CreateReader()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C * JToken_CreateReader_m6ECADA49EDDCCA133AB8C976803F22F0F6901E94 (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JToken_CreateReader_m6ECADA49EDDCCA133AB8C976803F22F0F6901E94_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
JTokenReader_tE3C9B85315EFF6B3CB0796451D8278F1372C6530 * L_0 = (JTokenReader_tE3C9B85315EFF6B3CB0796451D8278F1372C6530 *)il2cpp_codegen_object_new(JTokenReader_tE3C9B85315EFF6B3CB0796451D8278F1372C6530_il2cpp_TypeInfo_var);
JTokenReader__ctor_mEC548BE486CDEE63EE9B3A551844ECE3D8AA6E9A(L_0, __this, /*hidden argument*/NULL);
return L_0;
}
}
// System.Object Valve.Newtonsoft.Json.Linq.JToken::ToObject(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * JToken_ToObject_m25DE37D91924DB94B96FB2A86FD4CEEB0BE1878D (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * __this, Type_t * ___objectType0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JToken_ToObject_m25DE37D91924DB94B96FB2A86FD4CEEB0BE1878D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
int32_t V_1 = 0;
RuntimeObject * V_2 = NULL;
Exception_t * V_3 = NULL;
Type_t * 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) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
Type_t * G_B7_0 = NULL;
Type_t * G_B12_0 = NULL;
{
IL2CPP_RUNTIME_CLASS_INIT(JsonConvert_t57930AECB47BF08A72A9CF1CCC7547869F91857D_il2cpp_TypeInfo_var);
Func_1_t3CEBF86E0635EABFE16B2FB2AE427AFF966C1E62 * L_0 = JsonConvert_get_DefaultSettings_m06EFD8674EFD5D98521BAB1AF2C2E504580B6944_inline(/*hidden argument*/NULL);
if (L_0)
{
goto IL_02e0;
}
}
{
Type_t * L_1 = ___objectType0;
IL2CPP_RUNTIME_CLASS_INIT(ConvertUtils_tC3DD9049164372FED28C737BA8BF739779E0E272_il2cpp_TypeInfo_var);
int32_t L_2 = ConvertUtils_GetTypeCode_m8787291F428C97CC71FC2972E89B0F258DECB9B5(L_1, (bool*)(&V_0), /*hidden argument*/NULL);
V_1 = L_2;
bool L_3 = V_0;
if (!L_3)
{
goto IL_0093;
}
}
{
int32_t L_4 = VirtFuncInvoker0< int32_t >::Invoke(11 /* Valve.Newtonsoft.Json.Linq.JTokenType Valve.Newtonsoft.Json.Linq.JToken::get_Type() */, __this);
if ((!(((uint32_t)L_4) == ((uint32_t)8))))
{
goto IL_0068;
}
}
IL_001f:
try
{ // begin try (depth: 1)
Type_t * L_5 = ___objectType0;
JsonSerializer_t1D5D385AB5641E8958FC0E6ECB498B4DC45BC4D4 * L_6 = JsonSerializer_CreateDefault_m50084EFB23A5CFFA3C640E75BA8504FE33F5A97A(/*hidden argument*/NULL);
RuntimeObject * L_7 = JToken_ToObject_m3CB0FEB1BF65579D7E1F1AD5A24A05D63590FC6B(__this, L_5, L_6, /*hidden argument*/NULL);
V_2 = L_7;
goto IL_02ed;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0031;
throw e;
}
CATCH_0031:
{ // begin catch(System.Exception)
{
V_3 = ((Exception_t *)__exception_local);
Type_t * L_8 = ___objectType0;
bool L_9 = TypeExtensions_IsEnum_m6EE0549656F25383D4F2DD299EC643041CEA0A2D(L_8, /*hidden argument*/NULL);
if (L_9)
{
goto IL_0042;
}
}
IL_003a:
{
Type_t * L_10 = ___objectType0;
Type_t * L_11 = Nullable_GetUnderlyingType_m038B195642BF738026196B1629997705B6317D04(L_10, /*hidden argument*/NULL);
G_B7_0 = L_11;
goto IL_0043;
}
IL_0042:
{
Type_t * L_12 = ___objectType0;
G_B7_0 = L_12;
}
IL_0043:
{
V_4 = G_B7_0;
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_13 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
String_t* L_14 = JToken_op_Explicit_m6E58E8AE940056709C57FCA1BD9E9F8ABF029827(__this, /*hidden argument*/NULL);
Type_t * L_15 = V_4;
NullCheck(L_15);
String_t* L_16 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_15);
String_t* L_17 = StringUtils_FormatWith_m0847578DA1FD34776DD9C2AB8A4BA694D05A8C6D(_stringLiteral0CE7AD1482EAEB3EE9A7A1F3A906DFE1859FADF1, L_13, L_14, L_16, /*hidden argument*/NULL);
Exception_t * L_18 = V_3;
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_19 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m1BF85DCCECA37FCD88A0884AF3C4D03566911BF0(L_19, L_17, L_18, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_19, JToken_ToObject_m25DE37D91924DB94B96FB2A86FD4CEEB0BE1878D_RuntimeMethod_var);
}
} // end catch (depth: 1)
IL_0068:
{
int32_t L_20 = VirtFuncInvoker0< int32_t >::Invoke(11 /* Valve.Newtonsoft.Json.Linq.JTokenType Valve.Newtonsoft.Json.Linq.JToken::get_Type() */, __this);
if ((!(((uint32_t)L_20) == ((uint32_t)6))))
{
goto IL_0093;
}
}
{
Type_t * L_21 = ___objectType0;
bool L_22 = TypeExtensions_IsEnum_m6EE0549656F25383D4F2DD299EC643041CEA0A2D(L_21, /*hidden argument*/NULL);
if (L_22)
{
goto IL_0081;
}
}
{
Type_t * L_23 = ___objectType0;
Type_t * L_24 = Nullable_GetUnderlyingType_m038B195642BF738026196B1629997705B6317D04(L_23, /*hidden argument*/NULL);
G_B12_0 = L_24;
goto IL_0082;
}
IL_0081:
{
Type_t * L_25 = ___objectType0;
G_B12_0 = L_25;
}
IL_0082:
{
NullCheck(((JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 *)CastclassClass((RuntimeObject*)__this, JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3_il2cpp_TypeInfo_var)));
RuntimeObject * L_26 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(((JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 *)CastclassClass((RuntimeObject*)__this, JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var);
RuntimeObject * L_27 = Enum_ToObject_mED18F2B01F4BA412C1882396CE977411BB54165D(G_B12_0, L_26, /*hidden argument*/NULL);
return L_27;
}
IL_0093:
{
int32_t L_28 = V_1;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_28, (int32_t)2)))
{
case 0:
{
goto IL_015c;
}
case 1:
{
goto IL_0150;
}
case 2:
{
goto IL_0144;
}
case 3:
{
goto IL_0138;
}
case 4:
{
goto IL_0168;
}
case 5:
{
goto IL_0174;
}
case 6:
{
goto IL_01a4;
}
case 7:
{
goto IL_0198;
}
case 8:
{
goto IL_01bc;
}
case 9:
{
goto IL_01b0;
}
case 10:
{
goto IL_01d4;
}
case 11:
{
goto IL_01c8;
}
case 12:
{
goto IL_018c;
}
case 13:
{
goto IL_0180;
}
case 14:
{
goto IL_01ec;
}
case 15:
{
goto IL_01e0;
}
case 16:
{
goto IL_0204;
}
case 17:
{
goto IL_01f8;
}
case 18:
{
goto IL_021c;
}
case 19:
{
goto IL_0210;
}
case 20:
{
goto IL_0234;
}
case 21:
{
goto IL_0228;
}
case 22:
{
goto IL_024d;
}
case 23:
{
goto IL_0241;
}
case 24:
{
goto IL_027e;
}
case 25:
{
goto IL_0272;
}
case 26:
{
goto IL_0296;
}
case 27:
{
goto IL_028a;
}
case 28:
{
goto IL_0266;
}
case 29:
{
goto IL_025a;
}
case 30:
{
goto IL_02b5;
}
case 31:
{
goto IL_02a9;
}
case 32:
{
goto IL_02d4;
}
case 33:
{
goto IL_02c8;
}
case 34:
{
goto IL_02e0;
}
case 35:
{
goto IL_02e0;
}
case 36:
{
goto IL_02c1;
}
case 37:
{
goto IL_02a2;
}
}
}
{
goto IL_02e0;
}
IL_0138:
{
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 L_29 = JToken_op_Explicit_m1E9A9C48AA45CF496362D8EC2C8C710289691F4C(__this, /*hidden argument*/NULL);
Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 L_30 = L_29;
RuntimeObject * L_31 = Box(Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793_il2cpp_TypeInfo_var, &L_30);
return L_31;
}
IL_0144:
{
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
bool L_32 = JToken_op_Explicit_mC85A803929686E2746F451B17F94D9C381941970(__this, /*hidden argument*/NULL);
bool L_33 = L_32;
RuntimeObject * L_34 = Box(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_il2cpp_TypeInfo_var, &L_33);
return L_34;
}
IL_0150:
{
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
Nullable_1_tEB9036CD852DD7DCDAC49BEEC424155F285C4FD6 L_35 = JToken_op_Explicit_m4B2C0E17D59DD2C8C1FF029F40761CBC3F5F997C(__this, /*hidden argument*/NULL);
Nullable_1_tEB9036CD852DD7DCDAC49BEEC424155F285C4FD6 L_36 = L_35;
RuntimeObject * L_37 = Box(Nullable_1_tEB9036CD852DD7DCDAC49BEEC424155F285C4FD6_il2cpp_TypeInfo_var, &L_36);
return L_37;
}
IL_015c:
{
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
Il2CppChar L_38 = JToken_op_Explicit_mA3627E69282A828ABE2FF505D43B887C1E54CC6F(__this, /*hidden argument*/NULL);
Il2CppChar L_39 = L_38;
RuntimeObject * L_40 = Box(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var, &L_39);
return L_40;
}
IL_0168:
{
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
Nullable_1_t2F4FA162D87EDE69C4CAA5E3E739CB702A780EAE L_41 = JToken_op_Explicit_m8A71CA7343DDFE91A7EF435556490C67237B6730(__this, /*hidden argument*/NULL);
Nullable_1_t2F4FA162D87EDE69C4CAA5E3E739CB702A780EAE L_42 = L_41;
RuntimeObject * L_43 = Box(Nullable_1_t2F4FA162D87EDE69C4CAA5E3E739CB702A780EAE_il2cpp_TypeInfo_var, &L_42);
return L_43;
}
IL_0174:
{
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
int8_t L_44 = JToken_op_Explicit_m6246D2129AAA644B0F738E37B7D8EE0C72174C88(__this, /*hidden argument*/NULL);
int8_t L_45 = L_44;
RuntimeObject * L_46 = Box(SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_il2cpp_TypeInfo_var, &L_45);
return L_46;
}
IL_0180:
{
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
Nullable_1_tB4C4F9557481ABDC6DFB4E6C55B481A29DDCC299 L_47 = JToken_op_Explicit_m192E38F83BDA627DA2F67D6E8E556C7E8BCFFC0E(__this, /*hidden argument*/NULL);
Nullable_1_tB4C4F9557481ABDC6DFB4E6C55B481A29DDCC299 L_48 = L_47;
RuntimeObject * L_49 = Box(Nullable_1_tB4C4F9557481ABDC6DFB4E6C55B481A29DDCC299_il2cpp_TypeInfo_var, &L_48);
return L_49;
}
IL_018c:
{
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
uint8_t L_50 = JToken_op_Explicit_m082F0E38845FD5F318438D29D7A41D8B278030A8(__this, /*hidden argument*/NULL);
uint8_t L_51 = L_50;
RuntimeObject * L_52 = Box(Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_il2cpp_TypeInfo_var, &L_51);
return L_52;
}
IL_0198:
{
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
Nullable_1_t6DD1091F06288053C77A1E21CDA46B9FC0C082FE L_53 = JToken_op_Explicit_m0E3D752E4AC01EC03E0C471F25E928CF84C70F4D(__this, /*hidden argument*/NULL);
Nullable_1_t6DD1091F06288053C77A1E21CDA46B9FC0C082FE L_54 = L_53;
RuntimeObject * L_55 = Box(Nullable_1_t6DD1091F06288053C77A1E21CDA46B9FC0C082FE_il2cpp_TypeInfo_var, &L_54);
return L_55;
}
IL_01a4:
{
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
int16_t L_56 = JToken_op_Explicit_mFB7B71446CAF7B4C8B316D719C957D7379D8B45F(__this, /*hidden argument*/NULL);
int16_t L_57 = L_56;
RuntimeObject * L_58 = Box(Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_il2cpp_TypeInfo_var, &L_57);
return L_58;
}
IL_01b0:
{
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
Nullable_1_tF0BF09F44075092EA142C4F8348486254518EEA0 L_59 = JToken_op_Explicit_m8BE4447D408B52AB5B4C347699BCA9CE5F5C8561(__this, /*hidden argument*/NULL);
Nullable_1_tF0BF09F44075092EA142C4F8348486254518EEA0 L_60 = L_59;
RuntimeObject * L_61 = Box(Nullable_1_tF0BF09F44075092EA142C4F8348486254518EEA0_il2cpp_TypeInfo_var, &L_60);
return L_61;
}
IL_01bc:
{
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
uint16_t L_62 = JToken_op_Explicit_mAB7E763BA2CB33D56DFFBB8A5E83F4670B2805A1(__this, /*hidden argument*/NULL);
uint16_t L_63 = L_62;
RuntimeObject * L_64 = Box(UInt16_tAE45CEF73BF720100519F6867F32145D075F928E_il2cpp_TypeInfo_var, &L_63);
return L_64;
}
IL_01c8:
{
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB L_65 = JToken_op_Explicit_m7BA83EAF9DB15A8ECAFD5DC5D7E80EE34845090A(__this, /*hidden argument*/NULL);
Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB L_66 = L_65;
RuntimeObject * L_67 = Box(Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB_il2cpp_TypeInfo_var, &L_66);
return L_67;
}
IL_01d4:
{
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
int32_t L_68 = JToken_op_Explicit_m5623B70899025B395BF68890057E8827DFC09062(__this, /*hidden argument*/NULL);
int32_t L_69 = L_68;
RuntimeObject * L_70 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_69);
return L_70;
}
IL_01e0:
{
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
Nullable_1_tF156B0EB96E1F21CE812F1DFC94779464E49DAF3 L_71 = JToken_op_Explicit_m41462F6ED4A9D06149285D2ECD7925155A64480E(__this, /*hidden argument*/NULL);
Nullable_1_tF156B0EB96E1F21CE812F1DFC94779464E49DAF3 L_72 = L_71;
RuntimeObject * L_73 = Box(Nullable_1_tF156B0EB96E1F21CE812F1DFC94779464E49DAF3_il2cpp_TypeInfo_var, &L_72);
return L_73;
}
IL_01ec:
{
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
uint32_t L_74 = JToken_op_Explicit_mE90FD8213A2770ECA6B0E9628B2D614CAA8B68B1(__this, /*hidden argument*/NULL);
uint32_t L_75 = L_74;
RuntimeObject * L_76 = Box(UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_il2cpp_TypeInfo_var, &L_75);
return L_76;
}
IL_01f8:
{
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
Nullable_1_t8A84BC5F3B3D55B8E96E9B812BDCCCB962EB2AB5 L_77 = JToken_op_Explicit_m4A902F230BF538F167115B997338C4C62E000B5A(__this, /*hidden argument*/NULL);
Nullable_1_t8A84BC5F3B3D55B8E96E9B812BDCCCB962EB2AB5 L_78 = L_77;
RuntimeObject * L_79 = Box(Nullable_1_t8A84BC5F3B3D55B8E96E9B812BDCCCB962EB2AB5_il2cpp_TypeInfo_var, &L_78);
return L_79;
}
IL_0204:
{
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
int64_t L_80 = JToken_op_Explicit_m3B70105D407BAD5D01D511E04215FB146ED1C8EF(__this, /*hidden argument*/NULL);
int64_t L_81 = L_80;
RuntimeObject * L_82 = Box(Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_il2cpp_TypeInfo_var, &L_81);
return L_82;
}
IL_0210:
{
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
Nullable_1_tE6DB2821D06FC32375C83F1A7E8AFF51557CE14B L_83 = JToken_op_Explicit_m7ED97B5A92E6F2DABB2C58A8E96280683F1294DE(__this, /*hidden argument*/NULL);
Nullable_1_tE6DB2821D06FC32375C83F1A7E8AFF51557CE14B L_84 = L_83;
RuntimeObject * L_85 = Box(Nullable_1_tE6DB2821D06FC32375C83F1A7E8AFF51557CE14B_il2cpp_TypeInfo_var, &L_84);
return L_85;
}
IL_021c:
{
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
uint64_t L_86 = JToken_op_Explicit_m60AD9B22AC43C9483A4EC736E8B08DBB098144E9(__this, /*hidden argument*/NULL);
uint64_t L_87 = L_86;
RuntimeObject * L_88 = Box(UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_il2cpp_TypeInfo_var, &L_87);
return L_88;
}
IL_0228:
{
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 L_89 = JToken_op_Explicit_m8E6B7E51C03E9438547FBAEDEDDD6B53817D68F0(__this, /*hidden argument*/NULL);
Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 L_90 = L_89;
RuntimeObject * L_91 = Box(Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0_il2cpp_TypeInfo_var, &L_90);
return L_91;
}
IL_0234:
{
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
float L_92 = JToken_op_Explicit_m8315F88547897B494F2FAD9E6F9B9F9BE12106CE(__this, /*hidden argument*/NULL);
float L_93 = (((float)((float)L_92)));
RuntimeObject * L_94 = Box(Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_il2cpp_TypeInfo_var, &L_93);
return L_94;
}
IL_0241:
{
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
Nullable_1_tBFE8022F4FD60FAE6E29634776F92F0C7DDF0ECF L_95 = JToken_op_Explicit_m416851C04EED574BB38FBA7B22993342FB2BF71C(__this, /*hidden argument*/NULL);
Nullable_1_tBFE8022F4FD60FAE6E29634776F92F0C7DDF0ECF L_96 = L_95;
RuntimeObject * L_97 = Box(Nullable_1_tBFE8022F4FD60FAE6E29634776F92F0C7DDF0ECF_il2cpp_TypeInfo_var, &L_96);
return L_97;
}
IL_024d:
{
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
double L_98 = JToken_op_Explicit_m82C9797D6694CAD60E2D8C75CE6651DFA5EFF498(__this, /*hidden argument*/NULL);
double L_99 = (((double)((double)L_98)));
RuntimeObject * L_100 = Box(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var, &L_99);
return L_100;
}
IL_025a:
{
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
Nullable_1_t980A9BF956626264580BF8B4E1E3DBD88D9337C1 L_101 = JToken_op_Explicit_mFB9585959C8EEC5EB76A6F32BD5BB46C970373BC(__this, /*hidden argument*/NULL);
Nullable_1_t980A9BF956626264580BF8B4E1E3DBD88D9337C1 L_102 = L_101;
RuntimeObject * L_103 = Box(Nullable_1_t980A9BF956626264580BF8B4E1E3DBD88D9337C1_il2cpp_TypeInfo_var, &L_102);
return L_103;
}
IL_0266:
{
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_104 = JToken_op_Explicit_m3FB97A54D97040485003B7DB9259575E91486DDD(__this, /*hidden argument*/NULL);
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_105 = L_104;
RuntimeObject * L_106 = Box(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_il2cpp_TypeInfo_var, &L_105);
return L_106;
}
IL_0272:
{
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
Nullable_1_t3290384E361396B3724B88B498CBF637D7E87B78 L_107 = JToken_op_Explicit_m7742F5054343B22E5355351816390A528A303074(__this, /*hidden argument*/NULL);
Nullable_1_t3290384E361396B3724B88B498CBF637D7E87B78 L_108 = L_107;
RuntimeObject * L_109 = Box(Nullable_1_t3290384E361396B3724B88B498CBF637D7E87B78_il2cpp_TypeInfo_var, &L_108);
return L_109;
}
IL_027e:
{
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_110 = JToken_op_Explicit_m0170BD465F577BF1F4C284F9318550F3A59B7A6D(__this, /*hidden argument*/NULL);
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_111 = L_110;
RuntimeObject * L_112 = Box(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var, &L_111);
return L_112;
}
IL_028a:
{
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
Nullable_1_tD63596AAA40EDF5AE4981F1C2B4F3A8A24E1DD67 L_113 = JToken_op_Explicit_mC85D8549261D1AA45EDA536128EB37846421DFFE(__this, /*hidden argument*/NULL);
Nullable_1_tD63596AAA40EDF5AE4981F1C2B4F3A8A24E1DD67 L_114 = L_113;
RuntimeObject * L_115 = Box(Nullable_1_tD63596AAA40EDF5AE4981F1C2B4F3A8A24E1DD67_il2cpp_TypeInfo_var, &L_114);
return L_115;
}
IL_0296:
{
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 L_116 = JToken_op_Explicit_m96FDA8D285EF8DE68D836B9F923CBF88862B3112(__this, /*hidden argument*/NULL);
DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 L_117 = L_116;
RuntimeObject * L_118 = Box(DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_il2cpp_TypeInfo_var, &L_117);
return L_118;
}
IL_02a2:
{
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
String_t* L_119 = JToken_op_Explicit_m6E58E8AE940056709C57FCA1BD9E9F8ABF029827(__this, /*hidden argument*/NULL);
return L_119;
}
IL_02a9:
{
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
Nullable_1_t98453FD73999D83935C31555C4C67329F550B15D L_120 = JToken_op_Explicit_mC0182FB7BB4A0132464F0AD3CA2FE73B2737260F(__this, /*hidden argument*/NULL);
Nullable_1_t98453FD73999D83935C31555C4C67329F550B15D L_121 = L_120;
RuntimeObject * L_122 = Box(Nullable_1_t98453FD73999D83935C31555C4C67329F550B15D_il2cpp_TypeInfo_var, &L_121);
return L_122;
}
IL_02b5:
{
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
Guid_t L_123 = JToken_op_Explicit_mDFB2FFD5BE9B8D15EA977A3B679B3D1FD38E9C1E(__this, /*hidden argument*/NULL);
Guid_t L_124 = L_123;
RuntimeObject * L_125 = Box(Guid_t_il2cpp_TypeInfo_var, &L_124);
return L_125;
}
IL_02c1:
{
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * L_126 = JToken_op_Explicit_m605A541AE39FC83BA1CD7075873845888F231016(__this, /*hidden argument*/NULL);
return L_126;
}
IL_02c8:
{
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
Nullable_1_tA5F97AD8281B6EDEE6731D95047BA50C9996309E L_127 = JToken_op_Explicit_m4C5743281B40CA02B835681A3F7D032B09E54740(__this, /*hidden argument*/NULL);
Nullable_1_tA5F97AD8281B6EDEE6731D95047BA50C9996309E L_128 = L_127;
RuntimeObject * L_129 = Box(Nullable_1_tA5F97AD8281B6EDEE6731D95047BA50C9996309E_il2cpp_TypeInfo_var, &L_128);
return L_129;
}
IL_02d4:
{
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_130 = JToken_op_Explicit_m228743A6F7AA8F1211038881F0200B154F65E4BD(__this, /*hidden argument*/NULL);
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_131 = L_130;
RuntimeObject * L_132 = Box(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var, &L_131);
return L_132;
}
IL_02e0:
{
Type_t * L_133 = ___objectType0;
JsonSerializer_t1D5D385AB5641E8958FC0E6ECB498B4DC45BC4D4 * L_134 = JsonSerializer_CreateDefault_m50084EFB23A5CFFA3C640E75BA8504FE33F5A97A(/*hidden argument*/NULL);
RuntimeObject * L_135 = JToken_ToObject_m3CB0FEB1BF65579D7E1F1AD5A24A05D63590FC6B(__this, L_133, L_134, /*hidden argument*/NULL);
return L_135;
}
IL_02ed:
{
RuntimeObject * L_136 = V_2;
return L_136;
}
}
// System.Object Valve.Newtonsoft.Json.Linq.JToken::ToObject(System.Type,Valve.Newtonsoft.Json.JsonSerializer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * JToken_ToObject_m3CB0FEB1BF65579D7E1F1AD5A24A05D63590FC6B (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * __this, Type_t * ___objectType0, JsonSerializer_t1D5D385AB5641E8958FC0E6ECB498B4DC45BC4D4 * ___jsonSerializer1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JToken_ToObject_m3CB0FEB1BF65579D7E1F1AD5A24A05D63590FC6B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
JTokenReader_tE3C9B85315EFF6B3CB0796451D8278F1372C6530 * V_0 = NULL;
RuntimeObject * 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);
{
JsonSerializer_t1D5D385AB5641E8958FC0E6ECB498B4DC45BC4D4 * L_0 = ___jsonSerializer1;
ValidationUtils_ArgumentNotNull_mA6823FB6A1184537A467BD3BAFA6C06126EF7AE9(L_0, _stringLiteral193E7711CE74D1718FC06BF94353513E4BCB0846, /*hidden argument*/NULL);
JTokenReader_tE3C9B85315EFF6B3CB0796451D8278F1372C6530 * L_1 = (JTokenReader_tE3C9B85315EFF6B3CB0796451D8278F1372C6530 *)il2cpp_codegen_object_new(JTokenReader_tE3C9B85315EFF6B3CB0796451D8278F1372C6530_il2cpp_TypeInfo_var);
JTokenReader__ctor_mEC548BE486CDEE63EE9B3A551844ECE3D8AA6E9A(L_1, __this, /*hidden argument*/NULL);
V_0 = L_1;
}
IL_0012:
try
{ // begin try (depth: 1)
JsonSerializer_t1D5D385AB5641E8958FC0E6ECB498B4DC45BC4D4 * L_2 = ___jsonSerializer1;
JTokenReader_tE3C9B85315EFF6B3CB0796451D8278F1372C6530 * L_3 = V_0;
Type_t * L_4 = ___objectType0;
NullCheck(L_2);
RuntimeObject * L_5 = JsonSerializer_Deserialize_m251062B7395F556D846231726D58C26B863FD888(L_2, L_3, L_4, /*hidden argument*/NULL);
V_1 = L_5;
IL2CPP_LEAVE(0x27, FINALLY_001d);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_001d;
}
FINALLY_001d:
{ // begin finally (depth: 1)
{
JTokenReader_tE3C9B85315EFF6B3CB0796451D8278F1372C6530 * L_6 = V_0;
if (!L_6)
{
goto IL_0026;
}
}
IL_0020:
{
JTokenReader_tE3C9B85315EFF6B3CB0796451D8278F1372C6530 * L_7 = V_0;
NullCheck(L_7);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_7);
}
IL_0026:
{
IL2CPP_END_FINALLY(29)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(29)
{
IL2CPP_JUMP_TBL(0x27, IL_0027)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0027:
{
RuntimeObject * L_8 = V_1;
return L_8;
}
}
// Valve.Newtonsoft.Json.Linq.JToken Valve.Newtonsoft.Json.Linq.JToken::ReadFrom(Valve.Newtonsoft.Json.JsonReader)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * JToken_ReadFrom_m08D8856006F5203D052E0834D4F70F5EFF6DD568 (JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C * ___reader0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JToken_ReadFrom_m08D8856006F5203D052E0834D4F70F5EFF6DD568_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C * L_0 = ___reader0;
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_1 = JToken_ReadFrom_m454A08E195A1697F3C7FA81E045AD7A7886A55D7(L_0, (JsonLoadSettings_tB5261F5FE452665393A12B96A793FE21DF91D45A *)NULL, /*hidden argument*/NULL);
return L_1;
}
}
// Valve.Newtonsoft.Json.Linq.JToken Valve.Newtonsoft.Json.Linq.JToken::ReadFrom(Valve.Newtonsoft.Json.JsonReader,Valve.Newtonsoft.Json.Linq.JsonLoadSettings)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * JToken_ReadFrom_m454A08E195A1697F3C7FA81E045AD7A7886A55D7 (JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C * ___reader0, JsonLoadSettings_tB5261F5FE452665393A12B96A793FE21DF91D45A * ___settings1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JToken_ReadFrom_m454A08E195A1697F3C7FA81E045AD7A7886A55D7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
int32_t V_1 = 0;
bool G_B5_0 = false;
{
JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C * L_0 = ___reader0;
ValidationUtils_ArgumentNotNull_mA6823FB6A1184537A467BD3BAFA6C06126EF7AE9(L_0, _stringLiteral24B55FE81E9E7B11798D3A4E4677DD48FFC81559, /*hidden argument*/NULL);
JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C * L_1 = ___reader0;
NullCheck(L_1);
int32_t L_2 = VirtFuncInvoker0< int32_t >::Invoke(5 /* Valve.Newtonsoft.Json.JsonToken Valve.Newtonsoft.Json.JsonReader::get_TokenType() */, L_1);
if (L_2)
{
goto IL_003a;
}
}
{
JsonLoadSettings_tB5261F5FE452665393A12B96A793FE21DF91D45A * L_3 = ___settings1;
if (!L_3)
{
goto IL_001e;
}
}
{
JsonLoadSettings_tB5261F5FE452665393A12B96A793FE21DF91D45A * L_4 = ___settings1;
NullCheck(L_4);
int32_t L_5 = JsonLoadSettings_get_CommentHandling_mBB1D26011CD2B88F331440AAB727BA800E5D44F9_inline(L_4, /*hidden argument*/NULL);
if (!L_5)
{
goto IL_0026;
}
}
IL_001e:
{
JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C * L_6 = ___reader0;
NullCheck(L_6);
bool L_7 = VirtFuncInvoker0< bool >::Invoke(10 /* System.Boolean Valve.Newtonsoft.Json.JsonReader::Read() */, L_6);
G_B5_0 = L_7;
goto IL_002c;
}
IL_0026:
{
JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C * L_8 = ___reader0;
NullCheck(L_8);
bool L_9 = JsonReader_ReadAndMoveToContent_mF3EA1BC3847129DDD91AA56E0AB1E06843A133AB(L_8, /*hidden argument*/NULL);
G_B5_0 = L_9;
}
IL_002c:
{
if (G_B5_0)
{
goto IL_003a;
}
}
{
JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C * L_10 = ___reader0;
JsonReaderException_t1C6240BBE2D8125B80F7E72F0EE572194B3263DC * L_11 = JsonReaderException_Create_m18EFA18A35D7F56A561A4590598A68B2EABD92DA(L_10, _stringLiteral2C70C37BF44AF34EE884C4B0FA16B26A3CD7F673, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, JToken_ReadFrom_m454A08E195A1697F3C7FA81E045AD7A7886A55D7_RuntimeMethod_var);
}
IL_003a:
{
JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C * L_12 = ___reader0;
V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_12, IJsonLineInfo_t7E81AAC43FB40592D509A17DBF8FAABAAE6AC29D_il2cpp_TypeInfo_var));
JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C * L_13 = ___reader0;
NullCheck(L_13);
int32_t L_14 = VirtFuncInvoker0< int32_t >::Invoke(5 /* Valve.Newtonsoft.Json.JsonToken Valve.Newtonsoft.Json.JsonReader::get_TokenType() */, L_13);
V_1 = L_14;
int32_t L_15 = V_1;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_15, (int32_t)1)))
{
case 0:
{
goto IL_0096;
}
case 1:
{
goto IL_009e;
}
case 2:
{
goto IL_00a6;
}
case 3:
{
goto IL_00ae;
}
case 4:
{
goto IL_00ca;
}
case 5:
{
goto IL_00ff;
}
case 6:
{
goto IL_00b6;
}
case 7:
{
goto IL_00b6;
}
case 8:
{
goto IL_00b6;
}
case 9:
{
goto IL_00b6;
}
case 10:
{
goto IL_00e3;
}
case 11:
{
goto IL_00f1;
}
case 12:
{
goto IL_00ff;
}
case 13:
{
goto IL_00ff;
}
case 14:
{
goto IL_00ff;
}
case 15:
{
goto IL_00b6;
}
case 16:
{
goto IL_00b6;
}
}
}
{
goto IL_00ff;
}
IL_0096:
{
JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C * L_16 = ___reader0;
JsonLoadSettings_tB5261F5FE452665393A12B96A793FE21DF91D45A * L_17 = ___settings1;
JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21 * L_18 = JObject_Load_m2FC3E570F52E343E3B99668B1BA490E65656B1A4(L_16, L_17, /*hidden argument*/NULL);
return L_18;
}
IL_009e:
{
JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C * L_19 = ___reader0;
JsonLoadSettings_tB5261F5FE452665393A12B96A793FE21DF91D45A * L_20 = ___settings1;
JArray_t8AE8A8AB34EFB9A770BC34AB9EA47BE9DC7F45C2 * L_21 = JArray_Load_m64889E9B34463684A57C890006E3993E13DE75C4(L_19, L_20, /*hidden argument*/NULL);
return L_21;
}
IL_00a6:
{
JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C * L_22 = ___reader0;
JsonLoadSettings_tB5261F5FE452665393A12B96A793FE21DF91D45A * L_23 = ___settings1;
JConstructor_t31B236A37CEC95856D10CB7C3F276D6C4CA0B26B * L_24 = JConstructor_Load_mF08CFFCFD1193A463DF66B7A9BDD0E2C6A200949(L_22, L_23, /*hidden argument*/NULL);
return L_24;
}
IL_00ae:
{
JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C * L_25 = ___reader0;
JsonLoadSettings_tB5261F5FE452665393A12B96A793FE21DF91D45A * L_26 = ___settings1;
JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * L_27 = JProperty_Load_mDAD45AC264E953A8903F590A7ACC96A1C6F62FDF(L_25, L_26, /*hidden argument*/NULL);
return L_27;
}
IL_00b6:
{
JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C * L_28 = ___reader0;
NullCheck(L_28);
RuntimeObject * L_29 = VirtFuncInvoker0< RuntimeObject * >::Invoke(6 /* System.Object Valve.Newtonsoft.Json.JsonReader::get_Value() */, L_28);
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_30 = (JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 *)il2cpp_codegen_object_new(JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3_il2cpp_TypeInfo_var);
JValue__ctor_mA1877799B837592DB979A9174AEE2D9521D41985(L_30, L_29, /*hidden argument*/NULL);
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_31 = L_30;
RuntimeObject* L_32 = V_0;
JsonLoadSettings_tB5261F5FE452665393A12B96A793FE21DF91D45A * L_33 = ___settings1;
NullCheck(L_31);
JToken_SetLineInfo_m0315B529EF0753213FB16C33647C9F2539B64193(L_31, L_32, L_33, /*hidden argument*/NULL);
return L_31;
}
IL_00ca:
{
JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C * L_34 = ___reader0;
NullCheck(L_34);
RuntimeObject * L_35 = VirtFuncInvoker0< RuntimeObject * >::Invoke(6 /* System.Object Valve.Newtonsoft.Json.JsonReader::get_Value() */, L_34);
NullCheck(L_35);
String_t* L_36 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_35);
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_37 = JValue_CreateComment_mB22EE156BA4E18B35393ED2634F98E19175B524A(L_36, /*hidden argument*/NULL);
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_38 = L_37;
RuntimeObject* L_39 = V_0;
JsonLoadSettings_tB5261F5FE452665393A12B96A793FE21DF91D45A * L_40 = ___settings1;
NullCheck(L_38);
JToken_SetLineInfo_m0315B529EF0753213FB16C33647C9F2539B64193(L_38, L_39, L_40, /*hidden argument*/NULL);
return L_38;
}
IL_00e3:
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_41 = JValue_CreateNull_m3CCD3BCA725D2424F3C62FA811D56AD35DCD1066(/*hidden argument*/NULL);
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_42 = L_41;
RuntimeObject* L_43 = V_0;
JsonLoadSettings_tB5261F5FE452665393A12B96A793FE21DF91D45A * L_44 = ___settings1;
NullCheck(L_42);
JToken_SetLineInfo_m0315B529EF0753213FB16C33647C9F2539B64193(L_42, L_43, L_44, /*hidden argument*/NULL);
return L_42;
}
IL_00f1:
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_45 = JValue_CreateUndefined_m692597F85235F264FFE2608A6AF1C5789A2E0092(/*hidden argument*/NULL);
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_46 = L_45;
RuntimeObject* L_47 = V_0;
JsonLoadSettings_tB5261F5FE452665393A12B96A793FE21DF91D45A * L_48 = ___settings1;
NullCheck(L_46);
JToken_SetLineInfo_m0315B529EF0753213FB16C33647C9F2539B64193(L_46, L_47, L_48, /*hidden argument*/NULL);
return L_46;
}
IL_00ff:
{
JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C * L_49 = ___reader0;
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_50 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C * L_51 = ___reader0;
NullCheck(L_51);
int32_t L_52 = VirtFuncInvoker0< int32_t >::Invoke(5 /* Valve.Newtonsoft.Json.JsonToken Valve.Newtonsoft.Json.JsonReader::get_TokenType() */, L_51);
int32_t L_53 = L_52;
RuntimeObject * L_54 = Box(JsonToken_t0C71FBC985C653C19D3A1CA63373FC84B6F13406_il2cpp_TypeInfo_var, &L_53);
String_t* L_55 = StringUtils_FormatWith_mA244260995FC801D82F22EC897F3F8BEB8649583(_stringLiteral295955804367B0833757D2848073AE42D5F933AE, L_50, L_54, /*hidden argument*/NULL);
JsonReaderException_t1C6240BBE2D8125B80F7E72F0EE572194B3263DC * L_56 = JsonReaderException_Create_m18EFA18A35D7F56A561A4590598A68B2EABD92DA(L_49, L_55, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_56, JToken_ReadFrom_m454A08E195A1697F3C7FA81E045AD7A7886A55D7_RuntimeMethod_var);
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JToken::SetLineInfo(Valve.Newtonsoft.Json.IJsonLineInfo,Valve.Newtonsoft.Json.Linq.JsonLoadSettings)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JToken_SetLineInfo_m0315B529EF0753213FB16C33647C9F2539B64193 (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * __this, RuntimeObject* ___lineInfo0, JsonLoadSettings_tB5261F5FE452665393A12B96A793FE21DF91D45A * ___settings1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JToken_SetLineInfo_m0315B529EF0753213FB16C33647C9F2539B64193_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
JsonLoadSettings_tB5261F5FE452665393A12B96A793FE21DF91D45A * L_0 = ___settings1;
if (!L_0)
{
goto IL_000d;
}
}
{
JsonLoadSettings_tB5261F5FE452665393A12B96A793FE21DF91D45A * L_1 = ___settings1;
NullCheck(L_1);
int32_t L_2 = JsonLoadSettings_get_LineInfoHandling_m84C480E6D3F94571C4845D2EF2CCB0E045768E0E_inline(L_1, /*hidden argument*/NULL);
if ((!(((uint32_t)L_2) == ((uint32_t)1))))
{
goto IL_000d;
}
}
{
return;
}
IL_000d:
{
RuntimeObject* L_3 = ___lineInfo0;
if (!L_3)
{
goto IL_0018;
}
}
{
RuntimeObject* L_4 = ___lineInfo0;
NullCheck(L_4);
bool L_5 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean Valve.Newtonsoft.Json.IJsonLineInfo::HasLineInfo() */, IJsonLineInfo_t7E81AAC43FB40592D509A17DBF8FAABAAE6AC29D_il2cpp_TypeInfo_var, L_4);
if (L_5)
{
goto IL_0019;
}
}
IL_0018:
{
return;
}
IL_0019:
{
RuntimeObject* L_6 = ___lineInfo0;
NullCheck(L_6);
int32_t L_7 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 Valve.Newtonsoft.Json.IJsonLineInfo::get_LineNumber() */, IJsonLineInfo_t7E81AAC43FB40592D509A17DBF8FAABAAE6AC29D_il2cpp_TypeInfo_var, L_6);
RuntimeObject* L_8 = ___lineInfo0;
NullCheck(L_8);
int32_t L_9 = InterfaceFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 Valve.Newtonsoft.Json.IJsonLineInfo::get_LinePosition() */, IJsonLineInfo_t7E81AAC43FB40592D509A17DBF8FAABAAE6AC29D_il2cpp_TypeInfo_var, L_8);
JToken_SetLineInfo_m65B85B867F262916908C023AB03C0048862924E5(__this, L_7, L_9, /*hidden argument*/NULL);
return;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JToken::SetLineInfo(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JToken_SetLineInfo_m65B85B867F262916908C023AB03C0048862924E5 (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * __this, int32_t ___lineNumber0, int32_t ___linePosition1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JToken_SetLineInfo_m65B85B867F262916908C023AB03C0048862924E5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___lineNumber0;
int32_t L_1 = ___linePosition1;
LineInfoAnnotation_tC3E34194A1BD45715FC51B0CBEE0ECD100E90D38 * L_2 = (LineInfoAnnotation_tC3E34194A1BD45715FC51B0CBEE0ECD100E90D38 *)il2cpp_codegen_object_new(LineInfoAnnotation_tC3E34194A1BD45715FC51B0CBEE0ECD100E90D38_il2cpp_TypeInfo_var);
LineInfoAnnotation__ctor_m5E4111A49628769151A5844DE6E391F1E5838C54(L_2, L_0, L_1, /*hidden argument*/NULL);
JToken_AddAnnotation_m6697AE0A4D8A820A24CF3C5EFEB5994BE770886A(__this, L_2, /*hidden argument*/NULL);
return;
}
}
// System.Boolean Valve.Newtonsoft.Json.Linq.JToken::Valve.Newtonsoft.Json.IJsonLineInfo.HasLineInfo()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JToken_Valve_Newtonsoft_Json_IJsonLineInfo_HasLineInfo_mD08AADCC57B3AAA908CF525C23C5CCF467816E67 (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JToken_Valve_Newtonsoft_Json_IJsonLineInfo_HasLineInfo_mD08AADCC57B3AAA908CF525C23C5CCF467816E67_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
LineInfoAnnotation_tC3E34194A1BD45715FC51B0CBEE0ECD100E90D38 * L_0 = JToken_Annotation_TisLineInfoAnnotation_tC3E34194A1BD45715FC51B0CBEE0ECD100E90D38_m5039AE0C83BD134DB58678D6152CEDF67D8160CA(__this, /*hidden argument*/JToken_Annotation_TisLineInfoAnnotation_tC3E34194A1BD45715FC51B0CBEE0ECD100E90D38_m5039AE0C83BD134DB58678D6152CEDF67D8160CA_RuntimeMethod_var);
return (bool)((!(((RuntimeObject*)(LineInfoAnnotation_tC3E34194A1BD45715FC51B0CBEE0ECD100E90D38 *)L_0) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 Valve.Newtonsoft.Json.Linq.JToken::Valve.Newtonsoft.Json.IJsonLineInfo.get_LineNumber()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JToken_Valve_Newtonsoft_Json_IJsonLineInfo_get_LineNumber_m1DACE622D0FAA4C66C976143670AA5033DCFF11C (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JToken_Valve_Newtonsoft_Json_IJsonLineInfo_get_LineNumber_m1DACE622D0FAA4C66C976143670AA5033DCFF11C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
LineInfoAnnotation_tC3E34194A1BD45715FC51B0CBEE0ECD100E90D38 * V_0 = NULL;
{
LineInfoAnnotation_tC3E34194A1BD45715FC51B0CBEE0ECD100E90D38 * L_0 = JToken_Annotation_TisLineInfoAnnotation_tC3E34194A1BD45715FC51B0CBEE0ECD100E90D38_m5039AE0C83BD134DB58678D6152CEDF67D8160CA(__this, /*hidden argument*/JToken_Annotation_TisLineInfoAnnotation_tC3E34194A1BD45715FC51B0CBEE0ECD100E90D38_m5039AE0C83BD134DB58678D6152CEDF67D8160CA_RuntimeMethod_var);
V_0 = L_0;
LineInfoAnnotation_tC3E34194A1BD45715FC51B0CBEE0ECD100E90D38 * L_1 = V_0;
if (!L_1)
{
goto IL_0011;
}
}
{
LineInfoAnnotation_tC3E34194A1BD45715FC51B0CBEE0ECD100E90D38 * L_2 = V_0;
NullCheck(L_2);
int32_t L_3 = L_2->get_LineNumber_0();
return L_3;
}
IL_0011:
{
return 0;
}
}
// System.Int32 Valve.Newtonsoft.Json.Linq.JToken::Valve.Newtonsoft.Json.IJsonLineInfo.get_LinePosition()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JToken_Valve_Newtonsoft_Json_IJsonLineInfo_get_LinePosition_mAB8F3B775A9A5646444191CF9392F864C717FB4F (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JToken_Valve_Newtonsoft_Json_IJsonLineInfo_get_LinePosition_mAB8F3B775A9A5646444191CF9392F864C717FB4F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
LineInfoAnnotation_tC3E34194A1BD45715FC51B0CBEE0ECD100E90D38 * V_0 = NULL;
{
LineInfoAnnotation_tC3E34194A1BD45715FC51B0CBEE0ECD100E90D38 * L_0 = JToken_Annotation_TisLineInfoAnnotation_tC3E34194A1BD45715FC51B0CBEE0ECD100E90D38_m5039AE0C83BD134DB58678D6152CEDF67D8160CA(__this, /*hidden argument*/JToken_Annotation_TisLineInfoAnnotation_tC3E34194A1BD45715FC51B0CBEE0ECD100E90D38_m5039AE0C83BD134DB58678D6152CEDF67D8160CA_RuntimeMethod_var);
V_0 = L_0;
LineInfoAnnotation_tC3E34194A1BD45715FC51B0CBEE0ECD100E90D38 * L_1 = V_0;
if (!L_1)
{
goto IL_0011;
}
}
{
LineInfoAnnotation_tC3E34194A1BD45715FC51B0CBEE0ECD100E90D38 * L_2 = V_0;
NullCheck(L_2);
int32_t L_3 = L_2->get_LinePosition_1();
return L_3;
}
IL_0011:
{
return 0;
}
}
// System.Object Valve.Newtonsoft.Json.Linq.JToken::System.ICloneable.Clone()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * JToken_System_ICloneable_Clone_m5646D9470BF1B64A88D7BEC74562FADB0C11B14C (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * __this, const RuntimeMethod* method)
{
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_0 = JToken_DeepClone_mC657F3EF887C3642C806A3150BB4D736FF46CFF5(__this, /*hidden argument*/NULL);
return L_0;
}
}
// Valve.Newtonsoft.Json.Linq.JToken Valve.Newtonsoft.Json.Linq.JToken::DeepClone()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * JToken_DeepClone_mC657F3EF887C3642C806A3150BB4D736FF46CFF5 (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * __this, const RuntimeMethod* method)
{
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_0 = VirtFuncInvoker0< JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * >::Invoke(10 /* Valve.Newtonsoft.Json.Linq.JToken Valve.Newtonsoft.Json.Linq.JToken::CloneToken() */, __this);
return L_0;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JToken::AddAnnotation(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JToken_AddAnnotation_m6697AE0A4D8A820A24CF3C5EFEB5994BE770886A (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * __this, RuntimeObject * ___annotation0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JToken_AddAnnotation_m6697AE0A4D8A820A24CF3C5EFEB5994BE770886A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
int32_t V_1 = 0;
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * G_B5_0 = NULL;
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * G_B4_0 = NULL;
RuntimeObject * G_B6_0 = NULL;
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * G_B6_1 = NULL;
{
RuntimeObject * L_0 = ___annotation0;
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, _stringLiteral2E76F544229901C5A942849EE61AC86BDA6E5609, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, JToken_AddAnnotation_m6697AE0A4D8A820A24CF3C5EFEB5994BE770886A_RuntimeMethod_var);
}
IL_000e:
{
RuntimeObject * L_2 = __this->get__annotations_3();
if (L_2)
{
goto IL_0032;
}
}
{
RuntimeObject * L_3 = ___annotation0;
G_B4_0 = __this;
if (((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)L_3, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)))
{
G_B5_0 = __this;
goto IL_0022;
}
}
{
RuntimeObject * L_4 = ___annotation0;
G_B6_0 = L_4;
G_B6_1 = G_B4_0;
goto IL_002c;
}
IL_0022:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_5 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_6 = L_5;
RuntimeObject * L_7 = ___annotation0;
NullCheck(L_6);
ArrayElementTypeCheck (L_6, L_7);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_7);
G_B6_0 = ((RuntimeObject *)(L_6));
G_B6_1 = G_B5_0;
}
IL_002c:
{
NullCheck(G_B6_1);
G_B6_1->set__annotations_3(G_B6_0);
return;
}
IL_0032:
{
RuntimeObject * L_8 = __this->get__annotations_3();
V_0 = ((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)L_8, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_9 = V_0;
if (L_9)
{
goto IL_005b;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_10 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_11 = L_10;
RuntimeObject * L_12 = __this->get__annotations_3();
NullCheck(L_11);
ArrayElementTypeCheck (L_11, L_12);
(L_11)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_12);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_13 = L_11;
RuntimeObject * L_14 = ___annotation0;
NullCheck(L_13);
ArrayElementTypeCheck (L_13, L_14);
(L_13)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_14);
__this->set__annotations_3((RuntimeObject *)L_13);
return;
}
IL_005b:
{
V_1 = 0;
goto IL_0063;
}
IL_005f:
{
int32_t L_15 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1));
}
IL_0063:
{
int32_t L_16 = V_1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_17 = V_0;
NullCheck(L_17);
if ((((int32_t)L_16) >= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_17)->max_length)))))))
{
goto IL_006e;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_18 = V_0;
int32_t L_19 = V_1;
NullCheck(L_18);
int32_t L_20 = L_19;
RuntimeObject * L_21 = (L_18)->GetAt(static_cast<il2cpp_array_size_t>(L_20));
if (L_21)
{
goto IL_005f;
}
}
IL_006e:
{
int32_t L_22 = V_1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_23 = V_0;
NullCheck(L_23);
if ((!(((uint32_t)L_22) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_23)->max_length))))))))
{
goto IL_0085;
}
}
{
int32_t L_24 = V_1;
Array_Resize_TisRuntimeObject_mB0DBA075A9D1EE03ADE844755C17088FDC73B1EF((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A**)(&V_0), ((int32_t)il2cpp_codegen_multiply((int32_t)L_24, (int32_t)2)), /*hidden argument*/Array_Resize_TisRuntimeObject_mB0DBA075A9D1EE03ADE844755C17088FDC73B1EF_RuntimeMethod_var);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_25 = V_0;
__this->set__annotations_3((RuntimeObject *)L_25);
}
IL_0085:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_26 = V_0;
int32_t L_27 = V_1;
RuntimeObject * L_28 = ___annotation0;
NullCheck(L_26);
ArrayElementTypeCheck (L_26, L_28);
(L_26)->SetAt(static_cast<il2cpp_array_size_t>(L_27), (RuntimeObject *)L_28);
return;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JToken::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JToken__cctor_m8807BAFDA304CB341F1523D77B8F0654E81064A3 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JToken__cctor_m8807BAFDA304CB341F1523D77B8F0654E81064A3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_0 = (JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B*)(JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B*)SZArrayNew(JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B_il2cpp_TypeInfo_var, (uint32_t)6);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_1 = L_0;
NullCheck(L_1);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (int32_t)6);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_2 = L_1;
NullCheck(L_2);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(1), (int32_t)7);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_3 = L_2;
NullCheck(L_3);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(2), (int32_t)8);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_4 = L_3;
NullCheck(L_4);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(3), (int32_t)5);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_5 = L_4;
NullCheck(L_5);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(4), (int32_t)((int32_t)13));
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_6 = L_5;
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(5), (int32_t)((int32_t)9));
((JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_StaticFields*)il2cpp_codegen_static_fields_for(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var))->set_BooleanTypes_4(L_6);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_7 = (JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B*)(JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B*)SZArrayNew(JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B_il2cpp_TypeInfo_var, (uint32_t)6);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_8 = L_7;
NullCheck(L_8);
(L_8)->SetAt(static_cast<il2cpp_array_size_t>(0), (int32_t)6);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_9 = L_8;
NullCheck(L_9);
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(1), (int32_t)7);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_10 = L_9;
NullCheck(L_10);
(L_10)->SetAt(static_cast<il2cpp_array_size_t>(2), (int32_t)8);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_11 = L_10;
NullCheck(L_11);
(L_11)->SetAt(static_cast<il2cpp_array_size_t>(3), (int32_t)5);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_12 = L_11;
NullCheck(L_12);
(L_12)->SetAt(static_cast<il2cpp_array_size_t>(4), (int32_t)((int32_t)13));
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_13 = L_12;
NullCheck(L_13);
(L_13)->SetAt(static_cast<il2cpp_array_size_t>(5), (int32_t)((int32_t)9));
((JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_StaticFields*)il2cpp_codegen_static_fields_for(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var))->set_NumberTypes_5(L_13);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_14 = (JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B*)(JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B*)SZArrayNew(JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B_il2cpp_TypeInfo_var, (uint32_t)((int32_t)11));
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_15 = L_14;
NullCheck(L_15);
(L_15)->SetAt(static_cast<il2cpp_array_size_t>(0), (int32_t)((int32_t)12));
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_16 = L_15;
NullCheck(L_16);
(L_16)->SetAt(static_cast<il2cpp_array_size_t>(1), (int32_t)6);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_17 = L_16;
NullCheck(L_17);
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(2), (int32_t)7);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_18 = L_17;
NullCheck(L_18);
(L_18)->SetAt(static_cast<il2cpp_array_size_t>(3), (int32_t)8);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_19 = L_18;
NullCheck(L_19);
(L_19)->SetAt(static_cast<il2cpp_array_size_t>(4), (int32_t)5);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_20 = L_19;
NullCheck(L_20);
(L_20)->SetAt(static_cast<il2cpp_array_size_t>(5), (int32_t)((int32_t)13));
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_21 = L_20;
NullCheck(L_21);
(L_21)->SetAt(static_cast<il2cpp_array_size_t>(6), (int32_t)((int32_t)9));
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_22 = L_21;
NullCheck(L_22);
(L_22)->SetAt(static_cast<il2cpp_array_size_t>(7), (int32_t)((int32_t)14));
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_23 = L_22;
NullCheck(L_23);
(L_23)->SetAt(static_cast<il2cpp_array_size_t>(8), (int32_t)((int32_t)15));
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_24 = L_23;
NullCheck(L_24);
(L_24)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)9)), (int32_t)((int32_t)17));
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_25 = L_24;
NullCheck(L_25);
(L_25)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)10)), (int32_t)((int32_t)16));
((JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_StaticFields*)il2cpp_codegen_static_fields_for(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var))->set_StringTypes_6(L_25);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_26 = (JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B*)(JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B*)SZArrayNew(JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B_il2cpp_TypeInfo_var, (uint32_t)5);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_27 = L_26;
NullCheck(L_27);
(L_27)->SetAt(static_cast<il2cpp_array_size_t>(0), (int32_t)8);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_28 = L_27;
NullCheck(L_28);
(L_28)->SetAt(static_cast<il2cpp_array_size_t>(1), (int32_t)5);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_29 = L_28;
NullCheck(L_29);
(L_29)->SetAt(static_cast<il2cpp_array_size_t>(2), (int32_t)((int32_t)13));
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_30 = L_29;
NullCheck(L_30);
(L_30)->SetAt(static_cast<il2cpp_array_size_t>(3), (int32_t)((int32_t)15));
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_31 = L_30;
NullCheck(L_31);
(L_31)->SetAt(static_cast<il2cpp_array_size_t>(4), (int32_t)((int32_t)14));
((JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_StaticFields*)il2cpp_codegen_static_fields_for(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var))->set_GuidTypes_7(L_31);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_32 = (JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B*)(JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B*)SZArrayNew(JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B_il2cpp_TypeInfo_var, (uint32_t)4);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_33 = L_32;
NullCheck(L_33);
(L_33)->SetAt(static_cast<il2cpp_array_size_t>(0), (int32_t)8);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_34 = L_33;
NullCheck(L_34);
(L_34)->SetAt(static_cast<il2cpp_array_size_t>(1), (int32_t)5);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_35 = L_34;
NullCheck(L_35);
(L_35)->SetAt(static_cast<il2cpp_array_size_t>(2), (int32_t)((int32_t)13));
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_36 = L_35;
NullCheck(L_36);
(L_36)->SetAt(static_cast<il2cpp_array_size_t>(3), (int32_t)((int32_t)17));
((JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_StaticFields*)il2cpp_codegen_static_fields_for(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var))->set_TimeSpanTypes_8(L_36);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_37 = (JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B*)(JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B*)SZArrayNew(JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B_il2cpp_TypeInfo_var, (uint32_t)4);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_38 = L_37;
NullCheck(L_38);
(L_38)->SetAt(static_cast<il2cpp_array_size_t>(0), (int32_t)8);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_39 = L_38;
NullCheck(L_39);
(L_39)->SetAt(static_cast<il2cpp_array_size_t>(1), (int32_t)5);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_40 = L_39;
NullCheck(L_40);
(L_40)->SetAt(static_cast<il2cpp_array_size_t>(2), (int32_t)((int32_t)13));
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_41 = L_40;
NullCheck(L_41);
(L_41)->SetAt(static_cast<il2cpp_array_size_t>(3), (int32_t)((int32_t)16));
((JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_StaticFields*)il2cpp_codegen_static_fields_for(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var))->set_UriTypes_9(L_41);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_42 = (JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B*)(JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B*)SZArrayNew(JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B_il2cpp_TypeInfo_var, (uint32_t)5);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_43 = L_42;
NullCheck(L_43);
(L_43)->SetAt(static_cast<il2cpp_array_size_t>(0), (int32_t)6);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_44 = L_43;
NullCheck(L_44);
(L_44)->SetAt(static_cast<il2cpp_array_size_t>(1), (int32_t)7);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_45 = L_44;
NullCheck(L_45);
(L_45)->SetAt(static_cast<il2cpp_array_size_t>(2), (int32_t)8);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_46 = L_45;
NullCheck(L_46);
(L_46)->SetAt(static_cast<il2cpp_array_size_t>(3), (int32_t)5);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_47 = L_46;
NullCheck(L_47);
(L_47)->SetAt(static_cast<il2cpp_array_size_t>(4), (int32_t)((int32_t)13));
((JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_StaticFields*)il2cpp_codegen_static_fields_for(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var))->set_CharTypes_10(L_47);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_48 = (JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B*)(JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B*)SZArrayNew(JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B_il2cpp_TypeInfo_var, (uint32_t)4);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_49 = L_48;
NullCheck(L_49);
(L_49)->SetAt(static_cast<il2cpp_array_size_t>(0), (int32_t)((int32_t)12));
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_50 = L_49;
NullCheck(L_50);
(L_50)->SetAt(static_cast<il2cpp_array_size_t>(1), (int32_t)8);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_51 = L_50;
NullCheck(L_51);
(L_51)->SetAt(static_cast<il2cpp_array_size_t>(2), (int32_t)5);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_52 = L_51;
NullCheck(L_52);
(L_52)->SetAt(static_cast<il2cpp_array_size_t>(3), (int32_t)((int32_t)13));
((JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_StaticFields*)il2cpp_codegen_static_fields_for(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var))->set_DateTimeTypes_11(L_52);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_53 = (JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B*)(JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B*)SZArrayNew(JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B_il2cpp_TypeInfo_var, (uint32_t)5);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_54 = L_53;
NullCheck(L_54);
(L_54)->SetAt(static_cast<il2cpp_array_size_t>(0), (int32_t)((int32_t)14));
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_55 = L_54;
NullCheck(L_55);
(L_55)->SetAt(static_cast<il2cpp_array_size_t>(1), (int32_t)8);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_56 = L_55;
NullCheck(L_56);
(L_56)->SetAt(static_cast<il2cpp_array_size_t>(2), (int32_t)5);
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_57 = L_56;
NullCheck(L_57);
(L_57)->SetAt(static_cast<il2cpp_array_size_t>(3), (int32_t)((int32_t)13));
JTokenTypeU5BU5D_t23EC3D4E973744E552FD53E2354DF3AA9498F92B* L_58 = L_57;
NullCheck(L_58);
(L_58)->SetAt(static_cast<il2cpp_array_size_t>(4), (int32_t)6);
((JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_StaticFields*)il2cpp_codegen_static_fields_for(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var))->set_BytesTypes_12(L_58);
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 Valve.Newtonsoft.Json.Linq.JToken_LineInfoAnnotation::.ctor(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LineInfoAnnotation__ctor_m5E4111A49628769151A5844DE6E391F1E5838C54 (LineInfoAnnotation_tC3E34194A1BD45715FC51B0CBEE0ECD100E90D38 * __this, int32_t ___lineNumber0, int32_t ___linePosition1, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
int32_t L_0 = ___lineNumber0;
__this->set_LineNumber_0(L_0);
int32_t L_1 = ___linePosition1;
__this->set_LinePosition_1(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
// Valve.Newtonsoft.Json.Linq.JToken Valve.Newtonsoft.Json.Linq.JTokenReader::get_CurrentToken()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * JTokenReader_get_CurrentToken_m4D1878533286E1C58BBB83AC78967CFB15619D3B (JTokenReader_tE3C9B85315EFF6B3CB0796451D8278F1372C6530 * __this, const RuntimeMethod* method)
{
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_0 = __this->get__current_18();
return L_0;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JTokenReader::.ctor(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JTokenReader__ctor_mEC548BE486CDEE63EE9B3A551844ECE3D8AA6E9A (JTokenReader_tE3C9B85315EFF6B3CB0796451D8278F1372C6530 * __this, JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___token0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JTokenReader__ctor_mEC548BE486CDEE63EE9B3A551844ECE3D8AA6E9A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
JsonReader__ctor_mE94D5DB6E2AA53D1CA7CE722C96AE87E61C88E4A(__this, /*hidden argument*/NULL);
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_0 = ___token0;
ValidationUtils_ArgumentNotNull_mA6823FB6A1184537A467BD3BAFA6C06126EF7AE9(L_0, _stringLiteralEE977806D7286510DA8B9A7492BA58E2484C0ECC, /*hidden argument*/NULL);
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_1 = ___token0;
__this->set__root_15(L_1);
return;
}
}
// System.Boolean Valve.Newtonsoft.Json.Linq.JTokenReader::Read()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JTokenReader_Read_m08ED62F18D59F492B951F8984FC70438BAE79811 (JTokenReader_tE3C9B85315EFF6B3CB0796451D8278F1372C6530 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JTokenReader_Read_m08ED62F18D59F492B951F8984FC70438BAE79811_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * V_0 = NULL;
{
int32_t L_0 = JsonReader_get_CurrentState_m82A4B2B03B64BDF8B7D0AF08C816C60198F4C0C5_inline(__this, /*hidden argument*/NULL);
if (!L_0)
{
goto IL_003f;
}
}
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_1 = __this->get__current_18();
if (L_1)
{
goto IL_0012;
}
}
{
return (bool)0;
}
IL_0012:
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_2 = __this->get__current_18();
V_0 = ((JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC *)IsInstClass((RuntimeObject*)L_2, JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC_il2cpp_TypeInfo_var));
JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * L_3 = V_0;
if (!L_3)
{
goto IL_0032;
}
}
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_4 = __this->get__parent_17();
JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * L_5 = V_0;
if ((((RuntimeObject*)(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 *)L_4) == ((RuntimeObject*)(JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC *)L_5)))
{
goto IL_0032;
}
}
{
JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * L_6 = V_0;
bool L_7 = JTokenReader_ReadInto_m6CB1E11362119ECAE3D69026E8090FB1D8AA565C(__this, L_6, /*hidden argument*/NULL);
return L_7;
}
IL_0032:
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_8 = __this->get__current_18();
bool L_9 = JTokenReader_ReadOver_mF0E0932AFA99E496551DEC53BC78D58B3993A53A(__this, L_8, /*hidden argument*/NULL);
return L_9;
}
IL_003f:
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_10 = __this->get__root_15();
__this->set__current_18(L_10);
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_11 = __this->get__current_18();
JTokenReader_SetToken_m50E5A37B2D44D4A93F489DB38D72E924420912EF(__this, L_11, /*hidden argument*/NULL);
return (bool)1;
}
}
// System.Boolean Valve.Newtonsoft.Json.Linq.JTokenReader::ReadOver(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JTokenReader_ReadOver_mF0E0932AFA99E496551DEC53BC78D58B3993A53A (JTokenReader_tE3C9B85315EFF6B3CB0796451D8278F1372C6530 * __this, JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___t0, const RuntimeMethod* method)
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * V_0 = NULL;
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_0 = ___t0;
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_1 = __this->get__root_15();
if ((!(((RuntimeObject*)(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 *)L_0) == ((RuntimeObject*)(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 *)L_1))))
{
goto IL_0010;
}
}
{
bool L_2 = JTokenReader_ReadToEnd_mE716CD7EC7C2B4FCFD4D883B694EB0F3730492BE(__this, /*hidden argument*/NULL);
return L_2;
}
IL_0010:
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_3 = ___t0;
NullCheck(L_3);
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_4 = JToken_get_Next_m4C86AF5625AFDE37B90698DBAC4B8C589B5F05E3_inline(L_3, /*hidden argument*/NULL);
V_0 = L_4;
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_5 = V_0;
if (!L_5)
{
goto IL_002c;
}
}
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_6 = V_0;
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_7 = ___t0;
if ((((RuntimeObject*)(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 *)L_6) == ((RuntimeObject*)(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 *)L_7)))
{
goto IL_002c;
}
}
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_8 = ___t0;
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_9 = ___t0;
NullCheck(L_9);
JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * L_10 = JToken_get_Parent_m68142FEB329F72F2258F55D7A790C43E7E823F54_inline(L_9, /*hidden argument*/NULL);
NullCheck(L_10);
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_11 = VirtFuncInvoker0< JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * >::Invoke(14 /* Valve.Newtonsoft.Json.Linq.JToken Valve.Newtonsoft.Json.Linq.JToken::get_Last() */, L_10);
if ((!(((RuntimeObject*)(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 *)L_8) == ((RuntimeObject*)(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 *)L_11))))
{
goto IL_0048;
}
}
IL_002c:
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_12 = ___t0;
NullCheck(L_12);
JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * L_13 = JToken_get_Parent_m68142FEB329F72F2258F55D7A790C43E7E823F54_inline(L_12, /*hidden argument*/NULL);
if (L_13)
{
goto IL_003b;
}
}
{
bool L_14 = JTokenReader_ReadToEnd_mE716CD7EC7C2B4FCFD4D883B694EB0F3730492BE(__this, /*hidden argument*/NULL);
return L_14;
}
IL_003b:
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_15 = ___t0;
NullCheck(L_15);
JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * L_16 = JToken_get_Parent_m68142FEB329F72F2258F55D7A790C43E7E823F54_inline(L_15, /*hidden argument*/NULL);
bool L_17 = JTokenReader_SetEnd_m66C6A9990693C35C053B893A75345F3BA2871111(__this, L_16, /*hidden argument*/NULL);
return L_17;
}
IL_0048:
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_18 = V_0;
__this->set__current_18(L_18);
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_19 = __this->get__current_18();
JTokenReader_SetToken_m50E5A37B2D44D4A93F489DB38D72E924420912EF(__this, L_19, /*hidden argument*/NULL);
return (bool)1;
}
}
// System.Boolean Valve.Newtonsoft.Json.Linq.JTokenReader::ReadToEnd()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JTokenReader_ReadToEnd_mE716CD7EC7C2B4FCFD4D883B694EB0F3730492BE (JTokenReader_tE3C9B85315EFF6B3CB0796451D8278F1372C6530 * __this, const RuntimeMethod* method)
{
{
__this->set__current_18((JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 *)NULL);
JsonReader_SetToken_mDF91D9A9FF0A7CEF402EF495A152A2F4C3C620E5(__this, 0, /*hidden argument*/NULL);
return (bool)0;
}
}
// System.Nullable`1<Valve.Newtonsoft.Json.JsonToken> Valve.Newtonsoft.Json.Linq.JTokenReader::GetEndToken(Valve.Newtonsoft.Json.Linq.JContainer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_tB0A5FC022F6A5257A48FBAD802C5460B76704D56 JTokenReader_GetEndToken_m8CDB32154BBCCE79A921137310EF0DA7179A21B0 (JTokenReader_tE3C9B85315EFF6B3CB0796451D8278F1372C6530 * __this, JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * ___c0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JTokenReader_GetEndToken_m8CDB32154BBCCE79A921137310EF0DA7179A21B0_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
Nullable_1_tB0A5FC022F6A5257A48FBAD802C5460B76704D56 V_1;
memset((&V_1), 0, sizeof(V_1));
{
JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * L_0 = ___c0;
NullCheck(L_0);
int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(11 /* Valve.Newtonsoft.Json.Linq.JTokenType Valve.Newtonsoft.Json.Linq.JToken::get_Type() */, L_0);
V_0 = L_1;
int32_t L_2 = V_0;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)1)))
{
case 0:
{
goto IL_0021;
}
case 1:
{
goto IL_0029;
}
case 2:
{
goto IL_0031;
}
case 3:
{
goto IL_0039;
}
}
}
{
goto IL_0043;
}
IL_0021:
{
Nullable_1_tB0A5FC022F6A5257A48FBAD802C5460B76704D56 L_3;
memset((&L_3), 0, sizeof(L_3));
Nullable_1__ctor_m31B16CF5778ACE8E99E6017CCC1FE2D3E70A1703((&L_3), ((int32_t)13), /*hidden argument*/Nullable_1__ctor_m31B16CF5778ACE8E99E6017CCC1FE2D3E70A1703_RuntimeMethod_var);
return L_3;
}
IL_0029:
{
Nullable_1_tB0A5FC022F6A5257A48FBAD802C5460B76704D56 L_4;
memset((&L_4), 0, sizeof(L_4));
Nullable_1__ctor_m31B16CF5778ACE8E99E6017CCC1FE2D3E70A1703((&L_4), ((int32_t)14), /*hidden argument*/Nullable_1__ctor_m31B16CF5778ACE8E99E6017CCC1FE2D3E70A1703_RuntimeMethod_var);
return L_4;
}
IL_0031:
{
Nullable_1_tB0A5FC022F6A5257A48FBAD802C5460B76704D56 L_5;
memset((&L_5), 0, sizeof(L_5));
Nullable_1__ctor_m31B16CF5778ACE8E99E6017CCC1FE2D3E70A1703((&L_5), ((int32_t)15), /*hidden argument*/Nullable_1__ctor_m31B16CF5778ACE8E99E6017CCC1FE2D3E70A1703_RuntimeMethod_var);
return L_5;
}
IL_0039:
{
il2cpp_codegen_initobj((&V_1), sizeof(Nullable_1_tB0A5FC022F6A5257A48FBAD802C5460B76704D56 ));
Nullable_1_tB0A5FC022F6A5257A48FBAD802C5460B76704D56 L_6 = V_1;
return L_6;
}
IL_0043:
{
JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * L_7 = ___c0;
NullCheck(L_7);
int32_t L_8 = VirtFuncInvoker0< int32_t >::Invoke(11 /* Valve.Newtonsoft.Json.Linq.JTokenType Valve.Newtonsoft.Json.Linq.JToken::get_Type() */, L_7);
int32_t L_9 = L_8;
RuntimeObject * L_10 = Box(JTokenType_t43765D0A61D4F44B41AA73D201C761E37F4DDDAD_il2cpp_TypeInfo_var, &L_9);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_11 = MiscellaneousUtils_CreateArgumentOutOfRangeException_m8E4A0A0A3D556B8811877FEB803AE6CCDD3DE9A0(_stringLiteral3DEB7456519697ECF4EEFC455516C969A3681BAE, L_10, _stringLiteralEED859B39CC0D4DCC412651EADA940832FACA479, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, JTokenReader_GetEndToken_m8CDB32154BBCCE79A921137310EF0DA7179A21B0_RuntimeMethod_var);
}
}
// System.Boolean Valve.Newtonsoft.Json.Linq.JTokenReader::ReadInto(Valve.Newtonsoft.Json.Linq.JContainer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JTokenReader_ReadInto_m6CB1E11362119ECAE3D69026E8090FB1D8AA565C (JTokenReader_tE3C9B85315EFF6B3CB0796451D8278F1372C6530 * __this, JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * ___c0, const RuntimeMethod* method)
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * V_0 = NULL;
{
JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * L_0 = ___c0;
NullCheck(L_0);
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_1 = VirtFuncInvoker0< JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * >::Invoke(13 /* Valve.Newtonsoft.Json.Linq.JToken Valve.Newtonsoft.Json.Linq.JToken::get_First() */, L_0);
V_0 = L_1;
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_2 = V_0;
if (L_2)
{
goto IL_0012;
}
}
{
JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * L_3 = ___c0;
bool L_4 = JTokenReader_SetEnd_m66C6A9990693C35C053B893A75345F3BA2871111(__this, L_3, /*hidden argument*/NULL);
return L_4;
}
IL_0012:
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_5 = V_0;
JTokenReader_SetToken_m50E5A37B2D44D4A93F489DB38D72E924420912EF(__this, L_5, /*hidden argument*/NULL);
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_6 = V_0;
__this->set__current_18(L_6);
JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * L_7 = ___c0;
__this->set__parent_17(L_7);
return (bool)1;
}
}
// System.Boolean Valve.Newtonsoft.Json.Linq.JTokenReader::SetEnd(Valve.Newtonsoft.Json.Linq.JContainer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JTokenReader_SetEnd_m66C6A9990693C35C053B893A75345F3BA2871111 (JTokenReader_tE3C9B85315EFF6B3CB0796451D8278F1372C6530 * __this, JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * ___c0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JTokenReader_SetEnd_m66C6A9990693C35C053B893A75345F3BA2871111_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Nullable_1_tB0A5FC022F6A5257A48FBAD802C5460B76704D56 V_0;
memset((&V_0), 0, sizeof(V_0));
{
JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * L_0 = ___c0;
Nullable_1_tB0A5FC022F6A5257A48FBAD802C5460B76704D56 L_1 = JTokenReader_GetEndToken_m8CDB32154BBCCE79A921137310EF0DA7179A21B0(__this, L_0, /*hidden argument*/NULL);
V_0 = L_1;
bool L_2 = Nullable_1_get_HasValue_m32C396BC34F2684EEB3E4D64CCC54219DEFFC807_inline((Nullable_1_tB0A5FC022F6A5257A48FBAD802C5460B76704D56 *)(&V_0), /*hidden argument*/Nullable_1_get_HasValue_m32C396BC34F2684EEB3E4D64CCC54219DEFFC807_RuntimeMethod_var);
if (!L_2)
{
goto IL_002e;
}
}
{
int32_t L_3 = Nullable_1_GetValueOrDefault_m0650003377853164C2CEED7CE3A7D36A58110C27_inline((Nullable_1_tB0A5FC022F6A5257A48FBAD802C5460B76704D56 *)(&V_0), /*hidden argument*/Nullable_1_GetValueOrDefault_m0650003377853164C2CEED7CE3A7D36A58110C27_RuntimeMethod_var);
JsonReader_SetToken_mDF91D9A9FF0A7CEF402EF495A152A2F4C3C620E5(__this, L_3, /*hidden argument*/NULL);
JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * L_4 = ___c0;
__this->set__current_18(L_4);
JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * L_5 = ___c0;
__this->set__parent_17(L_5);
return (bool)1;
}
IL_002e:
{
JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * L_6 = ___c0;
bool L_7 = JTokenReader_ReadOver_mF0E0932AFA99E496551DEC53BC78D58B3993A53A(__this, L_6, /*hidden argument*/NULL);
return L_7;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JTokenReader::SetToken(Valve.Newtonsoft.Json.Linq.JToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JTokenReader_SetToken_m50E5A37B2D44D4A93F489DB38D72E924420912EF (JTokenReader_tE3C9B85315EFF6B3CB0796451D8278F1372C6530 * __this, JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * ___token0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JTokenReader_SetToken_m50E5A37B2D44D4A93F489DB38D72E924420912EF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
RuntimeObject * V_1 = NULL;
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_0 = ___token0;
NullCheck(L_0);
int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(11 /* Valve.Newtonsoft.Json.Linq.JTokenType Valve.Newtonsoft.Json.Linq.JToken::get_Type() */, L_0);
V_0 = L_1;
int32_t L_2 = V_0;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)1)))
{
case 0:
{
goto IL_0058;
}
case 1:
{
goto IL_0060;
}
case 2:
{
goto IL_0068;
}
case 3:
{
goto IL_007b;
}
case 4:
{
goto IL_008e;
}
case 5:
{
goto IL_00a1;
}
case 6:
{
goto IL_00b4;
}
case 7:
{
goto IL_00c7;
}
case 8:
{
goto IL_00db;
}
case 9:
{
goto IL_00ef;
}
case 10:
{
goto IL_0103;
}
case 11:
{
goto IL_0117;
}
case 12:
{
goto IL_012b;
}
case 13:
{
goto IL_013e;
}
case 14:
{
goto IL_0152;
}
case 15:
{
goto IL_016c;
}
case 16:
{
goto IL_01a4;
}
}
}
{
goto IL_01be;
}
IL_0058:
{
JsonReader_SetToken_mDF91D9A9FF0A7CEF402EF495A152A2F4C3C620E5(__this, 1, /*hidden argument*/NULL);
return;
}
IL_0060:
{
JsonReader_SetToken_mDF91D9A9FF0A7CEF402EF495A152A2F4C3C620E5(__this, 2, /*hidden argument*/NULL);
return;
}
IL_0068:
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_3 = ___token0;
NullCheck(((JConstructor_t31B236A37CEC95856D10CB7C3F276D6C4CA0B26B *)CastclassClass((RuntimeObject*)L_3, JConstructor_t31B236A37CEC95856D10CB7C3F276D6C4CA0B26B_il2cpp_TypeInfo_var)));
String_t* L_4 = JConstructor_get_Name_m57AE8C1593EC23F78FE7302A767D7B5F4E700E4D_inline(((JConstructor_t31B236A37CEC95856D10CB7C3F276D6C4CA0B26B *)CastclassClass((RuntimeObject*)L_3, JConstructor_t31B236A37CEC95856D10CB7C3F276D6C4CA0B26B_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
JsonReader_SetToken_m11852C967B119680CD2BB627B37C7AFFB88ED882(__this, 3, L_4, /*hidden argument*/NULL);
return;
}
IL_007b:
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_5 = ___token0;
NullCheck(((JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF *)CastclassClass((RuntimeObject*)L_5, JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF_il2cpp_TypeInfo_var)));
String_t* L_6 = JProperty_get_Name_mB214D204AA250BF1F6F73A038028946203F592ED_inline(((JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF *)CastclassClass((RuntimeObject*)L_5, JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
JsonReader_SetToken_m11852C967B119680CD2BB627B37C7AFFB88ED882(__this, 4, L_6, /*hidden argument*/NULL);
return;
}
IL_008e:
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_7 = ___token0;
NullCheck(((JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 *)CastclassClass((RuntimeObject*)L_7, JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3_il2cpp_TypeInfo_var)));
RuntimeObject * L_8 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(((JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 *)CastclassClass((RuntimeObject*)L_7, JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
JsonReader_SetToken_m11852C967B119680CD2BB627B37C7AFFB88ED882(__this, 5, L_8, /*hidden argument*/NULL);
return;
}
IL_00a1:
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_9 = ___token0;
NullCheck(((JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 *)CastclassClass((RuntimeObject*)L_9, JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3_il2cpp_TypeInfo_var)));
RuntimeObject * L_10 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(((JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 *)CastclassClass((RuntimeObject*)L_9, JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
JsonReader_SetToken_m11852C967B119680CD2BB627B37C7AFFB88ED882(__this, 7, L_10, /*hidden argument*/NULL);
return;
}
IL_00b4:
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_11 = ___token0;
NullCheck(((JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 *)CastclassClass((RuntimeObject*)L_11, JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3_il2cpp_TypeInfo_var)));
RuntimeObject * L_12 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(((JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 *)CastclassClass((RuntimeObject*)L_11, JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
JsonReader_SetToken_m11852C967B119680CD2BB627B37C7AFFB88ED882(__this, 8, L_12, /*hidden argument*/NULL);
return;
}
IL_00c7:
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_13 = ___token0;
NullCheck(((JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 *)CastclassClass((RuntimeObject*)L_13, JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3_il2cpp_TypeInfo_var)));
RuntimeObject * L_14 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(((JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 *)CastclassClass((RuntimeObject*)L_13, JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
JsonReader_SetToken_m11852C967B119680CD2BB627B37C7AFFB88ED882(__this, ((int32_t)9), L_14, /*hidden argument*/NULL);
return;
}
IL_00db:
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_15 = ___token0;
NullCheck(((JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 *)CastclassClass((RuntimeObject*)L_15, JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3_il2cpp_TypeInfo_var)));
RuntimeObject * L_16 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(((JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 *)CastclassClass((RuntimeObject*)L_15, JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
JsonReader_SetToken_m11852C967B119680CD2BB627B37C7AFFB88ED882(__this, ((int32_t)10), L_16, /*hidden argument*/NULL);
return;
}
IL_00ef:
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_17 = ___token0;
NullCheck(((JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 *)CastclassClass((RuntimeObject*)L_17, JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3_il2cpp_TypeInfo_var)));
RuntimeObject * L_18 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(((JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 *)CastclassClass((RuntimeObject*)L_17, JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
JsonReader_SetToken_m11852C967B119680CD2BB627B37C7AFFB88ED882(__this, ((int32_t)11), L_18, /*hidden argument*/NULL);
return;
}
IL_0103:
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_19 = ___token0;
NullCheck(((JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 *)CastclassClass((RuntimeObject*)L_19, JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3_il2cpp_TypeInfo_var)));
RuntimeObject * L_20 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(((JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 *)CastclassClass((RuntimeObject*)L_19, JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
JsonReader_SetToken_m11852C967B119680CD2BB627B37C7AFFB88ED882(__this, ((int32_t)12), L_20, /*hidden argument*/NULL);
return;
}
IL_0117:
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_21 = ___token0;
NullCheck(((JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 *)CastclassClass((RuntimeObject*)L_21, JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3_il2cpp_TypeInfo_var)));
RuntimeObject * L_22 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(((JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 *)CastclassClass((RuntimeObject*)L_21, JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
JsonReader_SetToken_m11852C967B119680CD2BB627B37C7AFFB88ED882(__this, ((int32_t)16), L_22, /*hidden argument*/NULL);
return;
}
IL_012b:
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_23 = ___token0;
NullCheck(((JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 *)CastclassClass((RuntimeObject*)L_23, JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3_il2cpp_TypeInfo_var)));
RuntimeObject * L_24 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(((JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 *)CastclassClass((RuntimeObject*)L_23, JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
JsonReader_SetToken_m11852C967B119680CD2BB627B37C7AFFB88ED882(__this, 6, L_24, /*hidden argument*/NULL);
return;
}
IL_013e:
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_25 = ___token0;
NullCheck(((JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 *)CastclassClass((RuntimeObject*)L_25, JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3_il2cpp_TypeInfo_var)));
RuntimeObject * L_26 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(((JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 *)CastclassClass((RuntimeObject*)L_25, JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
JsonReader_SetToken_m11852C967B119680CD2BB627B37C7AFFB88ED882(__this, ((int32_t)17), L_26, /*hidden argument*/NULL);
return;
}
IL_0152:
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_27 = ___token0;
NullCheck(((JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 *)CastclassClass((RuntimeObject*)L_27, JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3_il2cpp_TypeInfo_var)));
RuntimeObject * L_28 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(((JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 *)CastclassClass((RuntimeObject*)L_27, JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
String_t* L_29 = JTokenReader_SafeToString_m7B58D6AD80061531CDBCBE3E276936E79C7616BB(__this, L_28, /*hidden argument*/NULL);
JsonReader_SetToken_m11852C967B119680CD2BB627B37C7AFFB88ED882(__this, ((int32_t)9), L_29, /*hidden argument*/NULL);
return;
}
IL_016c:
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_30 = ___token0;
NullCheck(((JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 *)CastclassClass((RuntimeObject*)L_30, JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3_il2cpp_TypeInfo_var)));
RuntimeObject * L_31 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(((JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 *)CastclassClass((RuntimeObject*)L_30, JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
V_1 = L_31;
RuntimeObject * L_32 = V_1;
if (!((Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E *)IsInstClass((RuntimeObject*)L_32, Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_il2cpp_TypeInfo_var)))
{
goto IL_0194;
}
}
{
RuntimeObject * L_33 = V_1;
NullCheck(((Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E *)CastclassClass((RuntimeObject*)L_33, Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_il2cpp_TypeInfo_var)));
String_t* L_34 = Uri_get_OriginalString_m56099E46276F0A52524347F1F46A2F88E948504F(((Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E *)CastclassClass((RuntimeObject*)L_33, Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
JsonReader_SetToken_m11852C967B119680CD2BB627B37C7AFFB88ED882(__this, ((int32_t)9), L_34, /*hidden argument*/NULL);
return;
}
IL_0194:
{
RuntimeObject * L_35 = V_1;
String_t* L_36 = JTokenReader_SafeToString_m7B58D6AD80061531CDBCBE3E276936E79C7616BB(__this, L_35, /*hidden argument*/NULL);
JsonReader_SetToken_m11852C967B119680CD2BB627B37C7AFFB88ED882(__this, ((int32_t)9), L_36, /*hidden argument*/NULL);
return;
}
IL_01a4:
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_37 = ___token0;
NullCheck(((JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 *)CastclassClass((RuntimeObject*)L_37, JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3_il2cpp_TypeInfo_var)));
RuntimeObject * L_38 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(((JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 *)CastclassClass((RuntimeObject*)L_37, JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
String_t* L_39 = JTokenReader_SafeToString_m7B58D6AD80061531CDBCBE3E276936E79C7616BB(__this, L_38, /*hidden argument*/NULL);
JsonReader_SetToken_m11852C967B119680CD2BB627B37C7AFFB88ED882(__this, ((int32_t)9), L_39, /*hidden argument*/NULL);
return;
}
IL_01be:
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_40 = ___token0;
NullCheck(L_40);
int32_t L_41 = VirtFuncInvoker0< int32_t >::Invoke(11 /* Valve.Newtonsoft.Json.Linq.JTokenType Valve.Newtonsoft.Json.Linq.JToken::get_Type() */, L_40);
int32_t L_42 = L_41;
RuntimeObject * L_43 = Box(JTokenType_t43765D0A61D4F44B41AA73D201C761E37F4DDDAD_il2cpp_TypeInfo_var, &L_42);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_44 = MiscellaneousUtils_CreateArgumentOutOfRangeException_m8E4A0A0A3D556B8811877FEB803AE6CCDD3DE9A0(_stringLiteral3DEB7456519697ECF4EEFC455516C969A3681BAE, L_43, _stringLiteral6A351A5638FF9422495ACACDD7D1AF81A6D518ED, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_44, JTokenReader_SetToken_m50E5A37B2D44D4A93F489DB38D72E924420912EF_RuntimeMethod_var);
}
}
// System.String Valve.Newtonsoft.Json.Linq.JTokenReader::SafeToString(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JTokenReader_SafeToString_m7B58D6AD80061531CDBCBE3E276936E79C7616BB (JTokenReader_tE3C9B85315EFF6B3CB0796451D8278F1372C6530 * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___value0;
if (L_0)
{
goto IL_0005;
}
}
{
return (String_t*)NULL;
}
IL_0005:
{
RuntimeObject * L_1 = ___value0;
NullCheck(L_1);
String_t* L_2 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_1);
return L_2;
}
}
// System.Boolean Valve.Newtonsoft.Json.Linq.JTokenReader::Valve.Newtonsoft.Json.IJsonLineInfo.HasLineInfo()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JTokenReader_Valve_Newtonsoft_Json_IJsonLineInfo_HasLineInfo_m6EE4928E347B114EB493B714E102FF6C43DA56C9 (JTokenReader_tE3C9B85315EFF6B3CB0796451D8278F1372C6530 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JTokenReader_Valve_Newtonsoft_Json_IJsonLineInfo_HasLineInfo_m6EE4928E347B114EB493B714E102FF6C43DA56C9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
{
int32_t L_0 = JsonReader_get_CurrentState_m82A4B2B03B64BDF8B7D0AF08C816C60198F4C0C5_inline(__this, /*hidden argument*/NULL);
if (L_0)
{
goto IL_000a;
}
}
{
return (bool)0;
}
IL_000a:
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_1 = __this->get__current_18();
V_0 = L_1;
RuntimeObject* L_2 = V_0;
if (!L_2)
{
goto IL_001b;
}
}
{
RuntimeObject* L_3 = V_0;
NullCheck(L_3);
bool L_4 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean Valve.Newtonsoft.Json.IJsonLineInfo::HasLineInfo() */, IJsonLineInfo_t7E81AAC43FB40592D509A17DBF8FAABAAE6AC29D_il2cpp_TypeInfo_var, L_3);
return L_4;
}
IL_001b:
{
return (bool)0;
}
}
// System.Int32 Valve.Newtonsoft.Json.Linq.JTokenReader::Valve.Newtonsoft.Json.IJsonLineInfo.get_LineNumber()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JTokenReader_Valve_Newtonsoft_Json_IJsonLineInfo_get_LineNumber_mAB5F2D64E0022AEC878C517FCCE6F97BF5F7BE21 (JTokenReader_tE3C9B85315EFF6B3CB0796451D8278F1372C6530 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JTokenReader_Valve_Newtonsoft_Json_IJsonLineInfo_get_LineNumber_mAB5F2D64E0022AEC878C517FCCE6F97BF5F7BE21_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
{
int32_t L_0 = JsonReader_get_CurrentState_m82A4B2B03B64BDF8B7D0AF08C816C60198F4C0C5_inline(__this, /*hidden argument*/NULL);
if (L_0)
{
goto IL_000a;
}
}
{
return 0;
}
IL_000a:
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_1 = __this->get__current_18();
V_0 = L_1;
RuntimeObject* L_2 = V_0;
if (!L_2)
{
goto IL_001b;
}
}
{
RuntimeObject* L_3 = V_0;
NullCheck(L_3);
int32_t L_4 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 Valve.Newtonsoft.Json.IJsonLineInfo::get_LineNumber() */, IJsonLineInfo_t7E81AAC43FB40592D509A17DBF8FAABAAE6AC29D_il2cpp_TypeInfo_var, L_3);
return L_4;
}
IL_001b:
{
return 0;
}
}
// System.Int32 Valve.Newtonsoft.Json.Linq.JTokenReader::Valve.Newtonsoft.Json.IJsonLineInfo.get_LinePosition()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JTokenReader_Valve_Newtonsoft_Json_IJsonLineInfo_get_LinePosition_m18964B8E624516F1D29B12A4B3107F64E8E9A710 (JTokenReader_tE3C9B85315EFF6B3CB0796451D8278F1372C6530 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JTokenReader_Valve_Newtonsoft_Json_IJsonLineInfo_get_LinePosition_m18964B8E624516F1D29B12A4B3107F64E8E9A710_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
{
int32_t L_0 = JsonReader_get_CurrentState_m82A4B2B03B64BDF8B7D0AF08C816C60198F4C0C5_inline(__this, /*hidden argument*/NULL);
if (L_0)
{
goto IL_000a;
}
}
{
return 0;
}
IL_000a:
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_1 = __this->get__current_18();
V_0 = L_1;
RuntimeObject* L_2 = V_0;
if (!L_2)
{
goto IL_001b;
}
}
{
RuntimeObject* L_3 = V_0;
NullCheck(L_3);
int32_t L_4 = InterfaceFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 Valve.Newtonsoft.Json.IJsonLineInfo::get_LinePosition() */, IJsonLineInfo_t7E81AAC43FB40592D509A17DBF8FAABAAE6AC29D_il2cpp_TypeInfo_var, L_3);
return L_4;
}
IL_001b:
{
return 0;
}
}
// System.String Valve.Newtonsoft.Json.Linq.JTokenReader::get_Path()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JTokenReader_get_Path_m8E27ABDD067CD65E398A75BA08A2328460B53DF9 (JTokenReader_tE3C9B85315EFF6B3CB0796451D8278F1372C6530 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JTokenReader_get_Path_m8E27ABDD067CD65E398A75BA08A2328460B53DF9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
String_t* L_0 = JsonReader_get_Path_mC7E72F6CFB87FDE89AA0AD8B12D4EBC4E48E6A81(__this, /*hidden argument*/NULL);
V_0 = L_0;
String_t* L_1 = __this->get__initialPath_16();
if (L_1)
{
goto IL_0020;
}
}
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_2 = __this->get__root_15();
NullCheck(L_2);
String_t* L_3 = JToken_get_Path_mDF8410943E43F72FA56B317C89DAC959284005B3(L_2, /*hidden argument*/NULL);
__this->set__initialPath_16(L_3);
}
IL_0020:
{
String_t* L_4 = __this->get__initialPath_16();
bool L_5 = String_IsNullOrEmpty_m06A85A206AC2106D1982826C5665B9BD35324229(L_4, /*hidden argument*/NULL);
if (L_5)
{
goto IL_0067;
}
}
{
String_t* L_6 = V_0;
bool L_7 = String_IsNullOrEmpty_m06A85A206AC2106D1982826C5665B9BD35324229(L_6, /*hidden argument*/NULL);
if (!L_7)
{
goto IL_003c;
}
}
{
String_t* L_8 = __this->get__initialPath_16();
return L_8;
}
IL_003c:
{
String_t* L_9 = V_0;
bool L_10 = StringUtils_StartsWith_mD7008823EBB1ADEFC439AF6CD8A86EC2DCD0DD8B(L_9, ((int32_t)91), /*hidden argument*/NULL);
if (!L_10)
{
goto IL_0055;
}
}
{
String_t* L_11 = __this->get__initialPath_16();
String_t* L_12 = V_0;
String_t* L_13 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(L_11, L_12, /*hidden argument*/NULL);
V_0 = L_13;
goto IL_0067;
}
IL_0055:
{
String_t* L_14 = __this->get__initialPath_16();
String_t* L_15 = V_0;
String_t* L_16 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(L_14, _stringLiteral3A52CE780950D4D969792A2559CD519D7EE8C727, L_15, /*hidden argument*/NULL);
V_0 = L_16;
}
IL_0067:
{
String_t* 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
#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
// Valve.Newtonsoft.Json.Linq.JToken Valve.Newtonsoft.Json.Linq.JTokenWriter::get_Token()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * JTokenWriter_get_Token_mA5EEF3FC6A346CD27BAC8C89585950361FE680B3 (JTokenWriter_t96B1E9B675DE7CD27F8339C82B785C254918BCEF * __this, const RuntimeMethod* method)
{
{
JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * L_0 = __this->get__token_13();
if (!L_0)
{
goto IL_000f;
}
}
{
JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * L_1 = __this->get__token_13();
return L_1;
}
IL_000f:
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_2 = __this->get__value_15();
return L_2;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JTokenWriter::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JTokenWriter__ctor_mA873958577684A251ABA5A71D7B74F0290449425 (JTokenWriter_t96B1E9B675DE7CD27F8339C82B785C254918BCEF * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JTokenWriter__ctor_mA873958577684A251ABA5A71D7B74F0290449425_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E_il2cpp_TypeInfo_var);
JsonWriter__ctor_m2A754E84A486C9963FAA05E390974DAC799B80B4(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JTokenWriter::Close()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JTokenWriter_Close_m4DF96926F45069B2A83D2AF554108226F0431B12 (JTokenWriter_t96B1E9B675DE7CD27F8339C82B785C254918BCEF * __this, const RuntimeMethod* method)
{
{
JsonWriter_Close_mE5FA4E3E7AC7E19933B5FD301D8F99FAAAB04986(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JTokenWriter::WriteStartObject()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JTokenWriter_WriteStartObject_m2CBACC1D5FF0128E5C35A14BE130331A0681B967 (JTokenWriter_t96B1E9B675DE7CD27F8339C82B785C254918BCEF * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JTokenWriter_WriteStartObject_m2CBACC1D5FF0128E5C35A14BE130331A0681B967_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
JsonWriter_WriteStartObject_m1FEDC2B1810F26A04793BD130910EF2BAFBA68B4(__this, /*hidden argument*/NULL);
JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21 * L_0 = (JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21 *)il2cpp_codegen_object_new(JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21_il2cpp_TypeInfo_var);
JObject__ctor_mA5D65F80D283064BD1F55F868F8EB24250880D09(L_0, /*hidden argument*/NULL);
JTokenWriter_AddParent_m4C32A5F9C73C33D7876EDCCF563143B16A9012E5(__this, L_0, /*hidden argument*/NULL);
return;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JTokenWriter::AddParent(Valve.Newtonsoft.Json.Linq.JContainer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JTokenWriter_AddParent_m4C32A5F9C73C33D7876EDCCF563143B16A9012E5 (JTokenWriter_t96B1E9B675DE7CD27F8339C82B785C254918BCEF * __this, JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * ___container0, const RuntimeMethod* method)
{
{
JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * L_0 = __this->get__parent_14();
if (L_0)
{
goto IL_0011;
}
}
{
JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * L_1 = ___container0;
__this->set__token_13(L_1);
goto IL_001d;
}
IL_0011:
{
JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * L_2 = __this->get__parent_14();
JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * L_3 = ___container0;
NullCheck(L_2);
JContainer_AddAndSkipParentCheck_mC69CDC523C76A655893E17C881E9F6E95EBCC561(L_2, L_3, /*hidden argument*/NULL);
}
IL_001d:
{
JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * L_4 = ___container0;
__this->set__parent_14(L_4);
JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * L_5 = ___container0;
__this->set__current_16(L_5);
return;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JTokenWriter::RemoveParent()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JTokenWriter_RemoveParent_m41B55794CCFDEFFC8D6897BE888AF31C9FECD204 (JTokenWriter_t96B1E9B675DE7CD27F8339C82B785C254918BCEF * __this, const RuntimeMethod* method)
{
{
JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * L_0 = __this->get__parent_14();
__this->set__current_16(L_0);
JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * L_1 = __this->get__parent_14();
NullCheck(L_1);
JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * L_2 = JToken_get_Parent_m68142FEB329F72F2258F55D7A790C43E7E823F54_inline(L_1, /*hidden argument*/NULL);
__this->set__parent_14(L_2);
JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * L_3 = __this->get__parent_14();
if (!L_3)
{
goto IL_0044;
}
}
{
JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * L_4 = __this->get__parent_14();
NullCheck(L_4);
int32_t L_5 = VirtFuncInvoker0< int32_t >::Invoke(11 /* Valve.Newtonsoft.Json.Linq.JTokenType Valve.Newtonsoft.Json.Linq.JToken::get_Type() */, L_4);
if ((!(((uint32_t)L_5) == ((uint32_t)4))))
{
goto IL_0044;
}
}
{
JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * L_6 = __this->get__parent_14();
NullCheck(L_6);
JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * L_7 = JToken_get_Parent_m68142FEB329F72F2258F55D7A790C43E7E823F54_inline(L_6, /*hidden argument*/NULL);
__this->set__parent_14(L_7);
}
IL_0044:
{
return;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JTokenWriter::WriteStartArray()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JTokenWriter_WriteStartArray_m2E62C103744DF867FD5395949FC733B24E8E1AC6 (JTokenWriter_t96B1E9B675DE7CD27F8339C82B785C254918BCEF * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JTokenWriter_WriteStartArray_m2E62C103744DF867FD5395949FC733B24E8E1AC6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
JsonWriter_WriteStartArray_mC195BF909344A95DBC50E07F73382D30D2386459(__this, /*hidden argument*/NULL);
JArray_t8AE8A8AB34EFB9A770BC34AB9EA47BE9DC7F45C2 * L_0 = (JArray_t8AE8A8AB34EFB9A770BC34AB9EA47BE9DC7F45C2 *)il2cpp_codegen_object_new(JArray_t8AE8A8AB34EFB9A770BC34AB9EA47BE9DC7F45C2_il2cpp_TypeInfo_var);
JArray__ctor_m84320AC2A023FE7FCB5359A880861C4BF0F61D53(L_0, /*hidden argument*/NULL);
JTokenWriter_AddParent_m4C32A5F9C73C33D7876EDCCF563143B16A9012E5(__this, L_0, /*hidden argument*/NULL);
return;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JTokenWriter::WriteStartConstructor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JTokenWriter_WriteStartConstructor_m2E22B3EC5504F9EB3EAF58A57C5DD3AB9812AE3E (JTokenWriter_t96B1E9B675DE7CD27F8339C82B785C254918BCEF * __this, String_t* ___name0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JTokenWriter_WriteStartConstructor_m2E22B3EC5504F9EB3EAF58A57C5DD3AB9812AE3E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___name0;
JsonWriter_WriteStartConstructor_m051017ADECFAEE4F22C0F03C5D68192555137067(__this, L_0, /*hidden argument*/NULL);
String_t* L_1 = ___name0;
JConstructor_t31B236A37CEC95856D10CB7C3F276D6C4CA0B26B * L_2 = (JConstructor_t31B236A37CEC95856D10CB7C3F276D6C4CA0B26B *)il2cpp_codegen_object_new(JConstructor_t31B236A37CEC95856D10CB7C3F276D6C4CA0B26B_il2cpp_TypeInfo_var);
JConstructor__ctor_m79E2C9A1AF240937806186F98B298A1D80E8802D(L_2, L_1, /*hidden argument*/NULL);
JTokenWriter_AddParent_m4C32A5F9C73C33D7876EDCCF563143B16A9012E5(__this, L_2, /*hidden argument*/NULL);
return;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JTokenWriter::WriteEnd(Valve.Newtonsoft.Json.JsonToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JTokenWriter_WriteEnd_m54332694C719C2470D1312520BDD6CE385661295 (JTokenWriter_t96B1E9B675DE7CD27F8339C82B785C254918BCEF * __this, int32_t ___token0, const RuntimeMethod* method)
{
{
JTokenWriter_RemoveParent_m41B55794CCFDEFFC8D6897BE888AF31C9FECD204(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JTokenWriter::WritePropertyName(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JTokenWriter_WritePropertyName_m872EED34AFBF6FCB213DA1BC03E9FE410C8992EA (JTokenWriter_t96B1E9B675DE7CD27F8339C82B785C254918BCEF * __this, String_t* ___name0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JTokenWriter_WritePropertyName_m872EED34AFBF6FCB213DA1BC03E9FE410C8992EA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21 * V_0 = NULL;
{
JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * L_0 = __this->get__parent_14();
V_0 = ((JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21 *)IsInstClass((RuntimeObject*)L_0, JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21_il2cpp_TypeInfo_var));
JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21 * L_1 = V_0;
if (!L_1)
{
goto IL_0017;
}
}
{
JObject_t0F3D9D69EB5DBCD1E5AA7D689BFC7862B5ADBF21 * L_2 = V_0;
String_t* L_3 = ___name0;
NullCheck(L_2);
JObject_Remove_m071001E249812891B6817A44EBFEAE9B1324E21C(L_2, L_3, /*hidden argument*/NULL);
}
IL_0017:
{
String_t* L_4 = ___name0;
JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * L_5 = (JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF *)il2cpp_codegen_object_new(JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF_il2cpp_TypeInfo_var);
JProperty__ctor_mA6F2A9891CC8E62C2DA933667DCC34E3CAD58D30(L_5, L_4, /*hidden argument*/NULL);
JTokenWriter_AddParent_m4C32A5F9C73C33D7876EDCCF563143B16A9012E5(__this, L_5, /*hidden argument*/NULL);
String_t* L_6 = ___name0;
JsonWriter_WritePropertyName_m37E4C5E891A7735B94D1ABC7EC71BAD4FE65BAD5(__this, L_6, /*hidden argument*/NULL);
return;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JTokenWriter::AddValue(System.Object,Valve.Newtonsoft.Json.JsonToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JTokenWriter_AddValue_mF1C34507EC5AD59339B847AD882751EFCDB72381 (JTokenWriter_t96B1E9B675DE7CD27F8339C82B785C254918BCEF * __this, RuntimeObject * ___value0, int32_t ___token1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JTokenWriter_AddValue_mF1C34507EC5AD59339B847AD882751EFCDB72381_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___value0;
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_1 = (JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 *)il2cpp_codegen_object_new(JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3_il2cpp_TypeInfo_var);
JValue__ctor_mA1877799B837592DB979A9174AEE2D9521D41985(L_1, L_0, /*hidden argument*/NULL);
int32_t L_2 = ___token1;
JTokenWriter_AddValue_m4893801601552FDF07FC01A634117B186E75AD57(__this, L_1, L_2, /*hidden argument*/NULL);
return;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JTokenWriter::AddValue(Valve.Newtonsoft.Json.Linq.JValue,Valve.Newtonsoft.Json.JsonToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JTokenWriter_AddValue_m4893801601552FDF07FC01A634117B186E75AD57 (JTokenWriter_t96B1E9B675DE7CD27F8339C82B785C254918BCEF * __this, JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * ___value0, int32_t ___token1, const RuntimeMethod* method)
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * G_B5_0 = NULL;
JTokenWriter_t96B1E9B675DE7CD27F8339C82B785C254918BCEF * G_B5_1 = NULL;
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * G_B4_0 = NULL;
JTokenWriter_t96B1E9B675DE7CD27F8339C82B785C254918BCEF * G_B4_1 = NULL;
{
JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * L_0 = __this->get__parent_14();
if (!L_0)
{
goto IL_0045;
}
}
{
JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * L_1 = __this->get__parent_14();
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_2 = ___value0;
NullCheck(L_1);
VirtActionInvoker1< RuntimeObject * >::Invoke(56 /* System.Void Valve.Newtonsoft.Json.Linq.JContainer::Add(System.Object) */, L_1, L_2);
JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * L_3 = __this->get__parent_14();
NullCheck(L_3);
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_4 = VirtFuncInvoker0< JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * >::Invoke(14 /* Valve.Newtonsoft.Json.Linq.JToken Valve.Newtonsoft.Json.Linq.JToken::get_Last() */, L_3);
__this->set__current_16(L_4);
JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * L_5 = __this->get__parent_14();
NullCheck(L_5);
int32_t L_6 = VirtFuncInvoker0< int32_t >::Invoke(11 /* Valve.Newtonsoft.Json.Linq.JTokenType Valve.Newtonsoft.Json.Linq.JToken::get_Type() */, L_5);
if ((!(((uint32_t)L_6) == ((uint32_t)4))))
{
goto IL_0061;
}
}
{
JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * L_7 = __this->get__parent_14();
NullCheck(L_7);
JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * L_8 = JToken_get_Parent_m68142FEB329F72F2258F55D7A790C43E7E823F54_inline(L_7, /*hidden argument*/NULL);
__this->set__parent_14(L_8);
return;
}
IL_0045:
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_9 = ___value0;
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_10 = L_9;
G_B4_0 = L_10;
G_B4_1 = __this;
if (L_10)
{
G_B5_0 = L_10;
G_B5_1 = __this;
goto IL_0050;
}
}
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_11 = JValue_CreateNull_m3CCD3BCA725D2424F3C62FA811D56AD35DCD1066(/*hidden argument*/NULL);
G_B5_0 = L_11;
G_B5_1 = G_B4_1;
}
IL_0050:
{
NullCheck(G_B5_1);
G_B5_1->set__value_15(G_B5_0);
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_12 = __this->get__value_15();
__this->set__current_16(L_12);
}
IL_0061:
{
return;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JTokenWriter::WriteNull()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JTokenWriter_WriteNull_m47EA9E301550CB919FF0FE1C3809C276C3C2ED0C (JTokenWriter_t96B1E9B675DE7CD27F8339C82B785C254918BCEF * __this, const RuntimeMethod* method)
{
{
JsonWriter_WriteNull_m5CF4137C0166CABF0AD21E77B3073B8F2987F0F2(__this, /*hidden argument*/NULL);
JTokenWriter_AddValue_m4893801601552FDF07FC01A634117B186E75AD57(__this, (JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 *)NULL, ((int32_t)11), /*hidden argument*/NULL);
return;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JTokenWriter::WriteUndefined()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JTokenWriter_WriteUndefined_mC967D937FCDBE5D68DB0D681D2B4C47865573109 (JTokenWriter_t96B1E9B675DE7CD27F8339C82B785C254918BCEF * __this, const RuntimeMethod* method)
{
{
JsonWriter_WriteUndefined_m857219BD9EE455A3BAC2282B347C8353A3E293F2(__this, /*hidden argument*/NULL);
JTokenWriter_AddValue_m4893801601552FDF07FC01A634117B186E75AD57(__this, (JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 *)NULL, ((int32_t)12), /*hidden argument*/NULL);
return;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JTokenWriter::WriteRaw(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JTokenWriter_WriteRaw_m260AF1206E885A7A7AA39B0148AF0F1295718054 (JTokenWriter_t96B1E9B675DE7CD27F8339C82B785C254918BCEF * __this, String_t* ___json0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JTokenWriter_WriteRaw_m260AF1206E885A7A7AA39B0148AF0F1295718054_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___json0;
JsonWriter_WriteRaw_m2B90B2AD0D946B59DB67A41F82568207CE70F1EA(__this, L_0, /*hidden argument*/NULL);
String_t* L_1 = ___json0;
JRaw_tEA065B3ED6F70E2FA12CA996B102A3FD16330C86 * L_2 = (JRaw_tEA065B3ED6F70E2FA12CA996B102A3FD16330C86 *)il2cpp_codegen_object_new(JRaw_tEA065B3ED6F70E2FA12CA996B102A3FD16330C86_il2cpp_TypeInfo_var);
JRaw__ctor_m48FA7D8C382E6F0829C9BEAFEC03E2D42ADE2F32(L_2, L_1, /*hidden argument*/NULL);
JTokenWriter_AddValue_m4893801601552FDF07FC01A634117B186E75AD57(__this, L_2, 6, /*hidden argument*/NULL);
return;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JTokenWriter::WriteComment(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JTokenWriter_WriteComment_m50E4738E670FCFE91961E10375A95ED47B5D0682 (JTokenWriter_t96B1E9B675DE7CD27F8339C82B785C254918BCEF * __this, String_t* ___text0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___text0;
JsonWriter_WriteComment_mC986B5FE4E0DBBA325AA64A0933F1433BCAA8AF4(__this, L_0, /*hidden argument*/NULL);
String_t* L_1 = ___text0;
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_2 = JValue_CreateComment_mB22EE156BA4E18B35393ED2634F98E19175B524A(L_1, /*hidden argument*/NULL);
JTokenWriter_AddValue_m4893801601552FDF07FC01A634117B186E75AD57(__this, L_2, 5, /*hidden argument*/NULL);
return;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JTokenWriter::WriteValue(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JTokenWriter_WriteValue_m8F39CDEEFB6CFEADDC960F16DFA732ABD7AA7DE0 (JTokenWriter_t96B1E9B675DE7CD27F8339C82B785C254918BCEF * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
JsonWriter_WriteValue_m49EA9808E532C8348810E4A2736427511EAB1F67(__this, L_0, /*hidden argument*/NULL);
String_t* L_1 = ___value0;
JTokenWriter_AddValue_mF1C34507EC5AD59339B847AD882751EFCDB72381(__this, L_1, ((int32_t)9), /*hidden argument*/NULL);
return;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JTokenWriter::WriteValue(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JTokenWriter_WriteValue_m8FFA51981981B5EFCE39FC13933A75B2A7D75990 (JTokenWriter_t96B1E9B675DE7CD27F8339C82B785C254918BCEF * __this, int32_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JTokenWriter_WriteValue_m8FFA51981981B5EFCE39FC13933A75B2A7D75990_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___value0;
JsonWriter_WriteValue_m5E76F77404330687D8FAA5CAD3CB16D9E7F29105(__this, L_0, /*hidden argument*/NULL);
int32_t L_1 = ___value0;
int32_t L_2 = L_1;
RuntimeObject * L_3 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_2);
JTokenWriter_AddValue_mF1C34507EC5AD59339B847AD882751EFCDB72381(__this, L_3, 7, /*hidden argument*/NULL);
return;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JTokenWriter::WriteValue(System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JTokenWriter_WriteValue_mB8DF356D3C424E99C455B44FED3B087CA7FE93C6 (JTokenWriter_t96B1E9B675DE7CD27F8339C82B785C254918BCEF * __this, uint32_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JTokenWriter_WriteValue_mB8DF356D3C424E99C455B44FED3B087CA7FE93C6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
uint32_t L_0 = ___value0;
JsonWriter_WriteValue_m6CD89FBB39F30FEBFBC53973908467130534209E(__this, L_0, /*hidden argument*/NULL);
uint32_t L_1 = ___value0;
uint32_t L_2 = L_1;
RuntimeObject * L_3 = Box(UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_il2cpp_TypeInfo_var, &L_2);
JTokenWriter_AddValue_mF1C34507EC5AD59339B847AD882751EFCDB72381(__this, L_3, 7, /*hidden argument*/NULL);
return;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JTokenWriter::WriteValue(System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JTokenWriter_WriteValue_m69FC9D49E44123CABD57FFEBD3E60E7BA5323BBB (JTokenWriter_t96B1E9B675DE7CD27F8339C82B785C254918BCEF * __this, int64_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JTokenWriter_WriteValue_m69FC9D49E44123CABD57FFEBD3E60E7BA5323BBB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int64_t L_0 = ___value0;
JsonWriter_WriteValue_m870DA8F3FEADD24960EA3FC73F3B8FFE20F38AFC(__this, L_0, /*hidden argument*/NULL);
int64_t L_1 = ___value0;
int64_t L_2 = L_1;
RuntimeObject * L_3 = Box(Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_il2cpp_TypeInfo_var, &L_2);
JTokenWriter_AddValue_mF1C34507EC5AD59339B847AD882751EFCDB72381(__this, L_3, 7, /*hidden argument*/NULL);
return;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JTokenWriter::WriteValue(System.UInt64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JTokenWriter_WriteValue_m6F61666F1161D899C942075AF2A2ACB6A6FF48EE (JTokenWriter_t96B1E9B675DE7CD27F8339C82B785C254918BCEF * __this, uint64_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JTokenWriter_WriteValue_m6F61666F1161D899C942075AF2A2ACB6A6FF48EE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
uint64_t L_0 = ___value0;
JsonWriter_WriteValue_m03AE2953042426134E86C4C821E4E65682315C8E(__this, L_0, /*hidden argument*/NULL);
uint64_t L_1 = ___value0;
uint64_t L_2 = L_1;
RuntimeObject * L_3 = Box(UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_il2cpp_TypeInfo_var, &L_2);
JTokenWriter_AddValue_mF1C34507EC5AD59339B847AD882751EFCDB72381(__this, L_3, 7, /*hidden argument*/NULL);
return;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JTokenWriter::WriteValue(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JTokenWriter_WriteValue_m046136E51964263582C489AFB516D848B01ABACA (JTokenWriter_t96B1E9B675DE7CD27F8339C82B785C254918BCEF * __this, float ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JTokenWriter_WriteValue_m046136E51964263582C489AFB516D848B01ABACA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
float L_0 = ___value0;
JsonWriter_WriteValue_m917D702A24DEA965C325C3BB562695140879B0CE(__this, L_0, /*hidden argument*/NULL);
float L_1 = ___value0;
float L_2 = L_1;
RuntimeObject * L_3 = Box(Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_il2cpp_TypeInfo_var, &L_2);
JTokenWriter_AddValue_mF1C34507EC5AD59339B847AD882751EFCDB72381(__this, L_3, 8, /*hidden argument*/NULL);
return;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JTokenWriter::WriteValue(System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JTokenWriter_WriteValue_m1DC5C4B926D9D0E347501354639DEA1B5827FEFF (JTokenWriter_t96B1E9B675DE7CD27F8339C82B785C254918BCEF * __this, double ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JTokenWriter_WriteValue_m1DC5C4B926D9D0E347501354639DEA1B5827FEFF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
double L_0 = ___value0;
JsonWriter_WriteValue_m112B725536D68B5E478A4132F589141DE620B55E(__this, L_0, /*hidden argument*/NULL);
double L_1 = ___value0;
double L_2 = L_1;
RuntimeObject * L_3 = Box(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var, &L_2);
JTokenWriter_AddValue_mF1C34507EC5AD59339B847AD882751EFCDB72381(__this, L_3, 8, /*hidden argument*/NULL);
return;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JTokenWriter::WriteValue(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JTokenWriter_WriteValue_mFAB59A6880EDB52AA5476253318331493DDE262E (JTokenWriter_t96B1E9B675DE7CD27F8339C82B785C254918BCEF * __this, bool ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JTokenWriter_WriteValue_mFAB59A6880EDB52AA5476253318331493DDE262E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
bool L_0 = ___value0;
JsonWriter_WriteValue_m80FC5EFD83EC9DCABF770EF3CC5703AA252E10C5(__this, L_0, /*hidden argument*/NULL);
bool L_1 = ___value0;
bool L_2 = L_1;
RuntimeObject * L_3 = Box(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_il2cpp_TypeInfo_var, &L_2);
JTokenWriter_AddValue_mF1C34507EC5AD59339B847AD882751EFCDB72381(__this, L_3, ((int32_t)10), /*hidden argument*/NULL);
return;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JTokenWriter::WriteValue(System.Int16)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JTokenWriter_WriteValue_m7953FA14C05CF93E3732FC4B62C6E24BE7E8E404 (JTokenWriter_t96B1E9B675DE7CD27F8339C82B785C254918BCEF * __this, int16_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JTokenWriter_WriteValue_m7953FA14C05CF93E3732FC4B62C6E24BE7E8E404_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int16_t L_0 = ___value0;
JsonWriter_WriteValue_m529BEE5BDF8FE5A40C941E354E689DCB89B7DDA8(__this, L_0, /*hidden argument*/NULL);
int16_t L_1 = ___value0;
int16_t L_2 = L_1;
RuntimeObject * L_3 = Box(Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_il2cpp_TypeInfo_var, &L_2);
JTokenWriter_AddValue_mF1C34507EC5AD59339B847AD882751EFCDB72381(__this, L_3, 7, /*hidden argument*/NULL);
return;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JTokenWriter::WriteValue(System.UInt16)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JTokenWriter_WriteValue_mCDCA8355892CFE90B9C1487CF2D0EEAD3C5F1C64 (JTokenWriter_t96B1E9B675DE7CD27F8339C82B785C254918BCEF * __this, uint16_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JTokenWriter_WriteValue_mCDCA8355892CFE90B9C1487CF2D0EEAD3C5F1C64_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
uint16_t L_0 = ___value0;
JsonWriter_WriteValue_mBC904278CF773056E377B1274A5098A21F90DD34(__this, L_0, /*hidden argument*/NULL);
uint16_t L_1 = ___value0;
uint16_t L_2 = L_1;
RuntimeObject * L_3 = Box(UInt16_tAE45CEF73BF720100519F6867F32145D075F928E_il2cpp_TypeInfo_var, &L_2);
JTokenWriter_AddValue_mF1C34507EC5AD59339B847AD882751EFCDB72381(__this, L_3, 7, /*hidden argument*/NULL);
return;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JTokenWriter::WriteValue(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JTokenWriter_WriteValue_m78D25DBDAE58E4A76CE1ADA944A9EA3ECD48F887 (JTokenWriter_t96B1E9B675DE7CD27F8339C82B785C254918BCEF * __this, Il2CppChar ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JTokenWriter_WriteValue_m78D25DBDAE58E4A76CE1ADA944A9EA3ECD48F887_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
Il2CppChar L_0 = ___value0;
JsonWriter_WriteValue_m4080E1F8D12EC1E86E8167A19D1859AFAF12AC52(__this, L_0, /*hidden argument*/NULL);
V_0 = (String_t*)NULL;
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_1 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
String_t* L_2 = Char_ToString_mF758476EBA0494508C18E74ADF20D7732A872BDE((Il2CppChar*)(&___value0), L_1, /*hidden argument*/NULL);
V_0 = L_2;
String_t* L_3 = V_0;
JTokenWriter_AddValue_mF1C34507EC5AD59339B847AD882751EFCDB72381(__this, L_3, ((int32_t)9), /*hidden argument*/NULL);
return;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JTokenWriter::WriteValue(System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JTokenWriter_WriteValue_m58A052B6C3387DA21C90CCEB50C473269E743095 (JTokenWriter_t96B1E9B675DE7CD27F8339C82B785C254918BCEF * __this, uint8_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JTokenWriter_WriteValue_m58A052B6C3387DA21C90CCEB50C473269E743095_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
uint8_t L_0 = ___value0;
JsonWriter_WriteValue_m94615855CFEFE50CBD01ECC5840F396974BFC86E(__this, L_0, /*hidden argument*/NULL);
uint8_t L_1 = ___value0;
uint8_t L_2 = L_1;
RuntimeObject * L_3 = Box(Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_il2cpp_TypeInfo_var, &L_2);
JTokenWriter_AddValue_mF1C34507EC5AD59339B847AD882751EFCDB72381(__this, L_3, 7, /*hidden argument*/NULL);
return;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JTokenWriter::WriteValue(System.SByte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JTokenWriter_WriteValue_mEB1878CDB8FBCCC3ACEC69788D427351BD148B34 (JTokenWriter_t96B1E9B675DE7CD27F8339C82B785C254918BCEF * __this, int8_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JTokenWriter_WriteValue_mEB1878CDB8FBCCC3ACEC69788D427351BD148B34_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int8_t L_0 = ___value0;
JsonWriter_WriteValue_m86A68961251E2B3EE5DE1032055F9EEEA856F7CD(__this, L_0, /*hidden argument*/NULL);
int8_t L_1 = ___value0;
int8_t L_2 = L_1;
RuntimeObject * L_3 = Box(SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_il2cpp_TypeInfo_var, &L_2);
JTokenWriter_AddValue_mF1C34507EC5AD59339B847AD882751EFCDB72381(__this, L_3, 7, /*hidden argument*/NULL);
return;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JTokenWriter::WriteValue(System.Decimal)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JTokenWriter_WriteValue_mBBFA7AD537661A8E6ED7451F296B7EA577C12A03 (JTokenWriter_t96B1E9B675DE7CD27F8339C82B785C254918BCEF * __this, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JTokenWriter_WriteValue_mBBFA7AD537661A8E6ED7451F296B7EA577C12A03_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_0 = ___value0;
JsonWriter_WriteValue_m4BAEBAD7F89B298AD8333B20A3F2CDDFE2903837(__this, L_0, /*hidden argument*/NULL);
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_1 = ___value0;
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_2 = L_1;
RuntimeObject * L_3 = Box(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_il2cpp_TypeInfo_var, &L_2);
JTokenWriter_AddValue_mF1C34507EC5AD59339B847AD882751EFCDB72381(__this, L_3, 8, /*hidden argument*/NULL);
return;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JTokenWriter::WriteValue(System.DateTime)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JTokenWriter_WriteValue_mC88506FC77B9FB62DA2E0C3FDF21CA10D1EDCCD4 (JTokenWriter_t96B1E9B675DE7CD27F8339C82B785C254918BCEF * __this, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JTokenWriter_WriteValue_mC88506FC77B9FB62DA2E0C3FDF21CA10D1EDCCD4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_0 = ___value0;
JsonWriter_WriteValue_m950794D16F0CEF4400AFF1CB144B930020F0A0F0(__this, L_0, /*hidden argument*/NULL);
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_1 = ___value0;
int32_t L_2 = JsonWriter_get_DateTimeZoneHandling_mDFAF827652B4F8B1747A36796689D049E9E8F154_inline(__this, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(DateTimeUtils_t2832B523538DBEDF8B2BAA01946B3D743F297F1C_il2cpp_TypeInfo_var);
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_3 = DateTimeUtils_EnsureDateTime_m88A47E3B933627EA4D17E69F3CAE93D8D5509284(L_1, L_2, /*hidden argument*/NULL);
___value0 = L_3;
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_4 = ___value0;
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_5 = L_4;
RuntimeObject * L_6 = Box(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var, &L_5);
JTokenWriter_AddValue_mF1C34507EC5AD59339B847AD882751EFCDB72381(__this, L_6, ((int32_t)16), /*hidden argument*/NULL);
return;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JTokenWriter::WriteValue(System.DateTimeOffset)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JTokenWriter_WriteValue_mB373488ECB03C43CBF27AF5FD6486E95DF6722D7 (JTokenWriter_t96B1E9B675DE7CD27F8339C82B785C254918BCEF * __this, DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JTokenWriter_WriteValue_mB373488ECB03C43CBF27AF5FD6486E95DF6722D7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 L_0 = ___value0;
JsonWriter_WriteValue_mEB32D45EE257E82C423036D12642C48F81C2D569(__this, L_0, /*hidden argument*/NULL);
DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 L_1 = ___value0;
DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 L_2 = L_1;
RuntimeObject * L_3 = Box(DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_il2cpp_TypeInfo_var, &L_2);
JTokenWriter_AddValue_mF1C34507EC5AD59339B847AD882751EFCDB72381(__this, L_3, ((int32_t)16), /*hidden argument*/NULL);
return;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JTokenWriter::WriteValue(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JTokenWriter_WriteValue_m480D7F27534D0196045FF717FF17E6931E5279F9 (JTokenWriter_t96B1E9B675DE7CD27F8339C82B785C254918BCEF * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___value0, const RuntimeMethod* method)
{
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___value0;
JsonWriter_WriteValue_m896723B2C4A2E44908EF1B488A36DFAC518D7BA7(__this, L_0, /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = ___value0;
JTokenWriter_AddValue_mF1C34507EC5AD59339B847AD882751EFCDB72381(__this, (RuntimeObject *)(RuntimeObject *)L_1, ((int32_t)17), /*hidden argument*/NULL);
return;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JTokenWriter::WriteValue(System.TimeSpan)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JTokenWriter_WriteValue_m9B879B4E5363E5321F650BFE37A3D74739697B3D (JTokenWriter_t96B1E9B675DE7CD27F8339C82B785C254918BCEF * __this, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JTokenWriter_WriteValue_m9B879B4E5363E5321F650BFE37A3D74739697B3D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_0 = ___value0;
JsonWriter_WriteValue_m9B4C4EF83E009BACEA128F3DDB7AFDD6EF60B4F7(__this, L_0, /*hidden argument*/NULL);
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_1 = ___value0;
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_2 = L_1;
RuntimeObject * L_3 = Box(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var, &L_2);
JTokenWriter_AddValue_mF1C34507EC5AD59339B847AD882751EFCDB72381(__this, L_3, ((int32_t)9), /*hidden argument*/NULL);
return;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JTokenWriter::WriteValue(System.Guid)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JTokenWriter_WriteValue_m08D5AABF2D7232FC62B4B3C61DB5FB5776DEA810 (JTokenWriter_t96B1E9B675DE7CD27F8339C82B785C254918BCEF * __this, Guid_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JTokenWriter_WriteValue_m08D5AABF2D7232FC62B4B3C61DB5FB5776DEA810_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Guid_t L_0 = ___value0;
JsonWriter_WriteValue_mB27A6CE96CD19473F5821F316002702313DD93DA(__this, L_0, /*hidden argument*/NULL);
Guid_t L_1 = ___value0;
Guid_t L_2 = L_1;
RuntimeObject * L_3 = Box(Guid_t_il2cpp_TypeInfo_var, &L_2);
JTokenWriter_AddValue_mF1C34507EC5AD59339B847AD882751EFCDB72381(__this, L_3, ((int32_t)9), /*hidden argument*/NULL);
return;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JTokenWriter::WriteValue(System.Uri)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JTokenWriter_WriteValue_m12170D6327BCF02006A081B6AB3ED7C3562391A7 (JTokenWriter_t96B1E9B675DE7CD27F8339C82B785C254918BCEF * __this, Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * ___value0, const RuntimeMethod* method)
{
{
Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * L_0 = ___value0;
JsonWriter_WriteValue_mA8D71853BC3715DFA06148499266F0B426608519(__this, L_0, /*hidden argument*/NULL);
Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * L_1 = ___value0;
JTokenWriter_AddValue_mF1C34507EC5AD59339B847AD882751EFCDB72381(__this, L_1, ((int32_t)9), /*hidden argument*/NULL);
return;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JTokenWriter::WriteToken(Valve.Newtonsoft.Json.JsonReader,System.Boolean,System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JTokenWriter_WriteToken_m5E90F881800CE4EA35041F27B958F34364B60987 (JTokenWriter_t96B1E9B675DE7CD27F8339C82B785C254918BCEF * __this, JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C * ___reader0, bool ___writeChildren1, bool ___writeDateConstructorAsDate2, bool ___writeComments3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JTokenWriter_WriteToken_m5E90F881800CE4EA35041F27B958F34364B60987_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
JTokenReader_tE3C9B85315EFF6B3CB0796451D8278F1372C6530 * V_0 = NULL;
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * V_1 = NULL;
{
JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C * L_0 = ___reader0;
V_0 = ((JTokenReader_tE3C9B85315EFF6B3CB0796451D8278F1372C6530 *)IsInstClass((RuntimeObject*)L_0, JTokenReader_tE3C9B85315EFF6B3CB0796451D8278F1372C6530_il2cpp_TypeInfo_var));
JTokenReader_tE3C9B85315EFF6B3CB0796451D8278F1372C6530 * L_1 = V_0;
bool L_2 = ___writeChildren1;
bool L_3 = ___writeDateConstructorAsDate2;
bool L_4 = ___writeComments3;
if (!((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((!(((RuntimeObject*)(JTokenReader_tE3C9B85315EFF6B3CB0796451D8278F1372C6530 *)L_1) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0)&(int32_t)L_2))&(int32_t)L_3))&(int32_t)L_4)))
{
goto IL_00b8;
}
}
{
JTokenReader_tE3C9B85315EFF6B3CB0796451D8278F1372C6530 * L_5 = V_0;
NullCheck(L_5);
int32_t L_6 = VirtFuncInvoker0< int32_t >::Invoke(5 /* Valve.Newtonsoft.Json.JsonToken Valve.Newtonsoft.Json.JsonReader::get_TokenType() */, L_5);
if (L_6)
{
goto IL_0028;
}
}
{
JTokenReader_tE3C9B85315EFF6B3CB0796451D8278F1372C6530 * L_7 = V_0;
NullCheck(L_7);
bool L_8 = VirtFuncInvoker0< bool >::Invoke(10 /* System.Boolean Valve.Newtonsoft.Json.JsonReader::Read() */, L_7);
if (L_8)
{
goto IL_0028;
}
}
{
return;
}
IL_0028:
{
JTokenReader_tE3C9B85315EFF6B3CB0796451D8278F1372C6530 * L_9 = V_0;
NullCheck(L_9);
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_10 = JTokenReader_get_CurrentToken_m4D1878533286E1C58BBB83AC78967CFB15619D3B_inline(L_9, /*hidden argument*/NULL);
NullCheck(L_10);
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_11 = VirtFuncInvoker0< JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * >::Invoke(10 /* Valve.Newtonsoft.Json.Linq.JToken Valve.Newtonsoft.Json.Linq.JToken::CloneToken() */, L_10);
V_1 = L_11;
JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * L_12 = __this->get__parent_14();
if (!L_12)
{
goto IL_0082;
}
}
{
JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * L_13 = __this->get__parent_14();
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_14 = V_1;
NullCheck(L_13);
VirtActionInvoker1< RuntimeObject * >::Invoke(56 /* System.Void Valve.Newtonsoft.Json.Linq.JContainer::Add(System.Object) */, L_13, L_14);
JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * L_15 = __this->get__parent_14();
NullCheck(L_15);
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_16 = VirtFuncInvoker0< JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * >::Invoke(14 /* Valve.Newtonsoft.Json.Linq.JToken Valve.Newtonsoft.Json.Linq.JToken::get_Last() */, L_15);
__this->set__current_16(L_16);
JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * L_17 = __this->get__parent_14();
NullCheck(L_17);
int32_t L_18 = VirtFuncInvoker0< int32_t >::Invoke(11 /* Valve.Newtonsoft.Json.Linq.JTokenType Valve.Newtonsoft.Json.Linq.JToken::get_Type() */, L_17);
if ((!(((uint32_t)L_18) == ((uint32_t)4))))
{
goto IL_00b1;
}
}
{
JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * L_19 = __this->get__parent_14();
NullCheck(L_19);
JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * L_20 = JToken_get_Parent_m68142FEB329F72F2258F55D7A790C43E7E823F54_inline(L_19, /*hidden argument*/NULL);
__this->set__parent_14(L_20);
JsonWriter_InternalWriteValue_m6F2EDD7A6AB629F4E65D476CC8273A1DC4473CB2(__this, ((int32_t)11), /*hidden argument*/NULL);
goto IL_00b1;
}
IL_0082:
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_21 = V_1;
__this->set__current_16(L_21);
JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * L_22 = __this->get__token_13();
if (L_22)
{
goto IL_00b1;
}
}
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_23 = __this->get__value_15();
if (L_23)
{
goto IL_00b1;
}
}
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_24 = V_1;
__this->set__token_13(((JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC *)IsInstClass((RuntimeObject*)L_24, JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC_il2cpp_TypeInfo_var)));
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_25 = V_1;
__this->set__value_15(((JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 *)IsInstClass((RuntimeObject*)L_25, JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3_il2cpp_TypeInfo_var)));
}
IL_00b1:
{
JTokenReader_tE3C9B85315EFF6B3CB0796451D8278F1372C6530 * L_26 = V_0;
NullCheck(L_26);
JsonReader_Skip_m48E560129D391CC86CCDEFBB161698BF259F9F20(L_26, /*hidden argument*/NULL);
return;
}
IL_00b8:
{
JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C * L_27 = ___reader0;
bool L_28 = ___writeChildren1;
bool L_29 = ___writeDateConstructorAsDate2;
bool L_30 = ___writeComments3;
JsonWriter_WriteToken_m025EF0952BBFA94D22F78619D21581941FB1AD5A(__this, L_27, L_28, L_29, L_30, /*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 Valve.Newtonsoft.Json.Linq.JValue::.ctor(System.Object,Valve.Newtonsoft.Json.Linq.JTokenType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JValue__ctor_mCB35F856D5396641B4783B5A647B6C0545D9EC18 (JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * __this, RuntimeObject * ___value0, int32_t ___type1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JValue__ctor_mCB35F856D5396641B4783B5A647B6C0545D9EC18_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
JToken__ctor_mFBA3803E336FDC9475CD92C83699183230065165(__this, /*hidden argument*/NULL);
RuntimeObject * L_0 = ___value0;
__this->set__value_14(L_0);
int32_t L_1 = ___type1;
__this->set__valueType_13(L_1);
return;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JValue::.ctor(Valve.Newtonsoft.Json.Linq.JValue)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JValue__ctor_m250481A9F85445244713F31837B372A9C88618FB (JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * __this, JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * ___other0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JValue__ctor_m250481A9F85445244713F31837B372A9C88618FB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_0 = ___other0;
NullCheck(L_0);
RuntimeObject * L_1 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(L_0, /*hidden argument*/NULL);
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_2 = ___other0;
NullCheck(L_2);
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
int32_t L_3 = VirtFuncInvoker0< int32_t >::Invoke(11 /* Valve.Newtonsoft.Json.Linq.JTokenType Valve.Newtonsoft.Json.Linq.JToken::get_Type() */, L_2);
JValue__ctor_mCB35F856D5396641B4783B5A647B6C0545D9EC18(__this, L_1, L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JValue::.ctor(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JValue__ctor_mA1877799B837592DB979A9174AEE2D9521D41985 (JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
Nullable_1_t4FE8EDAD79D2EC3D50B7ED18BE847A12A2306D57 V_0;
memset((&V_0), 0, sizeof(V_0));
{
RuntimeObject * L_0 = ___value0;
il2cpp_codegen_initobj((&V_0), sizeof(Nullable_1_t4FE8EDAD79D2EC3D50B7ED18BE847A12A2306D57 ));
Nullable_1_t4FE8EDAD79D2EC3D50B7ED18BE847A12A2306D57 L_1 = V_0;
RuntimeObject * L_2 = ___value0;
int32_t L_3 = JValue_GetValueType_mFEEF608B99EFB12602AD7C6D030BD8C260EB564D(L_1, L_2, /*hidden argument*/NULL);
JValue__ctor_mCB35F856D5396641B4783B5A647B6C0545D9EC18(__this, L_0, L_3, /*hidden argument*/NULL);
return;
}
}
// System.Boolean Valve.Newtonsoft.Json.Linq.JValue::get_HasValues()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JValue_get_HasValues_m08B0EEDCC36A3A95EAF4DA732D54C5D19977C453 (JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// System.Int32 Valve.Newtonsoft.Json.Linq.JValue::Compare(Valve.Newtonsoft.Json.Linq.JTokenType,System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JValue_Compare_m9E45171FF4562ADE3112F1468C2E0DB9AAEBD9F8 (int32_t ___valueType0, RuntimeObject * ___objA1, RuntimeObject * ___objB2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JValue_Compare_m9E45171FF4562ADE3112F1468C2E0DB9AAEBD9F8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
bool V_1 = false;
bool V_2 = false;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_3 = NULL;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_4 = NULL;
Guid_t V_5;
memset((&V_5), 0, sizeof(V_5));
Guid_t V_6;
memset((&V_6), 0, sizeof(V_6));
Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * V_7 = NULL;
Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * V_8 = NULL;
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 V_9;
memset((&V_9), 0, sizeof(V_9));
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 V_10;
memset((&V_10), 0, sizeof(V_10));
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 V_11;
memset((&V_11), 0, sizeof(V_11));
int64_t V_12 = 0;
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 V_13;
memset((&V_13), 0, sizeof(V_13));
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 V_14;
memset((&V_14), 0, sizeof(V_14));
DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 V_15;
memset((&V_15), 0, sizeof(V_15));
DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 V_16;
memset((&V_16), 0, sizeof(V_16));
DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 V_17;
memset((&V_17), 0, sizeof(V_17));
{
RuntimeObject * L_0 = ___objA1;
if (L_0)
{
goto IL_0008;
}
}
{
RuntimeObject * L_1 = ___objB2;
if (L_1)
{
goto IL_0008;
}
}
{
return 0;
}
IL_0008:
{
RuntimeObject * L_2 = ___objA1;
if (!L_2)
{
goto IL_0010;
}
}
{
RuntimeObject * L_3 = ___objB2;
if (L_3)
{
goto IL_0010;
}
}
{
return 1;
}
IL_0010:
{
RuntimeObject * L_4 = ___objA1;
if (L_4)
{
goto IL_0018;
}
}
{
RuntimeObject * L_5 = ___objB2;
if (!L_5)
{
goto IL_0018;
}
}
{
return (-1);
}
IL_0018:
{
int32_t L_6 = ___valueType0;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)5)))
{
case 0:
{
goto IL_00e9;
}
case 1:
{
goto IL_0059;
}
case 2:
{
goto IL_00e1;
}
case 3:
{
goto IL_00e9;
}
case 4:
{
goto IL_0107;
}
case 5:
{
goto IL_026c;
}
case 6:
{
goto IL_026c;
}
case 7:
{
goto IL_0128;
}
case 8:
{
goto IL_00e9;
}
case 9:
{
goto IL_01a0;
}
case 10:
{
goto IL_01d6;
}
case 11:
{
goto IL_0203;
}
case 12:
{
goto IL_023f;
}
}
}
{
goto IL_026c;
}
IL_0059:
{
RuntimeObject * L_7 = ___objA1;
if (((RuntimeObject *)IsInstSealed((RuntimeObject*)L_7, UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_il2cpp_TypeInfo_var)))
{
goto IL_0079;
}
}
{
RuntimeObject * L_8 = ___objB2;
if (((RuntimeObject *)IsInstSealed((RuntimeObject*)L_8, UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_il2cpp_TypeInfo_var)))
{
goto IL_0079;
}
}
{
RuntimeObject * L_9 = ___objA1;
if (((RuntimeObject *)IsInstSealed((RuntimeObject*)L_9, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_il2cpp_TypeInfo_var)))
{
goto IL_0079;
}
}
{
RuntimeObject * L_10 = ___objB2;
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_10, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_il2cpp_TypeInfo_var)))
{
goto IL_0099;
}
}
IL_0079:
{
RuntimeObject * L_11 = ___objA1;
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_12 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_13 = Convert_ToDecimal_mD8F65E8B251DBE61789CAD032172D089375D1E5B(L_11, L_12, /*hidden argument*/NULL);
V_11 = L_13;
RuntimeObject * L_14 = ___objB2;
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_15 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_16 = Convert_ToDecimal_mD8F65E8B251DBE61789CAD032172D089375D1E5B(L_14, L_15, /*hidden argument*/NULL);
int32_t L_17 = Decimal_CompareTo_mEAA7E4E03BCF1A02CDA8439E8F2F60181D46B30B((Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 *)(&V_11), L_16, /*hidden argument*/NULL);
return L_17;
}
IL_0099:
{
RuntimeObject * L_18 = ___objA1;
if (((RuntimeObject *)IsInstSealed((RuntimeObject*)L_18, Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_il2cpp_TypeInfo_var)))
{
goto IL_00b9;
}
}
{
RuntimeObject * L_19 = ___objB2;
if (((RuntimeObject *)IsInstSealed((RuntimeObject*)L_19, Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_il2cpp_TypeInfo_var)))
{
goto IL_00b9;
}
}
{
RuntimeObject * L_20 = ___objA1;
if (((RuntimeObject *)IsInstSealed((RuntimeObject*)L_20, Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var)))
{
goto IL_00b9;
}
}
{
RuntimeObject * L_21 = ___objB2;
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_21, Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var)))
{
goto IL_00c1;
}
}
IL_00b9:
{
RuntimeObject * L_22 = ___objA1;
RuntimeObject * L_23 = ___objB2;
int32_t L_24 = JValue_CompareFloat_mD063BBA71282EC91F866FB963351E23202A3ED70(L_22, L_23, /*hidden argument*/NULL);
return L_24;
}
IL_00c1:
{
RuntimeObject * L_25 = ___objA1;
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_26 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
int64_t L_27 = Convert_ToInt64_m8964FDE5D82FEC54106DBF35E1F67D70F6E73E29(L_25, L_26, /*hidden argument*/NULL);
V_12 = L_27;
RuntimeObject * L_28 = ___objB2;
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_29 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
int64_t L_30 = Convert_ToInt64_m8964FDE5D82FEC54106DBF35E1F67D70F6E73E29(L_28, L_29, /*hidden argument*/NULL);
int32_t L_31 = Int64_CompareTo_m21E0F72C677E986977303B18D5472487319DCFD2((int64_t*)(&V_12), L_30, /*hidden argument*/NULL);
return L_31;
}
IL_00e1:
{
RuntimeObject * L_32 = ___objA1;
RuntimeObject * L_33 = ___objB2;
int32_t L_34 = JValue_CompareFloat_mD063BBA71282EC91F866FB963351E23202A3ED70(L_32, L_33, /*hidden argument*/NULL);
return L_34;
}
IL_00e9:
{
RuntimeObject * L_35 = ___objA1;
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_36 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
String_t* L_37 = Convert_ToString_m10FC2E5535B944C2DFE83E6D2659122C9408F0FF(L_35, L_36, /*hidden argument*/NULL);
RuntimeObject * L_38 = ___objB2;
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_39 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
String_t* L_40 = Convert_ToString_m10FC2E5535B944C2DFE83E6D2659122C9408F0FF(L_38, L_39, /*hidden argument*/NULL);
V_0 = L_40;
String_t* L_41 = V_0;
int32_t L_42 = String_CompareOrdinal_m172D84EDDE0823F53EAB60857C07EA7F85600068(L_37, L_41, /*hidden argument*/NULL);
return L_42;
}
IL_0107:
{
RuntimeObject * L_43 = ___objA1;
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_44 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
bool L_45 = Convert_ToBoolean_m881535C7C6F8B032F5883E7F18A90C27690FB5E4(L_43, L_44, /*hidden argument*/NULL);
V_1 = L_45;
RuntimeObject * L_46 = ___objB2;
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_47 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
bool L_48 = Convert_ToBoolean_m881535C7C6F8B032F5883E7F18A90C27690FB5E4(L_46, L_47, /*hidden argument*/NULL);
V_2 = L_48;
bool L_49 = V_2;
int32_t L_50 = Boolean_CompareTo_m0646A70387C90DAF7C85AF4234879E31E4422911((bool*)(&V_1), L_49, /*hidden argument*/NULL);
return L_50;
}
IL_0128:
{
RuntimeObject * L_51 = ___objA1;
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_51, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var)))
{
goto IL_016a;
}
}
{
RuntimeObject * L_52 = ___objA1;
V_13 = ((*(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)UnBox(L_52, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var))));
RuntimeObject * L_53 = ___objB2;
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_53, DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_il2cpp_TypeInfo_var)))
{
goto IL_0153;
}
}
{
RuntimeObject * L_54 = ___objB2;
V_15 = ((*(DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 *)((DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 *)UnBox(L_54, DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_il2cpp_TypeInfo_var))));
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_55 = DateTimeOffset_get_DateTime_m5101B7B7920B8C28AB2D5A7E4B8F7C2FAFC2F328((DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 *)(&V_15), /*hidden argument*/NULL);
V_14 = L_55;
goto IL_0160;
}
IL_0153:
{
RuntimeObject * L_56 = ___objB2;
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_57 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_58 = Convert_ToDateTime_m246003CF3103F7DF9D6E817DCEFAE2CF8068862D(L_56, L_57, /*hidden argument*/NULL);
V_14 = L_58;
}
IL_0160:
{
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_59 = V_14;
int32_t L_60 = DateTime_CompareTo_mB538B6524ED249F1A5ED43E00D61F7D9EB3DAD6E((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_13), L_59, /*hidden argument*/NULL);
return L_60;
}
IL_016a:
{
RuntimeObject * L_61 = ___objA1;
V_16 = ((*(DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 *)((DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 *)UnBox(L_61, DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_il2cpp_TypeInfo_var))));
RuntimeObject * L_62 = ___objB2;
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_62, DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_il2cpp_TypeInfo_var)))
{
goto IL_0184;
}
}
{
RuntimeObject * L_63 = ___objB2;
V_17 = ((*(DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 *)((DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 *)UnBox(L_63, DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_il2cpp_TypeInfo_var))));
goto IL_0196;
}
IL_0184:
{
RuntimeObject * L_64 = ___objB2;
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_65 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_66 = Convert_ToDateTime_m246003CF3103F7DF9D6E817DCEFAE2CF8068862D(L_64, L_65, /*hidden argument*/NULL);
DateTimeOffset__ctor_mFD299293EB81B2254A30C665E7613F7C40A10C69((DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 *)(&V_17), L_66, /*hidden argument*/NULL);
}
IL_0196:
{
DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 L_67 = V_17;
int32_t L_68 = DateTimeOffset_CompareTo_mE372597750E856BC3BD7B353C7E33AC3D464CE17((DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 *)(&V_16), L_67, /*hidden argument*/NULL);
return L_68;
}
IL_01a0:
{
RuntimeObject * L_69 = ___objB2;
if (((ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)IsInst((RuntimeObject*)L_69, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var)))
{
goto IL_01b3;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_70 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_70, _stringLiteral5F255333BF86A320AF59411C1D4C877B154F5182, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_70, JValue_Compare_m9E45171FF4562ADE3112F1468C2E0DB9AAEBD9F8_RuntimeMethod_var);
}
IL_01b3:
{
RuntimeObject * L_71 = ___objA1;
V_3 = ((ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)IsInst((RuntimeObject*)L_71, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var));
RuntimeObject * L_72 = ___objB2;
V_4 = ((ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)IsInst((RuntimeObject*)L_72, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_73 = V_3;
if (L_73)
{
goto IL_01c7;
}
}
{
return (-1);
}
IL_01c7:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_74 = V_4;
if (L_74)
{
goto IL_01cd;
}
}
{
return 1;
}
IL_01cd:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_75 = V_3;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_76 = V_4;
int32_t L_77 = MiscellaneousUtils_ByteArrayCompare_m15FC51CFB98AE57CE94C50CB3A8B7E5C4D1ABE56(L_75, L_76, /*hidden argument*/NULL);
return L_77;
}
IL_01d6:
{
RuntimeObject * L_78 = ___objB2;
if (((RuntimeObject *)IsInstSealed((RuntimeObject*)L_78, Guid_t_il2cpp_TypeInfo_var)))
{
goto IL_01e9;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_79 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_79, _stringLiteralE787D38C5A0B8D3F0076CC31CB82C29C048671AB, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_79, JValue_Compare_m9E45171FF4562ADE3112F1468C2E0DB9AAEBD9F8_RuntimeMethod_var);
}
IL_01e9:
{
RuntimeObject * L_80 = ___objA1;
V_5 = ((*(Guid_t *)((Guid_t *)UnBox(L_80, Guid_t_il2cpp_TypeInfo_var))));
RuntimeObject * L_81 = ___objB2;
V_6 = ((*(Guid_t *)((Guid_t *)UnBox(L_81, Guid_t_il2cpp_TypeInfo_var))));
Guid_t L_82 = V_6;
int32_t L_83 = Guid_CompareTo_m85822635D81461BAA94200BF0B3C903E11400996((Guid_t *)(&V_5), L_82, /*hidden argument*/NULL);
return L_83;
}
IL_0203:
{
RuntimeObject * L_84 = ___objB2;
if (((Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E *)IsInstClass((RuntimeObject*)L_84, Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_il2cpp_TypeInfo_var)))
{
goto IL_0216;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_85 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_85, _stringLiteralAEE0600837AAB226A74581FAA002DA85ABD156B1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_85, JValue_Compare_m9E45171FF4562ADE3112F1468C2E0DB9AAEBD9F8_RuntimeMethod_var);
}
IL_0216:
{
RuntimeObject * L_86 = ___objA1;
V_7 = ((Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E *)CastclassClass((RuntimeObject*)L_86, Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_il2cpp_TypeInfo_var));
RuntimeObject * L_87 = ___objB2;
V_8 = ((Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E *)CastclassClass((RuntimeObject*)L_87, Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_il2cpp_TypeInfo_var));
Comparer_1_tC8913CC0230510AB5B82485EAEF003DA0F4B9903 * L_88 = Comparer_1_get_Default_m5C03A395556B2D119E9A28F161C86E4B45946CD8(/*hidden argument*/Comparer_1_get_Default_m5C03A395556B2D119E9A28F161C86E4B45946CD8_RuntimeMethod_var);
Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * L_89 = V_7;
NullCheck(L_89);
String_t* L_90 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_89);
Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * L_91 = V_8;
NullCheck(L_91);
String_t* L_92 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_91);
NullCheck(L_88);
int32_t L_93 = VirtFuncInvoker2< int32_t, String_t*, String_t* >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<System.String>::Compare(!0,!0) */, L_88, L_90, L_92);
return L_93;
}
IL_023f:
{
RuntimeObject * L_94 = ___objB2;
if (((RuntimeObject *)IsInstSealed((RuntimeObject*)L_94, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var)))
{
goto IL_0252;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_95 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_95, _stringLiteralBAF34A2547265FEEA14708F8A1A89708432452A6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_95, JValue_Compare_m9E45171FF4562ADE3112F1468C2E0DB9AAEBD9F8_RuntimeMethod_var);
}
IL_0252:
{
RuntimeObject * L_96 = ___objA1;
V_9 = ((*(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)UnBox(L_96, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var))));
RuntimeObject * L_97 = ___objB2;
V_10 = ((*(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)UnBox(L_97, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var))));
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_98 = V_10;
int32_t L_99 = TimeSpan_CompareTo_mCC797C9F7FF3BC0D7C8401666BDE7DCE676449E3((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)(&V_9), L_98, /*hidden argument*/NULL);
return L_99;
}
IL_026c:
{
int32_t L_100 = ___valueType0;
int32_t L_101 = L_100;
RuntimeObject * L_102 = Box(JTokenType_t43765D0A61D4F44B41AA73D201C761E37F4DDDAD_il2cpp_TypeInfo_var, &L_101);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_103 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
int32_t L_104 = ___valueType0;
int32_t L_105 = L_104;
RuntimeObject * L_106 = Box(JTokenType_t43765D0A61D4F44B41AA73D201C761E37F4DDDAD_il2cpp_TypeInfo_var, &L_105);
String_t* L_107 = StringUtils_FormatWith_mA244260995FC801D82F22EC897F3F8BEB8649583(_stringLiteralB3FE7D3167A090771A7DFCBE12BCAD8A8E8CD660, L_103, L_106, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_108 = MiscellaneousUtils_CreateArgumentOutOfRangeException_m8E4A0A0A3D556B8811877FEB803AE6CCDD3DE9A0(_stringLiteral2B6F36327A145273E103DDA2D72D8DF3D20FCF4F, L_102, L_107, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_108, JValue_Compare_m9E45171FF4562ADE3112F1468C2E0DB9AAEBD9F8_RuntimeMethod_var);
}
}
// System.Int32 Valve.Newtonsoft.Json.Linq.JValue::CompareFloat(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JValue_CompareFloat_mD063BBA71282EC91F866FB963351E23202A3ED70 (RuntimeObject * ___objA0, RuntimeObject * ___objB1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JValue_CompareFloat_mD063BBA71282EC91F866FB963351E23202A3ED70_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
double V_0 = 0.0;
double V_1 = 0.0;
{
RuntimeObject * L_0 = ___objA0;
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_1 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
double L_2 = Convert_ToDouble_m053A47D87C59CA7A87D4E67E5E06368D775D7651(L_0, L_1, /*hidden argument*/NULL);
V_0 = L_2;
RuntimeObject * L_3 = ___objB1;
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_4 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
double L_5 = Convert_ToDouble_m053A47D87C59CA7A87D4E67E5E06368D775D7651(L_3, L_4, /*hidden argument*/NULL);
V_1 = L_5;
double L_6 = V_0;
double L_7 = V_1;
bool L_8 = MathUtils_ApproxEquals_mF6A8D6AA3AF08A6756A6EAF83C151123375CA7B2(L_6, L_7, /*hidden argument*/NULL);
if (!L_8)
{
goto IL_0023;
}
}
{
return 0;
}
IL_0023:
{
double L_9 = V_1;
int32_t L_10 = Double_CompareTo_m569906D5264ACFD3D0D5A1BAD116DC2CBCA0F4B1((double*)(&V_0), L_9, /*hidden argument*/NULL);
return L_10;
}
}
// Valve.Newtonsoft.Json.Linq.JToken Valve.Newtonsoft.Json.Linq.JValue::CloneToken()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * JValue_CloneToken_m2273432FDE0AA6A39FB3A273B5B7ABE80C6213C1 (JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JValue_CloneToken_m2273432FDE0AA6A39FB3A273B5B7ABE80C6213C1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_0 = (JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 *)il2cpp_codegen_object_new(JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3_il2cpp_TypeInfo_var);
JValue__ctor_m250481A9F85445244713F31837B372A9C88618FB(L_0, __this, /*hidden argument*/NULL);
return L_0;
}
}
// Valve.Newtonsoft.Json.Linq.JValue Valve.Newtonsoft.Json.Linq.JValue::CreateComment(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * JValue_CreateComment_mB22EE156BA4E18B35393ED2634F98E19175B524A (String_t* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JValue_CreateComment_mB22EE156BA4E18B35393ED2634F98E19175B524A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___value0;
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_1 = (JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 *)il2cpp_codegen_object_new(JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3_il2cpp_TypeInfo_var);
JValue__ctor_mCB35F856D5396641B4783B5A647B6C0545D9EC18(L_1, L_0, 5, /*hidden argument*/NULL);
return L_1;
}
}
// Valve.Newtonsoft.Json.Linq.JValue Valve.Newtonsoft.Json.Linq.JValue::CreateNull()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * JValue_CreateNull_m3CCD3BCA725D2424F3C62FA811D56AD35DCD1066 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JValue_CreateNull_m3CCD3BCA725D2424F3C62FA811D56AD35DCD1066_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_0 = (JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 *)il2cpp_codegen_object_new(JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3_il2cpp_TypeInfo_var);
JValue__ctor_mCB35F856D5396641B4783B5A647B6C0545D9EC18(L_0, NULL, ((int32_t)10), /*hidden argument*/NULL);
return L_0;
}
}
// Valve.Newtonsoft.Json.Linq.JValue Valve.Newtonsoft.Json.Linq.JValue::CreateUndefined()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * JValue_CreateUndefined_m692597F85235F264FFE2608A6AF1C5789A2E0092 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JValue_CreateUndefined_m692597F85235F264FFE2608A6AF1C5789A2E0092_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_0 = (JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 *)il2cpp_codegen_object_new(JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3_il2cpp_TypeInfo_var);
JValue__ctor_mCB35F856D5396641B4783B5A647B6C0545D9EC18(L_0, NULL, ((int32_t)11), /*hidden argument*/NULL);
return L_0;
}
}
// Valve.Newtonsoft.Json.Linq.JTokenType Valve.Newtonsoft.Json.Linq.JValue::GetValueType(System.Nullable`1<Valve.Newtonsoft.Json.Linq.JTokenType>,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JValue_GetValueType_mFEEF608B99EFB12602AD7C6D030BD8C260EB564D (Nullable_1_t4FE8EDAD79D2EC3D50B7ED18BE847A12A2306D57 ___current0, RuntimeObject * ___value1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JValue_GetValueType_mFEEF608B99EFB12602AD7C6D030BD8C260EB564D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___value1;
if (L_0)
{
goto IL_0006;
}
}
{
return (int32_t)(((int32_t)10));
}
IL_0006:
{
RuntimeObject * L_1 = ___value1;
IL2CPP_RUNTIME_CLASS_INIT(DBNull_t7400E04939C2C29699B389B106997892BF53A8E5_il2cpp_TypeInfo_var);
DBNull_t7400E04939C2C29699B389B106997892BF53A8E5 * L_2 = ((DBNull_t7400E04939C2C29699B389B106997892BF53A8E5_StaticFields*)il2cpp_codegen_static_fields_for(DBNull_t7400E04939C2C29699B389B106997892BF53A8E5_il2cpp_TypeInfo_var))->get_Value_0();
if ((!(((RuntimeObject*)(RuntimeObject *)L_1) == ((RuntimeObject*)(DBNull_t7400E04939C2C29699B389B106997892BF53A8E5 *)L_2))))
{
goto IL_0011;
}
}
{
return (int32_t)(((int32_t)10));
}
IL_0011:
{
RuntimeObject * L_3 = ___value1;
if (!((String_t*)IsInstSealed((RuntimeObject*)L_3, String_t_il2cpp_TypeInfo_var)))
{
goto IL_0020;
}
}
{
Nullable_1_t4FE8EDAD79D2EC3D50B7ED18BE847A12A2306D57 L_4 = ___current0;
int32_t L_5 = JValue_GetStringValueType_mC39E95745022629EEB912949D0C5B03D314059EC(L_4, /*hidden argument*/NULL);
return L_5;
}
IL_0020:
{
RuntimeObject * L_6 = ___value1;
if (((RuntimeObject *)IsInstSealed((RuntimeObject*)L_6, Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_il2cpp_TypeInfo_var)))
{
goto IL_0060;
}
}
{
RuntimeObject * L_7 = ___value1;
if (((RuntimeObject *)IsInstSealed((RuntimeObject*)L_7, Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var)))
{
goto IL_0060;
}
}
{
RuntimeObject * L_8 = ___value1;
if (((RuntimeObject *)IsInstSealed((RuntimeObject*)L_8, Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_il2cpp_TypeInfo_var)))
{
goto IL_0060;
}
}
{
RuntimeObject * L_9 = ___value1;
if (((RuntimeObject *)IsInstSealed((RuntimeObject*)L_9, SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_il2cpp_TypeInfo_var)))
{
goto IL_0060;
}
}
{
RuntimeObject * L_10 = ___value1;
if (((RuntimeObject *)IsInstSealed((RuntimeObject*)L_10, UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_il2cpp_TypeInfo_var)))
{
goto IL_0060;
}
}
{
RuntimeObject * L_11 = ___value1;
if (((RuntimeObject *)IsInstSealed((RuntimeObject*)L_11, UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_il2cpp_TypeInfo_var)))
{
goto IL_0060;
}
}
{
RuntimeObject * L_12 = ___value1;
if (((RuntimeObject *)IsInstSealed((RuntimeObject*)L_12, UInt16_tAE45CEF73BF720100519F6867F32145D075F928E_il2cpp_TypeInfo_var)))
{
goto IL_0060;
}
}
{
RuntimeObject * L_13 = ___value1;
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_13, Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_il2cpp_TypeInfo_var)))
{
goto IL_0062;
}
}
IL_0060:
{
return (int32_t)(6);
}
IL_0062:
{
RuntimeObject * L_14 = ___value1;
if (!((Enum_t2AF27C02B8653AE29442467390005ABC74D8F521 *)IsInstClass((RuntimeObject*)L_14, Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var)))
{
goto IL_006c;
}
}
{
return (int32_t)(6);
}
IL_006c:
{
RuntimeObject * L_15 = ___value1;
if (((RuntimeObject *)IsInstSealed((RuntimeObject*)L_15, Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var)))
{
goto IL_0084;
}
}
{
RuntimeObject * L_16 = ___value1;
if (((RuntimeObject *)IsInstSealed((RuntimeObject*)L_16, Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_il2cpp_TypeInfo_var)))
{
goto IL_0084;
}
}
{
RuntimeObject * L_17 = ___value1;
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_17, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_il2cpp_TypeInfo_var)))
{
goto IL_0086;
}
}
IL_0084:
{
return (int32_t)(7);
}
IL_0086:
{
RuntimeObject * L_18 = ___value1;
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_18, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var)))
{
goto IL_0091;
}
}
{
return (int32_t)(((int32_t)12));
}
IL_0091:
{
RuntimeObject * L_19 = ___value1;
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_19, DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_il2cpp_TypeInfo_var)))
{
goto IL_009c;
}
}
{
return (int32_t)(((int32_t)12));
}
IL_009c:
{
RuntimeObject * L_20 = ___value1;
if (!((ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)IsInst((RuntimeObject*)L_20, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var)))
{
goto IL_00a7;
}
}
{
return (int32_t)(((int32_t)14));
}
IL_00a7:
{
RuntimeObject * L_21 = ___value1;
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_21, Boolean_tB53F6830F670160873277339AA58F15CAED4399C_il2cpp_TypeInfo_var)))
{
goto IL_00b2;
}
}
{
return (int32_t)(((int32_t)9));
}
IL_00b2:
{
RuntimeObject * L_22 = ___value1;
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_22, Guid_t_il2cpp_TypeInfo_var)))
{
goto IL_00bd;
}
}
{
return (int32_t)(((int32_t)15));
}
IL_00bd:
{
RuntimeObject * L_23 = ___value1;
if (!((Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E *)IsInstClass((RuntimeObject*)L_23, Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_il2cpp_TypeInfo_var)))
{
goto IL_00c8;
}
}
{
return (int32_t)(((int32_t)16));
}
IL_00c8:
{
RuntimeObject * L_24 = ___value1;
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_24, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var)))
{
goto IL_00d3;
}
}
{
return (int32_t)(((int32_t)17));
}
IL_00d3:
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_25 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
RuntimeObject * L_26 = ___value1;
NullCheck(L_26);
Type_t * L_27 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_26, /*hidden argument*/NULL);
String_t* L_28 = StringUtils_FormatWith_mA244260995FC801D82F22EC897F3F8BEB8649583(_stringLiteralFF89F04D2BADD28D2F5441EF87D071138DB4A7D3, L_25, L_27, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_29 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_29, L_28, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_29, JValue_GetValueType_mFEEF608B99EFB12602AD7C6D030BD8C260EB564D_RuntimeMethod_var);
}
}
// Valve.Newtonsoft.Json.Linq.JTokenType Valve.Newtonsoft.Json.Linq.JValue::GetStringValueType(System.Nullable`1<Valve.Newtonsoft.Json.Linq.JTokenType>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JValue_GetStringValueType_mC39E95745022629EEB912949D0C5B03D314059EC (Nullable_1_t4FE8EDAD79D2EC3D50B7ED18BE847A12A2306D57 ___current0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JValue_GetStringValueType_mC39E95745022629EEB912949D0C5B03D314059EC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
bool L_0 = Nullable_1_get_HasValue_m5AAEB2419E1515393FE6C3CE4C92E04D6B545589_inline((Nullable_1_t4FE8EDAD79D2EC3D50B7ED18BE847A12A2306D57 *)(&___current0), /*hidden argument*/Nullable_1_get_HasValue_m5AAEB2419E1515393FE6C3CE4C92E04D6B545589_RuntimeMethod_var);
if (L_0)
{
goto IL_000b;
}
}
{
return (int32_t)(8);
}
IL_000b:
{
int32_t L_1 = Nullable_1_GetValueOrDefault_mAD5954CC09B0C1B1E228F9B5295A2EA6B6EAF72E_inline((Nullable_1_t4FE8EDAD79D2EC3D50B7ED18BE847A12A2306D57 *)(&___current0), /*hidden argument*/Nullable_1_GetValueOrDefault_mAD5954CC09B0C1B1E228F9B5295A2EA6B6EAF72E_RuntimeMethod_var);
V_0 = L_1;
int32_t L_2 = V_0;
if ((((int32_t)L_2) == ((int32_t)5)))
{
goto IL_0020;
}
}
{
int32_t L_3 = V_0;
if ((((int32_t)L_3) == ((int32_t)8)))
{
goto IL_0020;
}
}
{
int32_t L_4 = V_0;
if ((!(((uint32_t)L_4) == ((uint32_t)((int32_t)13)))))
{
goto IL_0028;
}
}
IL_0020:
{
int32_t L_5 = Nullable_1_GetValueOrDefault_mAD5954CC09B0C1B1E228F9B5295A2EA6B6EAF72E_inline((Nullable_1_t4FE8EDAD79D2EC3D50B7ED18BE847A12A2306D57 *)(&___current0), /*hidden argument*/Nullable_1_GetValueOrDefault_mAD5954CC09B0C1B1E228F9B5295A2EA6B6EAF72E_RuntimeMethod_var);
return L_5;
}
IL_0028:
{
return (int32_t)(8);
}
}
// Valve.Newtonsoft.Json.Linq.JTokenType Valve.Newtonsoft.Json.Linq.JValue::get_Type()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JValue_get_Type_mE7E821CEBFF298EEA00ED78C9B9F644E41917232 (JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get__valueType_13();
return L_0;
}
}
// System.Object Valve.Newtonsoft.Json.Linq.JValue::get_Value()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD (JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = __this->get__value_14();
return L_0;
}
}
// System.Void Valve.Newtonsoft.Json.Linq.JValue::WriteTo(Valve.Newtonsoft.Json.JsonWriter,Valve.Newtonsoft.Json.JsonConverter[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JValue_WriteTo_mEC2A0D7445520E6306E474D80C771E0B18EB4755 (JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * __this, JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * ___writer0, JsonConverterU5BU5D_tFCEA4D4687200F08D8F41AFF4CDC7EE5E08AACAB* ___converters1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JValue_WriteTo_mEC2A0D7445520E6306E474D80C771E0B18EB4755_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * V_0 = NULL;
int32_t V_1 = 0;
Nullable_1_t98453FD73999D83935C31555C4C67329F550B15D V_2;
memset((&V_2), 0, sizeof(V_2));
Nullable_1_tA5F97AD8281B6EDEE6731D95047BA50C9996309E V_3;
memset((&V_3), 0, sizeof(V_3));
JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * G_B10_0 = NULL;
JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * G_B9_0 = NULL;
String_t* G_B11_0 = NULL;
JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * G_B11_1 = NULL;
JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * G_B14_0 = NULL;
JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * G_B13_0 = NULL;
String_t* G_B15_0 = NULL;
JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * G_B15_1 = NULL;
JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * G_B34_0 = NULL;
JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * G_B33_0 = NULL;
String_t* G_B35_0 = NULL;
JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * G_B35_1 = NULL;
JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * G_B43_0 = NULL;
JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * G_B42_0 = NULL;
Nullable_1_t98453FD73999D83935C31555C4C67329F550B15D G_B44_0;
memset((&G_B44_0), 0, sizeof(G_B44_0));
JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * G_B44_1 = NULL;
JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * G_B47_0 = NULL;
JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * G_B46_0 = NULL;
Nullable_1_tA5F97AD8281B6EDEE6731D95047BA50C9996309E G_B48_0;
memset((&G_B48_0), 0, sizeof(G_B48_0));
JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * G_B48_1 = NULL;
{
JsonConverterU5BU5D_tFCEA4D4687200F08D8F41AFF4CDC7EE5E08AACAB* L_0 = ___converters1;
if (!L_0)
{
goto IL_003f;
}
}
{
JsonConverterU5BU5D_tFCEA4D4687200F08D8F41AFF4CDC7EE5E08AACAB* L_1 = ___converters1;
NullCheck(L_1);
if (!(((RuntimeArray*)L_1)->max_length))
{
goto IL_003f;
}
}
{
RuntimeObject * L_2 = __this->get__value_14();
if (!L_2)
{
goto IL_003f;
}
}
{
JsonConverterU5BU5D_tFCEA4D4687200F08D8F41AFF4CDC7EE5E08AACAB* L_3 = ___converters1;
RuntimeObject * L_4 = __this->get__value_14();
NullCheck(L_4);
Type_t * L_5 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_4, /*hidden argument*/NULL);
JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * L_6 = JsonSerializer_GetMatchingConverter_mAB5315608093639E8A4F5518F05B9AE0FCAA9051((RuntimeObject*)(RuntimeObject*)L_3, L_5, /*hidden argument*/NULL);
V_0 = L_6;
JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * L_7 = V_0;
if (!L_7)
{
goto IL_003f;
}
}
{
JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * L_8 = V_0;
NullCheck(L_8);
bool L_9 = VirtFuncInvoker0< bool >::Invoke(8 /* System.Boolean Valve.Newtonsoft.Json.JsonConverter::get_CanWrite() */, L_8);
if (!L_9)
{
goto IL_003f;
}
}
{
JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * L_10 = V_0;
JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * L_11 = ___writer0;
RuntimeObject * L_12 = __this->get__value_14();
JsonSerializer_t1D5D385AB5641E8958FC0E6ECB498B4DC45BC4D4 * L_13 = JsonSerializer_CreateDefault_m50084EFB23A5CFFA3C640E75BA8504FE33F5A97A(/*hidden argument*/NULL);
NullCheck(L_10);
VirtActionInvoker3< JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E *, RuntimeObject *, JsonSerializer_t1D5D385AB5641E8958FC0E6ECB498B4DC45BC4D4 * >::Invoke(4 /* System.Void Valve.Newtonsoft.Json.JsonConverter::WriteJson(Valve.Newtonsoft.Json.JsonWriter,System.Object,Valve.Newtonsoft.Json.JsonSerializer) */, L_10, L_11, L_12, L_13);
return;
}
IL_003f:
{
int32_t L_14 = __this->get__valueType_13();
V_1 = L_14;
int32_t L_15 = V_1;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_15, (int32_t)5)))
{
case 0:
{
goto IL_0087;
}
case 1:
{
goto IL_00cf;
}
case 2:
{
goto IL_0143;
}
case 3:
{
goto IL_01b7;
}
case 4:
{
goto IL_01d4;
}
case 5:
{
goto IL_00c1;
}
case 6:
{
goto IL_00c8;
}
case 7:
{
goto IL_01eb;
}
case 8:
{
goto IL_00a4;
}
case 9:
{
goto IL_0221;
}
case 10:
{
goto IL_0233;
}
case 11:
{
goto IL_027d;
}
case 12:
{
goto IL_0258;
}
}
}
{
goto IL_028f;
}
IL_0087:
{
JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * L_16 = ___writer0;
RuntimeObject * L_17 = __this->get__value_14();
G_B9_0 = L_16;
if (L_17)
{
G_B10_0 = L_16;
goto IL_0093;
}
}
{
G_B11_0 = ((String_t*)(NULL));
G_B11_1 = G_B9_0;
goto IL_009e;
}
IL_0093:
{
RuntimeObject * L_18 = __this->get__value_14();
NullCheck(L_18);
String_t* L_19 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_18);
G_B11_0 = L_19;
G_B11_1 = G_B10_0;
}
IL_009e:
{
NullCheck(G_B11_1);
VirtActionInvoker1< String_t* >::Invoke(62 /* System.Void Valve.Newtonsoft.Json.JsonWriter::WriteComment(System.String) */, G_B11_1, G_B11_0);
return;
}
IL_00a4:
{
JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * L_20 = ___writer0;
RuntimeObject * L_21 = __this->get__value_14();
G_B13_0 = L_20;
if (L_21)
{
G_B14_0 = L_20;
goto IL_00b0;
}
}
{
G_B15_0 = ((String_t*)(NULL));
G_B15_1 = G_B13_0;
goto IL_00bb;
}
IL_00b0:
{
RuntimeObject * L_22 = __this->get__value_14();
NullCheck(L_22);
String_t* L_23 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_22);
G_B15_0 = L_23;
G_B15_1 = G_B14_0;
}
IL_00bb:
{
NullCheck(G_B15_1);
VirtActionInvoker1< String_t* >::Invoke(24 /* System.Void Valve.Newtonsoft.Json.JsonWriter::WriteRawValue(System.String) */, G_B15_1, G_B15_0);
return;
}
IL_00c1:
{
JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * L_24 = ___writer0;
NullCheck(L_24);
VirtActionInvoker0::Invoke(21 /* System.Void Valve.Newtonsoft.Json.JsonWriter::WriteNull() */, L_24);
return;
}
IL_00c8:
{
JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * L_25 = ___writer0;
NullCheck(L_25);
VirtActionInvoker0::Invoke(22 /* System.Void Valve.Newtonsoft.Json.JsonWriter::WriteUndefined() */, L_25);
return;
}
IL_00cf:
{
RuntimeObject * L_26 = __this->get__value_14();
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_26, Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var)))
{
goto IL_00ee;
}
}
{
JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * L_27 = ___writer0;
RuntimeObject * L_28 = __this->get__value_14();
NullCheck(L_27);
VirtActionInvoker1< int32_t >::Invoke(26 /* System.Void Valve.Newtonsoft.Json.JsonWriter::WriteValue(System.Int32) */, L_27, ((*(int32_t*)((int32_t*)UnBox(L_28, Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var)))));
return;
}
IL_00ee:
{
RuntimeObject * L_29 = __this->get__value_14();
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_29, Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_il2cpp_TypeInfo_var)))
{
goto IL_010d;
}
}
{
JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * L_30 = ___writer0;
RuntimeObject * L_31 = __this->get__value_14();
NullCheck(L_30);
VirtActionInvoker1< int64_t >::Invoke(28 /* System.Void Valve.Newtonsoft.Json.JsonWriter::WriteValue(System.Int64) */, L_30, ((*(int64_t*)((int64_t*)UnBox(L_31, Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_il2cpp_TypeInfo_var)))));
return;
}
IL_010d:
{
RuntimeObject * L_32 = __this->get__value_14();
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_32, UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_il2cpp_TypeInfo_var)))
{
goto IL_012c;
}
}
{
JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * L_33 = ___writer0;
RuntimeObject * L_34 = __this->get__value_14();
NullCheck(L_33);
VirtActionInvoker1< uint64_t >::Invoke(29 /* System.Void Valve.Newtonsoft.Json.JsonWriter::WriteValue(System.UInt64) */, L_33, ((*(uint64_t*)((uint64_t*)UnBox(L_34, UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_il2cpp_TypeInfo_var)))));
return;
}
IL_012c:
{
JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * L_35 = ___writer0;
RuntimeObject * L_36 = __this->get__value_14();
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_37 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
int64_t L_38 = Convert_ToInt64_m8964FDE5D82FEC54106DBF35E1F67D70F6E73E29(L_36, L_37, /*hidden argument*/NULL);
NullCheck(L_35);
VirtActionInvoker1< int64_t >::Invoke(28 /* System.Void Valve.Newtonsoft.Json.JsonWriter::WriteValue(System.Int64) */, L_35, L_38);
return;
}
IL_0143:
{
RuntimeObject * L_39 = __this->get__value_14();
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_39, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_il2cpp_TypeInfo_var)))
{
goto IL_0162;
}
}
{
JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * L_40 = ___writer0;
RuntimeObject * L_41 = __this->get__value_14();
NullCheck(L_40);
VirtActionInvoker1< Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 >::Invoke(38 /* System.Void Valve.Newtonsoft.Json.JsonWriter::WriteValue(System.Decimal) */, L_40, ((*(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 *)((Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 *)UnBox(L_41, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_il2cpp_TypeInfo_var)))));
return;
}
IL_0162:
{
RuntimeObject * L_42 = __this->get__value_14();
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_42, Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var)))
{
goto IL_0181;
}
}
{
JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * L_43 = ___writer0;
RuntimeObject * L_44 = __this->get__value_14();
NullCheck(L_43);
VirtActionInvoker1< double >::Invoke(31 /* System.Void Valve.Newtonsoft.Json.JsonWriter::WriteValue(System.Double) */, L_43, ((*(double*)((double*)UnBox(L_44, Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var)))));
return;
}
IL_0181:
{
RuntimeObject * L_45 = __this->get__value_14();
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_45, Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_il2cpp_TypeInfo_var)))
{
goto IL_01a0;
}
}
{
JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * L_46 = ___writer0;
RuntimeObject * L_47 = __this->get__value_14();
NullCheck(L_46);
VirtActionInvoker1< float >::Invoke(30 /* System.Void Valve.Newtonsoft.Json.JsonWriter::WriteValue(System.Single) */, L_46, ((*(float*)((float*)UnBox(L_47, Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_il2cpp_TypeInfo_var)))));
return;
}
IL_01a0:
{
JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * L_48 = ___writer0;
RuntimeObject * L_49 = __this->get__value_14();
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_50 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
double L_51 = Convert_ToDouble_m053A47D87C59CA7A87D4E67E5E06368D775D7651(L_49, L_50, /*hidden argument*/NULL);
NullCheck(L_48);
VirtActionInvoker1< double >::Invoke(31 /* System.Void Valve.Newtonsoft.Json.JsonWriter::WriteValue(System.Double) */, L_48, L_51);
return;
}
IL_01b7:
{
JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * L_52 = ___writer0;
RuntimeObject * L_53 = __this->get__value_14();
G_B33_0 = L_52;
if (L_53)
{
G_B34_0 = L_52;
goto IL_01c3;
}
}
{
G_B35_0 = ((String_t*)(NULL));
G_B35_1 = G_B33_0;
goto IL_01ce;
}
IL_01c3:
{
RuntimeObject * L_54 = __this->get__value_14();
NullCheck(L_54);
String_t* L_55 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_54);
G_B35_0 = L_55;
G_B35_1 = G_B34_0;
}
IL_01ce:
{
NullCheck(G_B35_1);
VirtActionInvoker1< String_t* >::Invoke(25 /* System.Void Valve.Newtonsoft.Json.JsonWriter::WriteValue(System.String) */, G_B35_1, G_B35_0);
return;
}
IL_01d4:
{
JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * L_56 = ___writer0;
RuntimeObject * L_57 = __this->get__value_14();
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_58 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
bool L_59 = Convert_ToBoolean_m881535C7C6F8B032F5883E7F18A90C27690FB5E4(L_57, L_58, /*hidden argument*/NULL);
NullCheck(L_56);
VirtActionInvoker1< bool >::Invoke(32 /* System.Void Valve.Newtonsoft.Json.JsonWriter::WriteValue(System.Boolean) */, L_56, L_59);
return;
}
IL_01eb:
{
RuntimeObject * L_60 = __this->get__value_14();
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_60, DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_il2cpp_TypeInfo_var)))
{
goto IL_020a;
}
}
{
JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * L_61 = ___writer0;
RuntimeObject * L_62 = __this->get__value_14();
NullCheck(L_61);
VirtActionInvoker1< DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 >::Invoke(40 /* System.Void Valve.Newtonsoft.Json.JsonWriter::WriteValue(System.DateTimeOffset) */, L_61, ((*(DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 *)((DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 *)UnBox(L_62, DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_il2cpp_TypeInfo_var)))));
return;
}
IL_020a:
{
JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * L_63 = ___writer0;
RuntimeObject * L_64 = __this->get__value_14();
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_65 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_66 = Convert_ToDateTime_m246003CF3103F7DF9D6E817DCEFAE2CF8068862D(L_64, L_65, /*hidden argument*/NULL);
NullCheck(L_63);
VirtActionInvoker1< DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 >::Invoke(39 /* System.Void Valve.Newtonsoft.Json.JsonWriter::WriteValue(System.DateTime) */, L_63, L_66);
return;
}
IL_0221:
{
JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * L_67 = ___writer0;
RuntimeObject * L_68 = __this->get__value_14();
NullCheck(L_67);
VirtActionInvoker1< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(60 /* System.Void Valve.Newtonsoft.Json.JsonWriter::WriteValue(System.Byte[]) */, L_67, ((ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)Castclass((RuntimeObject*)L_68, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var)));
return;
}
IL_0233:
{
JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * L_69 = ___writer0;
RuntimeObject * L_70 = __this->get__value_14();
G_B42_0 = L_69;
if (L_70)
{
G_B43_0 = L_69;
goto IL_0247;
}
}
{
il2cpp_codegen_initobj((&V_2), sizeof(Nullable_1_t98453FD73999D83935C31555C4C67329F550B15D ));
Nullable_1_t98453FD73999D83935C31555C4C67329F550B15D L_71 = V_2;
G_B44_0 = L_71;
G_B44_1 = G_B42_0;
goto IL_0252;
}
IL_0247:
{
RuntimeObject * L_72 = __this->get__value_14();
void* L_73 = alloca(sizeof(Nullable_1_t98453FD73999D83935C31555C4C67329F550B15D ));
UnBoxNullable(L_72, Guid_t_il2cpp_TypeInfo_var, L_73);
G_B44_0 = ((*(Nullable_1_t98453FD73999D83935C31555C4C67329F550B15D *)((Nullable_1_t98453FD73999D83935C31555C4C67329F550B15D *)L_73)));
G_B44_1 = G_B43_0;
}
IL_0252:
{
NullCheck(G_B44_1);
VirtActionInvoker1< Nullable_1_t98453FD73999D83935C31555C4C67329F550B15D >::Invoke(58 /* System.Void Valve.Newtonsoft.Json.JsonWriter::WriteValue(System.Nullable`1<System.Guid>) */, G_B44_1, G_B44_0);
return;
}
IL_0258:
{
JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * L_74 = ___writer0;
RuntimeObject * L_75 = __this->get__value_14();
G_B46_0 = L_74;
if (L_75)
{
G_B47_0 = L_74;
goto IL_026c;
}
}
{
il2cpp_codegen_initobj((&V_3), sizeof(Nullable_1_tA5F97AD8281B6EDEE6731D95047BA50C9996309E ));
Nullable_1_tA5F97AD8281B6EDEE6731D95047BA50C9996309E L_76 = V_3;
G_B48_0 = L_76;
G_B48_1 = G_B46_0;
goto IL_0277;
}
IL_026c:
{
RuntimeObject * L_77 = __this->get__value_14();
void* L_78 = alloca(sizeof(Nullable_1_tA5F97AD8281B6EDEE6731D95047BA50C9996309E ));
UnBoxNullable(L_77, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var, L_78);
G_B48_0 = ((*(Nullable_1_tA5F97AD8281B6EDEE6731D95047BA50C9996309E *)((Nullable_1_tA5F97AD8281B6EDEE6731D95047BA50C9996309E *)L_78)));
G_B48_1 = G_B47_0;
}
IL_0277:
{
NullCheck(G_B48_1);
VirtActionInvoker1< Nullable_1_tA5F97AD8281B6EDEE6731D95047BA50C9996309E >::Invoke(59 /* System.Void Valve.Newtonsoft.Json.JsonWriter::WriteValue(System.Nullable`1<System.TimeSpan>) */, G_B48_1, G_B48_0);
return;
}
IL_027d:
{
JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * L_79 = ___writer0;
RuntimeObject * L_80 = __this->get__value_14();
NullCheck(L_79);
VirtActionInvoker1< Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * >::Invoke(61 /* System.Void Valve.Newtonsoft.Json.JsonWriter::WriteValue(System.Uri) */, L_79, ((Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E *)CastclassClass((RuntimeObject*)L_80, Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_il2cpp_TypeInfo_var)));
return;
}
IL_028f:
{
int32_t L_81 = __this->get__valueType_13();
int32_t L_82 = L_81;
RuntimeObject * L_83 = Box(JTokenType_t43765D0A61D4F44B41AA73D201C761E37F4DDDAD_il2cpp_TypeInfo_var, &L_82);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_84 = MiscellaneousUtils_CreateArgumentOutOfRangeException_m8E4A0A0A3D556B8811877FEB803AE6CCDD3DE9A0(_stringLiteralB6E53B8990B143D1588433EF556BAE42F448E3E7, L_83, _stringLiteral93BEA5CB42F89A1B142C898A8FBBB47B9AC5D4A8, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_84, JValue_WriteTo_mEC2A0D7445520E6306E474D80C771E0B18EB4755_RuntimeMethod_var);
}
}
// System.Boolean Valve.Newtonsoft.Json.Linq.JValue::ValuesEquals(Valve.Newtonsoft.Json.Linq.JValue,Valve.Newtonsoft.Json.Linq.JValue)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JValue_ValuesEquals_m0B2F3E5286EE2759AB8D01C81EF45D197592C38A (JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * ___v10, JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * ___v21, const RuntimeMethod* method)
{
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_0 = ___v10;
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_1 = ___v21;
if ((((RuntimeObject*)(JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 *)L_0) == ((RuntimeObject*)(JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 *)L_1)))
{
goto IL_002f;
}
}
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_2 = ___v10;
NullCheck(L_2);
int32_t L_3 = L_2->get__valueType_13();
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_4 = ___v21;
NullCheck(L_4);
int32_t L_5 = L_4->get__valueType_13();
if ((!(((uint32_t)L_3) == ((uint32_t)L_5))))
{
goto IL_002d;
}
}
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_6 = ___v10;
NullCheck(L_6);
int32_t L_7 = L_6->get__valueType_13();
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_8 = ___v10;
NullCheck(L_8);
RuntimeObject * L_9 = L_8->get__value_14();
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_10 = ___v21;
NullCheck(L_10);
RuntimeObject * L_11 = L_10->get__value_14();
int32_t L_12 = JValue_Compare_m9E45171FF4562ADE3112F1468C2E0DB9AAEBD9F8(L_7, L_9, L_11, /*hidden argument*/NULL);
return (bool)((((int32_t)L_12) == ((int32_t)0))? 1 : 0);
}
IL_002d:
{
return (bool)0;
}
IL_002f:
{
return (bool)1;
}
}
// System.Boolean Valve.Newtonsoft.Json.Linq.JValue::Equals(Valve.Newtonsoft.Json.Linq.JValue)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JValue_Equals_m17BFD844D67EFBDFE8DCA5E992F4C1B5C3795A15 (JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * __this, JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * ___other0, const RuntimeMethod* method)
{
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_0 = ___other0;
if (L_0)
{
goto IL_0005;
}
}
{
return (bool)0;
}
IL_0005:
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_1 = ___other0;
bool L_2 = JValue_ValuesEquals_m0B2F3E5286EE2759AB8D01C81EF45D197592C38A(__this, L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.Boolean Valve.Newtonsoft.Json.Linq.JValue::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JValue_Equals_m97315AA334E40A34D347458C69807CE7C0278079 (JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JValue_Equals_m97315AA334E40A34D347458C69807CE7C0278079_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * V_0 = NULL;
{
RuntimeObject * L_0 = ___obj0;
if (L_0)
{
goto IL_0005;
}
}
{
return (bool)0;
}
IL_0005:
{
RuntimeObject * L_1 = ___obj0;
V_0 = ((JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 *)IsInstClass((RuntimeObject*)L_1, JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3_il2cpp_TypeInfo_var));
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_2 = V_0;
if (!L_2)
{
goto IL_0017;
}
}
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_3 = V_0;
bool L_4 = JValue_Equals_m17BFD844D67EFBDFE8DCA5E992F4C1B5C3795A15(__this, L_3, /*hidden argument*/NULL);
return L_4;
}
IL_0017:
{
RuntimeObject * L_5 = ___obj0;
bool L_6 = Object_Equals_mEEF0C9AADB29464A832CCA4B9B9BFD8E3DC28F7B(__this, L_5, /*hidden argument*/NULL);
return L_6;
}
}
// System.Int32 Valve.Newtonsoft.Json.Linq.JValue::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JValue_GetHashCode_mE9A612BFB1B05ACF7F07E873671C43BE2BF1A843 (JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = __this->get__value_14();
if (L_0)
{
goto IL_000a;
}
}
{
return 0;
}
IL_000a:
{
RuntimeObject * L_1 = __this->get__value_14();
NullCheck(L_1);
int32_t L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_1);
return L_2;
}
}
// System.String Valve.Newtonsoft.Json.Linq.JValue::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JValue_ToString_m4CF02E032A390219733586716376AFA414D83E06 (JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JValue_ToString_m4CF02E032A390219733586716376AFA414D83E06_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = __this->get__value_14();
if (L_0)
{
goto IL_000e;
}
}
{
String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5();
return L_1;
}
IL_000e:
{
RuntimeObject * L_2 = __this->get__value_14();
NullCheck(L_2);
String_t* L_3 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_2);
return L_3;
}
}
// System.String Valve.Newtonsoft.Json.Linq.JValue::ToString(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JValue_ToString_mC705A0A53AD3E0CE23045C9D8E86592AD2BABE6E (JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * __this, RuntimeObject* ___formatProvider0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___formatProvider0;
String_t* L_1 = JValue_ToString_m15013498786D88B25B55CB2D00130932F043C191(__this, (String_t*)NULL, L_0, /*hidden argument*/NULL);
return L_1;
}
}
// System.String Valve.Newtonsoft.Json.Linq.JValue::ToString(System.String,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JValue_ToString_m15013498786D88B25B55CB2D00130932F043C191 (JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * __this, String_t* ___format0, RuntimeObject* ___formatProvider1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JValue_ToString_m15013498786D88B25B55CB2D00130932F043C191_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
{
RuntimeObject * L_0 = __this->get__value_14();
if (L_0)
{
goto IL_000e;
}
}
{
String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5();
return L_1;
}
IL_000e:
{
RuntimeObject * L_2 = __this->get__value_14();
V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_2, IFormattable_t58E0883927AD7B9E881837942BD4FA2E7D8330C0_il2cpp_TypeInfo_var));
RuntimeObject* L_3 = V_0;
if (!L_3)
{
goto IL_0026;
}
}
{
RuntimeObject* L_4 = V_0;
String_t* L_5 = ___format0;
RuntimeObject* L_6 = ___formatProvider1;
NullCheck(L_4);
String_t* L_7 = InterfaceFuncInvoker2< String_t*, String_t*, RuntimeObject* >::Invoke(0 /* System.String System.IFormattable::ToString(System.String,System.IFormatProvider) */, IFormattable_t58E0883927AD7B9E881837942BD4FA2E7D8330C0_il2cpp_TypeInfo_var, L_4, L_5, L_6);
return L_7;
}
IL_0026:
{
RuntimeObject * L_8 = __this->get__value_14();
NullCheck(L_8);
String_t* L_9 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_8);
return L_9;
}
}
// System.Int32 Valve.Newtonsoft.Json.Linq.JValue::System.IComparable.CompareTo(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JValue_System_IComparable_CompareTo_m757CE3D6D5C87C626EDCDED8AC8E50706D22664F (JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JValue_System_IComparable_CompareTo_m757CE3D6D5C87C626EDCDED8AC8E50706D22664F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
RuntimeObject * G_B5_0 = NULL;
{
RuntimeObject * L_0 = ___obj0;
if (L_0)
{
goto IL_0005;
}
}
{
return 1;
}
IL_0005:
{
RuntimeObject * L_1 = ___obj0;
if (((JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 *)IsInstClass((RuntimeObject*)L_1, JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3_il2cpp_TypeInfo_var)))
{
goto IL_0010;
}
}
{
RuntimeObject * L_2 = ___obj0;
G_B5_0 = L_2;
goto IL_001b;
}
IL_0010:
{
RuntimeObject * L_3 = ___obj0;
NullCheck(((JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 *)CastclassClass((RuntimeObject*)L_3, JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3_il2cpp_TypeInfo_var)));
RuntimeObject * L_4 = JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline(((JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 *)CastclassClass((RuntimeObject*)L_3, JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
G_B5_0 = L_4;
}
IL_001b:
{
V_0 = G_B5_0;
int32_t L_5 = __this->get__valueType_13();
RuntimeObject * L_6 = __this->get__value_14();
RuntimeObject * L_7 = V_0;
int32_t L_8 = JValue_Compare_m9E45171FF4562ADE3112F1468C2E0DB9AAEBD9F8(L_5, L_6, L_7, /*hidden argument*/NULL);
return L_8;
}
}
// System.Int32 Valve.Newtonsoft.Json.Linq.JValue::CompareTo(Valve.Newtonsoft.Json.Linq.JValue)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JValue_CompareTo_mAFF9E4B90DE62CA81F3529C5BBB83A5827080E97 (JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * __this, JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * ___obj0, const RuntimeMethod* method)
{
{
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_0 = ___obj0;
if (L_0)
{
goto IL_0005;
}
}
{
return 1;
}
IL_0005:
{
int32_t L_1 = __this->get__valueType_13();
RuntimeObject * L_2 = __this->get__value_14();
JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * L_3 = ___obj0;
NullCheck(L_3);
RuntimeObject * L_4 = L_3->get__value_14();
int32_t L_5 = JValue_Compare_m9E45171FF4562ADE3112F1468C2E0DB9AAEBD9F8(L_1, L_2, L_4, /*hidden argument*/NULL);
return L_5;
}
}
// System.TypeCode Valve.Newtonsoft.Json.Linq.JValue::System.IConvertible.GetTypeCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JValue_System_IConvertible_GetTypeCode_m8FC824A67B0688B77F86D223851CAA0AEA80C799 (JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JValue_System_IConvertible_GetTypeCode_m8FC824A67B0688B77F86D223851CAA0AEA80C799_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
{
RuntimeObject * L_0 = __this->get__value_14();
if (L_0)
{
goto IL_000a;
}
}
{
return (int32_t)(0);
}
IL_000a:
{
RuntimeObject * L_1 = __this->get__value_14();
V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_1, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var));
RuntimeObject* L_2 = V_0;
if (L_2)
{
goto IL_001b;
}
}
{
return (int32_t)(1);
}
IL_001b:
{
RuntimeObject* L_3 = V_0;
NullCheck(L_3);
int32_t L_4 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.TypeCode System.IConvertible::GetTypeCode() */, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var, L_3);
return L_4;
}
}
// System.Boolean Valve.Newtonsoft.Json.Linq.JValue::System.IConvertible.ToBoolean(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JValue_System_IConvertible_ToBoolean_mB1AAB7EEF34312E01EEB34A8B7F08F010CB0EDDB (JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JValue_System_IConvertible_ToBoolean_mB1AAB7EEF34312E01EEB34A8B7F08F010CB0EDDB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
bool L_0 = JToken_op_Explicit_mC85A803929686E2746F451B17F94D9C381941970(__this, /*hidden argument*/NULL);
return L_0;
}
}
// System.Char Valve.Newtonsoft.Json.Linq.JValue::System.IConvertible.ToChar(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar JValue_System_IConvertible_ToChar_m7BA1EB803CFEA696E5C28707916ECE2A02EB076E (JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JValue_System_IConvertible_ToChar_m7BA1EB803CFEA696E5C28707916ECE2A02EB076E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
Il2CppChar L_0 = JToken_op_Explicit_mA3627E69282A828ABE2FF505D43B887C1E54CC6F(__this, /*hidden argument*/NULL);
return L_0;
}
}
// System.SByte Valve.Newtonsoft.Json.Linq.JValue::System.IConvertible.ToSByte(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t JValue_System_IConvertible_ToSByte_m1827D88DA59C20840CBD9E86BDECBF6A7D9DEADC (JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JValue_System_IConvertible_ToSByte_m1827D88DA59C20840CBD9E86BDECBF6A7D9DEADC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
int8_t L_0 = JToken_op_Explicit_m6246D2129AAA644B0F738E37B7D8EE0C72174C88(__this, /*hidden argument*/NULL);
return L_0;
}
}
// System.Byte Valve.Newtonsoft.Json.Linq.JValue::System.IConvertible.ToByte(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t JValue_System_IConvertible_ToByte_mF290A118DDF0F81AE615E9376177067072E204FC (JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JValue_System_IConvertible_ToByte_mF290A118DDF0F81AE615E9376177067072E204FC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
uint8_t L_0 = JToken_op_Explicit_m082F0E38845FD5F318438D29D7A41D8B278030A8(__this, /*hidden argument*/NULL);
return L_0;
}
}
// System.Int16 Valve.Newtonsoft.Json.Linq.JValue::System.IConvertible.ToInt16(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t JValue_System_IConvertible_ToInt16_mDF956D3D166E2AC81E513764B2C07BB6FCF45B2E (JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JValue_System_IConvertible_ToInt16_mDF956D3D166E2AC81E513764B2C07BB6FCF45B2E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
int16_t L_0 = JToken_op_Explicit_mFB7B71446CAF7B4C8B316D719C957D7379D8B45F(__this, /*hidden argument*/NULL);
return L_0;
}
}
// System.UInt16 Valve.Newtonsoft.Json.Linq.JValue::System.IConvertible.ToUInt16(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t JValue_System_IConvertible_ToUInt16_m58EE681C0A1A20241E7033194B670C8936D794E8 (JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JValue_System_IConvertible_ToUInt16_m58EE681C0A1A20241E7033194B670C8936D794E8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
uint16_t L_0 = JToken_op_Explicit_mAB7E763BA2CB33D56DFFBB8A5E83F4670B2805A1(__this, /*hidden argument*/NULL);
return L_0;
}
}
// System.Int32 Valve.Newtonsoft.Json.Linq.JValue::System.IConvertible.ToInt32(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JValue_System_IConvertible_ToInt32_m6ACFED96F40889304ACF9F399131270765331382 (JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JValue_System_IConvertible_ToInt32_m6ACFED96F40889304ACF9F399131270765331382_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
int32_t L_0 = JToken_op_Explicit_m5623B70899025B395BF68890057E8827DFC09062(__this, /*hidden argument*/NULL);
return L_0;
}
}
// System.UInt32 Valve.Newtonsoft.Json.Linq.JValue::System.IConvertible.ToUInt32(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t JValue_System_IConvertible_ToUInt32_m444FE5DB16A150F4B6DBF839BD637016D35AE7AF (JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JValue_System_IConvertible_ToUInt32_m444FE5DB16A150F4B6DBF839BD637016D35AE7AF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
uint32_t L_0 = JToken_op_Explicit_mE90FD8213A2770ECA6B0E9628B2D614CAA8B68B1(__this, /*hidden argument*/NULL);
return L_0;
}
}
// System.Int64 Valve.Newtonsoft.Json.Linq.JValue::System.IConvertible.ToInt64(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t JValue_System_IConvertible_ToInt64_m3A39C507757BB8CC9CEE2406689248383F06A990 (JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JValue_System_IConvertible_ToInt64_m3A39C507757BB8CC9CEE2406689248383F06A990_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
int64_t L_0 = JToken_op_Explicit_m3B70105D407BAD5D01D511E04215FB146ED1C8EF(__this, /*hidden argument*/NULL);
return L_0;
}
}
// System.UInt64 Valve.Newtonsoft.Json.Linq.JValue::System.IConvertible.ToUInt64(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t JValue_System_IConvertible_ToUInt64_m0D4FDE29D9EFFCDCE72985B3033B4BD26EA0FD03 (JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JValue_System_IConvertible_ToUInt64_m0D4FDE29D9EFFCDCE72985B3033B4BD26EA0FD03_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
uint64_t L_0 = JToken_op_Explicit_m60AD9B22AC43C9483A4EC736E8B08DBB098144E9(__this, /*hidden argument*/NULL);
return L_0;
}
}
// System.Single Valve.Newtonsoft.Json.Linq.JValue::System.IConvertible.ToSingle(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float JValue_System_IConvertible_ToSingle_mB56E182D02271657B7F1E34E3718F720BC3D9AD8 (JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JValue_System_IConvertible_ToSingle_mB56E182D02271657B7F1E34E3718F720BC3D9AD8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
float L_0 = JToken_op_Explicit_m8315F88547897B494F2FAD9E6F9B9F9BE12106CE(__this, /*hidden argument*/NULL);
return (((float)((float)L_0)));
}
}
// System.Double Valve.Newtonsoft.Json.Linq.JValue::System.IConvertible.ToDouble(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double JValue_System_IConvertible_ToDouble_m2092964EA214FDA01CC8D86B713DD23E772E347A (JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JValue_System_IConvertible_ToDouble_m2092964EA214FDA01CC8D86B713DD23E772E347A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
double L_0 = JToken_op_Explicit_m82C9797D6694CAD60E2D8C75CE6651DFA5EFF498(__this, /*hidden argument*/NULL);
return (((double)((double)L_0)));
}
}
// System.Decimal Valve.Newtonsoft.Json.Linq.JValue::System.IConvertible.ToDecimal(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 JValue_System_IConvertible_ToDecimal_mFDF9ED9D72E74A058BE767E08FAC9BEF3787BAFC (JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JValue_System_IConvertible_ToDecimal_mFDF9ED9D72E74A058BE767E08FAC9BEF3787BAFC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_0 = JToken_op_Explicit_m3FB97A54D97040485003B7DB9259575E91486DDD(__this, /*hidden argument*/NULL);
return L_0;
}
}
// System.DateTime Valve.Newtonsoft.Json.Linq.JValue::System.IConvertible.ToDateTime(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 JValue_System_IConvertible_ToDateTime_mF30D26EF824B79A723AD624DFF9B66E8E9A8C84D (JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JValue_System_IConvertible_ToDateTime_mF30D26EF824B79A723AD624DFF9B66E8E9A8C84D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_il2cpp_TypeInfo_var);
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_0 = JToken_op_Explicit_m0170BD465F577BF1F4C284F9318550F3A59B7A6D(__this, /*hidden argument*/NULL);
return L_0;
}
}
// System.Object Valve.Newtonsoft.Json.Linq.JValue::System.IConvertible.ToType(System.Type,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * JValue_System_IConvertible_ToType_m8E7CAB015E6CE796853C20505DE723813CAF2753 (JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * __this, Type_t * ___conversionType0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
{
Type_t * L_0 = ___conversionType0;
RuntimeObject * L_1 = JToken_ToObject_m25DE37D91924DB94B96FB2A86FD4CEEB0BE1878D(__this, L_0, /*hidden argument*/NULL);
return L_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
// Valve.Newtonsoft.Json.Linq.CommentHandling Valve.Newtonsoft.Json.Linq.JsonLoadSettings::get_CommentHandling()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JsonLoadSettings_get_CommentHandling_mBB1D26011CD2B88F331440AAB727BA800E5D44F9 (JsonLoadSettings_tB5261F5FE452665393A12B96A793FE21DF91D45A * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get__commentHandling_0();
return L_0;
}
}
// Valve.Newtonsoft.Json.Linq.LineInfoHandling Valve.Newtonsoft.Json.Linq.JsonLoadSettings::get_LineInfoHandling()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JsonLoadSettings_get_LineInfoHandling_m84C480E6D3F94571C4845D2EF2CCB0E045768E0E (JsonLoadSettings_tB5261F5FE452665393A12B96A793FE21DF91D45A * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get__lineInfoHandling_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
#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
// Valve.Newtonsoft.Json.Serialization.IContractResolver Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::get_Instance()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* DefaultContractResolver_get_Instance_m231C8CC14A43ED7F411A7C313E36DB37DEA8659F (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultContractResolver_get_Instance_m231C8CC14A43ED7F411A7C313E36DB37DEA8659F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0_il2cpp_TypeInfo_var);
RuntimeObject* L_0 = ((DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0_StaticFields*)il2cpp_codegen_static_fields_for(DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0_il2cpp_TypeInfo_var))->get__instance_0();
return L_0;
}
}
// System.Reflection.BindingFlags Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::get_DefaultMembersSearchFlags()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DefaultContractResolver_get_DefaultMembersSearchFlags_m1B01EBF0E7FF14D1E481B705DE1B927566EC6B81 (DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_U3CDefaultMembersSearchFlagsU3Ek__BackingField_6();
return L_0;
}
}
// System.Void Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::set_DefaultMembersSearchFlags(System.Reflection.BindingFlags)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultContractResolver_set_DefaultMembersSearchFlags_mC17D91870D34F29693726A514084D2D2FBDD45D7 (DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->set_U3CDefaultMembersSearchFlagsU3Ek__BackingField_6(L_0);
return;
}
}
// System.Boolean Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::get_SerializeCompilerGeneratedMembers()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DefaultContractResolver_get_SerializeCompilerGeneratedMembers_m3F5EBE5709E33F6EC9829EF76A2E0741508883ED (DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_U3CSerializeCompilerGeneratedMembersU3Ek__BackingField_7();
return L_0;
}
}
// System.Boolean Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::get_IgnoreSerializableInterface()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DefaultContractResolver_get_IgnoreSerializableInterface_m3573E97397949ED13C4ABFED4A9A86DD317F451E (DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_U3CIgnoreSerializableInterfaceU3Ek__BackingField_8();
return L_0;
}
}
// System.Boolean Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::get_IgnoreSerializableAttribute()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DefaultContractResolver_get_IgnoreSerializableAttribute_mA16EC5B2658D11EC6DC88B5D69D4F503BCFD89AC (DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_U3CIgnoreSerializableAttributeU3Ek__BackingField_9();
return L_0;
}
}
// System.Void Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::set_IgnoreSerializableAttribute(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultContractResolver_set_IgnoreSerializableAttribute_mE9C620C5A904A43B2233C55065C1AA95178B5AF1 (DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0 * __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->set_U3CIgnoreSerializableAttributeU3Ek__BackingField_9(L_0);
return;
}
}
// Valve.Newtonsoft.Json.Serialization.NamingStrategy Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::get_NamingStrategy()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NamingStrategy_tBB6F8138B49E9B2704F7B87BF9130378976B9B46 * DefaultContractResolver_get_NamingStrategy_m541D750140B66BB0B36E32CEC1F984F1C2037FD4 (DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0 * __this, const RuntimeMethod* method)
{
{
NamingStrategy_tBB6F8138B49E9B2704F7B87BF9130378976B9B46 * L_0 = __this->get_U3CNamingStrategyU3Ek__BackingField_10();
return L_0;
}
}
// System.Void Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultContractResolver__ctor_mD2A33AC83A6273FDBB5B1A34763BF33EA08A170E (DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultContractResolver__ctor_mD2A33AC83A6273FDBB5B1A34763BF33EA08A170E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
DefaultContractResolverState_t8B0D63DB1C8B5BA14A03ADBEF0EA1141B8604DE6 * L_0 = (DefaultContractResolverState_t8B0D63DB1C8B5BA14A03ADBEF0EA1141B8604DE6 *)il2cpp_codegen_object_new(DefaultContractResolverState_t8B0D63DB1C8B5BA14A03ADBEF0EA1141B8604DE6_il2cpp_TypeInfo_var);
DefaultContractResolverState__ctor_mBB3FBAADAB4CF37F0B15FD1E1EF4921A35CA9884(L_0, /*hidden argument*/NULL);
__this->set__instanceState_4(L_0);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
DefaultContractResolver_set_IgnoreSerializableAttribute_mE9C620C5A904A43B2233C55065C1AA95178B5AF1_inline(__this, (bool)1, /*hidden argument*/NULL);
DefaultContractResolver_set_DefaultMembersSearchFlags_mC17D91870D34F29693726A514084D2D2FBDD45D7_inline(__this, ((int32_t)20), /*hidden argument*/NULL);
return;
}
}
// System.Void Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::.ctor(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultContractResolver__ctor_mF8FC2874A070CE97DD4C37BDC435B00D73D7A139 (DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0 * __this, bool ___shareCache0, const RuntimeMethod* method)
{
{
DefaultContractResolver__ctor_mD2A33AC83A6273FDBB5B1A34763BF33EA08A170E(__this, /*hidden argument*/NULL);
bool L_0 = ___shareCache0;
__this->set__sharedCache_5(L_0);
return;
}
}
// Valve.Newtonsoft.Json.Serialization.DefaultContractResolverState Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::GetState()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DefaultContractResolverState_t8B0D63DB1C8B5BA14A03ADBEF0EA1141B8604DE6 * DefaultContractResolver_GetState_mFCCCECDBB23E606E405F563044BC5DBCE097EC78 (DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultContractResolver_GetState_mFCCCECDBB23E606E405F563044BC5DBCE097EC78_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
bool L_0 = __this->get__sharedCache_5();
if (!L_0)
{
goto IL_000e;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0_il2cpp_TypeInfo_var);
DefaultContractResolverState_t8B0D63DB1C8B5BA14A03ADBEF0EA1141B8604DE6 * L_1 = ((DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0_StaticFields*)il2cpp_codegen_static_fields_for(DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0_il2cpp_TypeInfo_var))->get__sharedState_3();
return L_1;
}
IL_000e:
{
DefaultContractResolverState_t8B0D63DB1C8B5BA14A03ADBEF0EA1141B8604DE6 * L_2 = __this->get__instanceState_4();
return L_2;
}
}
// Valve.Newtonsoft.Json.Serialization.JsonContract Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::ResolveContract(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * DefaultContractResolver_ResolveContract_m2CA8E8397A2F8C714868CC6DF468BDE0DAC92931 (DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0 * __this, Type_t * ___type0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultContractResolver_ResolveContract_m2CA8E8397A2F8C714868CC6DF468BDE0DAC92931_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
DefaultContractResolverState_t8B0D63DB1C8B5BA14A03ADBEF0EA1141B8604DE6 * V_0 = NULL;
JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * V_1 = NULL;
ResolverContractKey_tFC0DA3A6971980AA6D4E6E0D85CEB0D25615534B V_2;
memset((&V_2), 0, sizeof(V_2));
Dictionary_2_t3B0A775E26AFCA1B3A8DF100D5CB736C522494F7 * V_3 = NULL;
RuntimeObject * V_4 = NULL;
Dictionary_2_t3B0A775E26AFCA1B3A8DF100D5CB736C522494F7 * V_5 = 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);
Dictionary_2_t3B0A775E26AFCA1B3A8DF100D5CB736C522494F7 * G_B8_0 = NULL;
{
Type_t * L_0 = ___type0;
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, _stringLiteralD0A3E7F81A9885E99049D1CAE0336D269D5E47A9, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, DefaultContractResolver_ResolveContract_m2CA8E8397A2F8C714868CC6DF468BDE0DAC92931_RuntimeMethod_var);
}
IL_000e:
{
DefaultContractResolverState_t8B0D63DB1C8B5BA14A03ADBEF0EA1141B8604DE6 * L_2 = DefaultContractResolver_GetState_mFCCCECDBB23E606E405F563044BC5DBCE097EC78(__this, /*hidden argument*/NULL);
V_0 = L_2;
Type_t * L_3 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(__this, /*hidden argument*/NULL);
Type_t * L_4 = ___type0;
ResolverContractKey__ctor_m7F50917B7ACEBC8515292092994727274A708FB5((ResolverContractKey_tFC0DA3A6971980AA6D4E6E0D85CEB0D25615534B *)(&V_2), L_3, L_4, /*hidden argument*/NULL);
DefaultContractResolverState_t8B0D63DB1C8B5BA14A03ADBEF0EA1141B8604DE6 * L_5 = V_0;
NullCheck(L_5);
Dictionary_2_t3B0A775E26AFCA1B3A8DF100D5CB736C522494F7 * L_6 = L_5->get_ContractCache_0();
V_3 = L_6;
Dictionary_2_t3B0A775E26AFCA1B3A8DF100D5CB736C522494F7 * L_7 = V_3;
if (!L_7)
{
goto IL_0038;
}
}
{
Dictionary_2_t3B0A775E26AFCA1B3A8DF100D5CB736C522494F7 * L_8 = V_3;
ResolverContractKey_tFC0DA3A6971980AA6D4E6E0D85CEB0D25615534B L_9 = V_2;
NullCheck(L_8);
bool L_10 = Dictionary_2_TryGetValue_mF3EE7766A8B8DCD452A1665720F9E1003684D7AB(L_8, L_9, (JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 **)(&V_1), /*hidden argument*/Dictionary_2_TryGetValue_mF3EE7766A8B8DCD452A1665720F9E1003684D7AB_RuntimeMethod_var);
if (L_10)
{
goto IL_0082;
}
}
IL_0038:
{
Type_t * L_11 = ___type0;
JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * L_12 = VirtFuncInvoker1< JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 *, Type_t * >::Invoke(17 /* Valve.Newtonsoft.Json.Serialization.JsonContract Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::CreateContract(System.Type) */, __this, L_11);
V_1 = L_12;
IL2CPP_RUNTIME_CLASS_INIT(DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0_il2cpp_TypeInfo_var);
RuntimeObject * L_13 = ((DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0_StaticFields*)il2cpp_codegen_static_fields_for(DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0_il2cpp_TypeInfo_var))->get_TypeContractCacheLock_2();
V_4 = L_13;
RuntimeObject * L_14 = V_4;
Monitor_Enter_m903755FCC479745619842CCDBF5E6355319FA102(L_14, /*hidden argument*/NULL);
}
IL_004e:
try
{ // begin try (depth: 1)
{
DefaultContractResolverState_t8B0D63DB1C8B5BA14A03ADBEF0EA1141B8604DE6 * L_15 = V_0;
NullCheck(L_15);
Dictionary_2_t3B0A775E26AFCA1B3A8DF100D5CB736C522494F7 * L_16 = L_15->get_ContractCache_0();
V_3 = L_16;
Dictionary_2_t3B0A775E26AFCA1B3A8DF100D5CB736C522494F7 * L_17 = V_3;
if (L_17)
{
goto IL_005f;
}
}
IL_0058:
{
Dictionary_2_t3B0A775E26AFCA1B3A8DF100D5CB736C522494F7 * L_18 = (Dictionary_2_t3B0A775E26AFCA1B3A8DF100D5CB736C522494F7 *)il2cpp_codegen_object_new(Dictionary_2_t3B0A775E26AFCA1B3A8DF100D5CB736C522494F7_il2cpp_TypeInfo_var);
Dictionary_2__ctor_mB39AB93E460ACA277325DF69BE1252620D2CBF96(L_18, /*hidden argument*/Dictionary_2__ctor_mB39AB93E460ACA277325DF69BE1252620D2CBF96_RuntimeMethod_var);
G_B8_0 = L_18;
goto IL_0065;
}
IL_005f:
{
Dictionary_2_t3B0A775E26AFCA1B3A8DF100D5CB736C522494F7 * L_19 = V_3;
Dictionary_2_t3B0A775E26AFCA1B3A8DF100D5CB736C522494F7 * L_20 = (Dictionary_2_t3B0A775E26AFCA1B3A8DF100D5CB736C522494F7 *)il2cpp_codegen_object_new(Dictionary_2_t3B0A775E26AFCA1B3A8DF100D5CB736C522494F7_il2cpp_TypeInfo_var);
Dictionary_2__ctor_mD1ACF14CCF3813AFE70918E0FA42DBAFB51FB5DD(L_20, L_19, /*hidden argument*/Dictionary_2__ctor_mD1ACF14CCF3813AFE70918E0FA42DBAFB51FB5DD_RuntimeMethod_var);
G_B8_0 = L_20;
}
IL_0065:
{
V_5 = G_B8_0;
Dictionary_2_t3B0A775E26AFCA1B3A8DF100D5CB736C522494F7 * L_21 = V_5;
ResolverContractKey_tFC0DA3A6971980AA6D4E6E0D85CEB0D25615534B L_22 = V_2;
JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * L_23 = V_1;
NullCheck(L_21);
Dictionary_2_set_Item_m37A4F5A4FF3E6E252E7D8A933760D916A692D8C9(L_21, L_22, L_23, /*hidden argument*/Dictionary_2_set_Item_m37A4F5A4FF3E6E252E7D8A933760D916A692D8C9_RuntimeMethod_var);
DefaultContractResolverState_t8B0D63DB1C8B5BA14A03ADBEF0EA1141B8604DE6 * L_24 = V_0;
Dictionary_2_t3B0A775E26AFCA1B3A8DF100D5CB736C522494F7 * L_25 = V_5;
NullCheck(L_24);
L_24->set_ContractCache_0(L_25);
IL2CPP_LEAVE(0x82, FINALLY_007a);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_007a;
}
FINALLY_007a:
{ // begin finally (depth: 1)
RuntimeObject * L_26 = V_4;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_26, /*hidden argument*/NULL);
IL2CPP_END_FINALLY(122)
} // end finally (depth: 1)
IL2CPP_CLEANUP(122)
{
IL2CPP_JUMP_TBL(0x82, IL_0082)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0082:
{
JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * L_27 = V_1;
return L_27;
}
}
// System.Collections.Generic.List`1<System.Reflection.MemberInfo> Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::GetSerializableMembers(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_t610995BF9B0DCC99DF41C7D0D54AA44EF8552AE9 * DefaultContractResolver_GetSerializableMembers_m54C5F501EEF2A9CDB1B6F3F667337751089DB2F8 (DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0 * __this, Type_t * ___objectType0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultContractResolver_GetSerializableMembers_m54C5F501EEF2A9CDB1B6F3F667337751089DB2F8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
int32_t V_1 = 0;
List_1_t610995BF9B0DCC99DF41C7D0D54AA44EF8552AE9 * V_2 = NULL;
List_1_t610995BF9B0DCC99DF41C7D0D54AA44EF8552AE9 * V_3 = NULL;
DataContractAttribute_tAD58D5877BD04EADB56BB4AEDDE342C73F032FC5 * V_4 = NULL;
List_1_t610995BF9B0DCC99DF41C7D0D54AA44EF8552AE9 * V_5 = NULL;
Type_t * V_6 = NULL;
Enumerator_t485345BBD355ED7025F8E5EA8AF95F42AC192DCE V_7;
memset((&V_7), 0, sizeof(V_7));
MemberInfo_t * V_8 = NULL;
MemberInfo_t * V_9 = NULL;
FieldInfo_t * V_10 = 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);
Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422 * G_B2_0 = NULL;
List_1_t610995BF9B0DCC99DF41C7D0D54AA44EF8552AE9 * G_B2_1 = NULL;
Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422 * G_B1_0 = NULL;
List_1_t610995BF9B0DCC99DF41C7D0D54AA44EF8552AE9 * G_B1_1 = NULL;
Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422 * G_B5_0 = NULL;
List_1_t610995BF9B0DCC99DF41C7D0D54AA44EF8552AE9 * G_B5_1 = NULL;
Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422 * G_B4_0 = NULL;
List_1_t610995BF9B0DCC99DF41C7D0D54AA44EF8552AE9 * G_B4_1 = NULL;
{
bool L_0 = DefaultContractResolver_get_IgnoreSerializableAttribute_mA16EC5B2658D11EC6DC88B5D69D4F503BCFD89AC_inline(__this, /*hidden argument*/NULL);
V_0 = L_0;
Type_t * L_1 = ___objectType0;
bool L_2 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(JsonTypeReflector_tC161A1BF2506AB16B738C3935C2691A92B7A8C55_il2cpp_TypeInfo_var);
int32_t L_3 = JsonTypeReflector_GetObjectMemberSerialization_m352B80C91A5553DFFEB61B2887EC14E05FD09D9F(L_1, L_2, /*hidden argument*/NULL);
V_1 = L_3;
Type_t * L_4 = ___objectType0;
IL2CPP_RUNTIME_CLASS_INIT(ReflectionUtils_t1845D588ADA15C351615E925042ECF790B622987_il2cpp_TypeInfo_var);
List_1_t610995BF9B0DCC99DF41C7D0D54AA44EF8552AE9 * L_5 = ReflectionUtils_GetFieldsAndProperties_m572513D13B653D23CDAE2DD777E37AC98FFE0EFF(L_4, ((int32_t)60), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A_il2cpp_TypeInfo_var);
Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422 * L_6 = ((U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A_il2cpp_TypeInfo_var))->get_U3CU3E9__34_0_1();
Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422 * L_7 = L_6;
G_B1_0 = L_7;
G_B1_1 = L_5;
if (L_7)
{
G_B2_0 = L_7;
G_B2_1 = L_5;
goto IL_0036;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A_il2cpp_TypeInfo_var);
U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A * L_8 = ((U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A_il2cpp_TypeInfo_var))->get_U3CU3E9_0();
Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422 * L_9 = (Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422 *)il2cpp_codegen_object_new(Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422_il2cpp_TypeInfo_var);
Func_2__ctor_m58DDD084DBBB1A509257D8D2463AE5B269E9D979(L_9, L_8, (intptr_t)((intptr_t)U3CU3Ec_U3CGetSerializableMembersU3Eb__34_0_m9C59E55EDD271B8A867BF70F6D9A67CAB9C2AFA2_RuntimeMethod_var), /*hidden argument*/Func_2__ctor_m58DDD084DBBB1A509257D8D2463AE5B269E9D979_RuntimeMethod_var);
Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422 * L_10 = L_9;
((U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A_il2cpp_TypeInfo_var))->set_U3CU3E9__34_0_1(L_10);
G_B2_0 = L_10;
G_B2_1 = G_B1_1;
}
IL_0036:
{
RuntimeObject* L_11 = Enumerable_Where_TisMemberInfo_t_m671B17003622EEB0584286D7B36E212C1279FAC3(G_B2_1, G_B2_0, /*hidden argument*/Enumerable_Where_TisMemberInfo_t_m671B17003622EEB0584286D7B36E212C1279FAC3_RuntimeMethod_var);
List_1_t610995BF9B0DCC99DF41C7D0D54AA44EF8552AE9 * L_12 = Enumerable_ToList_TisMemberInfo_t_m7A213F8EE97FCD65CB42A50AB6108A97C365DCCF(L_11, /*hidden argument*/Enumerable_ToList_TisMemberInfo_t_m7A213F8EE97FCD65CB42A50AB6108A97C365DCCF_RuntimeMethod_var);
V_2 = L_12;
List_1_t610995BF9B0DCC99DF41C7D0D54AA44EF8552AE9 * L_13 = (List_1_t610995BF9B0DCC99DF41C7D0D54AA44EF8552AE9 *)il2cpp_codegen_object_new(List_1_t610995BF9B0DCC99DF41C7D0D54AA44EF8552AE9_il2cpp_TypeInfo_var);
List_1__ctor_mFA8EA6FA453663BACE3484A2991920D2BFC5BFA5(L_13, /*hidden argument*/List_1__ctor_mFA8EA6FA453663BACE3484A2991920D2BFC5BFA5_RuntimeMethod_var);
V_3 = L_13;
int32_t L_14 = V_1;
if ((((int32_t)L_14) == ((int32_t)2)))
{
goto IL_016c;
}
}
{
Type_t * L_15 = ___objectType0;
IL2CPP_RUNTIME_CLASS_INIT(JsonTypeReflector_tC161A1BF2506AB16B738C3935C2691A92B7A8C55_il2cpp_TypeInfo_var);
DataContractAttribute_tAD58D5877BD04EADB56BB4AEDDE342C73F032FC5 * L_16 = JsonTypeReflector_GetDataContractAttribute_m62122785FB6670DF3D75AEF50EAA7ACF6DE1FDFB(L_15, /*hidden argument*/NULL);
V_4 = L_16;
Type_t * L_17 = ___objectType0;
int32_t L_18 = DefaultContractResolver_get_DefaultMembersSearchFlags_m1B01EBF0E7FF14D1E481B705DE1B927566EC6B81_inline(__this, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(ReflectionUtils_t1845D588ADA15C351615E925042ECF790B622987_il2cpp_TypeInfo_var);
List_1_t610995BF9B0DCC99DF41C7D0D54AA44EF8552AE9 * L_19 = ReflectionUtils_GetFieldsAndProperties_m572513D13B653D23CDAE2DD777E37AC98FFE0EFF(L_17, L_18, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A_il2cpp_TypeInfo_var);
Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422 * L_20 = ((U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A_il2cpp_TypeInfo_var))->get_U3CU3E9__34_1_2();
Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422 * L_21 = L_20;
G_B4_0 = L_21;
G_B4_1 = L_19;
if (L_21)
{
G_B5_0 = L_21;
G_B5_1 = L_19;
goto IL_0081;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A_il2cpp_TypeInfo_var);
U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A * L_22 = ((U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A_il2cpp_TypeInfo_var))->get_U3CU3E9_0();
Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422 * L_23 = (Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422 *)il2cpp_codegen_object_new(Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422_il2cpp_TypeInfo_var);
Func_2__ctor_m58DDD084DBBB1A509257D8D2463AE5B269E9D979(L_23, L_22, (intptr_t)((intptr_t)U3CU3Ec_U3CGetSerializableMembersU3Eb__34_1_m4A9125BE6F324A8A905FFAA5F1FF83395DFAF447_RuntimeMethod_var), /*hidden argument*/Func_2__ctor_m58DDD084DBBB1A509257D8D2463AE5B269E9D979_RuntimeMethod_var);
Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422 * L_24 = L_23;
((U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A_il2cpp_TypeInfo_var))->set_U3CU3E9__34_1_2(L_24);
G_B5_0 = L_24;
G_B5_1 = G_B4_1;
}
IL_0081:
{
RuntimeObject* L_25 = Enumerable_Where_TisMemberInfo_t_m671B17003622EEB0584286D7B36E212C1279FAC3(G_B5_1, G_B5_0, /*hidden argument*/Enumerable_Where_TisMemberInfo_t_m671B17003622EEB0584286D7B36E212C1279FAC3_RuntimeMethod_var);
List_1_t610995BF9B0DCC99DF41C7D0D54AA44EF8552AE9 * L_26 = Enumerable_ToList_TisMemberInfo_t_m7A213F8EE97FCD65CB42A50AB6108A97C365DCCF(L_25, /*hidden argument*/Enumerable_ToList_TisMemberInfo_t_m7A213F8EE97FCD65CB42A50AB6108A97C365DCCF_RuntimeMethod_var);
V_5 = L_26;
List_1_t610995BF9B0DCC99DF41C7D0D54AA44EF8552AE9 * L_27 = V_2;
NullCheck(L_27);
Enumerator_t485345BBD355ED7025F8E5EA8AF95F42AC192DCE L_28 = List_1_GetEnumerator_mFEF2B830CDDC70282149401E9A5B02BF87E05640(L_27, /*hidden argument*/List_1_GetEnumerator_mFEF2B830CDDC70282149401E9A5B02BF87E05640_RuntimeMethod_var);
V_7 = L_28;
}
IL_0095:
try
{ // begin try (depth: 1)
{
goto IL_0127;
}
IL_009a:
{
MemberInfo_t * L_29 = Enumerator_get_Current_m479DA5158B45BF087D2F8DC029031FFF732A7B00_inline((Enumerator_t485345BBD355ED7025F8E5EA8AF95F42AC192DCE *)(&V_7), /*hidden argument*/Enumerator_get_Current_m479DA5158B45BF087D2F8DC029031FFF732A7B00_RuntimeMethod_var);
V_8 = L_29;
bool L_30 = DefaultContractResolver_get_SerializeCompilerGeneratedMembers_m3F5EBE5709E33F6EC9829EF76A2E0741508883ED_inline(__this, /*hidden argument*/NULL);
if (L_30)
{
goto IL_00bf;
}
}
IL_00ab:
{
MemberInfo_t * L_31 = V_8;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_32 = { reinterpret_cast<intptr_t> (CompilerGeneratedAttribute_t29C03D4EB4F2193B5BF85D03923EA47423C946FC_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_33 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_32, /*hidden argument*/NULL);
NullCheck(L_31);
bool L_34 = VirtFuncInvoker2< bool, Type_t *, bool >::Invoke(13 /* System.Boolean System.Reflection.MemberInfo::IsDefined(System.Type,System.Boolean) */, L_31, L_33, (bool)1);
if (L_34)
{
goto IL_0127;
}
}
IL_00bf:
{
List_1_t610995BF9B0DCC99DF41C7D0D54AA44EF8552AE9 * L_35 = V_5;
MemberInfo_t * L_36 = V_8;
NullCheck(L_35);
bool L_37 = List_1_Contains_mBED8ADA0F3C97C492E753CEBEDAC85BD773182B5(L_35, L_36, /*hidden argument*/List_1_Contains_mBED8ADA0F3C97C492E753CEBEDAC85BD773182B5_RuntimeMethod_var);
if (!L_37)
{
goto IL_00d4;
}
}
IL_00ca:
{
List_1_t610995BF9B0DCC99DF41C7D0D54AA44EF8552AE9 * L_38 = V_3;
MemberInfo_t * L_39 = V_8;
NullCheck(L_38);
List_1_Add_m44D5E54D0DA87DBF2841553D62C0FC3376B90ACB(L_38, L_39, /*hidden argument*/List_1_Add_m44D5E54D0DA87DBF2841553D62C0FC3376B90ACB_RuntimeMethod_var);
goto IL_0127;
}
IL_00d4:
{
MemberInfo_t * L_40 = V_8;
IL2CPP_RUNTIME_CLASS_INIT(JsonTypeReflector_tC161A1BF2506AB16B738C3935C2691A92B7A8C55_il2cpp_TypeInfo_var);
JsonPropertyAttribute_tD66B9C74F3201FFAF7A16DB84AEA31FE8F02ED5F * L_41 = JsonTypeReflector_GetAttribute_TisJsonPropertyAttribute_tD66B9C74F3201FFAF7A16DB84AEA31FE8F02ED5F_m627E8BDF71B670CB00F5311E19D499ECA1584EC6(L_40, /*hidden argument*/JsonTypeReflector_GetAttribute_TisJsonPropertyAttribute_tD66B9C74F3201FFAF7A16DB84AEA31FE8F02ED5F_m627E8BDF71B670CB00F5311E19D499ECA1584EC6_RuntimeMethod_var);
if (!L_41)
{
goto IL_00e7;
}
}
IL_00dd:
{
List_1_t610995BF9B0DCC99DF41C7D0D54AA44EF8552AE9 * L_42 = V_3;
MemberInfo_t * L_43 = V_8;
NullCheck(L_42);
List_1_Add_m44D5E54D0DA87DBF2841553D62C0FC3376B90ACB(L_42, L_43, /*hidden argument*/List_1_Add_m44D5E54D0DA87DBF2841553D62C0FC3376B90ACB_RuntimeMethod_var);
goto IL_0127;
}
IL_00e7:
{
MemberInfo_t * L_44 = V_8;
IL2CPP_RUNTIME_CLASS_INIT(JsonTypeReflector_tC161A1BF2506AB16B738C3935C2691A92B7A8C55_il2cpp_TypeInfo_var);
JsonRequiredAttribute_t9DE102747DCD1EBD135D2545271F6E894CEA77AB * L_45 = JsonTypeReflector_GetAttribute_TisJsonRequiredAttribute_t9DE102747DCD1EBD135D2545271F6E894CEA77AB_m6CB9D398D41E25D413A96E896D10E11D27475B91(L_44, /*hidden argument*/JsonTypeReflector_GetAttribute_TisJsonRequiredAttribute_t9DE102747DCD1EBD135D2545271F6E894CEA77AB_m6CB9D398D41E25D413A96E896D10E11D27475B91_RuntimeMethod_var);
if (!L_45)
{
goto IL_00fa;
}
}
IL_00f0:
{
List_1_t610995BF9B0DCC99DF41C7D0D54AA44EF8552AE9 * L_46 = V_3;
MemberInfo_t * L_47 = V_8;
NullCheck(L_46);
List_1_Add_m44D5E54D0DA87DBF2841553D62C0FC3376B90ACB(L_46, L_47, /*hidden argument*/List_1_Add_m44D5E54D0DA87DBF2841553D62C0FC3376B90ACB_RuntimeMethod_var);
goto IL_0127;
}
IL_00fa:
{
DataContractAttribute_tAD58D5877BD04EADB56BB4AEDDE342C73F032FC5 * L_48 = V_4;
if (!L_48)
{
goto IL_0111;
}
}
IL_00fe:
{
MemberInfo_t * L_49 = V_8;
IL2CPP_RUNTIME_CLASS_INIT(JsonTypeReflector_tC161A1BF2506AB16B738C3935C2691A92B7A8C55_il2cpp_TypeInfo_var);
DataMemberAttribute_tC865433FEC93FFD46D6F3E4BB28F262C9EE40525 * L_50 = JsonTypeReflector_GetAttribute_TisDataMemberAttribute_tC865433FEC93FFD46D6F3E4BB28F262C9EE40525_mA823032711717A7EE0047E7DBA6F8FE2357353DE(L_49, /*hidden argument*/JsonTypeReflector_GetAttribute_TisDataMemberAttribute_tC865433FEC93FFD46D6F3E4BB28F262C9EE40525_mA823032711717A7EE0047E7DBA6F8FE2357353DE_RuntimeMethod_var);
if (!L_50)
{
goto IL_0111;
}
}
IL_0107:
{
List_1_t610995BF9B0DCC99DF41C7D0D54AA44EF8552AE9 * L_51 = V_3;
MemberInfo_t * L_52 = V_8;
NullCheck(L_51);
List_1_Add_m44D5E54D0DA87DBF2841553D62C0FC3376B90ACB(L_51, L_52, /*hidden argument*/List_1_Add_m44D5E54D0DA87DBF2841553D62C0FC3376B90ACB_RuntimeMethod_var);
goto IL_0127;
}
IL_0111:
{
int32_t L_53 = V_1;
if ((!(((uint32_t)L_53) == ((uint32_t)2))))
{
goto IL_0127;
}
}
IL_0115:
{
MemberInfo_t * L_54 = V_8;
int32_t L_55 = TypeExtensions_MemberType_mF6FAE7764FE8D872C9632AD3F93152D623900232(L_54, /*hidden argument*/NULL);
if ((!(((uint32_t)L_55) == ((uint32_t)4))))
{
goto IL_0127;
}
}
IL_011f:
{
List_1_t610995BF9B0DCC99DF41C7D0D54AA44EF8552AE9 * L_56 = V_3;
MemberInfo_t * L_57 = V_8;
NullCheck(L_56);
List_1_Add_m44D5E54D0DA87DBF2841553D62C0FC3376B90ACB(L_56, L_57, /*hidden argument*/List_1_Add_m44D5E54D0DA87DBF2841553D62C0FC3376B90ACB_RuntimeMethod_var);
}
IL_0127:
{
bool L_58 = Enumerator_MoveNext_m5A102BF020B7804F89B69697EC3D0569F81A3205((Enumerator_t485345BBD355ED7025F8E5EA8AF95F42AC192DCE *)(&V_7), /*hidden argument*/Enumerator_MoveNext_m5A102BF020B7804F89B69697EC3D0569F81A3205_RuntimeMethod_var);
if (L_58)
{
goto IL_009a;
}
}
IL_0133:
{
IL2CPP_LEAVE(0x143, FINALLY_0135);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0135;
}
FINALLY_0135:
{ // begin finally (depth: 1)
Enumerator_Dispose_mE9CDCD8C0406CFD21812928A31C5898C38218AB2((Enumerator_t485345BBD355ED7025F8E5EA8AF95F42AC192DCE *)(&V_7), /*hidden argument*/Enumerator_Dispose_mE9CDCD8C0406CFD21812928A31C5898C38218AB2_RuntimeMethod_var);
IL2CPP_END_FINALLY(309)
} // end finally (depth: 1)
IL2CPP_CLEANUP(309)
{
IL2CPP_JUMP_TBL(0x143, IL_0143)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0143:
{
Type_t * L_59 = ___objectType0;
bool L_60 = TypeExtensions_AssignableToTypeName_m21701CDE0E93F32538B6A040843C29FCA64EB860(L_59, _stringLiteralBBFB88C452F985FFC7EEE8CAF6797CCA1C11BB65, (Type_t **)(&V_6), /*hidden argument*/NULL);
if (!L_60)
{
goto IL_01b6;
}
}
{
List_1_t610995BF9B0DCC99DF41C7D0D54AA44EF8552AE9 * L_61 = V_3;
Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422 * L_62 = (Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422 *)il2cpp_codegen_object_new(Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422_il2cpp_TypeInfo_var);
Func_2__ctor_m58DDD084DBBB1A509257D8D2463AE5B269E9D979(L_62, __this, (intptr_t)((intptr_t)DefaultContractResolver_ShouldSerializeEntityMember_m13222E0E263D4D58795BE5F0FDC09F7E53704B25_RuntimeMethod_var), /*hidden argument*/Func_2__ctor_m58DDD084DBBB1A509257D8D2463AE5B269E9D979_RuntimeMethod_var);
RuntimeObject* L_63 = Enumerable_Where_TisMemberInfo_t_m671B17003622EEB0584286D7B36E212C1279FAC3(L_61, L_62, /*hidden argument*/Enumerable_Where_TisMemberInfo_t_m671B17003622EEB0584286D7B36E212C1279FAC3_RuntimeMethod_var);
List_1_t610995BF9B0DCC99DF41C7D0D54AA44EF8552AE9 * L_64 = Enumerable_ToList_TisMemberInfo_t_m7A213F8EE97FCD65CB42A50AB6108A97C365DCCF(L_63, /*hidden argument*/Enumerable_ToList_TisMemberInfo_t_m7A213F8EE97FCD65CB42A50AB6108A97C365DCCF_RuntimeMethod_var);
V_3 = L_64;
goto IL_01b6;
}
IL_016c:
{
List_1_t610995BF9B0DCC99DF41C7D0D54AA44EF8552AE9 * L_65 = V_2;
NullCheck(L_65);
Enumerator_t485345BBD355ED7025F8E5EA8AF95F42AC192DCE L_66 = List_1_GetEnumerator_mFEF2B830CDDC70282149401E9A5B02BF87E05640(L_65, /*hidden argument*/List_1_GetEnumerator_mFEF2B830CDDC70282149401E9A5B02BF87E05640_RuntimeMethod_var);
V_7 = L_66;
}
IL_0174:
try
{ // begin try (depth: 1)
{
goto IL_019d;
}
IL_0176:
{
MemberInfo_t * L_67 = Enumerator_get_Current_m479DA5158B45BF087D2F8DC029031FFF732A7B00_inline((Enumerator_t485345BBD355ED7025F8E5EA8AF95F42AC192DCE *)(&V_7), /*hidden argument*/Enumerator_get_Current_m479DA5158B45BF087D2F8DC029031FFF732A7B00_RuntimeMethod_var);
V_9 = L_67;
MemberInfo_t * L_68 = V_9;
V_10 = ((FieldInfo_t *)IsInstClass((RuntimeObject*)L_68, FieldInfo_t_il2cpp_TypeInfo_var));
FieldInfo_t * L_69 = V_10;
if (!L_69)
{
goto IL_019d;
}
}
IL_018c:
{
FieldInfo_t * L_70 = V_10;
NullCheck(L_70);
bool L_71 = FieldInfo_get_IsStatic_mDEB4099D238E5846246F0ACED3FF9AD9C93D8ECA(L_70, /*hidden argument*/NULL);
if (L_71)
{
goto IL_019d;
}
}
IL_0195:
{
List_1_t610995BF9B0DCC99DF41C7D0D54AA44EF8552AE9 * L_72 = V_3;
MemberInfo_t * L_73 = V_9;
NullCheck(L_72);
List_1_Add_m44D5E54D0DA87DBF2841553D62C0FC3376B90ACB(L_72, L_73, /*hidden argument*/List_1_Add_m44D5E54D0DA87DBF2841553D62C0FC3376B90ACB_RuntimeMethod_var);
}
IL_019d:
{
bool L_74 = Enumerator_MoveNext_m5A102BF020B7804F89B69697EC3D0569F81A3205((Enumerator_t485345BBD355ED7025F8E5EA8AF95F42AC192DCE *)(&V_7), /*hidden argument*/Enumerator_MoveNext_m5A102BF020B7804F89B69697EC3D0569F81A3205_RuntimeMethod_var);
if (L_74)
{
goto IL_0176;
}
}
IL_01a6:
{
IL2CPP_LEAVE(0x1B6, FINALLY_01a8);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_01a8;
}
FINALLY_01a8:
{ // begin finally (depth: 1)
Enumerator_Dispose_mE9CDCD8C0406CFD21812928A31C5898C38218AB2((Enumerator_t485345BBD355ED7025F8E5EA8AF95F42AC192DCE *)(&V_7), /*hidden argument*/Enumerator_Dispose_mE9CDCD8C0406CFD21812928A31C5898C38218AB2_RuntimeMethod_var);
IL2CPP_END_FINALLY(424)
} // end finally (depth: 1)
IL2CPP_CLEANUP(424)
{
IL2CPP_JUMP_TBL(0x1B6, IL_01b6)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_01b6:
{
List_1_t610995BF9B0DCC99DF41C7D0D54AA44EF8552AE9 * L_75 = V_3;
return L_75;
}
}
// System.Boolean Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::ShouldSerializeEntityMember(System.Reflection.MemberInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DefaultContractResolver_ShouldSerializeEntityMember_m13222E0E263D4D58795BE5F0FDC09F7E53704B25 (DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0 * __this, MemberInfo_t * ___memberInfo0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultContractResolver_ShouldSerializeEntityMember_m13222E0E263D4D58795BE5F0FDC09F7E53704B25_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
PropertyInfo_t * V_0 = NULL;
{
MemberInfo_t * L_0 = ___memberInfo0;
V_0 = ((PropertyInfo_t *)IsInstClass((RuntimeObject*)L_0, PropertyInfo_t_il2cpp_TypeInfo_var));
PropertyInfo_t * L_1 = V_0;
if (!L_1)
{
goto IL_0035;
}
}
{
PropertyInfo_t * L_2 = V_0;
NullCheck(L_2);
Type_t * L_3 = VirtFuncInvoker0< Type_t * >::Invoke(20 /* System.Type System.Reflection.PropertyInfo::get_PropertyType() */, L_2);
bool L_4 = TypeExtensions_IsGenericType_m187F153940B59E33DB80464C8D55569BFD18402E(L_3, /*hidden argument*/NULL);
if (!L_4)
{
goto IL_0035;
}
}
{
PropertyInfo_t * L_5 = V_0;
NullCheck(L_5);
Type_t * L_6 = VirtFuncInvoker0< Type_t * >::Invoke(20 /* System.Type System.Reflection.PropertyInfo::get_PropertyType() */, L_5);
NullCheck(L_6);
Type_t * L_7 = VirtFuncInvoker0< Type_t * >::Invoke(108 /* System.Type System.Type::GetGenericTypeDefinition() */, L_6);
NullCheck(L_7);
String_t* L_8 = VirtFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Type::get_FullName() */, L_7);
bool L_9 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_8, _stringLiteralDA424AC680172C57265DA84D2769660125CB4546, /*hidden argument*/NULL);
if (!L_9)
{
goto IL_0035;
}
}
{
return (bool)0;
}
IL_0035:
{
return (bool)1;
}
}
// Valve.Newtonsoft.Json.Serialization.JsonObjectContract Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::CreateObjectContract(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonObjectContract_tC08A0614773A277BE2FACD612729195811D606B5 * DefaultContractResolver_CreateObjectContract_mE247AA902C332734D87E3DC945CFAB05EDE8FE43 (DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0 * __this, Type_t * ___objectType0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultContractResolver_CreateObjectContract_mE247AA902C332734D87E3DC945CFAB05EDE8FE43_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
JsonObjectContract_tC08A0614773A277BE2FACD612729195811D606B5 * V_0 = NULL;
bool V_1 = false;
JsonObjectAttribute_tBFAF1467CED5A13D2048CF8E61AEEEC05413CC62 * V_2 = NULL;
MemberInfo_t * V_3 = NULL;
ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * V_4 = NULL;
ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * V_5 = NULL;
{
Type_t * L_0 = ___objectType0;
JsonObjectContract_tC08A0614773A277BE2FACD612729195811D606B5 * L_1 = (JsonObjectContract_tC08A0614773A277BE2FACD612729195811D606B5 *)il2cpp_codegen_object_new(JsonObjectContract_tC08A0614773A277BE2FACD612729195811D606B5_il2cpp_TypeInfo_var);
JsonObjectContract__ctor_m5319DA76CBB1FF6AA8B3879D93E281EB44E2D3FF(L_1, L_0, /*hidden argument*/NULL);
V_0 = L_1;
JsonObjectContract_tC08A0614773A277BE2FACD612729195811D606B5 * L_2 = V_0;
DefaultContractResolver_InitializeContract_mC72BF19CFC13D483F2BD52C1825F01350DDBF749(__this, L_2, /*hidden argument*/NULL);
bool L_3 = DefaultContractResolver_get_IgnoreSerializableAttribute_mA16EC5B2658D11EC6DC88B5D69D4F503BCFD89AC_inline(__this, /*hidden argument*/NULL);
V_1 = L_3;
JsonObjectContract_tC08A0614773A277BE2FACD612729195811D606B5 * L_4 = V_0;
JsonObjectContract_tC08A0614773A277BE2FACD612729195811D606B5 * L_5 = V_0;
NullCheck(L_5);
Type_t * L_6 = ((JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 *)L_5)->get_NonNullableUnderlyingType_3();
bool L_7 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(JsonTypeReflector_tC161A1BF2506AB16B738C3935C2691A92B7A8C55_il2cpp_TypeInfo_var);
int32_t L_8 = JsonTypeReflector_GetObjectMemberSerialization_m352B80C91A5553DFFEB61B2887EC14E05FD09D9F(L_6, L_7, /*hidden argument*/NULL);
NullCheck(L_4);
JsonObjectContract_set_MemberSerialization_mEC12A9E2B798DDDA5625E899B57B640435B87113_inline(L_4, L_8, /*hidden argument*/NULL);
JsonObjectContract_tC08A0614773A277BE2FACD612729195811D606B5 * L_9 = V_0;
NullCheck(L_9);
JsonPropertyCollection_tC08CC5508836C9712A08DDE9E2BC413BD3A61715 * L_10 = JsonObjectContract_get_Properties_mDF4C6B62A6E7827416EF14490F4F966C94EA47E7_inline(L_9, /*hidden argument*/NULL);
JsonObjectContract_tC08A0614773A277BE2FACD612729195811D606B5 * L_11 = V_0;
NullCheck(L_11);
Type_t * L_12 = ((JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 *)L_11)->get_NonNullableUnderlyingType_3();
JsonObjectContract_tC08A0614773A277BE2FACD612729195811D606B5 * L_13 = V_0;
NullCheck(L_13);
int32_t L_14 = JsonObjectContract_get_MemberSerialization_m613A7C5F80AF3F817B55EB6E250C3A084CF254C9_inline(L_13, /*hidden argument*/NULL);
RuntimeObject* L_15 = VirtFuncInvoker2< RuntimeObject*, Type_t *, int32_t >::Invoke(18 /* System.Collections.Generic.IList`1<Valve.Newtonsoft.Json.Serialization.JsonProperty> Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::CreateProperties(System.Type,Valve.Newtonsoft.Json.MemberSerialization) */, __this, L_12, L_14);
CollectionUtils_AddRange_TisJsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB_m7969A4E6532E739B4C49A481435E53FCFC7D8106(L_10, L_15, /*hidden argument*/CollectionUtils_AddRange_TisJsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB_m7969A4E6532E739B4C49A481435E53FCFC7D8106_RuntimeMethod_var);
JsonObjectContract_tC08A0614773A277BE2FACD612729195811D606B5 * L_16 = V_0;
NullCheck(L_16);
Type_t * L_17 = ((JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 *)L_16)->get_NonNullableUnderlyingType_3();
JsonObjectAttribute_tBFAF1467CED5A13D2048CF8E61AEEEC05413CC62 * L_18 = JsonTypeReflector_GetCachedAttribute_TisJsonObjectAttribute_tBFAF1467CED5A13D2048CF8E61AEEEC05413CC62_mFFBA00B0579B6472C115CA65EB4EDCA60AF54A10(L_17, /*hidden argument*/JsonTypeReflector_GetCachedAttribute_TisJsonObjectAttribute_tBFAF1467CED5A13D2048CF8E61AEEEC05413CC62_mFFBA00B0579B6472C115CA65EB4EDCA60AF54A10_RuntimeMethod_var);
V_2 = L_18;
JsonObjectAttribute_tBFAF1467CED5A13D2048CF8E61AEEEC05413CC62 * L_19 = V_2;
if (!L_19)
{
goto IL_005f;
}
}
{
JsonObjectContract_tC08A0614773A277BE2FACD612729195811D606B5 * L_20 = V_0;
JsonObjectAttribute_tBFAF1467CED5A13D2048CF8E61AEEEC05413CC62 * L_21 = V_2;
NullCheck(L_21);
Nullable_1_t240C94038A74304286AD4C81EAEFD24E6E435A06 L_22 = L_21->get__itemRequired_10();
NullCheck(L_20);
JsonObjectContract_set_ItemRequired_m384A5E1AD0F12835F2523DCBC53495D9747394A2_inline(L_20, L_22, /*hidden argument*/NULL);
}
IL_005f:
{
JsonObjectContract_tC08A0614773A277BE2FACD612729195811D606B5 * L_23 = V_0;
NullCheck(L_23);
bool L_24 = ((JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 *)L_23)->get_IsInstantiable_8();
if (!L_24)
{
goto IL_0106;
}
}
{
JsonObjectContract_tC08A0614773A277BE2FACD612729195811D606B5 * L_25 = V_0;
NullCheck(L_25);
Type_t * L_26 = ((JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 *)L_25)->get_NonNullableUnderlyingType_3();
ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * L_27 = DefaultContractResolver_GetAttributeConstructor_m7948A333399831BA741E4E498319B86A299DBC50(__this, L_26, /*hidden argument*/NULL);
V_4 = L_27;
ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * L_28 = V_4;
if (!L_28)
{
goto IL_009f;
}
}
{
JsonObjectContract_tC08A0614773A277BE2FACD612729195811D606B5 * L_29 = V_0;
ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * L_30 = V_4;
NullCheck(L_29);
JsonObjectContract_set_OverrideConstructor_m043A36DD0DB398D56A6CB28695026216A901204A(L_29, L_30, /*hidden argument*/NULL);
JsonObjectContract_tC08A0614773A277BE2FACD612729195811D606B5 * L_31 = V_0;
NullCheck(L_31);
JsonPropertyCollection_tC08CC5508836C9712A08DDE9E2BC413BD3A61715 * L_32 = JsonObjectContract_get_CreatorParameters_mCF70C7BD9C3B243D1E0D332B324DEBF5844585E2(L_31, /*hidden argument*/NULL);
ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * L_33 = V_4;
JsonObjectContract_tC08A0614773A277BE2FACD612729195811D606B5 * L_34 = V_0;
NullCheck(L_34);
JsonPropertyCollection_tC08CC5508836C9712A08DDE9E2BC413BD3A61715 * L_35 = JsonObjectContract_get_Properties_mDF4C6B62A6E7827416EF14490F4F966C94EA47E7_inline(L_34, /*hidden argument*/NULL);
RuntimeObject* L_36 = VirtFuncInvoker2< RuntimeObject*, ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF *, JsonPropertyCollection_tC08CC5508836C9712A08DDE9E2BC413BD3A61715 * >::Invoke(8 /* System.Collections.Generic.IList`1<Valve.Newtonsoft.Json.Serialization.JsonProperty> Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::CreateConstructorParameters(System.Reflection.ConstructorInfo,Valve.Newtonsoft.Json.Serialization.JsonPropertyCollection) */, __this, L_33, L_35);
CollectionUtils_AddRange_TisJsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB_m7969A4E6532E739B4C49A481435E53FCFC7D8106(L_32, L_36, /*hidden argument*/CollectionUtils_AddRange_TisJsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB_m7969A4E6532E739B4C49A481435E53FCFC7D8106_RuntimeMethod_var);
goto IL_0106;
}
IL_009f:
{
JsonObjectContract_tC08A0614773A277BE2FACD612729195811D606B5 * L_37 = V_0;
NullCheck(L_37);
int32_t L_38 = JsonObjectContract_get_MemberSerialization_m613A7C5F80AF3F817B55EB6E250C3A084CF254C9_inline(L_37, /*hidden argument*/NULL);
if ((!(((uint32_t)L_38) == ((uint32_t)2))))
{
goto IL_00c3;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(JsonTypeReflector_tC161A1BF2506AB16B738C3935C2691A92B7A8C55_il2cpp_TypeInfo_var);
bool L_39 = JsonTypeReflector_get_FullyTrusted_m8916B2D46C1717E6F353E5DD25F64EF018E13B79(/*hidden argument*/NULL);
if (!L_39)
{
goto IL_0106;
}
}
{
JsonObjectContract_tC08A0614773A277BE2FACD612729195811D606B5 * L_40 = V_0;
JsonObjectContract_tC08A0614773A277BE2FACD612729195811D606B5 * L_41 = V_0;
Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 * L_42 = (Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 *)il2cpp_codegen_object_new(Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386_il2cpp_TypeInfo_var);
Func_1__ctor_mE02699FC76D830943069F8FC19D16C3B72A98A1F(L_42, L_41, (intptr_t)((intptr_t)JsonObjectContract_GetUninitializedObject_m2AD70490AA404DD18B3D2CFDF1682C7432F51B7F_RuntimeMethod_var), /*hidden argument*/Func_1__ctor_mE02699FC76D830943069F8FC19D16C3B72A98A1F_RuntimeMethod_var);
NullCheck(L_40);
JsonContract_set_DefaultCreator_mCFA258FC6B3166F8C0DFCABCB8A8F8233704AF6E_inline(L_40, L_42, /*hidden argument*/NULL);
goto IL_0106;
}
IL_00c3:
{
JsonObjectContract_tC08A0614773A277BE2FACD612729195811D606B5 * L_43 = V_0;
NullCheck(L_43);
Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 * L_44 = JsonContract_get_DefaultCreator_mEC599F3E488D3176FBD5D23A13ADF5F548A9749F_inline(L_43, /*hidden argument*/NULL);
if (!L_44)
{
goto IL_00d3;
}
}
{
JsonObjectContract_tC08A0614773A277BE2FACD612729195811D606B5 * L_45 = V_0;
NullCheck(L_45);
bool L_46 = JsonContract_get_DefaultCreatorNonPublic_m16E06A91D081B642B9134CE51AC57A887269FAEE_inline(L_45, /*hidden argument*/NULL);
if (!L_46)
{
goto IL_0106;
}
}
IL_00d3:
{
JsonObjectContract_tC08A0614773A277BE2FACD612729195811D606B5 * L_47 = V_0;
NullCheck(L_47);
Type_t * L_48 = ((JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 *)L_47)->get_NonNullableUnderlyingType_3();
ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * L_49 = DefaultContractResolver_GetParameterizedConstructor_mE487EB54B281EB43B3F1DEEB8143F2188E305564(__this, L_48, /*hidden argument*/NULL);
V_5 = L_49;
ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * L_50 = V_5;
if (!L_50)
{
goto IL_0106;
}
}
{
JsonObjectContract_tC08A0614773A277BE2FACD612729195811D606B5 * L_51 = V_0;
ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * L_52 = V_5;
NullCheck(L_51);
JsonObjectContract_set_ParametrizedConstructor_m6BB49756EA92A768700AD141BF50FDA4FF513FEB(L_51, L_52, /*hidden argument*/NULL);
JsonObjectContract_tC08A0614773A277BE2FACD612729195811D606B5 * L_53 = V_0;
NullCheck(L_53);
JsonPropertyCollection_tC08CC5508836C9712A08DDE9E2BC413BD3A61715 * L_54 = JsonObjectContract_get_CreatorParameters_mCF70C7BD9C3B243D1E0D332B324DEBF5844585E2(L_53, /*hidden argument*/NULL);
ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * L_55 = V_5;
JsonObjectContract_tC08A0614773A277BE2FACD612729195811D606B5 * L_56 = V_0;
NullCheck(L_56);
JsonPropertyCollection_tC08CC5508836C9712A08DDE9E2BC413BD3A61715 * L_57 = JsonObjectContract_get_Properties_mDF4C6B62A6E7827416EF14490F4F966C94EA47E7_inline(L_56, /*hidden argument*/NULL);
RuntimeObject* L_58 = VirtFuncInvoker2< RuntimeObject*, ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF *, JsonPropertyCollection_tC08CC5508836C9712A08DDE9E2BC413BD3A61715 * >::Invoke(8 /* System.Collections.Generic.IList`1<Valve.Newtonsoft.Json.Serialization.JsonProperty> Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::CreateConstructorParameters(System.Reflection.ConstructorInfo,Valve.Newtonsoft.Json.Serialization.JsonPropertyCollection) */, __this, L_55, L_57);
CollectionUtils_AddRange_TisJsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB_m7969A4E6532E739B4C49A481435E53FCFC7D8106(L_54, L_58, /*hidden argument*/CollectionUtils_AddRange_TisJsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB_m7969A4E6532E739B4C49A481435E53FCFC7D8106_RuntimeMethod_var);
}
IL_0106:
{
JsonObjectContract_tC08A0614773A277BE2FACD612729195811D606B5 * L_59 = V_0;
NullCheck(L_59);
Type_t * L_60 = ((JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 *)L_59)->get_NonNullableUnderlyingType_3();
MemberInfo_t * L_61 = DefaultContractResolver_GetExtensionDataMemberForType_m749CA4710908A48EFEE948FAA0C57C9F156FA763(__this, L_60, /*hidden argument*/NULL);
V_3 = L_61;
MemberInfo_t * L_62 = V_3;
if (!L_62)
{
goto IL_011d;
}
}
{
JsonObjectContract_tC08A0614773A277BE2FACD612729195811D606B5 * L_63 = V_0;
MemberInfo_t * L_64 = V_3;
IL2CPP_RUNTIME_CLASS_INIT(DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0_il2cpp_TypeInfo_var);
DefaultContractResolver_SetExtensionDataDelegates_m98D75D56A50EE016652E1A2496BD192B65391103(L_63, L_64, /*hidden argument*/NULL);
}
IL_011d:
{
JsonObjectContract_tC08A0614773A277BE2FACD612729195811D606B5 * L_65 = V_0;
return L_65;
}
}
// System.Reflection.MemberInfo Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::GetExtensionDataMemberForType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MemberInfo_t * DefaultContractResolver_GetExtensionDataMemberForType_m749CA4710908A48EFEE948FAA0C57C9F156FA763 (DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0 * __this, Type_t * ___type0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultContractResolver_GetExtensionDataMemberForType_m749CA4710908A48EFEE948FAA0C57C9F156FA763_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Func_2_t29F202ACCD37C598BCE6BF369E5B1493D173132A * G_B2_0 = NULL;
List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * G_B2_1 = NULL;
Func_2_t29F202ACCD37C598BCE6BF369E5B1493D173132A * G_B1_0 = NULL;
List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * G_B1_1 = NULL;
Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422 * G_B4_0 = NULL;
RuntimeObject* G_B4_1 = NULL;
Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422 * G_B3_0 = NULL;
RuntimeObject* G_B3_1 = NULL;
{
Type_t * L_0 = ___type0;
List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * L_1 = DefaultContractResolver_GetClassHierarchyForType_mB2C0F793AEC5EC4C1495F0972B81A887F407D9E5(__this, L_0, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A_il2cpp_TypeInfo_var);
Func_2_t29F202ACCD37C598BCE6BF369E5B1493D173132A * L_2 = ((U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A_il2cpp_TypeInfo_var))->get_U3CU3E9__37_0_3();
Func_2_t29F202ACCD37C598BCE6BF369E5B1493D173132A * L_3 = L_2;
G_B1_0 = L_3;
G_B1_1 = L_1;
if (L_3)
{
G_B2_0 = L_3;
G_B2_1 = L_1;
goto IL_0026;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A_il2cpp_TypeInfo_var);
U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A * L_4 = ((U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A_il2cpp_TypeInfo_var))->get_U3CU3E9_0();
Func_2_t29F202ACCD37C598BCE6BF369E5B1493D173132A * L_5 = (Func_2_t29F202ACCD37C598BCE6BF369E5B1493D173132A *)il2cpp_codegen_object_new(Func_2_t29F202ACCD37C598BCE6BF369E5B1493D173132A_il2cpp_TypeInfo_var);
Func_2__ctor_mFD031D4728B03AEA457A29E691DE1ACBA26C0FC9(L_5, L_4, (intptr_t)((intptr_t)U3CU3Ec_U3CGetExtensionDataMemberForTypeU3Eb__37_0_mCDBAEA047930E5FFA8766B0FEE0C692AA6BDCB9E_RuntimeMethod_var), /*hidden argument*/Func_2__ctor_mFD031D4728B03AEA457A29E691DE1ACBA26C0FC9_RuntimeMethod_var);
Func_2_t29F202ACCD37C598BCE6BF369E5B1493D173132A * L_6 = L_5;
((U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A_il2cpp_TypeInfo_var))->set_U3CU3E9__37_0_3(L_6);
G_B2_0 = L_6;
G_B2_1 = G_B1_1;
}
IL_0026:
{
RuntimeObject* L_7 = Enumerable_SelectMany_TisType_t_TisMemberInfo_t_m4C2DC99E9641A40C5E24A32DB7895355A98ECA96(G_B2_1, G_B2_0, /*hidden argument*/Enumerable_SelectMany_TisType_t_TisMemberInfo_t_m4C2DC99E9641A40C5E24A32DB7895355A98ECA96_RuntimeMethod_var);
IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A_il2cpp_TypeInfo_var);
Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422 * L_8 = ((U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A_il2cpp_TypeInfo_var))->get_U3CU3E9__37_1_4();
Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422 * L_9 = L_8;
G_B3_0 = L_9;
G_B3_1 = L_7;
if (L_9)
{
G_B4_0 = L_9;
G_B4_1 = L_7;
goto IL_004a;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A_il2cpp_TypeInfo_var);
U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A * L_10 = ((U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A_il2cpp_TypeInfo_var))->get_U3CU3E9_0();
Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422 * L_11 = (Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422 *)il2cpp_codegen_object_new(Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422_il2cpp_TypeInfo_var);
Func_2__ctor_m58DDD084DBBB1A509257D8D2463AE5B269E9D979(L_11, L_10, (intptr_t)((intptr_t)U3CU3Ec_U3CGetExtensionDataMemberForTypeU3Eb__37_1_m085CC1DCE095C1BB69D1EEFE71CD24595D7FDFF9_RuntimeMethod_var), /*hidden argument*/Func_2__ctor_m58DDD084DBBB1A509257D8D2463AE5B269E9D979_RuntimeMethod_var);
Func_2_tAAE9C7C218FB19430A4E3DF0E3281ECED849B422 * L_12 = L_11;
((U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A_il2cpp_TypeInfo_var))->set_U3CU3E9__37_1_4(L_12);
G_B4_0 = L_12;
G_B4_1 = G_B3_1;
}
IL_004a:
{
MemberInfo_t * L_13 = Enumerable_LastOrDefault_TisMemberInfo_t_mB68CF49DBC1516E24EABF9C6634563E8DBE6FD4D(G_B4_1, G_B4_0, /*hidden argument*/Enumerable_LastOrDefault_TisMemberInfo_t_mB68CF49DBC1516E24EABF9C6634563E8DBE6FD4D_RuntimeMethod_var);
return L_13;
}
}
// System.Void Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::SetExtensionDataDelegates(Valve.Newtonsoft.Json.Serialization.JsonObjectContract,System.Reflection.MemberInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultContractResolver_SetExtensionDataDelegates_m98D75D56A50EE016652E1A2496BD192B65391103 (JsonObjectContract_tC08A0614773A277BE2FACD612729195811D606B5 * ___contract0, MemberInfo_t * ___member1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultContractResolver_SetExtensionDataDelegates_m98D75D56A50EE016652E1A2496BD192B65391103_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
U3CU3Ec__DisplayClass38_0_t31ED35E7ECFD78ECE1228AF29488F148585F4667 * V_0 = NULL;
JsonExtensionDataAttribute_tC858B08E1ACE700629982E390F2FDA7A0580C208 * V_1 = NULL;
Type_t * V_2 = NULL;
Type_t * V_3 = NULL;
Type_t * V_4 = NULL;
Type_t * V_5 = NULL;
Type_t * V_6 = NULL;
U3CU3Ec__DisplayClass38_1_tEB927264D5D83E106F29B33B1F933603E793D80E * V_7 = NULL;
MethodInfo_t * V_8 = NULL;
ExtensionDataSetter_t887F53572558DF1949C2035B2EC92D39343FE586 * V_9 = NULL;
U3CU3Ec__DisplayClass38_2_t8AE307029E0A48708782194185E7E43CE1EAAD60 * V_10 = NULL;
ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * V_11 = NULL;
ExtensionDataGetter_t6CC1D4868317A6C03ADA77795B2563E77D993860 * V_12 = NULL;
U3CU3Ec__DisplayClass38_1_tEB927264D5D83E106F29B33B1F933603E793D80E * G_B8_0 = NULL;
U3CU3Ec__DisplayClass38_1_tEB927264D5D83E106F29B33B1F933603E793D80E * G_B7_0 = NULL;
Action_2_t0DB6FD6F515527EAB552B690A291778C6F00D48C * G_B9_0 = NULL;
U3CU3Ec__DisplayClass38_1_tEB927264D5D83E106F29B33B1F933603E793D80E * G_B9_1 = NULL;
{
U3CU3Ec__DisplayClass38_0_t31ED35E7ECFD78ECE1228AF29488F148585F4667 * L_0 = (U3CU3Ec__DisplayClass38_0_t31ED35E7ECFD78ECE1228AF29488F148585F4667 *)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass38_0_t31ED35E7ECFD78ECE1228AF29488F148585F4667_il2cpp_TypeInfo_var);
U3CU3Ec__DisplayClass38_0__ctor_m0053D7D584A80A955B8788CFD642EB173CC7C609(L_0, /*hidden argument*/NULL);
V_0 = L_0;
U3CU3Ec__DisplayClass38_0_t31ED35E7ECFD78ECE1228AF29488F148585F4667 * L_1 = V_0;
MemberInfo_t * L_2 = ___member1;
NullCheck(L_1);
L_1->set_member_1(L_2);
U3CU3Ec__DisplayClass38_0_t31ED35E7ECFD78ECE1228AF29488F148585F4667 * L_3 = V_0;
NullCheck(L_3);
MemberInfo_t * L_4 = L_3->get_member_1();
IL2CPP_RUNTIME_CLASS_INIT(ReflectionUtils_t1845D588ADA15C351615E925042ECF790B622987_il2cpp_TypeInfo_var);
JsonExtensionDataAttribute_tC858B08E1ACE700629982E390F2FDA7A0580C208 * L_5 = ReflectionUtils_GetAttribute_TisJsonExtensionDataAttribute_tC858B08E1ACE700629982E390F2FDA7A0580C208_m39DA5BEFA21B8168DE32CA17A77A9C44FF9C8956(L_4, /*hidden argument*/ReflectionUtils_GetAttribute_TisJsonExtensionDataAttribute_tC858B08E1ACE700629982E390F2FDA7A0580C208_m39DA5BEFA21B8168DE32CA17A77A9C44FF9C8956_RuntimeMethod_var);
V_1 = L_5;
JsonExtensionDataAttribute_tC858B08E1ACE700629982E390F2FDA7A0580C208 * L_6 = V_1;
if (L_6)
{
goto IL_001d;
}
}
{
return;
}
IL_001d:
{
U3CU3Ec__DisplayClass38_0_t31ED35E7ECFD78ECE1228AF29488F148585F4667 * L_7 = V_0;
NullCheck(L_7);
MemberInfo_t * L_8 = L_7->get_member_1();
IL2CPP_RUNTIME_CLASS_INIT(ReflectionUtils_t1845D588ADA15C351615E925042ECF790B622987_il2cpp_TypeInfo_var);
Type_t * L_9 = ReflectionUtils_GetMemberUnderlyingType_m22BCFA3BF7FDF789A7801EB57F09CFF695A5A1AE(L_8, /*hidden argument*/NULL);
V_2 = L_9;
Type_t * L_10 = V_2;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_11 = { reinterpret_cast<intptr_t> (IDictionary_2_t422C090F714C36DDE0089AF96A98CBE6FC11EA06_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_12 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_11, /*hidden argument*/NULL);
ReflectionUtils_ImplementsGenericDefinition_m58DB3D664FDF436112B4EE8A4D653B53E01773B1(L_10, L_12, (Type_t **)(&V_3), /*hidden argument*/NULL);
Type_t * L_13 = V_3;
NullCheck(L_13);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_14 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(107 /* System.Type[] System.Type::GetGenericArguments() */, L_13);
NullCheck(L_14);
int32_t L_15 = 0;
Type_t * L_16 = (L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
V_4 = L_16;
Type_t * L_17 = V_3;
NullCheck(L_17);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_18 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(107 /* System.Type[] System.Type::GetGenericArguments() */, L_17);
NullCheck(L_18);
int32_t L_19 = 1;
Type_t * L_20 = (L_18)->GetAt(static_cast<il2cpp_array_size_t>(L_19));
V_5 = L_20;
Type_t * L_21 = V_2;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_22 = { reinterpret_cast<intptr_t> (IDictionary_2_t422C090F714C36DDE0089AF96A98CBE6FC11EA06_0_0_0_var) };
Type_t * L_23 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_22, /*hidden argument*/NULL);
bool L_24 = ReflectionUtils_IsGenericDefinition_m11708AE621627DC05121D7397E4A08B7570E962D(L_21, L_23, /*hidden argument*/NULL);
if (!L_24)
{
goto IL_0085;
}
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_25 = { reinterpret_cast<intptr_t> (Dictionary_2_tC3B7C172F472D2372732454922AB169C38E69CE9_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_26 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_25, /*hidden argument*/NULL);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_27 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)2);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_28 = L_27;
Type_t * L_29 = V_4;
NullCheck(L_28);
ArrayElementTypeCheck (L_28, L_29);
(L_28)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_29);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_30 = L_28;
Type_t * L_31 = V_5;
NullCheck(L_30);
ArrayElementTypeCheck (L_30, L_31);
(L_30)->SetAt(static_cast<il2cpp_array_size_t>(1), (Type_t *)L_31);
NullCheck(L_26);
Type_t * L_32 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(103 /* System.Type System.Type::MakeGenericType(System.Type[]) */, L_26, L_30);
V_6 = L_32;
goto IL_0088;
}
IL_0085:
{
Type_t * L_33 = V_2;
V_6 = L_33;
}
IL_0088:
{
U3CU3Ec__DisplayClass38_0_t31ED35E7ECFD78ECE1228AF29488F148585F4667 * L_34 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(JsonTypeReflector_tC161A1BF2506AB16B738C3935C2691A92B7A8C55_il2cpp_TypeInfo_var);
ReflectionDelegateFactory_t87E79CD61C3504844C338EEC1949177370F2029A * L_35 = JsonTypeReflector_get_ReflectionDelegateFactory_mAD718C1AD00934D6A3A5B334C5494929E45A8DC7(/*hidden argument*/NULL);
U3CU3Ec__DisplayClass38_0_t31ED35E7ECFD78ECE1228AF29488F148585F4667 * L_36 = V_0;
NullCheck(L_36);
MemberInfo_t * L_37 = L_36->get_member_1();
NullCheck(L_35);
Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 * L_38 = ReflectionDelegateFactory_CreateGet_TisRuntimeObject_m166AF4E86BA33EEBA827CA6E677F832942C2FD27(L_35, L_37, /*hidden argument*/ReflectionDelegateFactory_CreateGet_TisRuntimeObject_m166AF4E86BA33EEBA827CA6E677F832942C2FD27_RuntimeMethod_var);
NullCheck(L_34);
L_34->set_getExtensionDataDictionary_0(L_38);
JsonExtensionDataAttribute_tC858B08E1ACE700629982E390F2FDA7A0580C208 * L_39 = V_1;
NullCheck(L_39);
bool L_40 = JsonExtensionDataAttribute_get_ReadData_mDBD066FE73AB5AC1AC8077C85F6FE35E452D9681_inline(L_39, /*hidden argument*/NULL);
if (!L_40)
{
goto IL_0147;
}
}
{
U3CU3Ec__DisplayClass38_1_tEB927264D5D83E106F29B33B1F933603E793D80E * L_41 = (U3CU3Ec__DisplayClass38_1_tEB927264D5D83E106F29B33B1F933603E793D80E *)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass38_1_tEB927264D5D83E106F29B33B1F933603E793D80E_il2cpp_TypeInfo_var);
U3CU3Ec__DisplayClass38_1__ctor_mC0D60D876F0CE2742DB3497AA5A15B8DB2FFD553(L_41, /*hidden argument*/NULL);
V_7 = L_41;
U3CU3Ec__DisplayClass38_1_tEB927264D5D83E106F29B33B1F933603E793D80E * L_42 = V_7;
U3CU3Ec__DisplayClass38_0_t31ED35E7ECFD78ECE1228AF29488F148585F4667 * L_43 = V_0;
NullCheck(L_42);
L_42->set_CSU24U3CU3E8__locals1_3(L_43);
U3CU3Ec__DisplayClass38_1_tEB927264D5D83E106F29B33B1F933603E793D80E * L_44 = V_7;
U3CU3Ec__DisplayClass38_1_tEB927264D5D83E106F29B33B1F933603E793D80E * L_45 = V_7;
NullCheck(L_45);
U3CU3Ec__DisplayClass38_0_t31ED35E7ECFD78ECE1228AF29488F148585F4667 * L_46 = L_45->get_CSU24U3CU3E8__locals1_3();
NullCheck(L_46);
MemberInfo_t * L_47 = L_46->get_member_1();
IL2CPP_RUNTIME_CLASS_INIT(ReflectionUtils_t1845D588ADA15C351615E925042ECF790B622987_il2cpp_TypeInfo_var);
bool L_48 = ReflectionUtils_CanSetMemberValue_mEB160257BB0AF0D73699286C7E01D01D18ECD14D(L_47, (bool)1, (bool)0, /*hidden argument*/NULL);
G_B7_0 = L_44;
if (L_48)
{
G_B8_0 = L_44;
goto IL_00d2;
}
}
{
G_B9_0 = ((Action_2_t0DB6FD6F515527EAB552B690A291778C6F00D48C *)(NULL));
G_B9_1 = G_B7_0;
goto IL_00e8;
}
IL_00d2:
{
IL2CPP_RUNTIME_CLASS_INIT(JsonTypeReflector_tC161A1BF2506AB16B738C3935C2691A92B7A8C55_il2cpp_TypeInfo_var);
ReflectionDelegateFactory_t87E79CD61C3504844C338EEC1949177370F2029A * L_49 = JsonTypeReflector_get_ReflectionDelegateFactory_mAD718C1AD00934D6A3A5B334C5494929E45A8DC7(/*hidden argument*/NULL);
U3CU3Ec__DisplayClass38_1_tEB927264D5D83E106F29B33B1F933603E793D80E * L_50 = V_7;
NullCheck(L_50);
U3CU3Ec__DisplayClass38_0_t31ED35E7ECFD78ECE1228AF29488F148585F4667 * L_51 = L_50->get_CSU24U3CU3E8__locals1_3();
NullCheck(L_51);
MemberInfo_t * L_52 = L_51->get_member_1();
NullCheck(L_49);
Action_2_t0DB6FD6F515527EAB552B690A291778C6F00D48C * L_53 = ReflectionDelegateFactory_CreateSet_TisRuntimeObject_mB53D97746F5CF11CB4A90CEDAA556F892464DC3A(L_49, L_52, /*hidden argument*/ReflectionDelegateFactory_CreateSet_TisRuntimeObject_mB53D97746F5CF11CB4A90CEDAA556F892464DC3A_RuntimeMethod_var);
G_B9_0 = L_53;
G_B9_1 = G_B8_0;
}
IL_00e8:
{
NullCheck(G_B9_1);
G_B9_1->set_setExtensionDataDictionary_0(G_B9_0);
U3CU3Ec__DisplayClass38_1_tEB927264D5D83E106F29B33B1F933603E793D80E * L_54 = V_7;
IL2CPP_RUNTIME_CLASS_INIT(JsonTypeReflector_tC161A1BF2506AB16B738C3935C2691A92B7A8C55_il2cpp_TypeInfo_var);
ReflectionDelegateFactory_t87E79CD61C3504844C338EEC1949177370F2029A * L_55 = JsonTypeReflector_get_ReflectionDelegateFactory_mAD718C1AD00934D6A3A5B334C5494929E45A8DC7(/*hidden argument*/NULL);
Type_t * L_56 = V_6;
NullCheck(L_55);
Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 * L_57 = GenericVirtFuncInvoker1< Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 *, Type_t * >::Invoke(ReflectionDelegateFactory_CreateDefaultConstructor_TisRuntimeObject_mEB50AB99BFE09A72034A8DED50F464F83BF7B81A_RuntimeMethod_var, L_55, L_56);
NullCheck(L_54);
L_54->set_createExtensionDataDictionary_1(L_57);
Type_t * L_58 = V_2;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_59 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)2);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_60 = L_59;
Type_t * L_61 = V_4;
NullCheck(L_60);
ArrayElementTypeCheck (L_60, L_61);
(L_60)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_61);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_62 = L_60;
Type_t * L_63 = V_5;
NullCheck(L_62);
ArrayElementTypeCheck (L_62, L_63);
(L_62)->SetAt(static_cast<il2cpp_array_size_t>(1), (Type_t *)L_63);
NullCheck(L_58);
MethodInfo_t * L_64 = Type_GetMethod_m54E1EF62AFF44AA621E074D123C5C0B3E73A7DD5(L_58, _stringLiteral61CC55AA0453184734C3FA0B621EDA6FA874BD83, L_62, /*hidden argument*/NULL);
V_8 = L_64;
U3CU3Ec__DisplayClass38_1_tEB927264D5D83E106F29B33B1F933603E793D80E * L_65 = V_7;
ReflectionDelegateFactory_t87E79CD61C3504844C338EEC1949177370F2029A * L_66 = JsonTypeReflector_get_ReflectionDelegateFactory_mAD718C1AD00934D6A3A5B334C5494929E45A8DC7(/*hidden argument*/NULL);
MethodInfo_t * L_67 = V_8;
NullCheck(L_66);
MethodCall_2_t56986CA125FFF5F08B7842782AF0C0E8499096EC * L_68 = GenericVirtFuncInvoker1< MethodCall_2_t56986CA125FFF5F08B7842782AF0C0E8499096EC *, MethodBase_t * >::Invoke(ReflectionDelegateFactory_CreateMethodCall_TisRuntimeObject_m5D4F8691518AF4B8A5F9068F4A1E1C06AC3074E9_RuntimeMethod_var, L_66, L_67);
NullCheck(L_65);
L_65->set_setExtensionDataDictionaryValue_2(L_68);
U3CU3Ec__DisplayClass38_1_tEB927264D5D83E106F29B33B1F933603E793D80E * L_69 = V_7;
ExtensionDataSetter_t887F53572558DF1949C2035B2EC92D39343FE586 * L_70 = (ExtensionDataSetter_t887F53572558DF1949C2035B2EC92D39343FE586 *)il2cpp_codegen_object_new(ExtensionDataSetter_t887F53572558DF1949C2035B2EC92D39343FE586_il2cpp_TypeInfo_var);
ExtensionDataSetter__ctor_m5AAAF27B6B09525CF0D5F641C138F5FD9DAD0D3A(L_70, L_69, (intptr_t)((intptr_t)U3CU3Ec__DisplayClass38_1_U3CSetExtensionDataDelegatesU3Eb__0_m5DA3F48C3AE16C2C14020B331E7240788CD46CB1_RuntimeMethod_var), /*hidden argument*/NULL);
V_9 = L_70;
JsonObjectContract_tC08A0614773A277BE2FACD612729195811D606B5 * L_71 = ___contract0;
ExtensionDataSetter_t887F53572558DF1949C2035B2EC92D39343FE586 * L_72 = V_9;
NullCheck(L_71);
JsonObjectContract_set_ExtensionDataSetter_m784B3C7EB827EA14E5A87171C1066EB341DA64EB_inline(L_71, L_72, /*hidden argument*/NULL);
}
IL_0147:
{
JsonExtensionDataAttribute_tC858B08E1ACE700629982E390F2FDA7A0580C208 * L_73 = V_1;
NullCheck(L_73);
bool L_74 = JsonExtensionDataAttribute_get_WriteData_mA30CF92ECDD7B8C6D1A8F5D29CDE7FFEDD59CDFF_inline(L_73, /*hidden argument*/NULL);
if (!L_74)
{
goto IL_01b3;
}
}
{
U3CU3Ec__DisplayClass38_2_t8AE307029E0A48708782194185E7E43CE1EAAD60 * L_75 = (U3CU3Ec__DisplayClass38_2_t8AE307029E0A48708782194185E7E43CE1EAAD60 *)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass38_2_t8AE307029E0A48708782194185E7E43CE1EAAD60_il2cpp_TypeInfo_var);
U3CU3Ec__DisplayClass38_2__ctor_m9CEF89720ED8EACAAB47A775F3FD54C599F16846(L_75, /*hidden argument*/NULL);
V_10 = L_75;
U3CU3Ec__DisplayClass38_2_t8AE307029E0A48708782194185E7E43CE1EAAD60 * L_76 = V_10;
U3CU3Ec__DisplayClass38_0_t31ED35E7ECFD78ECE1228AF29488F148585F4667 * L_77 = V_0;
NullCheck(L_76);
L_76->set_CSU24U3CU3E8__locals2_1(L_77);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_78 = { reinterpret_cast<intptr_t> (EnumerableDictionaryWrapper_2_tEDED4680DEC1593C08C4D92507BED61202A002A4_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_79 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_78, /*hidden argument*/NULL);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_80 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)2);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_81 = L_80;
Type_t * L_82 = V_4;
NullCheck(L_81);
ArrayElementTypeCheck (L_81, L_82);
(L_81)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_82);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_83 = L_81;
Type_t * L_84 = V_5;
NullCheck(L_83);
ArrayElementTypeCheck (L_83, L_84);
(L_83)->SetAt(static_cast<il2cpp_array_size_t>(1), (Type_t *)L_84);
NullCheck(L_79);
Type_t * L_85 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(103 /* System.Type System.Type::MakeGenericType(System.Type[]) */, L_79, L_83);
NullCheck(L_85);
ConstructorInfoU5BU5D_t111EE7D53C51A47FE69FC3398DE007F7E100593E* L_86 = Type_GetConstructors_m674DDAF4A507C09F344455449273B71384D41CBD(L_85, /*hidden argument*/NULL);
ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * L_87 = Enumerable_First_TisConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF_m831AC1E4CE9601CF11E36159291087AD8EC0AB0D((RuntimeObject*)(RuntimeObject*)L_86, /*hidden argument*/Enumerable_First_TisConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF_m831AC1E4CE9601CF11E36159291087AD8EC0AB0D_RuntimeMethod_var);
V_11 = L_87;
U3CU3Ec__DisplayClass38_2_t8AE307029E0A48708782194185E7E43CE1EAAD60 * L_88 = V_10;
IL2CPP_RUNTIME_CLASS_INIT(JsonTypeReflector_tC161A1BF2506AB16B738C3935C2691A92B7A8C55_il2cpp_TypeInfo_var);
ReflectionDelegateFactory_t87E79CD61C3504844C338EEC1949177370F2029A * L_89 = JsonTypeReflector_get_ReflectionDelegateFactory_mAD718C1AD00934D6A3A5B334C5494929E45A8DC7(/*hidden argument*/NULL);
ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * L_90 = V_11;
NullCheck(L_89);
ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 * L_91 = VirtFuncInvoker1< ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 *, MethodBase_t * >::Invoke(5 /* Valve.Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object> Valve.Newtonsoft.Json.Utilities.ReflectionDelegateFactory::CreateParameterizedConstructor(System.Reflection.MethodBase) */, L_89, L_90);
NullCheck(L_88);
L_88->set_createEnumerableWrapper_0(L_91);
U3CU3Ec__DisplayClass38_2_t8AE307029E0A48708782194185E7E43CE1EAAD60 * L_92 = V_10;
ExtensionDataGetter_t6CC1D4868317A6C03ADA77795B2563E77D993860 * L_93 = (ExtensionDataGetter_t6CC1D4868317A6C03ADA77795B2563E77D993860 *)il2cpp_codegen_object_new(ExtensionDataGetter_t6CC1D4868317A6C03ADA77795B2563E77D993860_il2cpp_TypeInfo_var);
ExtensionDataGetter__ctor_mD67AFAC0A07BA876ADF2467C764379063F6319C2(L_93, L_92, (intptr_t)((intptr_t)U3CU3Ec__DisplayClass38_2_U3CSetExtensionDataDelegatesU3Eb__1_mF1E7C7DE90036720146209104B05B87A317255B8_RuntimeMethod_var), /*hidden argument*/NULL);
V_12 = L_93;
JsonObjectContract_tC08A0614773A277BE2FACD612729195811D606B5 * L_94 = ___contract0;
ExtensionDataGetter_t6CC1D4868317A6C03ADA77795B2563E77D993860 * L_95 = V_12;
NullCheck(L_94);
JsonObjectContract_set_ExtensionDataGetter_m8DB30A43CD750BDA1FC03D1A795474443426E9C9_inline(L_94, L_95, /*hidden argument*/NULL);
}
IL_01b3:
{
JsonObjectContract_tC08A0614773A277BE2FACD612729195811D606B5 * L_96 = ___contract0;
Type_t * L_97 = V_5;
NullCheck(L_96);
JsonObjectContract_set_ExtensionDataValueType_m6A6F8F47AF8C6AED64205FDCC914C79861B09D94(L_96, L_97, /*hidden argument*/NULL);
return;
}
}
// System.Reflection.ConstructorInfo Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::GetAttributeConstructor(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * DefaultContractResolver_GetAttributeConstructor_m7948A333399831BA741E4E498319B86A299DBC50 (DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0 * __this, Type_t * ___objectType0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultContractResolver_GetAttributeConstructor_m7948A333399831BA741E4E498319B86A299DBC50_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
Func_2_tE50BC1D78F3969472F5276AA4812403240D166E3 * G_B2_0 = NULL;
ConstructorInfoU5BU5D_t111EE7D53C51A47FE69FC3398DE007F7E100593E* G_B2_1 = NULL;
Func_2_tE50BC1D78F3969472F5276AA4812403240D166E3 * G_B1_0 = NULL;
ConstructorInfoU5BU5D_t111EE7D53C51A47FE69FC3398DE007F7E100593E* G_B1_1 = NULL;
{
Type_t * L_0 = ___objectType0;
NullCheck(L_0);
ConstructorInfoU5BU5D_t111EE7D53C51A47FE69FC3398DE007F7E100593E* L_1 = VirtFuncInvoker1< ConstructorInfoU5BU5D_t111EE7D53C51A47FE69FC3398DE007F7E100593E*, int32_t >::Invoke(36 /* System.Reflection.ConstructorInfo[] System.Type::GetConstructors(System.Reflection.BindingFlags) */, L_0, ((int32_t)52));
IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A_il2cpp_TypeInfo_var);
Func_2_tE50BC1D78F3969472F5276AA4812403240D166E3 * L_2 = ((U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A_il2cpp_TypeInfo_var))->get_U3CU3E9__40_0_5();
Func_2_tE50BC1D78F3969472F5276AA4812403240D166E3 * L_3 = L_2;
G_B1_0 = L_3;
G_B1_1 = L_1;
if (L_3)
{
G_B2_0 = L_3;
G_B2_1 = L_1;
goto IL_0027;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A_il2cpp_TypeInfo_var);
U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A * L_4 = ((U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A_il2cpp_TypeInfo_var))->get_U3CU3E9_0();
Func_2_tE50BC1D78F3969472F5276AA4812403240D166E3 * L_5 = (Func_2_tE50BC1D78F3969472F5276AA4812403240D166E3 *)il2cpp_codegen_object_new(Func_2_tE50BC1D78F3969472F5276AA4812403240D166E3_il2cpp_TypeInfo_var);
Func_2__ctor_m679DF06801567BA8DB71ABE62D8B691F4E7A5902(L_5, L_4, (intptr_t)((intptr_t)U3CU3Ec_U3CGetAttributeConstructorU3Eb__40_0_m2CC22F0D165CB97F54071A1A727AB8368C14AB9B_RuntimeMethod_var), /*hidden argument*/Func_2__ctor_m679DF06801567BA8DB71ABE62D8B691F4E7A5902_RuntimeMethod_var);
Func_2_tE50BC1D78F3969472F5276AA4812403240D166E3 * L_6 = L_5;
((U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A_il2cpp_TypeInfo_var))->set_U3CU3E9__40_0_5(L_6);
G_B2_0 = L_6;
G_B2_1 = G_B1_1;
}
IL_0027:
{
RuntimeObject* L_7 = Enumerable_Where_TisConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF_mBF4A0E19D89AC541592A04F6D5D4CCBDC631F7AB((RuntimeObject*)(RuntimeObject*)G_B2_1, G_B2_0, /*hidden argument*/Enumerable_Where_TisConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF_mBF4A0E19D89AC541592A04F6D5D4CCBDC631F7AB_RuntimeMethod_var);
List_1_t6CEA56ED94DFAE80FDAED89141EF7D6AB50F046E * L_8 = Enumerable_ToList_TisConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF_m911EC3D44A57E78BD6437D6928FBBE287F8489CC(L_7, /*hidden argument*/Enumerable_ToList_TisConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF_m911EC3D44A57E78BD6437D6928FBBE287F8489CC_RuntimeMethod_var);
V_0 = (RuntimeObject*)L_8;
RuntimeObject* L_9 = V_0;
NullCheck(L_9);
int32_t L_10 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<System.Reflection.ConstructorInfo>::get_Count() */, ICollection_1_t0EA00E24BE834F4965DA6E7B42EDAFD65F335AB5_il2cpp_TypeInfo_var, L_9);
if ((((int32_t)L_10) <= ((int32_t)1)))
{
goto IL_0046;
}
}
{
JsonException_tB1AABB3C8AE18D781A8A9A14CB03AF7AFEA33928 * L_11 = (JsonException_tB1AABB3C8AE18D781A8A9A14CB03AF7AFEA33928 *)il2cpp_codegen_object_new(JsonException_tB1AABB3C8AE18D781A8A9A14CB03AF7AFEA33928_il2cpp_TypeInfo_var);
JsonException__ctor_m6AA74CB38DE6808C894C51C26CA5FB64B861204A(L_11, _stringLiteral87939A07EC897F0F2037D0189EA34F80015CA3CC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, DefaultContractResolver_GetAttributeConstructor_m7948A333399831BA741E4E498319B86A299DBC50_RuntimeMethod_var);
}
IL_0046:
{
RuntimeObject* L_12 = V_0;
NullCheck(L_12);
int32_t L_13 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<System.Reflection.ConstructorInfo>::get_Count() */, ICollection_1_t0EA00E24BE834F4965DA6E7B42EDAFD65F335AB5_il2cpp_TypeInfo_var, L_12);
if ((!(((uint32_t)L_13) == ((uint32_t)1))))
{
goto IL_0057;
}
}
{
RuntimeObject* L_14 = V_0;
NullCheck(L_14);
ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * L_15 = InterfaceFuncInvoker1< ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF *, int32_t >::Invoke(0 /* !0 System.Collections.Generic.IList`1<System.Reflection.ConstructorInfo>::get_Item(System.Int32) */, IList_1_tB721E43B6FEF3D0C130DB8082B4D6DD600D5FF3E_il2cpp_TypeInfo_var, L_14, 0);
return L_15;
}
IL_0057:
{
Type_t * L_16 = ___objectType0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_17 = { reinterpret_cast<intptr_t> (Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_18 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_17, /*hidden argument*/NULL);
if ((!(((RuntimeObject*)(Type_t *)L_16) == ((RuntimeObject*)(Type_t *)L_18))))
{
goto IL_00a5;
}
}
{
Type_t * L_19 = ___objectType0;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_20 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)4);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_21 = L_20;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_22 = { reinterpret_cast<intptr_t> (Int32_t585191389E07734F19F3156FF88FB3EF4800D102_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_23 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_22, /*hidden argument*/NULL);
NullCheck(L_21);
ArrayElementTypeCheck (L_21, L_23);
(L_21)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_23);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_24 = L_21;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_25 = { reinterpret_cast<intptr_t> (Int32_t585191389E07734F19F3156FF88FB3EF4800D102_0_0_0_var) };
Type_t * L_26 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_25, /*hidden argument*/NULL);
NullCheck(L_24);
ArrayElementTypeCheck (L_24, L_26);
(L_24)->SetAt(static_cast<il2cpp_array_size_t>(1), (Type_t *)L_26);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_27 = L_24;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_28 = { reinterpret_cast<intptr_t> (Int32_t585191389E07734F19F3156FF88FB3EF4800D102_0_0_0_var) };
Type_t * L_29 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_28, /*hidden argument*/NULL);
NullCheck(L_27);
ArrayElementTypeCheck (L_27, L_29);
(L_27)->SetAt(static_cast<il2cpp_array_size_t>(2), (Type_t *)L_29);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_30 = L_27;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_31 = { reinterpret_cast<intptr_t> (Int32_t585191389E07734F19F3156FF88FB3EF4800D102_0_0_0_var) };
Type_t * L_32 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_31, /*hidden argument*/NULL);
NullCheck(L_30);
ArrayElementTypeCheck (L_30, L_32);
(L_30)->SetAt(static_cast<il2cpp_array_size_t>(3), (Type_t *)L_32);
NullCheck(L_19);
ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * L_33 = Type_GetConstructor_m4371D7AD6A8E15067C698696B0167323CBC7F3DA(L_19, L_30, /*hidden argument*/NULL);
return L_33;
}
IL_00a5:
{
return (ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF *)NULL;
}
}
// System.Reflection.ConstructorInfo Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::GetParameterizedConstructor(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * DefaultContractResolver_GetParameterizedConstructor_mE487EB54B281EB43B3F1DEEB8143F2188E305564 (DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0 * __this, Type_t * ___objectType0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultContractResolver_GetParameterizedConstructor_mE487EB54B281EB43B3F1DEEB8143F2188E305564_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
{
Type_t * L_0 = ___objectType0;
NullCheck(L_0);
ConstructorInfoU5BU5D_t111EE7D53C51A47FE69FC3398DE007F7E100593E* L_1 = VirtFuncInvoker1< ConstructorInfoU5BU5D_t111EE7D53C51A47FE69FC3398DE007F7E100593E*, int32_t >::Invoke(36 /* System.Reflection.ConstructorInfo[] System.Type::GetConstructors(System.Reflection.BindingFlags) */, L_0, ((int32_t)20));
List_1_t6CEA56ED94DFAE80FDAED89141EF7D6AB50F046E * L_2 = Enumerable_ToList_TisConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF_m911EC3D44A57E78BD6437D6928FBBE287F8489CC((RuntimeObject*)(RuntimeObject*)L_1, /*hidden argument*/Enumerable_ToList_TisConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF_m911EC3D44A57E78BD6437D6928FBBE287F8489CC_RuntimeMethod_var);
V_0 = (RuntimeObject*)L_2;
RuntimeObject* L_3 = V_0;
NullCheck(L_3);
int32_t L_4 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<System.Reflection.ConstructorInfo>::get_Count() */, ICollection_1_t0EA00E24BE834F4965DA6E7B42EDAFD65F335AB5_il2cpp_TypeInfo_var, L_3);
if ((!(((uint32_t)L_4) == ((uint32_t)1))))
{
goto IL_001f;
}
}
{
RuntimeObject* L_5 = V_0;
NullCheck(L_5);
ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * L_6 = InterfaceFuncInvoker1< ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF *, int32_t >::Invoke(0 /* !0 System.Collections.Generic.IList`1<System.Reflection.ConstructorInfo>::get_Item(System.Int32) */, IList_1_tB721E43B6FEF3D0C130DB8082B4D6DD600D5FF3E_il2cpp_TypeInfo_var, L_5, 0);
return L_6;
}
IL_001f:
{
return (ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF *)NULL;
}
}
// System.Collections.Generic.IList`1<Valve.Newtonsoft.Json.Serialization.JsonProperty> Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::CreateConstructorParameters(System.Reflection.ConstructorInfo,Valve.Newtonsoft.Json.Serialization.JsonPropertyCollection)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* DefaultContractResolver_CreateConstructorParameters_m867209BF0E1CB7017D30F8CF601ABE46F07A7514 (DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0 * __this, ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * ___constructor0, JsonPropertyCollection_tC08CC5508836C9712A08DDE9E2BC413BD3A61715 * ___memberProperties1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultContractResolver_CreateConstructorParameters_m867209BF0E1CB7017D30F8CF601ABE46F07A7514_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
JsonPropertyCollection_tC08CC5508836C9712A08DDE9E2BC413BD3A61715 * V_0 = NULL;
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* V_1 = NULL;
int32_t V_2 = 0;
ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * V_3 = NULL;
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * V_4 = NULL;
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * V_5 = NULL;
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * G_B4_0 = NULL;
{
ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * L_0 = ___constructor0;
NullCheck(L_0);
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_1 = VirtFuncInvoker0< ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* >::Invoke(18 /* System.Reflection.ParameterInfo[] System.Reflection.MethodBase::GetParameters() */, L_0);
ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * L_2 = ___constructor0;
NullCheck(L_2);
Type_t * L_3 = VirtFuncInvoker0< Type_t * >::Invoke(9 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_2);
JsonPropertyCollection_tC08CC5508836C9712A08DDE9E2BC413BD3A61715 * L_4 = (JsonPropertyCollection_tC08CC5508836C9712A08DDE9E2BC413BD3A61715 *)il2cpp_codegen_object_new(JsonPropertyCollection_tC08CC5508836C9712A08DDE9E2BC413BD3A61715_il2cpp_TypeInfo_var);
JsonPropertyCollection__ctor_m341BA244BB4B57BA6F3B0679FC39B694A7806882(L_4, L_3, /*hidden argument*/NULL);
V_0 = L_4;
V_1 = L_1;
V_2 = 0;
goto IL_0071;
}
IL_0017:
{
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_5 = V_1;
int32_t L_6 = V_2;
NullCheck(L_5);
int32_t L_7 = L_6;
ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
V_3 = L_8;
ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * L_9 = V_3;
NullCheck(L_9);
String_t* L_10 = VirtFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Reflection.ParameterInfo::get_Name() */, L_9);
if (L_10)
{
goto IL_0026;
}
}
{
G_B4_0 = ((JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB *)(NULL));
goto IL_0032;
}
IL_0026:
{
JsonPropertyCollection_tC08CC5508836C9712A08DDE9E2BC413BD3A61715 * L_11 = ___memberProperties1;
ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * L_12 = V_3;
NullCheck(L_12);
String_t* L_13 = VirtFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Reflection.ParameterInfo::get_Name() */, L_12);
NullCheck(L_11);
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_14 = JsonPropertyCollection_GetClosestMatchProperty_m9A350E5F107CE24D972870410BD5281B0FE856AD(L_11, L_13, /*hidden argument*/NULL);
G_B4_0 = L_14;
}
IL_0032:
{
V_4 = G_B4_0;
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_15 = V_4;
if (!L_15)
{
goto IL_004a;
}
}
{
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_16 = V_4;
NullCheck(L_16);
Type_t * L_17 = JsonProperty_get_PropertyType_m289D59E3FC7ABC9329669C4C4A20F68038688F4E_inline(L_16, /*hidden argument*/NULL);
ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * L_18 = V_3;
NullCheck(L_18);
Type_t * L_19 = VirtFuncInvoker0< Type_t * >::Invoke(8 /* System.Type System.Reflection.ParameterInfo::get_ParameterType() */, L_18);
if ((((RuntimeObject*)(Type_t *)L_17) == ((RuntimeObject*)(Type_t *)L_19)))
{
goto IL_004a;
}
}
{
V_4 = (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB *)NULL;
}
IL_004a:
{
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_20 = V_4;
if (L_20)
{
goto IL_0056;
}
}
{
ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * L_21 = V_3;
NullCheck(L_21);
String_t* L_22 = VirtFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Reflection.ParameterInfo::get_Name() */, L_21);
if (!L_22)
{
goto IL_006d;
}
}
IL_0056:
{
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_23 = V_4;
ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * L_24 = V_3;
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_25 = VirtFuncInvoker2< JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB *, JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB *, ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * >::Invoke(9 /* Valve.Newtonsoft.Json.Serialization.JsonProperty Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::CreatePropertyFromConstructorParameter(Valve.Newtonsoft.Json.Serialization.JsonProperty,System.Reflection.ParameterInfo) */, __this, L_23, L_24);
V_5 = L_25;
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_26 = V_5;
if (!L_26)
{
goto IL_006d;
}
}
{
JsonPropertyCollection_tC08CC5508836C9712A08DDE9E2BC413BD3A61715 * L_27 = V_0;
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_28 = V_5;
NullCheck(L_27);
JsonPropertyCollection_AddProperty_m4A847629EE58E608DA2FB9EBC2F081CB1EF45D26(L_27, L_28, /*hidden argument*/NULL);
}
IL_006d:
{
int32_t L_29 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_29, (int32_t)1));
}
IL_0071:
{
int32_t L_30 = V_2;
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_31 = V_1;
NullCheck(L_31);
if ((((int32_t)L_30) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_31)->max_length)))))))
{
goto IL_0017;
}
}
{
JsonPropertyCollection_tC08CC5508836C9712A08DDE9E2BC413BD3A61715 * L_32 = V_0;
return L_32;
}
}
// Valve.Newtonsoft.Json.Serialization.JsonProperty Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::CreatePropertyFromConstructorParameter(Valve.Newtonsoft.Json.Serialization.JsonProperty,System.Reflection.ParameterInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * DefaultContractResolver_CreatePropertyFromConstructorParameter_mA4CA3FBA352EF8C430353987CC729DB2E5566A70 (DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0 * __this, JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * ___matchingMemberProperty0, ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * ___parameterInfo1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultContractResolver_CreatePropertyFromConstructorParameter_mA4CA3FBA352EF8C430353987CC729DB2E5566A70_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * V_0 = NULL;
bool V_1 = false;
Nullable_1_t240C94038A74304286AD4C81EAEFD24E6E435A06 V_2;
memset((&V_2), 0, sizeof(V_2));
Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 V_3;
memset((&V_3), 0, sizeof(V_3));
Nullable_1_t1E3E10A718340D5055F8DB98AE1C03F47CDC19FC V_4;
memset((&V_4), 0, sizeof(V_4));
Nullable_1_tE7CF0A7BC2816D39007C0EEB41F32FA7DB86B394 V_5;
memset((&V_5), 0, sizeof(V_5));
Nullable_1_tD485E28BBBAFB03563161D92A5E03A20B8691DF7 V_6;
memset((&V_6), 0, sizeof(V_6));
Nullable_1_t6F16A066F0D8E92AEDC11791932E5B9D887F402E V_7;
memset((&V_7), 0, sizeof(V_7));
Nullable_1_t03BF155C19CE72C93934F0A7CDDA0C202A278E11 V_8;
memset((&V_8), 0, sizeof(V_8));
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * G_B3_0 = NULL;
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * G_B2_0 = NULL;
String_t* G_B4_0 = NULL;
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * G_B4_1 = NULL;
JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * G_B6_0 = NULL;
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * G_B6_1 = NULL;
JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * G_B5_0 = NULL;
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * G_B5_1 = NULL;
JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * G_B8_0 = NULL;
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * G_B8_1 = NULL;
JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * G_B7_0 = NULL;
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * G_B7_1 = NULL;
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * G_B13_0 = NULL;
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * G_B12_0 = NULL;
Nullable_1_t240C94038A74304286AD4C81EAEFD24E6E435A06 G_B14_0;
memset((&G_B14_0), 0, sizeof(G_B14_0));
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * G_B14_1 = NULL;
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * G_B16_0 = NULL;
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * G_B15_0 = NULL;
Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 G_B17_0;
memset((&G_B17_0), 0, sizeof(G_B17_0));
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * G_B17_1 = NULL;
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * G_B19_0 = NULL;
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * G_B18_0 = NULL;
Nullable_1_t1E3E10A718340D5055F8DB98AE1C03F47CDC19FC G_B20_0;
memset((&G_B20_0), 0, sizeof(G_B20_0));
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * G_B20_1 = NULL;
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * G_B22_0 = NULL;
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * G_B21_0 = NULL;
Nullable_1_tE7CF0A7BC2816D39007C0EEB41F32FA7DB86B394 G_B23_0;
memset((&G_B23_0), 0, sizeof(G_B23_0));
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * G_B23_1 = NULL;
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * G_B25_0 = NULL;
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * G_B24_0 = NULL;
Nullable_1_tD485E28BBBAFB03563161D92A5E03A20B8691DF7 G_B26_0;
memset((&G_B26_0), 0, sizeof(G_B26_0));
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * G_B26_1 = NULL;
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * G_B28_0 = NULL;
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * G_B27_0 = NULL;
Nullable_1_t6F16A066F0D8E92AEDC11791932E5B9D887F402E G_B29_0;
memset((&G_B29_0), 0, sizeof(G_B29_0));
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * G_B29_1 = NULL;
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * G_B31_0 = NULL;
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * G_B30_0 = NULL;
Nullable_1_t03BF155C19CE72C93934F0A7CDDA0C202A278E11 G_B32_0;
memset((&G_B32_0), 0, sizeof(G_B32_0));
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * G_B32_1 = NULL;
{
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_0 = (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB *)il2cpp_codegen_object_new(JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB_il2cpp_TypeInfo_var);
JsonProperty__ctor_m5FB1407F8C5EA1535058A763B98DBF13C9CEBBCB(L_0, /*hidden argument*/NULL);
V_0 = L_0;
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_1 = V_0;
ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * L_2 = ___parameterInfo1;
NullCheck(L_2);
Type_t * L_3 = VirtFuncInvoker0< Type_t * >::Invoke(8 /* System.Type System.Reflection.ParameterInfo::get_ParameterType() */, L_2);
NullCheck(L_1);
JsonProperty_set_PropertyType_mD10927033ED0E5CEBC9B37B831B911DBE7EC96FD(L_1, L_3, /*hidden argument*/NULL);
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_4 = V_0;
ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * L_5 = ___parameterInfo1;
ReflectionAttributeProvider_tD14E62C7D2A1AA1792C9F45D337EC431D30DD7F8 * L_6 = (ReflectionAttributeProvider_tD14E62C7D2A1AA1792C9F45D337EC431D30DD7F8 *)il2cpp_codegen_object_new(ReflectionAttributeProvider_tD14E62C7D2A1AA1792C9F45D337EC431D30DD7F8_il2cpp_TypeInfo_var);
ReflectionAttributeProvider__ctor_m0D9B33D5A8CF4F664B2796EE68D54744D51CA442(L_6, L_5, /*hidden argument*/NULL);
NullCheck(L_4);
JsonProperty_set_AttributeProvider_mA7C5A4B0EC3318FEC23F29FFB348F2E6AB1A09A4_inline(L_4, L_6, /*hidden argument*/NULL);
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_7 = V_0;
ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * L_8 = ___parameterInfo1;
ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * L_9 = ___parameterInfo1;
NullCheck(L_9);
String_t* L_10 = VirtFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Reflection.ParameterInfo::get_Name() */, L_9);
ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * L_11 = ___parameterInfo1;
NullCheck(L_11);
MemberInfo_t * L_12 = VirtFuncInvoker0< MemberInfo_t * >::Invoke(10 /* System.Reflection.MemberInfo System.Reflection.ParameterInfo::get_Member() */, L_11);
NullCheck(L_12);
Type_t * L_13 = VirtFuncInvoker0< Type_t * >::Invoke(9 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_12);
DefaultContractResolver_SetPropertySettingsFromAttributes_m30707938E365229E29EF770EE5379538F03D4890(__this, L_7, L_8, L_10, L_13, 0, (bool*)(&V_1), /*hidden argument*/NULL);
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_14 = V_0;
NullCheck(L_14);
JsonProperty_set_Readable_mD59EEC19DAB96CD04D08D7D4B20BDAAC3CB0FADF_inline(L_14, (bool)0, /*hidden argument*/NULL);
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_15 = V_0;
NullCheck(L_15);
JsonProperty_set_Writable_m6C087BCCDAA946F6EDF9E96CF34EA6E292E23354_inline(L_15, (bool)1, /*hidden argument*/NULL);
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_16 = ___matchingMemberProperty0;
if (!L_16)
{
goto IL_01a0;
}
}
{
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_17 = V_0;
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_18 = V_0;
NullCheck(L_18);
String_t* L_19 = JsonProperty_get_PropertyName_m55905C9131ED73513CF8CB006A5BDF904C47A6B4_inline(L_18, /*hidden argument*/NULL);
ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * L_20 = ___parameterInfo1;
NullCheck(L_20);
String_t* L_21 = VirtFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Reflection.ParameterInfo::get_Name() */, L_20);
bool L_22 = String_op_Inequality_m0BD184A74F453A72376E81CC6CAEE2556B80493E(L_19, L_21, /*hidden argument*/NULL);
G_B2_0 = L_17;
if (L_22)
{
G_B3_0 = L_17;
goto IL_006a;
}
}
{
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_23 = ___matchingMemberProperty0;
NullCheck(L_23);
String_t* L_24 = JsonProperty_get_PropertyName_m55905C9131ED73513CF8CB006A5BDF904C47A6B4_inline(L_23, /*hidden argument*/NULL);
G_B4_0 = L_24;
G_B4_1 = G_B2_0;
goto IL_0070;
}
IL_006a:
{
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_25 = V_0;
NullCheck(L_25);
String_t* L_26 = JsonProperty_get_PropertyName_m55905C9131ED73513CF8CB006A5BDF904C47A6B4_inline(L_25, /*hidden argument*/NULL);
G_B4_0 = L_26;
G_B4_1 = G_B3_0;
}
IL_0070:
{
NullCheck(G_B4_1);
JsonProperty_set_PropertyName_mB5B0FD0E95E50D5236064B1C00DB943BC3761954(G_B4_1, G_B4_0, /*hidden argument*/NULL);
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_27 = V_0;
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_28 = V_0;
NullCheck(L_28);
JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * L_29 = JsonProperty_get_Converter_m16E01BE519E24038398BAE7EBED2A1E84BC10D3B_inline(L_28, /*hidden argument*/NULL);
JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * L_30 = L_29;
G_B5_0 = L_30;
G_B5_1 = L_27;
if (L_30)
{
G_B6_0 = L_30;
G_B6_1 = L_27;
goto IL_0086;
}
}
{
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_31 = ___matchingMemberProperty0;
NullCheck(L_31);
JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * L_32 = JsonProperty_get_Converter_m16E01BE519E24038398BAE7EBED2A1E84BC10D3B_inline(L_31, /*hidden argument*/NULL);
G_B6_0 = L_32;
G_B6_1 = G_B5_1;
}
IL_0086:
{
NullCheck(G_B6_1);
JsonProperty_set_Converter_m3FFE421E199BB51AFBDB9415A4986D6E091D4CC9_inline(G_B6_1, G_B6_0, /*hidden argument*/NULL);
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_33 = V_0;
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_34 = V_0;
NullCheck(L_34);
JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * L_35 = JsonProperty_get_MemberConverter_mE98C8C699ECF8EDFC43CBE2DD906D18F597FD639_inline(L_34, /*hidden argument*/NULL);
JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * L_36 = L_35;
G_B7_0 = L_36;
G_B7_1 = L_33;
if (L_36)
{
G_B8_0 = L_36;
G_B8_1 = L_33;
goto IL_009c;
}
}
{
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_37 = ___matchingMemberProperty0;
NullCheck(L_37);
JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * L_38 = JsonProperty_get_MemberConverter_mE98C8C699ECF8EDFC43CBE2DD906D18F597FD639_inline(L_37, /*hidden argument*/NULL);
G_B8_0 = L_38;
G_B8_1 = G_B7_1;
}
IL_009c:
{
NullCheck(G_B8_1);
JsonProperty_set_MemberConverter_mA8BEFA62877DA9FA40B7E871BA7B70EAE325B532_inline(G_B8_1, G_B8_0, /*hidden argument*/NULL);
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_39 = V_0;
NullCheck(L_39);
bool L_40 = L_39->get__hasExplicitDefaultValue_1();
if (L_40)
{
goto IL_00bd;
}
}
{
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_41 = ___matchingMemberProperty0;
NullCheck(L_41);
bool L_42 = L_41->get__hasExplicitDefaultValue_1();
if (!L_42)
{
goto IL_00bd;
}
}
{
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_43 = V_0;
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_44 = ___matchingMemberProperty0;
NullCheck(L_44);
RuntimeObject * L_45 = JsonProperty_get_DefaultValue_mE664D1FCD37B36BBB206C8F4C5AED857E2924045(L_44, /*hidden argument*/NULL);
NullCheck(L_43);
JsonProperty_set_DefaultValue_m947F9A315D06B92E07B70FFB946D8483C5C3E8B5(L_43, L_45, /*hidden argument*/NULL);
}
IL_00bd:
{
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_46 = V_0;
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_47 = V_0;
NullCheck(L_47);
Nullable_1_t240C94038A74304286AD4C81EAEFD24E6E435A06 L_48 = L_47->get__required_0();
V_2 = L_48;
bool L_49 = Nullable_1_get_HasValue_mFCE0054CF56DBE8BEEF3463DBCDE528A0DA167E6_inline((Nullable_1_t240C94038A74304286AD4C81EAEFD24E6E435A06 *)(&V_2), /*hidden argument*/Nullable_1_get_HasValue_mFCE0054CF56DBE8BEEF3463DBCDE528A0DA167E6_RuntimeMethod_var);
G_B12_0 = L_46;
if (L_49)
{
G_B13_0 = L_46;
goto IL_00d6;
}
}
{
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_50 = ___matchingMemberProperty0;
NullCheck(L_50);
Nullable_1_t240C94038A74304286AD4C81EAEFD24E6E435A06 L_51 = L_50->get__required_0();
G_B14_0 = L_51;
G_B14_1 = G_B12_0;
goto IL_00d7;
}
IL_00d6:
{
Nullable_1_t240C94038A74304286AD4C81EAEFD24E6E435A06 L_52 = V_2;
G_B14_0 = L_52;
G_B14_1 = G_B13_0;
}
IL_00d7:
{
NullCheck(G_B14_1);
G_B14_1->set__required_0(G_B14_0);
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_53 = V_0;
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_54 = V_0;
NullCheck(L_54);
Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 L_55 = JsonProperty_get_IsReference_mAFC18BCBCC991AD924D288048120C2C7D2E8791E_inline(L_54, /*hidden argument*/NULL);
V_3 = L_55;
bool L_56 = Nullable_1_get_HasValue_m275A31438FCDAEEE039E95D887684E04FD6ECE2B_inline((Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 *)(&V_3), /*hidden argument*/Nullable_1_get_HasValue_m275A31438FCDAEEE039E95D887684E04FD6ECE2B_RuntimeMethod_var);
G_B15_0 = L_53;
if (L_56)
{
G_B16_0 = L_53;
goto IL_00f5;
}
}
{
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_57 = ___matchingMemberProperty0;
NullCheck(L_57);
Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 L_58 = JsonProperty_get_IsReference_mAFC18BCBCC991AD924D288048120C2C7D2E8791E_inline(L_57, /*hidden argument*/NULL);
G_B17_0 = L_58;
G_B17_1 = G_B15_0;
goto IL_00f6;
}
IL_00f5:
{
Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 L_59 = V_3;
G_B17_0 = L_59;
G_B17_1 = G_B16_0;
}
IL_00f6:
{
NullCheck(G_B17_1);
JsonProperty_set_IsReference_m81A1A0EBD772885E63F4709504EC98E472D4FE2D_inline(G_B17_1, G_B17_0, /*hidden argument*/NULL);
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_60 = V_0;
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_61 = V_0;
NullCheck(L_61);
Nullable_1_t1E3E10A718340D5055F8DB98AE1C03F47CDC19FC L_62 = JsonProperty_get_NullValueHandling_mE7AA06F7512F5B5EF656BE4BBB6496BAF99E27D1_inline(L_61, /*hidden argument*/NULL);
V_4 = L_62;
bool L_63 = Nullable_1_get_HasValue_m8AF9B5180266788239BC000F750CDC830866BC26_inline((Nullable_1_t1E3E10A718340D5055F8DB98AE1C03F47CDC19FC *)(&V_4), /*hidden argument*/Nullable_1_get_HasValue_m8AF9B5180266788239BC000F750CDC830866BC26_RuntimeMethod_var);
G_B18_0 = L_60;
if (L_63)
{
G_B19_0 = L_60;
goto IL_0115;
}
}
{
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_64 = ___matchingMemberProperty0;
NullCheck(L_64);
Nullable_1_t1E3E10A718340D5055F8DB98AE1C03F47CDC19FC L_65 = JsonProperty_get_NullValueHandling_mE7AA06F7512F5B5EF656BE4BBB6496BAF99E27D1_inline(L_64, /*hidden argument*/NULL);
G_B20_0 = L_65;
G_B20_1 = G_B18_0;
goto IL_0117;
}
IL_0115:
{
Nullable_1_t1E3E10A718340D5055F8DB98AE1C03F47CDC19FC L_66 = V_4;
G_B20_0 = L_66;
G_B20_1 = G_B19_0;
}
IL_0117:
{
NullCheck(G_B20_1);
JsonProperty_set_NullValueHandling_m74AB1DCAB92587EB9572BEA40B5C7E0D88B87AD8_inline(G_B20_1, G_B20_0, /*hidden argument*/NULL);
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_67 = V_0;
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_68 = V_0;
NullCheck(L_68);
Nullable_1_tE7CF0A7BC2816D39007C0EEB41F32FA7DB86B394 L_69 = JsonProperty_get_DefaultValueHandling_mD2453514E2AC08249DA61848E2403A35ADF457AE_inline(L_68, /*hidden argument*/NULL);
V_5 = L_69;
bool L_70 = Nullable_1_get_HasValue_m2B89AF63243D2ACA8648B4DD0D78484C2DDE3F58_inline((Nullable_1_tE7CF0A7BC2816D39007C0EEB41F32FA7DB86B394 *)(&V_5), /*hidden argument*/Nullable_1_get_HasValue_m2B89AF63243D2ACA8648B4DD0D78484C2DDE3F58_RuntimeMethod_var);
G_B21_0 = L_67;
if (L_70)
{
G_B22_0 = L_67;
goto IL_0136;
}
}
{
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_71 = ___matchingMemberProperty0;
NullCheck(L_71);
Nullable_1_tE7CF0A7BC2816D39007C0EEB41F32FA7DB86B394 L_72 = JsonProperty_get_DefaultValueHandling_mD2453514E2AC08249DA61848E2403A35ADF457AE_inline(L_71, /*hidden argument*/NULL);
G_B23_0 = L_72;
G_B23_1 = G_B21_0;
goto IL_0138;
}
IL_0136:
{
Nullable_1_tE7CF0A7BC2816D39007C0EEB41F32FA7DB86B394 L_73 = V_5;
G_B23_0 = L_73;
G_B23_1 = G_B22_0;
}
IL_0138:
{
NullCheck(G_B23_1);
JsonProperty_set_DefaultValueHandling_m64D0484E336482643196FE2588406C3018077207_inline(G_B23_1, G_B23_0, /*hidden argument*/NULL);
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_74 = V_0;
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_75 = V_0;
NullCheck(L_75);
Nullable_1_tD485E28BBBAFB03563161D92A5E03A20B8691DF7 L_76 = JsonProperty_get_ReferenceLoopHandling_mF80A4BCFC5BCF5BB1B08DD588D86641E60EA3298_inline(L_75, /*hidden argument*/NULL);
V_6 = L_76;
bool L_77 = Nullable_1_get_HasValue_m63F54EB248864AE74E21DD44BC77510735270E5C_inline((Nullable_1_tD485E28BBBAFB03563161D92A5E03A20B8691DF7 *)(&V_6), /*hidden argument*/Nullable_1_get_HasValue_m63F54EB248864AE74E21DD44BC77510735270E5C_RuntimeMethod_var);
G_B24_0 = L_74;
if (L_77)
{
G_B25_0 = L_74;
goto IL_0157;
}
}
{
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_78 = ___matchingMemberProperty0;
NullCheck(L_78);
Nullable_1_tD485E28BBBAFB03563161D92A5E03A20B8691DF7 L_79 = JsonProperty_get_ReferenceLoopHandling_mF80A4BCFC5BCF5BB1B08DD588D86641E60EA3298_inline(L_78, /*hidden argument*/NULL);
G_B26_0 = L_79;
G_B26_1 = G_B24_0;
goto IL_0159;
}
IL_0157:
{
Nullable_1_tD485E28BBBAFB03563161D92A5E03A20B8691DF7 L_80 = V_6;
G_B26_0 = L_80;
G_B26_1 = G_B25_0;
}
IL_0159:
{
NullCheck(G_B26_1);
JsonProperty_set_ReferenceLoopHandling_mFA6874BE6C0DE25CE1921F7F4F0966449BC386EA_inline(G_B26_1, G_B26_0, /*hidden argument*/NULL);
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_81 = V_0;
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_82 = V_0;
NullCheck(L_82);
Nullable_1_t6F16A066F0D8E92AEDC11791932E5B9D887F402E L_83 = JsonProperty_get_ObjectCreationHandling_mBA7704FF78CDCAD3994A6CA43443CB4F296FAFD8_inline(L_82, /*hidden argument*/NULL);
V_7 = L_83;
bool L_84 = Nullable_1_get_HasValue_mEDD393F528BE17016D58C5BF0AAA6BDF4F484DE1_inline((Nullable_1_t6F16A066F0D8E92AEDC11791932E5B9D887F402E *)(&V_7), /*hidden argument*/Nullable_1_get_HasValue_mEDD393F528BE17016D58C5BF0AAA6BDF4F484DE1_RuntimeMethod_var);
G_B27_0 = L_81;
if (L_84)
{
G_B28_0 = L_81;
goto IL_0178;
}
}
{
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_85 = ___matchingMemberProperty0;
NullCheck(L_85);
Nullable_1_t6F16A066F0D8E92AEDC11791932E5B9D887F402E L_86 = JsonProperty_get_ObjectCreationHandling_mBA7704FF78CDCAD3994A6CA43443CB4F296FAFD8_inline(L_85, /*hidden argument*/NULL);
G_B29_0 = L_86;
G_B29_1 = G_B27_0;
goto IL_017a;
}
IL_0178:
{
Nullable_1_t6F16A066F0D8E92AEDC11791932E5B9D887F402E L_87 = V_7;
G_B29_0 = L_87;
G_B29_1 = G_B28_0;
}
IL_017a:
{
NullCheck(G_B29_1);
JsonProperty_set_ObjectCreationHandling_mF627BC5B84EC6A0FBDBC2C3744D35AE5A9BF3C49_inline(G_B29_1, G_B29_0, /*hidden argument*/NULL);
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_88 = V_0;
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_89 = V_0;
NullCheck(L_89);
Nullable_1_t03BF155C19CE72C93934F0A7CDDA0C202A278E11 L_90 = JsonProperty_get_TypeNameHandling_m42F2D8CBE714D0C6254E78C0342AA120E4F905FF_inline(L_89, /*hidden argument*/NULL);
V_8 = L_90;
bool L_91 = Nullable_1_get_HasValue_m1353A1AC6FE4E66B27E4109309FED39EC8041967_inline((Nullable_1_t03BF155C19CE72C93934F0A7CDDA0C202A278E11 *)(&V_8), /*hidden argument*/Nullable_1_get_HasValue_m1353A1AC6FE4E66B27E4109309FED39EC8041967_RuntimeMethod_var);
G_B30_0 = L_88;
if (L_91)
{
G_B31_0 = L_88;
goto IL_0199;
}
}
{
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_92 = ___matchingMemberProperty0;
NullCheck(L_92);
Nullable_1_t03BF155C19CE72C93934F0A7CDDA0C202A278E11 L_93 = JsonProperty_get_TypeNameHandling_m42F2D8CBE714D0C6254E78C0342AA120E4F905FF_inline(L_92, /*hidden argument*/NULL);
G_B32_0 = L_93;
G_B32_1 = G_B30_0;
goto IL_019b;
}
IL_0199:
{
Nullable_1_t03BF155C19CE72C93934F0A7CDDA0C202A278E11 L_94 = V_8;
G_B32_0 = L_94;
G_B32_1 = G_B31_0;
}
IL_019b:
{
NullCheck(G_B32_1);
JsonProperty_set_TypeNameHandling_m1705EF65E533500CD4530F872B498F83B1A279B1_inline(G_B32_1, G_B32_0, /*hidden argument*/NULL);
}
IL_01a0:
{
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_95 = V_0;
return L_95;
}
}
// Valve.Newtonsoft.Json.JsonConverter Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::ResolveContractConverter(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * DefaultContractResolver_ResolveContractConverter_m40CB488E6E8903DCDFE10C90D3617AE426DB9885 (DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0 * __this, Type_t * ___objectType0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultContractResolver_ResolveContractConverter_m40CB488E6E8903DCDFE10C90D3617AE426DB9885_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Type_t * L_0 = ___objectType0;
IL2CPP_RUNTIME_CLASS_INIT(JsonTypeReflector_tC161A1BF2506AB16B738C3935C2691A92B7A8C55_il2cpp_TypeInfo_var);
JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * L_1 = JsonTypeReflector_GetJsonConverter_mBCF9AEC08EA9FB2F2ED049ACE80088CE2B1AE13D(L_0, /*hidden argument*/NULL);
return L_1;
}
}
// System.Func`1<System.Object> Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::GetDefaultCreator(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 * DefaultContractResolver_GetDefaultCreator_mBE8EFAA4E35FFAEFCAFC20354EA0F2603B847E19 (DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0 * __this, Type_t * ___createdType0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultContractResolver_GetDefaultCreator_mBE8EFAA4E35FFAEFCAFC20354EA0F2603B847E19_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(JsonTypeReflector_tC161A1BF2506AB16B738C3935C2691A92B7A8C55_il2cpp_TypeInfo_var);
ReflectionDelegateFactory_t87E79CD61C3504844C338EEC1949177370F2029A * L_0 = JsonTypeReflector_get_ReflectionDelegateFactory_mAD718C1AD00934D6A3A5B334C5494929E45A8DC7(/*hidden argument*/NULL);
Type_t * L_1 = ___createdType0;
NullCheck(L_0);
Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 * L_2 = GenericVirtFuncInvoker1< Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 *, Type_t * >::Invoke(ReflectionDelegateFactory_CreateDefaultConstructor_TisRuntimeObject_mEB50AB99BFE09A72034A8DED50F464F83BF7B81A_RuntimeMethod_var, L_0, L_1);
return L_2;
}
}
// System.Void Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::InitializeContract(Valve.Newtonsoft.Json.Serialization.JsonContract)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultContractResolver_InitializeContract_mC72BF19CFC13D483F2BD52C1825F01350DDBF749 (DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0 * __this, JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * ___contract0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultContractResolver_InitializeContract_mC72BF19CFC13D483F2BD52C1825F01350DDBF749_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
JsonContainerAttribute_t4E39F1E5EA66CF61E90C47C81929BE4A853A2DF3 * V_0 = NULL;
DataContractAttribute_tAD58D5877BD04EADB56BB4AEDDE342C73F032FC5 * V_1 = NULL;
JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * G_B10_0 = NULL;
JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * G_B9_0 = NULL;
int32_t G_B11_0 = 0;
JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * G_B11_1 = NULL;
{
JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * L_0 = ___contract0;
NullCheck(L_0);
Type_t * L_1 = L_0->get_NonNullableUnderlyingType_3();
IL2CPP_RUNTIME_CLASS_INIT(JsonTypeReflector_tC161A1BF2506AB16B738C3935C2691A92B7A8C55_il2cpp_TypeInfo_var);
JsonContainerAttribute_t4E39F1E5EA66CF61E90C47C81929BE4A853A2DF3 * L_2 = JsonTypeReflector_GetCachedAttribute_TisJsonContainerAttribute_t4E39F1E5EA66CF61E90C47C81929BE4A853A2DF3_m65FBB7F4C33DB203411378AD9097CC81AACBF7EC(L_1, /*hidden argument*/JsonTypeReflector_GetCachedAttribute_TisJsonContainerAttribute_t4E39F1E5EA66CF61E90C47C81929BE4A853A2DF3_m65FBB7F4C33DB203411378AD9097CC81AACBF7EC_RuntimeMethod_var);
V_0 = L_2;
JsonContainerAttribute_t4E39F1E5EA66CF61E90C47C81929BE4A853A2DF3 * L_3 = V_0;
if (!L_3)
{
goto IL_001d;
}
}
{
JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * L_4 = ___contract0;
JsonContainerAttribute_t4E39F1E5EA66CF61E90C47C81929BE4A853A2DF3 * L_5 = V_0;
NullCheck(L_5);
Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 L_6 = L_5->get__isReference_3();
NullCheck(L_4);
JsonContract_set_IsReference_mF3693B660E6ED466D542AC561DA5714F34E103BC_inline(L_4, L_6, /*hidden argument*/NULL);
goto IL_0040;
}
IL_001d:
{
JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * L_7 = ___contract0;
NullCheck(L_7);
Type_t * L_8 = L_7->get_NonNullableUnderlyingType_3();
IL2CPP_RUNTIME_CLASS_INIT(JsonTypeReflector_tC161A1BF2506AB16B738C3935C2691A92B7A8C55_il2cpp_TypeInfo_var);
DataContractAttribute_tAD58D5877BD04EADB56BB4AEDDE342C73F032FC5 * L_9 = JsonTypeReflector_GetDataContractAttribute_m62122785FB6670DF3D75AEF50EAA7ACF6DE1FDFB(L_8, /*hidden argument*/NULL);
V_1 = L_9;
DataContractAttribute_tAD58D5877BD04EADB56BB4AEDDE342C73F032FC5 * L_10 = V_1;
if (!L_10)
{
goto IL_0040;
}
}
{
DataContractAttribute_tAD58D5877BD04EADB56BB4AEDDE342C73F032FC5 * L_11 = V_1;
NullCheck(L_11);
bool L_12 = DataContractAttribute_get_IsReference_m585BCAC661A23A9D652CBB1A143A1A05EC982954_inline(L_11, /*hidden argument*/NULL);
if (!L_12)
{
goto IL_0040;
}
}
{
JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * L_13 = ___contract0;
Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 L_14;
memset((&L_14), 0, sizeof(L_14));
Nullable_1__ctor_mD3154885E88D449C69AD9DEA6F9A3EF66A3FE996((&L_14), (bool)1, /*hidden argument*/Nullable_1__ctor_mD3154885E88D449C69AD9DEA6F9A3EF66A3FE996_RuntimeMethod_var);
NullCheck(L_13);
JsonContract_set_IsReference_mF3693B660E6ED466D542AC561DA5714F34E103BC_inline(L_13, L_14, /*hidden argument*/NULL);
}
IL_0040:
{
JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * L_15 = ___contract0;
JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * L_16 = ___contract0;
NullCheck(L_16);
Type_t * L_17 = L_16->get_NonNullableUnderlyingType_3();
JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * L_18 = VirtFuncInvoker1< JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 *, Type_t * >::Invoke(10 /* Valve.Newtonsoft.Json.JsonConverter Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::ResolveContractConverter(System.Type) */, __this, L_17);
NullCheck(L_15);
JsonContract_set_Converter_mD54BDE103380C81E5AC933ECFC739D1654EFD534_inline(L_15, L_18, /*hidden argument*/NULL);
JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * L_19 = ___contract0;
IL2CPP_RUNTIME_CLASS_INIT(DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0_il2cpp_TypeInfo_var);
JsonConverterU5BU5D_tFCEA4D4687200F08D8F41AFF4CDC7EE5E08AACAB* L_20 = ((DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0_StaticFields*)il2cpp_codegen_static_fields_for(DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0_il2cpp_TypeInfo_var))->get_BuiltInConverters_1();
JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * L_21 = ___contract0;
NullCheck(L_21);
Type_t * L_22 = L_21->get_NonNullableUnderlyingType_3();
JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * L_23 = JsonSerializer_GetMatchingConverter_mAB5315608093639E8A4F5518F05B9AE0FCAA9051((RuntimeObject*)(RuntimeObject*)L_20, L_22, /*hidden argument*/NULL);
NullCheck(L_19);
JsonContract_set_InternalConverter_m98C9C0B34BB620F23DF3021B456FE2BD90DA1C6F_inline(L_19, L_23, /*hidden argument*/NULL);
JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * L_24 = ___contract0;
NullCheck(L_24);
bool L_25 = L_24->get_IsInstantiable_8();
if (!L_25)
{
goto IL_00c1;
}
}
{
JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * L_26 = ___contract0;
NullCheck(L_26);
Type_t * L_27 = JsonContract_get_CreatedType_mD4067F78EE8562AECD07B981C18C57182277E1ED_inline(L_26, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(ReflectionUtils_t1845D588ADA15C351615E925042ECF790B622987_il2cpp_TypeInfo_var);
bool L_28 = ReflectionUtils_HasDefaultConstructor_mA3353430FB209699BE3DF75C4F961703A30D14F2(L_27, (bool)1, /*hidden argument*/NULL);
if (L_28)
{
goto IL_008b;
}
}
{
JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * L_29 = ___contract0;
NullCheck(L_29);
Type_t * L_30 = JsonContract_get_CreatedType_mD4067F78EE8562AECD07B981C18C57182277E1ED_inline(L_29, /*hidden argument*/NULL);
bool L_31 = TypeExtensions_IsValueType_m62264CEFFFA52D66E14FDE2A153BE660D3B6703A(L_30, /*hidden argument*/NULL);
if (!L_31)
{
goto IL_00c1;
}
}
IL_008b:
{
JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * L_32 = ___contract0;
JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * L_33 = ___contract0;
NullCheck(L_33);
Type_t * L_34 = JsonContract_get_CreatedType_mD4067F78EE8562AECD07B981C18C57182277E1ED_inline(L_33, /*hidden argument*/NULL);
Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 * L_35 = DefaultContractResolver_GetDefaultCreator_mBE8EFAA4E35FFAEFCAFC20354EA0F2603B847E19(__this, L_34, /*hidden argument*/NULL);
NullCheck(L_32);
JsonContract_set_DefaultCreator_mCFA258FC6B3166F8C0DFCABCB8A8F8233704AF6E_inline(L_32, L_35, /*hidden argument*/NULL);
JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * L_36 = ___contract0;
JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * L_37 = ___contract0;
NullCheck(L_37);
Type_t * L_38 = JsonContract_get_CreatedType_mD4067F78EE8562AECD07B981C18C57182277E1ED_inline(L_37, /*hidden argument*/NULL);
bool L_39 = TypeExtensions_IsValueType_m62264CEFFFA52D66E14FDE2A153BE660D3B6703A(L_38, /*hidden argument*/NULL);
G_B9_0 = L_36;
if (L_39)
{
G_B10_0 = L_36;
goto IL_00bb;
}
}
{
JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * L_40 = ___contract0;
NullCheck(L_40);
Type_t * L_41 = JsonContract_get_CreatedType_mD4067F78EE8562AECD07B981C18C57182277E1ED_inline(L_40, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(ReflectionUtils_t1845D588ADA15C351615E925042ECF790B622987_il2cpp_TypeInfo_var);
ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * L_42 = ReflectionUtils_GetDefaultConstructor_m5094BC349E8D5B8C86AC96C2CC31D10598BCD4D2(L_41, /*hidden argument*/NULL);
G_B11_0 = ((((RuntimeObject*)(ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF *)L_42) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
G_B11_1 = G_B9_0;
goto IL_00bc;
}
IL_00bb:
{
G_B11_0 = 0;
G_B11_1 = G_B10_0;
}
IL_00bc:
{
NullCheck(G_B11_1);
JsonContract_set_DefaultCreatorNonPublic_m919D262C28DED0670FA02472AE90A298B672FDE2_inline(G_B11_1, (bool)G_B11_0, /*hidden argument*/NULL);
}
IL_00c1:
{
JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * L_43 = ___contract0;
JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * L_44 = ___contract0;
NullCheck(L_44);
Type_t * L_45 = L_44->get_NonNullableUnderlyingType_3();
DefaultContractResolver_ResolveCallbackMethods_mFF8D14250AC34CBF3BE9F528370250B3D98E9112(__this, L_43, L_45, /*hidden argument*/NULL);
return;
}
}
// System.Void Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::ResolveCallbackMethods(Valve.Newtonsoft.Json.Serialization.JsonContract,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultContractResolver_ResolveCallbackMethods_mFF8D14250AC34CBF3BE9F528370250B3D98E9112 (DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0 * __this, JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * ___contract0, Type_t * ___t1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultContractResolver_ResolveCallbackMethods_mFF8D14250AC34CBF3BE9F528370250B3D98E9112_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D * V_0 = NULL;
List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D * V_1 = NULL;
List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D * V_2 = NULL;
List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D * V_3 = NULL;
List_1_t3146B8EA2F3BD8E6B4682F880C8713B77D27EC6D * V_4 = NULL;
{
Type_t * L_0 = ___t1;
DefaultContractResolver_GetCallbackMethodsForType_m4476762551D8DFCE836C3A3E3478F5DB2C9AEBF2(__this, L_0, (List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D **)(&V_0), (List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D **)(&V_1), (List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D **)(&V_2), (List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D **)(&V_3), (List_1_t3146B8EA2F3BD8E6B4682F880C8713B77D27EC6D **)(&V_4), /*hidden argument*/NULL);
List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D * L_1 = V_0;
if (!L_1)
{
goto IL_0020;
}
}
{
JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * L_2 = ___contract0;
NullCheck(L_2);
RuntimeObject* L_3 = JsonContract_get_OnSerializingCallbacks_mB55F85A655EA1FAA9136A1D41E1CEE79512F2DF0(L_2, /*hidden argument*/NULL);
List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D * L_4 = V_0;
CollectionUtils_AddRange_TisSerializationCallback_t8B5297123C8DFAD6A6701E2F2046982E13CE1B9C_m369EBEC082C91131B8B81FDD3738D46ECCC73255(L_3, L_4, /*hidden argument*/CollectionUtils_AddRange_TisSerializationCallback_t8B5297123C8DFAD6A6701E2F2046982E13CE1B9C_m369EBEC082C91131B8B81FDD3738D46ECCC73255_RuntimeMethod_var);
}
IL_0020:
{
List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D * L_5 = V_1;
if (!L_5)
{
goto IL_002f;
}
}
{
JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * L_6 = ___contract0;
NullCheck(L_6);
RuntimeObject* L_7 = JsonContract_get_OnSerializedCallbacks_mFACCA186A597E0FFAB2F805B34260A506B8F038F(L_6, /*hidden argument*/NULL);
List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D * L_8 = V_1;
CollectionUtils_AddRange_TisSerializationCallback_t8B5297123C8DFAD6A6701E2F2046982E13CE1B9C_m369EBEC082C91131B8B81FDD3738D46ECCC73255(L_7, L_8, /*hidden argument*/CollectionUtils_AddRange_TisSerializationCallback_t8B5297123C8DFAD6A6701E2F2046982E13CE1B9C_m369EBEC082C91131B8B81FDD3738D46ECCC73255_RuntimeMethod_var);
}
IL_002f:
{
List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D * L_9 = V_2;
if (!L_9)
{
goto IL_003e;
}
}
{
JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * L_10 = ___contract0;
NullCheck(L_10);
RuntimeObject* L_11 = JsonContract_get_OnDeserializingCallbacks_mEB236A5F4F95BE2A531E33B0F210A590823B36CF(L_10, /*hidden argument*/NULL);
List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D * L_12 = V_2;
CollectionUtils_AddRange_TisSerializationCallback_t8B5297123C8DFAD6A6701E2F2046982E13CE1B9C_m369EBEC082C91131B8B81FDD3738D46ECCC73255(L_11, L_12, /*hidden argument*/CollectionUtils_AddRange_TisSerializationCallback_t8B5297123C8DFAD6A6701E2F2046982E13CE1B9C_m369EBEC082C91131B8B81FDD3738D46ECCC73255_RuntimeMethod_var);
}
IL_003e:
{
List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D * L_13 = V_3;
if (!L_13)
{
goto IL_004d;
}
}
{
JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * L_14 = ___contract0;
NullCheck(L_14);
RuntimeObject* L_15 = JsonContract_get_OnDeserializedCallbacks_m9B8797DA83096104A2B1803A6EF96E684EA073AA(L_14, /*hidden argument*/NULL);
List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D * L_16 = V_3;
CollectionUtils_AddRange_TisSerializationCallback_t8B5297123C8DFAD6A6701E2F2046982E13CE1B9C_m369EBEC082C91131B8B81FDD3738D46ECCC73255(L_15, L_16, /*hidden argument*/CollectionUtils_AddRange_TisSerializationCallback_t8B5297123C8DFAD6A6701E2F2046982E13CE1B9C_m369EBEC082C91131B8B81FDD3738D46ECCC73255_RuntimeMethod_var);
}
IL_004d:
{
List_1_t3146B8EA2F3BD8E6B4682F880C8713B77D27EC6D * L_17 = V_4;
if (!L_17)
{
goto IL_005e;
}
}
{
JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * L_18 = ___contract0;
NullCheck(L_18);
RuntimeObject* L_19 = JsonContract_get_OnErrorCallbacks_m1130B623BD0E2E61C483C12C5C7895071A0867B9(L_18, /*hidden argument*/NULL);
List_1_t3146B8EA2F3BD8E6B4682F880C8713B77D27EC6D * L_20 = V_4;
CollectionUtils_AddRange_TisSerializationErrorCallback_t6EAECB0A4E241F49CA0D2A29EFCF4DCDDC9884B2_m78618F6A6C93300D92B667693A50490272C01353(L_19, L_20, /*hidden argument*/CollectionUtils_AddRange_TisSerializationErrorCallback_t6EAECB0A4E241F49CA0D2A29EFCF4DCDDC9884B2_m78618F6A6C93300D92B667693A50490272C01353_RuntimeMethod_var);
}
IL_005e:
{
return;
}
}
// System.Void Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::GetCallbackMethodsForType(System.Type,System.Collections.Generic.List`1<Valve.Newtonsoft.Json.Serialization.SerializationCallback>&,System.Collections.Generic.List`1<Valve.Newtonsoft.Json.Serialization.SerializationCallback>&,System.Collections.Generic.List`1<Valve.Newtonsoft.Json.Serialization.SerializationCallback>&,System.Collections.Generic.List`1<Valve.Newtonsoft.Json.Serialization.SerializationCallback>&,System.Collections.Generic.List`1<Valve.Newtonsoft.Json.Serialization.SerializationErrorCallback>&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultContractResolver_GetCallbackMethodsForType_m4476762551D8DFCE836C3A3E3478F5DB2C9AEBF2 (DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0 * __this, Type_t * ___type0, List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D ** ___onSerializing1, List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D ** ___onSerialized2, List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D ** ___onDeserializing3, List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D ** ___onDeserialized4, List_1_t3146B8EA2F3BD8E6B4682F880C8713B77D27EC6D ** ___onError5, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultContractResolver_GetCallbackMethodsForType_m4476762551D8DFCE836C3A3E3478F5DB2C9AEBF2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Enumerator_t7708A1C0F78B6722936DF84038D589BB9202C547 V_0;
memset((&V_0), 0, sizeof(V_0));
MethodInfo_t * V_1 = NULL;
MethodInfo_t * V_2 = NULL;
MethodInfo_t * V_3 = NULL;
MethodInfo_t * V_4 = NULL;
MethodInfo_t * V_5 = NULL;
bool V_6 = false;
bool V_7 = false;
MethodInfoU5BU5D_t93E968F23AF2DB5CFCFF13BE775A0E222C03586B* V_8 = NULL;
int32_t V_9 = 0;
MethodInfo_t * V_10 = NULL;
Type_t * V_11 = NULL;
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* V_12 = 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);
List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D * G_B8_0 = NULL;
List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D ** G_B8_1 = NULL;
List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D * G_B7_0 = NULL;
List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D ** G_B7_1 = NULL;
List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D * G_B12_0 = NULL;
List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D ** G_B12_1 = NULL;
List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D * G_B11_0 = NULL;
List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D ** G_B11_1 = NULL;
List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D * G_B16_0 = NULL;
List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D ** G_B16_1 = NULL;
List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D * G_B15_0 = NULL;
List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D ** G_B15_1 = NULL;
List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D * G_B21_0 = NULL;
List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D ** G_B21_1 = NULL;
List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D * G_B20_0 = NULL;
List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D ** G_B20_1 = NULL;
List_1_t3146B8EA2F3BD8E6B4682F880C8713B77D27EC6D * G_B25_0 = NULL;
List_1_t3146B8EA2F3BD8E6B4682F880C8713B77D27EC6D ** G_B25_1 = NULL;
List_1_t3146B8EA2F3BD8E6B4682F880C8713B77D27EC6D * G_B24_0 = NULL;
List_1_t3146B8EA2F3BD8E6B4682F880C8713B77D27EC6D ** G_B24_1 = NULL;
{
List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D ** L_0 = ___onSerializing1;
*((RuntimeObject **)L_0) = (RuntimeObject *)NULL;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_0, (void*)(RuntimeObject *)NULL);
List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D ** L_1 = ___onSerialized2;
*((RuntimeObject **)L_1) = (RuntimeObject *)NULL;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_1, (void*)(RuntimeObject *)NULL);
List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D ** L_2 = ___onDeserializing3;
*((RuntimeObject **)L_2) = (RuntimeObject *)NULL;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_2, (void*)(RuntimeObject *)NULL);
List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D ** L_3 = ___onDeserialized4;
*((RuntimeObject **)L_3) = (RuntimeObject *)NULL;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_3, (void*)(RuntimeObject *)NULL);
List_1_t3146B8EA2F3BD8E6B4682F880C8713B77D27EC6D ** L_4 = ___onError5;
*((RuntimeObject **)L_4) = (RuntimeObject *)NULL;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_4, (void*)(RuntimeObject *)NULL);
Type_t * L_5 = ___type0;
List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * L_6 = DefaultContractResolver_GetClassHierarchyForType_mB2C0F793AEC5EC4C1495F0972B81A887F407D9E5(__this, L_5, /*hidden argument*/NULL);
NullCheck(L_6);
Enumerator_t7708A1C0F78B6722936DF84038D589BB9202C547 L_7 = List_1_GetEnumerator_mEBF49DD908914F1048D109AA7FCB1696F8637906(L_6, /*hidden argument*/List_1_GetEnumerator_mEBF49DD908914F1048D109AA7FCB1696F8637906_RuntimeMethod_var);
V_0 = L_7;
}
IL_001f:
try
{ // begin try (depth: 1)
{
goto IL_01ab;
}
IL_0024:
{
Type_t * L_8 = Enumerator_get_Current_mDA529EA93697DB0544B90D07B18ED558B8DCC27F_inline((Enumerator_t7708A1C0F78B6722936DF84038D589BB9202C547 *)(&V_0), /*hidden argument*/Enumerator_get_Current_mDA529EA93697DB0544B90D07B18ED558B8DCC27F_RuntimeMethod_var);
V_1 = (MethodInfo_t *)NULL;
V_2 = (MethodInfo_t *)NULL;
V_3 = (MethodInfo_t *)NULL;
V_4 = (MethodInfo_t *)NULL;
V_5 = (MethodInfo_t *)NULL;
Type_t * L_9 = L_8;
IL2CPP_RUNTIME_CLASS_INIT(DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0_il2cpp_TypeInfo_var);
bool L_10 = DefaultContractResolver_ShouldSkipSerializing_m5914BE0F17FE60E604EAF56D6FF19957DDFC824B(L_9, /*hidden argument*/NULL);
V_6 = L_10;
Type_t * L_11 = L_9;
bool L_12 = DefaultContractResolver_ShouldSkipDeserialized_m0EB084844A00EB70791CE739F2307D1C1F9FA4F5(L_11, /*hidden argument*/NULL);
V_7 = L_12;
NullCheck(L_11);
MethodInfoU5BU5D_t93E968F23AF2DB5CFCFF13BE775A0E222C03586B* L_13 = VirtFuncInvoker1< MethodInfoU5BU5D_t93E968F23AF2DB5CFCFF13BE775A0E222C03586B*, int32_t >::Invoke(43 /* System.Reflection.MethodInfo[] System.Type::GetMethods(System.Reflection.BindingFlags) */, L_11, ((int32_t)54));
V_8 = L_13;
V_9 = 0;
goto IL_01a0;
}
IL_0058:
{
MethodInfoU5BU5D_t93E968F23AF2DB5CFCFF13BE775A0E222C03586B* L_14 = V_8;
int32_t L_15 = V_9;
NullCheck(L_14);
int32_t L_16 = L_15;
MethodInfo_t * L_17 = (L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_16));
V_10 = L_17;
MethodInfo_t * L_18 = V_10;
NullCheck(L_18);
bool L_19 = VirtFuncInvoker0< bool >::Invoke(26 /* System.Boolean System.Reflection.MethodBase::get_ContainsGenericParameters() */, L_18);
if (L_19)
{
goto IL_019a;
}
}
IL_006b:
{
V_11 = (Type_t *)NULL;
MethodInfo_t * L_20 = V_10;
NullCheck(L_20);
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_21 = VirtFuncInvoker0< ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* >::Invoke(18 /* System.Reflection.ParameterInfo[] System.Reflection.MethodBase::GetParameters() */, L_20);
V_12 = L_21;
bool L_22 = V_6;
if (L_22)
{
goto IL_00b1;
}
}
IL_007b:
{
MethodInfo_t * L_23 = V_10;
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_24 = V_12;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_25 = { reinterpret_cast<intptr_t> (OnSerializingAttribute_t7C470A6CCE67CFEB32D29F1846A4581381EB6630_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_26 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_25, /*hidden argument*/NULL);
MethodInfo_t * L_27 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0_il2cpp_TypeInfo_var);
bool L_28 = DefaultContractResolver_IsValidCallback_m7CF3C3A4FCF267F4C459E71B2DCFA5722AD67728(L_23, L_24, L_26, L_27, (Type_t **)(&V_11), /*hidden argument*/NULL);
if (!L_28)
{
goto IL_00b1;
}
}
IL_0093:
{
List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D ** L_29 = ___onSerializing1;
List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D ** L_30 = ___onSerializing1;
List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D * L_31 = *((List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D **)L_30);
List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D * L_32 = L_31;
G_B7_0 = L_32;
G_B7_1 = L_29;
if (L_32)
{
G_B8_0 = L_32;
G_B8_1 = L_29;
goto IL_009f;
}
}
IL_0099:
{
List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D * L_33 = (List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D *)il2cpp_codegen_object_new(List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D_il2cpp_TypeInfo_var);
List_1__ctor_mF63E182EEB4786A2E9FB7F2C8C8D0683BD9ED093(L_33, /*hidden argument*/List_1__ctor_mF63E182EEB4786A2E9FB7F2C8C8D0683BD9ED093_RuntimeMethod_var);
G_B8_0 = L_33;
G_B8_1 = G_B7_1;
}
IL_009f:
{
*((RuntimeObject **)G_B8_1) = (RuntimeObject *)G_B8_0;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)G_B8_1, (void*)(RuntimeObject *)G_B8_0);
List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D ** L_34 = ___onSerializing1;
List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D * L_35 = *((List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D **)L_34);
MethodInfo_t * L_36 = V_10;
SerializationCallback_t8B5297123C8DFAD6A6701E2F2046982E13CE1B9C * L_37 = JsonContract_CreateSerializationCallback_m80237D008F37FEF1CAC489A20645120CE18FDE80(L_36, /*hidden argument*/NULL);
NullCheck(L_35);
List_1_Add_m1C03816896BC8C445C628164F59987CE886EC12E(L_35, L_37, /*hidden argument*/List_1_Add_m1C03816896BC8C445C628164F59987CE886EC12E_RuntimeMethod_var);
MethodInfo_t * L_38 = V_10;
V_1 = L_38;
}
IL_00b1:
{
MethodInfo_t * L_39 = V_10;
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_40 = V_12;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_41 = { reinterpret_cast<intptr_t> (OnSerializedAttribute_tCFE5B5FF075650E26FCA06CBD8B1E5547CE2633A_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_42 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_41, /*hidden argument*/NULL);
MethodInfo_t * L_43 = V_2;
IL2CPP_RUNTIME_CLASS_INIT(DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0_il2cpp_TypeInfo_var);
bool L_44 = DefaultContractResolver_IsValidCallback_m7CF3C3A4FCF267F4C459E71B2DCFA5722AD67728(L_39, L_40, L_42, L_43, (Type_t **)(&V_11), /*hidden argument*/NULL);
if (!L_44)
{
goto IL_00e7;
}
}
IL_00c9:
{
List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D ** L_45 = ___onSerialized2;
List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D ** L_46 = ___onSerialized2;
List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D * L_47 = *((List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D **)L_46);
List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D * L_48 = L_47;
G_B11_0 = L_48;
G_B11_1 = L_45;
if (L_48)
{
G_B12_0 = L_48;
G_B12_1 = L_45;
goto IL_00d5;
}
}
IL_00cf:
{
List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D * L_49 = (List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D *)il2cpp_codegen_object_new(List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D_il2cpp_TypeInfo_var);
List_1__ctor_mF63E182EEB4786A2E9FB7F2C8C8D0683BD9ED093(L_49, /*hidden argument*/List_1__ctor_mF63E182EEB4786A2E9FB7F2C8C8D0683BD9ED093_RuntimeMethod_var);
G_B12_0 = L_49;
G_B12_1 = G_B11_1;
}
IL_00d5:
{
*((RuntimeObject **)G_B12_1) = (RuntimeObject *)G_B12_0;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)G_B12_1, (void*)(RuntimeObject *)G_B12_0);
List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D ** L_50 = ___onSerialized2;
List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D * L_51 = *((List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D **)L_50);
MethodInfo_t * L_52 = V_10;
SerializationCallback_t8B5297123C8DFAD6A6701E2F2046982E13CE1B9C * L_53 = JsonContract_CreateSerializationCallback_m80237D008F37FEF1CAC489A20645120CE18FDE80(L_52, /*hidden argument*/NULL);
NullCheck(L_51);
List_1_Add_m1C03816896BC8C445C628164F59987CE886EC12E(L_51, L_53, /*hidden argument*/List_1_Add_m1C03816896BC8C445C628164F59987CE886EC12E_RuntimeMethod_var);
MethodInfo_t * L_54 = V_10;
V_2 = L_54;
}
IL_00e7:
{
MethodInfo_t * L_55 = V_10;
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_56 = V_12;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_57 = { reinterpret_cast<intptr_t> (OnDeserializingAttribute_tBBC20BC5DB0ABD1008045DBFBB881F7247409767_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_58 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_57, /*hidden argument*/NULL);
MethodInfo_t * L_59 = V_3;
IL2CPP_RUNTIME_CLASS_INIT(DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0_il2cpp_TypeInfo_var);
bool L_60 = DefaultContractResolver_IsValidCallback_m7CF3C3A4FCF267F4C459E71B2DCFA5722AD67728(L_55, L_56, L_58, L_59, (Type_t **)(&V_11), /*hidden argument*/NULL);
if (!L_60)
{
goto IL_0120;
}
}
IL_00ff:
{
List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D ** L_61 = ___onDeserializing3;
List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D ** L_62 = ___onDeserializing3;
List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D * L_63 = *((List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D **)L_62);
List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D * L_64 = L_63;
G_B15_0 = L_64;
G_B15_1 = L_61;
if (L_64)
{
G_B16_0 = L_64;
G_B16_1 = L_61;
goto IL_010d;
}
}
IL_0107:
{
List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D * L_65 = (List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D *)il2cpp_codegen_object_new(List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D_il2cpp_TypeInfo_var);
List_1__ctor_mF63E182EEB4786A2E9FB7F2C8C8D0683BD9ED093(L_65, /*hidden argument*/List_1__ctor_mF63E182EEB4786A2E9FB7F2C8C8D0683BD9ED093_RuntimeMethod_var);
G_B16_0 = L_65;
G_B16_1 = G_B15_1;
}
IL_010d:
{
*((RuntimeObject **)G_B16_1) = (RuntimeObject *)G_B16_0;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)G_B16_1, (void*)(RuntimeObject *)G_B16_0);
List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D ** L_66 = ___onDeserializing3;
List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D * L_67 = *((List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D **)L_66);
MethodInfo_t * L_68 = V_10;
SerializationCallback_t8B5297123C8DFAD6A6701E2F2046982E13CE1B9C * L_69 = JsonContract_CreateSerializationCallback_m80237D008F37FEF1CAC489A20645120CE18FDE80(L_68, /*hidden argument*/NULL);
NullCheck(L_67);
List_1_Add_m1C03816896BC8C445C628164F59987CE886EC12E(L_67, L_69, /*hidden argument*/List_1_Add_m1C03816896BC8C445C628164F59987CE886EC12E_RuntimeMethod_var);
MethodInfo_t * L_70 = V_10;
V_3 = L_70;
}
IL_0120:
{
bool L_71 = V_7;
if (L_71)
{
goto IL_015f;
}
}
IL_0124:
{
MethodInfo_t * L_72 = V_10;
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_73 = V_12;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_74 = { reinterpret_cast<intptr_t> (OnDeserializedAttribute_t2616E095E827F26C1B98001AC1C8EFBFC5E4C47D_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_75 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_74, /*hidden argument*/NULL);
MethodInfo_t * L_76 = V_4;
IL2CPP_RUNTIME_CLASS_INIT(DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0_il2cpp_TypeInfo_var);
bool L_77 = DefaultContractResolver_IsValidCallback_m7CF3C3A4FCF267F4C459E71B2DCFA5722AD67728(L_72, L_73, L_75, L_76, (Type_t **)(&V_11), /*hidden argument*/NULL);
if (!L_77)
{
goto IL_015f;
}
}
IL_013d:
{
List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D ** L_78 = ___onDeserialized4;
List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D ** L_79 = ___onDeserialized4;
List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D * L_80 = *((List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D **)L_79);
List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D * L_81 = L_80;
G_B20_0 = L_81;
G_B20_1 = L_78;
if (L_81)
{
G_B21_0 = L_81;
G_B21_1 = L_78;
goto IL_014b;
}
}
IL_0145:
{
List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D * L_82 = (List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D *)il2cpp_codegen_object_new(List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D_il2cpp_TypeInfo_var);
List_1__ctor_mF63E182EEB4786A2E9FB7F2C8C8D0683BD9ED093(L_82, /*hidden argument*/List_1__ctor_mF63E182EEB4786A2E9FB7F2C8C8D0683BD9ED093_RuntimeMethod_var);
G_B21_0 = L_82;
G_B21_1 = G_B20_1;
}
IL_014b:
{
*((RuntimeObject **)G_B21_1) = (RuntimeObject *)G_B21_0;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)G_B21_1, (void*)(RuntimeObject *)G_B21_0);
List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D ** L_83 = ___onDeserialized4;
List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D * L_84 = *((List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D **)L_83);
MethodInfo_t * L_85 = V_10;
SerializationCallback_t8B5297123C8DFAD6A6701E2F2046982E13CE1B9C * L_86 = JsonContract_CreateSerializationCallback_m80237D008F37FEF1CAC489A20645120CE18FDE80(L_85, /*hidden argument*/NULL);
NullCheck(L_84);
List_1_Add_m1C03816896BC8C445C628164F59987CE886EC12E(L_84, L_86, /*hidden argument*/List_1_Add_m1C03816896BC8C445C628164F59987CE886EC12E_RuntimeMethod_var);
MethodInfo_t * L_87 = V_10;
V_4 = L_87;
}
IL_015f:
{
MethodInfo_t * L_88 = V_10;
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_89 = V_12;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_90 = { reinterpret_cast<intptr_t> (OnErrorAttribute_tA62F181E11DB79D65EA388A4F798C30CA9C7A382_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_91 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_90, /*hidden argument*/NULL);
MethodInfo_t * L_92 = V_5;
IL2CPP_RUNTIME_CLASS_INIT(DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0_il2cpp_TypeInfo_var);
bool L_93 = DefaultContractResolver_IsValidCallback_m7CF3C3A4FCF267F4C459E71B2DCFA5722AD67728(L_88, L_89, L_91, L_92, (Type_t **)(&V_11), /*hidden argument*/NULL);
if (!L_93)
{
goto IL_019a;
}
}
IL_0178:
{
List_1_t3146B8EA2F3BD8E6B4682F880C8713B77D27EC6D ** L_94 = ___onError5;
List_1_t3146B8EA2F3BD8E6B4682F880C8713B77D27EC6D ** L_95 = ___onError5;
List_1_t3146B8EA2F3BD8E6B4682F880C8713B77D27EC6D * L_96 = *((List_1_t3146B8EA2F3BD8E6B4682F880C8713B77D27EC6D **)L_95);
List_1_t3146B8EA2F3BD8E6B4682F880C8713B77D27EC6D * L_97 = L_96;
G_B24_0 = L_97;
G_B24_1 = L_94;
if (L_97)
{
G_B25_0 = L_97;
G_B25_1 = L_94;
goto IL_0186;
}
}
IL_0180:
{
List_1_t3146B8EA2F3BD8E6B4682F880C8713B77D27EC6D * L_98 = (List_1_t3146B8EA2F3BD8E6B4682F880C8713B77D27EC6D *)il2cpp_codegen_object_new(List_1_t3146B8EA2F3BD8E6B4682F880C8713B77D27EC6D_il2cpp_TypeInfo_var);
List_1__ctor_m5510BC9CF019EE224165E524578F0231D4840066(L_98, /*hidden argument*/List_1__ctor_m5510BC9CF019EE224165E524578F0231D4840066_RuntimeMethod_var);
G_B25_0 = L_98;
G_B25_1 = G_B24_1;
}
IL_0186:
{
*((RuntimeObject **)G_B25_1) = (RuntimeObject *)G_B25_0;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)G_B25_1, (void*)(RuntimeObject *)G_B25_0);
List_1_t3146B8EA2F3BD8E6B4682F880C8713B77D27EC6D ** L_99 = ___onError5;
List_1_t3146B8EA2F3BD8E6B4682F880C8713B77D27EC6D * L_100 = *((List_1_t3146B8EA2F3BD8E6B4682F880C8713B77D27EC6D **)L_99);
MethodInfo_t * L_101 = V_10;
SerializationErrorCallback_t6EAECB0A4E241F49CA0D2A29EFCF4DCDDC9884B2 * L_102 = JsonContract_CreateSerializationErrorCallback_m570404ACFD6C0BACE5B3B39519FE05ADB43FA82F(L_101, /*hidden argument*/NULL);
NullCheck(L_100);
List_1_Add_mC9EC28432007C3F3966DA8B2E368E3B3131975CB(L_100, L_102, /*hidden argument*/List_1_Add_mC9EC28432007C3F3966DA8B2E368E3B3131975CB_RuntimeMethod_var);
MethodInfo_t * L_103 = V_10;
V_5 = L_103;
}
IL_019a:
{
int32_t L_104 = V_9;
V_9 = ((int32_t)il2cpp_codegen_add((int32_t)L_104, (int32_t)1));
}
IL_01a0:
{
int32_t L_105 = V_9;
MethodInfoU5BU5D_t93E968F23AF2DB5CFCFF13BE775A0E222C03586B* L_106 = V_8;
NullCheck(L_106);
if ((((int32_t)L_105) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_106)->max_length)))))))
{
goto IL_0058;
}
}
IL_01ab:
{
bool L_107 = Enumerator_MoveNext_mC501C7889B13D4FBA7F68FA6F8A0B617290E5EC9((Enumerator_t7708A1C0F78B6722936DF84038D589BB9202C547 *)(&V_0), /*hidden argument*/Enumerator_MoveNext_mC501C7889B13D4FBA7F68FA6F8A0B617290E5EC9_RuntimeMethod_var);
if (L_107)
{
goto IL_0024;
}
}
IL_01b7:
{
IL2CPP_LEAVE(0x1C7, FINALLY_01b9);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_01b9;
}
FINALLY_01b9:
{ // begin finally (depth: 1)
Enumerator_Dispose_m0D740B2062332CFA4AA69C3F1D45D5C834153AFC((Enumerator_t7708A1C0F78B6722936DF84038D589BB9202C547 *)(&V_0), /*hidden argument*/Enumerator_Dispose_m0D740B2062332CFA4AA69C3F1D45D5C834153AFC_RuntimeMethod_var);
IL2CPP_END_FINALLY(441)
} // end finally (depth: 1)
IL2CPP_CLEANUP(441)
{
IL2CPP_JUMP_TBL(0x1C7, IL_01c7)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_01c7:
{
return;
}
}
// System.Boolean Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::ShouldSkipDeserialized(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DefaultContractResolver_ShouldSkipDeserialized_m0EB084844A00EB70791CE739F2307D1C1F9FA4F5 (Type_t * ___t0, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// System.Boolean Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::ShouldSkipSerializing(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DefaultContractResolver_ShouldSkipSerializing_m5914BE0F17FE60E604EAF56D6FF19957DDFC824B (Type_t * ___t0, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// System.Collections.Generic.List`1<System.Type> Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::GetClassHierarchyForType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * DefaultContractResolver_GetClassHierarchyForType_mB2C0F793AEC5EC4C1495F0972B81A887F407D9E5 (DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0 * __this, Type_t * ___type0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultContractResolver_GetClassHierarchyForType_mB2C0F793AEC5EC4C1495F0972B81A887F407D9E5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * V_0 = NULL;
Type_t * V_1 = NULL;
{
List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * L_0 = (List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 *)il2cpp_codegen_object_new(List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0_il2cpp_TypeInfo_var);
List_1__ctor_m7C0781C8A2C9C48F1851408CD69DA6E3A8587154(L_0, /*hidden argument*/List_1__ctor_m7C0781C8A2C9C48F1851408CD69DA6E3A8587154_RuntimeMethod_var);
V_0 = L_0;
Type_t * L_1 = ___type0;
V_1 = L_1;
goto IL_0018;
}
IL_000a:
{
List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * L_2 = V_0;
Type_t * L_3 = V_1;
NullCheck(L_2);
List_1_Add_m57994E0773CB740B2495C2AE0CE7CBE3C47BB938(L_2, L_3, /*hidden argument*/List_1_Add_m57994E0773CB740B2495C2AE0CE7CBE3C47BB938_RuntimeMethod_var);
Type_t * L_4 = V_1;
Type_t * L_5 = TypeExtensions_BaseType_mE9173550A813685C11468E8AE97FCA2564B6FB8F(L_4, /*hidden argument*/NULL);
V_1 = L_5;
}
IL_0018:
{
Type_t * L_6 = V_1;
if (!L_6)
{
goto IL_0028;
}
}
{
Type_t * L_7 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_8 = { reinterpret_cast<intptr_t> (RuntimeObject_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_9 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_8, /*hidden argument*/NULL);
if ((!(((RuntimeObject*)(Type_t *)L_7) == ((RuntimeObject*)(Type_t *)L_9))))
{
goto IL_000a;
}
}
IL_0028:
{
List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * L_10 = V_0;
NullCheck(L_10);
List_1_Reverse_m5E938FE28794339BAC583720C1498831C8CD7C75(L_10, /*hidden argument*/List_1_Reverse_m5E938FE28794339BAC583720C1498831C8CD7C75_RuntimeMethod_var);
List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * L_11 = V_0;
return L_11;
}
}
// Valve.Newtonsoft.Json.Serialization.JsonDictionaryContract Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::CreateDictionaryContract(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonDictionaryContract_t7D39A549ABAEDA655A1140F78778D9B36692266C * DefaultContractResolver_CreateDictionaryContract_mD6B8AFF2ABC8B6B30E8DD58694EF47C7698E99BC (DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0 * __this, Type_t * ___objectType0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultContractResolver_CreateDictionaryContract_mD6B8AFF2ABC8B6B30E8DD58694EF47C7698E99BC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
JsonDictionaryContract_t7D39A549ABAEDA655A1140F78778D9B36692266C * V_0 = NULL;
JsonContainerAttribute_t4E39F1E5EA66CF61E90C47C81929BE4A853A2DF3 * V_1 = NULL;
ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * V_2 = NULL;
U3CU3Ec__DisplayClass52_0_t5662E89E4E0071A8350BC73F90FAA92457EC2F91 * V_3 = NULL;
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* V_4 = NULL;
Type_t * V_5 = NULL;
Type_t * G_B3_0 = NULL;
Type_t * G_B11_0 = NULL;
{
Type_t * L_0 = ___objectType0;
JsonDictionaryContract_t7D39A549ABAEDA655A1140F78778D9B36692266C * L_1 = (JsonDictionaryContract_t7D39A549ABAEDA655A1140F78778D9B36692266C *)il2cpp_codegen_object_new(JsonDictionaryContract_t7D39A549ABAEDA655A1140F78778D9B36692266C_il2cpp_TypeInfo_var);
JsonDictionaryContract__ctor_m71EEB830BC26666C81BB1157E13C344ED1DD34A9(L_1, L_0, /*hidden argument*/NULL);
V_0 = L_1;
JsonDictionaryContract_t7D39A549ABAEDA655A1140F78778D9B36692266C * L_2 = V_0;
DefaultContractResolver_InitializeContract_mC72BF19CFC13D483F2BD52C1825F01350DDBF749(__this, L_2, /*hidden argument*/NULL);
Type_t * L_3 = ___objectType0;
IL2CPP_RUNTIME_CLASS_INIT(JsonTypeReflector_tC161A1BF2506AB16B738C3935C2691A92B7A8C55_il2cpp_TypeInfo_var);
JsonContainerAttribute_t4E39F1E5EA66CF61E90C47C81929BE4A853A2DF3 * L_4 = JsonTypeReflector_GetAttribute_TisJsonContainerAttribute_t4E39F1E5EA66CF61E90C47C81929BE4A853A2DF3_m286674358436D5DD111A8F1F6A1DC2B5118FE0FF(L_3, /*hidden argument*/JsonTypeReflector_GetAttribute_TisJsonContainerAttribute_t4E39F1E5EA66CF61E90C47C81929BE4A853A2DF3_m286674358436D5DD111A8F1F6A1DC2B5118FE0FF_RuntimeMethod_var);
V_1 = L_4;
JsonContainerAttribute_t4E39F1E5EA66CF61E90C47C81929BE4A853A2DF3 * L_5 = V_1;
if (L_5)
{
goto IL_001b;
}
}
{
G_B3_0 = ((Type_t *)(NULL));
goto IL_0021;
}
IL_001b:
{
JsonContainerAttribute_t4E39F1E5EA66CF61E90C47C81929BE4A853A2DF3 * L_6 = V_1;
NullCheck(L_6);
Type_t * L_7 = JsonContainerAttribute_get_NamingStrategyType_m9748E3B19B3404BB56F8FB5DEAF9ED2B1EE74F41_inline(L_6, /*hidden argument*/NULL);
G_B3_0 = L_7;
}
IL_0021:
{
if (!G_B3_0)
{
goto IL_0049;
}
}
{
U3CU3Ec__DisplayClass52_0_t5662E89E4E0071A8350BC73F90FAA92457EC2F91 * L_8 = (U3CU3Ec__DisplayClass52_0_t5662E89E4E0071A8350BC73F90FAA92457EC2F91 *)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass52_0_t5662E89E4E0071A8350BC73F90FAA92457EC2F91_il2cpp_TypeInfo_var);
U3CU3Ec__DisplayClass52_0__ctor_mB9E0FD4F85253DDEF7B5406C30599E3FC15885FE(L_8, /*hidden argument*/NULL);
V_3 = L_8;
U3CU3Ec__DisplayClass52_0_t5662E89E4E0071A8350BC73F90FAA92457EC2F91 * L_9 = V_3;
JsonContainerAttribute_t4E39F1E5EA66CF61E90C47C81929BE4A853A2DF3 * L_10 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(JsonTypeReflector_tC161A1BF2506AB16B738C3935C2691A92B7A8C55_il2cpp_TypeInfo_var);
NamingStrategy_tBB6F8138B49E9B2704F7B87BF9130378976B9B46 * L_11 = JsonTypeReflector_GetContainerNamingStrategy_mD2D9E45963E078EB4629CE06BDB0ECC8B48EC907(L_10, /*hidden argument*/NULL);
NullCheck(L_9);
L_9->set_namingStrategy_0(L_11);
JsonDictionaryContract_t7D39A549ABAEDA655A1140F78778D9B36692266C * L_12 = V_0;
U3CU3Ec__DisplayClass52_0_t5662E89E4E0071A8350BC73F90FAA92457EC2F91 * L_13 = V_3;
Func_2_tD9EBF5FAD46B4F561FE5ABE814DC60E6253B8B96 * L_14 = (Func_2_tD9EBF5FAD46B4F561FE5ABE814DC60E6253B8B96 *)il2cpp_codegen_object_new(Func_2_tD9EBF5FAD46B4F561FE5ABE814DC60E6253B8B96_il2cpp_TypeInfo_var);
Func_2__ctor_mC276B952F432851DB174123FCF79CFABDF753BB0(L_14, L_13, (intptr_t)((intptr_t)U3CU3Ec__DisplayClass52_0_U3CCreateDictionaryContractU3Eb__0_m7B05BD5E9413AB87835FD4CDCC21C2F4B507FB94_RuntimeMethod_var), /*hidden argument*/Func_2__ctor_mC276B952F432851DB174123FCF79CFABDF753BB0_RuntimeMethod_var);
NullCheck(L_12);
JsonDictionaryContract_set_DictionaryKeyResolver_m1FDDCC3B1C40A57217ECBD9C6B7817F095A6B32A_inline(L_12, L_14, /*hidden argument*/NULL);
goto IL_005c;
}
IL_0049:
{
JsonDictionaryContract_t7D39A549ABAEDA655A1140F78778D9B36692266C * L_15 = V_0;
Func_2_tD9EBF5FAD46B4F561FE5ABE814DC60E6253B8B96 * L_16 = (Func_2_tD9EBF5FAD46B4F561FE5ABE814DC60E6253B8B96 *)il2cpp_codegen_object_new(Func_2_tD9EBF5FAD46B4F561FE5ABE814DC60E6253B8B96_il2cpp_TypeInfo_var);
Func_2__ctor_mC276B952F432851DB174123FCF79CFABDF753BB0(L_16, __this, (intptr_t)((intptr_t)GetVirtualMethodInfo(__this, 22)), /*hidden argument*/Func_2__ctor_mC276B952F432851DB174123FCF79CFABDF753BB0_RuntimeMethod_var);
NullCheck(L_15);
JsonDictionaryContract_set_DictionaryKeyResolver_m1FDDCC3B1C40A57217ECBD9C6B7817F095A6B32A_inline(L_15, L_16, /*hidden argument*/NULL);
}
IL_005c:
{
JsonDictionaryContract_t7D39A549ABAEDA655A1140F78778D9B36692266C * L_17 = V_0;
NullCheck(L_17);
Type_t * L_18 = ((JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 *)L_17)->get_NonNullableUnderlyingType_3();
ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * L_19 = DefaultContractResolver_GetAttributeConstructor_m7948A333399831BA741E4E498319B86A299DBC50(__this, L_18, /*hidden argument*/NULL);
V_2 = L_19;
ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * L_20 = V_2;
if (!L_20)
{
goto IL_0132;
}
}
{
ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * L_21 = V_2;
NullCheck(L_21);
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_22 = VirtFuncInvoker0< ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* >::Invoke(18 /* System.Reflection.ParameterInfo[] System.Reflection.MethodBase::GetParameters() */, L_21);
V_4 = L_22;
JsonDictionaryContract_t7D39A549ABAEDA655A1140F78778D9B36692266C * L_23 = V_0;
NullCheck(L_23);
Type_t * L_24 = JsonDictionaryContract_get_DictionaryKeyType_m8AB18997E686EF0B88B8306998130323C07C3306_inline(L_23, /*hidden argument*/NULL);
if (!L_24)
{
goto IL_0087;
}
}
{
JsonDictionaryContract_t7D39A549ABAEDA655A1140F78778D9B36692266C * L_25 = V_0;
NullCheck(L_25);
Type_t * L_26 = JsonDictionaryContract_get_DictionaryValueType_mB354460AD2F7AFCE45F309951B8F9EDE009A3CDB_inline(L_25, /*hidden argument*/NULL);
if (L_26)
{
goto IL_0093;
}
}
IL_0087:
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_27 = { reinterpret_cast<intptr_t> (IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_28 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_27, /*hidden argument*/NULL);
G_B11_0 = L_28;
goto IL_00d2;
}
IL_0093:
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_29 = { reinterpret_cast<intptr_t> (IEnumerable_1_t6FAC70CFE4E34421830AE8D9FE19DA2A83B85B75_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_30 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_29, /*hidden argument*/NULL);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_31 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_32 = L_31;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_33 = { reinterpret_cast<intptr_t> (KeyValuePair_2_t6EBC4F45DFA11BD66F12393D4E3AB14BD21E1D7E_0_0_0_var) };
Type_t * L_34 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_33, /*hidden argument*/NULL);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_35 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)2);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_36 = L_35;
JsonDictionaryContract_t7D39A549ABAEDA655A1140F78778D9B36692266C * L_37 = V_0;
NullCheck(L_37);
Type_t * L_38 = JsonDictionaryContract_get_DictionaryKeyType_m8AB18997E686EF0B88B8306998130323C07C3306_inline(L_37, /*hidden argument*/NULL);
NullCheck(L_36);
ArrayElementTypeCheck (L_36, L_38);
(L_36)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_38);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_39 = L_36;
JsonDictionaryContract_t7D39A549ABAEDA655A1140F78778D9B36692266C * L_40 = V_0;
NullCheck(L_40);
Type_t * L_41 = JsonDictionaryContract_get_DictionaryValueType_mB354460AD2F7AFCE45F309951B8F9EDE009A3CDB_inline(L_40, /*hidden argument*/NULL);
NullCheck(L_39);
ArrayElementTypeCheck (L_39, L_41);
(L_39)->SetAt(static_cast<il2cpp_array_size_t>(1), (Type_t *)L_41);
NullCheck(L_34);
Type_t * L_42 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(103 /* System.Type System.Type::MakeGenericType(System.Type[]) */, L_34, L_39);
NullCheck(L_32);
ArrayElementTypeCheck (L_32, L_42);
(L_32)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_42);
NullCheck(L_30);
Type_t * L_43 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(103 /* System.Type System.Type::MakeGenericType(System.Type[]) */, L_30, L_32);
G_B11_0 = L_43;
}
IL_00d2:
{
V_5 = G_B11_0;
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_44 = V_4;
NullCheck(L_44);
if ((((RuntimeArray*)L_44)->max_length))
{
goto IL_00e2;
}
}
{
JsonDictionaryContract_t7D39A549ABAEDA655A1140F78778D9B36692266C * L_45 = V_0;
NullCheck(L_45);
JsonDictionaryContract_set_HasParameterizedCreator_m8BCF12CC0AAC9F1DF6FEB1C52E41BFC00243D3B0_inline(L_45, (bool)0, /*hidden argument*/NULL);
goto IL_0121;
}
IL_00e2:
{
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_46 = V_4;
NullCheck(L_46);
if ((!(((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_46)->max_length))))) == ((uint32_t)1))))
{
goto IL_0104;
}
}
{
Type_t * L_47 = V_5;
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_48 = V_4;
NullCheck(L_48);
int32_t L_49 = 0;
ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * L_50 = (L_48)->GetAt(static_cast<il2cpp_array_size_t>(L_49));
NullCheck(L_50);
Type_t * L_51 = VirtFuncInvoker0< Type_t * >::Invoke(8 /* System.Type System.Reflection.ParameterInfo::get_ParameterType() */, L_50);
NullCheck(L_47);
bool L_52 = VirtFuncInvoker1< bool, Type_t * >::Invoke(118 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_47, L_51);
if (!L_52)
{
goto IL_0104;
}
}
{
JsonDictionaryContract_t7D39A549ABAEDA655A1140F78778D9B36692266C * L_53 = V_0;
NullCheck(L_53);
JsonDictionaryContract_set_HasParameterizedCreator_m8BCF12CC0AAC9F1DF6FEB1C52E41BFC00243D3B0_inline(L_53, (bool)1, /*hidden argument*/NULL);
goto IL_0121;
}
IL_0104:
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_54 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
JsonDictionaryContract_t7D39A549ABAEDA655A1140F78778D9B36692266C * L_55 = V_0;
NullCheck(L_55);
Type_t * L_56 = JsonContract_get_UnderlyingType_m7F278992455AC78881DB024ACB6646D1086025F1_inline(L_55, /*hidden argument*/NULL);
Type_t * L_57 = V_5;
String_t* L_58 = StringUtils_FormatWith_m0847578DA1FD34776DD9C2AB8A4BA694D05A8C6D(_stringLiteralD989E8D089D0736DAFE20B6B317BEC84DDB96C9C, L_54, L_56, L_57, /*hidden argument*/NULL);
JsonException_tB1AABB3C8AE18D781A8A9A14CB03AF7AFEA33928 * L_59 = (JsonException_tB1AABB3C8AE18D781A8A9A14CB03AF7AFEA33928 *)il2cpp_codegen_object_new(JsonException_tB1AABB3C8AE18D781A8A9A14CB03AF7AFEA33928_il2cpp_TypeInfo_var);
JsonException__ctor_m6AA74CB38DE6808C894C51C26CA5FB64B861204A(L_59, L_58, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_59, DefaultContractResolver_CreateDictionaryContract_mD6B8AFF2ABC8B6B30E8DD58694EF47C7698E99BC_RuntimeMethod_var);
}
IL_0121:
{
JsonDictionaryContract_t7D39A549ABAEDA655A1140F78778D9B36692266C * L_60 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(JsonTypeReflector_tC161A1BF2506AB16B738C3935C2691A92B7A8C55_il2cpp_TypeInfo_var);
ReflectionDelegateFactory_t87E79CD61C3504844C338EEC1949177370F2029A * L_61 = JsonTypeReflector_get_ReflectionDelegateFactory_mAD718C1AD00934D6A3A5B334C5494929E45A8DC7(/*hidden argument*/NULL);
ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * L_62 = V_2;
NullCheck(L_61);
ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 * L_63 = VirtFuncInvoker1< ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 *, MethodBase_t * >::Invoke(5 /* Valve.Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object> Valve.Newtonsoft.Json.Utilities.ReflectionDelegateFactory::CreateParameterizedConstructor(System.Reflection.MethodBase) */, L_61, L_62);
NullCheck(L_60);
JsonDictionaryContract_set_OverrideCreator_m7D5C91C09FAF108A51CE4EAABF59F55DECDF54B5_inline(L_60, L_63, /*hidden argument*/NULL);
}
IL_0132:
{
JsonDictionaryContract_t7D39A549ABAEDA655A1140F78778D9B36692266C * L_64 = V_0;
return L_64;
}
}
// Valve.Newtonsoft.Json.Serialization.JsonArrayContract Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::CreateArrayContract(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751 * DefaultContractResolver_CreateArrayContract_mD9631F85DADC756921780A2F8A961636EA978F6B (DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0 * __this, Type_t * ___objectType0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultContractResolver_CreateArrayContract_mD9631F85DADC756921780A2F8A961636EA978F6B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751 * V_0 = NULL;
ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * V_1 = NULL;
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* V_2 = NULL;
Type_t * V_3 = NULL;
Type_t * G_B4_0 = NULL;
{
Type_t * L_0 = ___objectType0;
JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751 * L_1 = (JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751 *)il2cpp_codegen_object_new(JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751_il2cpp_TypeInfo_var);
JsonArrayContract__ctor_m202B363DE8BE2077F790591E8947AF8AED933D18(L_1, L_0, /*hidden argument*/NULL);
V_0 = L_1;
JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751 * L_2 = V_0;
DefaultContractResolver_InitializeContract_mC72BF19CFC13D483F2BD52C1825F01350DDBF749(__this, L_2, /*hidden argument*/NULL);
JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751 * L_3 = V_0;
NullCheck(L_3);
Type_t * L_4 = ((JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 *)L_3)->get_NonNullableUnderlyingType_3();
ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * L_5 = DefaultContractResolver_GetAttributeConstructor_m7948A333399831BA741E4E498319B86A299DBC50(__this, L_4, /*hidden argument*/NULL);
V_1 = L_5;
ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * L_6 = V_1;
if (!L_6)
{
goto IL_00b4;
}
}
{
ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * L_7 = V_1;
NullCheck(L_7);
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_8 = VirtFuncInvoker0< ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* >::Invoke(18 /* System.Reflection.ParameterInfo[] System.Reflection.MethodBase::GetParameters() */, L_7);
V_2 = L_8;
JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751 * L_9 = V_0;
NullCheck(L_9);
Type_t * L_10 = JsonArrayContract_get_CollectionItemType_m10E501E1CDDDBFD2D6D70553B4BDDF5A067BC976_inline(L_9, /*hidden argument*/NULL);
if (L_10)
{
goto IL_003c;
}
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_11 = { reinterpret_cast<intptr_t> (IEnumerable_tD74549CEA1AA48E768382B94FEACBB07E2E3FA2C_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_12 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_11, /*hidden argument*/NULL);
G_B4_0 = L_12;
goto IL_005a;
}
IL_003c:
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_13 = { reinterpret_cast<intptr_t> (IEnumerable_1_t6FAC70CFE4E34421830AE8D9FE19DA2A83B85B75_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_14 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_13, /*hidden argument*/NULL);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_15 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_16 = L_15;
JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751 * L_17 = V_0;
NullCheck(L_17);
Type_t * L_18 = JsonArrayContract_get_CollectionItemType_m10E501E1CDDDBFD2D6D70553B4BDDF5A067BC976_inline(L_17, /*hidden argument*/NULL);
NullCheck(L_16);
ArrayElementTypeCheck (L_16, L_18);
(L_16)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_18);
NullCheck(L_14);
Type_t * L_19 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(103 /* System.Type System.Type::MakeGenericType(System.Type[]) */, L_14, L_16);
G_B4_0 = L_19;
}
IL_005a:
{
V_3 = G_B4_0;
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_20 = V_2;
NullCheck(L_20);
if ((((RuntimeArray*)L_20)->max_length))
{
goto IL_0068;
}
}
{
JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751 * L_21 = V_0;
NullCheck(L_21);
JsonArrayContract_set_HasParameterizedCreator_m3982B915EC8BFE7EF384D8D6663D1147AD6E2859_inline(L_21, (bool)0, /*hidden argument*/NULL);
goto IL_00a3;
}
IL_0068:
{
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_22 = V_2;
NullCheck(L_22);
if ((!(((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_22)->max_length))))) == ((uint32_t)1))))
{
goto IL_0087;
}
}
{
Type_t * L_23 = V_3;
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_24 = V_2;
NullCheck(L_24);
int32_t L_25 = 0;
ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * L_26 = (L_24)->GetAt(static_cast<il2cpp_array_size_t>(L_25));
NullCheck(L_26);
Type_t * L_27 = VirtFuncInvoker0< Type_t * >::Invoke(8 /* System.Type System.Reflection.ParameterInfo::get_ParameterType() */, L_26);
NullCheck(L_23);
bool L_28 = VirtFuncInvoker1< bool, Type_t * >::Invoke(118 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_23, L_27);
if (!L_28)
{
goto IL_0087;
}
}
{
JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751 * L_29 = V_0;
NullCheck(L_29);
JsonArrayContract_set_HasParameterizedCreator_m3982B915EC8BFE7EF384D8D6663D1147AD6E2859_inline(L_29, (bool)1, /*hidden argument*/NULL);
goto IL_00a3;
}
IL_0087:
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_30 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751 * L_31 = V_0;
NullCheck(L_31);
Type_t * L_32 = JsonContract_get_UnderlyingType_m7F278992455AC78881DB024ACB6646D1086025F1_inline(L_31, /*hidden argument*/NULL);
Type_t * L_33 = V_3;
String_t* L_34 = StringUtils_FormatWith_m0847578DA1FD34776DD9C2AB8A4BA694D05A8C6D(_stringLiteralD989E8D089D0736DAFE20B6B317BEC84DDB96C9C, L_30, L_32, L_33, /*hidden argument*/NULL);
JsonException_tB1AABB3C8AE18D781A8A9A14CB03AF7AFEA33928 * L_35 = (JsonException_tB1AABB3C8AE18D781A8A9A14CB03AF7AFEA33928 *)il2cpp_codegen_object_new(JsonException_tB1AABB3C8AE18D781A8A9A14CB03AF7AFEA33928_il2cpp_TypeInfo_var);
JsonException__ctor_m6AA74CB38DE6808C894C51C26CA5FB64B861204A(L_35, L_34, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_35, DefaultContractResolver_CreateArrayContract_mD9631F85DADC756921780A2F8A961636EA978F6B_RuntimeMethod_var);
}
IL_00a3:
{
JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751 * L_36 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(JsonTypeReflector_tC161A1BF2506AB16B738C3935C2691A92B7A8C55_il2cpp_TypeInfo_var);
ReflectionDelegateFactory_t87E79CD61C3504844C338EEC1949177370F2029A * L_37 = JsonTypeReflector_get_ReflectionDelegateFactory_mAD718C1AD00934D6A3A5B334C5494929E45A8DC7(/*hidden argument*/NULL);
ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * L_38 = V_1;
NullCheck(L_37);
ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 * L_39 = VirtFuncInvoker1< ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 *, MethodBase_t * >::Invoke(5 /* Valve.Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object> Valve.Newtonsoft.Json.Utilities.ReflectionDelegateFactory::CreateParameterizedConstructor(System.Reflection.MethodBase) */, L_37, L_38);
NullCheck(L_36);
JsonArrayContract_set_OverrideCreator_mF1BC2767BD2532C54ACD739C8098B703CB8F0E08(L_36, L_39, /*hidden argument*/NULL);
}
IL_00b4:
{
JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751 * L_40 = V_0;
return L_40;
}
}
// Valve.Newtonsoft.Json.Serialization.JsonPrimitiveContract Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::CreatePrimitiveContract(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonPrimitiveContract_t13E2CBC31714CB100233EB2014184B40973C2C84 * DefaultContractResolver_CreatePrimitiveContract_mAE78F64D252E9DA01BE1D2DA367C105191F7FC31 (DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0 * __this, Type_t * ___objectType0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultContractResolver_CreatePrimitiveContract_mAE78F64D252E9DA01BE1D2DA367C105191F7FC31_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
JsonPrimitiveContract_t13E2CBC31714CB100233EB2014184B40973C2C84 * V_0 = NULL;
{
Type_t * L_0 = ___objectType0;
JsonPrimitiveContract_t13E2CBC31714CB100233EB2014184B40973C2C84 * L_1 = (JsonPrimitiveContract_t13E2CBC31714CB100233EB2014184B40973C2C84 *)il2cpp_codegen_object_new(JsonPrimitiveContract_t13E2CBC31714CB100233EB2014184B40973C2C84_il2cpp_TypeInfo_var);
JsonPrimitiveContract__ctor_mAAB8E3EC58C7D137FACEFE9B953B4838684329EC(L_1, L_0, /*hidden argument*/NULL);
V_0 = L_1;
JsonPrimitiveContract_t13E2CBC31714CB100233EB2014184B40973C2C84 * L_2 = V_0;
DefaultContractResolver_InitializeContract_mC72BF19CFC13D483F2BD52C1825F01350DDBF749(__this, L_2, /*hidden argument*/NULL);
JsonPrimitiveContract_t13E2CBC31714CB100233EB2014184B40973C2C84 * L_3 = V_0;
return L_3;
}
}
// Valve.Newtonsoft.Json.Serialization.JsonLinqContract Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::CreateLinqContract(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonLinqContract_t55453AE956FB1B39CD404E4ED22E563B434C1BED * DefaultContractResolver_CreateLinqContract_m49649BCF21F6468117A4558CF491E8505B4A3056 (DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0 * __this, Type_t * ___objectType0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultContractResolver_CreateLinqContract_m49649BCF21F6468117A4558CF491E8505B4A3056_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
JsonLinqContract_t55453AE956FB1B39CD404E4ED22E563B434C1BED * V_0 = NULL;
{
Type_t * L_0 = ___objectType0;
JsonLinqContract_t55453AE956FB1B39CD404E4ED22E563B434C1BED * L_1 = (JsonLinqContract_t55453AE956FB1B39CD404E4ED22E563B434C1BED *)il2cpp_codegen_object_new(JsonLinqContract_t55453AE956FB1B39CD404E4ED22E563B434C1BED_il2cpp_TypeInfo_var);
JsonLinqContract__ctor_m7B7EB01959849DBF32327526D6E06A0DE3292D6F(L_1, L_0, /*hidden argument*/NULL);
V_0 = L_1;
JsonLinqContract_t55453AE956FB1B39CD404E4ED22E563B434C1BED * L_2 = V_0;
DefaultContractResolver_InitializeContract_mC72BF19CFC13D483F2BD52C1825F01350DDBF749(__this, L_2, /*hidden argument*/NULL);
JsonLinqContract_t55453AE956FB1B39CD404E4ED22E563B434C1BED * L_3 = V_0;
return L_3;
}
}
// Valve.Newtonsoft.Json.Serialization.JsonISerializableContract Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::CreateISerializableContract(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonISerializableContract_tC390B7D7091FE7D26C0FE026BDB2DCA1D1E64AA0 * DefaultContractResolver_CreateISerializableContract_m447B7B0BF732A64A7BFDA664D00B832BF030543B (DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0 * __this, Type_t * ___objectType0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultContractResolver_CreateISerializableContract_m447B7B0BF732A64A7BFDA664D00B832BF030543B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
JsonISerializableContract_tC390B7D7091FE7D26C0FE026BDB2DCA1D1E64AA0 * V_0 = NULL;
ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * V_1 = NULL;
ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 * V_2 = NULL;
{
Type_t * L_0 = ___objectType0;
JsonISerializableContract_tC390B7D7091FE7D26C0FE026BDB2DCA1D1E64AA0 * L_1 = (JsonISerializableContract_tC390B7D7091FE7D26C0FE026BDB2DCA1D1E64AA0 *)il2cpp_codegen_object_new(JsonISerializableContract_tC390B7D7091FE7D26C0FE026BDB2DCA1D1E64AA0_il2cpp_TypeInfo_var);
JsonISerializableContract__ctor_m74C3F2C4B4DB692919D6A06C2C1793D7E8508673(L_1, L_0, /*hidden argument*/NULL);
V_0 = L_1;
JsonISerializableContract_tC390B7D7091FE7D26C0FE026BDB2DCA1D1E64AA0 * L_2 = V_0;
DefaultContractResolver_InitializeContract_mC72BF19CFC13D483F2BD52C1825F01350DDBF749(__this, L_2, /*hidden argument*/NULL);
JsonISerializableContract_tC390B7D7091FE7D26C0FE026BDB2DCA1D1E64AA0 * L_3 = V_0;
NullCheck(L_3);
Type_t * L_4 = ((JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 *)L_3)->get_NonNullableUnderlyingType_3();
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_5 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)2);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_6 = L_5;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_7 = { reinterpret_cast<intptr_t> (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_8 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_7, /*hidden argument*/NULL);
NullCheck(L_6);
ArrayElementTypeCheck (L_6, L_8);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_8);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_9 = L_6;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_10 = { reinterpret_cast<intptr_t> (StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034_0_0_0_var) };
Type_t * L_11 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_10, /*hidden argument*/NULL);
NullCheck(L_9);
ArrayElementTypeCheck (L_9, L_11);
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(1), (Type_t *)L_11);
NullCheck(L_4);
ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * L_12 = Type_GetConstructor_m53CF9E12A23096404A64D1BB7B894657C9063A07(L_4, ((int32_t)52), (Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 *)NULL, L_9, (ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA*)(ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA*)NULL, /*hidden argument*/NULL);
V_1 = L_12;
ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * L_13 = V_1;
if (!L_13)
{
goto IL_0054;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(JsonTypeReflector_tC161A1BF2506AB16B738C3935C2691A92B7A8C55_il2cpp_TypeInfo_var);
ReflectionDelegateFactory_t87E79CD61C3504844C338EEC1949177370F2029A * L_14 = JsonTypeReflector_get_ReflectionDelegateFactory_mAD718C1AD00934D6A3A5B334C5494929E45A8DC7(/*hidden argument*/NULL);
ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * L_15 = V_1;
NullCheck(L_14);
ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 * L_16 = VirtFuncInvoker1< ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 *, MethodBase_t * >::Invoke(5 /* Valve.Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object> Valve.Newtonsoft.Json.Utilities.ReflectionDelegateFactory::CreateParameterizedConstructor(System.Reflection.MethodBase) */, L_14, L_15);
V_2 = L_16;
JsonISerializableContract_tC390B7D7091FE7D26C0FE026BDB2DCA1D1E64AA0 * L_17 = V_0;
ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 * L_18 = V_2;
NullCheck(L_17);
JsonISerializableContract_set_ISerializableCreator_m8C9FCFA15BD4554D507B36FAFD77301F530C954E_inline(L_17, L_18, /*hidden argument*/NULL);
}
IL_0054:
{
JsonISerializableContract_tC390B7D7091FE7D26C0FE026BDB2DCA1D1E64AA0 * L_19 = V_0;
return L_19;
}
}
// Valve.Newtonsoft.Json.Serialization.JsonStringContract Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::CreateStringContract(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonStringContract_tCBC48935FDB85CACCA24D751235BCCDA72F91299 * DefaultContractResolver_CreateStringContract_mD45CC850B7456B4605EE231E309F6013A8E47469 (DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0 * __this, Type_t * ___objectType0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultContractResolver_CreateStringContract_mD45CC850B7456B4605EE231E309F6013A8E47469_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
JsonStringContract_tCBC48935FDB85CACCA24D751235BCCDA72F91299 * V_0 = NULL;
{
Type_t * L_0 = ___objectType0;
JsonStringContract_tCBC48935FDB85CACCA24D751235BCCDA72F91299 * L_1 = (JsonStringContract_tCBC48935FDB85CACCA24D751235BCCDA72F91299 *)il2cpp_codegen_object_new(JsonStringContract_tCBC48935FDB85CACCA24D751235BCCDA72F91299_il2cpp_TypeInfo_var);
JsonStringContract__ctor_m33AD10998643A43645F1368995EE2E9419DFA9EF(L_1, L_0, /*hidden argument*/NULL);
V_0 = L_1;
JsonStringContract_tCBC48935FDB85CACCA24D751235BCCDA72F91299 * L_2 = V_0;
DefaultContractResolver_InitializeContract_mC72BF19CFC13D483F2BD52C1825F01350DDBF749(__this, L_2, /*hidden argument*/NULL);
JsonStringContract_tCBC48935FDB85CACCA24D751235BCCDA72F91299 * L_3 = V_0;
return L_3;
}
}
// Valve.Newtonsoft.Json.Serialization.JsonContract Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::CreateContract(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * DefaultContractResolver_CreateContract_m8E7DEDC70AA63D564EC97A59801D945F5775B314 (DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0 * __this, Type_t * ___objectType0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultContractResolver_CreateContract_m8E7DEDC70AA63D564EC97A59801D945F5775B314_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Type_t * V_0 = NULL;
JsonContainerAttribute_t4E39F1E5EA66CF61E90C47C81929BE4A853A2DF3 * V_1 = NULL;
{
Type_t * L_0 = ___objectType0;
IL2CPP_RUNTIME_CLASS_INIT(DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0_il2cpp_TypeInfo_var);
bool L_1 = DefaultContractResolver_IsJsonPrimitiveType_mEC01637E154D3F72466AC49F74A808C48481317E(L_0, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_0010;
}
}
{
Type_t * L_2 = ___objectType0;
JsonPrimitiveContract_t13E2CBC31714CB100233EB2014184B40973C2C84 * L_3 = VirtFuncInvoker1< JsonPrimitiveContract_t13E2CBC31714CB100233EB2014184B40973C2C84 *, Type_t * >::Invoke(13 /* Valve.Newtonsoft.Json.Serialization.JsonPrimitiveContract Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::CreatePrimitiveContract(System.Type) */, __this, L_2);
return L_3;
}
IL_0010:
{
Type_t * L_4 = ___objectType0;
IL2CPP_RUNTIME_CLASS_INIT(ReflectionUtils_t1845D588ADA15C351615E925042ECF790B622987_il2cpp_TypeInfo_var);
Type_t * L_5 = ReflectionUtils_EnsureNotNullableType_m753193EC20CD9BEA42E910266A76C1A2580ACF7A(L_4, /*hidden argument*/NULL);
V_0 = L_5;
Type_t * L_6 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(JsonTypeReflector_tC161A1BF2506AB16B738C3935C2691A92B7A8C55_il2cpp_TypeInfo_var);
JsonContainerAttribute_t4E39F1E5EA66CF61E90C47C81929BE4A853A2DF3 * L_7 = JsonTypeReflector_GetCachedAttribute_TisJsonContainerAttribute_t4E39F1E5EA66CF61E90C47C81929BE4A853A2DF3_m65FBB7F4C33DB203411378AD9097CC81AACBF7EC(L_6, /*hidden argument*/JsonTypeReflector_GetCachedAttribute_TisJsonContainerAttribute_t4E39F1E5EA66CF61E90C47C81929BE4A853A2DF3_m65FBB7F4C33DB203411378AD9097CC81AACBF7EC_RuntimeMethod_var);
V_1 = L_7;
JsonContainerAttribute_t4E39F1E5EA66CF61E90C47C81929BE4A853A2DF3 * L_8 = V_1;
if (!((JsonObjectAttribute_tBFAF1467CED5A13D2048CF8E61AEEEC05413CC62 *)IsInstSealed((RuntimeObject*)L_8, JsonObjectAttribute_tBFAF1467CED5A13D2048CF8E61AEEEC05413CC62_il2cpp_TypeInfo_var)))
{
goto IL_002e;
}
}
{
Type_t * L_9 = ___objectType0;
JsonObjectContract_tC08A0614773A277BE2FACD612729195811D606B5 * L_10 = VirtFuncInvoker1< JsonObjectContract_tC08A0614773A277BE2FACD612729195811D606B5 *, Type_t * >::Invoke(7 /* Valve.Newtonsoft.Json.Serialization.JsonObjectContract Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::CreateObjectContract(System.Type) */, __this, L_9);
return L_10;
}
IL_002e:
{
JsonContainerAttribute_t4E39F1E5EA66CF61E90C47C81929BE4A853A2DF3 * L_11 = V_1;
if (!((JsonArrayAttribute_t609984D834AAFFAA816EEE2AFF222F4A49815F8D *)IsInstSealed((RuntimeObject*)L_11, JsonArrayAttribute_t609984D834AAFFAA816EEE2AFF222F4A49815F8D_il2cpp_TypeInfo_var)))
{
goto IL_003e;
}
}
{
Type_t * L_12 = ___objectType0;
JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751 * L_13 = VirtFuncInvoker1< JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751 *, Type_t * >::Invoke(12 /* Valve.Newtonsoft.Json.Serialization.JsonArrayContract Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::CreateArrayContract(System.Type) */, __this, L_12);
return L_13;
}
IL_003e:
{
JsonContainerAttribute_t4E39F1E5EA66CF61E90C47C81929BE4A853A2DF3 * L_14 = V_1;
if (!((JsonDictionaryAttribute_tFB78E6CDFB0FC45A05E03DD5201A04D848CF3BE1 *)IsInstSealed((RuntimeObject*)L_14, JsonDictionaryAttribute_tFB78E6CDFB0FC45A05E03DD5201A04D848CF3BE1_il2cpp_TypeInfo_var)))
{
goto IL_004e;
}
}
{
Type_t * L_15 = ___objectType0;
JsonDictionaryContract_t7D39A549ABAEDA655A1140F78778D9B36692266C * L_16 = VirtFuncInvoker1< JsonDictionaryContract_t7D39A549ABAEDA655A1140F78778D9B36692266C *, Type_t * >::Invoke(11 /* Valve.Newtonsoft.Json.Serialization.JsonDictionaryContract Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::CreateDictionaryContract(System.Type) */, __this, L_15);
return L_16;
}
IL_004e:
{
Type_t * L_17 = V_0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_18 = { reinterpret_cast<intptr_t> (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_19 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_18, /*hidden argument*/NULL);
if ((((RuntimeObject*)(Type_t *)L_17) == ((RuntimeObject*)(Type_t *)L_19)))
{
goto IL_006d;
}
}
{
Type_t * L_20 = V_0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_21 = { reinterpret_cast<intptr_t> (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_22 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_21, /*hidden argument*/NULL);
NullCheck(L_20);
bool L_23 = VirtFuncInvoker1< bool, Type_t * >::Invoke(116 /* System.Boolean System.Type::IsSubclassOf(System.Type) */, L_20, L_22);
if (!L_23)
{
goto IL_0075;
}
}
IL_006d:
{
Type_t * L_24 = ___objectType0;
JsonLinqContract_t55453AE956FB1B39CD404E4ED22E563B434C1BED * L_25 = VirtFuncInvoker1< JsonLinqContract_t55453AE956FB1B39CD404E4ED22E563B434C1BED *, Type_t * >::Invoke(14 /* Valve.Newtonsoft.Json.Serialization.JsonLinqContract Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::CreateLinqContract(System.Type) */, __this, L_24);
return L_25;
}
IL_0075:
{
Type_t * L_26 = V_0;
bool L_27 = CollectionUtils_IsDictionaryType_mBF325EBC9B5610B0755AC7FB063BC1877F96778C(L_26, /*hidden argument*/NULL);
if (!L_27)
{
goto IL_0085;
}
}
{
Type_t * L_28 = ___objectType0;
JsonDictionaryContract_t7D39A549ABAEDA655A1140F78778D9B36692266C * L_29 = VirtFuncInvoker1< JsonDictionaryContract_t7D39A549ABAEDA655A1140F78778D9B36692266C *, Type_t * >::Invoke(11 /* Valve.Newtonsoft.Json.Serialization.JsonDictionaryContract Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::CreateDictionaryContract(System.Type) */, __this, L_28);
return L_29;
}
IL_0085:
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_30 = { reinterpret_cast<intptr_t> (IEnumerable_tD74549CEA1AA48E768382B94FEACBB07E2E3FA2C_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_31 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_30, /*hidden argument*/NULL);
Type_t * L_32 = V_0;
NullCheck(L_31);
bool L_33 = VirtFuncInvoker1< bool, Type_t * >::Invoke(118 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_31, L_32);
if (!L_33)
{
goto IL_009f;
}
}
{
Type_t * L_34 = ___objectType0;
JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751 * L_35 = VirtFuncInvoker1< JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751 *, Type_t * >::Invoke(12 /* Valve.Newtonsoft.Json.Serialization.JsonArrayContract Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::CreateArrayContract(System.Type) */, __this, L_34);
return L_35;
}
IL_009f:
{
Type_t * L_36 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0_il2cpp_TypeInfo_var);
bool L_37 = DefaultContractResolver_CanConvertToString_m17AFEBA19D02B283354EBB28758C8758C9FD2EB5(L_36, /*hidden argument*/NULL);
if (!L_37)
{
goto IL_00af;
}
}
{
Type_t * L_38 = ___objectType0;
JsonStringContract_tCBC48935FDB85CACCA24D751235BCCDA72F91299 * L_39 = VirtFuncInvoker1< JsonStringContract_tCBC48935FDB85CACCA24D751235BCCDA72F91299 *, Type_t * >::Invoke(16 /* Valve.Newtonsoft.Json.Serialization.JsonStringContract Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::CreateStringContract(System.Type) */, __this, L_38);
return L_39;
}
IL_00af:
{
bool L_40 = DefaultContractResolver_get_IgnoreSerializableInterface_m3573E97397949ED13C4ABFED4A9A86DD317F451E_inline(__this, /*hidden argument*/NULL);
if (L_40)
{
goto IL_00d1;
}
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_41 = { reinterpret_cast<intptr_t> (ISerializable_t6367D17788BC3D11199A6922F5932FB0DB2F2815_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_42 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_41, /*hidden argument*/NULL);
Type_t * L_43 = V_0;
NullCheck(L_42);
bool L_44 = VirtFuncInvoker1< bool, Type_t * >::Invoke(118 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_42, L_43);
if (!L_44)
{
goto IL_00d1;
}
}
{
Type_t * L_45 = ___objectType0;
JsonISerializableContract_tC390B7D7091FE7D26C0FE026BDB2DCA1D1E64AA0 * L_46 = VirtFuncInvoker1< JsonISerializableContract_tC390B7D7091FE7D26C0FE026BDB2DCA1D1E64AA0 *, Type_t * >::Invoke(15 /* Valve.Newtonsoft.Json.Serialization.JsonISerializableContract Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::CreateISerializableContract(System.Type) */, __this, L_45);
return L_46;
}
IL_00d1:
{
Type_t * L_47 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0_il2cpp_TypeInfo_var);
bool L_48 = DefaultContractResolver_IsIConvertible_mADF4E484E6B768A67C17A39860BA56181AB14A8D(L_47, /*hidden argument*/NULL);
if (!L_48)
{
goto IL_00e1;
}
}
{
Type_t * L_49 = V_0;
JsonPrimitiveContract_t13E2CBC31714CB100233EB2014184B40973C2C84 * L_50 = VirtFuncInvoker1< JsonPrimitiveContract_t13E2CBC31714CB100233EB2014184B40973C2C84 *, Type_t * >::Invoke(13 /* Valve.Newtonsoft.Json.Serialization.JsonPrimitiveContract Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::CreatePrimitiveContract(System.Type) */, __this, L_49);
return L_50;
}
IL_00e1:
{
Type_t * L_51 = ___objectType0;
JsonObjectContract_tC08A0614773A277BE2FACD612729195811D606B5 * L_52 = VirtFuncInvoker1< JsonObjectContract_tC08A0614773A277BE2FACD612729195811D606B5 *, Type_t * >::Invoke(7 /* Valve.Newtonsoft.Json.Serialization.JsonObjectContract Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::CreateObjectContract(System.Type) */, __this, L_51);
return L_52;
}
}
// System.Boolean Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::IsJsonPrimitiveType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DefaultContractResolver_IsJsonPrimitiveType_mEC01637E154D3F72466AC49F74A808C48481317E (Type_t * ___t0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultContractResolver_IsJsonPrimitiveType_mEC01637E154D3F72466AC49F74A808C48481317E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
Type_t * L_0 = ___t0;
IL2CPP_RUNTIME_CLASS_INIT(ConvertUtils_tC3DD9049164372FED28C737BA8BF739779E0E272_il2cpp_TypeInfo_var);
int32_t L_1 = ConvertUtils_GetTypeCode_m95E65290441B5FEC7C2ACA3B5262B4A10F517826(L_0, /*hidden argument*/NULL);
V_0 = L_1;
int32_t L_2 = V_0;
if (!L_2)
{
goto IL_0012;
}
}
{
int32_t L_3 = V_0;
return (bool)((((int32_t)((((int32_t)L_3) == ((int32_t)1))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_0012:
{
return (bool)0;
}
}
// System.Boolean Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::IsIConvertible(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DefaultContractResolver_IsIConvertible_mADF4E484E6B768A67C17A39860BA56181AB14A8D (Type_t * ___t0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultContractResolver_IsIConvertible_mADF4E484E6B768A67C17A39860BA56181AB14A8D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_0, /*hidden argument*/NULL);
Type_t * L_2 = ___t0;
NullCheck(L_1);
bool L_3 = VirtFuncInvoker1< bool, Type_t * >::Invoke(118 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_1, L_2);
if (L_3)
{
goto IL_0031;
}
}
{
Type_t * L_4 = ___t0;
IL2CPP_RUNTIME_CLASS_INIT(ReflectionUtils_t1845D588ADA15C351615E925042ECF790B622987_il2cpp_TypeInfo_var);
bool L_5 = ReflectionUtils_IsNullableType_m8EA034BEA71F38E85D062B63F7C87C1AC02F4B70(L_4, /*hidden argument*/NULL);
if (!L_5)
{
goto IL_0045;
}
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_6 = { reinterpret_cast<intptr_t> (IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_7 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_6, /*hidden argument*/NULL);
Type_t * L_8 = ___t0;
Type_t * L_9 = Nullable_GetUnderlyingType_m038B195642BF738026196B1629997705B6317D04(L_8, /*hidden argument*/NULL);
NullCheck(L_7);
bool L_10 = VirtFuncInvoker1< bool, Type_t * >::Invoke(118 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_7, L_9);
if (!L_10)
{
goto IL_0045;
}
}
IL_0031:
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_11 = { reinterpret_cast<intptr_t> (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_12 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_11, /*hidden argument*/NULL);
Type_t * L_13 = ___t0;
NullCheck(L_12);
bool L_14 = VirtFuncInvoker1< bool, Type_t * >::Invoke(118 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_12, L_13);
return (bool)((((int32_t)L_14) == ((int32_t)0))? 1 : 0);
}
IL_0045:
{
return (bool)0;
}
}
// System.Boolean Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::CanConvertToString(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DefaultContractResolver_CanConvertToString_m17AFEBA19D02B283354EBB28758C8758C9FD2EB5 (Type_t * ___type0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultContractResolver_CanConvertToString_m17AFEBA19D02B283354EBB28758C8758C9FD2EB5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * V_0 = NULL;
{
Type_t * L_0 = ___type0;
IL2CPP_RUNTIME_CLASS_INIT(ConvertUtils_tC3DD9049164372FED28C737BA8BF739779E0E272_il2cpp_TypeInfo_var);
TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * L_1 = ConvertUtils_GetConverter_m284C1B47B7110B5B2B9F0DBF0E962F77B326128F(L_0, /*hidden argument*/NULL);
V_0 = L_1;
TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * L_2 = V_0;
if (!L_2)
{
goto IL_0040;
}
}
{
TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * L_3 = V_0;
if (((ComponentConverter_tAFCE49784F59197CB5E92C8ED566B069D1A5766E *)IsInstClass((RuntimeObject*)L_3, ComponentConverter_tAFCE49784F59197CB5E92C8ED566B069D1A5766E_il2cpp_TypeInfo_var)))
{
goto IL_0040;
}
}
{
TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * L_4 = V_0;
if (((ReferenceConverter_t5080472EE999A1F00721E6C5C97013762C85C7E4 *)IsInstClass((RuntimeObject*)L_4, ReferenceConverter_t5080472EE999A1F00721E6C5C97013762C85C7E4_il2cpp_TypeInfo_var)))
{
goto IL_0040;
}
}
{
TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * L_5 = V_0;
NullCheck(L_5);
Type_t * L_6 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_5, /*hidden argument*/NULL);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_7 = { reinterpret_cast<intptr_t> (TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_8 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_7, /*hidden argument*/NULL);
if ((((RuntimeObject*)(Type_t *)L_6) == ((RuntimeObject*)(Type_t *)L_8)))
{
goto IL_0040;
}
}
{
TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * L_9 = V_0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_10 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_11 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_10, /*hidden argument*/NULL);
NullCheck(L_9);
bool L_12 = TypeConverter_CanConvertTo_mFD084EFAE4C064C6844E20E5A0C6719925A2D938(L_9, L_11, /*hidden argument*/NULL);
if (!L_12)
{
goto IL_0040;
}
}
{
return (bool)1;
}
IL_0040:
{
Type_t * L_13 = ___type0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_14 = { reinterpret_cast<intptr_t> (Type_t_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_15 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_14, /*hidden argument*/NULL);
if ((((RuntimeObject*)(Type_t *)L_13) == ((RuntimeObject*)(Type_t *)L_15)))
{
goto IL_005f;
}
}
{
Type_t * L_16 = ___type0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_17 = { reinterpret_cast<intptr_t> (Type_t_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_18 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_17, /*hidden argument*/NULL);
NullCheck(L_16);
bool L_19 = VirtFuncInvoker1< bool, Type_t * >::Invoke(116 /* System.Boolean System.Type::IsSubclassOf(System.Type) */, L_16, L_18);
if (!L_19)
{
goto IL_0061;
}
}
IL_005f:
{
return (bool)1;
}
IL_0061:
{
return (bool)0;
}
}
// System.Boolean Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::IsValidCallback(System.Reflection.MethodInfo,System.Reflection.ParameterInfo[],System.Type,System.Reflection.MethodInfo,System.Type&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DefaultContractResolver_IsValidCallback_m7CF3C3A4FCF267F4C459E71B2DCFA5722AD67728 (MethodInfo_t * ___method0, ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* ___parameters1, Type_t * ___attributeType2, MethodInfo_t * ___currentCallback3, Type_t ** ___prevAttributeType4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultContractResolver_IsValidCallback_m7CF3C3A4FCF267F4C459E71B2DCFA5722AD67728_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
MethodInfo_t * L_0 = ___method0;
Type_t * L_1 = ___attributeType2;
NullCheck(L_0);
bool L_2 = VirtFuncInvoker2< bool, Type_t *, bool >::Invoke(13 /* System.Boolean System.Reflection.MemberInfo::IsDefined(System.Type,System.Boolean) */, L_0, L_1, (bool)0);
if (L_2)
{
goto IL_000c;
}
}
{
return (bool)0;
}
IL_000c:
{
MethodInfo_t * L_3 = ___currentCallback3;
if (!L_3)
{
goto IL_0032;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_4 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
MethodInfo_t * L_5 = ___method0;
MethodInfo_t * L_6 = ___currentCallback3;
MethodInfo_t * L_7 = ___method0;
NullCheck(L_7);
Type_t * L_8 = VirtFuncInvoker0< Type_t * >::Invoke(9 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_7);
IL2CPP_RUNTIME_CLASS_INIT(DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0_il2cpp_TypeInfo_var);
String_t* L_9 = DefaultContractResolver_GetClrTypeFullName_m33C4566EC0DE01AFF07A3EB76BEB5E261EF94098(L_8, /*hidden argument*/NULL);
Type_t * L_10 = ___attributeType2;
String_t* L_11 = StringUtils_FormatWith_mACF1C89EBA5A049134865B73284A20EC78AB5E4A(_stringLiteral3CF400BD525F5AAA80ED8C5E26863A2D874A5D77, L_4, L_5, L_6, L_9, L_10, /*hidden argument*/NULL);
JsonException_tB1AABB3C8AE18D781A8A9A14CB03AF7AFEA33928 * L_12 = (JsonException_tB1AABB3C8AE18D781A8A9A14CB03AF7AFEA33928 *)il2cpp_codegen_object_new(JsonException_tB1AABB3C8AE18D781A8A9A14CB03AF7AFEA33928_il2cpp_TypeInfo_var);
JsonException__ctor_m6AA74CB38DE6808C894C51C26CA5FB64B861204A(L_12, L_11, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, DefaultContractResolver_IsValidCallback_m7CF3C3A4FCF267F4C459E71B2DCFA5722AD67728_RuntimeMethod_var);
}
IL_0032:
{
Type_t ** L_13 = ___prevAttributeType4;
Type_t * L_14 = *((Type_t **)L_13);
if (!L_14)
{
goto IL_005c;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_15 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
Type_t ** L_16 = ___prevAttributeType4;
Type_t * L_17 = *((Type_t **)L_16);
Type_t * L_18 = ___attributeType2;
MethodInfo_t * L_19 = ___method0;
NullCheck(L_19);
Type_t * L_20 = VirtFuncInvoker0< Type_t * >::Invoke(9 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_19);
IL2CPP_RUNTIME_CLASS_INIT(DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0_il2cpp_TypeInfo_var);
String_t* L_21 = DefaultContractResolver_GetClrTypeFullName_m33C4566EC0DE01AFF07A3EB76BEB5E261EF94098(L_20, /*hidden argument*/NULL);
MethodInfo_t * L_22 = ___method0;
String_t* L_23 = StringUtils_FormatWith_mACF1C89EBA5A049134865B73284A20EC78AB5E4A(_stringLiteral7E9B7C8AA195C54BE4AE8AC72BB120621B42F2C6, L_15, L_17, L_18, L_21, L_22, /*hidden argument*/NULL);
JsonException_tB1AABB3C8AE18D781A8A9A14CB03AF7AFEA33928 * L_24 = (JsonException_tB1AABB3C8AE18D781A8A9A14CB03AF7AFEA33928 *)il2cpp_codegen_object_new(JsonException_tB1AABB3C8AE18D781A8A9A14CB03AF7AFEA33928_il2cpp_TypeInfo_var);
JsonException__ctor_m6AA74CB38DE6808C894C51C26CA5FB64B861204A(L_24, L_23, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_24, DefaultContractResolver_IsValidCallback_m7CF3C3A4FCF267F4C459E71B2DCFA5722AD67728_RuntimeMethod_var);
}
IL_005c:
{
MethodInfo_t * L_25 = ___method0;
NullCheck(L_25);
bool L_26 = MethodBase_get_IsVirtual_m60B52F086B75D675CAB423C351C3B0CA062675F4(L_25, /*hidden argument*/NULL);
if (!L_26)
{
goto IL_0086;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_27 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
MethodInfo_t * L_28 = ___method0;
MethodInfo_t * L_29 = ___method0;
NullCheck(L_29);
Type_t * L_30 = VirtFuncInvoker0< Type_t * >::Invoke(9 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_29);
IL2CPP_RUNTIME_CLASS_INIT(DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0_il2cpp_TypeInfo_var);
String_t* L_31 = DefaultContractResolver_GetClrTypeFullName_m33C4566EC0DE01AFF07A3EB76BEB5E261EF94098(L_30, /*hidden argument*/NULL);
Type_t * L_32 = ___attributeType2;
String_t* L_33 = StringUtils_FormatWith_m13A601B2072054E1557E01230EC9D90A59858320(_stringLiteral2DD194991856DAD5DA3C482286B6182FA7E03A00, L_27, L_28, L_31, L_32, /*hidden argument*/NULL);
JsonException_tB1AABB3C8AE18D781A8A9A14CB03AF7AFEA33928 * L_34 = (JsonException_tB1AABB3C8AE18D781A8A9A14CB03AF7AFEA33928 *)il2cpp_codegen_object_new(JsonException_tB1AABB3C8AE18D781A8A9A14CB03AF7AFEA33928_il2cpp_TypeInfo_var);
JsonException__ctor_m6AA74CB38DE6808C894C51C26CA5FB64B861204A(L_34, L_33, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_34, DefaultContractResolver_IsValidCallback_m7CF3C3A4FCF267F4C459E71B2DCFA5722AD67728_RuntimeMethod_var);
}
IL_0086:
{
MethodInfo_t * L_35 = ___method0;
NullCheck(L_35);
Type_t * L_36 = VirtFuncInvoker0< Type_t * >::Invoke(41 /* System.Type System.Reflection.MethodInfo::get_ReturnType() */, L_35);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_37 = { reinterpret_cast<intptr_t> (Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_38 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_37, /*hidden argument*/NULL);
if ((((RuntimeObject*)(Type_t *)L_36) == ((RuntimeObject*)(Type_t *)L_38)))
{
goto IL_00b9;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_39 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
MethodInfo_t * L_40 = ___method0;
NullCheck(L_40);
Type_t * L_41 = VirtFuncInvoker0< Type_t * >::Invoke(9 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_40);
IL2CPP_RUNTIME_CLASS_INIT(DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0_il2cpp_TypeInfo_var);
String_t* L_42 = DefaultContractResolver_GetClrTypeFullName_m33C4566EC0DE01AFF07A3EB76BEB5E261EF94098(L_41, /*hidden argument*/NULL);
MethodInfo_t * L_43 = ___method0;
String_t* L_44 = StringUtils_FormatWith_m0847578DA1FD34776DD9C2AB8A4BA694D05A8C6D(_stringLiteral8310F2366CA2AFFD63095A03857FA6BA75220A88, L_39, L_42, L_43, /*hidden argument*/NULL);
JsonException_tB1AABB3C8AE18D781A8A9A14CB03AF7AFEA33928 * L_45 = (JsonException_tB1AABB3C8AE18D781A8A9A14CB03AF7AFEA33928 *)il2cpp_codegen_object_new(JsonException_tB1AABB3C8AE18D781A8A9A14CB03AF7AFEA33928_il2cpp_TypeInfo_var);
JsonException__ctor_m6AA74CB38DE6808C894C51C26CA5FB64B861204A(L_45, L_44, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_45, DefaultContractResolver_IsValidCallback_m7CF3C3A4FCF267F4C459E71B2DCFA5722AD67728_RuntimeMethod_var);
}
IL_00b9:
{
Type_t * L_46 = ___attributeType2;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_47 = { reinterpret_cast<intptr_t> (OnErrorAttribute_tA62F181E11DB79D65EA388A4F798C30CA9C7A382_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_48 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_47, /*hidden argument*/NULL);
if ((!(((RuntimeObject*)(Type_t *)L_46) == ((RuntimeObject*)(Type_t *)L_48))))
{
goto IL_012c;
}
}
{
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_49 = ___parameters1;
if (!L_49)
{
goto IL_00f7;
}
}
{
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_50 = ___parameters1;
NullCheck(L_50);
if ((!(((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_50)->max_length))))) == ((uint32_t)2))))
{
goto IL_00f7;
}
}
{
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_51 = ___parameters1;
NullCheck(L_51);
int32_t L_52 = 0;
ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * L_53 = (L_51)->GetAt(static_cast<il2cpp_array_size_t>(L_52));
NullCheck(L_53);
Type_t * L_54 = VirtFuncInvoker0< Type_t * >::Invoke(8 /* System.Type System.Reflection.ParameterInfo::get_ParameterType() */, L_53);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_55 = { reinterpret_cast<intptr_t> (StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_56 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_55, /*hidden argument*/NULL);
if ((!(((RuntimeObject*)(Type_t *)L_54) == ((RuntimeObject*)(Type_t *)L_56))))
{
goto IL_00f7;
}
}
{
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_57 = ___parameters1;
NullCheck(L_57);
int32_t L_58 = 1;
ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * L_59 = (L_57)->GetAt(static_cast<il2cpp_array_size_t>(L_58));
NullCheck(L_59);
Type_t * L_60 = VirtFuncInvoker0< Type_t * >::Invoke(8 /* System.Type System.Reflection.ParameterInfo::get_ParameterType() */, L_59);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_61 = { reinterpret_cast<intptr_t> (ErrorContext_t61739A48B44A4707051088E7013FD4E347DBE7A0_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_62 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_61, /*hidden argument*/NULL);
if ((((RuntimeObject*)(Type_t *)L_60) == ((RuntimeObject*)(Type_t *)L_62)))
{
goto IL_0174;
}
}
IL_00f7:
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_63 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
MethodInfo_t * L_64 = ___method0;
NullCheck(L_64);
Type_t * L_65 = VirtFuncInvoker0< Type_t * >::Invoke(9 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_64);
IL2CPP_RUNTIME_CLASS_INIT(DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0_il2cpp_TypeInfo_var);
String_t* L_66 = DefaultContractResolver_GetClrTypeFullName_m33C4566EC0DE01AFF07A3EB76BEB5E261EF94098(L_65, /*hidden argument*/NULL);
MethodInfo_t * L_67 = ___method0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_68 = { reinterpret_cast<intptr_t> (StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_69 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_68, /*hidden argument*/NULL);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_70 = { reinterpret_cast<intptr_t> (ErrorContext_t61739A48B44A4707051088E7013FD4E347DBE7A0_0_0_0_var) };
Type_t * L_71 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_70, /*hidden argument*/NULL);
String_t* L_72 = StringUtils_FormatWith_mACF1C89EBA5A049134865B73284A20EC78AB5E4A(_stringLiteral46F5621FD8A440CF29AEEC4836EF23AC11B5603A, L_63, L_66, L_67, L_69, L_71, /*hidden argument*/NULL);
JsonException_tB1AABB3C8AE18D781A8A9A14CB03AF7AFEA33928 * L_73 = (JsonException_tB1AABB3C8AE18D781A8A9A14CB03AF7AFEA33928 *)il2cpp_codegen_object_new(JsonException_tB1AABB3C8AE18D781A8A9A14CB03AF7AFEA33928_il2cpp_TypeInfo_var);
JsonException__ctor_m6AA74CB38DE6808C894C51C26CA5FB64B861204A(L_73, L_72, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_73, DefaultContractResolver_IsValidCallback_m7CF3C3A4FCF267F4C459E71B2DCFA5722AD67728_RuntimeMethod_var);
}
IL_012c:
{
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_74 = ___parameters1;
if (!L_74)
{
goto IL_0149;
}
}
{
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_75 = ___parameters1;
NullCheck(L_75);
if ((!(((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_75)->max_length))))) == ((uint32_t)1))))
{
goto IL_0149;
}
}
{
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_76 = ___parameters1;
NullCheck(L_76);
int32_t L_77 = 0;
ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * L_78 = (L_76)->GetAt(static_cast<il2cpp_array_size_t>(L_77));
NullCheck(L_78);
Type_t * L_79 = VirtFuncInvoker0< Type_t * >::Invoke(8 /* System.Type System.Reflection.ParameterInfo::get_ParameterType() */, L_78);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_80 = { reinterpret_cast<intptr_t> (StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_81 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_80, /*hidden argument*/NULL);
if ((((RuntimeObject*)(Type_t *)L_79) == ((RuntimeObject*)(Type_t *)L_81)))
{
goto IL_0174;
}
}
IL_0149:
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_82 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
MethodInfo_t * L_83 = ___method0;
NullCheck(L_83);
Type_t * L_84 = VirtFuncInvoker0< Type_t * >::Invoke(9 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_83);
IL2CPP_RUNTIME_CLASS_INIT(DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0_il2cpp_TypeInfo_var);
String_t* L_85 = DefaultContractResolver_GetClrTypeFullName_m33C4566EC0DE01AFF07A3EB76BEB5E261EF94098(L_84, /*hidden argument*/NULL);
MethodInfo_t * L_86 = ___method0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_87 = { reinterpret_cast<intptr_t> (StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_88 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_87, /*hidden argument*/NULL);
String_t* L_89 = StringUtils_FormatWith_m13A601B2072054E1557E01230EC9D90A59858320(_stringLiteralB8D3467DAF628599A0FE7A8E242A1CEF9A779A34, L_82, L_85, L_86, L_88, /*hidden argument*/NULL);
JsonException_tB1AABB3C8AE18D781A8A9A14CB03AF7AFEA33928 * L_90 = (JsonException_tB1AABB3C8AE18D781A8A9A14CB03AF7AFEA33928 *)il2cpp_codegen_object_new(JsonException_tB1AABB3C8AE18D781A8A9A14CB03AF7AFEA33928_il2cpp_TypeInfo_var);
JsonException__ctor_m6AA74CB38DE6808C894C51C26CA5FB64B861204A(L_90, L_89, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_90, DefaultContractResolver_IsValidCallback_m7CF3C3A4FCF267F4C459E71B2DCFA5722AD67728_RuntimeMethod_var);
}
IL_0174:
{
Type_t ** L_91 = ___prevAttributeType4;
Type_t * L_92 = ___attributeType2;
*((RuntimeObject **)L_91) = (RuntimeObject *)L_92;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_91, (void*)(RuntimeObject *)L_92);
return (bool)1;
}
}
// System.String Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::GetClrTypeFullName(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DefaultContractResolver_GetClrTypeFullName_m33C4566EC0DE01AFF07A3EB76BEB5E261EF94098 (Type_t * ___type0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultContractResolver_GetClrTypeFullName_m33C4566EC0DE01AFF07A3EB76BEB5E261EF94098_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Type_t * L_0 = ___type0;
bool L_1 = TypeExtensions_IsGenericTypeDefinition_m35827D73D785827233F8D5EE78D910F90E6B70AB(L_0, /*hidden argument*/NULL);
if (L_1)
{
goto IL_0010;
}
}
{
Type_t * L_2 = ___type0;
bool L_3 = TypeExtensions_ContainsGenericParameters_m98BE2EF3CBA0CD6C9BCAF918172FC7AC9651D430(L_2, /*hidden argument*/NULL);
if (L_3)
{
goto IL_0017;
}
}
IL_0010:
{
Type_t * L_4 = ___type0;
NullCheck(L_4);
String_t* L_5 = VirtFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Type::get_FullName() */, L_4);
return L_5;
}
IL_0017:
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_6 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_7 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_8 = L_7;
Type_t * L_9 = ___type0;
NullCheck(L_9);
String_t* L_10 = VirtFuncInvoker0< String_t* >::Invoke(27 /* System.String System.Type::get_Namespace() */, L_9);
NullCheck(L_8);
ArrayElementTypeCheck (L_8, L_10);
(L_8)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_10);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_11 = L_8;
Type_t * L_12 = ___type0;
NullCheck(L_12);
String_t* L_13 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_12);
NullCheck(L_11);
ArrayElementTypeCheck (L_11, L_13);
(L_11)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_13);
String_t* L_14 = String_Format_mF68EE0DEC1AA5ADE9DFEF9AE0508E428FBB10EFD(L_6, _stringLiteral6621FDDBEA1FF968B3027E17236C09DAC3BE1064, L_11, /*hidden argument*/NULL);
return L_14;
}
}
// System.Collections.Generic.IList`1<Valve.Newtonsoft.Json.Serialization.JsonProperty> Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::CreateProperties(System.Type,Valve.Newtonsoft.Json.MemberSerialization)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* DefaultContractResolver_CreateProperties_m3DB71B70F84DB9631D029F93FFA8EF946328DEB2 (DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0 * __this, Type_t * ___type0, int32_t ___memberSerialization1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultContractResolver_CreateProperties_m3DB71B70F84DB9631D029F93FFA8EF946328DEB2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
JsonPropertyCollection_tC08CC5508836C9712A08DDE9E2BC413BD3A61715 * V_0 = NULL;
Enumerator_t485345BBD355ED7025F8E5EA8AF95F42AC192DCE V_1;
memset((&V_1), 0, sizeof(V_1));
MemberInfo_t * V_2 = NULL;
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * V_3 = NULL;
DefaultContractResolverState_t8B0D63DB1C8B5BA14A03ADBEF0EA1141B8604DE6 * V_4 = NULL;
PropertyNameTable_t09D6FC2871D681080545544521201A5726C6610D * V_5 = 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);
List_1_t610995BF9B0DCC99DF41C7D0D54AA44EF8552AE9 * G_B2_0 = NULL;
List_1_t610995BF9B0DCC99DF41C7D0D54AA44EF8552AE9 * G_B1_0 = NULL;
Func_2_t1659F01642289131579A99DC37C5A348E7091892 * G_B14_0 = NULL;
JsonPropertyCollection_tC08CC5508836C9712A08DDE9E2BC413BD3A61715 * G_B14_1 = NULL;
Func_2_t1659F01642289131579A99DC37C5A348E7091892 * G_B13_0 = NULL;
JsonPropertyCollection_tC08CC5508836C9712A08DDE9E2BC413BD3A61715 * G_B13_1 = NULL;
{
Type_t * L_0 = ___type0;
List_1_t610995BF9B0DCC99DF41C7D0D54AA44EF8552AE9 * L_1 = VirtFuncInvoker1< List_1_t610995BF9B0DCC99DF41C7D0D54AA44EF8552AE9 *, Type_t * >::Invoke(6 /* System.Collections.Generic.List`1<System.Reflection.MemberInfo> Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::GetSerializableMembers(System.Type) */, __this, L_0);
List_1_t610995BF9B0DCC99DF41C7D0D54AA44EF8552AE9 * L_2 = L_1;
G_B1_0 = L_2;
if (L_2)
{
G_B2_0 = L_2;
goto IL_0015;
}
}
{
JsonSerializationException_t041C510BA8DF91FD223402E73A4E55EC1B12E902 * L_3 = (JsonSerializationException_t041C510BA8DF91FD223402E73A4E55EC1B12E902 *)il2cpp_codegen_object_new(JsonSerializationException_t041C510BA8DF91FD223402E73A4E55EC1B12E902_il2cpp_TypeInfo_var);
JsonSerializationException__ctor_mEB80B2C2AEA10E8D417D22CF77D40C10DBF51795(L_3, _stringLiteralD75B1BF63781ADBC5A93A0ACEDC482B359BE2C3A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, DefaultContractResolver_CreateProperties_m3DB71B70F84DB9631D029F93FFA8EF946328DEB2_RuntimeMethod_var);
}
IL_0015:
{
Type_t * L_4 = ___type0;
JsonPropertyCollection_tC08CC5508836C9712A08DDE9E2BC413BD3A61715 * L_5 = (JsonPropertyCollection_tC08CC5508836C9712A08DDE9E2BC413BD3A61715 *)il2cpp_codegen_object_new(JsonPropertyCollection_tC08CC5508836C9712A08DDE9E2BC413BD3A61715_il2cpp_TypeInfo_var);
JsonPropertyCollection__ctor_m341BA244BB4B57BA6F3B0679FC39B694A7806882(L_5, L_4, /*hidden argument*/NULL);
V_0 = L_5;
NullCheck(G_B2_0);
Enumerator_t485345BBD355ED7025F8E5EA8AF95F42AC192DCE L_6 = List_1_GetEnumerator_mFEF2B830CDDC70282149401E9A5B02BF87E05640(G_B2_0, /*hidden argument*/List_1_GetEnumerator_mFEF2B830CDDC70282149401E9A5B02BF87E05640_RuntimeMethod_var);
V_1 = L_6;
}
IL_0022:
try
{ // begin try (depth: 1)
{
goto IL_0079;
}
IL_0024:
{
MemberInfo_t * L_7 = Enumerator_get_Current_m479DA5158B45BF087D2F8DC029031FFF732A7B00_inline((Enumerator_t485345BBD355ED7025F8E5EA8AF95F42AC192DCE *)(&V_1), /*hidden argument*/Enumerator_get_Current_m479DA5158B45BF087D2F8DC029031FFF732A7B00_RuntimeMethod_var);
V_2 = L_7;
MemberInfo_t * L_8 = V_2;
int32_t L_9 = ___memberSerialization1;
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_10 = VirtFuncInvoker2< JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB *, MemberInfo_t *, int32_t >::Invoke(20 /* Valve.Newtonsoft.Json.Serialization.JsonProperty Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::CreateProperty(System.Reflection.MemberInfo,Valve.Newtonsoft.Json.MemberSerialization) */, __this, L_8, L_9);
V_3 = L_10;
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_11 = V_3;
if (!L_11)
{
goto IL_0079;
}
}
IL_0038:
{
DefaultContractResolverState_t8B0D63DB1C8B5BA14A03ADBEF0EA1141B8604DE6 * L_12 = DefaultContractResolver_GetState_mFCCCECDBB23E606E405F563044BC5DBCE097EC78(__this, /*hidden argument*/NULL);
V_4 = L_12;
DefaultContractResolverState_t8B0D63DB1C8B5BA14A03ADBEF0EA1141B8604DE6 * L_13 = V_4;
NullCheck(L_13);
PropertyNameTable_t09D6FC2871D681080545544521201A5726C6610D * L_14 = L_13->get_NameTable_1();
V_5 = L_14;
PropertyNameTable_t09D6FC2871D681080545544521201A5726C6610D * L_15 = V_5;
Monitor_Enter_m903755FCC479745619842CCDBF5E6355319FA102(L_15, /*hidden argument*/NULL);
}
IL_0050:
try
{ // begin try (depth: 2)
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_16 = V_3;
DefaultContractResolverState_t8B0D63DB1C8B5BA14A03ADBEF0EA1141B8604DE6 * L_17 = V_4;
NullCheck(L_17);
PropertyNameTable_t09D6FC2871D681080545544521201A5726C6610D * L_18 = L_17->get_NameTable_1();
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_19 = V_3;
NullCheck(L_19);
String_t* L_20 = JsonProperty_get_PropertyName_m55905C9131ED73513CF8CB006A5BDF904C47A6B4_inline(L_19, /*hidden argument*/NULL);
NullCheck(L_18);
String_t* L_21 = PropertyNameTable_Add_m8221857AD3CAB9B8202B359E54AA07CFDC4D695D(L_18, L_20, /*hidden argument*/NULL);
NullCheck(L_16);
JsonProperty_set_PropertyName_mB5B0FD0E95E50D5236064B1C00DB943BC3761954(L_16, L_21, /*hidden argument*/NULL);
IL2CPP_LEAVE(0x72, FINALLY_006a);
} // end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_006a;
}
FINALLY_006a:
{ // begin finally (depth: 2)
PropertyNameTable_t09D6FC2871D681080545544521201A5726C6610D * L_22 = V_5;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_22, /*hidden argument*/NULL);
IL2CPP_END_FINALLY(106)
} // end finally (depth: 2)
IL2CPP_CLEANUP(106)
{
IL2CPP_JUMP_TBL(0x72, IL_0072)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0072:
{
JsonPropertyCollection_tC08CC5508836C9712A08DDE9E2BC413BD3A61715 * L_23 = V_0;
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_24 = V_3;
NullCheck(L_23);
JsonPropertyCollection_AddProperty_m4A847629EE58E608DA2FB9EBC2F081CB1EF45D26(L_23, L_24, /*hidden argument*/NULL);
}
IL_0079:
{
bool L_25 = Enumerator_MoveNext_m5A102BF020B7804F89B69697EC3D0569F81A3205((Enumerator_t485345BBD355ED7025F8E5EA8AF95F42AC192DCE *)(&V_1), /*hidden argument*/Enumerator_MoveNext_m5A102BF020B7804F89B69697EC3D0569F81A3205_RuntimeMethod_var);
if (L_25)
{
goto IL_0024;
}
}
IL_0082:
{
IL2CPP_LEAVE(0x92, FINALLY_0084);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0084;
}
FINALLY_0084:
{ // begin finally (depth: 1)
Enumerator_Dispose_mE9CDCD8C0406CFD21812928A31C5898C38218AB2((Enumerator_t485345BBD355ED7025F8E5EA8AF95F42AC192DCE *)(&V_1), /*hidden argument*/Enumerator_Dispose_mE9CDCD8C0406CFD21812928A31C5898C38218AB2_RuntimeMethod_var);
IL2CPP_END_FINALLY(132)
} // end finally (depth: 1)
IL2CPP_CLEANUP(132)
{
IL2CPP_JUMP_TBL(0x92, IL_0092)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0092:
{
JsonPropertyCollection_tC08CC5508836C9712A08DDE9E2BC413BD3A61715 * L_26 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A_il2cpp_TypeInfo_var);
Func_2_t1659F01642289131579A99DC37C5A348E7091892 * L_27 = ((U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A_il2cpp_TypeInfo_var))->get_U3CU3E9__64_0_6();
Func_2_t1659F01642289131579A99DC37C5A348E7091892 * L_28 = L_27;
G_B13_0 = L_28;
G_B13_1 = L_26;
if (L_28)
{
G_B14_0 = L_28;
G_B14_1 = L_26;
goto IL_00b2;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A_il2cpp_TypeInfo_var);
U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A * L_29 = ((U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A_il2cpp_TypeInfo_var))->get_U3CU3E9_0();
Func_2_t1659F01642289131579A99DC37C5A348E7091892 * L_30 = (Func_2_t1659F01642289131579A99DC37C5A348E7091892 *)il2cpp_codegen_object_new(Func_2_t1659F01642289131579A99DC37C5A348E7091892_il2cpp_TypeInfo_var);
Func_2__ctor_m1809F02D50F82570E5658F35B318DD8259F2621F(L_30, L_29, (intptr_t)((intptr_t)U3CU3Ec_U3CCreatePropertiesU3Eb__64_0_m7E9A9FA2C6D93441376E3117CC7B115D3430E3EB_RuntimeMethod_var), /*hidden argument*/Func_2__ctor_m1809F02D50F82570E5658F35B318DD8259F2621F_RuntimeMethod_var);
Func_2_t1659F01642289131579A99DC37C5A348E7091892 * L_31 = L_30;
((U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A_il2cpp_TypeInfo_var))->set_U3CU3E9__64_0_6(L_31);
G_B14_0 = L_31;
G_B14_1 = G_B13_1;
}
IL_00b2:
{
RuntimeObject* L_32 = Enumerable_OrderBy_TisJsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m0374099EF3A8594F128850F4F1AD56E67EC77B8A(G_B14_1, G_B14_0, /*hidden argument*/Enumerable_OrderBy_TisJsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m0374099EF3A8594F128850F4F1AD56E67EC77B8A_RuntimeMethod_var);
List_1_t6058A2EE1FD0D50A7FFCAD444A5E3330BC73DA8E * L_33 = Enumerable_ToList_TisJsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB_m1866F9412D71C8EC4F3A2999FF445480DD8218AE(L_32, /*hidden argument*/Enumerable_ToList_TisJsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB_m1866F9412D71C8EC4F3A2999FF445480DD8218AE_RuntimeMethod_var);
return L_33;
}
}
// Valve.Newtonsoft.Json.Serialization.IValueProvider Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::CreateMemberValueProvider(System.Reflection.MemberInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* DefaultContractResolver_CreateMemberValueProvider_m6D71BD4B6EE02DE5ACECBA8AD28748410893D6BE (DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0 * __this, MemberInfo_t * ___member0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultContractResolver_CreateMemberValueProvider_m6D71BD4B6EE02DE5ACECBA8AD28748410893D6BE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
MemberInfo_t * L_0 = ___member0;
ReflectionValueProvider_t8149E2427D8DED5E2B15B0F80E8C6CFE4C710A26 * L_1 = (ReflectionValueProvider_t8149E2427D8DED5E2B15B0F80E8C6CFE4C710A26 *)il2cpp_codegen_object_new(ReflectionValueProvider_t8149E2427D8DED5E2B15B0F80E8C6CFE4C710A26_il2cpp_TypeInfo_var);
ReflectionValueProvider__ctor_mAFEB4E9B3503EF8299039C637222F93D864E1EA1(L_1, L_0, /*hidden argument*/NULL);
return L_1;
}
}
// Valve.Newtonsoft.Json.Serialization.JsonProperty Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::CreateProperty(System.Reflection.MemberInfo,Valve.Newtonsoft.Json.MemberSerialization)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * DefaultContractResolver_CreateProperty_m16C0F2ADC21D62A210F8583C847993507C6A474F (DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0 * __this, MemberInfo_t * ___member0, int32_t ___memberSerialization1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultContractResolver_CreateProperty_m16C0F2ADC21D62A210F8583C847993507C6A474F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * V_0 = NULL;
bool V_1 = false;
{
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_0 = (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB *)il2cpp_codegen_object_new(JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB_il2cpp_TypeInfo_var);
JsonProperty__ctor_m5FB1407F8C5EA1535058A763B98DBF13C9CEBBCB(L_0, /*hidden argument*/NULL);
V_0 = L_0;
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_1 = V_0;
MemberInfo_t * L_2 = ___member0;
IL2CPP_RUNTIME_CLASS_INIT(ReflectionUtils_t1845D588ADA15C351615E925042ECF790B622987_il2cpp_TypeInfo_var);
Type_t * L_3 = ReflectionUtils_GetMemberUnderlyingType_m22BCFA3BF7FDF789A7801EB57F09CFF695A5A1AE(L_2, /*hidden argument*/NULL);
NullCheck(L_1);
JsonProperty_set_PropertyType_mD10927033ED0E5CEBC9B37B831B911DBE7EC96FD(L_1, L_3, /*hidden argument*/NULL);
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_4 = V_0;
MemberInfo_t * L_5 = ___member0;
NullCheck(L_5);
Type_t * L_6 = VirtFuncInvoker0< Type_t * >::Invoke(9 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_5);
NullCheck(L_4);
JsonProperty_set_DeclaringType_m4F7A8EBBAAB53A716936F32711DADC5D497DB9A3_inline(L_4, L_6, /*hidden argument*/NULL);
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_7 = V_0;
MemberInfo_t * L_8 = ___member0;
RuntimeObject* L_9 = VirtFuncInvoker1< RuntimeObject*, MemberInfo_t * >::Invoke(19 /* Valve.Newtonsoft.Json.Serialization.IValueProvider Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::CreateMemberValueProvider(System.Reflection.MemberInfo) */, __this, L_8);
NullCheck(L_7);
JsonProperty_set_ValueProvider_mBEB1B5972CF2072D40E794E51746FC3DBB026DA8_inline(L_7, L_9, /*hidden argument*/NULL);
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_10 = V_0;
MemberInfo_t * L_11 = ___member0;
ReflectionAttributeProvider_tD14E62C7D2A1AA1792C9F45D337EC431D30DD7F8 * L_12 = (ReflectionAttributeProvider_tD14E62C7D2A1AA1792C9F45D337EC431D30DD7F8 *)il2cpp_codegen_object_new(ReflectionAttributeProvider_tD14E62C7D2A1AA1792C9F45D337EC431D30DD7F8_il2cpp_TypeInfo_var);
ReflectionAttributeProvider__ctor_m0D9B33D5A8CF4F664B2796EE68D54744D51CA442(L_12, L_11, /*hidden argument*/NULL);
NullCheck(L_10);
JsonProperty_set_AttributeProvider_mA7C5A4B0EC3318FEC23F29FFB348F2E6AB1A09A4_inline(L_10, L_12, /*hidden argument*/NULL);
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_13 = V_0;
MemberInfo_t * L_14 = ___member0;
MemberInfo_t * L_15 = ___member0;
NullCheck(L_15);
String_t* L_16 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_15);
MemberInfo_t * L_17 = ___member0;
NullCheck(L_17);
Type_t * L_18 = VirtFuncInvoker0< Type_t * >::Invoke(9 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_17);
int32_t L_19 = ___memberSerialization1;
DefaultContractResolver_SetPropertySettingsFromAttributes_m30707938E365229E29EF770EE5379538F03D4890(__this, L_13, L_14, L_16, L_18, L_19, (bool*)(&V_1), /*hidden argument*/NULL);
int32_t L_20 = ___memberSerialization1;
if ((((int32_t)L_20) == ((int32_t)2)))
{
goto IL_0074;
}
}
{
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_21 = V_0;
MemberInfo_t * L_22 = ___member0;
bool L_23 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(ReflectionUtils_t1845D588ADA15C351615E925042ECF790B622987_il2cpp_TypeInfo_var);
bool L_24 = ReflectionUtils_CanReadMemberValue_mE1734CDBBABE8BACAD75399CB892851D14AA71E9(L_22, L_23, /*hidden argument*/NULL);
NullCheck(L_21);
JsonProperty_set_Readable_mD59EEC19DAB96CD04D08D7D4B20BDAAC3CB0FADF_inline(L_21, L_24, /*hidden argument*/NULL);
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_25 = V_0;
MemberInfo_t * L_26 = ___member0;
bool L_27 = V_1;
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_28 = V_0;
NullCheck(L_28);
bool L_29 = JsonProperty_get_HasMemberAttribute_m90EB927C14261E5B20E8BF12FE366424C9F44E68_inline(L_28, /*hidden argument*/NULL);
bool L_30 = ReflectionUtils_CanSetMemberValue_mEB160257BB0AF0D73699286C7E01D01D18ECD14D(L_26, L_27, L_29, /*hidden argument*/NULL);
NullCheck(L_25);
JsonProperty_set_Writable_m6C087BCCDAA946F6EDF9E96CF34EA6E292E23354_inline(L_25, L_30, /*hidden argument*/NULL);
goto IL_0082;
}
IL_0074:
{
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_31 = V_0;
NullCheck(L_31);
JsonProperty_set_Readable_mD59EEC19DAB96CD04D08D7D4B20BDAAC3CB0FADF_inline(L_31, (bool)1, /*hidden argument*/NULL);
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_32 = V_0;
NullCheck(L_32);
JsonProperty_set_Writable_m6C087BCCDAA946F6EDF9E96CF34EA6E292E23354_inline(L_32, (bool)1, /*hidden argument*/NULL);
}
IL_0082:
{
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_33 = V_0;
MemberInfo_t * L_34 = ___member0;
Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 * L_35 = DefaultContractResolver_CreateShouldSerializeTest_m89AC077F623A80B62A6704A59A8DC42F4CCA0184(__this, L_34, /*hidden argument*/NULL);
NullCheck(L_33);
JsonProperty_set_ShouldSerialize_mAA26700AE6294F2DD8AF959A325C59AC743ABA69_inline(L_33, L_35, /*hidden argument*/NULL);
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_36 = V_0;
MemberInfo_t * L_37 = ___member0;
bool L_38 = V_1;
DefaultContractResolver_SetIsSpecifiedActions_m2A020865FC552D59D7ACBC8E299602D2F61DC8F8(__this, L_36, L_37, L_38, /*hidden argument*/NULL);
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_39 = V_0;
return L_39;
}
}
// System.Void Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::SetPropertySettingsFromAttributes(Valve.Newtonsoft.Json.Serialization.JsonProperty,System.Object,System.String,System.Type,Valve.Newtonsoft.Json.MemberSerialization,System.Boolean&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultContractResolver_SetPropertySettingsFromAttributes_m30707938E365229E29EF770EE5379538F03D4890 (DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0 * __this, JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * ___property0, RuntimeObject * ___attributeProvider1, String_t* ___name2, Type_t * ___declaringType3, int32_t ___memberSerialization4, bool* ___allowNonPublicAccess5, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultContractResolver_SetPropertySettingsFromAttributes_m30707938E365229E29EF770EE5379538F03D4890_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MemberInfo_t * V_0 = NULL;
DataMemberAttribute_tC865433FEC93FFD46D6F3E4BB28F262C9EE40525 * V_1 = NULL;
JsonPropertyAttribute_tD66B9C74F3201FFAF7A16DB84AEA31FE8F02ED5F * V_2 = NULL;
String_t* V_3 = NULL;
bool V_4 = false;
JsonContainerAttribute_t4E39F1E5EA66CF61E90C47C81929BE4A853A2DF3 * V_5 = NULL;
NamingStrategy_tBB6F8138B49E9B2704F7B87BF9130378976B9B46 * V_6 = NULL;
bool V_7 = false;
bool V_8 = false;
DefaultValueAttribute_t03B1F51B35271D50779D31234C9C6845BC9626EC * V_9 = NULL;
Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB V_10;
memset((&V_10), 0, sizeof(V_10));
Nullable_1_tE7CF0A7BC2816D39007C0EEB41F32FA7DB86B394 V_11;
memset((&V_11), 0, sizeof(V_11));
bool V_12 = false;
Nullable_1_t1E3E10A718340D5055F8DB98AE1C03F47CDC19FC V_13;
memset((&V_13), 0, sizeof(V_13));
Nullable_1_tD485E28BBBAFB03563161D92A5E03A20B8691DF7 V_14;
memset((&V_14), 0, sizeof(V_14));
Nullable_1_t6F16A066F0D8E92AEDC11791932E5B9D887F402E V_15;
memset((&V_15), 0, sizeof(V_15));
Nullable_1_t03BF155C19CE72C93934F0A7CDDA0C202A278E11 V_16;
memset((&V_16), 0, sizeof(V_16));
Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 V_17;
memset((&V_17), 0, sizeof(V_17));
JsonRequiredAttribute_t9DE102747DCD1EBD135D2545271F6E894CEA77AB * G_B7_0 = NULL;
JsonRequiredAttribute_t9DE102747DCD1EBD135D2545271F6E894CEA77AB * G_B5_0 = NULL;
JsonRequiredAttribute_t9DE102747DCD1EBD135D2545271F6E894CEA77AB * G_B6_0 = NULL;
JsonRequiredAttribute_t9DE102747DCD1EBD135D2545271F6E894CEA77AB * G_B11_0 = NULL;
JsonRequiredAttribute_t9DE102747DCD1EBD135D2545271F6E894CEA77AB * G_B10_0 = NULL;
JsonRequiredAttribute_t9DE102747DCD1EBD135D2545271F6E894CEA77AB * G_B8_0 = NULL;
JsonRequiredAttribute_t9DE102747DCD1EBD135D2545271F6E894CEA77AB * G_B9_0 = NULL;
JsonRequiredAttribute_t9DE102747DCD1EBD135D2545271F6E894CEA77AB * G_B13_0 = NULL;
JsonRequiredAttribute_t9DE102747DCD1EBD135D2545271F6E894CEA77AB * G_B12_0 = NULL;
Type_t * G_B14_0 = NULL;
JsonRequiredAttribute_t9DE102747DCD1EBD135D2545271F6E894CEA77AB * G_B14_1 = NULL;
JsonRequiredAttribute_t9DE102747DCD1EBD135D2545271F6E894CEA77AB * G_B16_0 = NULL;
JsonRequiredAttribute_t9DE102747DCD1EBD135D2545271F6E894CEA77AB * G_B15_0 = NULL;
JsonRequiredAttribute_t9DE102747DCD1EBD135D2545271F6E894CEA77AB * G_B22_0 = NULL;
JsonRequiredAttribute_t9DE102747DCD1EBD135D2545271F6E894CEA77AB * G_B18_0 = NULL;
JsonRequiredAttribute_t9DE102747DCD1EBD135D2545271F6E894CEA77AB * G_B17_0 = NULL;
Type_t * G_B19_0 = NULL;
JsonRequiredAttribute_t9DE102747DCD1EBD135D2545271F6E894CEA77AB * G_B19_1 = NULL;
JsonRequiredAttribute_t9DE102747DCD1EBD135D2545271F6E894CEA77AB * G_B21_0 = NULL;
JsonRequiredAttribute_t9DE102747DCD1EBD135D2545271F6E894CEA77AB * G_B20_0 = NULL;
JsonRequiredAttribute_t9DE102747DCD1EBD135D2545271F6E894CEA77AB * G_B24_0 = NULL;
JsonRequiredAttribute_t9DE102747DCD1EBD135D2545271F6E894CEA77AB * G_B23_0 = NULL;
JsonRequiredAttribute_t9DE102747DCD1EBD135D2545271F6E894CEA77AB * G_B25_0 = NULL;
JsonRequiredAttribute_t9DE102747DCD1EBD135D2545271F6E894CEA77AB * G_B27_0 = NULL;
JsonRequiredAttribute_t9DE102747DCD1EBD135D2545271F6E894CEA77AB * G_B26_0 = NULL;
JsonRequiredAttribute_t9DE102747DCD1EBD135D2545271F6E894CEA77AB * G_B38_0 = NULL;
JsonRequiredAttribute_t9DE102747DCD1EBD135D2545271F6E894CEA77AB * G_B28_0 = NULL;
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * G_B30_0 = NULL;
JsonRequiredAttribute_t9DE102747DCD1EBD135D2545271F6E894CEA77AB * G_B30_1 = NULL;
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * G_B29_0 = NULL;
JsonRequiredAttribute_t9DE102747DCD1EBD135D2545271F6E894CEA77AB * G_B29_1 = NULL;
int32_t G_B31_0 = 0;
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * G_B31_1 = NULL;
JsonRequiredAttribute_t9DE102747DCD1EBD135D2545271F6E894CEA77AB * G_B31_2 = NULL;
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * G_B33_0 = NULL;
JsonRequiredAttribute_t9DE102747DCD1EBD135D2545271F6E894CEA77AB * G_B33_1 = NULL;
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * G_B32_0 = NULL;
JsonRequiredAttribute_t9DE102747DCD1EBD135D2545271F6E894CEA77AB * G_B32_1 = NULL;
Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB G_B34_0;
memset((&G_B34_0), 0, sizeof(G_B34_0));
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * G_B34_1 = NULL;
JsonRequiredAttribute_t9DE102747DCD1EBD135D2545271F6E894CEA77AB * G_B34_2 = NULL;
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * G_B36_0 = NULL;
JsonRequiredAttribute_t9DE102747DCD1EBD135D2545271F6E894CEA77AB * G_B36_1 = NULL;
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * G_B35_0 = NULL;
JsonRequiredAttribute_t9DE102747DCD1EBD135D2545271F6E894CEA77AB * G_B35_1 = NULL;
Nullable_1_tE7CF0A7BC2816D39007C0EEB41F32FA7DB86B394 G_B37_0;
memset((&G_B37_0), 0, sizeof(G_B37_0));
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * G_B37_1 = NULL;
JsonRequiredAttribute_t9DE102747DCD1EBD135D2545271F6E894CEA77AB * G_B37_2 = NULL;
int32_t G_B44_0 = 0;
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * G_B48_0 = NULL;
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * G_B47_0 = NULL;
int32_t G_B49_0 = 0;
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * G_B49_1 = NULL;
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * G_B54_0 = NULL;
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * G_B53_0 = NULL;
Nullable_1_t1E3E10A718340D5055F8DB98AE1C03F47CDC19FC G_B55_0;
memset((&G_B55_0), 0, sizeof(G_B55_0));
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * G_B55_1 = NULL;
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * G_B57_0 = NULL;
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * G_B56_0 = NULL;
Nullable_1_tD485E28BBBAFB03563161D92A5E03A20B8691DF7 G_B58_0;
memset((&G_B58_0), 0, sizeof(G_B58_0));
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * G_B58_1 = NULL;
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * G_B60_0 = NULL;
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * G_B59_0 = NULL;
Nullable_1_t6F16A066F0D8E92AEDC11791932E5B9D887F402E G_B61_0;
memset((&G_B61_0), 0, sizeof(G_B61_0));
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * G_B61_1 = NULL;
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * G_B63_0 = NULL;
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * G_B62_0 = NULL;
Nullable_1_t03BF155C19CE72C93934F0A7CDDA0C202A278E11 G_B64_0;
memset((&G_B64_0), 0, sizeof(G_B64_0));
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * G_B64_1 = NULL;
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * G_B66_0 = NULL;
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * G_B65_0 = NULL;
Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 G_B67_0;
memset((&G_B67_0), 0, sizeof(G_B67_0));
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * G_B67_1 = NULL;
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * G_B69_0 = NULL;
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * G_B68_0 = NULL;
Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 G_B70_0;
memset((&G_B70_0), 0, sizeof(G_B70_0));
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * G_B70_1 = NULL;
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * G_B72_0 = NULL;
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * G_B71_0 = NULL;
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * G_B73_0 = NULL;
JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * G_B74_0 = NULL;
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * G_B74_1 = NULL;
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * G_B76_0 = NULL;
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * G_B75_0 = NULL;
Nullable_1_tD485E28BBBAFB03563161D92A5E03A20B8691DF7 G_B77_0;
memset((&G_B77_0), 0, sizeof(G_B77_0));
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * G_B77_1 = NULL;
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * G_B79_0 = NULL;
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * G_B78_0 = NULL;
Nullable_1_t03BF155C19CE72C93934F0A7CDDA0C202A278E11 G_B80_0;
memset((&G_B80_0), 0, sizeof(G_B80_0));
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * G_B80_1 = NULL;
{
Type_t * L_0 = ___declaringType3;
IL2CPP_RUNTIME_CLASS_INIT(JsonTypeReflector_tC161A1BF2506AB16B738C3935C2691A92B7A8C55_il2cpp_TypeInfo_var);
DataContractAttribute_tAD58D5877BD04EADB56BB4AEDDE342C73F032FC5 * L_1 = JsonTypeReflector_GetDataContractAttribute_m62122785FB6670DF3D75AEF50EAA7ACF6DE1FDFB(L_0, /*hidden argument*/NULL);
RuntimeObject * L_2 = ___attributeProvider1;
V_0 = ((MemberInfo_t *)IsInstClass((RuntimeObject*)L_2, MemberInfo_t_il2cpp_TypeInfo_var));
if (!L_1)
{
goto IL_001c;
}
}
{
MemberInfo_t * L_3 = V_0;
if (!L_3)
{
goto IL_001c;
}
}
{
MemberInfo_t * L_4 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(JsonTypeReflector_tC161A1BF2506AB16B738C3935C2691A92B7A8C55_il2cpp_TypeInfo_var);
DataMemberAttribute_tC865433FEC93FFD46D6F3E4BB28F262C9EE40525 * L_5 = JsonTypeReflector_GetDataMemberAttribute_mB4B357B4C915D994DBC15288C8362D4174B576A0(L_4, /*hidden argument*/NULL);
V_1 = L_5;
goto IL_001e;
}
IL_001c:
{
V_1 = (DataMemberAttribute_tC865433FEC93FFD46D6F3E4BB28F262C9EE40525 *)NULL;
}
IL_001e:
{
RuntimeObject * L_6 = ___attributeProvider1;
IL2CPP_RUNTIME_CLASS_INIT(JsonTypeReflector_tC161A1BF2506AB16B738C3935C2691A92B7A8C55_il2cpp_TypeInfo_var);
JsonPropertyAttribute_tD66B9C74F3201FFAF7A16DB84AEA31FE8F02ED5F * L_7 = JsonTypeReflector_GetAttribute_TisJsonPropertyAttribute_tD66B9C74F3201FFAF7A16DB84AEA31FE8F02ED5F_m627E8BDF71B670CB00F5311E19D499ECA1584EC6(L_6, /*hidden argument*/JsonTypeReflector_GetAttribute_TisJsonPropertyAttribute_tD66B9C74F3201FFAF7A16DB84AEA31FE8F02ED5F_m627E8BDF71B670CB00F5311E19D499ECA1584EC6_RuntimeMethod_var);
V_2 = L_7;
RuntimeObject * L_8 = ___attributeProvider1;
JsonRequiredAttribute_t9DE102747DCD1EBD135D2545271F6E894CEA77AB * L_9 = JsonTypeReflector_GetAttribute_TisJsonRequiredAttribute_t9DE102747DCD1EBD135D2545271F6E894CEA77AB_m6CB9D398D41E25D413A96E896D10E11D27475B91(L_8, /*hidden argument*/JsonTypeReflector_GetAttribute_TisJsonRequiredAttribute_t9DE102747DCD1EBD135D2545271F6E894CEA77AB_m6CB9D398D41E25D413A96E896D10E11D27475B91_RuntimeMethod_var);
JsonPropertyAttribute_tD66B9C74F3201FFAF7A16DB84AEA31FE8F02ED5F * L_10 = V_2;
G_B5_0 = L_9;
if (!L_10)
{
G_B7_0 = L_9;
goto IL_0042;
}
}
{
JsonPropertyAttribute_tD66B9C74F3201FFAF7A16DB84AEA31FE8F02ED5F * L_11 = V_2;
NullCheck(L_11);
String_t* L_12 = JsonPropertyAttribute_get_PropertyName_mE1AF1CF51FB33A6F013CA79442A51B3422F208C0_inline(L_11, /*hidden argument*/NULL);
G_B6_0 = G_B5_0;
if (!L_12)
{
G_B7_0 = G_B5_0;
goto IL_0042;
}
}
{
JsonPropertyAttribute_tD66B9C74F3201FFAF7A16DB84AEA31FE8F02ED5F * L_13 = V_2;
NullCheck(L_13);
String_t* L_14 = JsonPropertyAttribute_get_PropertyName_mE1AF1CF51FB33A6F013CA79442A51B3422F208C0_inline(L_13, /*hidden argument*/NULL);
V_3 = L_14;
V_4 = (bool)1;
G_B11_0 = G_B6_0;
goto IL_005e;
}
IL_0042:
{
DataMemberAttribute_tC865433FEC93FFD46D6F3E4BB28F262C9EE40525 * L_15 = V_1;
G_B8_0 = G_B7_0;
if (!L_15)
{
G_B10_0 = G_B7_0;
goto IL_0059;
}
}
{
DataMemberAttribute_tC865433FEC93FFD46D6F3E4BB28F262C9EE40525 * L_16 = V_1;
NullCheck(L_16);
String_t* L_17 = DataMemberAttribute_get_Name_mA626FA1D50DB99B87C7EB674B93622431E14F973_inline(L_16, /*hidden argument*/NULL);
G_B9_0 = G_B8_0;
if (!L_17)
{
G_B10_0 = G_B8_0;
goto IL_0059;
}
}
{
DataMemberAttribute_tC865433FEC93FFD46D6F3E4BB28F262C9EE40525 * L_18 = V_1;
NullCheck(L_18);
String_t* L_19 = DataMemberAttribute_get_Name_mA626FA1D50DB99B87C7EB674B93622431E14F973_inline(L_18, /*hidden argument*/NULL);
V_3 = L_19;
V_4 = (bool)1;
G_B11_0 = G_B9_0;
goto IL_005e;
}
IL_0059:
{
String_t* L_20 = ___name2;
V_3 = L_20;
V_4 = (bool)0;
G_B11_0 = G_B10_0;
}
IL_005e:
{
Type_t * L_21 = ___declaringType3;
IL2CPP_RUNTIME_CLASS_INIT(JsonTypeReflector_tC161A1BF2506AB16B738C3935C2691A92B7A8C55_il2cpp_TypeInfo_var);
JsonContainerAttribute_t4E39F1E5EA66CF61E90C47C81929BE4A853A2DF3 * L_22 = JsonTypeReflector_GetAttribute_TisJsonContainerAttribute_t4E39F1E5EA66CF61E90C47C81929BE4A853A2DF3_m286674358436D5DD111A8F1F6A1DC2B5118FE0FF(L_21, /*hidden argument*/JsonTypeReflector_GetAttribute_TisJsonContainerAttribute_t4E39F1E5EA66CF61E90C47C81929BE4A853A2DF3_m286674358436D5DD111A8F1F6A1DC2B5118FE0FF_RuntimeMethod_var);
V_5 = L_22;
JsonPropertyAttribute_tD66B9C74F3201FFAF7A16DB84AEA31FE8F02ED5F * L_23 = V_2;
G_B12_0 = G_B11_0;
if (L_23)
{
G_B13_0 = G_B11_0;
goto IL_006d;
}
}
{
G_B14_0 = ((Type_t *)(NULL));
G_B14_1 = G_B12_0;
goto IL_0073;
}
IL_006d:
{
JsonPropertyAttribute_tD66B9C74F3201FFAF7A16DB84AEA31FE8F02ED5F * L_24 = V_2;
NullCheck(L_24);
Type_t * L_25 = JsonPropertyAttribute_get_NamingStrategyType_m1565DA70E1B2B86F069B794C47BA77A11CDB229B_inline(L_24, /*hidden argument*/NULL);
G_B14_0 = L_25;
G_B14_1 = G_B13_0;
}
IL_0073:
{
G_B15_0 = G_B14_1;
if (!G_B14_0)
{
G_B16_0 = G_B14_1;
goto IL_008a;
}
}
{
JsonPropertyAttribute_tD66B9C74F3201FFAF7A16DB84AEA31FE8F02ED5F * L_26 = V_2;
NullCheck(L_26);
Type_t * L_27 = JsonPropertyAttribute_get_NamingStrategyType_m1565DA70E1B2B86F069B794C47BA77A11CDB229B_inline(L_26, /*hidden argument*/NULL);
JsonPropertyAttribute_tD66B9C74F3201FFAF7A16DB84AEA31FE8F02ED5F * L_28 = V_2;
NullCheck(L_28);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_29 = JsonPropertyAttribute_get_NamingStrategyParameters_mD0B7544805A4C5F2281FB5B57B525AB17004DC4B_inline(L_28, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(JsonTypeReflector_tC161A1BF2506AB16B738C3935C2691A92B7A8C55_il2cpp_TypeInfo_var);
NamingStrategy_tBB6F8138B49E9B2704F7B87BF9130378976B9B46 * L_30 = JsonTypeReflector_CreateNamingStrategyInstance_m585F95E0DD806F907EC8EDF722E5E0E9CD351C20(L_27, L_29, /*hidden argument*/NULL);
V_6 = L_30;
G_B22_0 = G_B15_0;
goto IL_00ad;
}
IL_008a:
{
JsonContainerAttribute_t4E39F1E5EA66CF61E90C47C81929BE4A853A2DF3 * L_31 = V_5;
G_B17_0 = G_B16_0;
if (L_31)
{
G_B18_0 = G_B16_0;
goto IL_0091;
}
}
{
G_B19_0 = ((Type_t *)(NULL));
G_B19_1 = G_B17_0;
goto IL_0098;
}
IL_0091:
{
JsonContainerAttribute_t4E39F1E5EA66CF61E90C47C81929BE4A853A2DF3 * L_32 = V_5;
NullCheck(L_32);
Type_t * L_33 = JsonContainerAttribute_get_NamingStrategyType_m9748E3B19B3404BB56F8FB5DEAF9ED2B1EE74F41_inline(L_32, /*hidden argument*/NULL);
G_B19_0 = L_33;
G_B19_1 = G_B18_0;
}
IL_0098:
{
G_B20_0 = G_B19_1;
if (!G_B19_0)
{
G_B21_0 = G_B19_1;
goto IL_00a5;
}
}
{
JsonContainerAttribute_t4E39F1E5EA66CF61E90C47C81929BE4A853A2DF3 * L_34 = V_5;
IL2CPP_RUNTIME_CLASS_INIT(JsonTypeReflector_tC161A1BF2506AB16B738C3935C2691A92B7A8C55_il2cpp_TypeInfo_var);
NamingStrategy_tBB6F8138B49E9B2704F7B87BF9130378976B9B46 * L_35 = JsonTypeReflector_GetContainerNamingStrategy_mD2D9E45963E078EB4629CE06BDB0ECC8B48EC907(L_34, /*hidden argument*/NULL);
V_6 = L_35;
G_B22_0 = G_B20_0;
goto IL_00ad;
}
IL_00a5:
{
NamingStrategy_tBB6F8138B49E9B2704F7B87BF9130378976B9B46 * L_36 = DefaultContractResolver_get_NamingStrategy_m541D750140B66BB0B36E32CEC1F984F1C2037FD4_inline(__this, /*hidden argument*/NULL);
V_6 = L_36;
G_B22_0 = G_B21_0;
}
IL_00ad:
{
NamingStrategy_tBB6F8138B49E9B2704F7B87BF9130378976B9B46 * L_37 = V_6;
G_B23_0 = G_B22_0;
if (!L_37)
{
G_B24_0 = G_B22_0;
goto IL_00c3;
}
}
{
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_38 = ___property0;
NamingStrategy_tBB6F8138B49E9B2704F7B87BF9130378976B9B46 * L_39 = V_6;
String_t* L_40 = V_3;
bool L_41 = V_4;
NullCheck(L_39);
String_t* L_42 = VirtFuncInvoker2< String_t*, String_t*, bool >::Invoke(4 /* System.String Valve.Newtonsoft.Json.Serialization.NamingStrategy::GetPropertyName(System.String,System.Boolean) */, L_39, L_40, L_41);
NullCheck(L_38);
JsonProperty_set_PropertyName_mB5B0FD0E95E50D5236064B1C00DB943BC3761954(L_38, L_42, /*hidden argument*/NULL);
G_B25_0 = G_B23_0;
goto IL_00d0;
}
IL_00c3:
{
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_43 = ___property0;
String_t* L_44 = V_3;
String_t* L_45 = VirtFuncInvoker1< String_t*, String_t* >::Invoke(21 /* System.String Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::ResolvePropertyName(System.String) */, __this, L_44);
NullCheck(L_43);
JsonProperty_set_PropertyName_mB5B0FD0E95E50D5236064B1C00DB943BC3761954(L_43, L_45, /*hidden argument*/NULL);
G_B25_0 = G_B24_0;
}
IL_00d0:
{
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_46 = ___property0;
String_t* L_47 = ___name2;
NullCheck(L_46);
JsonProperty_set_UnderlyingName_m51FFF9A38B8657E0893AE2ED0369394E1076E83A_inline(L_46, L_47, /*hidden argument*/NULL);
V_7 = (bool)0;
JsonPropertyAttribute_tD66B9C74F3201FFAF7A16DB84AEA31FE8F02ED5F * L_48 = V_2;
G_B26_0 = G_B25_0;
if (!L_48)
{
G_B27_0 = G_B25_0;
goto IL_0106;
}
}
{
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_49 = ___property0;
JsonPropertyAttribute_tD66B9C74F3201FFAF7A16DB84AEA31FE8F02ED5F * L_50 = V_2;
NullCheck(L_50);
Nullable_1_t240C94038A74304286AD4C81EAEFD24E6E435A06 L_51 = L_50->get__required_7();
NullCheck(L_49);
L_49->set__required_0(L_51);
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_52 = ___property0;
JsonPropertyAttribute_tD66B9C74F3201FFAF7A16DB84AEA31FE8F02ED5F * L_53 = V_2;
NullCheck(L_53);
Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB L_54 = L_53->get__order_6();
NullCheck(L_52);
JsonProperty_set_Order_m1BC09410DF4CE67DD2E3F7B83F7C31463059DB32_inline(L_52, L_54, /*hidden argument*/NULL);
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_55 = ___property0;
JsonPropertyAttribute_tD66B9C74F3201FFAF7A16DB84AEA31FE8F02ED5F * L_56 = V_2;
NullCheck(L_56);
Nullable_1_tE7CF0A7BC2816D39007C0EEB41F32FA7DB86B394 L_57 = L_56->get__defaultValueHandling_1();
NullCheck(L_55);
JsonProperty_set_DefaultValueHandling_m64D0484E336482643196FE2588406C3018077207_inline(L_55, L_57, /*hidden argument*/NULL);
V_7 = (bool)1;
G_B38_0 = G_B26_0;
goto IL_0169;
}
IL_0106:
{
DataMemberAttribute_tC865433FEC93FFD46D6F3E4BB28F262C9EE40525 * L_58 = V_1;
G_B28_0 = G_B27_0;
if (!L_58)
{
G_B38_0 = G_B27_0;
goto IL_0169;
}
}
{
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_59 = ___property0;
DataMemberAttribute_tC865433FEC93FFD46D6F3E4BB28F262C9EE40525 * L_60 = V_1;
NullCheck(L_60);
bool L_61 = DataMemberAttribute_get_IsRequired_m03BFAD34E0B734E253D49357A981D360B21CCEFA_inline(L_60, /*hidden argument*/NULL);
G_B29_0 = L_59;
G_B29_1 = G_B28_0;
if (L_61)
{
G_B30_0 = L_59;
G_B30_1 = G_B28_0;
goto IL_0115;
}
}
{
G_B31_0 = 0;
G_B31_1 = G_B29_0;
G_B31_2 = G_B29_1;
goto IL_0116;
}
IL_0115:
{
G_B31_0 = 1;
G_B31_1 = G_B30_0;
G_B31_2 = G_B30_1;
}
IL_0116:
{
Nullable_1_t240C94038A74304286AD4C81EAEFD24E6E435A06 L_62;
memset((&L_62), 0, sizeof(L_62));
Nullable_1__ctor_m60DFD5C5C9C025B94DE6AF1A623DBBFC09048956((&L_62), G_B31_0, /*hidden argument*/Nullable_1__ctor_m60DFD5C5C9C025B94DE6AF1A623DBBFC09048956_RuntimeMethod_var);
NullCheck(G_B31_1);
G_B31_1->set__required_0(L_62);
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_63 = ___property0;
DataMemberAttribute_tC865433FEC93FFD46D6F3E4BB28F262C9EE40525 * L_64 = V_1;
NullCheck(L_64);
int32_t L_65 = DataMemberAttribute_get_Order_m1A3ADBDD919D8B3CECEDB183C5F8567F76CC9632_inline(L_64, /*hidden argument*/NULL);
G_B32_0 = L_63;
G_B32_1 = G_B31_2;
if ((!(((uint32_t)L_65) == ((uint32_t)(-1)))))
{
G_B33_0 = L_63;
G_B33_1 = G_B31_2;
goto IL_0136;
}
}
{
il2cpp_codegen_initobj((&V_10), sizeof(Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB ));
Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB L_66 = V_10;
G_B34_0 = L_66;
G_B34_1 = G_B32_0;
G_B34_2 = G_B32_1;
goto IL_0141;
}
IL_0136:
{
DataMemberAttribute_tC865433FEC93FFD46D6F3E4BB28F262C9EE40525 * L_67 = V_1;
NullCheck(L_67);
int32_t L_68 = DataMemberAttribute_get_Order_m1A3ADBDD919D8B3CECEDB183C5F8567F76CC9632_inline(L_67, /*hidden argument*/NULL);
Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB L_69;
memset((&L_69), 0, sizeof(L_69));
Nullable_1__ctor_m11F9C228CFDF836DDFCD7880C09CB4098AB9D7F2((&L_69), L_68, /*hidden argument*/Nullable_1__ctor_m11F9C228CFDF836DDFCD7880C09CB4098AB9D7F2_RuntimeMethod_var);
G_B34_0 = L_69;
G_B34_1 = G_B33_0;
G_B34_2 = G_B33_1;
}
IL_0141:
{
NullCheck(G_B34_1);
JsonProperty_set_Order_m1BC09410DF4CE67DD2E3F7B83F7C31463059DB32_inline(G_B34_1, G_B34_0, /*hidden argument*/NULL);
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_70 = ___property0;
DataMemberAttribute_tC865433FEC93FFD46D6F3E4BB28F262C9EE40525 * L_71 = V_1;
NullCheck(L_71);
bool L_72 = DataMemberAttribute_get_EmitDefaultValue_mDFB2F1161572605FA84B4BD480360965FFB4DC9D_inline(L_71, /*hidden argument*/NULL);
G_B35_0 = L_70;
G_B35_1 = G_B34_2;
if (!L_72)
{
G_B36_0 = L_70;
G_B36_1 = G_B34_2;
goto IL_015b;
}
}
{
il2cpp_codegen_initobj((&V_11), sizeof(Nullable_1_tE7CF0A7BC2816D39007C0EEB41F32FA7DB86B394 ));
Nullable_1_tE7CF0A7BC2816D39007C0EEB41F32FA7DB86B394 L_73 = V_11;
G_B37_0 = L_73;
G_B37_1 = G_B35_0;
G_B37_2 = G_B35_1;
goto IL_0161;
}
IL_015b:
{
Nullable_1_tE7CF0A7BC2816D39007C0EEB41F32FA7DB86B394 L_74;
memset((&L_74), 0, sizeof(L_74));
Nullable_1__ctor_m8D26829C8FBCF4D95A80984F459CFBA594E34E7B((&L_74), 1, /*hidden argument*/Nullable_1__ctor_m8D26829C8FBCF4D95A80984F459CFBA594E34E7B_RuntimeMethod_var);
G_B37_0 = L_74;
G_B37_1 = G_B36_0;
G_B37_2 = G_B36_1;
}
IL_0161:
{
NullCheck(G_B37_1);
JsonProperty_set_DefaultValueHandling_m64D0484E336482643196FE2588406C3018077207_inline(G_B37_1, G_B37_0, /*hidden argument*/NULL);
V_7 = (bool)1;
G_B38_0 = G_B37_2;
}
IL_0169:
{
if (!G_B38_0)
{
goto IL_017a;
}
}
{
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_75 = ___property0;
Nullable_1_t240C94038A74304286AD4C81EAEFD24E6E435A06 L_76;
memset((&L_76), 0, sizeof(L_76));
Nullable_1__ctor_m60DFD5C5C9C025B94DE6AF1A623DBBFC09048956((&L_76), 2, /*hidden argument*/Nullable_1__ctor_m60DFD5C5C9C025B94DE6AF1A623DBBFC09048956_RuntimeMethod_var);
NullCheck(L_75);
L_75->set__required_0(L_76);
V_7 = (bool)1;
}
IL_017a:
{
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_77 = ___property0;
bool L_78 = V_7;
NullCheck(L_77);
JsonProperty_set_HasMemberAttribute_m31D6785AAFB8BE4772054C439224C82C37ADC6F0_inline(L_77, L_78, /*hidden argument*/NULL);
RuntimeObject * L_79 = ___attributeProvider1;
IL2CPP_RUNTIME_CLASS_INIT(JsonTypeReflector_tC161A1BF2506AB16B738C3935C2691A92B7A8C55_il2cpp_TypeInfo_var);
JsonIgnoreAttribute_t3BE833571932FA661098014E11BECC2E8D61A95C * L_80 = JsonTypeReflector_GetAttribute_TisJsonIgnoreAttribute_t3BE833571932FA661098014E11BECC2E8D61A95C_mD8C1EAAAC6E76A9AA019795926EDCA6E82298DA6(L_79, /*hidden argument*/JsonTypeReflector_GetAttribute_TisJsonIgnoreAttribute_t3BE833571932FA661098014E11BECC2E8D61A95C_mD8C1EAAAC6E76A9AA019795926EDCA6E82298DA6_RuntimeMethod_var);
if (L_80)
{
goto IL_019d;
}
}
{
RuntimeObject * L_81 = ___attributeProvider1;
IL2CPP_RUNTIME_CLASS_INIT(JsonTypeReflector_tC161A1BF2506AB16B738C3935C2691A92B7A8C55_il2cpp_TypeInfo_var);
JsonExtensionDataAttribute_tC858B08E1ACE700629982E390F2FDA7A0580C208 * L_82 = JsonTypeReflector_GetAttribute_TisJsonExtensionDataAttribute_tC858B08E1ACE700629982E390F2FDA7A0580C208_m03976BD7D7C735A7A5C5DD9177EAB582FCF8FC48(L_81, /*hidden argument*/JsonTypeReflector_GetAttribute_TisJsonExtensionDataAttribute_tC858B08E1ACE700629982E390F2FDA7A0580C208_m03976BD7D7C735A7A5C5DD9177EAB582FCF8FC48_RuntimeMethod_var);
if (L_82)
{
goto IL_019d;
}
}
{
RuntimeObject * L_83 = ___attributeProvider1;
IL2CPP_RUNTIME_CLASS_INIT(JsonTypeReflector_tC161A1BF2506AB16B738C3935C2691A92B7A8C55_il2cpp_TypeInfo_var);
NonSerializedAttribute_t1D1C4A9662B6C2FAC28237FCDFA49FA4747BC3BA * L_84 = JsonTypeReflector_GetAttribute_TisNonSerializedAttribute_t1D1C4A9662B6C2FAC28237FCDFA49FA4747BC3BA_m2CB45DAD4991DA08B67587FD0AD4F7B8FD66A9E9(L_83, /*hidden argument*/JsonTypeReflector_GetAttribute_TisNonSerializedAttribute_t1D1C4A9662B6C2FAC28237FCDFA49FA4747BC3BA_m2CB45DAD4991DA08B67587FD0AD4F7B8FD66A9E9_RuntimeMethod_var);
G_B44_0 = ((!(((RuntimeObject*)(NonSerializedAttribute_t1D1C4A9662B6C2FAC28237FCDFA49FA4747BC3BA *)L_84) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
goto IL_019e;
}
IL_019d:
{
G_B44_0 = 1;
}
IL_019e:
{
V_8 = (bool)G_B44_0;
int32_t L_85 = ___memberSerialization4;
if ((((int32_t)L_85) == ((int32_t)1)))
{
goto IL_01b5;
}
}
{
V_12 = (bool)0;
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_86 = ___property0;
bool L_87 = V_8;
bool L_88 = V_12;
NullCheck(L_86);
JsonProperty_set_Ignored_mFBBD3BA453B107E9C8F8B09E015A30C48BC9471E_inline(L_86, (bool)((int32_t)((int32_t)L_87|(int32_t)L_88)), /*hidden argument*/NULL);
goto IL_01c7;
}
IL_01b5:
{
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_89 = ___property0;
bool L_90 = V_8;
G_B47_0 = L_89;
if (L_90)
{
G_B48_0 = L_89;
goto IL_01c1;
}
}
{
bool L_91 = V_7;
G_B49_0 = ((((int32_t)L_91) == ((int32_t)0))? 1 : 0);
G_B49_1 = G_B47_0;
goto IL_01c2;
}
IL_01c1:
{
G_B49_0 = 1;
G_B49_1 = G_B48_0;
}
IL_01c2:
{
NullCheck(G_B49_1);
JsonProperty_set_Ignored_mFBBD3BA453B107E9C8F8B09E015A30C48BC9471E_inline(G_B49_1, (bool)G_B49_0, /*hidden argument*/NULL);
}
IL_01c7:
{
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_92 = ___property0;
RuntimeObject * L_93 = ___attributeProvider1;
IL2CPP_RUNTIME_CLASS_INIT(JsonTypeReflector_tC161A1BF2506AB16B738C3935C2691A92B7A8C55_il2cpp_TypeInfo_var);
JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * L_94 = JsonTypeReflector_GetJsonConverter_mBCF9AEC08EA9FB2F2ED049ACE80088CE2B1AE13D(L_93, /*hidden argument*/NULL);
NullCheck(L_92);
JsonProperty_set_Converter_m3FFE421E199BB51AFBDB9415A4986D6E091D4CC9_inline(L_92, L_94, /*hidden argument*/NULL);
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_95 = ___property0;
RuntimeObject * L_96 = ___attributeProvider1;
JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * L_97 = JsonTypeReflector_GetJsonConverter_mBCF9AEC08EA9FB2F2ED049ACE80088CE2B1AE13D(L_96, /*hidden argument*/NULL);
NullCheck(L_95);
JsonProperty_set_MemberConverter_mA8BEFA62877DA9FA40B7E871BA7B70EAE325B532_inline(L_95, L_97, /*hidden argument*/NULL);
RuntimeObject * L_98 = ___attributeProvider1;
DefaultValueAttribute_t03B1F51B35271D50779D31234C9C6845BC9626EC * L_99 = JsonTypeReflector_GetAttribute_TisDefaultValueAttribute_t03B1F51B35271D50779D31234C9C6845BC9626EC_mF2558DD7F4609B1154C2ADC2DE8872B09E668438(L_98, /*hidden argument*/JsonTypeReflector_GetAttribute_TisDefaultValueAttribute_t03B1F51B35271D50779D31234C9C6845BC9626EC_mF2558DD7F4609B1154C2ADC2DE8872B09E668438_RuntimeMethod_var);
V_9 = L_99;
DefaultValueAttribute_t03B1F51B35271D50779D31234C9C6845BC9626EC * L_100 = V_9;
if (!L_100)
{
goto IL_01f8;
}
}
{
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_101 = ___property0;
DefaultValueAttribute_t03B1F51B35271D50779D31234C9C6845BC9626EC * L_102 = V_9;
NullCheck(L_102);
RuntimeObject * L_103 = VirtFuncInvoker0< RuntimeObject * >::Invoke(7 /* System.Object System.ComponentModel.DefaultValueAttribute::get_Value() */, L_102);
NullCheck(L_101);
JsonProperty_set_DefaultValue_m947F9A315D06B92E07B70FFB946D8483C5C3E8B5(L_101, L_103, /*hidden argument*/NULL);
}
IL_01f8:
{
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_104 = ___property0;
JsonPropertyAttribute_tD66B9C74F3201FFAF7A16DB84AEA31FE8F02ED5F * L_105 = V_2;
G_B53_0 = L_104;
if (L_105)
{
G_B54_0 = L_104;
goto IL_0208;
}
}
{
il2cpp_codegen_initobj((&V_13), sizeof(Nullable_1_t1E3E10A718340D5055F8DB98AE1C03F47CDC19FC ));
Nullable_1_t1E3E10A718340D5055F8DB98AE1C03F47CDC19FC L_106 = V_13;
G_B55_0 = L_106;
G_B55_1 = G_B53_0;
goto IL_020e;
}
IL_0208:
{
JsonPropertyAttribute_tD66B9C74F3201FFAF7A16DB84AEA31FE8F02ED5F * L_107 = V_2;
NullCheck(L_107);
Nullable_1_t1E3E10A718340D5055F8DB98AE1C03F47CDC19FC L_108 = L_107->get__nullValueHandling_0();
G_B55_0 = L_108;
G_B55_1 = G_B54_0;
}
IL_020e:
{
NullCheck(G_B55_1);
JsonProperty_set_NullValueHandling_m74AB1DCAB92587EB9572BEA40B5C7E0D88B87AD8_inline(G_B55_1, G_B55_0, /*hidden argument*/NULL);
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_109 = ___property0;
JsonPropertyAttribute_tD66B9C74F3201FFAF7A16DB84AEA31FE8F02ED5F * L_110 = V_2;
G_B56_0 = L_109;
if (L_110)
{
G_B57_0 = L_109;
goto IL_0223;
}
}
{
il2cpp_codegen_initobj((&V_14), sizeof(Nullable_1_tD485E28BBBAFB03563161D92A5E03A20B8691DF7 ));
Nullable_1_tD485E28BBBAFB03563161D92A5E03A20B8691DF7 L_111 = V_14;
G_B58_0 = L_111;
G_B58_1 = G_B56_0;
goto IL_0229;
}
IL_0223:
{
JsonPropertyAttribute_tD66B9C74F3201FFAF7A16DB84AEA31FE8F02ED5F * L_112 = V_2;
NullCheck(L_112);
Nullable_1_tD485E28BBBAFB03563161D92A5E03A20B8691DF7 L_113 = L_112->get__referenceLoopHandling_2();
G_B58_0 = L_113;
G_B58_1 = G_B57_0;
}
IL_0229:
{
NullCheck(G_B58_1);
JsonProperty_set_ReferenceLoopHandling_mFA6874BE6C0DE25CE1921F7F4F0966449BC386EA_inline(G_B58_1, G_B58_0, /*hidden argument*/NULL);
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_114 = ___property0;
JsonPropertyAttribute_tD66B9C74F3201FFAF7A16DB84AEA31FE8F02ED5F * L_115 = V_2;
G_B59_0 = L_114;
if (L_115)
{
G_B60_0 = L_114;
goto IL_023e;
}
}
{
il2cpp_codegen_initobj((&V_15), sizeof(Nullable_1_t6F16A066F0D8E92AEDC11791932E5B9D887F402E ));
Nullable_1_t6F16A066F0D8E92AEDC11791932E5B9D887F402E L_116 = V_15;
G_B61_0 = L_116;
G_B61_1 = G_B59_0;
goto IL_0244;
}
IL_023e:
{
JsonPropertyAttribute_tD66B9C74F3201FFAF7A16DB84AEA31FE8F02ED5F * L_117 = V_2;
NullCheck(L_117);
Nullable_1_t6F16A066F0D8E92AEDC11791932E5B9D887F402E L_118 = L_117->get__objectCreationHandling_3();
G_B61_0 = L_118;
G_B61_1 = G_B60_0;
}
IL_0244:
{
NullCheck(G_B61_1);
JsonProperty_set_ObjectCreationHandling_mF627BC5B84EC6A0FBDBC2C3744D35AE5A9BF3C49_inline(G_B61_1, G_B61_0, /*hidden argument*/NULL);
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_119 = ___property0;
JsonPropertyAttribute_tD66B9C74F3201FFAF7A16DB84AEA31FE8F02ED5F * L_120 = V_2;
G_B62_0 = L_119;
if (L_120)
{
G_B63_0 = L_119;
goto IL_0259;
}
}
{
il2cpp_codegen_initobj((&V_16), sizeof(Nullable_1_t03BF155C19CE72C93934F0A7CDDA0C202A278E11 ));
Nullable_1_t03BF155C19CE72C93934F0A7CDDA0C202A278E11 L_121 = V_16;
G_B64_0 = L_121;
G_B64_1 = G_B62_0;
goto IL_025f;
}
IL_0259:
{
JsonPropertyAttribute_tD66B9C74F3201FFAF7A16DB84AEA31FE8F02ED5F * L_122 = V_2;
NullCheck(L_122);
Nullable_1_t03BF155C19CE72C93934F0A7CDDA0C202A278E11 L_123 = L_122->get__typeNameHandling_4();
G_B64_0 = L_123;
G_B64_1 = G_B63_0;
}
IL_025f:
{
NullCheck(G_B64_1);
JsonProperty_set_TypeNameHandling_m1705EF65E533500CD4530F872B498F83B1A279B1_inline(G_B64_1, G_B64_0, /*hidden argument*/NULL);
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_124 = ___property0;
JsonPropertyAttribute_tD66B9C74F3201FFAF7A16DB84AEA31FE8F02ED5F * L_125 = V_2;
G_B65_0 = L_124;
if (L_125)
{
G_B66_0 = L_124;
goto IL_0274;
}
}
{
il2cpp_codegen_initobj((&V_17), sizeof(Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 ));
Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 L_126 = V_17;
G_B67_0 = L_126;
G_B67_1 = G_B65_0;
goto IL_027a;
}
IL_0274:
{
JsonPropertyAttribute_tD66B9C74F3201FFAF7A16DB84AEA31FE8F02ED5F * L_127 = V_2;
NullCheck(L_127);
Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 L_128 = L_127->get__isReference_5();
G_B67_0 = L_128;
G_B67_1 = G_B66_0;
}
IL_027a:
{
NullCheck(G_B67_1);
JsonProperty_set_IsReference_m81A1A0EBD772885E63F4709504EC98E472D4FE2D_inline(G_B67_1, G_B67_0, /*hidden argument*/NULL);
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_129 = ___property0;
JsonPropertyAttribute_tD66B9C74F3201FFAF7A16DB84AEA31FE8F02ED5F * L_130 = V_2;
G_B68_0 = L_129;
if (L_130)
{
G_B69_0 = L_129;
goto IL_028f;
}
}
{
il2cpp_codegen_initobj((&V_17), sizeof(Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 ));
Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 L_131 = V_17;
G_B70_0 = L_131;
G_B70_1 = G_B68_0;
goto IL_0295;
}
IL_028f:
{
JsonPropertyAttribute_tD66B9C74F3201FFAF7A16DB84AEA31FE8F02ED5F * L_132 = V_2;
NullCheck(L_132);
Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 L_133 = L_132->get__itemIsReference_8();
G_B70_0 = L_133;
G_B70_1 = G_B69_0;
}
IL_0295:
{
NullCheck(G_B70_1);
JsonProperty_set_ItemIsReference_m13E3230285E4340B1E58D507B618377BE88BD57D_inline(G_B70_1, G_B70_0, /*hidden argument*/NULL);
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_134 = ___property0;
JsonPropertyAttribute_tD66B9C74F3201FFAF7A16DB84AEA31FE8F02ED5F * L_135 = V_2;
G_B71_0 = L_134;
if (!L_135)
{
G_B72_0 = L_134;
goto IL_02a6;
}
}
{
JsonPropertyAttribute_tD66B9C74F3201FFAF7A16DB84AEA31FE8F02ED5F * L_136 = V_2;
NullCheck(L_136);
Type_t * L_137 = JsonPropertyAttribute_get_ItemConverterType_mB1E467548F5C538A1D34A6B083170A4C4A4C5C56_inline(L_136, /*hidden argument*/NULL);
G_B72_0 = G_B71_0;
if (L_137)
{
G_B73_0 = G_B71_0;
goto IL_02a9;
}
}
IL_02a6:
{
G_B74_0 = ((JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 *)(NULL));
G_B74_1 = G_B72_0;
goto IL_02ba;
}
IL_02a9:
{
JsonPropertyAttribute_tD66B9C74F3201FFAF7A16DB84AEA31FE8F02ED5F * L_138 = V_2;
NullCheck(L_138);
Type_t * L_139 = JsonPropertyAttribute_get_ItemConverterType_mB1E467548F5C538A1D34A6B083170A4C4A4C5C56_inline(L_138, /*hidden argument*/NULL);
JsonPropertyAttribute_tD66B9C74F3201FFAF7A16DB84AEA31FE8F02ED5F * L_140 = V_2;
NullCheck(L_140);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_141 = JsonPropertyAttribute_get_ItemConverterParameters_mC1C5C995D4DFED0E9979A8A2E4179C4EF1898C71_inline(L_140, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(JsonTypeReflector_tC161A1BF2506AB16B738C3935C2691A92B7A8C55_il2cpp_TypeInfo_var);
JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * L_142 = JsonTypeReflector_CreateJsonConverterInstance_mF210879CC3332D8BFAAD51FC1F446DF1B138EFDF(L_139, L_141, /*hidden argument*/NULL);
G_B74_0 = L_142;
G_B74_1 = G_B73_0;
}
IL_02ba:
{
NullCheck(G_B74_1);
JsonProperty_set_ItemConverter_m8C4DC9722F99040811BCDB141ACDD00B72C45A71_inline(G_B74_1, G_B74_0, /*hidden argument*/NULL);
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_143 = ___property0;
JsonPropertyAttribute_tD66B9C74F3201FFAF7A16DB84AEA31FE8F02ED5F * L_144 = V_2;
G_B75_0 = L_143;
if (L_144)
{
G_B76_0 = L_143;
goto IL_02cf;
}
}
{
il2cpp_codegen_initobj((&V_14), sizeof(Nullable_1_tD485E28BBBAFB03563161D92A5E03A20B8691DF7 ));
Nullable_1_tD485E28BBBAFB03563161D92A5E03A20B8691DF7 L_145 = V_14;
G_B77_0 = L_145;
G_B77_1 = G_B75_0;
goto IL_02d5;
}
IL_02cf:
{
JsonPropertyAttribute_tD66B9C74F3201FFAF7A16DB84AEA31FE8F02ED5F * L_146 = V_2;
NullCheck(L_146);
Nullable_1_tD485E28BBBAFB03563161D92A5E03A20B8691DF7 L_147 = L_146->get__itemReferenceLoopHandling_9();
G_B77_0 = L_147;
G_B77_1 = G_B76_0;
}
IL_02d5:
{
NullCheck(G_B77_1);
JsonProperty_set_ItemReferenceLoopHandling_m1CDEE3989196F8894230245599408BC9DF3EE8A9_inline(G_B77_1, G_B77_0, /*hidden argument*/NULL);
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_148 = ___property0;
JsonPropertyAttribute_tD66B9C74F3201FFAF7A16DB84AEA31FE8F02ED5F * L_149 = V_2;
G_B78_0 = L_148;
if (L_149)
{
G_B79_0 = L_148;
goto IL_02ea;
}
}
{
il2cpp_codegen_initobj((&V_16), sizeof(Nullable_1_t03BF155C19CE72C93934F0A7CDDA0C202A278E11 ));
Nullable_1_t03BF155C19CE72C93934F0A7CDDA0C202A278E11 L_150 = V_16;
G_B80_0 = L_150;
G_B80_1 = G_B78_0;
goto IL_02f0;
}
IL_02ea:
{
JsonPropertyAttribute_tD66B9C74F3201FFAF7A16DB84AEA31FE8F02ED5F * L_151 = V_2;
NullCheck(L_151);
Nullable_1_t03BF155C19CE72C93934F0A7CDDA0C202A278E11 L_152 = L_151->get__itemTypeNameHandling_10();
G_B80_0 = L_152;
G_B80_1 = G_B79_0;
}
IL_02f0:
{
NullCheck(G_B80_1);
JsonProperty_set_ItemTypeNameHandling_mEB8A85DB36850A8F0660DA687B80B6B40CB6B9AF_inline(G_B80_1, G_B80_0, /*hidden argument*/NULL);
bool* L_153 = ___allowNonPublicAccess5;
*((int8_t*)L_153) = (int8_t)0;
int32_t L_154 = DefaultContractResolver_get_DefaultMembersSearchFlags_m1B01EBF0E7FF14D1E481B705DE1B927566EC6B81_inline(__this, /*hidden argument*/NULL);
if ((!(((uint32_t)((int32_t)((int32_t)L_154&(int32_t)((int32_t)32)))) == ((uint32_t)((int32_t)32)))))
{
goto IL_030a;
}
}
{
bool* L_155 = ___allowNonPublicAccess5;
*((int8_t*)L_155) = (int8_t)1;
}
IL_030a:
{
bool L_156 = V_7;
if (!L_156)
{
goto IL_0312;
}
}
{
bool* L_157 = ___allowNonPublicAccess5;
*((int8_t*)L_157) = (int8_t)1;
}
IL_0312:
{
int32_t L_158 = ___memberSerialization4;
if ((!(((uint32_t)L_158) == ((uint32_t)2))))
{
goto IL_031b;
}
}
{
bool* L_159 = ___allowNonPublicAccess5;
*((int8_t*)L_159) = (int8_t)1;
}
IL_031b:
{
return;
}
}
// System.Predicate`1<System.Object> Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::CreateShouldSerializeTest(System.Reflection.MemberInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 * DefaultContractResolver_CreateShouldSerializeTest_m89AC077F623A80B62A6704A59A8DC42F4CCA0184 (DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0 * __this, MemberInfo_t * ___member0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultContractResolver_CreateShouldSerializeTest_m89AC077F623A80B62A6704A59A8DC42F4CCA0184_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
U3CU3Ec__DisplayClass68_0_t1E454C6A98ED08013AAE420DD137F8DC23C918B3 * V_0 = NULL;
MethodInfo_t * V_1 = NULL;
{
U3CU3Ec__DisplayClass68_0_t1E454C6A98ED08013AAE420DD137F8DC23C918B3 * L_0 = (U3CU3Ec__DisplayClass68_0_t1E454C6A98ED08013AAE420DD137F8DC23C918B3 *)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass68_0_t1E454C6A98ED08013AAE420DD137F8DC23C918B3_il2cpp_TypeInfo_var);
U3CU3Ec__DisplayClass68_0__ctor_mCB5870E5A11CE83ED10457825CBB519F065B1E26(L_0, /*hidden argument*/NULL);
V_0 = L_0;
MemberInfo_t * L_1 = ___member0;
NullCheck(L_1);
Type_t * L_2 = VirtFuncInvoker0< Type_t * >::Invoke(9 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_1);
MemberInfo_t * L_3 = ___member0;
NullCheck(L_3);
String_t* L_4 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_3);
String_t* L_5 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(_stringLiteral71BE626854390279C8DE7ECCCFA7B9B42168F86B, L_4, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(ReflectionUtils_t1845D588ADA15C351615E925042ECF790B622987_il2cpp_TypeInfo_var);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_6 = ((ReflectionUtils_t1845D588ADA15C351615E925042ECF790B622987_StaticFields*)il2cpp_codegen_static_fields_for(ReflectionUtils_t1845D588ADA15C351615E925042ECF790B622987_il2cpp_TypeInfo_var))->get_EmptyTypes_0();
NullCheck(L_2);
MethodInfo_t * L_7 = Type_GetMethod_m54E1EF62AFF44AA621E074D123C5C0B3E73A7DD5(L_2, L_5, L_6, /*hidden argument*/NULL);
V_1 = L_7;
MethodInfo_t * L_8 = V_1;
if (!L_8)
{
goto IL_003c;
}
}
{
MethodInfo_t * L_9 = V_1;
NullCheck(L_9);
Type_t * L_10 = VirtFuncInvoker0< Type_t * >::Invoke(41 /* System.Type System.Reflection.MethodInfo::get_ReturnType() */, L_9);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_11 = { reinterpret_cast<intptr_t> (Boolean_tB53F6830F670160873277339AA58F15CAED4399C_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_12 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_11, /*hidden argument*/NULL);
if ((((RuntimeObject*)(Type_t *)L_10) == ((RuntimeObject*)(Type_t *)L_12)))
{
goto IL_003e;
}
}
IL_003c:
{
return (Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 *)NULL;
}
IL_003e:
{
U3CU3Ec__DisplayClass68_0_t1E454C6A98ED08013AAE420DD137F8DC23C918B3 * L_13 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(JsonTypeReflector_tC161A1BF2506AB16B738C3935C2691A92B7A8C55_il2cpp_TypeInfo_var);
ReflectionDelegateFactory_t87E79CD61C3504844C338EEC1949177370F2029A * L_14 = JsonTypeReflector_get_ReflectionDelegateFactory_mAD718C1AD00934D6A3A5B334C5494929E45A8DC7(/*hidden argument*/NULL);
MethodInfo_t * L_15 = V_1;
NullCheck(L_14);
MethodCall_2_t56986CA125FFF5F08B7842782AF0C0E8499096EC * L_16 = GenericVirtFuncInvoker1< MethodCall_2_t56986CA125FFF5F08B7842782AF0C0E8499096EC *, MethodBase_t * >::Invoke(ReflectionDelegateFactory_CreateMethodCall_TisRuntimeObject_m5D4F8691518AF4B8A5F9068F4A1E1C06AC3074E9_RuntimeMethod_var, L_14, L_15);
NullCheck(L_13);
L_13->set_shouldSerializeCall_0(L_16);
U3CU3Ec__DisplayClass68_0_t1E454C6A98ED08013AAE420DD137F8DC23C918B3 * L_17 = V_0;
Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 * L_18 = (Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 *)il2cpp_codegen_object_new(Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979_il2cpp_TypeInfo_var);
Predicate_1__ctor_mBC07C59B061E1B719FFE2B6E5541E9011D906C3C(L_18, L_17, (intptr_t)((intptr_t)U3CU3Ec__DisplayClass68_0_U3CCreateShouldSerializeTestU3Eb__0_m7501DA378EF5FC5C1D9B74C089A764FC1FFA2AFE_RuntimeMethod_var), /*hidden argument*/Predicate_1__ctor_mBC07C59B061E1B719FFE2B6E5541E9011D906C3C_RuntimeMethod_var);
return L_18;
}
}
// System.Void Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::SetIsSpecifiedActions(Valve.Newtonsoft.Json.Serialization.JsonProperty,System.Reflection.MemberInfo,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultContractResolver_SetIsSpecifiedActions_m2A020865FC552D59D7ACBC8E299602D2F61DC8F8 (DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0 * __this, JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * ___property0, MemberInfo_t * ___member1, bool ___allowNonPublicAccess2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultContractResolver_SetIsSpecifiedActions_m2A020865FC552D59D7ACBC8E299602D2F61DC8F8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
U3CU3Ec__DisplayClass69_0_tF21BC3EDD90BFA18331A484ECF156E30EF474FCA * V_0 = NULL;
MemberInfo_t * V_1 = NULL;
{
U3CU3Ec__DisplayClass69_0_tF21BC3EDD90BFA18331A484ECF156E30EF474FCA * L_0 = (U3CU3Ec__DisplayClass69_0_tF21BC3EDD90BFA18331A484ECF156E30EF474FCA *)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass69_0_tF21BC3EDD90BFA18331A484ECF156E30EF474FCA_il2cpp_TypeInfo_var);
U3CU3Ec__DisplayClass69_0__ctor_mAD41CD2C541555A97FBE04E5E807700D41A3CC24(L_0, /*hidden argument*/NULL);
V_0 = L_0;
MemberInfo_t * L_1 = ___member1;
NullCheck(L_1);
Type_t * L_2 = VirtFuncInvoker0< Type_t * >::Invoke(9 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_1);
MemberInfo_t * L_3 = ___member1;
NullCheck(L_3);
String_t* L_4 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_3);
String_t* L_5 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(L_4, _stringLiteralB868B2987C81465DF29B3BF546D3655F01B1FFD4, /*hidden argument*/NULL);
NullCheck(L_2);
PropertyInfo_t * L_6 = Type_GetProperty_m309A76AAAFC344BA5EB24ACD874400F90B6E877E(L_2, L_5, /*hidden argument*/NULL);
V_1 = L_6;
MemberInfo_t * L_7 = V_1;
if (L_7)
{
goto IL_0041;
}
}
{
MemberInfo_t * L_8 = ___member1;
NullCheck(L_8);
Type_t * L_9 = VirtFuncInvoker0< Type_t * >::Invoke(9 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_8);
MemberInfo_t * L_10 = ___member1;
NullCheck(L_10);
String_t* L_11 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_10);
String_t* L_12 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(L_11, _stringLiteralB868B2987C81465DF29B3BF546D3655F01B1FFD4, /*hidden argument*/NULL);
NullCheck(L_9);
FieldInfo_t * L_13 = Type_GetField_m564F7686385A6EA8C30F81C939250D5010DC0CA5(L_9, L_12, /*hidden argument*/NULL);
V_1 = L_13;
}
IL_0041:
{
MemberInfo_t * L_14 = V_1;
if (!L_14)
{
goto IL_0056;
}
}
{
MemberInfo_t * L_15 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(ReflectionUtils_t1845D588ADA15C351615E925042ECF790B622987_il2cpp_TypeInfo_var);
Type_t * L_16 = ReflectionUtils_GetMemberUnderlyingType_m22BCFA3BF7FDF789A7801EB57F09CFF695A5A1AE(L_15, /*hidden argument*/NULL);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_17 = { reinterpret_cast<intptr_t> (Boolean_tB53F6830F670160873277339AA58F15CAED4399C_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_18 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_17, /*hidden argument*/NULL);
if ((((RuntimeObject*)(Type_t *)L_16) == ((RuntimeObject*)(Type_t *)L_18)))
{
goto IL_0057;
}
}
IL_0056:
{
return;
}
IL_0057:
{
U3CU3Ec__DisplayClass69_0_tF21BC3EDD90BFA18331A484ECF156E30EF474FCA * L_19 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(JsonTypeReflector_tC161A1BF2506AB16B738C3935C2691A92B7A8C55_il2cpp_TypeInfo_var);
ReflectionDelegateFactory_t87E79CD61C3504844C338EEC1949177370F2029A * L_20 = JsonTypeReflector_get_ReflectionDelegateFactory_mAD718C1AD00934D6A3A5B334C5494929E45A8DC7(/*hidden argument*/NULL);
MemberInfo_t * L_21 = V_1;
NullCheck(L_20);
Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 * L_22 = ReflectionDelegateFactory_CreateGet_TisRuntimeObject_m166AF4E86BA33EEBA827CA6E677F832942C2FD27(L_20, L_21, /*hidden argument*/ReflectionDelegateFactory_CreateGet_TisRuntimeObject_m166AF4E86BA33EEBA827CA6E677F832942C2FD27_RuntimeMethod_var);
NullCheck(L_19);
L_19->set_specifiedPropertyGet_0(L_22);
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_23 = ___property0;
U3CU3Ec__DisplayClass69_0_tF21BC3EDD90BFA18331A484ECF156E30EF474FCA * L_24 = V_0;
Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 * L_25 = (Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 *)il2cpp_codegen_object_new(Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979_il2cpp_TypeInfo_var);
Predicate_1__ctor_mBC07C59B061E1B719FFE2B6E5541E9011D906C3C(L_25, L_24, (intptr_t)((intptr_t)U3CU3Ec__DisplayClass69_0_U3CSetIsSpecifiedActionsU3Eb__0_mCAB0A9EA227F93C3D1BD1EA1DEA4A41752F203F9_RuntimeMethod_var), /*hidden argument*/Predicate_1__ctor_mBC07C59B061E1B719FFE2B6E5541E9011D906C3C_RuntimeMethod_var);
NullCheck(L_23);
JsonProperty_set_GetIsSpecified_m1AC9A2E2BAC8E9A8B8294041A79C7483636EB4F6_inline(L_23, L_25, /*hidden argument*/NULL);
MemberInfo_t * L_26 = V_1;
bool L_27 = ___allowNonPublicAccess2;
IL2CPP_RUNTIME_CLASS_INIT(ReflectionUtils_t1845D588ADA15C351615E925042ECF790B622987_il2cpp_TypeInfo_var);
bool L_28 = ReflectionUtils_CanSetMemberValue_mEB160257BB0AF0D73699286C7E01D01D18ECD14D(L_26, L_27, (bool)0, /*hidden argument*/NULL);
if (!L_28)
{
goto IL_0095;
}
}
{
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_29 = ___property0;
IL2CPP_RUNTIME_CLASS_INIT(JsonTypeReflector_tC161A1BF2506AB16B738C3935C2691A92B7A8C55_il2cpp_TypeInfo_var);
ReflectionDelegateFactory_t87E79CD61C3504844C338EEC1949177370F2029A * L_30 = JsonTypeReflector_get_ReflectionDelegateFactory_mAD718C1AD00934D6A3A5B334C5494929E45A8DC7(/*hidden argument*/NULL);
MemberInfo_t * L_31 = V_1;
NullCheck(L_30);
Action_2_t0DB6FD6F515527EAB552B690A291778C6F00D48C * L_32 = ReflectionDelegateFactory_CreateSet_TisRuntimeObject_mB53D97746F5CF11CB4A90CEDAA556F892464DC3A(L_30, L_31, /*hidden argument*/ReflectionDelegateFactory_CreateSet_TisRuntimeObject_mB53D97746F5CF11CB4A90CEDAA556F892464DC3A_RuntimeMethod_var);
NullCheck(L_29);
JsonProperty_set_SetIsSpecified_m63982926E0533FEA5543D1147F34349A1D22B282_inline(L_29, L_32, /*hidden argument*/NULL);
}
IL_0095:
{
return;
}
}
// System.String Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::ResolvePropertyName(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DefaultContractResolver_ResolvePropertyName_m6738A49A229793AD562459FE79AA0BE71CD1BAC7 (DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0 * __this, String_t* ___propertyName0, const RuntimeMethod* method)
{
{
NamingStrategy_tBB6F8138B49E9B2704F7B87BF9130378976B9B46 * L_0 = DefaultContractResolver_get_NamingStrategy_m541D750140B66BB0B36E32CEC1F984F1C2037FD4_inline(__this, /*hidden argument*/NULL);
if (!L_0)
{
goto IL_0016;
}
}
{
NamingStrategy_tBB6F8138B49E9B2704F7B87BF9130378976B9B46 * L_1 = DefaultContractResolver_get_NamingStrategy_m541D750140B66BB0B36E32CEC1F984F1C2037FD4_inline(__this, /*hidden argument*/NULL);
String_t* L_2 = ___propertyName0;
NullCheck(L_1);
String_t* L_3 = VirtFuncInvoker2< String_t*, String_t*, bool >::Invoke(4 /* System.String Valve.Newtonsoft.Json.Serialization.NamingStrategy::GetPropertyName(System.String,System.Boolean) */, L_1, L_2, (bool)0);
return L_3;
}
IL_0016:
{
String_t* L_4 = ___propertyName0;
return L_4;
}
}
// System.String Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::ResolveDictionaryKey(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DefaultContractResolver_ResolveDictionaryKey_m1FD323624CF5E57D86889003D62EE7ED0B84751B (DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0 * __this, String_t* ___dictionaryKey0, const RuntimeMethod* method)
{
{
NamingStrategy_tBB6F8138B49E9B2704F7B87BF9130378976B9B46 * L_0 = DefaultContractResolver_get_NamingStrategy_m541D750140B66BB0B36E32CEC1F984F1C2037FD4_inline(__this, /*hidden argument*/NULL);
if (!L_0)
{
goto IL_0015;
}
}
{
NamingStrategy_tBB6F8138B49E9B2704F7B87BF9130378976B9B46 * L_1 = DefaultContractResolver_get_NamingStrategy_m541D750140B66BB0B36E32CEC1F984F1C2037FD4_inline(__this, /*hidden argument*/NULL);
String_t* L_2 = ___dictionaryKey0;
NullCheck(L_1);
String_t* L_3 = VirtFuncInvoker1< String_t*, String_t* >::Invoke(5 /* System.String Valve.Newtonsoft.Json.Serialization.NamingStrategy::GetDictionaryKey(System.String) */, L_1, L_2);
return L_3;
}
IL_0015:
{
String_t* L_4 = ___dictionaryKey0;
String_t* L_5 = VirtFuncInvoker1< String_t*, String_t* >::Invoke(21 /* System.String Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::ResolvePropertyName(System.String) */, __this, L_4);
return L_5;
}
}
// System.String Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::GetResolvedPropertyName(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DefaultContractResolver_GetResolvedPropertyName_m8E59EF77902671FCC5A9F504A7B7813E37A263ED (DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0 * __this, String_t* ___propertyName0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___propertyName0;
String_t* L_1 = VirtFuncInvoker1< String_t*, String_t* >::Invoke(21 /* System.String Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::ResolvePropertyName(System.String) */, __this, L_0);
return L_1;
}
}
// System.Void Valve.Newtonsoft.Json.Serialization.DefaultContractResolver::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultContractResolver__cctor_m370D154667E7C20C8AC9EDCAC7965C7E8D8C8432 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultContractResolver__cctor_m370D154667E7C20C8AC9EDCAC7965C7E8D8C8432_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0 * L_0 = (DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0 *)il2cpp_codegen_object_new(DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0_il2cpp_TypeInfo_var);
DefaultContractResolver__ctor_mF8FC2874A070CE97DD4C37BDC435B00D73D7A139(L_0, (bool)1, /*hidden argument*/NULL);
((DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0_StaticFields*)il2cpp_codegen_static_fields_for(DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0_il2cpp_TypeInfo_var))->set__instance_0(L_0);
JsonConverterU5BU5D_tFCEA4D4687200F08D8F41AFF4CDC7EE5E08AACAB* L_1 = (JsonConverterU5BU5D_tFCEA4D4687200F08D8F41AFF4CDC7EE5E08AACAB*)(JsonConverterU5BU5D_tFCEA4D4687200F08D8F41AFF4CDC7EE5E08AACAB*)SZArrayNew(JsonConverterU5BU5D_tFCEA4D4687200F08D8F41AFF4CDC7EE5E08AACAB_il2cpp_TypeInfo_var, (uint32_t)4);
JsonConverterU5BU5D_tFCEA4D4687200F08D8F41AFF4CDC7EE5E08AACAB* L_2 = L_1;
BinaryConverter_t03DC719B247B4C2889C9D314434AF1BC491EFF57 * L_3 = (BinaryConverter_t03DC719B247B4C2889C9D314434AF1BC491EFF57 *)il2cpp_codegen_object_new(BinaryConverter_t03DC719B247B4C2889C9D314434AF1BC491EFF57_il2cpp_TypeInfo_var);
BinaryConverter__ctor_mCD43BB3A53223FEAC58A23F49C70C862CB43BE01(L_3, /*hidden argument*/NULL);
NullCheck(L_2);
ArrayElementTypeCheck (L_2, L_3);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(0), (JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 *)L_3);
JsonConverterU5BU5D_tFCEA4D4687200F08D8F41AFF4CDC7EE5E08AACAB* L_4 = L_2;
KeyValuePairConverter_t623AF45824C80A791AEE4381012644750CEC9FF9 * L_5 = (KeyValuePairConverter_t623AF45824C80A791AEE4381012644750CEC9FF9 *)il2cpp_codegen_object_new(KeyValuePairConverter_t623AF45824C80A791AEE4381012644750CEC9FF9_il2cpp_TypeInfo_var);
KeyValuePairConverter__ctor_m1A4AA45F002B3B4A225F777B8611AB1BE53185DD(L_5, /*hidden argument*/NULL);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_5);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(1), (JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 *)L_5);
JsonConverterU5BU5D_tFCEA4D4687200F08D8F41AFF4CDC7EE5E08AACAB* L_6 = L_4;
BsonObjectIdConverter_t93B9311C1D401CC4ADD6C3FE3D8E8A17FD1B13BE * L_7 = (BsonObjectIdConverter_t93B9311C1D401CC4ADD6C3FE3D8E8A17FD1B13BE *)il2cpp_codegen_object_new(BsonObjectIdConverter_t93B9311C1D401CC4ADD6C3FE3D8E8A17FD1B13BE_il2cpp_TypeInfo_var);
BsonObjectIdConverter__ctor_mDD6BE18F035E021BB0D7E0FE54A15C41EE850533(L_7, /*hidden argument*/NULL);
NullCheck(L_6);
ArrayElementTypeCheck (L_6, L_7);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(2), (JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 *)L_7);
JsonConverterU5BU5D_tFCEA4D4687200F08D8F41AFF4CDC7EE5E08AACAB* L_8 = L_6;
RegexConverter_t732C85CCD56E0511E2154E9E284FD426FB467882 * L_9 = (RegexConverter_t732C85CCD56E0511E2154E9E284FD426FB467882 *)il2cpp_codegen_object_new(RegexConverter_t732C85CCD56E0511E2154E9E284FD426FB467882_il2cpp_TypeInfo_var);
RegexConverter__ctor_mE961EEBE8ACC799199EA173703318CBAF1EF1DAD(L_9, /*hidden argument*/NULL);
NullCheck(L_8);
ArrayElementTypeCheck (L_8, L_9);
(L_8)->SetAt(static_cast<il2cpp_array_size_t>(3), (JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 *)L_9);
((DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0_StaticFields*)il2cpp_codegen_static_fields_for(DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0_il2cpp_TypeInfo_var))->set_BuiltInConverters_1(L_8);
RuntimeObject * L_10 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(L_10, /*hidden argument*/NULL);
((DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0_StaticFields*)il2cpp_codegen_static_fields_for(DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0_il2cpp_TypeInfo_var))->set_TypeContractCacheLock_2(L_10);
DefaultContractResolverState_t8B0D63DB1C8B5BA14A03ADBEF0EA1141B8604DE6 * L_11 = (DefaultContractResolverState_t8B0D63DB1C8B5BA14A03ADBEF0EA1141B8604DE6 *)il2cpp_codegen_object_new(DefaultContractResolverState_t8B0D63DB1C8B5BA14A03ADBEF0EA1141B8604DE6_il2cpp_TypeInfo_var);
DefaultContractResolverState__ctor_mBB3FBAADAB4CF37F0B15FD1E1EF4921A35CA9884(L_11, /*hidden argument*/NULL);
((DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0_StaticFields*)il2cpp_codegen_static_fields_for(DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0_il2cpp_TypeInfo_var))->set__sharedState_3(L_11);
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 Valve.Newtonsoft.Json.Serialization.DefaultContractResolver_<>c::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__cctor_m0E78995AAE6C3483BEA822810036D3796B998A65 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CU3Ec__cctor_m0E78995AAE6C3483BEA822810036D3796B998A65_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A * L_0 = (U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A *)il2cpp_codegen_object_new(U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A_il2cpp_TypeInfo_var);
U3CU3Ec__ctor_m93A7BF139A196F224046DB26797AA9F21B705142(L_0, /*hidden argument*/NULL);
((U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A_il2cpp_TypeInfo_var))->set_U3CU3E9_0(L_0);
return;
}
}
// System.Void Valve.Newtonsoft.Json.Serialization.DefaultContractResolver_<>c::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_m93A7BF139A196F224046DB26797AA9F21B705142 (U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A * __this, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
return;
}
}
// System.Boolean Valve.Newtonsoft.Json.Serialization.DefaultContractResolver_<>c::<GetSerializableMembers>b__34_0(System.Reflection.MemberInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CU3Ec_U3CGetSerializableMembersU3Eb__34_0_m9C59E55EDD271B8A867BF70F6D9A67CAB9C2AFA2 (U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A * __this, MemberInfo_t * ___m0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CU3Ec_U3CGetSerializableMembersU3Eb__34_0_m9C59E55EDD271B8A867BF70F6D9A67CAB9C2AFA2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
MemberInfo_t * L_0 = ___m0;
IL2CPP_RUNTIME_CLASS_INIT(ReflectionUtils_t1845D588ADA15C351615E925042ECF790B622987_il2cpp_TypeInfo_var);
bool L_1 = ReflectionUtils_IsIndexedProperty_mFEC4C2ADE4F08B2A40DEBC96451EDDDDF0F29F62(L_0, /*hidden argument*/NULL);
return (bool)((((int32_t)L_1) == ((int32_t)0))? 1 : 0);
}
}
// System.Boolean Valve.Newtonsoft.Json.Serialization.DefaultContractResolver_<>c::<GetSerializableMembers>b__34_1(System.Reflection.MemberInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CU3Ec_U3CGetSerializableMembersU3Eb__34_1_m4A9125BE6F324A8A905FFAA5F1FF83395DFAF447 (U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A * __this, MemberInfo_t * ___m0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CU3Ec_U3CGetSerializableMembersU3Eb__34_1_m4A9125BE6F324A8A905FFAA5F1FF83395DFAF447_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
MemberInfo_t * L_0 = ___m0;
IL2CPP_RUNTIME_CLASS_INIT(ReflectionUtils_t1845D588ADA15C351615E925042ECF790B622987_il2cpp_TypeInfo_var);
bool L_1 = ReflectionUtils_IsIndexedProperty_mFEC4C2ADE4F08B2A40DEBC96451EDDDDF0F29F62(L_0, /*hidden argument*/NULL);
return (bool)((((int32_t)L_1) == ((int32_t)0))? 1 : 0);
}
}
// System.Collections.Generic.IEnumerable`1<System.Reflection.MemberInfo> Valve.Newtonsoft.Json.Serialization.DefaultContractResolver_<>c::<GetExtensionDataMemberForType>b__37_0(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CU3Ec_U3CGetExtensionDataMemberForTypeU3Eb__37_0_mCDBAEA047930E5FFA8766B0FEE0C692AA6BDCB9E (U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A * __this, Type_t * ___baseType0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CU3Ec_U3CGetExtensionDataMemberForTypeU3Eb__37_0_mCDBAEA047930E5FFA8766B0FEE0C692AA6BDCB9E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
List_1_t610995BF9B0DCC99DF41C7D0D54AA44EF8552AE9 * L_0 = (List_1_t610995BF9B0DCC99DF41C7D0D54AA44EF8552AE9 *)il2cpp_codegen_object_new(List_1_t610995BF9B0DCC99DF41C7D0D54AA44EF8552AE9_il2cpp_TypeInfo_var);
List_1__ctor_mFA8EA6FA453663BACE3484A2991920D2BFC5BFA5(L_0, /*hidden argument*/List_1__ctor_mFA8EA6FA453663BACE3484A2991920D2BFC5BFA5_RuntimeMethod_var);
List_1_t610995BF9B0DCC99DF41C7D0D54AA44EF8552AE9 * L_1 = L_0;
Type_t * L_2 = ___baseType0;
NullCheck(L_2);
PropertyInfoU5BU5D_tAD8E99B12FF99CA4F2EA37B612DE68E112B4CF7E* L_3 = VirtFuncInvoker1< PropertyInfoU5BU5D_tAD8E99B12FF99CA4F2EA37B612DE68E112B4CF7E*, int32_t >::Invoke(59 /* System.Reflection.PropertyInfo[] System.Type::GetProperties(System.Reflection.BindingFlags) */, L_2, ((int32_t)54));
CollectionUtils_AddRange_TisMemberInfo_t_m4ED77C07EA82037D4B1BDF97ECD91F05B6BD05EB(L_1, (RuntimeObject*)(RuntimeObject*)L_3, /*hidden argument*/CollectionUtils_AddRange_TisMemberInfo_t_m4ED77C07EA82037D4B1BDF97ECD91F05B6BD05EB_RuntimeMethod_var);
List_1_t610995BF9B0DCC99DF41C7D0D54AA44EF8552AE9 * L_4 = L_1;
Type_t * L_5 = ___baseType0;
NullCheck(L_5);
FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE* L_6 = VirtFuncInvoker1< FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE*, int32_t >::Invoke(47 /* System.Reflection.FieldInfo[] System.Type::GetFields(System.Reflection.BindingFlags) */, L_5, ((int32_t)54));
CollectionUtils_AddRange_TisMemberInfo_t_m4ED77C07EA82037D4B1BDF97ECD91F05B6BD05EB(L_4, (RuntimeObject*)(RuntimeObject*)L_6, /*hidden argument*/CollectionUtils_AddRange_TisMemberInfo_t_m4ED77C07EA82037D4B1BDF97ECD91F05B6BD05EB_RuntimeMethod_var);
return L_4;
}
}
// System.Boolean Valve.Newtonsoft.Json.Serialization.DefaultContractResolver_<>c::<GetExtensionDataMemberForType>b__37_1(System.Reflection.MemberInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CU3Ec_U3CGetExtensionDataMemberForTypeU3Eb__37_1_m085CC1DCE095C1BB69D1EEFE71CD24595D7FDFF9 (U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A * __this, MemberInfo_t * ___m0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CU3Ec_U3CGetExtensionDataMemberForTypeU3Eb__37_1_m085CC1DCE095C1BB69D1EEFE71CD24595D7FDFF9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
Type_t * V_1 = NULL;
Type_t * V_2 = NULL;
{
MemberInfo_t * L_0 = ___m0;
int32_t L_1 = TypeExtensions_MemberType_mF6FAE7764FE8D872C9632AD3F93152D623900232(L_0, /*hidden argument*/NULL);
V_0 = L_1;
int32_t L_2 = V_0;
if ((((int32_t)L_2) == ((int32_t)((int32_t)16))))
{
goto IL_0012;
}
}
{
int32_t L_3 = V_0;
if ((((int32_t)L_3) == ((int32_t)4)))
{
goto IL_0012;
}
}
{
return (bool)0;
}
IL_0012:
{
MemberInfo_t * L_4 = ___m0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_5 = { reinterpret_cast<intptr_t> (JsonExtensionDataAttribute_tC858B08E1ACE700629982E390F2FDA7A0580C208_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_6 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_5, /*hidden argument*/NULL);
NullCheck(L_4);
bool L_7 = VirtFuncInvoker2< bool, Type_t *, bool >::Invoke(13 /* System.Boolean System.Reflection.MemberInfo::IsDefined(System.Type,System.Boolean) */, L_4, L_6, (bool)0);
if (L_7)
{
goto IL_0027;
}
}
{
return (bool)0;
}
IL_0027:
{
MemberInfo_t * L_8 = ___m0;
IL2CPP_RUNTIME_CLASS_INIT(ReflectionUtils_t1845D588ADA15C351615E925042ECF790B622987_il2cpp_TypeInfo_var);
bool L_9 = ReflectionUtils_CanReadMemberValue_mE1734CDBBABE8BACAD75399CB892851D14AA71E9(L_8, (bool)1, /*hidden argument*/NULL);
if (L_9)
{
goto IL_0056;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_10 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
MemberInfo_t * L_11 = ___m0;
NullCheck(L_11);
Type_t * L_12 = VirtFuncInvoker0< Type_t * >::Invoke(9 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_11);
IL2CPP_RUNTIME_CLASS_INIT(DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0_il2cpp_TypeInfo_var);
String_t* L_13 = DefaultContractResolver_GetClrTypeFullName_m33C4566EC0DE01AFF07A3EB76BEB5E261EF94098(L_12, /*hidden argument*/NULL);
MemberInfo_t * L_14 = ___m0;
NullCheck(L_14);
String_t* L_15 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_14);
String_t* L_16 = StringUtils_FormatWith_m0847578DA1FD34776DD9C2AB8A4BA694D05A8C6D(_stringLiteralC7ED36DC0F774746DAA593B5BE527F4998B17913, L_10, L_13, L_15, /*hidden argument*/NULL);
JsonException_tB1AABB3C8AE18D781A8A9A14CB03AF7AFEA33928 * L_17 = (JsonException_tB1AABB3C8AE18D781A8A9A14CB03AF7AFEA33928 *)il2cpp_codegen_object_new(JsonException_tB1AABB3C8AE18D781A8A9A14CB03AF7AFEA33928_il2cpp_TypeInfo_var);
JsonException__ctor_m6AA74CB38DE6808C894C51C26CA5FB64B861204A(L_17, L_16, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, U3CU3Ec_U3CGetExtensionDataMemberForTypeU3Eb__37_1_m085CC1DCE095C1BB69D1EEFE71CD24595D7FDFF9_RuntimeMethod_var);
}
IL_0056:
{
MemberInfo_t * L_18 = ___m0;
IL2CPP_RUNTIME_CLASS_INIT(ReflectionUtils_t1845D588ADA15C351615E925042ECF790B622987_il2cpp_TypeInfo_var);
Type_t * L_19 = ReflectionUtils_GetMemberUnderlyingType_m22BCFA3BF7FDF789A7801EB57F09CFF695A5A1AE(L_18, /*hidden argument*/NULL);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_20 = { reinterpret_cast<intptr_t> (IDictionary_2_t422C090F714C36DDE0089AF96A98CBE6FC11EA06_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_21 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_20, /*hidden argument*/NULL);
bool L_22 = ReflectionUtils_ImplementsGenericDefinition_m58DB3D664FDF436112B4EE8A4D653B53E01773B1(L_19, L_21, (Type_t **)(&V_1), /*hidden argument*/NULL);
if (!L_22)
{
goto IL_00a5;
}
}
{
Type_t * L_23 = V_1;
NullCheck(L_23);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_24 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(107 /* System.Type[] System.Type::GetGenericArguments() */, L_23);
NullCheck(L_24);
int32_t L_25 = 0;
Type_t * L_26 = (L_24)->GetAt(static_cast<il2cpp_array_size_t>(L_25));
Type_t * L_27 = V_1;
NullCheck(L_27);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_28 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(107 /* System.Type[] System.Type::GetGenericArguments() */, L_27);
NullCheck(L_28);
int32_t L_29 = 1;
Type_t * L_30 = (L_28)->GetAt(static_cast<il2cpp_array_size_t>(L_29));
V_2 = L_30;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_31 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_32 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_31, /*hidden argument*/NULL);
NullCheck(L_26);
bool L_33 = VirtFuncInvoker1< bool, Type_t * >::Invoke(118 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_26, L_32);
if (!L_33)
{
goto IL_00a5;
}
}
{
Type_t * L_34 = V_2;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_35 = { reinterpret_cast<intptr_t> (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_36 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_35, /*hidden argument*/NULL);
NullCheck(L_34);
bool L_37 = VirtFuncInvoker1< bool, Type_t * >::Invoke(118 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_34, L_36);
if (!L_37)
{
goto IL_00a5;
}
}
{
return (bool)1;
}
IL_00a5:
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_38 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
MemberInfo_t * L_39 = ___m0;
NullCheck(L_39);
Type_t * L_40 = VirtFuncInvoker0< Type_t * >::Invoke(9 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_39);
IL2CPP_RUNTIME_CLASS_INIT(DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0_il2cpp_TypeInfo_var);
String_t* L_41 = DefaultContractResolver_GetClrTypeFullName_m33C4566EC0DE01AFF07A3EB76BEB5E261EF94098(L_40, /*hidden argument*/NULL);
MemberInfo_t * L_42 = ___m0;
NullCheck(L_42);
String_t* L_43 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_42);
String_t* L_44 = StringUtils_FormatWith_m0847578DA1FD34776DD9C2AB8A4BA694D05A8C6D(_stringLiteralA135454A21FAF2B6651B797B9B42A6786FFD6EC5, L_38, L_41, L_43, /*hidden argument*/NULL);
JsonException_tB1AABB3C8AE18D781A8A9A14CB03AF7AFEA33928 * L_45 = (JsonException_tB1AABB3C8AE18D781A8A9A14CB03AF7AFEA33928 *)il2cpp_codegen_object_new(JsonException_tB1AABB3C8AE18D781A8A9A14CB03AF7AFEA33928_il2cpp_TypeInfo_var);
JsonException__ctor_m6AA74CB38DE6808C894C51C26CA5FB64B861204A(L_45, L_44, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_45, U3CU3Ec_U3CGetExtensionDataMemberForTypeU3Eb__37_1_m085CC1DCE095C1BB69D1EEFE71CD24595D7FDFF9_RuntimeMethod_var);
}
}
// System.Boolean Valve.Newtonsoft.Json.Serialization.DefaultContractResolver_<>c::<GetAttributeConstructor>b__40_0(System.Reflection.ConstructorInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CU3Ec_U3CGetAttributeConstructorU3Eb__40_0_m2CC22F0D165CB97F54071A1A727AB8368C14AB9B (U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A * __this, ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * ___c0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CU3Ec_U3CGetAttributeConstructorU3Eb__40_0_m2CC22F0D165CB97F54071A1A727AB8368C14AB9B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * L_0 = ___c0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_1 = { reinterpret_cast<intptr_t> (JsonConstructorAttribute_t885D4CDBC66D58EF3A2BEBFD7B8045522946C096_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_2 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_1, /*hidden argument*/NULL);
NullCheck(L_0);
bool L_3 = VirtFuncInvoker2< bool, Type_t *, bool >::Invoke(13 /* System.Boolean System.Reflection.MemberInfo::IsDefined(System.Type,System.Boolean) */, L_0, L_2, (bool)1);
return L_3;
}
}
// System.Int32 Valve.Newtonsoft.Json.Serialization.DefaultContractResolver_<>c::<CreateProperties>b__64_0(Valve.Newtonsoft.Json.Serialization.JsonProperty)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t U3CU3Ec_U3CCreatePropertiesU3Eb__64_0_m7E9A9FA2C6D93441376E3117CC7B115D3430E3EB (U3CU3Ec_tEB335B6E1418358E2B19B3317EB962C7722FB47A * __this, JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * ___p0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CU3Ec_U3CCreatePropertiesU3Eb__64_0_m7E9A9FA2C6D93441376E3117CC7B115D3430E3EB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB V_0;
memset((&V_0), 0, sizeof(V_0));
{
JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * L_0 = ___p0;
NullCheck(L_0);
Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB L_1 = JsonProperty_get_Order_m2CB3D4BF263582BA6293D5C77A28F452C21D5FE1_inline(L_0, /*hidden argument*/NULL);
V_0 = L_1;
bool L_2 = Nullable_1_get_HasValue_mB664E2C41CADA8413EF8842E6601B8C696A7CE15_inline((Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB *)(&V_0), /*hidden argument*/Nullable_1_get_HasValue_mB664E2C41CADA8413EF8842E6601B8C696A7CE15_RuntimeMethod_var);
if (L_2)
{
goto IL_0012;
}
}
{
return (-1);
}
IL_0012:
{
int32_t L_3 = Nullable_1_GetValueOrDefault_mE89BB8F302DF31EE202251F4746859285860B6B6_inline((Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB *)(&V_0), /*hidden argument*/Nullable_1_GetValueOrDefault_mE89BB8F302DF31EE202251F4746859285860B6B6_RuntimeMethod_var);
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
// System.Void Valve.Newtonsoft.Json.Serialization.DefaultContractResolver_<>c__DisplayClass38_0::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass38_0__ctor_m0053D7D584A80A955B8788CFD642EB173CC7C609 (U3CU3Ec__DisplayClass38_0_t31ED35E7ECFD78ECE1228AF29488F148585F4667 * __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 Valve.Newtonsoft.Json.Serialization.DefaultContractResolver_<>c__DisplayClass38_1::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass38_1__ctor_mC0D60D876F0CE2742DB3497AA5A15B8DB2FFD553 (U3CU3Ec__DisplayClass38_1_tEB927264D5D83E106F29B33B1F933603E793D80E * __this, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void Valve.Newtonsoft.Json.Serialization.DefaultContractResolver_<>c__DisplayClass38_1::<SetExtensionDataDelegates>b__0(System.Object,System.String,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass38_1_U3CSetExtensionDataDelegatesU3Eb__0_m5DA3F48C3AE16C2C14020B331E7240788CD46CB1 (U3CU3Ec__DisplayClass38_1_tEB927264D5D83E106F29B33B1F933603E793D80E * __this, RuntimeObject * ___o0, String_t* ___key1, RuntimeObject * ___value2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CU3Ec__DisplayClass38_1_U3CSetExtensionDataDelegatesU3Eb__0_m5DA3F48C3AE16C2C14020B331E7240788CD46CB1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
{
U3CU3Ec__DisplayClass38_0_t31ED35E7ECFD78ECE1228AF29488F148585F4667 * L_0 = __this->get_CSU24U3CU3E8__locals1_3();
NullCheck(L_0);
Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 * L_1 = L_0->get_getExtensionDataDictionary_0();
RuntimeObject * L_2 = ___o0;
NullCheck(L_1);
RuntimeObject * L_3 = Func_2_Invoke_m552C133A8966B9ED91540130ACA9BD367212EED4(L_1, L_2, /*hidden argument*/Func_2_Invoke_m552C133A8966B9ED91540130ACA9BD367212EED4_RuntimeMethod_var);
V_0 = L_3;
RuntimeObject * L_4 = V_0;
if (L_4)
{
goto IL_005b;
}
}
{
Action_2_t0DB6FD6F515527EAB552B690A291778C6F00D48C * L_5 = __this->get_setExtensionDataDictionary_0();
if (L_5)
{
goto IL_0042;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_6 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
U3CU3Ec__DisplayClass38_0_t31ED35E7ECFD78ECE1228AF29488F148585F4667 * L_7 = __this->get_CSU24U3CU3E8__locals1_3();
NullCheck(L_7);
MemberInfo_t * L_8 = L_7->get_member_1();
NullCheck(L_8);
String_t* L_9 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_8);
String_t* L_10 = StringUtils_FormatWith_mA244260995FC801D82F22EC897F3F8BEB8649583(_stringLiteral18478BEDB130F28141C1D6D6CEA56CD52F4AAE08, L_6, L_9, /*hidden argument*/NULL);
JsonSerializationException_t041C510BA8DF91FD223402E73A4E55EC1B12E902 * L_11 = (JsonSerializationException_t041C510BA8DF91FD223402E73A4E55EC1B12E902 *)il2cpp_codegen_object_new(JsonSerializationException_t041C510BA8DF91FD223402E73A4E55EC1B12E902_il2cpp_TypeInfo_var);
JsonSerializationException__ctor_mEB80B2C2AEA10E8D417D22CF77D40C10DBF51795(L_11, L_10, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, U3CU3Ec__DisplayClass38_1_U3CSetExtensionDataDelegatesU3Eb__0_m5DA3F48C3AE16C2C14020B331E7240788CD46CB1_RuntimeMethod_var);
}
IL_0042:
{
Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 * L_12 = __this->get_createExtensionDataDictionary_1();
NullCheck(L_12);
RuntimeObject * L_13 = Func_1_Invoke_m33E1702C6A8DBC8D2A39F4E9A1F5B14BEFAD9597(L_12, /*hidden argument*/Func_1_Invoke_m33E1702C6A8DBC8D2A39F4E9A1F5B14BEFAD9597_RuntimeMethod_var);
V_0 = L_13;
Action_2_t0DB6FD6F515527EAB552B690A291778C6F00D48C * L_14 = __this->get_setExtensionDataDictionary_0();
RuntimeObject * L_15 = ___o0;
RuntimeObject * L_16 = V_0;
NullCheck(L_14);
Action_2_Invoke_m1738FFAE74BE5E599FD42520FA2BEF69D1AC4709(L_14, L_15, L_16, /*hidden argument*/Action_2_Invoke_m1738FFAE74BE5E599FD42520FA2BEF69D1AC4709_RuntimeMethod_var);
}
IL_005b:
{
MethodCall_2_t56986CA125FFF5F08B7842782AF0C0E8499096EC * L_17 = __this->get_setExtensionDataDictionaryValue_2();
RuntimeObject * L_18 = V_0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_19 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_20 = L_19;
String_t* L_21 = ___key1;
NullCheck(L_20);
ArrayElementTypeCheck (L_20, L_21);
(L_20)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_21);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_22 = L_20;
RuntimeObject * L_23 = ___value2;
NullCheck(L_22);
ArrayElementTypeCheck (L_22, L_23);
(L_22)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_23);
NullCheck(L_17);
MethodCall_2_Invoke_m614565DD357D42A60D8A80E7B1292EF287D88034(L_17, L_18, L_22, /*hidden argument*/MethodCall_2_Invoke_m614565DD357D42A60D8A80E7B1292EF287D88034_RuntimeMethod_var);
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 Valve.Newtonsoft.Json.Serialization.DefaultContractResolver_<>c__DisplayClass38_2::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass38_2__ctor_m9CEF89720ED8EACAAB47A775F3FD54C599F16846 (U3CU3Ec__DisplayClass38_2_t8AE307029E0A48708782194185E7E43CE1EAAD60 * __this, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
return;
}
}
// System.Collections.Generic.IEnumerable`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>> Valve.Newtonsoft.Json.Serialization.DefaultContractResolver_<>c__DisplayClass38_2::<SetExtensionDataDelegates>b__1(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CU3Ec__DisplayClass38_2_U3CSetExtensionDataDelegatesU3Eb__1_mF1E7C7DE90036720146209104B05B87A317255B8 (U3CU3Ec__DisplayClass38_2_t8AE307029E0A48708782194185E7E43CE1EAAD60 * __this, RuntimeObject * ___o0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CU3Ec__DisplayClass38_2_U3CSetExtensionDataDelegatesU3Eb__1_mF1E7C7DE90036720146209104B05B87A317255B8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
{
U3CU3Ec__DisplayClass38_0_t31ED35E7ECFD78ECE1228AF29488F148585F4667 * L_0 = __this->get_CSU24U3CU3E8__locals2_1();
NullCheck(L_0);
Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 * L_1 = L_0->get_getExtensionDataDictionary_0();
RuntimeObject * L_2 = ___o0;
NullCheck(L_1);
RuntimeObject * L_3 = Func_2_Invoke_m552C133A8966B9ED91540130ACA9BD367212EED4(L_1, L_2, /*hidden argument*/Func_2_Invoke_m552C133A8966B9ED91540130ACA9BD367212EED4_RuntimeMethod_var);
V_0 = L_3;
RuntimeObject * L_4 = V_0;
if (L_4)
{
goto IL_0017;
}
}
{
return (RuntimeObject*)NULL;
}
IL_0017:
{
ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 * L_5 = __this->get_createEnumerableWrapper_0();
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_6 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_7 = L_6;
RuntimeObject * L_8 = V_0;
NullCheck(L_7);
ArrayElementTypeCheck (L_7, L_8);
(L_7)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_8);
NullCheck(L_5);
RuntimeObject * L_9 = ObjectConstructor_1_Invoke_m76CEC2C9D43866532AC0B3DD9666B693A0C2FA70(L_5, L_7, /*hidden argument*/ObjectConstructor_1_Invoke_m76CEC2C9D43866532AC0B3DD9666B693A0C2FA70_RuntimeMethod_var);
return ((RuntimeObject*)Castclass((RuntimeObject*)L_9, IEnumerable_1_t00C11E28587644E33CB7F154833508D63BFAC5B2_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 Valve.Newtonsoft.Json.Serialization.DefaultContractResolver_<>c__DisplayClass52_0::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass52_0__ctor_mB9E0FD4F85253DDEF7B5406C30599E3FC15885FE (U3CU3Ec__DisplayClass52_0_t5662E89E4E0071A8350BC73F90FAA92457EC2F91 * __this, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
return;
}
}
// System.String Valve.Newtonsoft.Json.Serialization.DefaultContractResolver_<>c__DisplayClass52_0::<CreateDictionaryContract>b__0(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* U3CU3Ec__DisplayClass52_0_U3CCreateDictionaryContractU3Eb__0_m7B05BD5E9413AB87835FD4CDCC21C2F4B507FB94 (U3CU3Ec__DisplayClass52_0_t5662E89E4E0071A8350BC73F90FAA92457EC2F91 * __this, String_t* ___s0, const RuntimeMethod* method)
{
{
NamingStrategy_tBB6F8138B49E9B2704F7B87BF9130378976B9B46 * L_0 = __this->get_namingStrategy_0();
String_t* L_1 = ___s0;
NullCheck(L_0);
String_t* L_2 = VirtFuncInvoker1< String_t*, String_t* >::Invoke(5 /* System.String Valve.Newtonsoft.Json.Serialization.NamingStrategy::GetDictionaryKey(System.String) */, L_0, L_1);
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.Void Valve.Newtonsoft.Json.Serialization.DefaultContractResolver_<>c__DisplayClass68_0::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass68_0__ctor_mCB5870E5A11CE83ED10457825CBB519F065B1E26 (U3CU3Ec__DisplayClass68_0_t1E454C6A98ED08013AAE420DD137F8DC23C918B3 * __this, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
return;
}
}
// System.Boolean Valve.Newtonsoft.Json.Serialization.DefaultContractResolver_<>c__DisplayClass68_0::<CreateShouldSerializeTest>b__0(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CU3Ec__DisplayClass68_0_U3CCreateShouldSerializeTestU3Eb__0_m7501DA378EF5FC5C1D9B74C089A764FC1FFA2AFE (U3CU3Ec__DisplayClass68_0_t1E454C6A98ED08013AAE420DD137F8DC23C918B3 * __this, RuntimeObject * ___o0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CU3Ec__DisplayClass68_0_U3CCreateShouldSerializeTestU3Eb__0_m7501DA378EF5FC5C1D9B74C089A764FC1FFA2AFE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
MethodCall_2_t56986CA125FFF5F08B7842782AF0C0E8499096EC * L_0 = __this->get_shouldSerializeCall_0();
RuntimeObject * L_1 = ___o0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)0);
NullCheck(L_0);
RuntimeObject * L_3 = MethodCall_2_Invoke_m614565DD357D42A60D8A80E7B1292EF287D88034(L_0, L_1, L_2, /*hidden argument*/MethodCall_2_Invoke_m614565DD357D42A60D8A80E7B1292EF287D88034_RuntimeMethod_var);
return ((*(bool*)((bool*)UnBox(L_3, Boolean_tB53F6830F670160873277339AA58F15CAED4399C_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 Valve.Newtonsoft.Json.Serialization.DefaultContractResolver_<>c__DisplayClass69_0::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass69_0__ctor_mAD41CD2C541555A97FBE04E5E807700D41A3CC24 (U3CU3Ec__DisplayClass69_0_tF21BC3EDD90BFA18331A484ECF156E30EF474FCA * __this, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
return;
}
}
// System.Boolean Valve.Newtonsoft.Json.Serialization.DefaultContractResolver_<>c__DisplayClass69_0::<SetIsSpecifiedActions>b__0(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CU3Ec__DisplayClass69_0_U3CSetIsSpecifiedActionsU3Eb__0_mCAB0A9EA227F93C3D1BD1EA1DEA4A41752F203F9 (U3CU3Ec__DisplayClass69_0_tF21BC3EDD90BFA18331A484ECF156E30EF474FCA * __this, RuntimeObject * ___o0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CU3Ec__DisplayClass69_0_U3CSetIsSpecifiedActionsU3Eb__0_mCAB0A9EA227F93C3D1BD1EA1DEA4A41752F203F9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 * L_0 = __this->get_specifiedPropertyGet_0();
RuntimeObject * L_1 = ___o0;
NullCheck(L_0);
RuntimeObject * L_2 = Func_2_Invoke_m552C133A8966B9ED91540130ACA9BD367212EED4(L_0, L_1, /*hidden argument*/Func_2_Invoke_m552C133A8966B9ED91540130ACA9BD367212EED4_RuntimeMethod_var);
return ((*(bool*)((bool*)UnBox(L_2, Boolean_tB53F6830F670160873277339AA58F15CAED4399C_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 Valve.Newtonsoft.Json.Serialization.DefaultContractResolverState::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultContractResolverState__ctor_mBB3FBAADAB4CF37F0B15FD1E1EF4921A35CA9884 (DefaultContractResolverState_t8B0D63DB1C8B5BA14A03ADBEF0EA1141B8604DE6 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultContractResolverState__ctor_mBB3FBAADAB4CF37F0B15FD1E1EF4921A35CA9884_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
PropertyNameTable_t09D6FC2871D681080545544521201A5726C6610D * L_0 = (PropertyNameTable_t09D6FC2871D681080545544521201A5726C6610D *)il2cpp_codegen_object_new(PropertyNameTable_t09D6FC2871D681080545544521201A5726C6610D_il2cpp_TypeInfo_var);
PropertyNameTable__ctor_m95B2B5A571D81E61D83D90D5AE219B08302B52D4(L_0, /*hidden argument*/NULL);
__this->set_NameTable_1(L_0);
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
// Valve.Newtonsoft.Json.Utilities.BidirectionalDictionary`2<System.String,System.Object> Valve.Newtonsoft.Json.Serialization.DefaultReferenceResolver::GetMappings(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BidirectionalDictionary_2_t099435761F49B07DBF2BBA49D1D2D6865002A8D5 * DefaultReferenceResolver_GetMappings_m3D4025A129FB759AE3DCF61DD6A3F530D26EC8EF (DefaultReferenceResolver_t1313CA0D668FADF15BF2ACA61C526B6FED83C977 * __this, RuntimeObject * ___context0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultReferenceResolver_GetMappings_m3D4025A129FB759AE3DCF61DD6A3F530D26EC8EF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
JsonSerializerInternalBase_t10636B4A3D430A7F6597EF873C98E30894ACF1F7 * V_0 = NULL;
{
RuntimeObject * L_0 = ___context0;
if (!((JsonSerializerInternalBase_t10636B4A3D430A7F6597EF873C98E30894ACF1F7 *)IsInstClass((RuntimeObject*)L_0, JsonSerializerInternalBase_t10636B4A3D430A7F6597EF873C98E30894ACF1F7_il2cpp_TypeInfo_var)))
{
goto IL_0011;
}
}
{
RuntimeObject * L_1 = ___context0;
V_0 = ((JsonSerializerInternalBase_t10636B4A3D430A7F6597EF873C98E30894ACF1F7 *)CastclassClass((RuntimeObject*)L_1, JsonSerializerInternalBase_t10636B4A3D430A7F6597EF873C98E30894ACF1F7_il2cpp_TypeInfo_var));
goto IL_0032;
}
IL_0011:
{
RuntimeObject * L_2 = ___context0;
if (!((JsonSerializerProxy_t087EA4189F71D7BC8479FB15347611106FC05276 *)IsInstClass((RuntimeObject*)L_2, JsonSerializerProxy_t087EA4189F71D7BC8479FB15347611106FC05276_il2cpp_TypeInfo_var)))
{
goto IL_0027;
}
}
{
RuntimeObject * L_3 = ___context0;
NullCheck(((JsonSerializerProxy_t087EA4189F71D7BC8479FB15347611106FC05276 *)CastclassClass((RuntimeObject*)L_3, JsonSerializerProxy_t087EA4189F71D7BC8479FB15347611106FC05276_il2cpp_TypeInfo_var)));
JsonSerializerInternalBase_t10636B4A3D430A7F6597EF873C98E30894ACF1F7 * L_4 = JsonSerializerProxy_GetInternalSerializer_mDC3D70E23AAE5DAD7CBD097B110BA7449884E033(((JsonSerializerProxy_t087EA4189F71D7BC8479FB15347611106FC05276 *)CastclassClass((RuntimeObject*)L_3, JsonSerializerProxy_t087EA4189F71D7BC8479FB15347611106FC05276_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
V_0 = L_4;
goto IL_0032;
}
IL_0027:
{
JsonException_tB1AABB3C8AE18D781A8A9A14CB03AF7AFEA33928 * L_5 = (JsonException_tB1AABB3C8AE18D781A8A9A14CB03AF7AFEA33928 *)il2cpp_codegen_object_new(JsonException_tB1AABB3C8AE18D781A8A9A14CB03AF7AFEA33928_il2cpp_TypeInfo_var);
JsonException__ctor_m6AA74CB38DE6808C894C51C26CA5FB64B861204A(L_5, _stringLiteral85313A75E9F1167080FBA00A88B7720140E4EE71, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, DefaultReferenceResolver_GetMappings_m3D4025A129FB759AE3DCF61DD6A3F530D26EC8EF_RuntimeMethod_var);
}
IL_0032:
{
JsonSerializerInternalBase_t10636B4A3D430A7F6597EF873C98E30894ACF1F7 * L_6 = V_0;
NullCheck(L_6);
BidirectionalDictionary_2_t099435761F49B07DBF2BBA49D1D2D6865002A8D5 * L_7 = JsonSerializerInternalBase_get_DefaultReferenceMappings_m57542B936852961AC5382117DEAAB01446F85318(L_6, /*hidden argument*/NULL);
return L_7;
}
}
// System.Object Valve.Newtonsoft.Json.Serialization.DefaultReferenceResolver::ResolveReference(System.Object,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * DefaultReferenceResolver_ResolveReference_mC159650AC6669BE783C6C57A78BC8106FCBC3D41 (DefaultReferenceResolver_t1313CA0D668FADF15BF2ACA61C526B6FED83C977 * __this, RuntimeObject * ___context0, String_t* ___reference1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultReferenceResolver_ResolveReference_mC159650AC6669BE783C6C57A78BC8106FCBC3D41_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
{
RuntimeObject * L_0 = ___context0;
BidirectionalDictionary_2_t099435761F49B07DBF2BBA49D1D2D6865002A8D5 * L_1 = DefaultReferenceResolver_GetMappings_m3D4025A129FB759AE3DCF61DD6A3F530D26EC8EF(__this, L_0, /*hidden argument*/NULL);
String_t* L_2 = ___reference1;
NullCheck(L_1);
BidirectionalDictionary_2_TryGetByFirst_mE8659F15AC48DDC478256BAD844F1D8CFA9BCF91(L_1, L_2, (RuntimeObject **)(&V_0), /*hidden argument*/BidirectionalDictionary_2_TryGetByFirst_mE8659F15AC48DDC478256BAD844F1D8CFA9BCF91_RuntimeMethod_var);
RuntimeObject * L_3 = V_0;
return L_3;
}
}
// System.String Valve.Newtonsoft.Json.Serialization.DefaultReferenceResolver::GetReference(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DefaultReferenceResolver_GetReference_mCF7865A6DC52F696EF316B566191452C32BF63EE (DefaultReferenceResolver_t1313CA0D668FADF15BF2ACA61C526B6FED83C977 * __this, RuntimeObject * ___context0, RuntimeObject * ___value1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultReferenceResolver_GetReference_mCF7865A6DC52F696EF316B566191452C32BF63EE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
BidirectionalDictionary_2_t099435761F49B07DBF2BBA49D1D2D6865002A8D5 * V_0 = NULL;
String_t* V_1 = NULL;
{
RuntimeObject * L_0 = ___context0;
BidirectionalDictionary_2_t099435761F49B07DBF2BBA49D1D2D6865002A8D5 * L_1 = DefaultReferenceResolver_GetMappings_m3D4025A129FB759AE3DCF61DD6A3F530D26EC8EF(__this, L_0, /*hidden argument*/NULL);
V_0 = L_1;
BidirectionalDictionary_2_t099435761F49B07DBF2BBA49D1D2D6865002A8D5 * L_2 = V_0;
RuntimeObject * L_3 = ___value1;
NullCheck(L_2);
bool L_4 = BidirectionalDictionary_2_TryGetBySecond_m336D3CFE81BE67FFD3E78EB62766A2AF622E7A7A(L_2, L_3, (String_t**)(&V_1), /*hidden argument*/BidirectionalDictionary_2_TryGetBySecond_m336D3CFE81BE67FFD3E78EB62766A2AF622E7A7A_RuntimeMethod_var);
if (L_4)
{
goto IL_003a;
}
}
{
int32_t L_5 = __this->get__referenceCount_0();
__this->set__referenceCount_0(((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1)));
int32_t* L_6 = __this->get_address_of__referenceCount_0();
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_7 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
String_t* L_8 = Int32_ToString_m1D0AF82BDAB5D4710527DD3FEFA6F01246D128A5((int32_t*)L_6, L_7, /*hidden argument*/NULL);
V_1 = L_8;
BidirectionalDictionary_2_t099435761F49B07DBF2BBA49D1D2D6865002A8D5 * L_9 = V_0;
String_t* L_10 = V_1;
RuntimeObject * L_11 = ___value1;
NullCheck(L_9);
BidirectionalDictionary_2_Set_m6D40E52AC98F507DEE615B3B7D92DD5152BB1FC5(L_9, L_10, L_11, /*hidden argument*/BidirectionalDictionary_2_Set_m6D40E52AC98F507DEE615B3B7D92DD5152BB1FC5_RuntimeMethod_var);
}
IL_003a:
{
String_t* L_12 = V_1;
return L_12;
}
}
// System.Void Valve.Newtonsoft.Json.Serialization.DefaultReferenceResolver::AddReference(System.Object,System.String,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultReferenceResolver_AddReference_mC5497DD6AB84809E9990074E928321F3DFD8542C (DefaultReferenceResolver_t1313CA0D668FADF15BF2ACA61C526B6FED83C977 * __this, RuntimeObject * ___context0, String_t* ___reference1, RuntimeObject * ___value2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultReferenceResolver_AddReference_mC5497DD6AB84809E9990074E928321F3DFD8542C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___context0;
BidirectionalDictionary_2_t099435761F49B07DBF2BBA49D1D2D6865002A8D5 * L_1 = DefaultReferenceResolver_GetMappings_m3D4025A129FB759AE3DCF61DD6A3F530D26EC8EF(__this, L_0, /*hidden argument*/NULL);
String_t* L_2 = ___reference1;
RuntimeObject * L_3 = ___value2;
NullCheck(L_1);
BidirectionalDictionary_2_Set_m6D40E52AC98F507DEE615B3B7D92DD5152BB1FC5(L_1, L_2, L_3, /*hidden argument*/BidirectionalDictionary_2_Set_m6D40E52AC98F507DEE615B3B7D92DD5152BB1FC5_RuntimeMethod_var);
return;
}
}
// System.Boolean Valve.Newtonsoft.Json.Serialization.DefaultReferenceResolver::IsReferenced(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DefaultReferenceResolver_IsReferenced_mFC422C3176041085760100251C4545E99F035C79 (DefaultReferenceResolver_t1313CA0D668FADF15BF2ACA61C526B6FED83C977 * __this, RuntimeObject * ___context0, RuntimeObject * ___value1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultReferenceResolver_IsReferenced_mFC422C3176041085760100251C4545E99F035C79_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
RuntimeObject * L_0 = ___context0;
BidirectionalDictionary_2_t099435761F49B07DBF2BBA49D1D2D6865002A8D5 * L_1 = DefaultReferenceResolver_GetMappings_m3D4025A129FB759AE3DCF61DD6A3F530D26EC8EF(__this, L_0, /*hidden argument*/NULL);
RuntimeObject * L_2 = ___value1;
NullCheck(L_1);
bool L_3 = BidirectionalDictionary_2_TryGetBySecond_m336D3CFE81BE67FFD3E78EB62766A2AF622E7A7A(L_1, L_2, (String_t**)(&V_0), /*hidden argument*/BidirectionalDictionary_2_TryGetBySecond_m336D3CFE81BE67FFD3E78EB62766A2AF622E7A7A_RuntimeMethod_var);
return L_3;
}
}
// System.Void Valve.Newtonsoft.Json.Serialization.DefaultReferenceResolver::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultReferenceResolver__ctor_m5F6345B54370970853DF91C7A9C5268D1269435B (DefaultReferenceResolver_t1313CA0D668FADF15BF2ACA61C526B6FED83C977 * __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.Type Valve.Newtonsoft.Json.Serialization.DefaultSerializationBinder::GetTypeFromTypeNameKey(Valve.Newtonsoft.Json.Serialization.DefaultSerializationBinder_TypeNameKey)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * DefaultSerializationBinder_GetTypeFromTypeNameKey_m8428569BCC26EE5A2443DA1EF261B9D730780AF2 (TypeNameKey_tF95DA6A58197B920C4D8C069E6543C6EEDA08312 ___typeNameKey0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultSerializationBinder_GetTypeFromTypeNameKey_m8428569BCC26EE5A2443DA1EF261B9D730780AF2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
String_t* V_1 = NULL;
Assembly_t * V_2 = NULL;
AssemblyU5BU5D_t90BF014AA048450526A42C74F9583341A138DE58* V_3 = NULL;
int32_t V_4 = 0;
Assembly_t * V_5 = NULL;
Type_t * G_B11_0 = NULL;
Type_t * G_B10_0 = NULL;
{
TypeNameKey_tF95DA6A58197B920C4D8C069E6543C6EEDA08312 L_0 = ___typeNameKey0;
String_t* L_1 = L_0.get_AssemblyName_0();
V_0 = L_1;
TypeNameKey_tF95DA6A58197B920C4D8C069E6543C6EEDA08312 L_2 = ___typeNameKey0;
String_t* L_3 = L_2.get_TypeName_1();
V_1 = L_3;
String_t* L_4 = V_0;
if (!L_4)
{
goto IL_0095;
}
}
{
String_t* L_5 = V_0;
Assembly_t * L_6 = Assembly_LoadWithPartialName_m9230151DE79E538B7B90936F0B2F30F99BBCD307(L_5, /*hidden argument*/NULL);
V_2 = L_6;
Assembly_t * L_7 = V_2;
if (L_7)
{
goto IL_0055;
}
}
{
AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * L_8 = AppDomain_get_CurrentDomain_m3D3D52C9382D6853E49551DA6182DBC5F1118BF0(/*hidden argument*/NULL);
NullCheck(L_8);
AssemblyU5BU5D_t90BF014AA048450526A42C74F9583341A138DE58* L_9 = AppDomain_GetAssemblies_mF1A63ADFC80562168DF846017BB72CAB09298A23(L_8, /*hidden argument*/NULL);
V_3 = L_9;
V_4 = 0;
goto IL_004e;
}
IL_002e:
{
AssemblyU5BU5D_t90BF014AA048450526A42C74F9583341A138DE58* L_10 = V_3;
int32_t L_11 = V_4;
NullCheck(L_10);
int32_t L_12 = L_11;
Assembly_t * L_13 = (L_10)->GetAt(static_cast<il2cpp_array_size_t>(L_12));
V_5 = L_13;
Assembly_t * L_14 = V_5;
NullCheck(L_14);
String_t* L_15 = VirtFuncInvoker0< String_t* >::Invoke(10 /* System.String System.Reflection.Assembly::get_FullName() */, L_14);
String_t* L_16 = V_0;
bool L_17 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_15, L_16, /*hidden argument*/NULL);
if (!L_17)
{
goto IL_0048;
}
}
{
Assembly_t * L_18 = V_5;
V_2 = L_18;
goto IL_0055;
}
IL_0048:
{
int32_t L_19 = V_4;
V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_19, (int32_t)1));
}
IL_004e:
{
int32_t L_20 = V_4;
AssemblyU5BU5D_t90BF014AA048450526A42C74F9583341A138DE58* L_21 = V_3;
NullCheck(L_21);
if ((((int32_t)L_20) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_21)->max_length)))))))
{
goto IL_002e;
}
}
IL_0055:
{
Assembly_t * L_22 = V_2;
if (L_22)
{
goto IL_006e;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_23 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
String_t* L_24 = V_0;
String_t* L_25 = StringUtils_FormatWith_mA244260995FC801D82F22EC897F3F8BEB8649583(_stringLiteral4BC5C9CF140A3B738987A573D35B75C2F44DDA06, L_23, L_24, /*hidden argument*/NULL);
JsonSerializationException_t041C510BA8DF91FD223402E73A4E55EC1B12E902 * L_26 = (JsonSerializationException_t041C510BA8DF91FD223402E73A4E55EC1B12E902 *)il2cpp_codegen_object_new(JsonSerializationException_t041C510BA8DF91FD223402E73A4E55EC1B12E902_il2cpp_TypeInfo_var);
JsonSerializationException__ctor_mEB80B2C2AEA10E8D417D22CF77D40C10DBF51795(L_26, L_25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_26, DefaultSerializationBinder_GetTypeFromTypeNameKey_m8428569BCC26EE5A2443DA1EF261B9D730780AF2_RuntimeMethod_var);
}
IL_006e:
{
Assembly_t * L_27 = V_2;
String_t* L_28 = V_1;
NullCheck(L_27);
Type_t * L_29 = VirtFuncInvoker1< Type_t *, String_t* >::Invoke(20 /* System.Type System.Reflection.Assembly::GetType(System.String) */, L_27, L_28);
Type_t * L_30 = L_29;
G_B10_0 = L_30;
if (L_30)
{
G_B11_0 = L_30;
goto IL_0094;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_31 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
String_t* L_32 = V_1;
Assembly_t * L_33 = V_2;
NullCheck(L_33);
String_t* L_34 = VirtFuncInvoker0< String_t* >::Invoke(10 /* System.String System.Reflection.Assembly::get_FullName() */, L_33);
String_t* L_35 = StringUtils_FormatWith_m0847578DA1FD34776DD9C2AB8A4BA694D05A8C6D(_stringLiteral772DAFBEC5630ADEBF0F95763318DCBAF1D20DCC, L_31, L_32, L_34, /*hidden argument*/NULL);
JsonSerializationException_t041C510BA8DF91FD223402E73A4E55EC1B12E902 * L_36 = (JsonSerializationException_t041C510BA8DF91FD223402E73A4E55EC1B12E902 *)il2cpp_codegen_object_new(JsonSerializationException_t041C510BA8DF91FD223402E73A4E55EC1B12E902_il2cpp_TypeInfo_var);
JsonSerializationException__ctor_mEB80B2C2AEA10E8D417D22CF77D40C10DBF51795(L_36, L_35, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_36, DefaultSerializationBinder_GetTypeFromTypeNameKey_m8428569BCC26EE5A2443DA1EF261B9D730780AF2_RuntimeMethod_var);
}
IL_0094:
{
return G_B11_0;
}
IL_0095:
{
String_t* L_37 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_38 = il2cpp_codegen_get_type((Il2CppMethodPointer)&Type_GetType_mCF0A3B28889C9FFB9987C8D30C23DF0912E7C00C, L_37, "Valve.Newtonsoft.Json, Version=9.0.0.0, Culture=neutral, PublicKeyToken=null");
return L_38;
}
}
// System.Type Valve.Newtonsoft.Json.Serialization.DefaultSerializationBinder::BindToType(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * DefaultSerializationBinder_BindToType_m52FD09039B4F1238D88D92F55FC21B3F780DFCA0 (DefaultSerializationBinder_t920F0511A88D51A0CCDFDCB3C8F0E12CEDB5F3E3 * __this, String_t* ___assemblyName0, String_t* ___typeName1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultSerializationBinder_BindToType_m52FD09039B4F1238D88D92F55FC21B3F780DFCA0_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ThreadSafeStore_2_t4514B8E56056BAF0F4C62DC3FE61190B6C7A83F7 * L_0 = __this->get__typeCache_1();
String_t* L_1 = ___assemblyName0;
String_t* L_2 = ___typeName1;
TypeNameKey_tF95DA6A58197B920C4D8C069E6543C6EEDA08312 L_3;
memset((&L_3), 0, sizeof(L_3));
TypeNameKey__ctor_m0C661D040D3CE82C94B32C42AE91D841C793F57A((&L_3), L_1, L_2, /*hidden argument*/NULL);
NullCheck(L_0);
Type_t * L_4 = ThreadSafeStore_2_Get_mA1AE5E345A837263A7350B63C9902C30D9604D25(L_0, L_3, /*hidden argument*/ThreadSafeStore_2_Get_mA1AE5E345A837263A7350B63C9902C30D9604D25_RuntimeMethod_var);
return L_4;
}
}
// System.Void Valve.Newtonsoft.Json.Serialization.DefaultSerializationBinder::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultSerializationBinder__ctor_mD09C65B0B1B951EA7DB548F1E938C7F22A57D8A1 (DefaultSerializationBinder_t920F0511A88D51A0CCDFDCB3C8F0E12CEDB5F3E3 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultSerializationBinder__ctor_mD09C65B0B1B951EA7DB548F1E938C7F22A57D8A1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Func_2_t613802803AE53BB465170B4BCAD06EC8EEE8FC0D * L_0 = (Func_2_t613802803AE53BB465170B4BCAD06EC8EEE8FC0D *)il2cpp_codegen_object_new(Func_2_t613802803AE53BB465170B4BCAD06EC8EEE8FC0D_il2cpp_TypeInfo_var);
Func_2__ctor_m58F596FD3DEF4EA03042DB2653E77D81EF716B13(L_0, NULL, (intptr_t)((intptr_t)DefaultSerializationBinder_GetTypeFromTypeNameKey_m8428569BCC26EE5A2443DA1EF261B9D730780AF2_RuntimeMethod_var), /*hidden argument*/Func_2__ctor_m58F596FD3DEF4EA03042DB2653E77D81EF716B13_RuntimeMethod_var);
ThreadSafeStore_2_t4514B8E56056BAF0F4C62DC3FE61190B6C7A83F7 * L_1 = (ThreadSafeStore_2_t4514B8E56056BAF0F4C62DC3FE61190B6C7A83F7 *)il2cpp_codegen_object_new(ThreadSafeStore_2_t4514B8E56056BAF0F4C62DC3FE61190B6C7A83F7_il2cpp_TypeInfo_var);
ThreadSafeStore_2__ctor_m0B31182B9AB59FFF512BEA154E9C43A8E940079E(L_1, L_0, /*hidden argument*/ThreadSafeStore_2__ctor_m0B31182B9AB59FFF512BEA154E9C43A8E940079E_RuntimeMethod_var);
__this->set__typeCache_1(L_1);
SerializationBinder__ctor_m6561AFDA7048873AC600F63E0C7EA19C5253E811(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void Valve.Newtonsoft.Json.Serialization.DefaultSerializationBinder::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultSerializationBinder__cctor_m3F4F53CA015285903B419D17A96FB2342E45619F (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultSerializationBinder__cctor_m3F4F53CA015285903B419D17A96FB2342E45619F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
DefaultSerializationBinder_t920F0511A88D51A0CCDFDCB3C8F0E12CEDB5F3E3 * L_0 = (DefaultSerializationBinder_t920F0511A88D51A0CCDFDCB3C8F0E12CEDB5F3E3 *)il2cpp_codegen_object_new(DefaultSerializationBinder_t920F0511A88D51A0CCDFDCB3C8F0E12CEDB5F3E3_il2cpp_TypeInfo_var);
DefaultSerializationBinder__ctor_mD09C65B0B1B951EA7DB548F1E938C7F22A57D8A1(L_0, /*hidden argument*/NULL);
((DefaultSerializationBinder_t920F0511A88D51A0CCDFDCB3C8F0E12CEDB5F3E3_StaticFields*)il2cpp_codegen_static_fields_for(DefaultSerializationBinder_t920F0511A88D51A0CCDFDCB3C8F0E12CEDB5F3E3_il2cpp_TypeInfo_var))->set_Instance_0(L_0);
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
// Conversion methods for marshalling of: Valve.Newtonsoft.Json.Serialization.DefaultSerializationBinder/TypeNameKey
IL2CPP_EXTERN_C void TypeNameKey_tF95DA6A58197B920C4D8C069E6543C6EEDA08312_marshal_pinvoke(const TypeNameKey_tF95DA6A58197B920C4D8C069E6543C6EEDA08312& unmarshaled, TypeNameKey_tF95DA6A58197B920C4D8C069E6543C6EEDA08312_marshaled_pinvoke& marshaled)
{
marshaled.___AssemblyName_0 = il2cpp_codegen_marshal_string(unmarshaled.get_AssemblyName_0());
marshaled.___TypeName_1 = il2cpp_codegen_marshal_string(unmarshaled.get_TypeName_1());
}
IL2CPP_EXTERN_C void TypeNameKey_tF95DA6A58197B920C4D8C069E6543C6EEDA08312_marshal_pinvoke_back(const TypeNameKey_tF95DA6A58197B920C4D8C069E6543C6EEDA08312_marshaled_pinvoke& marshaled, TypeNameKey_tF95DA6A58197B920C4D8C069E6543C6EEDA08312& unmarshaled)
{
unmarshaled.set_AssemblyName_0(il2cpp_codegen_marshal_string_result(marshaled.___AssemblyName_0));
unmarshaled.set_TypeName_1(il2cpp_codegen_marshal_string_result(marshaled.___TypeName_1));
}
// Conversion method for clean up from marshalling of: Valve.Newtonsoft.Json.Serialization.DefaultSerializationBinder/TypeNameKey
IL2CPP_EXTERN_C void TypeNameKey_tF95DA6A58197B920C4D8C069E6543C6EEDA08312_marshal_pinvoke_cleanup(TypeNameKey_tF95DA6A58197B920C4D8C069E6543C6EEDA08312_marshaled_pinvoke& marshaled)
{
il2cpp_codegen_marshal_free(marshaled.___AssemblyName_0);
marshaled.___AssemblyName_0 = NULL;
il2cpp_codegen_marshal_free(marshaled.___TypeName_1);
marshaled.___TypeName_1 = NULL;
}
// Conversion methods for marshalling of: Valve.Newtonsoft.Json.Serialization.DefaultSerializationBinder/TypeNameKey
IL2CPP_EXTERN_C void TypeNameKey_tF95DA6A58197B920C4D8C069E6543C6EEDA08312_marshal_com(const TypeNameKey_tF95DA6A58197B920C4D8C069E6543C6EEDA08312& unmarshaled, TypeNameKey_tF95DA6A58197B920C4D8C069E6543C6EEDA08312_marshaled_com& marshaled)
{
marshaled.___AssemblyName_0 = il2cpp_codegen_marshal_bstring(unmarshaled.get_AssemblyName_0());
marshaled.___TypeName_1 = il2cpp_codegen_marshal_bstring(unmarshaled.get_TypeName_1());
}
IL2CPP_EXTERN_C void TypeNameKey_tF95DA6A58197B920C4D8C069E6543C6EEDA08312_marshal_com_back(const TypeNameKey_tF95DA6A58197B920C4D8C069E6543C6EEDA08312_marshaled_com& marshaled, TypeNameKey_tF95DA6A58197B920C4D8C069E6543C6EEDA08312& unmarshaled)
{
unmarshaled.set_AssemblyName_0(il2cpp_codegen_marshal_bstring_result(marshaled.___AssemblyName_0));
unmarshaled.set_TypeName_1(il2cpp_codegen_marshal_bstring_result(marshaled.___TypeName_1));
}
// Conversion method for clean up from marshalling of: Valve.Newtonsoft.Json.Serialization.DefaultSerializationBinder/TypeNameKey
IL2CPP_EXTERN_C void TypeNameKey_tF95DA6A58197B920C4D8C069E6543C6EEDA08312_marshal_com_cleanup(TypeNameKey_tF95DA6A58197B920C4D8C069E6543C6EEDA08312_marshaled_com& marshaled)
{
il2cpp_codegen_marshal_free_bstring(marshaled.___AssemblyName_0);
marshaled.___AssemblyName_0 = NULL;
il2cpp_codegen_marshal_free_bstring(marshaled.___TypeName_1);
marshaled.___TypeName_1 = NULL;
}
// System.Void Valve.Newtonsoft.Json.Serialization.DefaultSerializationBinder_TypeNameKey::.ctor(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeNameKey__ctor_m0C661D040D3CE82C94B32C42AE91D841C793F57A (TypeNameKey_tF95DA6A58197B920C4D8C069E6543C6EEDA08312 * __this, String_t* ___assemblyName0, String_t* ___typeName1, const RuntimeMethod* method)
{
{
String_t* L_0 = ___assemblyName0;
__this->set_AssemblyName_0(L_0);
String_t* L_1 = ___typeName1;
__this->set_TypeName_1(L_1);
return;
}
}
IL2CPP_EXTERN_C void TypeNameKey__ctor_m0C661D040D3CE82C94B32C42AE91D841C793F57A_AdjustorThunk (RuntimeObject * __this, String_t* ___assemblyName0, String_t* ___typeName1, const RuntimeMethod* method)
{
int32_t _offset = 1;
TypeNameKey_tF95DA6A58197B920C4D8C069E6543C6EEDA08312 * _thisAdjusted = reinterpret_cast<TypeNameKey_tF95DA6A58197B920C4D8C069E6543C6EEDA08312 *>(__this + _offset);
TypeNameKey__ctor_m0C661D040D3CE82C94B32C42AE91D841C793F57A(_thisAdjusted, ___assemblyName0, ___typeName1, method);
}
// System.Int32 Valve.Newtonsoft.Json.Serialization.DefaultSerializationBinder_TypeNameKey::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TypeNameKey_GetHashCode_m2C8DC929361776447E54603C27AAD7E2F2BEBCE8 (TypeNameKey_tF95DA6A58197B920C4D8C069E6543C6EEDA08312 * __this, const RuntimeMethod* method)
{
int32_t G_B3_0 = 0;
int32_t G_B5_0 = 0;
int32_t G_B4_0 = 0;
int32_t G_B6_0 = 0;
int32_t G_B6_1 = 0;
{
String_t* L_0 = __this->get_AssemblyName_0();
if (L_0)
{
goto IL_000b;
}
}
{
G_B3_0 = 0;
goto IL_0016;
}
IL_000b:
{
String_t* L_1 = __this->get_AssemblyName_0();
NullCheck(L_1);
int32_t L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_1);
G_B3_0 = L_2;
}
IL_0016:
{
String_t* L_3 = __this->get_TypeName_1();
G_B4_0 = G_B3_0;
if (L_3)
{
G_B5_0 = G_B3_0;
goto IL_0021;
}
}
{
G_B6_0 = 0;
G_B6_1 = G_B4_0;
goto IL_002c;
}
IL_0021:
{
String_t* L_4 = __this->get_TypeName_1();
NullCheck(L_4);
int32_t L_5 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_4);
G_B6_0 = L_5;
G_B6_1 = G_B5_0;
}
IL_002c:
{
return ((int32_t)((int32_t)G_B6_1^(int32_t)G_B6_0));
}
}
IL2CPP_EXTERN_C int32_t TypeNameKey_GetHashCode_m2C8DC929361776447E54603C27AAD7E2F2BEBCE8_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
TypeNameKey_tF95DA6A58197B920C4D8C069E6543C6EEDA08312 * _thisAdjusted = reinterpret_cast<TypeNameKey_tF95DA6A58197B920C4D8C069E6543C6EEDA08312 *>(__this + _offset);
return TypeNameKey_GetHashCode_m2C8DC929361776447E54603C27AAD7E2F2BEBCE8(_thisAdjusted, method);
}
// System.Boolean Valve.Newtonsoft.Json.Serialization.DefaultSerializationBinder_TypeNameKey::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeNameKey_Equals_mA9CB7987E39F1CEC63E3F4FA1EFEE88C627CC973 (TypeNameKey_tF95DA6A58197B920C4D8C069E6543C6EEDA08312 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeNameKey_Equals_mA9CB7987E39F1CEC63E3F4FA1EFEE88C627CC973_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___obj0;
if (((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, TypeNameKey_tF95DA6A58197B920C4D8C069E6543C6EEDA08312_il2cpp_TypeInfo_var)))
{
goto IL_000a;
}
}
{
return (bool)0;
}
IL_000a:
{
RuntimeObject * L_1 = ___obj0;
bool L_2 = TypeNameKey_Equals_mBA82DBA60A4C38C97CC9B8AAB962B5DADD52BBAE((TypeNameKey_tF95DA6A58197B920C4D8C069E6543C6EEDA08312 *)__this, ((*(TypeNameKey_tF95DA6A58197B920C4D8C069E6543C6EEDA08312 *)((TypeNameKey_tF95DA6A58197B920C4D8C069E6543C6EEDA08312 *)UnBox(L_1, TypeNameKey_tF95DA6A58197B920C4D8C069E6543C6EEDA08312_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
return L_2;
}
}
IL2CPP_EXTERN_C bool TypeNameKey_Equals_mA9CB7987E39F1CEC63E3F4FA1EFEE88C627CC973_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
int32_t _offset = 1;
TypeNameKey_tF95DA6A58197B920C4D8C069E6543C6EEDA08312 * _thisAdjusted = reinterpret_cast<TypeNameKey_tF95DA6A58197B920C4D8C069E6543C6EEDA08312 *>(__this + _offset);
return TypeNameKey_Equals_mA9CB7987E39F1CEC63E3F4FA1EFEE88C627CC973(_thisAdjusted, ___obj0, method);
}
// System.Boolean Valve.Newtonsoft.Json.Serialization.DefaultSerializationBinder_TypeNameKey::Equals(Valve.Newtonsoft.Json.Serialization.DefaultSerializationBinder_TypeNameKey)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeNameKey_Equals_mBA82DBA60A4C38C97CC9B8AAB962B5DADD52BBAE (TypeNameKey_tF95DA6A58197B920C4D8C069E6543C6EEDA08312 * __this, TypeNameKey_tF95DA6A58197B920C4D8C069E6543C6EEDA08312 ___other0, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_AssemblyName_0();
TypeNameKey_tF95DA6A58197B920C4D8C069E6543C6EEDA08312 L_1 = ___other0;
String_t* L_2 = L_1.get_AssemblyName_0();
bool L_3 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_0, L_2, /*hidden argument*/NULL);
if (!L_3)
{
goto IL_0025;
}
}
{
String_t* L_4 = __this->get_TypeName_1();
TypeNameKey_tF95DA6A58197B920C4D8C069E6543C6EEDA08312 L_5 = ___other0;
String_t* L_6 = L_5.get_TypeName_1();
bool L_7 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_4, L_6, /*hidden argument*/NULL);
return L_7;
}
IL_0025:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool TypeNameKey_Equals_mBA82DBA60A4C38C97CC9B8AAB962B5DADD52BBAE_AdjustorThunk (RuntimeObject * __this, TypeNameKey_tF95DA6A58197B920C4D8C069E6543C6EEDA08312 ___other0, const RuntimeMethod* method)
{
int32_t _offset = 1;
TypeNameKey_tF95DA6A58197B920C4D8C069E6543C6EEDA08312 * _thisAdjusted = reinterpret_cast<TypeNameKey_tF95DA6A58197B920C4D8C069E6543C6EEDA08312 *>(__this + _offset);
return TypeNameKey_Equals_mBA82DBA60A4C38C97CC9B8AAB962B5DADD52BBAE(_thisAdjusted, ___other0, method);
}
#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 Valve.Newtonsoft.Json.Serialization.ErrorContext::.ctor(System.Object,System.Object,System.String,System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ErrorContext__ctor_m8B5C59D3B820E35F9B32DE79D8B9E1C6BEC46785 (ErrorContext_t61739A48B44A4707051088E7013FD4E347DBE7A0 * __this, RuntimeObject * ___originalObject0, RuntimeObject * ___member1, String_t* ___path2, Exception_t * ___error3, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
RuntimeObject * L_0 = ___originalObject0;
ErrorContext_set_OriginalObject_m8E938A5CA43E07F4313D5836F8B246FAEFBBFBDD_inline(__this, L_0, /*hidden argument*/NULL);
RuntimeObject * L_1 = ___member1;
ErrorContext_set_Member_mB992679E80AFF52E170B4758CFF8035F80687D99_inline(__this, L_1, /*hidden argument*/NULL);
Exception_t * L_2 = ___error3;
ErrorContext_set_Error_m0E5CE8FC8C1F4738DC69C22A3E9DDC424DF80161_inline(__this, L_2, /*hidden argument*/NULL);
String_t* L_3 = ___path2;
ErrorContext_set_Path_m845955C49F8D6597E42A4D5C027291F6BA483FAA_inline(__this, L_3, /*hidden argument*/NULL);
return;
}
}
// System.Boolean Valve.Newtonsoft.Json.Serialization.ErrorContext::get_Traced()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ErrorContext_get_Traced_mACA75EC56BDBD94ABBC93ECE58D97DBCDA50AE7C (ErrorContext_t61739A48B44A4707051088E7013FD4E347DBE7A0 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_U3CTracedU3Ek__BackingField_0();
return L_0;
}
}
// System.Void Valve.Newtonsoft.Json.Serialization.ErrorContext::set_Traced(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ErrorContext_set_Traced_m15F88F55CE18A2EF38C8BDFA90661527450A4466 (ErrorContext_t61739A48B44A4707051088E7013FD4E347DBE7A0 * __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->set_U3CTracedU3Ek__BackingField_0(L_0);
return;
}
}
// System.Exception Valve.Newtonsoft.Json.Serialization.ErrorContext::get_Error()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * ErrorContext_get_Error_mF5791FEBE91FDD10966F76FE326E1051E9ECC6D8 (ErrorContext_t61739A48B44A4707051088E7013FD4E347DBE7A0 * __this, const RuntimeMethod* method)
{
{
Exception_t * L_0 = __this->get_U3CErrorU3Ek__BackingField_1();
return L_0;
}
}
// System.Void Valve.Newtonsoft.Json.Serialization.ErrorContext::set_Error(System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ErrorContext_set_Error_m0E5CE8FC8C1F4738DC69C22A3E9DDC424DF80161 (ErrorContext_t61739A48B44A4707051088E7013FD4E347DBE7A0 * __this, Exception_t * ___value0, const RuntimeMethod* method)
{
{
Exception_t * L_0 = ___value0;
__this->set_U3CErrorU3Ek__BackingField_1(L_0);
return;
}
}
// System.Void Valve.Newtonsoft.Json.Serialization.ErrorContext::set_OriginalObject(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ErrorContext_set_OriginalObject_m8E938A5CA43E07F4313D5836F8B246FAEFBBFBDD (ErrorContext_t61739A48B44A4707051088E7013FD4E347DBE7A0 * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___value0;
__this->set_U3COriginalObjectU3Ek__BackingField_2(L_0);
return;
}
}
// System.Void Valve.Newtonsoft.Json.Serialization.ErrorContext::set_Member(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ErrorContext_set_Member_mB992679E80AFF52E170B4758CFF8035F80687D99 (ErrorContext_t61739A48B44A4707051088E7013FD4E347DBE7A0 * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___value0;
__this->set_U3CMemberU3Ek__BackingField_3(L_0);
return;
}
}
// System.Void Valve.Newtonsoft.Json.Serialization.ErrorContext::set_Path(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ErrorContext_set_Path_m845955C49F8D6597E42A4D5C027291F6BA483FAA (ErrorContext_t61739A48B44A4707051088E7013FD4E347DBE7A0 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set_U3CPathU3Ek__BackingField_4(L_0);
return;
}
}
// System.Boolean Valve.Newtonsoft.Json.Serialization.ErrorContext::get_Handled()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ErrorContext_get_Handled_m0BD7381A560A31E20B06CCD445B321340F9C485E (ErrorContext_t61739A48B44A4707051088E7013FD4E347DBE7A0 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_U3CHandledU3Ek__BackingField_5();
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 Valve.Newtonsoft.Json.Serialization.ErrorEventArgs::set_CurrentObject(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ErrorEventArgs_set_CurrentObject_mBF49E39F8488905B42037F852CE94E7835C88CB0 (ErrorEventArgs_tB0943D7E08A6FA558FC6C2E534DFF2FC535FF298 * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___value0;
__this->set_U3CCurrentObjectU3Ek__BackingField_1(L_0);
return;
}
}
// System.Void Valve.Newtonsoft.Json.Serialization.ErrorEventArgs::set_ErrorContext(Valve.Newtonsoft.Json.Serialization.ErrorContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ErrorEventArgs_set_ErrorContext_m71E35FBC6FD80B30D0520D87CB0838E04DAAFFEB (ErrorEventArgs_tB0943D7E08A6FA558FC6C2E534DFF2FC535FF298 * __this, ErrorContext_t61739A48B44A4707051088E7013FD4E347DBE7A0 * ___value0, const RuntimeMethod* method)
{
{
ErrorContext_t61739A48B44A4707051088E7013FD4E347DBE7A0 * L_0 = ___value0;
__this->set_U3CErrorContextU3Ek__BackingField_2(L_0);
return;
}
}
// System.Void Valve.Newtonsoft.Json.Serialization.ErrorEventArgs::.ctor(System.Object,Valve.Newtonsoft.Json.Serialization.ErrorContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ErrorEventArgs__ctor_mAB008F2045495B1CB00829C2AEEF170B3774C556 (ErrorEventArgs_tB0943D7E08A6FA558FC6C2E534DFF2FC535FF298 * __this, RuntimeObject * ___currentObject0, ErrorContext_t61739A48B44A4707051088E7013FD4E347DBE7A0 * ___errorContext1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ErrorEventArgs__ctor_mAB008F2045495B1CB00829C2AEEF170B3774C556_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E_il2cpp_TypeInfo_var);
EventArgs__ctor_m3551293259861C5A78CD47689D559F828ED29DF7(__this, /*hidden argument*/NULL);
RuntimeObject * L_0 = ___currentObject0;
ErrorEventArgs_set_CurrentObject_mBF49E39F8488905B42037F852CE94E7835C88CB0_inline(__this, L_0, /*hidden argument*/NULL);
ErrorContext_t61739A48B44A4707051088E7013FD4E347DBE7A0 * L_1 = ___errorContext1;
ErrorEventArgs_set_ErrorContext_m71E35FBC6FD80B30D0520D87CB0838E04DAAFFEB_inline(__this, L_1, /*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 Valve.Newtonsoft.Json.Serialization.ExtensionDataGetter::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExtensionDataGetter__ctor_mD67AFAC0A07BA876ADF2467C764379063F6319C2 (ExtensionDataGetter_t6CC1D4868317A6C03ADA77795B2563E77D993860 * __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.Collections.Generic.IEnumerable`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>> Valve.Newtonsoft.Json.Serialization.ExtensionDataGetter::Invoke(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ExtensionDataGetter_Invoke_m5B351D4CF0FFCD1B589F07480AF2674337C2C0FD (ExtensionDataGetter_t6CC1D4868317A6C03ADA77795B2563E77D993860 * __this, RuntimeObject * ___o0, const RuntimeMethod* method)
{
RuntimeObject* 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 == 1)
{
// open
typedef RuntimeObject* (*FunctionPointerType) (RuntimeObject *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___o0, targetMethod);
}
else
{
// closed
typedef RuntimeObject* (*FunctionPointerType) (void*, RuntimeObject *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___o0, targetMethod);
}
}
else if (___parameterCount != 1)
{
// open
if (il2cpp_codegen_method_is_virtual(targetMethod) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker0< RuntimeObject* >::Invoke(targetMethod, ___o0);
else
result = GenericVirtFuncInvoker0< RuntimeObject* >::Invoke(targetMethod, ___o0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___o0);
else
result = VirtFuncInvoker0< RuntimeObject* >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___o0);
}
}
else
{
typedef RuntimeObject* (*FunctionPointerType) (RuntimeObject *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___o0, targetMethod);
}
}
else
{
// closed
if (targetThis != NULL && 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< RuntimeObject*, RuntimeObject * >::Invoke(targetMethod, targetThis, ___o0);
else
result = GenericVirtFuncInvoker1< RuntimeObject*, RuntimeObject * >::Invoke(targetMethod, targetThis, ___o0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< RuntimeObject*, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___o0);
else
result = VirtFuncInvoker1< RuntimeObject*, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___o0);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef RuntimeObject* (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(___o0) - 1), targetMethod);
}
if (targetThis == NULL)
{
typedef RuntimeObject* (*FunctionPointerType) (RuntimeObject *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___o0, targetMethod);
}
else
{
typedef RuntimeObject* (*FunctionPointerType) (void*, RuntimeObject *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___o0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult Valve.Newtonsoft.Json.Serialization.ExtensionDataGetter::BeginInvoke(System.Object,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ExtensionDataGetter_BeginInvoke_m297DA43F489406056EBE3EE41A116A45EAE08943 (ExtensionDataGetter_t6CC1D4868317A6C03ADA77795B2563E77D993860 * __this, RuntimeObject * ___o0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
void *__d_args[2] = {0};
__d_args[0] = ___o0;
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.Collections.Generic.IEnumerable`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>> Valve.Newtonsoft.Json.Serialization.ExtensionDataGetter::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ExtensionDataGetter_EndInvoke_m52F88440DE5DF2E34654311481A89D82BF50EFCA (ExtensionDataGetter_t6CC1D4868317A6C03ADA77795B2563E77D993860 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return (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.Void Valve.Newtonsoft.Json.Serialization.ExtensionDataSetter::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExtensionDataSetter__ctor_m5AAAF27B6B09525CF0D5F641C138F5FD9DAD0D3A (ExtensionDataSetter_t887F53572558DF1949C2035B2EC92D39343FE586 * __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 Valve.Newtonsoft.Json.Serialization.ExtensionDataSetter::Invoke(System.Object,System.String,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExtensionDataSetter_Invoke_m6F4522924F93D96ED748622790450D911AEFBDBF (ExtensionDataSetter_t887F53572558DF1949C2035B2EC92D39343FE586 * __this, RuntimeObject * ___o0, String_t* ___key1, RuntimeObject * ___value2, 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 == 3)
{
// open
typedef void (*FunctionPointerType) (RuntimeObject *, String_t*, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___o0, ___key1, ___value2, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, RuntimeObject *, String_t*, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___o0, ___key1, ___value2, targetMethod);
}
}
else if (___parameterCount != 3)
{
// open
if (il2cpp_codegen_method_is_virtual(targetMethod) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker2< String_t*, RuntimeObject * >::Invoke(targetMethod, ___o0, ___key1, ___value2);
else
GenericVirtActionInvoker2< String_t*, RuntimeObject * >::Invoke(targetMethod, ___o0, ___key1, ___value2);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker2< String_t*, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___o0, ___key1, ___value2);
else
VirtActionInvoker2< String_t*, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___o0, ___key1, ___value2);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef void (*FunctionPointerType) (RuntimeObject*, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(___key1) - 1), ___value2, targetMethod);
}
typedef void (*FunctionPointerType) (RuntimeObject *, String_t*, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___o0, ___key1, ___value2, targetMethod);
}
}
else
{
// closed
if (targetThis != NULL && 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))
GenericInterfaceActionInvoker3< RuntimeObject *, String_t*, RuntimeObject * >::Invoke(targetMethod, targetThis, ___o0, ___key1, ___value2);
else
GenericVirtActionInvoker3< RuntimeObject *, String_t*, RuntimeObject * >::Invoke(targetMethod, targetThis, ___o0, ___key1, ___value2);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker3< RuntimeObject *, String_t*, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___o0, ___key1, ___value2);
else
VirtActionInvoker3< RuntimeObject *, String_t*, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___o0, ___key1, ___value2);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef void (*FunctionPointerType) (RuntimeObject*, String_t*, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(___o0) - 1), ___key1, ___value2, targetMethod);
}
if (targetThis == NULL)
{
typedef void (*FunctionPointerType) (RuntimeObject *, String_t*, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___o0, ___key1, ___value2, targetMethod);
}
else
{
typedef void (*FunctionPointerType) (void*, RuntimeObject *, String_t*, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___o0, ___key1, ___value2, targetMethod);
}
}
}
}
}
// System.IAsyncResult Valve.Newtonsoft.Json.Serialization.ExtensionDataSetter::BeginInvoke(System.Object,System.String,System.Object,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ExtensionDataSetter_BeginInvoke_m0087F333817D4C205B31BBD705A65F8E38732F98 (ExtensionDataSetter_t887F53572558DF1949C2035B2EC92D39343FE586 * __this, RuntimeObject * ___o0, String_t* ___key1, RuntimeObject * ___value2, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback3, RuntimeObject * ___object4, const RuntimeMethod* method)
{
void *__d_args[4] = {0};
__d_args[0] = ___o0;
__d_args[1] = ___key1;
__d_args[2] = ___value2;
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback3, (RuntimeObject*)___object4);
}
// System.Void Valve.Newtonsoft.Json.Serialization.ExtensionDataSetter::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExtensionDataSetter_EndInvoke_mA55D8F5906C71DB26153A19520153E6CE91D5055 (ExtensionDataSetter_t887F53572558DF1949C2035B2EC92D39343FE586 * __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
// System.Type Valve.Newtonsoft.Json.Serialization.JsonArrayContract::get_CollectionItemType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * JsonArrayContract_get_CollectionItemType_m10E501E1CDDDBFD2D6D70553B4BDDF5A067BC976 (JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751 * __this, const RuntimeMethod* method)
{
{
Type_t * L_0 = __this->get_U3CCollectionItemTypeU3Ek__BackingField_27();
return L_0;
}
}
// System.Void Valve.Newtonsoft.Json.Serialization.JsonArrayContract::set_CollectionItemType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonArrayContract_set_CollectionItemType_m4ED7E451B8262125D9C3A330DCBEF423A15332AB (JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751 * __this, Type_t * ___value0, const RuntimeMethod* method)
{
{
Type_t * L_0 = ___value0;
__this->set_U3CCollectionItemTypeU3Ek__BackingField_27(L_0);
return;
}
}
// System.Boolean Valve.Newtonsoft.Json.Serialization.JsonArrayContract::get_IsMultidimensionalArray()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonArrayContract_get_IsMultidimensionalArray_m5A93A212D49B64AB8DF564E054409B96A5AFCE48 (JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_U3CIsMultidimensionalArrayU3Ek__BackingField_28();
return L_0;
}
}
// System.Void Valve.Newtonsoft.Json.Serialization.JsonArrayContract::set_IsMultidimensionalArray(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonArrayContract_set_IsMultidimensionalArray_mA0F2911D038F28838DF4EE720819D9448D521B72 (JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751 * __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->set_U3CIsMultidimensionalArrayU3Ek__BackingField_28(L_0);
return;
}
}
// System.Boolean Valve.Newtonsoft.Json.Serialization.JsonArrayContract::get_IsArray()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonArrayContract_get_IsArray_mA108F1403D28761C05D8050D8C36D9A5C68EABD0 (JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_U3CIsArrayU3Ek__BackingField_33();
return L_0;
}
}
// System.Void Valve.Newtonsoft.Json.Serialization.JsonArrayContract::set_IsArray(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonArrayContract_set_IsArray_m70EF7EB5FDC94591CD78A769E2A95DC86B041EA7 (JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751 * __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->set_U3CIsArrayU3Ek__BackingField_33(L_0);
return;
}
}
// System.Boolean Valve.Newtonsoft.Json.Serialization.JsonArrayContract::get_ShouldCreateWrapper()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonArrayContract_get_ShouldCreateWrapper_m5D7D7062767CEF6C678D31FED4288624E31AD484 (JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_U3CShouldCreateWrapperU3Ek__BackingField_34();
return L_0;
}
}
// System.Void Valve.Newtonsoft.Json.Serialization.JsonArrayContract::set_ShouldCreateWrapper(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonArrayContract_set_ShouldCreateWrapper_m948CE129A45979C3B8AA8296309FC8B2CAA3F837 (JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751 * __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->set_U3CShouldCreateWrapperU3Ek__BackingField_34(L_0);
return;
}
}
// System.Boolean Valve.Newtonsoft.Json.Serialization.JsonArrayContract::get_CanDeserialize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonArrayContract_get_CanDeserialize_mBDAD2F469BE3924C0BCDC74746FC6066EC5BC6FD (JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_U3CCanDeserializeU3Ek__BackingField_35();
return L_0;
}
}
// System.Void Valve.Newtonsoft.Json.Serialization.JsonArrayContract::set_CanDeserialize(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonArrayContract_set_CanDeserialize_mE5D171AF6B30958A25CC505A16F424F227D029AA (JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751 * __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->set_U3CCanDeserializeU3Ek__BackingField_35(L_0);
return;
}
}
// Valve.Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object> Valve.Newtonsoft.Json.Serialization.JsonArrayContract::get_ParameterizedCreator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 * JsonArrayContract_get_ParameterizedCreator_m4D576B9550B35A3D85BCCEBA5B451CE09AB80292 (JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JsonArrayContract_get_ParameterizedCreator_m4D576B9550B35A3D85BCCEBA5B451CE09AB80292_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 * L_0 = __this->get__parameterizedCreator_37();
if (L_0)
{
goto IL_001e;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(JsonTypeReflector_tC161A1BF2506AB16B738C3935C2691A92B7A8C55_il2cpp_TypeInfo_var);
ReflectionDelegateFactory_t87E79CD61C3504844C338EEC1949177370F2029A * L_1 = JsonTypeReflector_get_ReflectionDelegateFactory_mAD718C1AD00934D6A3A5B334C5494929E45A8DC7(/*hidden argument*/NULL);
ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * L_2 = __this->get__parameterizedConstructor_36();
NullCheck(L_1);
ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 * L_3 = VirtFuncInvoker1< ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 *, MethodBase_t * >::Invoke(5 /* Valve.Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object> Valve.Newtonsoft.Json.Utilities.ReflectionDelegateFactory::CreateParameterizedConstructor(System.Reflection.MethodBase) */, L_1, L_2);
__this->set__parameterizedCreator_37(L_3);
}
IL_001e:
{
ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 * L_4 = __this->get__parameterizedCreator_37();
return L_4;
}
}
// Valve.Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object> Valve.Newtonsoft.Json.Serialization.JsonArrayContract::get_OverrideCreator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 * JsonArrayContract_get_OverrideCreator_mE875B537CE03FB45FCF0C38D86BD5674A3CBD27F (JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751 * __this, const RuntimeMethod* method)
{
{
ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 * L_0 = __this->get__overrideCreator_38();
return L_0;
}
}
// System.Void Valve.Newtonsoft.Json.Serialization.JsonArrayContract::set_OverrideCreator(Valve.Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonArrayContract_set_OverrideCreator_mF1BC2767BD2532C54ACD739C8098B703CB8F0E08 (JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751 * __this, ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 * ___value0, const RuntimeMethod* method)
{
{
ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 * L_0 = ___value0;
__this->set__overrideCreator_38(L_0);
JsonArrayContract_set_CanDeserialize_mE5D171AF6B30958A25CC505A16F424F227D029AA_inline(__this, (bool)1, /*hidden argument*/NULL);
return;
}
}
// System.Boolean Valve.Newtonsoft.Json.Serialization.JsonArrayContract::get_HasParameterizedCreator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonArrayContract_get_HasParameterizedCreator_m4B57EBA3CBC19A697E5BB71E4963FDFC4395F599 (JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_U3CHasParameterizedCreatorU3Ek__BackingField_39();
return L_0;
}
}
// System.Void Valve.Newtonsoft.Json.Serialization.JsonArrayContract::set_HasParameterizedCreator(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonArrayContract_set_HasParameterizedCreator_m3982B915EC8BFE7EF384D8D6663D1147AD6E2859 (JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751 * __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->set_U3CHasParameterizedCreatorU3Ek__BackingField_39(L_0);
return;
}
}
// System.Boolean Valve.Newtonsoft.Json.Serialization.JsonArrayContract::get_HasParameterizedCreatorInternal()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonArrayContract_get_HasParameterizedCreatorInternal_mAA9CFA8DE1E6DB10A2AE6EABFCDE4F166FA9CA8F (JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751 * __this, const RuntimeMethod* method)
{
{
bool L_0 = JsonArrayContract_get_HasParameterizedCreator_m4B57EBA3CBC19A697E5BB71E4963FDFC4395F599_inline(__this, /*hidden argument*/NULL);
if (L_0)
{
goto IL_001a;
}
}
{
ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 * L_1 = __this->get__parameterizedCreator_37();
if (L_1)
{
goto IL_001a;
}
}
{
ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * L_2 = __this->get__parameterizedConstructor_36();
return (bool)((!(((RuntimeObject*)(ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF *)L_2) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
IL_001a:
{
return (bool)1;
}
}
// System.Void Valve.Newtonsoft.Json.Serialization.JsonArrayContract::.ctor(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonArrayContract__ctor_m202B363DE8BE2077F790591E8947AF8AED933D18 (JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751 * __this, Type_t * ___underlyingType0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JsonArrayContract__ctor_m202B363DE8BE2077F790591E8947AF8AED933D18_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
Type_t * V_1 = NULL;
JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751 * G_B3_0 = NULL;
JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751 * G_B2_0 = NULL;
int32_t G_B4_0 = 0;
JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751 * G_B4_1 = NULL;
{
Type_t * L_0 = ___underlyingType0;
JsonContainerContract__ctor_mEA7E83B6B87C0584E30AE5B52DACA72037AFD37B(__this, L_0, /*hidden argument*/NULL);
((JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 *)__this)->set_ContractType_5(2);
Type_t * L_1 = JsonContract_get_CreatedType_mD4067F78EE8562AECD07B981C18C57182277E1ED_inline(__this, /*hidden argument*/NULL);
NullCheck(L_1);
bool L_2 = Type_get_IsArray_m0B4E20F93B1B34C0B5C4B089F543D1AA338DC9FE(L_1, /*hidden argument*/NULL);
JsonArrayContract_set_IsArray_m70EF7EB5FDC94591CD78A769E2A95DC86B041EA7_inline(__this, L_2, /*hidden argument*/NULL);
bool L_3 = JsonArrayContract_get_IsArray_mA108F1403D28761C05D8050D8C36D9A5C68EABD0_inline(__this, /*hidden argument*/NULL);
if (!L_3)
{
goto IL_0089;
}
}
{
Type_t * L_4 = JsonContract_get_UnderlyingType_m7F278992455AC78881DB024ACB6646D1086025F1_inline(__this, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(ReflectionUtils_t1845D588ADA15C351615E925042ECF790B622987_il2cpp_TypeInfo_var);
Type_t * L_5 = ReflectionUtils_GetCollectionItemType_mE42A0352D1CEC9F9F75952F1F0729E34EEA9494F(L_4, /*hidden argument*/NULL);
JsonArrayContract_set_CollectionItemType_m4ED7E451B8262125D9C3A330DCBEF423A15332AB_inline(__this, L_5, /*hidden argument*/NULL);
((JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 *)__this)->set_IsReadOnlyOrFixedSize_6((bool)1);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_6 = { reinterpret_cast<intptr_t> (List_1_tE9A03BE6BFDE2D773BB46B72A1C6DC0B2740A223_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_7 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_6, /*hidden argument*/NULL);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_8 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_9 = L_8;
Type_t * L_10 = JsonArrayContract_get_CollectionItemType_m10E501E1CDDDBFD2D6D70553B4BDDF5A067BC976_inline(__this, /*hidden argument*/NULL);
NullCheck(L_9);
ArrayElementTypeCheck (L_9, L_10);
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_10);
NullCheck(L_7);
Type_t * L_11 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(103 /* System.Type System.Type::MakeGenericType(System.Type[]) */, L_7, L_9);
__this->set__genericCollectionDefinitionType_29(L_11);
V_0 = (bool)1;
bool L_12 = JsonArrayContract_get_IsArray_mA108F1403D28761C05D8050D8C36D9A5C68EABD0_inline(__this, /*hidden argument*/NULL);
G_B2_0 = __this;
if (!L_12)
{
G_B3_0 = __this;
goto IL_007e;
}
}
{
Type_t * L_13 = JsonContract_get_UnderlyingType_m7F278992455AC78881DB024ACB6646D1086025F1_inline(__this, /*hidden argument*/NULL);
NullCheck(L_13);
int32_t L_14 = VirtFuncInvoker0< int32_t >::Invoke(29 /* System.Int32 System.Type::GetArrayRank() */, L_13);
G_B4_0 = ((((int32_t)L_14) > ((int32_t)1))? 1 : 0);
G_B4_1 = G_B2_0;
goto IL_007f;
}
IL_007e:
{
G_B4_0 = 0;
G_B4_1 = G_B3_0;
}
IL_007f:
{
NullCheck(G_B4_1);
JsonArrayContract_set_IsMultidimensionalArray_mA0F2911D038F28838DF4EE720819D9448D521B72_inline(G_B4_1, (bool)G_B4_0, /*hidden argument*/NULL);
goto IL_02a7;
}
IL_0089:
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_15 = { reinterpret_cast<intptr_t> (IList_tA637AB426E16F84F84ACC2813BDCF3A0414AF0AA_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_16 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_15, /*hidden argument*/NULL);
Type_t * L_17 = ___underlyingType0;
NullCheck(L_16);
bool L_18 = VirtFuncInvoker1< bool, Type_t * >::Invoke(118 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_16, L_17);
if (!L_18)
{
goto IL_012b;
}
}
{
Type_t * L_19 = ___underlyingType0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_20 = { reinterpret_cast<intptr_t> (ICollection_1_t47D08429F331C3A21D3F5AA174BFE3BB7C6DEF53_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_21 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_20, /*hidden argument*/NULL);
Type_t ** L_22 = __this->get_address_of__genericCollectionDefinitionType_29();
IL2CPP_RUNTIME_CLASS_INIT(ReflectionUtils_t1845D588ADA15C351615E925042ECF790B622987_il2cpp_TypeInfo_var);
bool L_23 = ReflectionUtils_ImplementsGenericDefinition_m58DB3D664FDF436112B4EE8A4D653B53E01773B1(L_19, L_21, (Type_t **)L_22, /*hidden argument*/NULL);
if (!L_23)
{
goto IL_00cb;
}
}
{
Type_t * L_24 = __this->get__genericCollectionDefinitionType_29();
NullCheck(L_24);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_25 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(107 /* System.Type[] System.Type::GetGenericArguments() */, L_24);
NullCheck(L_25);
int32_t L_26 = 0;
Type_t * L_27 = (L_25)->GetAt(static_cast<il2cpp_array_size_t>(L_26));
JsonArrayContract_set_CollectionItemType_m4ED7E451B8262125D9C3A330DCBEF423A15332AB_inline(__this, L_27, /*hidden argument*/NULL);
goto IL_00d7;
}
IL_00cb:
{
Type_t * L_28 = ___underlyingType0;
IL2CPP_RUNTIME_CLASS_INIT(ReflectionUtils_t1845D588ADA15C351615E925042ECF790B622987_il2cpp_TypeInfo_var);
Type_t * L_29 = ReflectionUtils_GetCollectionItemType_mE42A0352D1CEC9F9F75952F1F0729E34EEA9494F(L_28, /*hidden argument*/NULL);
JsonArrayContract_set_CollectionItemType_m4ED7E451B8262125D9C3A330DCBEF423A15332AB_inline(__this, L_29, /*hidden argument*/NULL);
}
IL_00d7:
{
Type_t * L_30 = ___underlyingType0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_31 = { reinterpret_cast<intptr_t> (IList_tA637AB426E16F84F84ACC2813BDCF3A0414AF0AA_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_32 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_31, /*hidden argument*/NULL);
if ((!(((RuntimeObject*)(Type_t *)L_30) == ((RuntimeObject*)(Type_t *)L_32))))
{
goto IL_00f4;
}
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_33 = { reinterpret_cast<intptr_t> (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_34 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_33, /*hidden argument*/NULL);
JsonContract_set_CreatedType_mDE35D10E5501FF83D76D15188B22BC4697BE5687(__this, L_34, /*hidden argument*/NULL);
}
IL_00f4:
{
Type_t * L_35 = JsonArrayContract_get_CollectionItemType_m10E501E1CDDDBFD2D6D70553B4BDDF5A067BC976_inline(__this, /*hidden argument*/NULL);
if (!L_35)
{
goto IL_010e;
}
}
{
Type_t * L_36 = ___underlyingType0;
Type_t * L_37 = JsonArrayContract_get_CollectionItemType_m10E501E1CDDDBFD2D6D70553B4BDDF5A067BC976_inline(__this, /*hidden argument*/NULL);
ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * L_38 = CollectionUtils_ResolveEnumerableCollectionConstructor_m08BA9F1F15B6C07EF7204642AF4528A7075E7581(L_36, L_37, /*hidden argument*/NULL);
__this->set__parameterizedConstructor_36(L_38);
}
IL_010e:
{
Type_t * L_39 = ___underlyingType0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_40 = { reinterpret_cast<intptr_t> (ReadOnlyCollection_1_tD458BCEFAED2B8E1ECDA1CED4EF4CBB1011E5803_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_41 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_40, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(ReflectionUtils_t1845D588ADA15C351615E925042ECF790B622987_il2cpp_TypeInfo_var);
bool L_42 = ReflectionUtils_InheritsGenericDefinition_mDA99DE3E50D227F0C91FB7777E10C0F603134417(L_39, L_41, /*hidden argument*/NULL);
((JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 *)__this)->set_IsReadOnlyOrFixedSize_6(L_42);
V_0 = (bool)1;
goto IL_02a7;
}
IL_012b:
{
Type_t * L_43 = ___underlyingType0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_44 = { reinterpret_cast<intptr_t> (ICollection_1_t47D08429F331C3A21D3F5AA174BFE3BB7C6DEF53_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_45 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_44, /*hidden argument*/NULL);
Type_t ** L_46 = __this->get_address_of__genericCollectionDefinitionType_29();
IL2CPP_RUNTIME_CLASS_INIT(ReflectionUtils_t1845D588ADA15C351615E925042ECF790B622987_il2cpp_TypeInfo_var);
bool L_47 = ReflectionUtils_ImplementsGenericDefinition_m58DB3D664FDF436112B4EE8A4D653B53E01773B1(L_43, L_45, (Type_t **)L_46, /*hidden argument*/NULL);
if (!L_47)
{
goto IL_01be;
}
}
{
Type_t * L_48 = __this->get__genericCollectionDefinitionType_29();
NullCheck(L_48);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_49 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(107 /* System.Type[] System.Type::GetGenericArguments() */, L_48);
NullCheck(L_49);
int32_t L_50 = 0;
Type_t * L_51 = (L_49)->GetAt(static_cast<il2cpp_array_size_t>(L_50));
JsonArrayContract_set_CollectionItemType_m4ED7E451B8262125D9C3A330DCBEF423A15332AB_inline(__this, L_51, /*hidden argument*/NULL);
Type_t * L_52 = ___underlyingType0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_53 = { reinterpret_cast<intptr_t> (ICollection_1_t47D08429F331C3A21D3F5AA174BFE3BB7C6DEF53_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_54 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_53, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(ReflectionUtils_t1845D588ADA15C351615E925042ECF790B622987_il2cpp_TypeInfo_var);
bool L_55 = ReflectionUtils_IsGenericDefinition_m11708AE621627DC05121D7397E4A08B7570E962D(L_52, L_54, /*hidden argument*/NULL);
if (L_55)
{
goto IL_017a;
}
}
{
Type_t * L_56 = ___underlyingType0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_57 = { reinterpret_cast<intptr_t> (IList_1_t257B383712C1A4815237BFC535F7FB44AD7C7D36_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_58 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_57, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(ReflectionUtils_t1845D588ADA15C351615E925042ECF790B622987_il2cpp_TypeInfo_var);
bool L_59 = ReflectionUtils_IsGenericDefinition_m11708AE621627DC05121D7397E4A08B7570E962D(L_56, L_58, /*hidden argument*/NULL);
if (!L_59)
{
goto IL_019e;
}
}
IL_017a:
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_60 = { reinterpret_cast<intptr_t> (List_1_tE9A03BE6BFDE2D773BB46B72A1C6DC0B2740A223_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_61 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_60, /*hidden argument*/NULL);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_62 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_63 = L_62;
Type_t * L_64 = JsonArrayContract_get_CollectionItemType_m10E501E1CDDDBFD2D6D70553B4BDDF5A067BC976_inline(__this, /*hidden argument*/NULL);
NullCheck(L_63);
ArrayElementTypeCheck (L_63, L_64);
(L_63)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_64);
NullCheck(L_61);
Type_t * L_65 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(103 /* System.Type System.Type::MakeGenericType(System.Type[]) */, L_61, L_63);
JsonContract_set_CreatedType_mDE35D10E5501FF83D76D15188B22BC4697BE5687(__this, L_65, /*hidden argument*/NULL);
}
IL_019e:
{
Type_t * L_66 = ___underlyingType0;
Type_t * L_67 = JsonArrayContract_get_CollectionItemType_m10E501E1CDDDBFD2D6D70553B4BDDF5A067BC976_inline(__this, /*hidden argument*/NULL);
ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * L_68 = CollectionUtils_ResolveEnumerableCollectionConstructor_m08BA9F1F15B6C07EF7204642AF4528A7075E7581(L_66, L_67, /*hidden argument*/NULL);
__this->set__parameterizedConstructor_36(L_68);
V_0 = (bool)1;
JsonArrayContract_set_ShouldCreateWrapper_m948CE129A45979C3B8AA8296309FC8B2CAA3F837_inline(__this, (bool)1, /*hidden argument*/NULL);
goto IL_02a7;
}
IL_01be:
{
Type_t * L_69 = ___underlyingType0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_70 = { reinterpret_cast<intptr_t> (IEnumerable_1_t6FAC70CFE4E34421830AE8D9FE19DA2A83B85B75_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_71 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_70, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(ReflectionUtils_t1845D588ADA15C351615E925042ECF790B622987_il2cpp_TypeInfo_var);
bool L_72 = ReflectionUtils_ImplementsGenericDefinition_m58DB3D664FDF436112B4EE8A4D653B53E01773B1(L_69, L_71, (Type_t **)(&V_1), /*hidden argument*/NULL);
if (!L_72)
{
goto IL_029e;
}
}
{
Type_t * L_73 = V_1;
NullCheck(L_73);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_74 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(107 /* System.Type[] System.Type::GetGenericArguments() */, L_73);
NullCheck(L_74);
int32_t L_75 = 0;
Type_t * L_76 = (L_74)->GetAt(static_cast<il2cpp_array_size_t>(L_75));
JsonArrayContract_set_CollectionItemType_m4ED7E451B8262125D9C3A330DCBEF423A15332AB_inline(__this, L_76, /*hidden argument*/NULL);
Type_t * L_77 = JsonContract_get_UnderlyingType_m7F278992455AC78881DB024ACB6646D1086025F1_inline(__this, /*hidden argument*/NULL);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_78 = { reinterpret_cast<intptr_t> (IEnumerable_1_t6FAC70CFE4E34421830AE8D9FE19DA2A83B85B75_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_79 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_78, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(ReflectionUtils_t1845D588ADA15C351615E925042ECF790B622987_il2cpp_TypeInfo_var);
bool L_80 = ReflectionUtils_IsGenericDefinition_m11708AE621627DC05121D7397E4A08B7570E962D(L_77, L_79, /*hidden argument*/NULL);
if (!L_80)
{
goto IL_021e;
}
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_81 = { reinterpret_cast<intptr_t> (List_1_tE9A03BE6BFDE2D773BB46B72A1C6DC0B2740A223_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_82 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_81, /*hidden argument*/NULL);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_83 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_84 = L_83;
Type_t * L_85 = JsonArrayContract_get_CollectionItemType_m10E501E1CDDDBFD2D6D70553B4BDDF5A067BC976_inline(__this, /*hidden argument*/NULL);
NullCheck(L_84);
ArrayElementTypeCheck (L_84, L_85);
(L_84)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_85);
NullCheck(L_82);
Type_t * L_86 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(103 /* System.Type System.Type::MakeGenericType(System.Type[]) */, L_82, L_84);
JsonContract_set_CreatedType_mDE35D10E5501FF83D76D15188B22BC4697BE5687(__this, L_86, /*hidden argument*/NULL);
}
IL_021e:
{
Type_t * L_87 = ___underlyingType0;
Type_t * L_88 = JsonArrayContract_get_CollectionItemType_m10E501E1CDDDBFD2D6D70553B4BDDF5A067BC976_inline(__this, /*hidden argument*/NULL);
ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * L_89 = CollectionUtils_ResolveEnumerableCollectionConstructor_m08BA9F1F15B6C07EF7204642AF4528A7075E7581(L_87, L_88, /*hidden argument*/NULL);
__this->set__parameterizedConstructor_36(L_89);
Type_t * L_90 = ___underlyingType0;
bool L_91 = TypeExtensions_IsGenericType_m187F153940B59E33DB80464C8D55569BFD18402E(L_90, /*hidden argument*/NULL);
if (!L_91)
{
goto IL_0263;
}
}
{
Type_t * L_92 = ___underlyingType0;
NullCheck(L_92);
Type_t * L_93 = VirtFuncInvoker0< Type_t * >::Invoke(108 /* System.Type System.Type::GetGenericTypeDefinition() */, L_92);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_94 = { reinterpret_cast<intptr_t> (IEnumerable_1_t6FAC70CFE4E34421830AE8D9FE19DA2A83B85B75_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_95 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_94, /*hidden argument*/NULL);
if ((!(((RuntimeObject*)(Type_t *)L_93) == ((RuntimeObject*)(Type_t *)L_95))))
{
goto IL_0263;
}
}
{
Type_t * L_96 = V_1;
__this->set__genericCollectionDefinitionType_29(L_96);
((JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 *)__this)->set_IsReadOnlyOrFixedSize_6((bool)0);
JsonArrayContract_set_ShouldCreateWrapper_m948CE129A45979C3B8AA8296309FC8B2CAA3F837_inline(__this, (bool)0, /*hidden argument*/NULL);
V_0 = (bool)1;
goto IL_02a7;
}
IL_0263:
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_97 = { reinterpret_cast<intptr_t> (List_1_tE9A03BE6BFDE2D773BB46B72A1C6DC0B2740A223_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_98 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_97, /*hidden argument*/NULL);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_99 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_100 = L_99;
Type_t * L_101 = JsonArrayContract_get_CollectionItemType_m10E501E1CDDDBFD2D6D70553B4BDDF5A067BC976_inline(__this, /*hidden argument*/NULL);
NullCheck(L_100);
ArrayElementTypeCheck (L_100, L_101);
(L_100)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_101);
NullCheck(L_98);
Type_t * L_102 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(103 /* System.Type System.Type::MakeGenericType(System.Type[]) */, L_98, L_100);
__this->set__genericCollectionDefinitionType_29(L_102);
((JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 *)__this)->set_IsReadOnlyOrFixedSize_6((bool)1);
JsonArrayContract_set_ShouldCreateWrapper_m948CE129A45979C3B8AA8296309FC8B2CAA3F837_inline(__this, (bool)1, /*hidden argument*/NULL);
bool L_103 = JsonArrayContract_get_HasParameterizedCreatorInternal_mAA9CFA8DE1E6DB10A2AE6EABFCDE4F166FA9CA8F(__this, /*hidden argument*/NULL);
V_0 = L_103;
goto IL_02a7;
}
IL_029e:
{
V_0 = (bool)0;
JsonArrayContract_set_ShouldCreateWrapper_m948CE129A45979C3B8AA8296309FC8B2CAA3F837_inline(__this, (bool)1, /*hidden argument*/NULL);
}
IL_02a7:
{
bool L_104 = V_0;
JsonArrayContract_set_CanDeserialize_mE5D171AF6B30958A25CC505A16F424F227D029AA_inline(__this, L_104, /*hidden argument*/NULL);
Type_t * L_105 = JsonArrayContract_get_CollectionItemType_m10E501E1CDDDBFD2D6D70553B4BDDF5A067BC976_inline(__this, /*hidden argument*/NULL);
if (!L_105)
{
goto IL_02f3;
}
}
{
Type_t * L_106 = JsonArrayContract_get_CollectionItemType_m10E501E1CDDDBFD2D6D70553B4BDDF5A067BC976_inline(__this, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(ReflectionUtils_t1845D588ADA15C351615E925042ECF790B622987_il2cpp_TypeInfo_var);
bool L_107 = ReflectionUtils_IsNullableType_m8EA034BEA71F38E85D062B63F7C87C1AC02F4B70(L_106, /*hidden argument*/NULL);
if (!L_107)
{
goto IL_02f3;
}
}
{
Type_t * L_108 = JsonContract_get_CreatedType_mD4067F78EE8562AECD07B981C18C57182277E1ED_inline(__this, /*hidden argument*/NULL);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_109 = { reinterpret_cast<intptr_t> (List_1_tE9A03BE6BFDE2D773BB46B72A1C6DC0B2740A223_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_110 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_109, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(ReflectionUtils_t1845D588ADA15C351615E925042ECF790B622987_il2cpp_TypeInfo_var);
bool L_111 = ReflectionUtils_InheritsGenericDefinition_mEFCFA43C1BB68B2B873520686173E720BE618D20(L_108, L_110, (Type_t **)(&V_1), /*hidden argument*/NULL);
if (L_111)
{
goto IL_02ec;
}
}
{
bool L_112 = JsonArrayContract_get_IsArray_mA108F1403D28761C05D8050D8C36D9A5C68EABD0_inline(__this, /*hidden argument*/NULL);
if (!L_112)
{
goto IL_02f3;
}
}
{
bool L_113 = JsonArrayContract_get_IsMultidimensionalArray_m5A93A212D49B64AB8DF564E054409B96A5AFCE48_inline(__this, /*hidden argument*/NULL);
if (L_113)
{
goto IL_02f3;
}
}
IL_02ec:
{
JsonArrayContract_set_ShouldCreateWrapper_m948CE129A45979C3B8AA8296309FC8B2CAA3F837_inline(__this, (bool)1, /*hidden argument*/NULL);
}
IL_02f3:
{
return;
}
}
// Valve.Newtonsoft.Json.Utilities.IWrappedCollection Valve.Newtonsoft.Json.Serialization.JsonArrayContract::CreateWrapper(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonArrayContract_CreateWrapper_mD1E5CBD1C3BC9ABFD9DAEC7E08DFDD693A67F470 (JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751 * __this, RuntimeObject * ___list0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JsonArrayContract_CreateWrapper_mD1E5CBD1C3BC9ABFD9DAEC7E08DFDD693A67F470_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Type_t * V_0 = NULL;
ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * V_1 = NULL;
{
ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 * L_0 = __this->get__genericWrapperCreator_31();
if (L_0)
{
goto IL_00ac;
}
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_1 = { reinterpret_cast<intptr_t> (CollectionWrapper_1_t56A3570FE30412A52315A5D4973F7B4872669659_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_2 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_1, /*hidden argument*/NULL);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_3 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_4 = L_3;
Type_t * L_5 = JsonArrayContract_get_CollectionItemType_m10E501E1CDDDBFD2D6D70553B4BDDF5A067BC976_inline(__this, /*hidden argument*/NULL);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_5);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_5);
NullCheck(L_2);
Type_t * L_6 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(103 /* System.Type System.Type::MakeGenericType(System.Type[]) */, L_2, L_4);
__this->set__genericWrapperType_30(L_6);
Type_t * L_7 = __this->get__genericCollectionDefinitionType_29();
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_8 = { reinterpret_cast<intptr_t> (List_1_tE9A03BE6BFDE2D773BB46B72A1C6DC0B2740A223_0_0_0_var) };
Type_t * L_9 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_8, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(ReflectionUtils_t1845D588ADA15C351615E925042ECF790B622987_il2cpp_TypeInfo_var);
bool L_10 = ReflectionUtils_InheritsGenericDefinition_mDA99DE3E50D227F0C91FB7777E10C0F603134417(L_7, L_9, /*hidden argument*/NULL);
if (L_10)
{
goto IL_005d;
}
}
{
Type_t * L_11 = __this->get__genericCollectionDefinitionType_29();
NullCheck(L_11);
Type_t * L_12 = VirtFuncInvoker0< Type_t * >::Invoke(108 /* System.Type System.Type::GetGenericTypeDefinition() */, L_11);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_13 = { reinterpret_cast<intptr_t> (IEnumerable_1_t6FAC70CFE4E34421830AE8D9FE19DA2A83B85B75_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_14 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_13, /*hidden argument*/NULL);
if ((!(((RuntimeObject*)(Type_t *)L_12) == ((RuntimeObject*)(Type_t *)L_14))))
{
goto IL_007e;
}
}
IL_005d:
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_15 = { reinterpret_cast<intptr_t> (ICollection_1_t47D08429F331C3A21D3F5AA174BFE3BB7C6DEF53_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_16 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_15, /*hidden argument*/NULL);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_17 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_18 = L_17;
Type_t * L_19 = JsonArrayContract_get_CollectionItemType_m10E501E1CDDDBFD2D6D70553B4BDDF5A067BC976_inline(__this, /*hidden argument*/NULL);
NullCheck(L_18);
ArrayElementTypeCheck (L_18, L_19);
(L_18)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_19);
NullCheck(L_16);
Type_t * L_20 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(103 /* System.Type System.Type::MakeGenericType(System.Type[]) */, L_16, L_18);
V_0 = L_20;
goto IL_0085;
}
IL_007e:
{
Type_t * L_21 = __this->get__genericCollectionDefinitionType_29();
V_0 = L_21;
}
IL_0085:
{
Type_t * L_22 = __this->get__genericWrapperType_30();
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_23 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_24 = L_23;
Type_t * L_25 = V_0;
NullCheck(L_24);
ArrayElementTypeCheck (L_24, L_25);
(L_24)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_25);
NullCheck(L_22);
ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * L_26 = Type_GetConstructor_m4371D7AD6A8E15067C698696B0167323CBC7F3DA(L_22, L_24, /*hidden argument*/NULL);
V_1 = L_26;
IL2CPP_RUNTIME_CLASS_INIT(JsonTypeReflector_tC161A1BF2506AB16B738C3935C2691A92B7A8C55_il2cpp_TypeInfo_var);
ReflectionDelegateFactory_t87E79CD61C3504844C338EEC1949177370F2029A * L_27 = JsonTypeReflector_get_ReflectionDelegateFactory_mAD718C1AD00934D6A3A5B334C5494929E45A8DC7(/*hidden argument*/NULL);
ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * L_28 = V_1;
NullCheck(L_27);
ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 * L_29 = VirtFuncInvoker1< ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 *, MethodBase_t * >::Invoke(5 /* Valve.Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object> Valve.Newtonsoft.Json.Utilities.ReflectionDelegateFactory::CreateParameterizedConstructor(System.Reflection.MethodBase) */, L_27, L_28);
__this->set__genericWrapperCreator_31(L_29);
}
IL_00ac:
{
ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 * L_30 = __this->get__genericWrapperCreator_31();
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_31 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_32 = L_31;
RuntimeObject * L_33 = ___list0;
NullCheck(L_32);
ArrayElementTypeCheck (L_32, L_33);
(L_32)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_33);
NullCheck(L_30);
RuntimeObject * L_34 = ObjectConstructor_1_Invoke_m76CEC2C9D43866532AC0B3DD9666B693A0C2FA70(L_30, L_32, /*hidden argument*/ObjectConstructor_1_Invoke_m76CEC2C9D43866532AC0B3DD9666B693A0C2FA70_RuntimeMethod_var);
return ((RuntimeObject*)Castclass((RuntimeObject*)L_34, IWrappedCollection_t5343C968B746DD56FC5E1F96CF8FA4AA683CEC55_il2cpp_TypeInfo_var));
}
}
// System.Collections.IList Valve.Newtonsoft.Json.Serialization.JsonArrayContract::CreateTemporaryCollection()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonArrayContract_CreateTemporaryCollection_m883A13D415903B2D3DE60D720A1716A209F05FDE (JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JsonArrayContract_CreateTemporaryCollection_m883A13D415903B2D3DE60D720A1716A209F05FDE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Type_t * V_0 = NULL;
Type_t * V_1 = NULL;
Type_t * G_B5_0 = NULL;
{
Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 * L_0 = __this->get__genericTemporaryCollectionCreator_32();
if (L_0)
{
goto IL_0056;
}
}
{
bool L_1 = JsonArrayContract_get_IsMultidimensionalArray_m5A93A212D49B64AB8DF564E054409B96A5AFCE48_inline(__this, /*hidden argument*/NULL);
if (L_1)
{
goto IL_0020;
}
}
{
Type_t * L_2 = JsonArrayContract_get_CollectionItemType_m10E501E1CDDDBFD2D6D70553B4BDDF5A067BC976_inline(__this, /*hidden argument*/NULL);
if (!L_2)
{
goto IL_0020;
}
}
{
Type_t * L_3 = JsonArrayContract_get_CollectionItemType_m10E501E1CDDDBFD2D6D70553B4BDDF5A067BC976_inline(__this, /*hidden argument*/NULL);
G_B5_0 = L_3;
goto IL_002a;
}
IL_0020:
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_4 = { reinterpret_cast<intptr_t> (RuntimeObject_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_5 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_4, /*hidden argument*/NULL);
G_B5_0 = L_5;
}
IL_002a:
{
V_0 = G_B5_0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_6 = { reinterpret_cast<intptr_t> (List_1_tE9A03BE6BFDE2D773BB46B72A1C6DC0B2740A223_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_7 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_6, /*hidden argument*/NULL);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_8 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_9 = L_8;
Type_t * L_10 = V_0;
NullCheck(L_9);
ArrayElementTypeCheck (L_9, L_10);
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_10);
NullCheck(L_7);
Type_t * L_11 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(103 /* System.Type System.Type::MakeGenericType(System.Type[]) */, L_7, L_9);
V_1 = L_11;
IL2CPP_RUNTIME_CLASS_INIT(JsonTypeReflector_tC161A1BF2506AB16B738C3935C2691A92B7A8C55_il2cpp_TypeInfo_var);
ReflectionDelegateFactory_t87E79CD61C3504844C338EEC1949177370F2029A * L_12 = JsonTypeReflector_get_ReflectionDelegateFactory_mAD718C1AD00934D6A3A5B334C5494929E45A8DC7(/*hidden argument*/NULL);
Type_t * L_13 = V_1;
NullCheck(L_12);
Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 * L_14 = GenericVirtFuncInvoker1< Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 *, Type_t * >::Invoke(ReflectionDelegateFactory_CreateDefaultConstructor_TisRuntimeObject_mEB50AB99BFE09A72034A8DED50F464F83BF7B81A_RuntimeMethod_var, L_12, L_13);
__this->set__genericTemporaryCollectionCreator_32(L_14);
}
IL_0056:
{
Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 * L_15 = __this->get__genericTemporaryCollectionCreator_32();
NullCheck(L_15);
RuntimeObject * L_16 = Func_1_Invoke_m33E1702C6A8DBC8D2A39F4E9A1F5B14BEFAD9597(L_15, /*hidden argument*/Func_1_Invoke_m33E1702C6A8DBC8D2A39F4E9A1F5B14BEFAD9597_RuntimeMethod_var);
return ((RuntimeObject*)Castclass((RuntimeObject*)L_16, IList_tA637AB426E16F84F84ACC2813BDCF3A0414AF0AA_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
// Valve.Newtonsoft.Json.Serialization.JsonContract Valve.Newtonsoft.Json.Serialization.JsonContainerContract::get_ItemContract()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * JsonContainerContract_get_ItemContract_m014F0EF4CA94B4BB8D7642094E9C27F960423213 (JsonContainerContract_tD54146B123969809E06196AE0C5BB3D6E9A679B9 * __this, const RuntimeMethod* method)
{
{
JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * L_0 = __this->get__itemContract_21();
return L_0;
}
}
// System.Void Valve.Newtonsoft.Json.Serialization.JsonContainerContract::set_ItemContract(Valve.Newtonsoft.Json.Serialization.JsonContract)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonContainerContract_set_ItemContract_m0DFB5C304770DF7EB4F4B630588D3112CA3D389A (JsonContainerContract_tD54146B123969809E06196AE0C5BB3D6E9A679B9 * __this, JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * ___value0, const RuntimeMethod* method)
{
JsonContainerContract_tD54146B123969809E06196AE0C5BB3D6E9A679B9 * G_B3_0 = NULL;
JsonContainerContract_tD54146B123969809E06196AE0C5BB3D6E9A679B9 * G_B2_0 = NULL;
JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * G_B4_0 = NULL;
JsonContainerContract_tD54146B123969809E06196AE0C5BB3D6E9A679B9 * G_B4_1 = NULL;
{
JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * L_0 = ___value0;
__this->set__itemContract_21(L_0);
JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * L_1 = __this->get__itemContract_21();
if (!L_1)
{
goto IL_0031;
}
}
{
JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * L_2 = __this->get__itemContract_21();
NullCheck(L_2);
Type_t * L_3 = JsonContract_get_UnderlyingType_m7F278992455AC78881DB024ACB6646D1086025F1_inline(L_2, /*hidden argument*/NULL);
bool L_4 = TypeExtensions_IsSealed_mFE6A869FAD8A650F90D12D57C9D7D085CED7D8F5(L_3, /*hidden argument*/NULL);
G_B2_0 = __this;
if (L_4)
{
G_B3_0 = __this;
goto IL_0025;
}
}
{
G_B4_0 = ((JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 *)(NULL));
G_B4_1 = G_B2_0;
goto IL_002b;
}
IL_0025:
{
JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * L_5 = __this->get__itemContract_21();
G_B4_0 = L_5;
G_B4_1 = G_B3_0;
}
IL_002b:
{
NullCheck(G_B4_1);
G_B4_1->set__finalItemContract_22(G_B4_0);
return;
}
IL_0031:
{
__this->set__finalItemContract_22((JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 *)NULL);
return;
}
}
// Valve.Newtonsoft.Json.Serialization.JsonContract Valve.Newtonsoft.Json.Serialization.JsonContainerContract::get_FinalItemContract()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * JsonContainerContract_get_FinalItemContract_m0D59DFF0F5CA88D56FCA8F93E761CA36B136BB47 (JsonContainerContract_tD54146B123969809E06196AE0C5BB3D6E9A679B9 * __this, const RuntimeMethod* method)
{
{
JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * L_0 = __this->get__finalItemContract_22();
return L_0;
}
}
// Valve.Newtonsoft.Json.JsonConverter Valve.Newtonsoft.Json.Serialization.JsonContainerContract::get_ItemConverter()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * JsonContainerContract_get_ItemConverter_m091B81886B690AAD6D2B679FEB884D4DFE828EA4 (JsonContainerContract_tD54146B123969809E06196AE0C5BB3D6E9A679B9 * __this, const RuntimeMethod* method)
{
{
JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * L_0 = __this->get_U3CItemConverterU3Ek__BackingField_23();
return L_0;
}
}
// System.Void Valve.Newtonsoft.Json.Serialization.JsonContainerContract::set_ItemConverter(Valve.Newtonsoft.Json.JsonConverter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonContainerContract_set_ItemConverter_mF8D7E92BF1E245119C8C93AF4008FC2D217899AA (JsonContainerContract_tD54146B123969809E06196AE0C5BB3D6E9A679B9 * __this, JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * ___value0, const RuntimeMethod* method)
{
{
JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * L_0 = ___value0;
__this->set_U3CItemConverterU3Ek__BackingField_23(L_0);
return;
}
}
// System.Nullable`1<System.Boolean> Valve.Newtonsoft.Json.Serialization.JsonContainerContract::get_ItemIsReference()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 JsonContainerContract_get_ItemIsReference_mE894F8FE770C14AAAA03CE1D34F7BBBDE93D4FEF (JsonContainerContract_tD54146B123969809E06196AE0C5BB3D6E9A679B9 * __this, const RuntimeMethod* method)
{
{
Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 L_0 = __this->get_U3CItemIsReferenceU3Ek__BackingField_24();
return L_0;
}
}
// System.Void Valve.Newtonsoft.Json.Serialization.JsonContainerContract::set_ItemIsReference(System.Nullable`1<System.Boolean>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonContainerContract_set_ItemIsReference_mD49AC15281D9B7652A0AF80EEEDCA79BC92D6578 (JsonContainerContract_tD54146B123969809E06196AE0C5BB3D6E9A679B9 * __this, Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 ___value0, const RuntimeMethod* method)
{
{
Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 L_0 = ___value0;
__this->set_U3CItemIsReferenceU3Ek__BackingField_24(L_0);
return;
}
}
// System.Nullable`1<Valve.Newtonsoft.Json.ReferenceLoopHandling> Valve.Newtonsoft.Json.Serialization.JsonContainerContract::get_ItemReferenceLoopHandling()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_tD485E28BBBAFB03563161D92A5E03A20B8691DF7 JsonContainerContract_get_ItemReferenceLoopHandling_m756E1A937CDA49FBC014625BC079AEB3731F742A (JsonContainerContract_tD54146B123969809E06196AE0C5BB3D6E9A679B9 * __this, const RuntimeMethod* method)
{
{
Nullable_1_tD485E28BBBAFB03563161D92A5E03A20B8691DF7 L_0 = __this->get_U3CItemReferenceLoopHandlingU3Ek__BackingField_25();
return L_0;
}
}
// System.Void Valve.Newtonsoft.Json.Serialization.JsonContainerContract::set_ItemReferenceLoopHandling(System.Nullable`1<Valve.Newtonsoft.Json.ReferenceLoopHandling>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonContainerContract_set_ItemReferenceLoopHandling_mD2E386B30881EFCD0E9B44D521116F31DA225233 (JsonContainerContract_tD54146B123969809E06196AE0C5BB3D6E9A679B9 * __this, Nullable_1_tD485E28BBBAFB03563161D92A5E03A20B8691DF7 ___value0, const RuntimeMethod* method)
{
{
Nullable_1_tD485E28BBBAFB03563161D92A5E03A20B8691DF7 L_0 = ___value0;
__this->set_U3CItemReferenceLoopHandlingU3Ek__BackingField_25(L_0);
return;
}
}
// System.Nullable`1<Valve.Newtonsoft.Json.TypeNameHandling> Valve.Newtonsoft.Json.Serialization.JsonContainerContract::get_ItemTypeNameHandling()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_t03BF155C19CE72C93934F0A7CDDA0C202A278E11 JsonContainerContract_get_ItemTypeNameHandling_mD18110526FF326072DE9C6F89A9DDBC7EF26C33C (JsonContainerContract_tD54146B123969809E06196AE0C5BB3D6E9A679B9 * __this, const RuntimeMethod* method)
{
{
Nullable_1_t03BF155C19CE72C93934F0A7CDDA0C202A278E11 L_0 = __this->get_U3CItemTypeNameHandlingU3Ek__BackingField_26();
return L_0;
}
}
// System.Void Valve.Newtonsoft.Json.Serialization.JsonContainerContract::set_ItemTypeNameHandling(System.Nullable`1<Valve.Newtonsoft.Json.TypeNameHandling>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonContainerContract_set_ItemTypeNameHandling_m09C7A16150E2822C582DAE7C9F23CD9CB5BA558F (JsonContainerContract_tD54146B123969809E06196AE0C5BB3D6E9A679B9 * __this, Nullable_1_t03BF155C19CE72C93934F0A7CDDA0C202A278E11 ___value0, const RuntimeMethod* method)
{
{
Nullable_1_t03BF155C19CE72C93934F0A7CDDA0C202A278E11 L_0 = ___value0;
__this->set_U3CItemTypeNameHandlingU3Ek__BackingField_26(L_0);
return;
}
}
// System.Void Valve.Newtonsoft.Json.Serialization.JsonContainerContract::.ctor(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonContainerContract__ctor_mEA7E83B6B87C0584E30AE5B52DACA72037AFD37B (JsonContainerContract_tD54146B123969809E06196AE0C5BB3D6E9A679B9 * __this, Type_t * ___underlyingType0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JsonContainerContract__ctor_mEA7E83B6B87C0584E30AE5B52DACA72037AFD37B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
JsonContainerAttribute_t4E39F1E5EA66CF61E90C47C81929BE4A853A2DF3 * V_0 = NULL;
{
Type_t * L_0 = ___underlyingType0;
JsonContract__ctor_mBD20DDB17E51F8C0EFE39E44C1A96B9103C5662F(__this, L_0, /*hidden argument*/NULL);
Type_t * L_1 = ___underlyingType0;
IL2CPP_RUNTIME_CLASS_INIT(JsonTypeReflector_tC161A1BF2506AB16B738C3935C2691A92B7A8C55_il2cpp_TypeInfo_var);
JsonContainerAttribute_t4E39F1E5EA66CF61E90C47C81929BE4A853A2DF3 * L_2 = JsonTypeReflector_GetCachedAttribute_TisJsonContainerAttribute_t4E39F1E5EA66CF61E90C47C81929BE4A853A2DF3_m65FBB7F4C33DB203411378AD9097CC81AACBF7EC(L_1, /*hidden argument*/JsonTypeReflector_GetCachedAttribute_TisJsonContainerAttribute_t4E39F1E5EA66CF61E90C47C81929BE4A853A2DF3_m65FBB7F4C33DB203411378AD9097CC81AACBF7EC_RuntimeMethod_var);
V_0 = L_2;
JsonContainerAttribute_t4E39F1E5EA66CF61E90C47C81929BE4A853A2DF3 * L_3 = V_0;
if (!L_3)
{
goto IL_0054;
}
}
{
JsonContainerAttribute_t4E39F1E5EA66CF61E90C47C81929BE4A853A2DF3 * L_4 = V_0;
NullCheck(L_4);
Type_t * L_5 = JsonContainerAttribute_get_ItemConverterType_mAE499FC40A3D9BA300ABED486EEEFB69303D648B_inline(L_4, /*hidden argument*/NULL);
if (!L_5)
{
goto IL_0030;
}
}
{
JsonContainerAttribute_t4E39F1E5EA66CF61E90C47C81929BE4A853A2DF3 * L_6 = V_0;
NullCheck(L_6);
Type_t * L_7 = JsonContainerAttribute_get_ItemConverterType_mAE499FC40A3D9BA300ABED486EEEFB69303D648B_inline(L_6, /*hidden argument*/NULL);
JsonContainerAttribute_t4E39F1E5EA66CF61E90C47C81929BE4A853A2DF3 * L_8 = V_0;
NullCheck(L_8);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_9 = JsonContainerAttribute_get_ItemConverterParameters_m3D2CB234BA796FBE7FE299BAE796D89147391B07_inline(L_8, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(JsonTypeReflector_tC161A1BF2506AB16B738C3935C2691A92B7A8C55_il2cpp_TypeInfo_var);
JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * L_10 = JsonTypeReflector_CreateJsonConverterInstance_mF210879CC3332D8BFAAD51FC1F446DF1B138EFDF(L_7, L_9, /*hidden argument*/NULL);
JsonContainerContract_set_ItemConverter_mF8D7E92BF1E245119C8C93AF4008FC2D217899AA_inline(__this, L_10, /*hidden argument*/NULL);
}
IL_0030:
{
JsonContainerAttribute_t4E39F1E5EA66CF61E90C47C81929BE4A853A2DF3 * L_11 = V_0;
NullCheck(L_11);
Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 L_12 = L_11->get__itemIsReference_4();
JsonContainerContract_set_ItemIsReference_mD49AC15281D9B7652A0AF80EEEDCA79BC92D6578_inline(__this, L_12, /*hidden argument*/NULL);
JsonContainerAttribute_t4E39F1E5EA66CF61E90C47C81929BE4A853A2DF3 * L_13 = V_0;
NullCheck(L_13);
Nullable_1_tD485E28BBBAFB03563161D92A5E03A20B8691DF7 L_14 = L_13->get__itemReferenceLoopHandling_5();
JsonContainerContract_set_ItemReferenceLoopHandling_mD2E386B30881EFCD0E9B44D521116F31DA225233_inline(__this, L_14, /*hidden argument*/NULL);
JsonContainerAttribute_t4E39F1E5EA66CF61E90C47C81929BE4A853A2DF3 * L_15 = V_0;
NullCheck(L_15);
Nullable_1_t03BF155C19CE72C93934F0A7CDDA0C202A278E11 L_16 = L_15->get__itemTypeNameHandling_6();
JsonContainerContract_set_ItemTypeNameHandling_m09C7A16150E2822C582DAE7C9F23CD9CB5BA558F_inline(__this, L_16, /*hidden argument*/NULL);
}
IL_0054:
{
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.Type Valve.Newtonsoft.Json.Serialization.JsonContract::get_UnderlyingType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * JsonContract_get_UnderlyingType_m7F278992455AC78881DB024ACB6646D1086025F1 (JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * __this, const RuntimeMethod* method)
{
{
Type_t * L_0 = __this->get_U3CUnderlyingTypeU3Ek__BackingField_15();
return L_0;
}
}
// System.Void Valve.Newtonsoft.Json.Serialization.JsonContract::set_UnderlyingType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonContract_set_UnderlyingType_mF954896C7C5865210BA18F39C112F06D9F8EF85D (JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * __this, Type_t * ___value0, const RuntimeMethod* method)
{
{
Type_t * L_0 = ___value0;
__this->set_U3CUnderlyingTypeU3Ek__BackingField_15(L_0);
return;
}
}
// System.Type Valve.Newtonsoft.Json.Serialization.JsonContract::get_CreatedType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * JsonContract_get_CreatedType_mD4067F78EE8562AECD07B981C18C57182277E1ED (JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * __this, const RuntimeMethod* method)
{
{
Type_t * L_0 = __this->get__createdType_14();
return L_0;
}
}
// System.Void Valve.Newtonsoft.Json.Serialization.JsonContract::set_CreatedType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonContract_set_CreatedType_mDE35D10E5501FF83D76D15188B22BC4697BE5687 (JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * __this, Type_t * ___value0, const RuntimeMethod* method)
{
JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * G_B2_0 = NULL;
JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * G_B1_0 = NULL;
int32_t G_B3_0 = 0;
JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * G_B3_1 = NULL;
{
Type_t * L_0 = ___value0;
__this->set__createdType_14(L_0);
Type_t * L_1 = __this->get__createdType_14();
bool L_2 = TypeExtensions_IsSealed_mFE6A869FAD8A650F90D12D57C9D7D085CED7D8F5(L_1, /*hidden argument*/NULL);
__this->set_IsSealed_7(L_2);
Type_t * L_3 = __this->get__createdType_14();
bool L_4 = TypeExtensions_IsInterface_mA344FF930F6F73FCDE134C62F39C11A2E853E8FA(L_3, /*hidden argument*/NULL);
G_B1_0 = __this;
if (L_4)
{
G_B2_0 = __this;
goto IL_0036;
}
}
{
Type_t * L_5 = __this->get__createdType_14();
bool L_6 = TypeExtensions_IsAbstract_mCEA720F1609FF2C9446ABACCBC507E180D0AC2B1(L_5, /*hidden argument*/NULL);
G_B3_0 = ((((int32_t)L_6) == ((int32_t)0))? 1 : 0);
G_B3_1 = G_B1_0;
goto IL_0037;
}
IL_0036:
{
G_B3_0 = 0;
G_B3_1 = G_B2_0;
}
IL_0037:
{
NullCheck(G_B3_1);
G_B3_1->set_IsInstantiable_8((bool)G_B3_0);
return;
}
}
// System.Nullable`1<System.Boolean> Valve.Newtonsoft.Json.Serialization.JsonContract::get_IsReference()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 JsonContract_get_IsReference_m5231CAB33A0C0AF51ED2857E37CAA649A2563BBE (JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * __this, const RuntimeMethod* method)
{
{
Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 L_0 = __this->get_U3CIsReferenceU3Ek__BackingField_16();
return L_0;
}
}
// System.Void Valve.Newtonsoft.Json.Serialization.JsonContract::set_IsReference(System.Nullable`1<System.Boolean>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonContract_set_IsReference_mF3693B660E6ED466D542AC561DA5714F34E103BC (JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * __this, Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 ___value0, const RuntimeMethod* method)
{
{
Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 L_0 = ___value0;
__this->set_U3CIsReferenceU3Ek__BackingField_16(L_0);
return;
}
}
// Valve.Newtonsoft.Json.JsonConverter Valve.Newtonsoft.Json.Serialization.JsonContract::get_Converter()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * JsonContract_get_Converter_m3BAD1840201B855F37226E9F18444F333F87DDE4 (JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * __this, const RuntimeMethod* method)
{
{
JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * L_0 = __this->get_U3CConverterU3Ek__BackingField_17();
return L_0;
}
}
// System.Void Valve.Newtonsoft.Json.Serialization.JsonContract::set_Converter(Valve.Newtonsoft.Json.JsonConverter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonContract_set_Converter_mD54BDE103380C81E5AC933ECFC739D1654EFD534 (JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * __this, JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * ___value0, const RuntimeMethod* method)
{
{
JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * L_0 = ___value0;
__this->set_U3CConverterU3Ek__BackingField_17(L_0);
return;
}
}
// Valve.Newtonsoft.Json.JsonConverter Valve.Newtonsoft.Json.Serialization.JsonContract::get_InternalConverter()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * JsonContract_get_InternalConverter_m00C1DCDE8BCC9564CB77779F6F98306B9E6E763D (JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * __this, const RuntimeMethod* method)
{
{
JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * L_0 = __this->get_U3CInternalConverterU3Ek__BackingField_18();
return L_0;
}
}
// System.Void Valve.Newtonsoft.Json.Serialization.JsonContract::set_InternalConverter(Valve.Newtonsoft.Json.JsonConverter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonContract_set_InternalConverter_m98C9C0B34BB620F23DF3021B456FE2BD90DA1C6F (JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * __this, JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * ___value0, const RuntimeMethod* method)
{
{
JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * L_0 = ___value0;
__this->set_U3CInternalConverterU3Ek__BackingField_18(L_0);
return;
}
}
// System.Collections.Generic.IList`1<Valve.Newtonsoft.Json.Serialization.SerializationCallback> Valve.Newtonsoft.Json.Serialization.JsonContract::get_OnDeserializedCallbacks()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonContract_get_OnDeserializedCallbacks_m9B8797DA83096104A2B1803A6EF96E684EA073AA (JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JsonContract_get_OnDeserializedCallbacks_m9B8797DA83096104A2B1803A6EF96E684EA073AA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D * L_0 = __this->get__onDeserializedCallbacks_9();
if (L_0)
{
goto IL_0013;
}
}
{
List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D * L_1 = (List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D *)il2cpp_codegen_object_new(List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D_il2cpp_TypeInfo_var);
List_1__ctor_mF63E182EEB4786A2E9FB7F2C8C8D0683BD9ED093(L_1, /*hidden argument*/List_1__ctor_mF63E182EEB4786A2E9FB7F2C8C8D0683BD9ED093_RuntimeMethod_var);
__this->set__onDeserializedCallbacks_9(L_1);
}
IL_0013:
{
List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D * L_2 = __this->get__onDeserializedCallbacks_9();
return L_2;
}
}
// System.Collections.Generic.IList`1<Valve.Newtonsoft.Json.Serialization.SerializationCallback> Valve.Newtonsoft.Json.Serialization.JsonContract::get_OnDeserializingCallbacks()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonContract_get_OnDeserializingCallbacks_mEB236A5F4F95BE2A531E33B0F210A590823B36CF (JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JsonContract_get_OnDeserializingCallbacks_mEB236A5F4F95BE2A531E33B0F210A590823B36CF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = __this->get__onDeserializingCallbacks_10();
if (L_0)
{
goto IL_0013;
}
}
{
List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D * L_1 = (List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D *)il2cpp_codegen_object_new(List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D_il2cpp_TypeInfo_var);
List_1__ctor_mF63E182EEB4786A2E9FB7F2C8C8D0683BD9ED093(L_1, /*hidden argument*/List_1__ctor_mF63E182EEB4786A2E9FB7F2C8C8D0683BD9ED093_RuntimeMethod_var);
__this->set__onDeserializingCallbacks_10(L_1);
}
IL_0013:
{
RuntimeObject* L_2 = __this->get__onDeserializingCallbacks_10();
return L_2;
}
}
// System.Collections.Generic.IList`1<Valve.Newtonsoft.Json.Serialization.SerializationCallback> Valve.Newtonsoft.Json.Serialization.JsonContract::get_OnSerializedCallbacks()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonContract_get_OnSerializedCallbacks_mFACCA186A597E0FFAB2F805B34260A506B8F038F (JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JsonContract_get_OnSerializedCallbacks_mFACCA186A597E0FFAB2F805B34260A506B8F038F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = __this->get__onSerializedCallbacks_11();
if (L_0)
{
goto IL_0013;
}
}
{
List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D * L_1 = (List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D *)il2cpp_codegen_object_new(List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D_il2cpp_TypeInfo_var);
List_1__ctor_mF63E182EEB4786A2E9FB7F2C8C8D0683BD9ED093(L_1, /*hidden argument*/List_1__ctor_mF63E182EEB4786A2E9FB7F2C8C8D0683BD9ED093_RuntimeMethod_var);
__this->set__onSerializedCallbacks_11(L_1);
}
IL_0013:
{
RuntimeObject* L_2 = __this->get__onSerializedCallbacks_11();
return L_2;
}
}
// System.Collections.Generic.IList`1<Valve.Newtonsoft.Json.Serialization.SerializationCallback> Valve.Newtonsoft.Json.Serialization.JsonContract::get_OnSerializingCallbacks()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonContract_get_OnSerializingCallbacks_mB55F85A655EA1FAA9136A1D41E1CEE79512F2DF0 (JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JsonContract_get_OnSerializingCallbacks_mB55F85A655EA1FAA9136A1D41E1CEE79512F2DF0_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = __this->get__onSerializingCallbacks_12();
if (L_0)
{
goto IL_0013;
}
}
{
List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D * L_1 = (List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D *)il2cpp_codegen_object_new(List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D_il2cpp_TypeInfo_var);
List_1__ctor_mF63E182EEB4786A2E9FB7F2C8C8D0683BD9ED093(L_1, /*hidden argument*/List_1__ctor_mF63E182EEB4786A2E9FB7F2C8C8D0683BD9ED093_RuntimeMethod_var);
__this->set__onSerializingCallbacks_12(L_1);
}
IL_0013:
{
RuntimeObject* L_2 = __this->get__onSerializingCallbacks_12();
return L_2;
}
}
// System.Collections.Generic.IList`1<Valve.Newtonsoft.Json.Serialization.SerializationErrorCallback> Valve.Newtonsoft.Json.Serialization.JsonContract::get_OnErrorCallbacks()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonContract_get_OnErrorCallbacks_m1130B623BD0E2E61C483C12C5C7895071A0867B9 (JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JsonContract_get_OnErrorCallbacks_m1130B623BD0E2E61C483C12C5C7895071A0867B9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = __this->get__onErrorCallbacks_13();
if (L_0)
{
goto IL_0013;
}
}
{
List_1_t3146B8EA2F3BD8E6B4682F880C8713B77D27EC6D * L_1 = (List_1_t3146B8EA2F3BD8E6B4682F880C8713B77D27EC6D *)il2cpp_codegen_object_new(List_1_t3146B8EA2F3BD8E6B4682F880C8713B77D27EC6D_il2cpp_TypeInfo_var);
List_1__ctor_m5510BC9CF019EE224165E524578F0231D4840066(L_1, /*hidden argument*/List_1__ctor_m5510BC9CF019EE224165E524578F0231D4840066_RuntimeMethod_var);
__this->set__onErrorCallbacks_13(L_1);
}
IL_0013:
{
RuntimeObject* L_2 = __this->get__onErrorCallbacks_13();
return L_2;
}
}
// System.Func`1<System.Object> Valve.Newtonsoft.Json.Serialization.JsonContract::get_DefaultCreator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 * JsonContract_get_DefaultCreator_mEC599F3E488D3176FBD5D23A13ADF5F548A9749F (JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * __this, const RuntimeMethod* method)
{
{
Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 * L_0 = __this->get_U3CDefaultCreatorU3Ek__BackingField_19();
return L_0;
}
}
// System.Void Valve.Newtonsoft.Json.Serialization.JsonContract::set_DefaultCreator(System.Func`1<System.Object>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonContract_set_DefaultCreator_mCFA258FC6B3166F8C0DFCABCB8A8F8233704AF6E (JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * __this, Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 * ___value0, const RuntimeMethod* method)
{
{
Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 * L_0 = ___value0;
__this->set_U3CDefaultCreatorU3Ek__BackingField_19(L_0);
return;
}
}
// System.Boolean Valve.Newtonsoft.Json.Serialization.JsonContract::get_DefaultCreatorNonPublic()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonContract_get_DefaultCreatorNonPublic_m16E06A91D081B642B9134CE51AC57A887269FAEE (JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_U3CDefaultCreatorNonPublicU3Ek__BackingField_20();
return L_0;
}
}
// System.Void Valve.Newtonsoft.Json.Serialization.JsonContract::set_DefaultCreatorNonPublic(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonContract_set_DefaultCreatorNonPublic_m919D262C28DED0670FA02472AE90A298B672FDE2 (JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->set_U3CDefaultCreatorNonPublicU3Ek__BackingField_20(L_0);
return;
}
}
// System.Void Valve.Newtonsoft.Json.Serialization.JsonContract::.ctor(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonContract__ctor_mBD20DDB17E51F8C0EFE39E44C1A96B9103C5662F (JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * __this, Type_t * ___underlyingType0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JsonContract__ctor_mBD20DDB17E51F8C0EFE39E44C1A96B9103C5662F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * G_B2_0 = NULL;
JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * G_B1_0 = NULL;
JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * G_B3_0 = NULL;
Type_t * G_B4_0 = NULL;
JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * G_B4_1 = NULL;
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
Type_t * L_0 = ___underlyingType0;
ValidationUtils_ArgumentNotNull_mA6823FB6A1184537A467BD3BAFA6C06126EF7AE9(L_0, _stringLiteralCCC4444434FDD601EE1FAE51B28CC88E75C721BE, /*hidden argument*/NULL);
Type_t * L_1 = ___underlyingType0;
JsonContract_set_UnderlyingType_mF954896C7C5865210BA18F39C112F06D9F8EF85D_inline(__this, L_1, /*hidden argument*/NULL);
Type_t * L_2 = ___underlyingType0;
IL2CPP_RUNTIME_CLASS_INIT(ReflectionUtils_t1845D588ADA15C351615E925042ECF790B622987_il2cpp_TypeInfo_var);
bool L_3 = ReflectionUtils_IsNullable_mEE2044F3C4871D0E2F5476AC3807F116E38BEEE6(L_2, /*hidden argument*/NULL);
__this->set_IsNullable_0(L_3);
bool L_4 = __this->get_IsNullable_0();
G_B1_0 = __this;
if (!L_4)
{
G_B2_0 = __this;
goto IL_0035;
}
}
{
Type_t * L_5 = ___underlyingType0;
IL2CPP_RUNTIME_CLASS_INIT(ReflectionUtils_t1845D588ADA15C351615E925042ECF790B622987_il2cpp_TypeInfo_var);
bool L_6 = ReflectionUtils_IsNullableType_m8EA034BEA71F38E85D062B63F7C87C1AC02F4B70(L_5, /*hidden argument*/NULL);
G_B2_0 = G_B1_0;
if (L_6)
{
G_B3_0 = G_B1_0;
goto IL_0038;
}
}
IL_0035:
{
Type_t * L_7 = ___underlyingType0;
G_B4_0 = L_7;
G_B4_1 = G_B2_0;
goto IL_003e;
}
IL_0038:
{
Type_t * L_8 = ___underlyingType0;
Type_t * L_9 = Nullable_GetUnderlyingType_m038B195642BF738026196B1629997705B6317D04(L_8, /*hidden argument*/NULL);
G_B4_0 = L_9;
G_B4_1 = G_B3_0;
}
IL_003e:
{
NullCheck(G_B4_1);
G_B4_1->set_NonNullableUnderlyingType_3(G_B4_0);
Type_t * L_10 = __this->get_NonNullableUnderlyingType_3();
JsonContract_set_CreatedType_mDE35D10E5501FF83D76D15188B22BC4697BE5687(__this, L_10, /*hidden argument*/NULL);
Type_t * L_11 = __this->get_NonNullableUnderlyingType_3();
IL2CPP_RUNTIME_CLASS_INIT(ConvertUtils_tC3DD9049164372FED28C737BA8BF739779E0E272_il2cpp_TypeInfo_var);
bool L_12 = ConvertUtils_IsConvertible_mEB515FF7DF47BFD5657FBDDBAACC8D189394DC86(L_11, /*hidden argument*/NULL);
__this->set_IsConvertable_1(L_12);
Type_t * L_13 = __this->get_NonNullableUnderlyingType_3();
bool L_14 = TypeExtensions_IsEnum_m6EE0549656F25383D4F2DD299EC643041CEA0A2D(L_13, /*hidden argument*/NULL);
__this->set_IsEnum_2(L_14);
__this->set_InternalReadType_4(0);
return;
}
}
// System.Void Valve.Newtonsoft.Json.Serialization.JsonContract::InvokeOnSerializing(System.Object,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonContract_InvokeOnSerializing_m45E31AA086B097426261B7F347B0853ABFE13C14 (JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * __this, RuntimeObject * ___o0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JsonContract_InvokeOnSerializing_m45E31AA086B097426261B7F347B0853ABFE13C14_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* 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) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
RuntimeObject* L_0 = __this->get__onSerializingCallbacks_12();
if (!L_0)
{
goto IL_0037;
}
}
{
RuntimeObject* L_1 = __this->get__onSerializingCallbacks_12();
NullCheck(L_1);
RuntimeObject* L_2 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<Valve.Newtonsoft.Json.Serialization.SerializationCallback>::GetEnumerator() */, IEnumerable_1_t67A64F85CBC01753DA6881E79C56C256F7FE2211_il2cpp_TypeInfo_var, L_1);
V_0 = L_2;
}
IL_0014:
try
{ // begin try (depth: 1)
{
goto IL_0023;
}
IL_0016:
{
RuntimeObject* L_3 = V_0;
NullCheck(L_3);
SerializationCallback_t8B5297123C8DFAD6A6701E2F2046982E13CE1B9C * L_4 = InterfaceFuncInvoker0< SerializationCallback_t8B5297123C8DFAD6A6701E2F2046982E13CE1B9C * >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<Valve.Newtonsoft.Json.Serialization.SerializationCallback>::get_Current() */, IEnumerator_1_t760B2B6FE3C83D69321965058557E91D277BCB89_il2cpp_TypeInfo_var, L_3);
RuntimeObject * L_5 = ___o0;
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_6 = ___context1;
NullCheck(L_4);
SerializationCallback_Invoke_m85C852BD260BEC5555160CD5F6C6AB5CD6216C53(L_4, L_5, L_6, /*hidden argument*/NULL);
}
IL_0023:
{
RuntimeObject* L_7 = V_0;
NullCheck(L_7);
bool L_8 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_7);
if (L_8)
{
goto IL_0016;
}
}
IL_002b:
{
IL2CPP_LEAVE(0x37, FINALLY_002d);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_002d;
}
FINALLY_002d:
{ // begin finally (depth: 1)
{
RuntimeObject* L_9 = V_0;
if (!L_9)
{
goto IL_0036;
}
}
IL_0030:
{
RuntimeObject* L_10 = V_0;
NullCheck(L_10);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_10);
}
IL_0036:
{
IL2CPP_END_FINALLY(45)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(45)
{
IL2CPP_JUMP_TBL(0x37, IL_0037)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0037:
{
return;
}
}
// System.Void Valve.Newtonsoft.Json.Serialization.JsonContract::InvokeOnSerialized(System.Object,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonContract_InvokeOnSerialized_m8C806EEEE9EB24A2FEBC6EA78D0389B4F6A07D49 (JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * __this, RuntimeObject * ___o0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JsonContract_InvokeOnSerialized_m8C806EEEE9EB24A2FEBC6EA78D0389B4F6A07D49_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* 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) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
RuntimeObject* L_0 = __this->get__onSerializedCallbacks_11();
if (!L_0)
{
goto IL_0037;
}
}
{
RuntimeObject* L_1 = __this->get__onSerializedCallbacks_11();
NullCheck(L_1);
RuntimeObject* L_2 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<Valve.Newtonsoft.Json.Serialization.SerializationCallback>::GetEnumerator() */, IEnumerable_1_t67A64F85CBC01753DA6881E79C56C256F7FE2211_il2cpp_TypeInfo_var, L_1);
V_0 = L_2;
}
IL_0014:
try
{ // begin try (depth: 1)
{
goto IL_0023;
}
IL_0016:
{
RuntimeObject* L_3 = V_0;
NullCheck(L_3);
SerializationCallback_t8B5297123C8DFAD6A6701E2F2046982E13CE1B9C * L_4 = InterfaceFuncInvoker0< SerializationCallback_t8B5297123C8DFAD6A6701E2F2046982E13CE1B9C * >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<Valve.Newtonsoft.Json.Serialization.SerializationCallback>::get_Current() */, IEnumerator_1_t760B2B6FE3C83D69321965058557E91D277BCB89_il2cpp_TypeInfo_var, L_3);
RuntimeObject * L_5 = ___o0;
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_6 = ___context1;
NullCheck(L_4);
SerializationCallback_Invoke_m85C852BD260BEC5555160CD5F6C6AB5CD6216C53(L_4, L_5, L_6, /*hidden argument*/NULL);
}
IL_0023:
{
RuntimeObject* L_7 = V_0;
NullCheck(L_7);
bool L_8 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_7);
if (L_8)
{
goto IL_0016;
}
}
IL_002b:
{
IL2CPP_LEAVE(0x37, FINALLY_002d);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_002d;
}
FINALLY_002d:
{ // begin finally (depth: 1)
{
RuntimeObject* L_9 = V_0;
if (!L_9)
{
goto IL_0036;
}
}
IL_0030:
{
RuntimeObject* L_10 = V_0;
NullCheck(L_10);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_10);
}
IL_0036:
{
IL2CPP_END_FINALLY(45)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(45)
{
IL2CPP_JUMP_TBL(0x37, IL_0037)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0037:
{
return;
}
}
// System.Void Valve.Newtonsoft.Json.Serialization.JsonContract::InvokeOnDeserializing(System.Object,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonContract_InvokeOnDeserializing_m8ADDC47964C43DCD8C76CE325B204F246D7F0F69 (JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * __this, RuntimeObject * ___o0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JsonContract_InvokeOnDeserializing_m8ADDC47964C43DCD8C76CE325B204F246D7F0F69_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* 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) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
RuntimeObject* L_0 = __this->get__onDeserializingCallbacks_10();
if (!L_0)
{
goto IL_0037;
}
}
{
RuntimeObject* L_1 = __this->get__onDeserializingCallbacks_10();
NullCheck(L_1);
RuntimeObject* L_2 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<Valve.Newtonsoft.Json.Serialization.SerializationCallback>::GetEnumerator() */, IEnumerable_1_t67A64F85CBC01753DA6881E79C56C256F7FE2211_il2cpp_TypeInfo_var, L_1);
V_0 = L_2;
}
IL_0014:
try
{ // begin try (depth: 1)
{
goto IL_0023;
}
IL_0016:
{
RuntimeObject* L_3 = V_0;
NullCheck(L_3);
SerializationCallback_t8B5297123C8DFAD6A6701E2F2046982E13CE1B9C * L_4 = InterfaceFuncInvoker0< SerializationCallback_t8B5297123C8DFAD6A6701E2F2046982E13CE1B9C * >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<Valve.Newtonsoft.Json.Serialization.SerializationCallback>::get_Current() */, IEnumerator_1_t760B2B6FE3C83D69321965058557E91D277BCB89_il2cpp_TypeInfo_var, L_3);
RuntimeObject * L_5 = ___o0;
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_6 = ___context1;
NullCheck(L_4);
SerializationCallback_Invoke_m85C852BD260BEC5555160CD5F6C6AB5CD6216C53(L_4, L_5, L_6, /*hidden argument*/NULL);
}
IL_0023:
{
RuntimeObject* L_7 = V_0;
NullCheck(L_7);
bool L_8 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_7);
if (L_8)
{
goto IL_0016;
}
}
IL_002b:
{
IL2CPP_LEAVE(0x37, FINALLY_002d);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_002d;
}
FINALLY_002d:
{ // begin finally (depth: 1)
{
RuntimeObject* L_9 = V_0;
if (!L_9)
{
goto IL_0036;
}
}
IL_0030:
{
RuntimeObject* L_10 = V_0;
NullCheck(L_10);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_10);
}
IL_0036:
{
IL2CPP_END_FINALLY(45)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(45)
{
IL2CPP_JUMP_TBL(0x37, IL_0037)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0037:
{
return;
}
}
// System.Void Valve.Newtonsoft.Json.Serialization.JsonContract::InvokeOnDeserialized(System.Object,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonContract_InvokeOnDeserialized_m08AEC0093EC6A3884F956E3B95D4D8DD5071A4D0 (JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * __this, RuntimeObject * ___o0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JsonContract_InvokeOnDeserialized_m08AEC0093EC6A3884F956E3B95D4D8DD5071A4D0_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Enumerator_t1A19A831BA75441941488C4DFBEF3678F2B8D43C V_0;
memset((&V_0), 0, sizeof(V_0));
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D * L_0 = __this->get__onDeserializedCallbacks_9();
if (!L_0)
{
goto IL_003d;
}
}
{
List_1_tD84083ACEACED2A0A29AA10A439800FAC403B19D * L_1 = __this->get__onDeserializedCallbacks_9();
NullCheck(L_1);
Enumerator_t1A19A831BA75441941488C4DFBEF3678F2B8D43C L_2 = List_1_GetEnumerator_m7D2B2093F1FFA407229D768856BF328C7246B929(L_1, /*hidden argument*/List_1_GetEnumerator_m7D2B2093F1FFA407229D768856BF328C7246B929_RuntimeMethod_var);
V_0 = L_2;
}
IL_0014:
try
{ // begin try (depth: 1)
{
goto IL_0024;
}
IL_0016:
{
SerializationCallback_t8B5297123C8DFAD6A6701E2F2046982E13CE1B9C * L_3 = Enumerator_get_Current_m24C9B51A40544679FAB4E3BCFDFB09765E223F51_inline((Enumerator_t1A19A831BA75441941488C4DFBEF3678F2B8D43C *)(&V_0), /*hidden argument*/Enumerator_get_Current_m24C9B51A40544679FAB4E3BCFDFB09765E223F51_RuntimeMethod_var);
RuntimeObject * L_4 = ___o0;
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_5 = ___context1;
NullCheck(L_3);
SerializationCallback_Invoke_m85C852BD260BEC5555160CD5F6C6AB5CD6216C53(L_3, L_4, L_5, /*hidden argument*/NULL);
}
IL_0024:
{
bool L_6 = Enumerator_MoveNext_m4CBF49756F227E2743AC348A57E9CC6B0C8991E1((Enumerator_t1A19A831BA75441941488C4DFBEF3678F2B8D43C *)(&V_0), /*hidden argument*/Enumerator_MoveNext_m4CBF49756F227E2743AC348A57E9CC6B0C8991E1_RuntimeMethod_var);
if (L_6)
{
goto IL_0016;
}
}
IL_002d:
{
IL2CPP_LEAVE(0x3D, FINALLY_002f);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_002f;
}
FINALLY_002f:
{ // begin finally (depth: 1)
Enumerator_Dispose_m64BC59AA82A6589BCCB99B429CE347ECFDD67BDD((Enumerator_t1A19A831BA75441941488C4DFBEF3678F2B8D43C *)(&V_0), /*hidden argument*/Enumerator_Dispose_m64BC59AA82A6589BCCB99B429CE347ECFDD67BDD_RuntimeMethod_var);
IL2CPP_END_FINALLY(47)
} // end finally (depth: 1)
IL2CPP_CLEANUP(47)
{
IL2CPP_JUMP_TBL(0x3D, IL_003d)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_003d:
{
return;
}
}
// System.Void Valve.Newtonsoft.Json.Serialization.JsonContract::InvokeOnError(System.Object,System.Runtime.Serialization.StreamingContext,Valve.Newtonsoft.Json.Serialization.ErrorContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonContract_InvokeOnError_mD5BE6CDBA3741D750E195074E4F370E3F93C4F7D (JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * __this, RuntimeObject * ___o0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, ErrorContext_t61739A48B44A4707051088E7013FD4E347DBE7A0 * ___errorContext2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JsonContract_InvokeOnError_mD5BE6CDBA3741D750E195074E4F370E3F93C4F7D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* 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) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
RuntimeObject* L_0 = __this->get__onErrorCallbacks_13();
if (!L_0)
{
goto IL_0038;
}
}
{
RuntimeObject* L_1 = __this->get__onErrorCallbacks_13();
NullCheck(L_1);
RuntimeObject* L_2 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<Valve.Newtonsoft.Json.Serialization.SerializationErrorCallback>::GetEnumerator() */, IEnumerable_1_t3E8B8FEE3B042CD89587380EE146ECB060C71162_il2cpp_TypeInfo_var, L_1);
V_0 = L_2;
}
IL_0014:
try
{ // begin try (depth: 1)
{
goto IL_0024;
}
IL_0016:
{
RuntimeObject* L_3 = V_0;
NullCheck(L_3);
SerializationErrorCallback_t6EAECB0A4E241F49CA0D2A29EFCF4DCDDC9884B2 * L_4 = InterfaceFuncInvoker0< SerializationErrorCallback_t6EAECB0A4E241F49CA0D2A29EFCF4DCDDC9884B2 * >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<Valve.Newtonsoft.Json.Serialization.SerializationErrorCallback>::get_Current() */, IEnumerator_1_t184887DC60B93E8523EA83831B79DF1202357606_il2cpp_TypeInfo_var, L_3);
RuntimeObject * L_5 = ___o0;
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_6 = ___context1;
ErrorContext_t61739A48B44A4707051088E7013FD4E347DBE7A0 * L_7 = ___errorContext2;
NullCheck(L_4);
SerializationErrorCallback_Invoke_m66D2E1E5A9BF46E924AD9FA1B8B8F9A60F6AEF92(L_4, L_5, L_6, L_7, /*hidden argument*/NULL);
}
IL_0024:
{
RuntimeObject* L_8 = V_0;
NullCheck(L_8);
bool L_9 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_8);
if (L_9)
{
goto IL_0016;
}
}
IL_002c:
{
IL2CPP_LEAVE(0x38, FINALLY_002e);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_002e;
}
FINALLY_002e:
{ // begin finally (depth: 1)
{
RuntimeObject* L_10 = V_0;
if (!L_10)
{
goto IL_0037;
}
}
IL_0031:
{
RuntimeObject* L_11 = V_0;
NullCheck(L_11);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_11);
}
IL_0037:
{
IL2CPP_END_FINALLY(46)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(46)
{
IL2CPP_JUMP_TBL(0x38, IL_0038)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0038:
{
return;
}
}
// Valve.Newtonsoft.Json.Serialization.SerializationCallback Valve.Newtonsoft.Json.Serialization.JsonContract::CreateSerializationCallback(System.Reflection.MethodInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SerializationCallback_t8B5297123C8DFAD6A6701E2F2046982E13CE1B9C * JsonContract_CreateSerializationCallback_m80237D008F37FEF1CAC489A20645120CE18FDE80 (MethodInfo_t * ___callbackMethodInfo0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JsonContract_CreateSerializationCallback_m80237D008F37FEF1CAC489A20645120CE18FDE80_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
U3CU3Ec__DisplayClass73_0_t10F98427038E7A3850E5C9CCA33A1494BA83E561 * L_0 = (U3CU3Ec__DisplayClass73_0_t10F98427038E7A3850E5C9CCA33A1494BA83E561 *)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass73_0_t10F98427038E7A3850E5C9CCA33A1494BA83E561_il2cpp_TypeInfo_var);
U3CU3Ec__DisplayClass73_0__ctor_mD8F4D97E6E75082E4646E3CA1AED5E83EA3515D2(L_0, /*hidden argument*/NULL);
U3CU3Ec__DisplayClass73_0_t10F98427038E7A3850E5C9CCA33A1494BA83E561 * L_1 = L_0;
MethodInfo_t * L_2 = ___callbackMethodInfo0;
NullCheck(L_1);
L_1->set_callbackMethodInfo_0(L_2);
SerializationCallback_t8B5297123C8DFAD6A6701E2F2046982E13CE1B9C * L_3 = (SerializationCallback_t8B5297123C8DFAD6A6701E2F2046982E13CE1B9C *)il2cpp_codegen_object_new(SerializationCallback_t8B5297123C8DFAD6A6701E2F2046982E13CE1B9C_il2cpp_TypeInfo_var);
SerializationCallback__ctor_mE68F23E5ADB4421AC6AFC613D1AF9407F1118EF6(L_3, L_1, (intptr_t)((intptr_t)U3CU3Ec__DisplayClass73_0_U3CCreateSerializationCallbackU3Eb__0_m68E7A9BC7064F2136DA18D34F7BF91D4795C7C58_RuntimeMethod_var), /*hidden argument*/NULL);
return L_3;
}
}
// Valve.Newtonsoft.Json.Serialization.SerializationErrorCallback Valve.Newtonsoft.Json.Serialization.JsonContract::CreateSerializationErrorCallback(System.Reflection.MethodInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SerializationErrorCallback_t6EAECB0A4E241F49CA0D2A29EFCF4DCDDC9884B2 * JsonContract_CreateSerializationErrorCallback_m570404ACFD6C0BACE5B3B39519FE05ADB43FA82F (MethodInfo_t * ___callbackMethodInfo0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JsonContract_CreateSerializationErrorCallback_m570404ACFD6C0BACE5B3B39519FE05ADB43FA82F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
U3CU3Ec__DisplayClass74_0_tB49FD8A25B86AF68D3E126A7721C2B7F46F80A92 * L_0 = (U3CU3Ec__DisplayClass74_0_tB49FD8A25B86AF68D3E126A7721C2B7F46F80A92 *)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass74_0_tB49FD8A25B86AF68D3E126A7721C2B7F46F80A92_il2cpp_TypeInfo_var);
U3CU3Ec__DisplayClass74_0__ctor_m4F6124EE42C972851F9DA6CE9B4D85607BF614E2(L_0, /*hidden argument*/NULL);
U3CU3Ec__DisplayClass74_0_tB49FD8A25B86AF68D3E126A7721C2B7F46F80A92 * L_1 = L_0;
MethodInfo_t * L_2 = ___callbackMethodInfo0;
NullCheck(L_1);
L_1->set_callbackMethodInfo_0(L_2);
SerializationErrorCallback_t6EAECB0A4E241F49CA0D2A29EFCF4DCDDC9884B2 * L_3 = (SerializationErrorCallback_t6EAECB0A4E241F49CA0D2A29EFCF4DCDDC9884B2 *)il2cpp_codegen_object_new(SerializationErrorCallback_t6EAECB0A4E241F49CA0D2A29EFCF4DCDDC9884B2_il2cpp_TypeInfo_var);
SerializationErrorCallback__ctor_mA0AF0534C0654B75C3B16AAF86F4B511A6A2BE4B(L_3, L_1, (intptr_t)((intptr_t)U3CU3Ec__DisplayClass74_0_U3CCreateSerializationErrorCallbackU3Eb__0_mECEFFBADC159DAF97C9B57B0AEE860A7C2599133_RuntimeMethod_var), /*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
// System.Void Valve.Newtonsoft.Json.Serialization.JsonContract_<>c__DisplayClass73_0::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass73_0__ctor_mD8F4D97E6E75082E4646E3CA1AED5E83EA3515D2 (U3CU3Ec__DisplayClass73_0_t10F98427038E7A3850E5C9CCA33A1494BA83E561 * __this, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void Valve.Newtonsoft.Json.Serialization.JsonContract_<>c__DisplayClass73_0::<CreateSerializationCallback>b__0(System.Object,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass73_0_U3CCreateSerializationCallbackU3Eb__0_m68E7A9BC7064F2136DA18D34F7BF91D4795C7C58 (U3CU3Ec__DisplayClass73_0_t10F98427038E7A3850E5C9CCA33A1494BA83E561 * __this, RuntimeObject * ___o0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CU3Ec__DisplayClass73_0_U3CCreateSerializationCallbackU3Eb__0_m68E7A9BC7064F2136DA18D34F7BF91D4795C7C58_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
MethodInfo_t * L_0 = __this->get_callbackMethodInfo_0();
RuntimeObject * L_1 = ___o0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = L_2;
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_4 = ___context1;
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_5 = L_4;
RuntimeObject * L_6 = Box(StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034_il2cpp_TypeInfo_var, &L_5);
NullCheck(L_3);
ArrayElementTypeCheck (L_3, L_6);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_6);
NullCheck(L_0);
MethodBase_Invoke_m471794D56262D9DB5B5A324883030AB16BD39674(L_0, L_1, L_3, /*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 Valve.Newtonsoft.Json.Serialization.JsonContract_<>c__DisplayClass74_0::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass74_0__ctor_m4F6124EE42C972851F9DA6CE9B4D85607BF614E2 (U3CU3Ec__DisplayClass74_0_tB49FD8A25B86AF68D3E126A7721C2B7F46F80A92 * __this, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void Valve.Newtonsoft.Json.Serialization.JsonContract_<>c__DisplayClass74_0::<CreateSerializationErrorCallback>b__0(System.Object,System.Runtime.Serialization.StreamingContext,Valve.Newtonsoft.Json.Serialization.ErrorContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass74_0_U3CCreateSerializationErrorCallbackU3Eb__0_mECEFFBADC159DAF97C9B57B0AEE860A7C2599133 (U3CU3Ec__DisplayClass74_0_tB49FD8A25B86AF68D3E126A7721C2B7F46F80A92 * __this, RuntimeObject * ___o0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, ErrorContext_t61739A48B44A4707051088E7013FD4E347DBE7A0 * ___econtext2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CU3Ec__DisplayClass74_0_U3CCreateSerializationErrorCallbackU3Eb__0_mECEFFBADC159DAF97C9B57B0AEE860A7C2599133_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
MethodInfo_t * L_0 = __this->get_callbackMethodInfo_0();
RuntimeObject * L_1 = ___o0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = L_2;
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_4 = ___context1;
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_5 = L_4;
RuntimeObject * L_6 = Box(StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034_il2cpp_TypeInfo_var, &L_5);
NullCheck(L_3);
ArrayElementTypeCheck (L_3, L_6);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_6);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_7 = L_3;
ErrorContext_t61739A48B44A4707051088E7013FD4E347DBE7A0 * L_8 = ___econtext2;
NullCheck(L_7);
ArrayElementTypeCheck (L_7, L_8);
(L_7)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_8);
NullCheck(L_0);
MethodBase_Invoke_m471794D56262D9DB5B5A324883030AB16BD39674(L_0, L_1, L_7, /*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.Func`2<System.String,System.String> Valve.Newtonsoft.Json.Serialization.JsonDictionaryContract::get_DictionaryKeyResolver()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Func_2_tD9EBF5FAD46B4F561FE5ABE814DC60E6253B8B96 * JsonDictionaryContract_get_DictionaryKeyResolver_m6F4CEEB99943908EA85C1904FC484A4296A55568 (JsonDictionaryContract_t7D39A549ABAEDA655A1140F78778D9B36692266C * __this, const RuntimeMethod* method)
{
{
Func_2_tD9EBF5FAD46B4F561FE5ABE814DC60E6253B8B96 * L_0 = __this->get_U3CDictionaryKeyResolverU3Ek__BackingField_27();
return L_0;
}
}
// System.Void Valve.Newtonsoft.Json.Serialization.JsonDictionaryContract::set_DictionaryKeyResolver(System.Func`2<System.String,System.String>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonDictionaryContract_set_DictionaryKeyResolver_m1FDDCC3B1C40A57217ECBD9C6B7817F095A6B32A (JsonDictionaryContract_t7D39A549ABAEDA655A1140F78778D9B36692266C * __this, Func_2_tD9EBF5FAD46B4F561FE5ABE814DC60E6253B8B96 * ___value0, const RuntimeMethod* method)
{
{
Func_2_tD9EBF5FAD46B4F561FE5ABE814DC60E6253B8B96 * L_0 = ___value0;
__this->set_U3CDictionaryKeyResolverU3Ek__BackingField_27(L_0);
return;
}
}
// System.Type Valve.Newtonsoft.Json.Serialization.JsonDictionaryContract::get_DictionaryKeyType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * JsonDictionaryContract_get_DictionaryKeyType_m8AB18997E686EF0B88B8306998130323C07C3306 (JsonDictionaryContract_t7D39A549ABAEDA655A1140F78778D9B36692266C * __this, const RuntimeMethod* method)
{
{
Type_t * L_0 = __this->get_U3CDictionaryKeyTypeU3Ek__BackingField_28();
return L_0;
}
}
// System.Void Valve.Newtonsoft.Json.Serialization.JsonDictionaryContract::set_DictionaryKeyType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonDictionaryContract_set_DictionaryKeyType_mB6E03C44881CE214102AFEF4C7A324ED668939B4 (JsonDictionaryContract_t7D39A549ABAEDA655A1140F78778D9B36692266C * __this, Type_t * ___value0, const RuntimeMethod* method)
{
{
Type_t * L_0 = ___value0;
__this->set_U3CDictionaryKeyTypeU3Ek__BackingField_28(L_0);
return;
}
}
// System.Type Valve.Newtonsoft.Json.Serialization.JsonDictionaryContract::get_DictionaryValueType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * JsonDictionaryContract_get_DictionaryValueType_mB354460AD2F7AFCE45F309951B8F9EDE009A3CDB (JsonDictionaryContract_t7D39A549ABAEDA655A1140F78778D9B36692266C * __this, const RuntimeMethod* method)
{
{
Type_t * L_0 = __this->get_U3CDictionaryValueTypeU3Ek__BackingField_29();
return L_0;
}
}
// System.Void Valve.Newtonsoft.Json.Serialization.JsonDictionaryContract::set_DictionaryValueType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonDictionaryContract_set_DictionaryValueType_m2F9D7D3F7F66D7CA191F7B3A9B2CEBC7A8A2B910 (JsonDictionaryContract_t7D39A549ABAEDA655A1140F78778D9B36692266C * __this, Type_t * ___value0, const RuntimeMethod* method)
{
{
Type_t * L_0 = ___value0;
__this->set_U3CDictionaryValueTypeU3Ek__BackingField_29(L_0);
return;
}
}
// Valve.Newtonsoft.Json.Serialization.JsonContract Valve.Newtonsoft.Json.Serialization.JsonDictionaryContract::get_KeyContract()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * JsonDictionaryContract_get_KeyContract_m073F8CBA64FCA9C9A5FBB9380E06C87225301C72 (JsonDictionaryContract_t7D39A549ABAEDA655A1140F78778D9B36692266C * __this, const RuntimeMethod* method)
{
{
JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * L_0 = __this->get_U3CKeyContractU3Ek__BackingField_30();
return L_0;
}
}
// System.Void Valve.Newtonsoft.Json.Serialization.JsonDictionaryContract::set_KeyContract(Valve.Newtonsoft.Json.Serialization.JsonContract)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonDictionaryContract_set_KeyContract_m470307FC3F9A4F86210C5707DD9711C4F389E5E3 (JsonDictionaryContract_t7D39A549ABAEDA655A1140F78778D9B36692266C * __this, JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * ___value0, const RuntimeMethod* method)
{
{
JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * L_0 = ___value0;
__this->set_U3CKeyContractU3Ek__BackingField_30(L_0);
return;
}
}
// System.Boolean Valve.Newtonsoft.Json.Serialization.JsonDictionaryContract::get_ShouldCreateWrapper()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonDictionaryContract_get_ShouldCreateWrapper_m33CB15D7EC58E212DBEB0E607CB350264F322F1D (JsonDictionaryContract_t7D39A549ABAEDA655A1140F78778D9B36692266C * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_U3CShouldCreateWrapperU3Ek__BackingField_35();
return L_0;
}
}
// System.Void Valve.Newtonsoft.Json.Serialization.JsonDictionaryContract::set_ShouldCreateWrapper(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonDictionaryContract_set_ShouldCreateWrapper_mFC7263B8CB80D12A013D2B9360FC36C08ED7BB97 (JsonDictionaryContract_t7D39A549ABAEDA655A1140F78778D9B36692266C * __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->set_U3CShouldCreateWrapperU3Ek__BackingField_35(L_0);
return;
}
}
// Valve.Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object> Valve.Newtonsoft.Json.Serialization.JsonDictionaryContract::get_ParameterizedCreator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 * JsonDictionaryContract_get_ParameterizedCreator_m1C664701826D4C327358BDFA4B6D83C12B981E9D (JsonDictionaryContract_t7D39A549ABAEDA655A1140F78778D9B36692266C * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JsonDictionaryContract_get_ParameterizedCreator_m1C664701826D4C327358BDFA4B6D83C12B981E9D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 * L_0 = __this->get__parameterizedCreator_38();
if (L_0)
{
goto IL_001e;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(JsonTypeReflector_tC161A1BF2506AB16B738C3935C2691A92B7A8C55_il2cpp_TypeInfo_var);
ReflectionDelegateFactory_t87E79CD61C3504844C338EEC1949177370F2029A * L_1 = JsonTypeReflector_get_ReflectionDelegateFactory_mAD718C1AD00934D6A3A5B334C5494929E45A8DC7(/*hidden argument*/NULL);
ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * L_2 = __this->get__parameterizedConstructor_36();
NullCheck(L_1);
ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 * L_3 = VirtFuncInvoker1< ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 *, MethodBase_t * >::Invoke(5 /* Valve.Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object> Valve.Newtonsoft.Json.Utilities.ReflectionDelegateFactory::CreateParameterizedConstructor(System.Reflection.MethodBase) */, L_1, L_2);
__this->set__parameterizedCreator_38(L_3);
}
IL_001e:
{
ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 * L_4 = __this->get__parameterizedCreator_38();
return L_4;
}
}
// Valve.Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object> Valve.Newtonsoft.Json.Serialization.JsonDictionaryContract::get_OverrideCreator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 * JsonDictionaryContract_get_OverrideCreator_mA154705B0D99BCF8CCA0DFA6B71965B45F0D3DE7 (JsonDictionaryContract_t7D39A549ABAEDA655A1140F78778D9B36692266C * __this, const RuntimeMethod* method)
{
{
ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 * L_0 = __this->get__overrideCreator_37();
return L_0;
}
}
// System.Void Valve.Newtonsoft.Json.Serialization.JsonDictionaryContract::set_OverrideCreator(Valve.Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonDictionaryContract_set_OverrideCreator_m7D5C91C09FAF108A51CE4EAABF59F55DECDF54B5 (JsonDictionaryContract_t7D39A549ABAEDA655A1140F78778D9B36692266C * __this, ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 * ___value0, const RuntimeMethod* method)
{
{
ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 * L_0 = ___value0;
__this->set__overrideCreator_37(L_0);
return;
}
}
// System.Boolean Valve.Newtonsoft.Json.Serialization.JsonDictionaryContract::get_HasParameterizedCreator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonDictionaryContract_get_HasParameterizedCreator_mC567FA98200152009ABEFB52199373C9CB13C901 (JsonDictionaryContract_t7D39A549ABAEDA655A1140F78778D9B36692266C * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_U3CHasParameterizedCreatorU3Ek__BackingField_39();
return L_0;
}
}
// System.Void Valve.Newtonsoft.Json.Serialization.JsonDictionaryContract::set_HasParameterizedCreator(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonDictionaryContract_set_HasParameterizedCreator_m8BCF12CC0AAC9F1DF6FEB1C52E41BFC00243D3B0 (JsonDictionaryContract_t7D39A549ABAEDA655A1140F78778D9B36692266C * __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->set_U3CHasParameterizedCreatorU3Ek__BackingField_39(L_0);
return;
}
}
// System.Boolean Valve.Newtonsoft.Json.Serialization.JsonDictionaryContract::get_HasParameterizedCreatorInternal()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonDictionaryContract_get_HasParameterizedCreatorInternal_mBEDD9BE5CA9B57BF84B6FFBE3928D91852E457A3 (JsonDictionaryContract_t7D39A549ABAEDA655A1140F78778D9B36692266C * __this, const RuntimeMethod* method)
{
{
bool L_0 = JsonDictionaryContract_get_HasParameterizedCreator_mC567FA98200152009ABEFB52199373C9CB13C901_inline(__this, /*hidden argument*/NULL);
if (L_0)
{
goto IL_001a;
}
}
{
ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 * L_1 = __this->get__parameterizedCreator_38();
if (L_1)
{
goto IL_001a;
}
}
{
ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * L_2 = __this->get__parameterizedConstructor_36();
return (bool)((!(((RuntimeObject*)(ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF *)L_2) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
IL_001a:
{
return (bool)1;
}
}
// System.Void Valve.Newtonsoft.Json.Serialization.JsonDictionaryContract::.ctor(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonDictionaryContract__ctor_m71EEB830BC26666C81BB1157E13C344ED1DD34A9 (JsonDictionaryContract_t7D39A549ABAEDA655A1140F78778D9B36692266C * __this, Type_t * ___underlyingType0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JsonDictionaryContract__ctor_m71EEB830BC26666C81BB1157E13C344ED1DD34A9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Type_t * V_0 = NULL;
Type_t * V_1 = NULL;
Type_t * V_2 = NULL;
{
Type_t * L_0 = ___underlyingType0;
JsonContainerContract__ctor_mEA7E83B6B87C0584E30AE5B52DACA72037AFD37B(__this, L_0, /*hidden argument*/NULL);
((JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 *)__this)->set_ContractType_5(5);
Type_t * L_1 = ___underlyingType0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_2 = { reinterpret_cast<intptr_t> (IDictionary_2_t422C090F714C36DDE0089AF96A98CBE6FC11EA06_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_3 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_2, /*hidden argument*/NULL);
Type_t ** L_4 = __this->get_address_of__genericCollectionDefinitionType_31();
IL2CPP_RUNTIME_CLASS_INIT(ReflectionUtils_t1845D588ADA15C351615E925042ECF790B622987_il2cpp_TypeInfo_var);
bool L_5 = ReflectionUtils_ImplementsGenericDefinition_m58DB3D664FDF436112B4EE8A4D653B53E01773B1(L_1, L_3, (Type_t **)L_4, /*hidden argument*/NULL);
if (!L_5)
{
goto IL_007e;
}
}
{
Type_t * L_6 = __this->get__genericCollectionDefinitionType_31();
NullCheck(L_6);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_7 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(107 /* System.Type[] System.Type::GetGenericArguments() */, L_6);
NullCheck(L_7);
int32_t L_8 = 0;
Type_t * L_9 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_8));
V_0 = L_9;
Type_t * L_10 = __this->get__genericCollectionDefinitionType_31();
NullCheck(L_10);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_11 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(107 /* System.Type[] System.Type::GetGenericArguments() */, L_10);
NullCheck(L_11);
int32_t L_12 = 1;
Type_t * L_13 = (L_11)->GetAt(static_cast<il2cpp_array_size_t>(L_12));
V_1 = L_13;
Type_t * L_14 = JsonContract_get_UnderlyingType_m7F278992455AC78881DB024ACB6646D1086025F1_inline(__this, /*hidden argument*/NULL);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_15 = { reinterpret_cast<intptr_t> (IDictionary_2_t422C090F714C36DDE0089AF96A98CBE6FC11EA06_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_16 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_15, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(ReflectionUtils_t1845D588ADA15C351615E925042ECF790B622987_il2cpp_TypeInfo_var);
bool L_17 = ReflectionUtils_IsGenericDefinition_m11708AE621627DC05121D7397E4A08B7570E962D(L_14, L_16, /*hidden argument*/NULL);
if (!L_17)
{
goto IL_00af;
}
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_18 = { reinterpret_cast<intptr_t> (Dictionary_2_tC3B7C172F472D2372732454922AB169C38E69CE9_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_19 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_18, /*hidden argument*/NULL);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_20 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)2);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_21 = L_20;
Type_t * L_22 = V_0;
NullCheck(L_21);
ArrayElementTypeCheck (L_21, L_22);
(L_21)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_22);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_23 = L_21;
Type_t * L_24 = V_1;
NullCheck(L_23);
ArrayElementTypeCheck (L_23, L_24);
(L_23)->SetAt(static_cast<il2cpp_array_size_t>(1), (Type_t *)L_24);
NullCheck(L_19);
Type_t * L_25 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(103 /* System.Type System.Type::MakeGenericType(System.Type[]) */, L_19, L_23);
JsonContract_set_CreatedType_mDE35D10E5501FF83D76D15188B22BC4697BE5687(__this, L_25, /*hidden argument*/NULL);
goto IL_00af;
}
IL_007e:
{
Type_t * L_26 = JsonContract_get_UnderlyingType_m7F278992455AC78881DB024ACB6646D1086025F1_inline(__this, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(ReflectionUtils_t1845D588ADA15C351615E925042ECF790B622987_il2cpp_TypeInfo_var);
ReflectionUtils_GetDictionaryKeyValueTypes_m3F693CE4F51DB3B497F85CBD5669648BF4C26029(L_26, (Type_t **)(&V_0), (Type_t **)(&V_1), /*hidden argument*/NULL);
Type_t * L_27 = JsonContract_get_UnderlyingType_m7F278992455AC78881DB024ACB6646D1086025F1_inline(__this, /*hidden argument*/NULL);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_28 = { reinterpret_cast<intptr_t> (IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_29 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_28, /*hidden argument*/NULL);
if ((!(((RuntimeObject*)(Type_t *)L_27) == ((RuntimeObject*)(Type_t *)L_29))))
{
goto IL_00af;
}
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_30 = { reinterpret_cast<intptr_t> (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_31 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_30, /*hidden argument*/NULL);
JsonContract_set_CreatedType_mDE35D10E5501FF83D76D15188B22BC4697BE5687(__this, L_31, /*hidden argument*/NULL);
}
IL_00af:
{
Type_t * L_32 = V_0;
if (!L_32)
{
goto IL_0100;
}
}
{
Type_t * L_33 = V_1;
if (!L_33)
{
goto IL_0100;
}
}
{
Type_t * L_34 = JsonContract_get_CreatedType_mD4067F78EE8562AECD07B981C18C57182277E1ED_inline(__this, /*hidden argument*/NULL);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_35 = { reinterpret_cast<intptr_t> (KeyValuePair_2_t6EBC4F45DFA11BD66F12393D4E3AB14BD21E1D7E_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_36 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_35, /*hidden argument*/NULL);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_37 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)2);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_38 = L_37;
Type_t * L_39 = V_0;
NullCheck(L_38);
ArrayElementTypeCheck (L_38, L_39);
(L_38)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_39);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_40 = L_38;
Type_t * L_41 = V_1;
NullCheck(L_40);
ArrayElementTypeCheck (L_40, L_41);
(L_40)->SetAt(static_cast<il2cpp_array_size_t>(1), (Type_t *)L_41);
NullCheck(L_36);
Type_t * L_42 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(103 /* System.Type System.Type::MakeGenericType(System.Type[]) */, L_36, L_40);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_43 = { reinterpret_cast<intptr_t> (IDictionary_2_t422C090F714C36DDE0089AF96A98CBE6FC11EA06_0_0_0_var) };
Type_t * L_44 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_43, /*hidden argument*/NULL);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_45 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)2);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_46 = L_45;
Type_t * L_47 = V_0;
NullCheck(L_46);
ArrayElementTypeCheck (L_46, L_47);
(L_46)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_47);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_48 = L_46;
Type_t * L_49 = V_1;
NullCheck(L_48);
ArrayElementTypeCheck (L_48, L_49);
(L_48)->SetAt(static_cast<il2cpp_array_size_t>(1), (Type_t *)L_49);
NullCheck(L_44);
Type_t * L_50 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(103 /* System.Type System.Type::MakeGenericType(System.Type[]) */, L_44, L_48);
ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * L_51 = CollectionUtils_ResolveEnumerableCollectionConstructor_m62B5DB9ABE0D2B53B86317FC222795C0FAA5342A(L_34, L_42, L_50, /*hidden argument*/NULL);
__this->set__parameterizedConstructor_36(L_51);
}
IL_0100:
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_52 = { reinterpret_cast<intptr_t> (IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_53 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_52, /*hidden argument*/NULL);
Type_t * L_54 = JsonContract_get_CreatedType_mD4067F78EE8562AECD07B981C18C57182277E1ED_inline(__this, /*hidden argument*/NULL);
NullCheck(L_53);
bool L_55 = VirtFuncInvoker1< bool, Type_t * >::Invoke(118 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_53, L_54);
JsonDictionaryContract_set_ShouldCreateWrapper_mFC7263B8CB80D12A013D2B9360FC36C08ED7BB97_inline(__this, (bool)((((int32_t)L_55) == ((int32_t)0))? 1 : 0), /*hidden argument*/NULL);
Type_t * L_56 = V_0;
JsonDictionaryContract_set_DictionaryKeyType_mB6E03C44881CE214102AFEF4C7A324ED668939B4_inline(__this, L_56, /*hidden argument*/NULL);
Type_t * L_57 = V_1;
JsonDictionaryContract_set_DictionaryValueType_m2F9D7D3F7F66D7CA191F7B3A9B2CEBC7A8A2B910_inline(__this, L_57, /*hidden argument*/NULL);
Type_t * L_58 = JsonDictionaryContract_get_DictionaryValueType_mB354460AD2F7AFCE45F309951B8F9EDE009A3CDB_inline(__this, /*hidden argument*/NULL);
if (!L_58)
{
goto IL_0161;
}
}
{
Type_t * L_59 = JsonDictionaryContract_get_DictionaryValueType_mB354460AD2F7AFCE45F309951B8F9EDE009A3CDB_inline(__this, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(ReflectionUtils_t1845D588ADA15C351615E925042ECF790B622987_il2cpp_TypeInfo_var);
bool L_60 = ReflectionUtils_IsNullableType_m8EA034BEA71F38E85D062B63F7C87C1AC02F4B70(L_59, /*hidden argument*/NULL);
if (!L_60)
{
goto IL_0161;
}
}
{
Type_t * L_61 = JsonContract_get_CreatedType_mD4067F78EE8562AECD07B981C18C57182277E1ED_inline(__this, /*hidden argument*/NULL);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_62 = { reinterpret_cast<intptr_t> (Dictionary_2_tC3B7C172F472D2372732454922AB169C38E69CE9_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_63 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_62, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(ReflectionUtils_t1845D588ADA15C351615E925042ECF790B622987_il2cpp_TypeInfo_var);
bool L_64 = ReflectionUtils_InheritsGenericDefinition_mEFCFA43C1BB68B2B873520686173E720BE618D20(L_61, L_63, (Type_t **)(&V_2), /*hidden argument*/NULL);
if (!L_64)
{
goto IL_0161;
}
}
{
JsonDictionaryContract_set_ShouldCreateWrapper_mFC7263B8CB80D12A013D2B9360FC36C08ED7BB97_inline(__this, (bool)1, /*hidden argument*/NULL);
}
IL_0161:
{
return;
}
}
// Valve.Newtonsoft.Json.Utilities.IWrappedDictionary Valve.Newtonsoft.Json.Serialization.JsonDictionaryContract::CreateWrapper(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonDictionaryContract_CreateWrapper_m671BE283670167B5EC7AB21FA52DC855489EA1CE (JsonDictionaryContract_t7D39A549ABAEDA655A1140F78778D9B36692266C * __this, RuntimeObject * ___dictionary0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JsonDictionaryContract_CreateWrapper_m671BE283670167B5EC7AB21FA52DC855489EA1CE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * V_0 = NULL;
{
ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 * L_0 = __this->get__genericWrapperCreator_33();
if (L_0)
{
goto IL_0061;
}
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_1 = { reinterpret_cast<intptr_t> (DictionaryWrapper_2_t0AF7FC79CC13A4CCBDD264CF6A459A9936CB8E72_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_2 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_1, /*hidden argument*/NULL);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_3 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)2);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_4 = L_3;
Type_t * L_5 = JsonDictionaryContract_get_DictionaryKeyType_m8AB18997E686EF0B88B8306998130323C07C3306_inline(__this, /*hidden argument*/NULL);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_5);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_5);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_6 = L_4;
Type_t * L_7 = JsonDictionaryContract_get_DictionaryValueType_mB354460AD2F7AFCE45F309951B8F9EDE009A3CDB_inline(__this, /*hidden argument*/NULL);
NullCheck(L_6);
ArrayElementTypeCheck (L_6, L_7);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(1), (Type_t *)L_7);
NullCheck(L_2);
Type_t * L_8 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(103 /* System.Type System.Type::MakeGenericType(System.Type[]) */, L_2, L_6);
__this->set__genericWrapperType_32(L_8);
Type_t * L_9 = __this->get__genericWrapperType_32();
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_10 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_11 = L_10;
Type_t * L_12 = __this->get__genericCollectionDefinitionType_31();
NullCheck(L_11);
ArrayElementTypeCheck (L_11, L_12);
(L_11)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_12);
NullCheck(L_9);
ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * L_13 = Type_GetConstructor_m4371D7AD6A8E15067C698696B0167323CBC7F3DA(L_9, L_11, /*hidden argument*/NULL);
V_0 = L_13;
IL2CPP_RUNTIME_CLASS_INIT(JsonTypeReflector_tC161A1BF2506AB16B738C3935C2691A92B7A8C55_il2cpp_TypeInfo_var);
ReflectionDelegateFactory_t87E79CD61C3504844C338EEC1949177370F2029A * L_14 = JsonTypeReflector_get_ReflectionDelegateFactory_mAD718C1AD00934D6A3A5B334C5494929E45A8DC7(/*hidden argument*/NULL);
ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * L_15 = V_0;
NullCheck(L_14);
ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 * L_16 = VirtFuncInvoker1< ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 *, MethodBase_t * >::Invoke(5 /* Valve.Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object> Valve.Newtonsoft.Json.Utilities.ReflectionDelegateFactory::CreateParameterizedConstructor(System.Reflection.MethodBase) */, L_14, L_15);
__this->set__genericWrapperCreator_33(L_16);
}
IL_0061:
{
ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 * L_17 = __this->get__genericWrapperCreator_33();
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_18 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_19 = L_18;
RuntimeObject * L_20 = ___dictionary0;
NullCheck(L_19);
ArrayElementTypeCheck (L_19, L_20);
(L_19)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_20);
NullCheck(L_17);
RuntimeObject * L_21 = ObjectConstructor_1_Invoke_m76CEC2C9D43866532AC0B3DD9666B693A0C2FA70(L_17, L_19, /*hidden argument*/ObjectConstructor_1_Invoke_m76CEC2C9D43866532AC0B3DD9666B693A0C2FA70_RuntimeMethod_var);
return ((RuntimeObject*)Castclass((RuntimeObject*)L_21, IWrappedDictionary_t2B08E1502999DD6B4187B541498A8FE24051B4FD_il2cpp_TypeInfo_var));
}
}
// System.Collections.IDictionary Valve.Newtonsoft.Json.Serialization.JsonDictionaryContract::CreateTemporaryDictionary()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonDictionaryContract_CreateTemporaryDictionary_m1A90F1DF540BC313DA352CFD50024409BDB5C019 (JsonDictionaryContract_t7D39A549ABAEDA655A1140F78778D9B36692266C * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JsonDictionaryContract_CreateTemporaryDictionary_m1A90F1DF540BC313DA352CFD50024409BDB5C019_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Type_t * V_0 = NULL;
Type_t * G_B3_0 = NULL;
int32_t G_B3_1 = 0;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* G_B3_2 = NULL;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* G_B3_3 = NULL;
Type_t * G_B3_4 = NULL;
Type_t * G_B2_0 = NULL;
int32_t G_B2_1 = 0;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* G_B2_2 = NULL;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* G_B2_3 = NULL;
Type_t * G_B2_4 = NULL;
Type_t * G_B5_0 = NULL;
int32_t G_B5_1 = 0;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* G_B5_2 = NULL;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* G_B5_3 = NULL;
Type_t * G_B5_4 = NULL;
Type_t * G_B4_0 = NULL;
int32_t G_B4_1 = 0;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* G_B4_2 = NULL;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* G_B4_3 = NULL;
Type_t * G_B4_4 = NULL;
{
Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 * L_0 = __this->get__genericTemporaryDictionaryCreator_34();
if (L_0)
{
goto IL_005d;
}
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_1 = { reinterpret_cast<intptr_t> (Dictionary_2_tC3B7C172F472D2372732454922AB169C38E69CE9_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_2 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_1, /*hidden argument*/NULL);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_3 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)2);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_4 = L_3;
Type_t * L_5 = JsonDictionaryContract_get_DictionaryKeyType_m8AB18997E686EF0B88B8306998130323C07C3306_inline(__this, /*hidden argument*/NULL);
Type_t * L_6 = L_5;
G_B2_0 = L_6;
G_B2_1 = 0;
G_B2_2 = L_4;
G_B2_3 = L_4;
G_B2_4 = L_2;
if (L_6)
{
G_B3_0 = L_6;
G_B3_1 = 0;
G_B3_2 = L_4;
G_B3_3 = L_4;
G_B3_4 = L_2;
goto IL_002e;
}
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_7 = { reinterpret_cast<intptr_t> (RuntimeObject_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_8 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_7, /*hidden argument*/NULL);
G_B3_0 = L_8;
G_B3_1 = G_B2_1;
G_B3_2 = G_B2_2;
G_B3_3 = G_B2_3;
G_B3_4 = G_B2_4;
}
IL_002e:
{
NullCheck(G_B3_2);
ArrayElementTypeCheck (G_B3_2, G_B3_0);
(G_B3_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B3_1), (Type_t *)G_B3_0);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_9 = G_B3_3;
Type_t * L_10 = JsonDictionaryContract_get_DictionaryValueType_mB354460AD2F7AFCE45F309951B8F9EDE009A3CDB_inline(__this, /*hidden argument*/NULL);
Type_t * L_11 = L_10;
G_B4_0 = L_11;
G_B4_1 = 1;
G_B4_2 = L_9;
G_B4_3 = L_9;
G_B4_4 = G_B3_4;
if (L_11)
{
G_B5_0 = L_11;
G_B5_1 = 1;
G_B5_2 = L_9;
G_B5_3 = L_9;
G_B5_4 = G_B3_4;
goto IL_0045;
}
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_12 = { reinterpret_cast<intptr_t> (RuntimeObject_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_13 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_12, /*hidden argument*/NULL);
G_B5_0 = L_13;
G_B5_1 = G_B4_1;
G_B5_2 = G_B4_2;
G_B5_3 = G_B4_3;
G_B5_4 = G_B4_4;
}
IL_0045:
{
NullCheck(G_B5_2);
ArrayElementTypeCheck (G_B5_2, G_B5_0);
(G_B5_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B5_1), (Type_t *)G_B5_0);
NullCheck(G_B5_4);
Type_t * L_14 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(103 /* System.Type System.Type::MakeGenericType(System.Type[]) */, G_B5_4, G_B5_3);
V_0 = L_14;
IL2CPP_RUNTIME_CLASS_INIT(JsonTypeReflector_tC161A1BF2506AB16B738C3935C2691A92B7A8C55_il2cpp_TypeInfo_var);
ReflectionDelegateFactory_t87E79CD61C3504844C338EEC1949177370F2029A * L_15 = JsonTypeReflector_get_ReflectionDelegateFactory_mAD718C1AD00934D6A3A5B334C5494929E45A8DC7(/*hidden argument*/NULL);
Type_t * L_16 = V_0;
NullCheck(L_15);
Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 * L_17 = GenericVirtFuncInvoker1< Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 *, Type_t * >::Invoke(ReflectionDelegateFactory_CreateDefaultConstructor_TisRuntimeObject_mEB50AB99BFE09A72034A8DED50F464F83BF7B81A_RuntimeMethod_var, L_15, L_16);
__this->set__genericTemporaryDictionaryCreator_34(L_17);
}
IL_005d:
{
Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 * L_18 = __this->get__genericTemporaryDictionaryCreator_34();
NullCheck(L_18);
RuntimeObject * L_19 = Func_1_Invoke_m33E1702C6A8DBC8D2A39F4E9A1F5B14BEFAD9597(L_18, /*hidden argument*/Func_1_Invoke_m33E1702C6A8DBC8D2A39F4E9A1F5B14BEFAD9597_RuntimeMethod_var);
return ((RuntimeObject*)Castclass((RuntimeObject*)L_19, IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7_il2cpp_TypeInfo_var));
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* JProperty_get_Name_mB214D204AA250BF1F6F73A038028946203F592ED_inline (JProperty_tEDCA504C43E0914A06C5EBD1ACB625EA5E84D0EF * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get__name_16();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * JToken_get_Parent_m68142FEB329F72F2258F55D7A790C43E7E823F54_inline (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * __this, const RuntimeMethod* method)
{
{
JContainer_t3CA881032EC89635BC2ABC46FA7ED18F0AD13DDC * L_0 = __this->get__parent_0();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * StringComparer_get_Ordinal_m1F38FBAB170DF80D33FE2A849D30FF2E314D9FDB_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StringComparer_get_Ordinal_m1F38FBAB170DF80D33FE2A849D30FF2E314D9FDBValve_Newtonsoft_Json1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_il2cpp_TypeInfo_var);
StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * L_0 = ((StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_StaticFields*)il2cpp_codegen_static_fields_for(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_il2cpp_TypeInfo_var))->get__ordinal_2();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * JValue_get_Value_m34886671D7314B60CB3EA0BF91064522363AC1FD_inline (JValue_tDEC6D0F224DB118E194A43D13F5507F393D071C3 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = __this->get__value_14();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Func_1_t3CEBF86E0635EABFE16B2FB2AE427AFF966C1E62 * JsonConvert_get_DefaultSettings_m06EFD8674EFD5D98521BAB1AF2C2E504580B6944_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (JsonConvert_get_DefaultSettings_m06EFD8674EFD5D98521BAB1AF2C2E504580B6944Valve_Newtonsoft_Json1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(JsonConvert_t57930AECB47BF08A72A9CF1CCC7547869F91857D_il2cpp_TypeInfo_var);
Func_1_t3CEBF86E0635EABFE16B2FB2AE427AFF966C1E62 * L_0 = ((JsonConvert_t57930AECB47BF08A72A9CF1CCC7547869F91857D_StaticFields*)il2cpp_codegen_static_fields_for(JsonConvert_t57930AECB47BF08A72A9CF1CCC7547869F91857D_il2cpp_TypeInfo_var))->get_U3CDefaultSettingsU3Ek__BackingField_0();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t JsonLoadSettings_get_CommentHandling_mBB1D26011CD2B88F331440AAB727BA800E5D44F9_inline (JsonLoadSettings_tB5261F5FE452665393A12B96A793FE21DF91D45A * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get__commentHandling_0();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t JsonLoadSettings_get_LineInfoHandling_m84C480E6D3F94571C4845D2EF2CCB0E045768E0E_inline (JsonLoadSettings_tB5261F5FE452665393A12B96A793FE21DF91D45A * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get__lineInfoHandling_1();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t JsonReader_get_CurrentState_m82A4B2B03B64BDF8B7D0AF08C816C60198F4C0C5_inline (JsonReader_tD3C3EA4C260018C57F3D2D5A5FB64C3660BACB4C * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get__currentState_3();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * JToken_get_Next_m4C86AF5625AFDE37B90698DBAC4B8C589B5F05E3_inline (JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * __this, const RuntimeMethod* method)
{
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_0 = __this->get__next_2();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* JConstructor_get_Name_m57AE8C1593EC23F78FE7302A767D7B5F4E700E4D_inline (JConstructor_t31B236A37CEC95856D10CB7C3F276D6C4CA0B26B * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get__name_15();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t JsonWriter_get_DateTimeZoneHandling_mDFAF827652B4F8B1747A36796689D049E9E8F154_inline (JsonWriter_tBE0C0BDB1A0D37A549CF60A0A1F170037451BE1E * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get__dateTimeZoneHandling_8();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * JTokenReader_get_CurrentToken_m4D1878533286E1C58BBB83AC78967CFB15619D3B_inline (JTokenReader_tE3C9B85315EFF6B3CB0796451D8278F1372C6530 * __this, const RuntimeMethod* method)
{
{
JToken_t9096A0EC0D9D97A157FAA492E8BE83A8B4952BF2 * L_0 = __this->get__current_18();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void DefaultContractResolver_set_IgnoreSerializableAttribute_mE9C620C5A904A43B2233C55065C1AA95178B5AF1_inline (DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0 * __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->set_U3CIgnoreSerializableAttributeU3Ek__BackingField_9(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void DefaultContractResolver_set_DefaultMembersSearchFlags_mC17D91870D34F29693726A514084D2D2FBDD45D7_inline (DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->set_U3CDefaultMembersSearchFlagsU3Ek__BackingField_6(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool DefaultContractResolver_get_IgnoreSerializableAttribute_mA16EC5B2658D11EC6DC88B5D69D4F503BCFD89AC_inline (DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_U3CIgnoreSerializableAttributeU3Ek__BackingField_9();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t DefaultContractResolver_get_DefaultMembersSearchFlags_m1B01EBF0E7FF14D1E481B705DE1B927566EC6B81_inline (DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_U3CDefaultMembersSearchFlagsU3Ek__BackingField_6();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool DefaultContractResolver_get_SerializeCompilerGeneratedMembers_m3F5EBE5709E33F6EC9829EF76A2E0741508883ED_inline (DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_U3CSerializeCompilerGeneratedMembersU3Ek__BackingField_7();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonObjectContract_set_MemberSerialization_mEC12A9E2B798DDDA5625E899B57B640435B87113_inline (JsonObjectContract_tC08A0614773A277BE2FACD612729195811D606B5 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->set_U3CMemberSerializationU3Ek__BackingField_27(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR JsonPropertyCollection_tC08CC5508836C9712A08DDE9E2BC413BD3A61715 * JsonObjectContract_get_Properties_mDF4C6B62A6E7827416EF14490F4F966C94EA47E7_inline (JsonObjectContract_tC08A0614773A277BE2FACD612729195811D606B5 * __this, const RuntimeMethod* method)
{
{
JsonPropertyCollection_tC08CC5508836C9712A08DDE9E2BC413BD3A61715 * L_0 = __this->get_U3CPropertiesU3Ek__BackingField_29();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t JsonObjectContract_get_MemberSerialization_m613A7C5F80AF3F817B55EB6E250C3A084CF254C9_inline (JsonObjectContract_tC08A0614773A277BE2FACD612729195811D606B5 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_U3CMemberSerializationU3Ek__BackingField_27();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonObjectContract_set_ItemRequired_m384A5E1AD0F12835F2523DCBC53495D9747394A2_inline (JsonObjectContract_tC08A0614773A277BE2FACD612729195811D606B5 * __this, Nullable_1_t240C94038A74304286AD4C81EAEFD24E6E435A06 ___value0, const RuntimeMethod* method)
{
{
Nullable_1_t240C94038A74304286AD4C81EAEFD24E6E435A06 L_0 = ___value0;
__this->set_U3CItemRequiredU3Ek__BackingField_28(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonContract_set_DefaultCreator_mCFA258FC6B3166F8C0DFCABCB8A8F8233704AF6E_inline (JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * __this, Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 * ___value0, const RuntimeMethod* method)
{
{
Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 * L_0 = ___value0;
__this->set_U3CDefaultCreatorU3Ek__BackingField_19(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 * JsonContract_get_DefaultCreator_mEC599F3E488D3176FBD5D23A13ADF5F548A9749F_inline (JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * __this, const RuntimeMethod* method)
{
{
Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 * L_0 = __this->get_U3CDefaultCreatorU3Ek__BackingField_19();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool JsonContract_get_DefaultCreatorNonPublic_m16E06A91D081B642B9134CE51AC57A887269FAEE_inline (JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_U3CDefaultCreatorNonPublicU3Ek__BackingField_20();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool JsonExtensionDataAttribute_get_ReadData_mDBD066FE73AB5AC1AC8077C85F6FE35E452D9681_inline (JsonExtensionDataAttribute_tC858B08E1ACE700629982E390F2FDA7A0580C208 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_U3CReadDataU3Ek__BackingField_1();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonObjectContract_set_ExtensionDataSetter_m784B3C7EB827EA14E5A87171C1066EB341DA64EB_inline (JsonObjectContract_tC08A0614773A277BE2FACD612729195811D606B5 * __this, ExtensionDataSetter_t887F53572558DF1949C2035B2EC92D39343FE586 * ___value0, const RuntimeMethod* method)
{
{
ExtensionDataSetter_t887F53572558DF1949C2035B2EC92D39343FE586 * L_0 = ___value0;
__this->set_U3CExtensionDataSetterU3Ek__BackingField_30(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool JsonExtensionDataAttribute_get_WriteData_mA30CF92ECDD7B8C6D1A8F5D29CDE7FFEDD59CDFF_inline (JsonExtensionDataAttribute_tC858B08E1ACE700629982E390F2FDA7A0580C208 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_U3CWriteDataU3Ek__BackingField_0();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonObjectContract_set_ExtensionDataGetter_m8DB30A43CD750BDA1FC03D1A795474443426E9C9_inline (JsonObjectContract_tC08A0614773A277BE2FACD612729195811D606B5 * __this, ExtensionDataGetter_t6CC1D4868317A6C03ADA77795B2563E77D993860 * ___value0, const RuntimeMethod* method)
{
{
ExtensionDataGetter_t6CC1D4868317A6C03ADA77795B2563E77D993860 * L_0 = ___value0;
__this->set_U3CExtensionDataGetterU3Ek__BackingField_31(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Type_t * JsonProperty_get_PropertyType_m289D59E3FC7ABC9329669C4C4A20F68038688F4E_inline (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __this, const RuntimeMethod* method)
{
{
Type_t * L_0 = __this->get__propertyType_6();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonProperty_set_AttributeProvider_mA7C5A4B0EC3318FEC23F29FFB348F2E6AB1A09A4_inline (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___value0;
__this->set_U3CAttributeProviderU3Ek__BackingField_12(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonProperty_set_Readable_mD59EEC19DAB96CD04D08D7D4B20BDAAC3CB0FADF_inline (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->set_U3CReadableU3Ek__BackingField_16(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonProperty_set_Writable_m6C087BCCDAA946F6EDF9E96CF34EA6E292E23354_inline (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->set_U3CWritableU3Ek__BackingField_17(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* JsonProperty_get_PropertyName_m55905C9131ED73513CF8CB006A5BDF904C47A6B4_inline (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get__propertyName_4();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * JsonProperty_get_Converter_m16E01BE519E24038398BAE7EBED2A1E84BC10D3B_inline (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __this, const RuntimeMethod* method)
{
{
JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * L_0 = __this->get_U3CConverterU3Ek__BackingField_13();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonProperty_set_Converter_m3FFE421E199BB51AFBDB9415A4986D6E091D4CC9_inline (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __this, JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * ___value0, const RuntimeMethod* method)
{
{
JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * L_0 = ___value0;
__this->set_U3CConverterU3Ek__BackingField_13(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * JsonProperty_get_MemberConverter_mE98C8C699ECF8EDFC43CBE2DD906D18F597FD639_inline (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __this, const RuntimeMethod* method)
{
{
JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * L_0 = __this->get_U3CMemberConverterU3Ek__BackingField_14();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonProperty_set_MemberConverter_mA8BEFA62877DA9FA40B7E871BA7B70EAE325B532_inline (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __this, JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * ___value0, const RuntimeMethod* method)
{
{
JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * L_0 = ___value0;
__this->set_U3CMemberConverterU3Ek__BackingField_14(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 JsonProperty_get_IsReference_mAFC18BCBCC991AD924D288048120C2C7D2E8791E_inline (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __this, const RuntimeMethod* method)
{
{
Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 L_0 = __this->get_U3CIsReferenceU3Ek__BackingField_19();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonProperty_set_IsReference_m81A1A0EBD772885E63F4709504EC98E472D4FE2D_inline (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __this, Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 ___value0, const RuntimeMethod* method)
{
{
Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 L_0 = ___value0;
__this->set_U3CIsReferenceU3Ek__BackingField_19(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Nullable_1_t1E3E10A718340D5055F8DB98AE1C03F47CDC19FC JsonProperty_get_NullValueHandling_mE7AA06F7512F5B5EF656BE4BBB6496BAF99E27D1_inline (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __this, const RuntimeMethod* method)
{
{
Nullable_1_t1E3E10A718340D5055F8DB98AE1C03F47CDC19FC L_0 = __this->get_U3CNullValueHandlingU3Ek__BackingField_20();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonProperty_set_NullValueHandling_m74AB1DCAB92587EB9572BEA40B5C7E0D88B87AD8_inline (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __this, Nullable_1_t1E3E10A718340D5055F8DB98AE1C03F47CDC19FC ___value0, const RuntimeMethod* method)
{
{
Nullable_1_t1E3E10A718340D5055F8DB98AE1C03F47CDC19FC L_0 = ___value0;
__this->set_U3CNullValueHandlingU3Ek__BackingField_20(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Nullable_1_tE7CF0A7BC2816D39007C0EEB41F32FA7DB86B394 JsonProperty_get_DefaultValueHandling_mD2453514E2AC08249DA61848E2403A35ADF457AE_inline (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __this, const RuntimeMethod* method)
{
{
Nullable_1_tE7CF0A7BC2816D39007C0EEB41F32FA7DB86B394 L_0 = __this->get_U3CDefaultValueHandlingU3Ek__BackingField_21();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonProperty_set_DefaultValueHandling_m64D0484E336482643196FE2588406C3018077207_inline (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __this, Nullable_1_tE7CF0A7BC2816D39007C0EEB41F32FA7DB86B394 ___value0, const RuntimeMethod* method)
{
{
Nullable_1_tE7CF0A7BC2816D39007C0EEB41F32FA7DB86B394 L_0 = ___value0;
__this->set_U3CDefaultValueHandlingU3Ek__BackingField_21(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Nullable_1_tD485E28BBBAFB03563161D92A5E03A20B8691DF7 JsonProperty_get_ReferenceLoopHandling_mF80A4BCFC5BCF5BB1B08DD588D86641E60EA3298_inline (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __this, const RuntimeMethod* method)
{
{
Nullable_1_tD485E28BBBAFB03563161D92A5E03A20B8691DF7 L_0 = __this->get_U3CReferenceLoopHandlingU3Ek__BackingField_22();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonProperty_set_ReferenceLoopHandling_mFA6874BE6C0DE25CE1921F7F4F0966449BC386EA_inline (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __this, Nullable_1_tD485E28BBBAFB03563161D92A5E03A20B8691DF7 ___value0, const RuntimeMethod* method)
{
{
Nullable_1_tD485E28BBBAFB03563161D92A5E03A20B8691DF7 L_0 = ___value0;
__this->set_U3CReferenceLoopHandlingU3Ek__BackingField_22(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Nullable_1_t6F16A066F0D8E92AEDC11791932E5B9D887F402E JsonProperty_get_ObjectCreationHandling_mBA7704FF78CDCAD3994A6CA43443CB4F296FAFD8_inline (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __this, const RuntimeMethod* method)
{
{
Nullable_1_t6F16A066F0D8E92AEDC11791932E5B9D887F402E L_0 = __this->get_U3CObjectCreationHandlingU3Ek__BackingField_23();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonProperty_set_ObjectCreationHandling_mF627BC5B84EC6A0FBDBC2C3744D35AE5A9BF3C49_inline (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __this, Nullable_1_t6F16A066F0D8E92AEDC11791932E5B9D887F402E ___value0, const RuntimeMethod* method)
{
{
Nullable_1_t6F16A066F0D8E92AEDC11791932E5B9D887F402E L_0 = ___value0;
__this->set_U3CObjectCreationHandlingU3Ek__BackingField_23(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Nullable_1_t03BF155C19CE72C93934F0A7CDDA0C202A278E11 JsonProperty_get_TypeNameHandling_m42F2D8CBE714D0C6254E78C0342AA120E4F905FF_inline (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __this, const RuntimeMethod* method)
{
{
Nullable_1_t03BF155C19CE72C93934F0A7CDDA0C202A278E11 L_0 = __this->get_U3CTypeNameHandlingU3Ek__BackingField_24();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonProperty_set_TypeNameHandling_m1705EF65E533500CD4530F872B498F83B1A279B1_inline (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __this, Nullable_1_t03BF155C19CE72C93934F0A7CDDA0C202A278E11 ___value0, const RuntimeMethod* method)
{
{
Nullable_1_t03BF155C19CE72C93934F0A7CDDA0C202A278E11 L_0 = ___value0;
__this->set_U3CTypeNameHandlingU3Ek__BackingField_24(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonContract_set_IsReference_mF3693B660E6ED466D542AC561DA5714F34E103BC_inline (JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * __this, Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 ___value0, const RuntimeMethod* method)
{
{
Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 L_0 = ___value0;
__this->set_U3CIsReferenceU3Ek__BackingField_16(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool DataContractAttribute_get_IsReference_m585BCAC661A23A9D652CBB1A143A1A05EC982954_inline (DataContractAttribute_tAD58D5877BD04EADB56BB4AEDDE342C73F032FC5 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_isReference_0();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonContract_set_Converter_mD54BDE103380C81E5AC933ECFC739D1654EFD534_inline (JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * __this, JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * ___value0, const RuntimeMethod* method)
{
{
JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * L_0 = ___value0;
__this->set_U3CConverterU3Ek__BackingField_17(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonContract_set_InternalConverter_m98C9C0B34BB620F23DF3021B456FE2BD90DA1C6F_inline (JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * __this, JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * ___value0, const RuntimeMethod* method)
{
{
JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * L_0 = ___value0;
__this->set_U3CInternalConverterU3Ek__BackingField_18(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Type_t * JsonContract_get_CreatedType_mD4067F78EE8562AECD07B981C18C57182277E1ED_inline (JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * __this, const RuntimeMethod* method)
{
{
Type_t * L_0 = __this->get__createdType_14();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonContract_set_DefaultCreatorNonPublic_m919D262C28DED0670FA02472AE90A298B672FDE2_inline (JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->set_U3CDefaultCreatorNonPublicU3Ek__BackingField_20(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Type_t * JsonContainerAttribute_get_NamingStrategyType_m9748E3B19B3404BB56F8FB5DEAF9ED2B1EE74F41_inline (JsonContainerAttribute_t4E39F1E5EA66CF61E90C47C81929BE4A853A2DF3 * __this, const RuntimeMethod* method)
{
{
Type_t * L_0 = __this->get__namingStrategyType_7();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonDictionaryContract_set_DictionaryKeyResolver_m1FDDCC3B1C40A57217ECBD9C6B7817F095A6B32A_inline (JsonDictionaryContract_t7D39A549ABAEDA655A1140F78778D9B36692266C * __this, Func_2_tD9EBF5FAD46B4F561FE5ABE814DC60E6253B8B96 * ___value0, const RuntimeMethod* method)
{
{
Func_2_tD9EBF5FAD46B4F561FE5ABE814DC60E6253B8B96 * L_0 = ___value0;
__this->set_U3CDictionaryKeyResolverU3Ek__BackingField_27(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Type_t * JsonDictionaryContract_get_DictionaryKeyType_m8AB18997E686EF0B88B8306998130323C07C3306_inline (JsonDictionaryContract_t7D39A549ABAEDA655A1140F78778D9B36692266C * __this, const RuntimeMethod* method)
{
{
Type_t * L_0 = __this->get_U3CDictionaryKeyTypeU3Ek__BackingField_28();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Type_t * JsonDictionaryContract_get_DictionaryValueType_mB354460AD2F7AFCE45F309951B8F9EDE009A3CDB_inline (JsonDictionaryContract_t7D39A549ABAEDA655A1140F78778D9B36692266C * __this, const RuntimeMethod* method)
{
{
Type_t * L_0 = __this->get_U3CDictionaryValueTypeU3Ek__BackingField_29();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonDictionaryContract_set_HasParameterizedCreator_m8BCF12CC0AAC9F1DF6FEB1C52E41BFC00243D3B0_inline (JsonDictionaryContract_t7D39A549ABAEDA655A1140F78778D9B36692266C * __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->set_U3CHasParameterizedCreatorU3Ek__BackingField_39(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Type_t * JsonContract_get_UnderlyingType_m7F278992455AC78881DB024ACB6646D1086025F1_inline (JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * __this, const RuntimeMethod* method)
{
{
Type_t * L_0 = __this->get_U3CUnderlyingTypeU3Ek__BackingField_15();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonDictionaryContract_set_OverrideCreator_m7D5C91C09FAF108A51CE4EAABF59F55DECDF54B5_inline (JsonDictionaryContract_t7D39A549ABAEDA655A1140F78778D9B36692266C * __this, ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 * ___value0, const RuntimeMethod* method)
{
{
ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 * L_0 = ___value0;
__this->set__overrideCreator_37(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Type_t * JsonArrayContract_get_CollectionItemType_m10E501E1CDDDBFD2D6D70553B4BDDF5A067BC976_inline (JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751 * __this, const RuntimeMethod* method)
{
{
Type_t * L_0 = __this->get_U3CCollectionItemTypeU3Ek__BackingField_27();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonArrayContract_set_HasParameterizedCreator_m3982B915EC8BFE7EF384D8D6663D1147AD6E2859_inline (JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751 * __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->set_U3CHasParameterizedCreatorU3Ek__BackingField_39(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonISerializableContract_set_ISerializableCreator_m8C9FCFA15BD4554D507B36FAFD77301F530C954E_inline (JsonISerializableContract_tC390B7D7091FE7D26C0FE026BDB2DCA1D1E64AA0 * __this, ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 * ___value0, const RuntimeMethod* method)
{
{
ObjectConstructor_1_t9C47A9FAAE521F21D894116FF02CE097916075D3 * L_0 = ___value0;
__this->set_U3CISerializableCreatorU3Ek__BackingField_27(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool DefaultContractResolver_get_IgnoreSerializableInterface_m3573E97397949ED13C4ABFED4A9A86DD317F451E_inline (DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_U3CIgnoreSerializableInterfaceU3Ek__BackingField_8();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonProperty_set_DeclaringType_m4F7A8EBBAAB53A716936F32711DADC5D497DB9A3_inline (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __this, Type_t * ___value0, const RuntimeMethod* method)
{
{
Type_t * L_0 = ___value0;
__this->set_U3CDeclaringTypeU3Ek__BackingField_8(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonProperty_set_ValueProvider_mBEB1B5972CF2072D40E794E51746FC3DBB026DA8_inline (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___value0;
__this->set_U3CValueProviderU3Ek__BackingField_11(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool JsonProperty_get_HasMemberAttribute_m90EB927C14261E5B20E8BF12FE366424C9F44E68_inline (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_U3CHasMemberAttributeU3Ek__BackingField_18();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonProperty_set_ShouldSerialize_mAA26700AE6294F2DD8AF959A325C59AC743ABA69_inline (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __this, Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 * ___value0, const RuntimeMethod* method)
{
{
Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 * L_0 = ___value0;
__this->set_U3CShouldSerializeU3Ek__BackingField_25(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* JsonPropertyAttribute_get_PropertyName_mE1AF1CF51FB33A6F013CA79442A51B3422F208C0_inline (JsonPropertyAttribute_tD66B9C74F3201FFAF7A16DB84AEA31FE8F02ED5F * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_U3CPropertyNameU3Ek__BackingField_15();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* DataMemberAttribute_get_Name_mA626FA1D50DB99B87C7EB674B93622431E14F973_inline (DataMemberAttribute_tC865433FEC93FFD46D6F3E4BB28F262C9EE40525 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_name_0();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Type_t * JsonPropertyAttribute_get_NamingStrategyType_m1565DA70E1B2B86F069B794C47BA77A11CDB229B_inline (JsonPropertyAttribute_tD66B9C74F3201FFAF7A16DB84AEA31FE8F02ED5F * __this, const RuntimeMethod* method)
{
{
Type_t * L_0 = __this->get_U3CNamingStrategyTypeU3Ek__BackingField_13();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* JsonPropertyAttribute_get_NamingStrategyParameters_mD0B7544805A4C5F2281FB5B57B525AB17004DC4B_inline (JsonPropertyAttribute_tD66B9C74F3201FFAF7A16DB84AEA31FE8F02ED5F * __this, const RuntimeMethod* method)
{
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = __this->get_U3CNamingStrategyParametersU3Ek__BackingField_14();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR NamingStrategy_tBB6F8138B49E9B2704F7B87BF9130378976B9B46 * DefaultContractResolver_get_NamingStrategy_m541D750140B66BB0B36E32CEC1F984F1C2037FD4_inline (DefaultContractResolver_tB5CB153F4376C1C4BAC41BDEFFCF22F2A1DEBEE0 * __this, const RuntimeMethod* method)
{
{
NamingStrategy_tBB6F8138B49E9B2704F7B87BF9130378976B9B46 * L_0 = __this->get_U3CNamingStrategyU3Ek__BackingField_10();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonProperty_set_UnderlyingName_m51FFF9A38B8657E0893AE2ED0369394E1076E83A_inline (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set_U3CUnderlyingNameU3Ek__BackingField_10(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonProperty_set_Order_m1BC09410DF4CE67DD2E3F7B83F7C31463059DB32_inline (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __this, Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB ___value0, const RuntimeMethod* method)
{
{
Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB L_0 = ___value0;
__this->set_U3COrderU3Ek__BackingField_9(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool DataMemberAttribute_get_IsRequired_m03BFAD34E0B734E253D49357A981D360B21CCEFA_inline (DataMemberAttribute_tC865433FEC93FFD46D6F3E4BB28F262C9EE40525 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_isRequired_2();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t DataMemberAttribute_get_Order_m1A3ADBDD919D8B3CECEDB183C5F8567F76CC9632_inline (DataMemberAttribute_tC865433FEC93FFD46D6F3E4BB28F262C9EE40525 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_order_1();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool DataMemberAttribute_get_EmitDefaultValue_mDFB2F1161572605FA84B4BD480360965FFB4DC9D_inline (DataMemberAttribute_tC865433FEC93FFD46D6F3E4BB28F262C9EE40525 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_emitDefaultValue_3();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonProperty_set_HasMemberAttribute_m31D6785AAFB8BE4772054C439224C82C37ADC6F0_inline (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->set_U3CHasMemberAttributeU3Ek__BackingField_18(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonProperty_set_Ignored_mFBBD3BA453B107E9C8F8B09E015A30C48BC9471E_inline (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->set_U3CIgnoredU3Ek__BackingField_15(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonProperty_set_ItemIsReference_m13E3230285E4340B1E58D507B618377BE88BD57D_inline (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __this, Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 ___value0, const RuntimeMethod* method)
{
{
Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 L_0 = ___value0;
__this->set_U3CItemIsReferenceU3Ek__BackingField_30(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Type_t * JsonPropertyAttribute_get_ItemConverterType_mB1E467548F5C538A1D34A6B083170A4C4A4C5C56_inline (JsonPropertyAttribute_tD66B9C74F3201FFAF7A16DB84AEA31FE8F02ED5F * __this, const RuntimeMethod* method)
{
{
Type_t * L_0 = __this->get_U3CItemConverterTypeU3Ek__BackingField_11();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* JsonPropertyAttribute_get_ItemConverterParameters_mC1C5C995D4DFED0E9979A8A2E4179C4EF1898C71_inline (JsonPropertyAttribute_tD66B9C74F3201FFAF7A16DB84AEA31FE8F02ED5F * __this, const RuntimeMethod* method)
{
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = __this->get_U3CItemConverterParametersU3Ek__BackingField_12();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonProperty_set_ItemConverter_m8C4DC9722F99040811BCDB141ACDD00B72C45A71_inline (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __this, JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * ___value0, const RuntimeMethod* method)
{
{
JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * L_0 = ___value0;
__this->set_U3CItemConverterU3Ek__BackingField_29(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonProperty_set_ItemReferenceLoopHandling_m1CDEE3989196F8894230245599408BC9DF3EE8A9_inline (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __this, Nullable_1_tD485E28BBBAFB03563161D92A5E03A20B8691DF7 ___value0, const RuntimeMethod* method)
{
{
Nullable_1_tD485E28BBBAFB03563161D92A5E03A20B8691DF7 L_0 = ___value0;
__this->set_U3CItemReferenceLoopHandlingU3Ek__BackingField_32(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonProperty_set_ItemTypeNameHandling_mEB8A85DB36850A8F0660DA687B80B6B40CB6B9AF_inline (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __this, Nullable_1_t03BF155C19CE72C93934F0A7CDDA0C202A278E11 ___value0, const RuntimeMethod* method)
{
{
Nullable_1_t03BF155C19CE72C93934F0A7CDDA0C202A278E11 L_0 = ___value0;
__this->set_U3CItemTypeNameHandlingU3Ek__BackingField_31(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonProperty_set_GetIsSpecified_m1AC9A2E2BAC8E9A8B8294041A79C7483636EB4F6_inline (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __this, Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 * ___value0, const RuntimeMethod* method)
{
{
Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 * L_0 = ___value0;
__this->set_U3CGetIsSpecifiedU3Ek__BackingField_27(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonProperty_set_SetIsSpecified_m63982926E0533FEA5543D1147F34349A1D22B282_inline (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __this, Action_2_t0DB6FD6F515527EAB552B690A291778C6F00D48C * ___value0, const RuntimeMethod* method)
{
{
Action_2_t0DB6FD6F515527EAB552B690A291778C6F00D48C * L_0 = ___value0;
__this->set_U3CSetIsSpecifiedU3Ek__BackingField_28(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB JsonProperty_get_Order_m2CB3D4BF263582BA6293D5C77A28F452C21D5FE1_inline (JsonProperty_t562068F18C2C1ACF8A641C57943CDF99DB93FAEB * __this, const RuntimeMethod* method)
{
{
Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB L_0 = __this->get_U3COrderU3Ek__BackingField_9();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void ErrorContext_set_OriginalObject_m8E938A5CA43E07F4313D5836F8B246FAEFBBFBDD_inline (ErrorContext_t61739A48B44A4707051088E7013FD4E347DBE7A0 * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___value0;
__this->set_U3COriginalObjectU3Ek__BackingField_2(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void ErrorContext_set_Member_mB992679E80AFF52E170B4758CFF8035F80687D99_inline (ErrorContext_t61739A48B44A4707051088E7013FD4E347DBE7A0 * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___value0;
__this->set_U3CMemberU3Ek__BackingField_3(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void ErrorContext_set_Error_m0E5CE8FC8C1F4738DC69C22A3E9DDC424DF80161_inline (ErrorContext_t61739A48B44A4707051088E7013FD4E347DBE7A0 * __this, Exception_t * ___value0, const RuntimeMethod* method)
{
{
Exception_t * L_0 = ___value0;
__this->set_U3CErrorU3Ek__BackingField_1(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void ErrorContext_set_Path_m845955C49F8D6597E42A4D5C027291F6BA483FAA_inline (ErrorContext_t61739A48B44A4707051088E7013FD4E347DBE7A0 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set_U3CPathU3Ek__BackingField_4(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void ErrorEventArgs_set_CurrentObject_mBF49E39F8488905B42037F852CE94E7835C88CB0_inline (ErrorEventArgs_tB0943D7E08A6FA558FC6C2E534DFF2FC535FF298 * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___value0;
__this->set_U3CCurrentObjectU3Ek__BackingField_1(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void ErrorEventArgs_set_ErrorContext_m71E35FBC6FD80B30D0520D87CB0838E04DAAFFEB_inline (ErrorEventArgs_tB0943D7E08A6FA558FC6C2E534DFF2FC535FF298 * __this, ErrorContext_t61739A48B44A4707051088E7013FD4E347DBE7A0 * ___value0, const RuntimeMethod* method)
{
{
ErrorContext_t61739A48B44A4707051088E7013FD4E347DBE7A0 * L_0 = ___value0;
__this->set_U3CErrorContextU3Ek__BackingField_2(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonArrayContract_set_CanDeserialize_mE5D171AF6B30958A25CC505A16F424F227D029AA_inline (JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751 * __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->set_U3CCanDeserializeU3Ek__BackingField_35(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool JsonArrayContract_get_HasParameterizedCreator_m4B57EBA3CBC19A697E5BB71E4963FDFC4395F599_inline (JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_U3CHasParameterizedCreatorU3Ek__BackingField_39();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonArrayContract_set_IsArray_m70EF7EB5FDC94591CD78A769E2A95DC86B041EA7_inline (JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751 * __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->set_U3CIsArrayU3Ek__BackingField_33(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool JsonArrayContract_get_IsArray_mA108F1403D28761C05D8050D8C36D9A5C68EABD0_inline (JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_U3CIsArrayU3Ek__BackingField_33();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonArrayContract_set_CollectionItemType_m4ED7E451B8262125D9C3A330DCBEF423A15332AB_inline (JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751 * __this, Type_t * ___value0, const RuntimeMethod* method)
{
{
Type_t * L_0 = ___value0;
__this->set_U3CCollectionItemTypeU3Ek__BackingField_27(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonArrayContract_set_IsMultidimensionalArray_mA0F2911D038F28838DF4EE720819D9448D521B72_inline (JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751 * __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->set_U3CIsMultidimensionalArrayU3Ek__BackingField_28(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonArrayContract_set_ShouldCreateWrapper_m948CE129A45979C3B8AA8296309FC8B2CAA3F837_inline (JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751 * __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->set_U3CShouldCreateWrapperU3Ek__BackingField_34(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool JsonArrayContract_get_IsMultidimensionalArray_m5A93A212D49B64AB8DF564E054409B96A5AFCE48_inline (JsonArrayContract_tE87085DC6DBB659D29DC5DD2ABE3B9E9D8B15751 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_U3CIsMultidimensionalArrayU3Ek__BackingField_28();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Type_t * JsonContainerAttribute_get_ItemConverterType_mAE499FC40A3D9BA300ABED486EEEFB69303D648B_inline (JsonContainerAttribute_t4E39F1E5EA66CF61E90C47C81929BE4A853A2DF3 * __this, const RuntimeMethod* method)
{
{
Type_t * L_0 = __this->get_U3CItemConverterTypeU3Ek__BackingField_0();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* JsonContainerAttribute_get_ItemConverterParameters_m3D2CB234BA796FBE7FE299BAE796D89147391B07_inline (JsonContainerAttribute_t4E39F1E5EA66CF61E90C47C81929BE4A853A2DF3 * __this, const RuntimeMethod* method)
{
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = __this->get_U3CItemConverterParametersU3Ek__BackingField_1();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonContainerContract_set_ItemConverter_mF8D7E92BF1E245119C8C93AF4008FC2D217899AA_inline (JsonContainerContract_tD54146B123969809E06196AE0C5BB3D6E9A679B9 * __this, JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * ___value0, const RuntimeMethod* method)
{
{
JsonConverter_t114FE915FF6545C491509F385DBDC7140F3DD595 * L_0 = ___value0;
__this->set_U3CItemConverterU3Ek__BackingField_23(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonContainerContract_set_ItemIsReference_mD49AC15281D9B7652A0AF80EEEDCA79BC92D6578_inline (JsonContainerContract_tD54146B123969809E06196AE0C5BB3D6E9A679B9 * __this, Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 ___value0, const RuntimeMethod* method)
{
{
Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 L_0 = ___value0;
__this->set_U3CItemIsReferenceU3Ek__BackingField_24(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonContainerContract_set_ItemReferenceLoopHandling_mD2E386B30881EFCD0E9B44D521116F31DA225233_inline (JsonContainerContract_tD54146B123969809E06196AE0C5BB3D6E9A679B9 * __this, Nullable_1_tD485E28BBBAFB03563161D92A5E03A20B8691DF7 ___value0, const RuntimeMethod* method)
{
{
Nullable_1_tD485E28BBBAFB03563161D92A5E03A20B8691DF7 L_0 = ___value0;
__this->set_U3CItemReferenceLoopHandlingU3Ek__BackingField_25(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonContainerContract_set_ItemTypeNameHandling_m09C7A16150E2822C582DAE7C9F23CD9CB5BA558F_inline (JsonContainerContract_tD54146B123969809E06196AE0C5BB3D6E9A679B9 * __this, Nullable_1_t03BF155C19CE72C93934F0A7CDDA0C202A278E11 ___value0, const RuntimeMethod* method)
{
{
Nullable_1_t03BF155C19CE72C93934F0A7CDDA0C202A278E11 L_0 = ___value0;
__this->set_U3CItemTypeNameHandlingU3Ek__BackingField_26(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonContract_set_UnderlyingType_mF954896C7C5865210BA18F39C112F06D9F8EF85D_inline (JsonContract_t3910C61F07A1DA8E65BB0A94E1C83CB5F4F92141 * __this, Type_t * ___value0, const RuntimeMethod* method)
{
{
Type_t * L_0 = ___value0;
__this->set_U3CUnderlyingTypeU3Ek__BackingField_15(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool JsonDictionaryContract_get_HasParameterizedCreator_mC567FA98200152009ABEFB52199373C9CB13C901_inline (JsonDictionaryContract_t7D39A549ABAEDA655A1140F78778D9B36692266C * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_U3CHasParameterizedCreatorU3Ek__BackingField_39();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonDictionaryContract_set_ShouldCreateWrapper_mFC7263B8CB80D12A013D2B9360FC36C08ED7BB97_inline (JsonDictionaryContract_t7D39A549ABAEDA655A1140F78778D9B36692266C * __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->set_U3CShouldCreateWrapperU3Ek__BackingField_35(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonDictionaryContract_set_DictionaryKeyType_mB6E03C44881CE214102AFEF4C7A324ED668939B4_inline (JsonDictionaryContract_t7D39A549ABAEDA655A1140F78778D9B36692266C * __this, Type_t * ___value0, const RuntimeMethod* method)
{
{
Type_t * L_0 = ___value0;
__this->set_U3CDictionaryKeyTypeU3Ek__BackingField_28(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void JsonDictionaryContract_set_DictionaryValueType_m2F9D7D3F7F66D7CA191F7B3A9B2CEBC7A8A2B910_inline (JsonDictionaryContract_t7D39A549ABAEDA655A1140F78778D9B36692266C * __this, Type_t * ___value0, const RuntimeMethod* method)
{
{
Type_t * L_0 = ___value0;
__this->set_U3CDictionaryValueTypeU3Ek__BackingField_29(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_m9D4E9BCBAB1BE560871A0889C851FC22A09975F4_gshared_inline (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_key_0();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Value_m8C7B882C4D425535288FAAD08EAF11D289A43AEC_gshared_inline (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_value_1();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject* Collection_1_get_Items_m0865B49FC5FD54F5EBC36C302A198541505330FC_gshared_inline (Collection_1_t71DBDD60829CD647D0C2B74C708518E5CAEDB942 * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get_items_0();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_mB0A6989529561627BBB65E6E4342DAA6549DD5A9_gshared_inline (Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 * __this, const RuntimeMethod* method)
{
{
bool L_0 = (bool)__this->get_has_value_1();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t Nullable_1_GetValueOrDefault_m256BDDFFC9F6CE76EBBC5A9A6ED0A6FFB9F0455F_gshared_inline (Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_value_0();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_mD7829C7E8CFBEDD463B15A951CDE9B90A12CC55C_gshared_inline (Enumerator_tE0C99528D3DCE5863566CE37BD94162A4C0431CD * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_current_3();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_m275A31438FCDAEEE039E95D887684E04FD6ECE2B_gshared_inline (Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 * __this, const RuntimeMethod* method)
{
{
bool L_0 = (bool)__this->get_has_value_1();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_mB664E2C41CADA8413EF8842E6601B8C696A7CE15_gshared_inline (Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB * __this, const RuntimeMethod* method)
{
{
bool L_0 = (bool)__this->get_has_value_1();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t Nullable_1_GetValueOrDefault_mE89BB8F302DF31EE202251F4746859285860B6B6_gshared_inline (Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_value_0();
return L_0;
}
}
|
8645a3a4c89c23de09f23bb5b7b75d47d13d975c | e3f9b57aa3ae210f5099cace1d97b2294562b70a | /Algorithms_code/RMQLightoj1082.cpp | d385e33d31be81964f978762502ce8a689bb3097 | [] | no_license | JahedulKaderForman/Algorithms-Implementation | e089484717281f83732f0e7bca701089dac2cd1a | d21252aa657fe8915e0c656dc1c720b715f819f7 | refs/heads/master | 2020-03-26T11:25:06.227291 | 2018-08-18T07:13:42 | 2018-08-18T07:13:42 | 144,841,579 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,612 | cpp | RMQLightoj1082.cpp | #include<bits/stdc++.h>
#define mx 100009
using namespace std;
int tree[mx*3],arr[mx];
void init(int node,int b,int e)
{
if(b==e)
{
tree[node]=arr[b];
return;
}
int left=node*2;
int right=(node*2)+1;
int mid=(b+e)/2;
init(left,b,mid);
init(right,mid+1,e);
if(tree[left]>tree[right])
{
tree[node]=tree[right];
}
else
tree[node]= tree[left];
}
int query(int node,int b,int e,int i,int j)
{
if(i>e || j<b)
{
return 100000000;
}
if(b>=i && e<=j)
{
return tree[node];
}
int left=node*2;
int right=(node*2)+1;
int mid=(b+e)/2;
int p1=query(left,b,mid,i,j);
int p2=query(right,mid+1,e,i,j);
if(p1>p2)
return p2;
else
return p1;
}
void update(int node,int b,int e,int i,int newvalu)
{
if(i>e || i<b)
{
return ;
}
if(b>=i && e<=i)
{
tree[node]=newvalu;
return;
}
int left=node*2;
int right=(node*2)+1;
int mid=(b+e)/2;
update(left,b,mid,i,newvalu);
update(right,mid+1,e,i,newvalu);
if(tree[left]>tree[right])
{
tree[node]=tree[right];
}
else
tree[node]= tree[left];
}
int main()
{
int n,x,y,t,q;
scanf("%d",&t);
for(int i=1; i<=t; i++)
{
scanf("%d%d",&n,&q);
for(int i=1; i<=n; i++)
{
scanf("%d",&arr[i]);
}
init(1,1,n);
printf("Case %d:\n",i);
while(q--)
{
scanf("%d%d",&x,&y);
printf("%d\n",query(1, 1, n, x, y));
}
}
}
|
cbff502bd8f6cddd2ebe9687d5a81bf1e3ae9ec4 | a2811206138ac04ea34be547d47d0530e454bb36 | /src/graph/dinic.cpp | 0142083da70089bda76a0855572b8a2188680790 | [] | no_license | wx-csy/code_library | e92eef5b356c0ba84107c4dfc2fb47aa0341284d | 7f0f89ae225479e53a4299987ed18a5b33f2cdce | refs/heads/master | 2020-04-01T12:56:54.865587 | 2019-12-06T07:11:46 | 2019-12-06T07:11:46 | 153,230,535 | 3 | 3 | null | 2019-12-06T07:04:09 | 2018-10-16T05:59:59 | TeX | UTF-8 | C++ | false | false | 1,960 | cpp | dinic.cpp | struct edge{
int from, to;
LL cap, flow;
};
const int MAXN = 1005;
struct Dinic {
int n, m, s, t;
vector<edge> edges;
vector<int> G[MAXN];
bool vis[MAXN];
int d[MAXN];
int cur[MAXN];
void add_edge(int from, int to, LL cap) {
edges.push_back(edge{from, to, cap, 0});
edges.push_back(edge{to, from, 0, 0});
m = edges.size();
G[from].push_back(m-2);
G[to].push_back(m-1);
}
bool bfs() {
memset(vis, 0, sizeof(vis));
queue<int> q;
q.push(s);
vis[s] = 1;
d[s] = 0;
while (!q.empty()) {
int x = q.front(); q.pop();
for (int i = 0; i < G[x].size(); i++) {
edge& e = edges[G[x][i]];
if (!vis[e.to] && e.cap > e.flow) {
vis[e.to] = 1;
d[e.to] = d[x] + 1;
q.push(e.to);
}
}
}
return vis[t];
}
LL dfs(int x, LL a) {
if (x == t || a == 0) return a;
LL flow = 0, f;
for (int& i = cur[x]; i < G[x].size(); i++) {
edge& e = edges[G[x][i]];
if(d[x] + 1 == d[e.to] && (f = dfs(e.to, min(a, e.cap-e.flow))) > 0) {
e.flow += f;
edges[G[x][i]^1].flow -= f;
flow += f;
a -= f;
if(a == 0) break;
}
}
return flow;
}
LL max_flow(int s, int t) {
this->s = s; this->t = t;
LL flow = 0;
while (bfs()) {
memset(cur, 0, sizeof(cur));
flow += dfs(s, LLONG_MAX);
}
return flow;
}
vector<int> min_cut() { // call this after maxflow
vector<int> ans;
for (int i = 0; i < edges.size(); i++) {
edge& e = edges[i];
if(vis[e.from] && !vis[e.to] && e.cap > 0) ans.push_back(i);
}
return ans;
}
};
|
9c8b7ee4718e4145243f070c11329ab424bd8a00 | f0ce29b579d8883cd6183a0383a561fb6511aa58 | /lap_trinh_huong_doi_tuong/cau_truc_dieu_kien/bai4.cpp | c3ed4f80509cc761ce7754e93494007347c81447 | [] | no_license | bkit9x/cpp | 70c0846f52c0a69d0838134bb085e960eba9a717 | 8544072b17623f8e07abac8f24ac07cafc17ae7f | refs/heads/master | 2021-06-14T15:23:32.332155 | 2021-03-25T15:26:22 | 2021-03-25T15:26:22 | 153,547,285 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 314 | cpp | bai4.cpp | #include <iostream>
#include <math.h>
using namespace std;
main(){
int n, i=1;
long temp=0;
cout<<"nhap so nguyen duong n: ";
cin>>n;
//a
for(i; i<=n; i++){
temp+=i;
}
cout<<"S1="<<temp*1.0/n<<endl;
//b
temp=0;
for(i=0; i<=n; i++){
temp+=i*i;
}
cout<<"S2="<<sqrt(temp)<<endl;
cout<<sqr(4,2);
}
|
39d3ddf54d788c5e7b2f68279c3f50f0c1ee8160 | 909194dc80d6c1cd4d8ab68d2e5dd70bcca7e060 | /src/binarysort/BinarySort.h | cfa38a8fb41b699ed88080f7a861e5f7314b7aa1 | [] | no_license | LinuXperia/completesearch | da33139f769180de1f47c484be44732d50d50db6 | f4154b848eaea1443f5b252923373121dab55901 | refs/heads/master | 2023-07-02T01:20:37.553414 | 2021-02-10T18:27:41 | 2021-02-10T18:27:41 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,175 | h | BinarySort.h | // Copyright 2010, University of Freiburg, Chair of Algorithms and Data
// Structures.
// Author: Simon Skilevic <skilevis>
#ifndef BINARYSORT_BINARYSORT_H_
#define BINARYSORT_BINARYSORT_H_
#include <stxxl/io>
#include <stxxl/mng>
#include <stxxl/sort>
#include <stxxl/vector>
#include <string>
using std::string;
using std::cout;
using std::endl;
using std::cerr;
// This class allows time efficiently sorting of large data files with the help
// of stxxl::sort. Sort function is SortBinary::sortBinaryWordsFile.
// As input this function needs a binary file with four integer columns.
// Stxxl needs a virtual disc, which is described in .stxxl (stxxl config file)
// This disc can be created with the help of the tool Creatdisc, wich you can d
// ownload at the site of stxxl library.
// The virtual disk must be greater than the sorted data.
// If this is not the case or the config file is completely missing, then the
// program automatically creates a virtual disc of the needed size. The sorting
// will then take about 20% longer.
// If the input file fits in main memory, then it will be sorted main memory.
// The size of main memory to use can be changed by memory_to_use.
// You can find memory_to_use in the function
// SortBinary::sortBinaryWordsFile in SortBinary.cpp.
// You can also see the contents of the binary file in ascii by using
// SortBinary::schowBinaryWordsFileInAscii.
class BinarySort
{
public:
// Default construktor
BinarySort()
{
}
// Sort binary file, file must have 4 columns.
// First, second and fourth column will be sorted
void sortBinaryWordsFile(const string& file);
// Schow given binary file, that consists 4*n Elements of
// unsigned int, in Ascii. Out is a matrix with n lines and 4 columns
void showBinaryWordsFileInAscii(const string& file);
// Bjoern 07 Oct 10: added an option to remove duplicates
void setRemoveDuplicates(bool value)
{
_removeDuplicates = value;
}
private:
// Flag to be set that determines if duplicates are eliminated during sort
bool _removeDuplicates;
// Check if file exists
void checkFile(const string& file);
};
#endif // BINARYSORT_BINARYSORT_H_
|
3b107143a78943e8d3e93b37e9ff3702150be37a | 14dc72fd771b1b935757983e77a7929fd4ba9aa2 | /UI/ConfigDialog.cpp | 6792137bbea29df1ca39189f07f8aa359348cf05 | [
"MIT"
] | permissive | xeyos/RM-Kaepora | 1599d9b3049d1b074335caa3ff00885effde2754 | 46a955b974d0ca972bfbee05c048f254d9c167f7 | refs/heads/master | 2016-09-06T01:45:14.147032 | 2015-02-06T16:58:46 | 2015-02-06T16:58:46 | 19,490,586 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,923 | cpp | ConfigDialog.cpp | #include "ConfigDialog.h"
#include "ui_ConfigDialog.h"
#include "Security/BlowFish.h"
#include "MainWindow.h"
#include <QDebug>
#include <fstream>
using namespace std;
ConfigDialog::ConfigDialog(QWidget *parent) :
QDialog(parent),
ui(new Ui::ConfigDialog)
{
ui->setupUi(this);
}
ConfigDialog::~ConfigDialog()
{
delete ui;
}
void ConfigDialog::setPass(QString p){
pass = p;
}
void ConfigDialog::on_buttonBox_rejected()
{
qApp->quit();
}
void ConfigDialog::on_buttonBox_accepted()
{
QString db, user, password, ip, port, adress;
try{
db = ui->txtDb->text();
user = ui->txtUser->text();
password = ui->txtPass->text();
ip = ui->txtIp->text();
port = ui->txtPort->text();
adress = ui->txtAdress->text();
BlowFish bf;
string datoCifrado;
bf.SetKey(pass.toUtf8().constData());
ofstream oSettings("Settings");
bf.Encrypt(&datoCifrado, db.toUtf8().constData());
oSettings<<datoCifrado+"/@data\n";
bf.Encrypt(&datoCifrado, user.toUtf8().constData());
oSettings<<datoCifrado+"/@data\n";
bf.Encrypt(&datoCifrado, password.toUtf8().constData());
oSettings<<datoCifrado+"/@data\n";
bf.Encrypt(&datoCifrado, ip.toUtf8().constData());
oSettings<<datoCifrado+"/@data\n";
bf.Encrypt(&datoCifrado, port.toUtf8().constData());
oSettings<<datoCifrado+"/@data\n";
bf.Encrypt(&datoCifrado, adress.toUtf8().constData());
oSettings<<datoCifrado+"/@data\n";
oSettings.flush();
oSettings.close();
MainWindow *mw = new MainWindow(this);
mw->setService(service);
mw->setPassword(pass);
mw->show();
}catch(int e){
qDebug()<<"Se ha producido un error cargando los datos del formulario";
}
}
void ConfigDialog::setService(GUIService *service){
this->service = service;
}
|
194a42c38b4db183da15bbbc06d5098b41b8fd88 | 9c67c720f62493adade9c90946951cea020ebc62 | /core/Packet.cpp | cc058650740530c0bc2c7de8186049c38e7dcc9b | [] | no_license | gapost/rtlab-old | f222505550f201b1fc589effb0cbaf4518e273e5 | d9da7711694b4d803f4ed1b0772cb20c2a03fdc5 | refs/heads/master | 2016-09-05T16:54:34.699367 | 2014-12-31T07:47:34 | 2014-12-31T07:47:34 | 27,383,475 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,524 | cpp | Packet.cpp | #include <QDebug>
#include <assert.h>
#include "Packet.h"
template<class T>
Packet<T>::Packet(T* p, int ad, int aw, mngr_t amngr, int aid):
mem(p), d(ad), w(aw), mngr(amngr), id(aid)
{
}
template<class T>
Packet<T>::~Packet(void)
{
}
template<class T>
void Packet<T>::ref()
{
ref_count.ref();
//qDebug() << "Ref packet id=" << id << ", count=" << refCount();
}
template<class T>
void Packet<T>::deref()
{
bool ret = ref_count.deref();
if (!ret)
{
mngr->push(this);
}
//qDebug() << "Deref packet id=" << id << ", count=" << refCount();
}
template<class T>
PacketManager<T>::PacketManager() : mem(0), memsz(0)
{
}
template<class T>
PacketManager<T>::~PacketManager()
{
free_packets.clear();
if (mem) delete [] mem;
}
template<class T>
void PacketManager<T>::resize(int depth, int width, int npackets)
{
// delete packets
free_packets.clear();
// allocate memory (if needed)
int packet_sz = depth*width;
int newsz = packet_sz*npackets;
if (newsz>memsz)
{
if (mem) delete [] mem;
memsz=0;
mem = new T[newsz];
memsz = newsz;
}
free_packets = mngr_t(new container_t());
T* p = mem;
for(int i = 0; i<npackets; ++i)
{
packet_t* pckt = new packet_t(p,depth,width,free_packets,i);
free_packets->push(pckt);
p += packet_sz;
}
}
template<class T>
Packet<T>* PacketManager<T>::getPacket()
{
return free_packets ? free_packets->pop() : 0;
}
template class Packet<double>;
template class PacketReader<double>;
template class PacketWriter<double>;
template class PacketManager<double>;
|
c341d4468a8a8334919a8d6f448163e1e8920419 | 900eedab24fff228cb0086a6122fbf7343a0eae8 | /template_linked_list.h | 93656989bf50cccf31340c6a67ec3055e8a3f30f | [] | no_license | zshehov/sda | ec407fc7b1ec51a546b98fa511d45d8ec8df4152 | 88b7bd622c23a7b4963088498701e797b92b0c03 | refs/heads/master | 2021-01-11T00:13:48.239042 | 2017-02-25T15:09:00 | 2017-02-25T15:09:00 | 70,574,711 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,736 | h | template_linked_list.h | #ifndef _LINKED_LIST
#define _LINKED_LIST
template<typename T>
struct Node {
T data;
Node<T> * next;
Node(const T & _data, Node<T>* _next = nullptr);
};
template<typename T>
Node<T>::Node(const T& _data, Node<T>* _next = nullptr) :
data(_data),
next(_next) {}
template<typename T>
class LinkedList {
private:
Node<T>* first;
Node<T>* last;
size_t size;
void copy(const LinkedList& other);
Node<T>* find_at(size_t index)const;
public:
LinkedList();
LinkedList(const LinkedList& _other);
LinkedList& operator=(const LinkedList& other);
~LinkedList();
void push_first(const T& el);
void push_last(const T& el);
bool pop_first();
bool pop_last();
T& get_first();
T& get_last();
T& operator[](size_t index);
void remove_at(size_t index);
void insert_after(size_t index, const T& el);
void insert_before(size_t index, const T& el);
void append(const LinkedList& other);
void empty_list();
bool is_empty() const;
size_t get_size() const;
};
template<typename T>
void LinkedList<T>::copy(const LinkedList& other) {
// in the case we are copying from an empty list
if (other.first == nullptr) {
empty_list();
return;
}
first = new Node<T>(other.first->data);
Node<T>* current_to = first;
Node<T>* current_from = other.first->next;
while (current_from != nullptr) {
//creates a new node in this linked list with a copy of the data
//from the corresponding node from the other linked list
current_to->next = new Node<T>(current_from->data);
current_to = current_to->next;//goes to next node from this linked list
current_from = current_from->next;//goes to next node from the other linked list
}
last = current_to;//last is the last copied node
size = other.size;
}
template<typename T>
void LinkedList<T>::empty_list() {
Node<T>* temp;
while (first != nullptr) {
temp = first;
first = first->next;
delete temp;
}
last = nullptr;
size = 0;
}
template<typename T>
Node<T>* LinkedList<T>::find_at(size_t index) const {
if (first == nullptr || index >= size) {
return nullptr;
}
Node<T>* current = first;
for (size_t i = 0; i < index; ++i) {
current = current->next;
}
return current;
}
template<typename T>
LinkedList<T>::LinkedList() :
first(nullptr),
last(nullptr),
size(0) {}
template<typename T>
LinkedList<T>::LinkedList(const LinkedList& other) {
copy(other);
}
template<typename T>
LinkedList<T>& LinkedList<T>::operator=(const LinkedList& other) {
if (this != &other) {
empty_list();
copy(other);
}
return *this;
}
template<typename T>
LinkedList<T>::~LinkedList() {
empty_list();
}
template<typename T>
void LinkedList<T>::push_first(const T& el) {
Node<T>* to_add = new Node<T>(el);
to_add->next = first;
first = to_add;
if (size == 0)
last = first;
++size;
}
template<typename T>
void LinkedList<T>::push_last(const T& el) {
Node<T>* to_add = new Node<T>(el);
if (size == 0) {
first = last = to_add;
}
else {
last->next = to_add;
last = to_add;
}
++size;
}
template<typename T>
bool LinkedList<T>::pop_first() {
if (size == 0)
return false;//nothing to pop
Node<T>* temp = first;
first = first->next;
delete temp;
--size;
return true;
}
template<typename T>
bool LinkedList<T>::pop_last() {
if (size == 0)
return false;//nothing to pop
//if there is only 1 element
if (first == last) {
pop_first();
//since last doesn't point to anything now
//it should be nullptr
last = nullptr;
return true;
}
//at this point we are sure that we have
//atleast 2 elements in the list
//since last element is at index size - 1,
//we are getting the one before that
Node<T>* preceding = find_at(size - 2);
preceding->next = nullptr;
delete last;
last = preceding;
--size;
return true;
}
template<typename T>
T& LinkedList<T>::get_first() {
if (size == 0) {
throw "Empty list";
}
return first->data;
}
template<typename T>
T& LinkedList<T>::get_last() {
if (size == 0) {
throw "Empty list";
}
return last->data;
}
template<typename T>
T& LinkedList<T>::operator[](size_t index) {
Node<T>* target = find_at(index);
if (target == nullptr)
throw "Invalid index";
return target->data;
}
template<typename T>
void LinkedList<T>::remove_at(size_t index) {
//removing the node at index 0 is same as pop the first element
if (index == 0) {
pop_first();
return;
}
Node<T>* pretarget = find_at(index - 1);
if (pretarget == nullptr)
throw "Invalid index";
Node<T>* target = pretarget->next;
pretarget->next = target->next;
delete target;
--size;
}
template<typename T>
void LinkedList<T>::insert_after(size_t index, const T& el) {
//inserting after the last element is the same as push_last
if (index == size - 1) {
push_last(el);
return;
}
Node<T>* target = find_at(index);
if (target == nullptr)
throw "Invalid index";
Node<T>* insertee = new Node<T>(el, target->next);
target->next = insertee;
++size;
}
template<typename T>
void LinkedList<T>::insert_before(size_t index, const T& el) {
//inserting before the first element is same as push_first
if (index == 0) {
push_first(el);
return;
}
Node<T>* target = find_at(index - 1);
if (target == nullptr)
throw "Invalid index";
Node<T>* insertee = new Node<T>(el, target->next);
target->next = insertee;
++size;
}
template<typename T>
void LinkedList<T>::append(const LinkedList<T>& other) {
Node<T>* current = other.first;
while (current != nullptr) {
push_last(new Node<T>(current->data));
current = current->next;
}
}
template<typename T>
bool LinkedList<T>::is_empty()const {
return size == 0;
}
template<typename T>
size_t LinkedList<T>::get_size()const {
return size;
}
#endif // !_LINKED_LIST
|
0062d4c332732ab82f9a33eecfd42ba16b9fe910 | 6b40e9dccf2edc767c44df3acd9b626fcd586b4d | /NT/windows/core/ntgdi/gre/verifier.hxx | 91f5f2c9b304d254eb7781c7d455dd0c7e066bec | [] | no_license | jjzhang166/WinNT5_src_20201004 | 712894fcf94fb82c49e5cd09d719da00740e0436 | b2db264153b80fbb91ef5fc9f57b387e223dbfc2 | refs/heads/Win2K3 | 2023-08-12T01:31:59.670176 | 2021-10-14T15:14:37 | 2021-10-14T15:14:37 | 586,134,273 | 1 | 0 | null | 2023-01-07T03:47:45 | 2023-01-07T03:47:44 | null | UTF-8 | C++ | false | false | 6,940 | hxx | verifier.hxx | /******************************Module*Header*******************************\
* Module Name: verifier.hxx
*
* GRE DriverVerifier support.
*
* If DriverVerifier is enabled for a particular component, the loader will
* substitute VerifierEngAllocMem for EngAllocMem, etc. The VerifierEngXX
* functions will help test the robustness of components that use EngXX calls
* by injecting random failures and using special pool (i.e., test low-mem
* behavior and check for buffer overruns).
*
* See ntos\mm\verifier.c for further details on DriverVerifier support in
* the memory manager.
*
* See sdk\inc\ntexapi.h for details on the DriverVerifier flags.
*
* Created: 30-Jan-1999 15:12:48
* Author: Gilman Wong [gilmanw]
*
* Copyright (c) 1999 Microsoft Corporation
*
\**************************************************************************/
#ifndef _VERIFIER_HXX_
#define _VERIFIER_HXX_
//
// This bitfield definition is based on EX_POOL_PRIORITY
// in ntos\inc\ex.h.
//
// Taken from ntos\mm\verifier.c.
//
#define POOL_SPECIAL_POOL_BIT 0x8
//
// Define VERIFIER_STATISTICS to enable statistics.
//
//#define VERIFIER_STATISTICS
#ifdef VERIFIER_STATISTICS
//
// Verifier statistics structure.
//
typedef struct tagVSTATS
{
ULONG ulAttempts;
ULONG ulFailures;
} VSTATS;
#endif
//
// Index values used to access the statistics array in VSTATE.
//
#define VERIFIER_INDEX_EngAllocMem 0
#define VERIFIER_INDEX_EngFreeMem 1
#define VERIFIER_INDEX_EngAllocUserMem 2
#define VERIFIER_INDEX_EngFreeUserMem 3
#define VERIFIER_INDEX_EngCreateBitmap 4
#define VERIFIER_INDEX_EngCreateDeviceSurface 5
#define VERIFIER_INDEX_EngCreateDeviceBitmap 6
#define VERIFIER_INDEX_EngCreatePalette 7
#define VERIFIER_INDEX_EngCreateClip 8
#define VERIFIER_INDEX_EngCreatePath 9
#define VERIFIER_INDEX_EngCreateWnd 10
#define VERIFIER_INDEX_EngCreateDriverObj 11
#define VERIFIER_INDEX_BRUSHOBJ_pvAllocRbrush 12
#define VERIFIER_INDEX_CLIPOBJ_ppoGetPath 13
#define VERIFIER_INDEX_LAST 14
//
// Verifier state structure.
//
// Members:
//
// fl May be any combination of the following flags
// (see sdk\inc\ntexapi.h for the declarations):
//
// DRIVER_VERIFIER_SPECIAL_POOLING
// Allocate from special pool.
//
// DRIVER_VERIFIER_FORCE_IRQL_CHECKING
// Ignored by GRE's verifier support.
//
// DRIVER_VERIFIER_INJECT_ALLOCATION_FAILURES
// Randomly fail the allocation routine.
//
// DRIVER_VERIFIER_TRACK_POOL_ALLOCATIONS
// Track pool in a linked list.
//
// bSystemStable This is TRUE if enough time has elapsed since boot
// for the system to be stable.
//
// ulRandomSeed Seed for random number generator, RtlRandom().
//
// ulFailureMask If AND-ed result of this and RtlRandom is zero,
// failure is injected. Usually Power-of-2 MINUS 1.
// For example, if ulFailureMask is 0x7, failure is
// generated on average every 8 times; if 0xf, every
// 16 times.
//
// ulDebugLevel Controls output of debug messages.
//
// hsemPoolTracker Semaphore that protects the pool tracking list.
//
// lePoolTrackerHead Head of the doubly-linked list that tracks
// VerifierEngAllocMem allocations.
//
// avs Array of VSTATS to record attempts and failures for
// each engine callback hooked. Only allocated if
// compiled with the VERIFIER_STATISTICS flag defined.
//
typedef struct tagVSTATE
{
FLONG fl;
BOOL bSystemStable;
ULONG ulRandomSeed;
ULONG ulFailureMask;
ULONG ulDebugLevel;
HSEMAPHORE hsemPoolTracker;
LIST_ENTRY lePoolTrackerHead;
#ifdef VERIFIER_STATISTICS
VSTATS avs[VERIFIER_INDEX_LAST];
#endif
} VSTATE;
//
// Verifier pool tracking structure.
//
// Members:
//
// list Links for doubly-linked list.
//
// ulSize Size of allocation requested by driver (does not
// include headers).
//
// ulTag Pool tag specified by driver.
//
typedef struct tagVERIFIERTRACKHDR
{
LIST_ENTRY list;
SIZE_T ulSize;
ULONG ulTag;
} VERIFIERTRACKHDR;
//
// Verifier function declarations.
//
extern "C"
{
PVOID APIENTRY VerifierEngAllocMem(ULONG fl, ULONG cj, ULONG tag);
VOID APIENTRY VerifierEngFreeMem(PVOID pv);
PVOID APIENTRY VerifierEngAllocUserMem(SIZE_T cj, ULONG tag);
VOID APIENTRY VerifierEngFreeUserMem(PVOID pv);
HBITMAP APIENTRY VerifierEngCreateBitmap(
SIZEL sizl,
LONG lWidth,
ULONG iFormat,
FLONG fl,
PVOID pvBits
);
HSURF APIENTRY VerifierEngCreateDeviceSurface(
DHSURF dhsurf,
SIZEL sizl,
ULONG iFormatCompat
);
HBITMAP APIENTRY VerifierEngCreateDeviceBitmap(
DHSURF dhsurf,
SIZEL sizl,
ULONG iFormatCompat
);
HPALETTE APIENTRY VerifierEngCreatePalette(
ULONG iMode,
ULONG cColors,
ULONG *pulColors,
FLONG flRed,
FLONG flGreen,
FLONG flBlue
);
CLIPOBJ * APIENTRY VerifierEngCreateClip();
PATHOBJ * APIENTRY VerifierEngCreatePath();
WNDOBJ * APIENTRY VerifierEngCreateWnd(
SURFOBJ *pso,
HWND hwnd,
WNDOBJCHANGEPROC pfn,
FLONG fl,
int iPixelFormat
);
HDRVOBJ APIENTRY VerifierEngCreateDriverObj(
PVOID pvObj,
FREEOBJPROC pFreeObjProc,
HDEV hdev
);
PVOID APIENTRY VerifierBRUSHOBJ_pvAllocRbrush(BRUSHOBJ *pbo, ULONG cj);
PATHOBJ* APIENTRY VerifierCLIPOBJ_ppoGetPath(CLIPOBJ* pco);
BOOL VerifierInitialization();
};
extern BOOL FASTCALL VerifierRandomFailure(ULONG ul);
//
// Mask of all the verifier flags interesting to GRE.
//
#define DRIVER_VERIFIER_GRE_MASK \
(DRIVER_VERIFIER_SPECIAL_POOLING | \
DRIVER_VERIFIER_FORCE_IRQL_CHECKING | \
DRIVER_VERIFIER_INJECT_ALLOCATION_FAILURES | \
DRIVER_VERIFIER_TRACK_POOL_ALLOCATIONS)
//
// Debug messages.
//
#if DBG
#define VERIFIERWARNING(l, s) if ((l) <= gvs.ulDebugLevel) { DbgPrint(s); }
#else
#define VERIFIERWARNING(l, s)
#endif
#endif
|
93c99ec7d90f8b085d32f850a612af89ee981720 | dccd1058e723b6617148824dc0243dbec4c9bd48 | /codeforces/819A.cpp | 2ce32cbb74c464fa954cf9e1f8b34d9d4a08450b | [] | no_license | imulan/procon | 488e49de3bcbab36c624290cf9e370abfc8735bf | 2a86f47614fe0c34e403ffb35108705522785092 | refs/heads/master | 2021-05-22T09:24:19.691191 | 2021-01-02T14:27:13 | 2021-01-02T14:27:13 | 46,834,567 | 7 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,171 | cpp | 819A.cpp | #include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i,n) for(int (i)=0;(i)<(int)(n);++(i))
#define all(x) (x).begin(),(x).end()
#define pb push_back
#define fi first
#define se second
#define dbg(x) cout<<#x" = "<<((x))<<endl
template<class T,class U> ostream& operator<<(ostream& o, const pair<T,U> &p){o<<"("<<p.fi<<","<<p.se<<")";return o;}
template<class T> ostream& operator<<(ostream& o, const vector<T> &v){o<<"[";for(T t:v){o<<t<<",";}o<<"]";return o;}
int main()
{
int a,b,l,r;
cin >>a >>b >>l >>r;
--l;
--r;
string x="",y="";
rep(i,a) x+='a'+i;
rep(i,b) x+=x[a-1];
bool use[30]={};
rep(i,a) use[x[x.size()-1-i]-'a']=true;
int ct = 0;
rep(i,30)
{
if(!use[i])
{
y+='a'+i;
++ct;
}
if(ct==a) break;
}
rep(i,b) y+=y[a-1];
string s = x+y;
// dbg(s);
int n = 2*(a+b);
int ap[30]={};
if(n<=r-l+1)
{
rep(i,n) ap[s[i]-'a']=1;
}
else
{
for(int i=l; i<=r; ++i) ap[s[i%n]-'a']=1;
}
int ans = 0;
rep(i,30) ans += ap[i];
cout << ans << endl;
return 0;
}
|
5c9395afa8f1e988440506ee05560bef0ead0e11 | e9774bd2d0cd9aaad49eacd092ba97e95dbf9a5f | /problems/A - Number of Apartments.cpp | 955fad4ea30fb4fd23f91e0e143b882e054ebe24 | [] | no_license | My-Competitive-Programming-Legacy/CodeForces | fb589c187706060d8a33eccf75597dad4dab904d | f9df0ffe76b1d37215f063e87920c0044fe226a4 | refs/heads/master | 2023-06-23T06:04:30.369027 | 2021-07-19T12:20:19 | 2021-07-19T12:20:19 | 387,414,460 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,418 | cpp | A - Number of Apartments.cpp | #include <bits/stdc++.h>
using namespace std;
typedef long long int ll;
#define space " "
#define debug(val) "[ " << #val " : " << (val) << " ]" << space
#define vi vector<int>
#define vl vector<ll>
#define vll vector<vector<ll>>
#define vii vector<vector<int>>
#define PI (double)(atan(1)*4)
#define pb push_back
#define ff first
#define ss second
#define pi pair<int , int >
#define INF LONG_LONG_MAX
#define FINF 1000000000000
#define EPS (double)0.0000000001
vi dx = {-1, 0, 0, 1};
vi dy = {0, -1, 1, 0};
const int N = 315; //316;
const int maxN = 1e5;
void readArray(int n, vector<int> &a) {
for (int i = 0; i < n; i++) {
cin >> a[i];
}
}
void solve() {
int n;
cin >> n;
for (int i = 0; i < 143; i++) {
for (int j = 0; j < 201; j++) {
int three = n - i * 7 - j * 5;
if (three < 0 || three % 3 != 0)
continue;
three /= 3;
if (i * 7 + j * 5 + (three) * 3 == n) {
cout << three << space << j << space << i << endl;
return;
}
}
}
cout << -1 << endl;
}
int main() {
//freopen("hello.in", "r", stdin);
// freopen("out.txt", "w", stdout);
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0); // FAST IO
int q = 1;
cin >> q;
for (int i = 1; i <= q; i++) {
// cout << "Case #" << i << ": ";
solve();
}
} |
8afed8b62e80cd5a5b7bb1c12acb95d76e6aa41f | cee179ac9c79c15109cddfc83ba81bb971eb1b7e | /vtkMED/Testing/PPolynomialTest.cpp | 66b0e847ba59ca0cc46c467d8981c90eedb72787 | [] | no_license | besoft/MAF2Medical | 8f88ea90a8091d99c70412ce6bca2cc988d6dfe4 | 8fed46786e9b34e7ff4871d2f11728abd69d9541 | refs/heads/master | 2021-01-15T22:29:48.224711 | 2019-07-31T13:57:22 | 2019-07-31T13:57:22 | 41,854,951 | 0 | 3 | null | 2015-09-03T10:52:01 | 2015-09-03T10:52:00 | null | UTF-8 | C++ | false | false | 2,535 | cpp | PPolynomialTest.cpp | /*=========================================================================
Program: MAF2Medical
Module: PPolynomialTest
Authors: Roberto Mucci
Copyright (c) B3C
All rights reserved. See Copyright.txt or
http://www.scsitaly.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
#include "medDefines.h"
//----------------------------------------------------------------------------
// NOTE: Every CPP file in the MAF must include "mafDefines.h" as first.
// This force to include Window,wxWidgets and VTK exactly in this order.
// Failing in doing this will result in a run-time error saying:
// "Failure#0: The value of ESP was not properly saved across a function call"
//----------------------------------------------------------------------------
#include <cppunit/config/SourcePrefix.h>
#include "PPolynomialTest.h"
#include "vtkMEDPoissonSurfaceReconstruction.h"
#include "vtkMEDPoissonSurfaceReconstruction.cxx"
//-------------------------------------------------------------------------
void PPolynomialTest::TestAllMethods()
//-------------------------------------------------------------------------
{
// Create Polynomial used inside PPolynomial ////////
Polynomial<1> p1;
double coeffAValue = 2;
double coeffBValue = 4;
enum COEFFICIENTS {A = 0, B = 1, C = 2};
p1.coefficients[A] = coeffAValue;
p1.coefficients[B] = coeffBValue;
StartingPolynomial<1> sp1;
sp1.start = 0;
sp1.p = p1;
///////////////////////////////////////////////////
PPolynomial<1> PPolynomialTestItem;
PPolynomialTestItem.set(1);
CPPUNIT_ASSERT(PPolynomialTestItem.size() == 24);
PPolynomialTestItem.reset(2);
CPPUNIT_ASSERT(PPolynomialTestItem.size() == 48);
// copy constructor test
PPolynomial<1> PPolynomialTestItem2(PPolynomialTestItem);
CPPUNIT_ASSERT(PPolynomialTestItem2.size() == 48);
//integral test
PPolynomialTestItem.set(&sp1, 1);
CPPUNIT_ASSERT(PPolynomialTestItem.integral(0,1) == 4);
//scale test
PPolynomial<1> p3;
p3 = PPolynomialTestItem.scale(2);
CPPUNIT_ASSERT(p3.polys->p.coefficients[B] == 2);
//shift test
p3 = PPolynomialTestItem.shift(6);
CPPUNIT_ASSERT(p3.polys->start == 6);
CPPUNIT_ASSERT(p3.polys->p.coefficients[A] == -22.0);
CPPUNIT_ASSERT(p3.polys->p.coefficients[B] == 4);
}
|
5dd1baf536b8708d83850b9511571a7149bcdaa3 | 3b6ca8a44bce25eb2d5d763a11cdcc9b38f21d1c | /mySTL/vector.cpp | e2c0395d8166e57ccf7efdbd62ea33d8911803b2 | [] | no_license | yanfengneng/algorithm | a51b78910384e041d708ff573c9f5376b87390f3 | d39ea285830a366dc83ba557fac41351be3845d0 | refs/heads/master | 2023-05-11T16:20:09.006176 | 2023-05-03T14:55:06 | 2023-05-03T14:55:06 | 189,338,325 | 11 | 0 | null | null | null | null | GB18030 | C++ | false | false | 2,708 | cpp | vector.cpp | #include <memory>
#include <algorithm>
template <class T,class Alloc>
class vector{
public:
//vector的元素类型定义
typedef T value_type; //元素值类型
typedef value_type* pointer; //指针类型
typedef value_type* iterator; //迭代器类型
typedef value_type& reference; //引用类型
typedef size_t size_type; //无符号类型
typedef ptrdiff_t difference_type; //d迭代器之间的距离
protected:
//STL空间配置器
typedef simple_alloc<value_type,Alloc> data_allocator;
//迭代器的范围
iterator start;
iterator finish;
iterator end_of_storage;
void insert_aux(iterator position,const T& x);
void deallocate(){//析构容器
if(start)data_allocator::deallocate(start,end_of_storage-start);
}
void fill_initialize(size_type n,const T& vaule){
start=allocate_and_fill(n,vaule);
finish=start+n;
end_of_storage=finish;
}
public:
//获得首尾迭代器
iterator begin(){return start;}
iterator end(){return finish;}
//容器的大小以及下标访问容器元素
size_type size(){return size_type(end()-begin());}
size_type capacity()const{return end_of_storage -begin();}
bool empty()const{return begin()==end();}
reference operator[](size_type n){return (*begin()+n);}
//容器的构造函数
vector():start(0),finish(0),end_of_storage(0){}
vector(size_type n,value_type T& value){fill_initialize(n,value);}
vector(int n,const T& value){fill_initialize(n,value);}
vector(long n,const T& value){fill_initialize(n,value);}
explicit vector(size_type n){fill_initialize(n,T());}
//容器的析构函数
~vector(){
destroy(start,finish); //析构对象
deallocate(); //释放内存
}
//访问容器的首尾元素
reference front(){return *begin();}
reference back(){return *(end()-1);}
//在尾部添加元素
void push_back(const T& x){
if(finish!=end_of_storage){
construct(finish,x);
++finish;
}
else{
insert_aux(end(),x);
}
}
//在尾部删除元素
void pop_back(){
--finish;
destroy(finish);
}
iterator erase(iterator position){//消除某位置上的元素
if(position+1!=end())
copy(position+1,finish,position);
--finish;
destroy(finish);
return position;
}
void resize(size_type new_size,const T& x){
if(new_size<size())erase(begin()+new_size,end());
else insert(end(),new_size-size(),x);
}
}; |
1665fec1321dbb0ff83dd7a9e13b1c550c807efe | b1fa90f76f916d29b5d68b7048268f4d8b71c111 | /src/lightspeed/base/containers/stack.tcc | 92028e6364baa578dc3d15b7d531a0363d910139 | [
"MIT"
] | permissive | ondra-novak/lightspeed | 742092dbf5925027a7c4281f61b008fcd18a40e5 | 21028adb7e47bebd264e02978da5edd7463ef621 | refs/heads/master | 2021-01-24T06:35:55.151750 | 2019-12-13T12:56:21 | 2019-12-13T12:56:21 | 27,496,470 | 2 | 2 | null | 2015-08-19T14:50:36 | 2014-12-03T16:32:35 | C++ | UTF-8 | C++ | false | false | 316 | tcc | stack.tcc | /*
* stack.tcc
*
* Created on: 29.9.2010
* Author: ondra
*/
#ifndef LIGHTSPEED_CONTAINERS_STACK_TCC_
#define LIGHTSPEED_CONTAINERS_STACK_TCC_
#include "stack.h"
#include "deque.tcc"
namespace LightSpeed {
//---------------------------------- implemenetation ----------
}
#endif /* STACK_TCC_ */
|
ed3a73cc951820c9b2892ac7586d09f06eaa4ed6 | 09a20466c1650ab4beb6554ceabc8649a7540c06 | /core/test/lib/libledger-test/MemPreferencesBackend.cpp | ac9af99ac91f7de135c6f0e28fdcbef9f87df130 | [
"MIT"
] | permissive | LedgerHQ/lib-ledger-core | 2f1153655ed7c116b866d2b21920a8a3017f5d96 | ad1e271b5f61e92f663ff08c337acc8b107fc85f | refs/heads/main | 2023-07-09T18:24:41.408616 | 2023-07-06T13:09:06 | 2023-07-06T13:09:06 | 68,716,694 | 99 | 99 | MIT | 2023-06-30T08:36:20 | 2016-09-20T13:51:06 | C++ | UTF-8 | C++ | false | false | 2,336 | cpp | MemPreferencesBackend.cpp |
#include <MemPreferencesBackend.hpp>
#include "utils/optional.hpp"
namespace ledger {
namespace core {
namespace test {
MemPreferencesBackend::~MemPreferencesBackend() {}
std::experimental::optional<std::vector<uint8_t>> MemPreferencesBackend::get(const std::vector<uint8_t> & key)
{
std::lock_guard<std::mutex> lock(_mtx);
if (_data.find(key) != _data.end())
return _data.at(key);
return optional<std::vector<uint8_t>>();
}
bool MemPreferencesBackend::commit(const std::vector<api::PreferencesChange> & changes)
{
for(const auto& change: changes)
{
std::lock_guard<std::mutex> lock(_mtx);
switch (change.type) {
case api::PreferencesChangeType::PUT_TYPE:
_data[change.key] = change.value;
break;
case api::PreferencesChangeType::DELETE_TYPE:
if (_data.erase(change.key) != 1)
throw std::runtime_error("Trying to remove element that doesn't exists");
break;
default:
throw std::runtime_error("Unknown change type");
break;
}
}
return true;
}
void MemPreferencesBackend::setEncryption(const std::shared_ptr<api::RandomNumberGenerator> & rng, const std::string & password)
{
}
void MemPreferencesBackend::unsetEncryption()
{
}
bool MemPreferencesBackend::resetEncryption(const std::shared_ptr<api::RandomNumberGenerator> & rng, const std::string & oldPassword, const std::string & newPassword)
{
return true;
}
std::string MemPreferencesBackend::getEncryptionSalt()
{
return "";
}
void MemPreferencesBackend::clear()
{
std::unique_lock<std::mutex> lock(_mtx);
_data.clear();
}
}
}
}
|
347304b29fd71aae7bb40b9404c1fda589787938 | 304a41e6c37e04684590891fb23b61db1e6a3e78 | /EAWebKitSupportPackages/EAThread/local_1.33.00/source/libunwind/eathread_callstack_libunwind.cpp | 0ec763d5c983b3819e914fdc954923fc924b6c39 | [
"BSD-2-Clause"
] | permissive | mundak/eawebkit | 445322bc07066abd045574365b7e314677b9c9fe | 3306465e17595fc454ea4ae228b2c72710809f4e | refs/heads/main | 2023-08-25T05:01:08.997135 | 2021-10-10T04:59:02 | 2021-10-10T04:59:02 | 415,479,861 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,925 | cpp | eathread_callstack_libunwind.cpp | ///////////////////////////////////////////////////////////////////////////////
// Copyright (c) Electronic Arts Inc. All rights reserved.
///////////////////////////////////////////////////////////////////////////////
#include <EABase/eabase.h>
#include <eathread/eathread.h>
#include <eathread/eathread_atomic.h>
#include <eathread/eathread_callstack.h>
#include <eathread/eathread_callstack_context.h>
#include <eathread/eathread_storage.h>
#include <string.h>
#include <pthread.h>
#include <unistd.h>
#include <unwind.h>
namespace EA
{
namespace Thread
{
EA::Thread::ThreadLocalStorage sStackBase;
///////////////////////////////////////////////////////////////////////////////
// SetStackBase
//
EATHREADLIB_API void SetStackBase(void* pStackBase)
{
if(pStackBase)
sStackBase.SetValue(pStackBase);
else
{
pStackBase = __builtin_frame_address(0);
if(pStackBase)
SetStackBase(pStackBase);
// Else failure; do nothing.
}
}
///////////////////////////////////////////////////////////////////////////////
// GetStackBase
//
EATHREADLIB_API void* GetStackBase()
{
void* pBase;
if(GetPthreadStackInfo(&pBase, NULL))
return pBase;
// Else we require the user to have set this previously, usually via a call
// to SetStackBase() in the start function of this currently executing
// thread (or main for the main thread).
pBase = sStackBase.GetValue();
if(pBase == NULL)
pBase = (void*)(((uintptr_t)&pBase + 4095) & ~4095); // Make a guess, round up to next 4096.
return pBase;
}
///////////////////////////////////////////////////////////////////////////////
// GetStackLimit
//
EATHREADLIB_API void* GetStackLimit()
{
void* pLimit;
if(GetPthreadStackInfo(NULL, &pLimit))
return pLimit;
pLimit = __builtin_frame_address(0);
return (void*)((uintptr_t)pLimit & ~4095); // Round down to nearest page, as the stack grows downward.
}
} // namespace Thread
} // namespace EA
|
f65f6b3762251eeeb970b9db8740520dd5d85766 | 8e251e452449d2aa219d72ed9871bb6030f6eea8 | /test_inlet/1900/epsilon | a06d8be05a39c712035e68e43034b9bd5e3ac773 | [] | no_license | glaciercoder/sky_cooling | e1a1482ecd900fe7df9bc8f71fb59fbf9c39428f | 0af1390bb7aaca9e828d980ed4aa92299071b37d | refs/heads/master | 2023-03-29T20:02:11.619786 | 2021-04-09T01:15:33 | 2021-04-09T01:15:33 | 349,085,961 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 373,079 | epsilon | /*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: 8
\\/ M anipulation |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "1900";
object epsilon;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 2 -3 0 0 0 0];
internalField nonuniform List<scalar>
46000
(
1.16803
5.46533
11.6389
17.873
23.9441
29.8672
35.6711
41.3755
46.9926
52.5291
57.9888
63.3735
68.6838
73.9198
79.0808
84.1663
89.1754
94.1071
98.9607
103.735
108.429
113.042
117.573
122.02
126.381
130.656
134.841
138.936
142.936
146.84
150.644
154.344
157.937
161.419
164.785
168.03
171.15
174.139
176.993
179.707
182.274
184.691
186.953
189.054
190.99
192.758
194.353
195.772
197.013
198.073
198.95
199.644
200.153
200.478
200.619
200.579
200.358
199.96
199.388
198.646
197.738
196.672
195.466
194.138
192.669
191.063
189.327
187.471
185.5
183.424
181.251
178.99
176.649
174.238
171.764
169.236
166.664
164.055
161.418
158.761
156.092
153.419
150.749
148.089
145.445
142.825
140.235
137.679
135.164
132.695
130.275
127.91
125.604
123.359
121.179
119.067
117.025
115.055
113.16
111.34
109.597
107.932
106.346
104.838
103.41
102.061
100.79
99.5986
98.4845
97.4475
96.4865
95.6005
94.7882
94.0483
93.3788
92.779
92.2467
91.7792
91.3745
91.0319
90.7488
90.5231
90.3524
90.2347
90.1676
90.1488
90.176
90.2468
90.3588
90.5094
90.6961
90.9163
91.1673
91.4464
91.7508
92.0775
92.4235
92.7858
93.1609
93.5456
93.9364
94.3294
94.721
95.107
95.4832
95.8452
96.1884
96.508
96.7988
97.0557
97.2732
97.4457
97.5674
97.6322
97.634
97.5667
97.4238
97.1991
96.8863
96.4791
95.9713
95.3571
94.6306
93.7866
92.8199
91.7274
90.5266
89.2092
87.7603
86.176
84.4551
82.5979
80.6056
78.4806
76.2261
73.8465
71.3474
68.7352
66.0174
63.2026
60.3
57.32
54.2732
51.1712
48.0254
44.8478
41.6499
38.443
35.2369
32.0349
28.8336
25.6712
22.5181
19.3682
16.2029
13.0373
9.83636
6.48644
3.09401
0.662494
1.16816
5.46586
11.6397
17.874
23.9452
29.8684
35.6723
41.3768
46.9939
52.5304
57.9901
63.3748
68.6852
73.9211
79.0822
84.1677
89.1767
94.1085
98.962
103.736
108.431
113.044
117.574
122.021
126.383
130.657
134.843
138.937
142.938
146.842
150.645
154.346
157.939
161.421
164.786
168.032
171.151
174.141
176.995
179.708
182.276
184.693
186.955
189.056
190.992
192.76
194.355
195.774
197.015
198.075
198.952
199.645
200.155
200.48
200.621
200.581
200.36
199.962
199.39
198.648
197.74
196.673
195.468
194.14
192.67
191.064
189.329
187.472
185.501
183.426
181.253
178.991
176.651
174.239
171.765
169.237
166.665
164.056
161.419
158.762
156.093
153.42
150.75
148.089
145.446
142.826
140.235
137.68
135.165
132.695
130.276
127.911
125.604
123.359
121.179
119.067
117.025
115.055
113.16
111.34
109.597
107.932
106.346
104.838
103.41
102.061
100.79
99.5983
98.4842
97.4472
96.4862
95.6002
94.7879
94.0479
93.3784
92.7786
92.2462
91.7787
91.374
91.0314
90.7483
90.5225
90.3519
90.2341
90.167
90.1482
90.1755
90.2462
90.3582
90.5088
90.6955
90.9157
91.1667
91.4458
91.7502
92.0769
92.4229
92.7851
93.1602
93.5449
93.9357
94.3287
94.7203
95.1063
95.4825
95.8445
96.1877
96.5072
96.7981
97.055
97.2725
97.445
97.5667
97.6315
97.6333
97.566
97.4231
97.1985
96.8857
96.4784
95.9707
95.3565
94.63
93.786
92.8193
91.7269
90.526
89.2087
87.7598
86.1755
84.4546
82.5975
80.6052
78.4802
76.2257
73.8462
71.3471
68.7349
66.0171
63.2023
60.2998
57.3198
54.2731
51.171
48.0253
44.8476
41.6498
38.4429
35.2368
32.0348
28.8335
25.6712
22.5181
19.3682
16.2029
13.0373
9.83638
6.48645
3.09402
0.662496
5.99586
5.09016
7.09073
9.39884
11.7532
14.1052
16.445
18.7717
21.0855
23.3868
25.6755
27.9512
30.2131
32.4603
34.6917
36.9062
39.1025
41.2795
43.4358
45.5701
47.6812
49.7677
51.8282
53.8612
55.865
57.8382
59.7789
61.6853
63.5553
65.3867
67.1775
68.925
70.6269
72.2803
73.8826
75.4309
76.9222
78.3536
79.722
81.0244
82.2578
83.4192
84.5059
85.5152
86.4444
87.2912
88.0535
88.7293
89.3171
89.8156
90.2236
90.5407
90.7664
90.9008
90.9443
90.8977
90.7622
90.5391
90.2306
89.8389
89.3672
88.82
88.2047
87.5257
86.7805
85.9705
85.0989
84.1697
83.1869
82.1546
81.0774
79.9595
78.8056
77.6199
76.407
75.1712
73.9169
72.6483
71.3696
70.0847
68.7975
67.5118
66.231
64.9586
63.6978
62.4516
61.2228
60.014
58.8277
57.6662
56.5315
55.4254
54.3496
53.3057
52.295
51.3185
50.3773
49.4722
48.604
47.773
46.9798
46.2245
45.5074
44.8286
44.1879
43.5852
43.0202
42.4928
42.0024
41.5486
41.131
40.7488
40.4014
40.0882
39.8081
39.5612
39.3463
39.1623
39.0084
38.8836
38.7872
38.7179
38.675
38.6573
38.6638
38.6936
38.7455
38.8186
38.9116
39.0235
39.1532
39.2995
39.4612
39.6371
39.8259
40.0263
40.237
40.4565
40.6834
40.9162
41.1532
41.3928
41.6332
41.8726
42.1091
42.3405
42.5648
42.7797
42.9829
43.1719
43.3441
43.4968
43.6273
43.7328
43.8101
43.8564
43.8685
43.8433
43.7776
43.6684
43.5124
43.3068
43.0486
42.7352
42.3644
41.9353
41.4512
40.9091
40.3047
39.6354
38.9
38.0982
37.23
36.2964
35.2987
34.2388
33.1191
31.9428
30.7133
29.4349
28.1121
26.7498
25.3533
23.9283
22.4806
21.0159
19.54
18.0586
16.5766
15.0979
13.6258
12.1664
10.716
9.28458
7.87911
6.51023
5.17996
3.89671
2.80439
3.27285
5.9965
5.09004
7.09031
9.39825
11.7525
14.1043
16.4441
18.7706
21.0843
23.3855
25.6741
27.9497
30.2115
32.4586
34.6899
36.9042
39.1004
41.2773
43.4334
45.5677
47.6787
49.7651
51.8254
53.8582
55.862
57.835
59.7756
61.6818
63.5517
65.383
67.1736
68.9211
70.6228
72.2761
73.8783
75.4264
76.9176
78.3489
79.7172
81.0194
82.2527
83.4141
84.5007
85.5099
86.439
87.2857
88.0479
88.7237
89.3115
89.8099
90.2179
90.5349
90.7606
90.895
90.9385
90.8919
90.7563
90.5333
90.2248
89.8331
89.3615
88.8143
88.199
87.5202
86.7749
85.965
85.0935
84.1644
83.1816
82.1495
81.0723
79.9545
78.8006
77.6151
76.4022
75.1666
73.9124
72.6439
71.3652
70.0805
68.7934
67.5077
66.2271
64.9548
63.6941
62.448
61.2193
60.0106
58.8245
57.663
56.5284
55.4224
54.3468
53.3029
52.2923
51.3159
50.3748
49.4698
48.6016
47.7707
46.9776
46.2224
45.5054
44.8266
44.186
43.5833
43.0185
42.4911
42.0008
41.5471
41.1294
40.7473
40.4
40.0869
39.8068
39.5599
39.3451
39.1611
39.0072
38.8826
38.7861
38.7169
38.674
38.6564
38.6629
38.6928
38.7447
38.8178
38.9109
39.0228
39.1526
39.2989
39.4606
39.6365
39.8254
40.0258
40.2365
40.456
40.683
40.9158
41.1528
41.3924
41.6329
41.8723
42.1087
42.3402
42.5645
42.7794
42.9826
43.1716
43.3439
43.4966
43.6272
43.7326
43.81
43.8563
43.8684
43.8432
43.7776
43.6683
43.5124
43.3069
43.0487
42.7353
42.3645
41.9354
41.4513
40.9092
40.3048
39.6355
38.9001
38.0983
37.2302
36.2966
35.2989
34.2389
33.1193
31.9429
30.7135
29.4351
28.1122
26.7499
25.3535
23.9285
22.4807
21.016
19.5401
18.0587
16.5767
15.098
13.6258
12.1664
10.716
9.28462
7.87914
6.51025
5.17998
3.89672
2.80439
3.27285
12.781
7.39563
7.80348
8.99879
10.4159
11.9229
13.4735
15.0479
16.6363
18.2328
19.8339
21.4367
23.0392
24.6393
26.2355
27.8262
29.4098
30.9851
32.5506
34.1051
35.647
37.1752
38.6883
40.1847
41.6632
43.1221
44.5598
45.9748
47.3652
48.7292
50.0648
51.3701
52.6428
53.8809
55.0819
56.2436
57.3636
58.4393
59.4685
60.4486
61.3772
62.2519
63.0705
63.8308
64.5307
65.1684
65.742
66.25
66.6912
67.0643
67.3687
67.6036
67.7689
67.8645
67.8906
67.8479
67.7373
67.5599
67.3173
67.0114
66.6446
66.2199
65.7409
65.2106
64.6297
63.9999
63.3236
62.6038
61.8434
61.0458
60.2142
59.3522
58.4632
57.5505
56.6177
55.6681
54.7051
53.7319
52.7518
51.7677
50.7828
49.7997
48.8214
47.8503
46.8889
45.9395
45.0042
44.0851
43.184
42.3026
41.4424
40.6048
39.7912
39.0026
38.24
37.5043
36.7961
36.1161
35.4648
34.8425
34.2496
33.6862
33.1525
32.6485
32.174
31.729
31.3134
30.9268
30.5689
30.2395
29.938
29.6641
29.4172
29.1971
29.0031
28.8348
28.6914
28.5723
28.4767
28.4041
28.3537
28.3248
28.3166
28.3285
28.3597
28.4094
28.4768
28.5612
28.6618
28.7777
28.908
29.052
29.2087
29.3772
29.5566
29.7459
29.944
30.15
30.3626
30.5808
30.8032
31.0287
31.2559
31.4834
31.7096
31.933
32.152
32.3647
32.5694
32.7641
32.9467
33.1152
33.2674
33.4009
33.5134
33.6024
33.6655
33.7
33.7035
33.6733
33.607
33.5019
33.3558
33.1665
32.932
32.6513
32.3241
31.9487
31.523
31.0451
30.5141
29.9293
29.2909
28.5992
27.8553
27.0605
26.2169
25.3267
24.3929
23.4186
22.4077
21.3641
20.2921
19.1963
18.0814
16.9524
15.8142
14.6716
13.5295
12.3926
11.2656
10.1542
9.06338
8.00175
6.9797
6.01517
5.13869
4.42077
4.17309
6.99908
12.782
7.39522
7.8027
8.99785
10.4149
11.9218
13.4723
15.0467
16.635
18.2315
19.8325
21.4353
23.0376
24.6377
26.2338
27.8244
29.408
30.9832
32.5487
34.103
35.6449
37.173
38.686
40.1824
41.6607
43.1195
44.5572
45.9721
47.3624
48.7263
50.0619
51.367
52.6397
53.8777
55.0786
56.2403
57.3601
58.4358
59.4649
60.4449
61.3734
62.2481
63.0667
63.8269
64.5268
65.1644
65.7379
66.246
66.6871
67.0602
67.3645
67.5995
67.7647
67.8603
67.8864
67.8438
67.7332
67.5558
67.3132
67.0073
66.6406
66.2159
65.7369
65.2067
64.6258
63.9961
63.3199
62.6001
61.8398
61.0422
60.2108
59.3488
58.4598
57.5473
56.6145
55.665
54.7021
53.729
52.7489
51.7649
50.7801
49.7971
48.8189
47.8478
46.8865
45.9372
45.002
44.083
43.1819
42.3006
41.4405
40.603
39.7895
39.0009
38.2384
37.5027
36.7946
36.1147
35.4634
34.8412
34.2484
33.6851
33.1514
32.6474
32.173
31.7281
31.3124
30.9259
30.5681
30.2387
29.9372
29.6634
29.4165
29.1964
29.0025
28.8342
28.6909
28.5718
28.4763
28.4037
28.3533
28.3244
28.3163
28.3282
28.3594
28.4091
28.4766
28.561
28.6616
28.7775
28.9078
29.0519
29.2086
29.3771
29.5565
29.7458
29.944
30.1499
30.3626
30.5808
30.8033
31.0288
31.256
31.4835
31.7097
31.9331
32.1521
32.3649
32.5695
32.7642
32.9469
33.1154
33.2676
33.4011
33.5136
33.6027
33.6657
33.7003
33.7038
33.6736
33.6073
33.5022
33.3561
33.1668
32.9324
32.6516
32.3244
31.949
31.5233
31.0454
30.5144
29.9296
29.2912
28.5995
27.8556
27.0608
26.2171
25.3269
24.3931
23.4189
22.4079
21.3643
20.2922
19.1964
18.0816
16.9526
15.8143
14.6717
13.5296
12.3926
11.2657
10.1542
9.06343
8.0018
6.97973
6.0152
5.13871
4.42078
4.17309
6.99908
19.6326
9.98373
9.24107
9.79098
10.725
11.8266
13.017
14.2604
15.5377
16.8382
18.1545
19.482
20.8169
22.1563
23.4979
24.8396
26.1796
27.5162
28.8478
30.173
31.4901
32.7979
34.0949
35.3795
36.6503
37.9058
39.1443
40.3642
41.5638
42.7412
43.8947
45.0222
46.1219
47.1916
48.2293
49.2327
50.1999
51.1285
52.0163
52.8614
53.6614
54.4143
55.1183
55.7712
56.3715
56.9173
57.4073
57.8401
58.2147
58.5299
58.7853
58.9802
59.1145
59.1881
59.2014
59.1548
59.0492
58.8856
58.6654
58.3901
58.0618
57.6828
57.2557
56.7827
56.2654
55.7057
55.1057
54.468
53.7953
53.0902
52.3558
51.595
50.8109
50.0063
49.1843
48.348
47.5001
46.6435
45.7811
44.9155
44.0494
43.1852
42.3254
41.4721
40.6276
39.7939
38.9728
38.1662
37.3755
36.6024
35.8482
35.1141
34.4012
33.7106
33.043
32.3992
31.7799
31.1857
30.6168
30.0738
29.5568
29.0661
28.6017
28.1636
27.7519
27.3663
27.0069
26.6733
26.3654
26.0827
25.8251
25.5922
25.3837
25.1991
25.038
24.8998
24.7841
24.6902
24.6176
24.5658
24.534
24.5218
24.5284
24.5534
24.596
24.6555
24.7314
24.8229
24.9293
25.05
25.1842
25.3311
25.49
25.6601
25.8406
26.0305
26.2291
26.4353
26.6482
26.8667
27.0898
27.3163
27.5451
27.7748
28.0041
28.2316
28.4558
28.6752
28.888
29.0924
29.2867
29.469
29.6371
29.7891
29.9227
30.0357
30.1258
30.1906
30.2278
30.2351
30.2101
30.1504
30.0539
29.9186
29.7426
29.5246
29.2633
28.9575
28.6054
28.2059
27.7579
27.2609
26.715
26.1205
25.4781
24.7892
24.0555
23.2789
22.4621
21.6078
20.7195
19.8006
18.855
17.8869
16.9004
15.9003
14.891
13.8775
12.8649
11.8586
10.8646
9.88979
8.9427
8.0346
7.18135
6.40814
5.762
5.36607
5.73543
10.956
19.6338
9.98315
9.24013
9.78992
10.7239
11.8255
13.0158
14.2591
15.5364
16.8368
18.1532
19.4806
20.8154
22.1548
23.4964
24.838
26.178
27.5145
28.8461
30.1712
31.4883
32.796
34.0929
35.3775
36.6483
37.9037
39.1421
40.362
41.5615
42.7389
43.8923
45.0198
46.1194
47.189
48.2266
49.23
50.1971
51.1257
52.0135
52.8585
53.6585
54.4114
55.1152
55.7682
56.3684
56.9142
57.4042
57.837
58.2115
58.5268
58.7821
58.977
59.1113
59.185
59.1983
59.1517
59.0461
58.8825
58.6623
58.3871
58.0588
57.6799
57.2527
56.7798
56.2626
55.7029
55.103
54.4654
53.7926
53.0877
52.3533
51.5926
50.8085
50.004
49.1821
48.3458
47.4979
46.6415
45.7791
44.9136
44.0476
43.1834
42.3237
41.4705
40.626
39.7924
38.9713
38.1647
37.3741
36.6011
35.8469
35.1129
34.4001
33.7095
33.0419
32.3982
31.779
31.1848
30.616
30.073
29.5561
29.0654
28.601
28.1629
27.7512
27.3657
27.0063
26.6728
26.3649
26.0823
25.8246
25.5918
25.3833
25.1988
25.0377
24.8995
24.7838
24.69
24.6174
24.5656
24.5338
24.5216
24.5283
24.5533
24.5958
24.6554
24.7313
24.8228
24.9293
25.05
25.1842
25.3311
25.4901
25.6602
25.8407
26.0306
26.2292
26.4354
26.6483
26.8668
27.09
27.3165
27.5453
27.775
28.0043
28.2319
28.4561
28.6754
28.8882
29.0927
29.287
29.4693
29.6375
29.7894
29.923
30.036
30.1261
30.191
30.2282
30.2355
30.2104
30.1508
30.0543
29.919
29.743
29.5249
29.2637
28.9578
28.6058
28.2062
27.7582
27.2613
26.7153
26.1208
25.4784
24.7895
24.0557
23.2791
22.4623
21.6081
20.7197
19.8008
18.8552
17.887
16.9006
15.9004
14.8911
13.8776
12.865
11.8587
10.8646
9.88984
8.94273
8.03463
7.18137
6.40815
5.762
5.36607
5.73542
10.956
26.3816
12.6556
10.9272
10.9847
11.5827
12.4211
13.3899
14.4383
15.5394
16.6769
17.8406
19.0236
20.2206
21.4277
22.6418
23.8602
25.0807
26.3012
27.5198
28.7348
29.9445
31.1473
32.3416
33.5257
34.6981
35.8569
37.0007
38.1275
39.2356
40.3231
41.3882
42.429
43.4433
44.4292
45.3847
46.3078
47.1963
48.0482
48.8615
49.6342
50.3644
51.0502
51.6898
52.2816
52.8241
53.3157
53.7553
54.1416
54.4738
54.7511
54.9729
55.1389
55.249
55.3032
55.3019
55.2456
55.1351
54.9713
54.7556
54.4894
54.1746
53.8129
53.4066
52.9578
52.4682
51.9396
51.3741
50.7742
50.1421
49.4805
48.792
48.0794
47.3453
46.5925
45.8238
45.0418
44.2493
43.4489
42.6432
41.8346
41.0255
40.2183
39.4151
38.6181
37.8293
37.0504
36.2834
35.5298
34.7911
34.0687
33.3639
32.6779
32.0116
31.3661
30.7421
30.1404
29.5615
29.006
28.4743
27.9667
27.4836
27.025
26.5911
26.1819
25.7974
25.4376
25.1023
24.7913
24.5045
24.2416
24.0025
23.7868
23.5942
23.4243
23.2766
23.1506
23.046
22.9623
22.8988
22.8551
22.8307
22.825
22.8375
22.8675
22.9146
22.978
23.0573
23.1518
23.2608
23.3838
23.5199
23.6686
23.8291
24.0007
24.1826
24.374
24.574
24.7819
24.9965
25.2171
25.4425
25.6717
25.9036
26.1369
26.3703
26.6025
26.8321
27.0576
27.2773
27.4897
27.6928
27.885
28.0642
28.2284
28.3756
28.5036
28.6103
28.6933
28.7505
28.7796
28.7784
28.7446
28.6762
28.5712
28.4278
28.2446
28.0201
27.753
27.4421
27.0861
26.6843
26.2363
25.742
25.2018
24.6163
23.9867
23.3146
22.6017
21.8503
21.0631
20.2428
19.3928
18.5166
17.6178
16.7005
15.769
14.8277
13.8817
12.9363
11.9976
11.0726
10.1699
9.30018
8.47798
7.72405
7.07214
6.58777
6.44137
7.35335
15.0224
26.3828
12.6549
10.9262
10.9835
11.5815
12.4198
13.3886
14.4371
15.5381
16.6756
17.8393
19.0222
20.2192
21.4263
22.6403
23.8587
25.0791
26.2995
27.5181
28.7331
29.9428
31.1455
32.3398
33.5238
34.6961
35.855
36.9987
38.1254
39.2335
40.321
41.3861
42.4267
43.441
44.4269
45.3824
46.3054
47.1939
48.0457
48.859
49.6317
50.3618
51.0476
51.6873
52.2791
52.8215
53.3131
53.7526
54.139
54.4711
54.7484
54.9703
55.1363
55.2464
55.3006
55.2993
55.243
55.1325
54.9688
54.7531
54.487
54.1721
53.8105
53.4043
52.9555
52.4659
51.9373
51.372
50.772
50.14
49.4785
48.79
48.0774
47.3434
46.5907
45.822
45.0401
44.2477
43.4473
42.6416
41.8331
41.024
40.2169
39.4138
38.6168
37.828
37.0492
36.2822
35.5286
34.79
34.0677
33.3629
32.6769
32.0107
31.3653
30.7413
30.1396
29.5608
29.0053
28.4736
27.9661
27.483
27.0244
26.5905
26.1814
25.7969
25.4371
25.1019
24.7909
24.5041
24.2412
24.0022
23.7865
23.5939
23.424
23.2763
23.1504
23.0458
22.9621
22.8986
22.855
22.8306
22.8249
22.8374
22.8674
22.9145
22.978
23.0573
23.1518
23.2608
23.3838
23.5199
23.6687
23.8292
24.0008
24.1827
24.3741
24.5741
24.782
24.9967
25.2173
25.4427
25.6719
25.9038
26.1371
26.3705
26.6028
26.8324
27.0579
27.2776
27.49
27.6931
27.8853
28.0645
28.2287
28.3759
28.504
28.6106
28.6937
28.7509
28.78
28.7787
28.745
28.6765
28.5716
28.4282
28.2449
28.0204
27.7534
27.4424
27.0864
26.6846
26.2366
25.7423
25.202
24.6166
23.987
23.3148
22.6019
21.8505
21.0632
20.243
19.393
18.5167
17.6179
16.7006
15.7691
14.8278
13.8818
12.9364
11.9976
11.0726
10.1699
9.3002
8.47798
7.72405
7.07213
6.58775
6.44136
7.35332
15.0224
33.1161
15.4032
12.7684
12.4054
12.7365
13.3786
14.1911
15.1088
16.0968
17.1343
18.2079
19.3084
20.4293
21.5655
22.713
23.8686
25.0295
26.1931
27.3574
28.5202
29.6797
30.8338
31.9809
33.1189
34.2462
35.3609
36.461
37.5446
38.6099
39.6548
40.6774
41.6755
42.6472
43.5903
44.503
45.383
46.2284
47.0373
47.8077
48.5377
49.2256
49.8697
50.4684
51.0202
51.5237
51.9778
52.3814
52.7335
53.0334
53.2806
53.4746
53.6153
53.7027
53.7369
53.7184
53.6477
53.5257
53.3534
53.132
52.863
52.548
52.1887
51.787
51.3451
50.8645
50.3472
49.7952
49.2107
48.596
47.9535
47.2857
46.595
45.8842
45.1557
44.4121
43.656
42.8899
42.1164
41.3377
40.5563
39.7744
38.9943
38.218
37.4475
36.6848
35.9315
35.1895
34.4602
33.7452
33.0456
32.3629
31.6981
31.0522
30.4261
29.8206
29.2364
28.6742
28.1344
27.6174
27.1237
26.6534
26.2068
25.7839
25.3849
25.0098
24.6585
24.3309
24.0269
23.7463
23.4892
23.2551
23.0438
22.855
22.6883
22.5432
22.4194
22.3165
22.2339
22.1713
22.1281
22.1039
22.0981
22.1102
22.1397
22.186
22.2486
22.3269
22.4204
22.5283
22.6502
22.7853
22.933
23.0926
23.2634
23.4446
23.6355
23.8352
24.043
24.2578
24.4788
24.7049
24.9352
25.1684
25.4034
25.639
25.8738
26.1064
26.3354
26.5592
26.7761
26.9845
27.1825
27.3682
27.5397
27.695
27.832
27.9486
28.0426
28.1118
28.1541
28.1674
28.1495
28.0985
28.0124
27.8895
27.7284
27.5276
27.2858
27.0019
26.675
26.3043
25.8894
25.4305
24.9277
24.3817
23.7936
23.1646
22.4965
21.7911
21.0509
20.2783
19.4763
18.6479
17.7965
16.9258
16.0398
15.1429
14.2402
13.3372
12.4407
11.5585
10.7006
9.88
9.11404
8.4285
7.86602
7.51141
7.58781
9.02218
19.2312
33.1173
15.4023
12.7673
12.4042
12.7352
13.3773
14.1898
15.1075
16.0955
17.1329
18.2065
19.307
20.4279
21.564
22.7115
23.8671
25.0279
26.1915
27.3558
28.5186
29.678
30.8321
31.9791
33.1171
34.2444
35.359
36.4591
37.5427
38.6079
39.6528
40.6753
41.6734
42.645
43.5882
44.5008
45.3808
46.2262
47.035
47.8054
48.5354
49.2233
49.8674
50.466
51.0178
51.5214
51.9754
52.379
52.7311
53.0311
53.2782
53.4723
53.613
53.7004
53.7346
53.7161
53.6454
53.5235
53.3512
53.1299
52.8609
52.5458
52.1866
51.785
51.3431
50.8626
50.3453
49.7934
49.2089
48.5942
47.9518
47.284
46.5934
45.8826
45.1541
44.4106
43.6546
42.8885
42.115
41.3364
40.555
39.7732
38.9931
38.2169
37.4464
36.6837
35.9305
35.1885
34.4593
33.7443
33.0448
32.3621
31.6973
31.0514
30.4253
29.8199
29.2358
28.6736
28.1338
27.6168
27.1231
26.6529
26.2063
25.7835
25.3845
25.0094
24.6581
24.3305
24.0265
23.746
23.4889
23.2548
23.0436
22.8547
22.688
22.543
22.4192
22.3163
22.2338
22.1712
22.128
22.1038
22.098
22.1101
22.1396
22.1859
22.2486
22.3269
22.4204
22.5283
22.6502
22.7853
22.933
23.0926
23.2634
23.4447
23.6356
23.8353
24.0431
24.2579
24.4789
24.7051
24.9353
25.1686
25.4036
25.6392
25.874
26.1067
26.3357
26.5594
26.7764
26.9847
27.1827
27.3685
27.54
27.6953
27.8323
27.9489
28.0429
28.1121
28.1544
28.1677
28.1498
28.0988
28.0127
27.8898
27.7287
27.5279
27.2861
27.0022
26.6752
26.3045
25.8897
25.4307
24.9279
24.3819
23.7938
23.1648
22.4966
21.7913
21.0511
20.2785
19.4764
18.648
17.7966
16.9258
16.0398
15.143
14.2402
13.3373
12.4407
11.5585
10.7007
9.88
9.11403
8.42848
7.86599
7.51138
7.58777
9.02214
19.2312
39.9445
18.2525
14.7473
14.002
14.1049
14.5891
15.2832
16.1076
17.0198
17.9942
19.0144
20.0694
21.1508
22.2527
23.3701
24.4991
25.6364
26.7791
27.9246
29.0703
30.2142
31.354
32.4875
33.6127
34.7275
35.8298
36.9175
37.9884
39.0404
40.0713
41.079
42.0613
43.016
43.9411
44.8343
45.6936
46.5171
47.3028
48.0488
48.7534
49.4149
50.0318
50.6027
51.1262
51.6012
52.0268
52.402
52.7261
52.9986
53.2192
53.3877
53.5039
53.5682
53.5807
53.5422
53.4532
53.3146
53.1275
52.8932
52.6131
52.2887
51.9218
51.5142
51.0677
50.5842
50.0655
49.5135
48.9304
48.3184
47.6798
47.0169
46.3321
45.6279
44.9068
44.1712
43.4235
42.6662
41.9016
41.132
40.3597
39.587
38.8158
38.0483
37.2863
36.5317
35.7862
35.0515
34.3291
33.6204
32.9267
32.2493
31.5892
30.9474
30.3249
29.7224
29.1406
28.5802
28.0417
27.5254
27.0318
26.5612
26.1137
25.6895
25.2886
24.9112
24.5572
24.2265
23.9191
23.635
23.374
23.1357
22.92
22.7265
22.5549
22.4048
22.2758
22.1675
22.0795
22.0114
21.9626
21.9328
21.9214
21.928
21.952
21.9929
22.0502
22.1233
22.2116
22.3146
22.4317
22.5622
22.7055
22.8609
23.0276
23.2051
23.3925
23.589
23.7937
24.0058
24.2243
24.4483
24.6767
24.9083
25.1421
25.3767
25.6109
25.8432
26.0723
26.2965
26.5143
26.724
26.9237
27.1117
27.2859
27.4446
27.5856
27.7069
27.8064
27.882
27.9317
27.9533
27.945
27.9047
27.8308
27.7216
27.5755
27.3913
27.1678
26.904
26.599
26.2522
25.8634
25.4325
24.9598
24.446
23.8919
23.2986
22.6676
22.0005
21.2994
20.5665
19.8041
19.015
18.2022
17.369
16.5191
15.6568
14.7871
13.9157
13.0499
12.1983
11.3723
10.5866
9.86161
9.22808
8.73769
8.49508
8.77768
10.7261
23.4908
39.9458
18.2515
14.7461
14.0008
14.1036
14.5879
15.2819
16.1063
17.0184
17.9928
19.0131
20.0679
21.1494
22.2512
23.3686
24.4976
25.6349
26.7775
27.9229
29.0687
30.2125
31.3522
32.4857
33.6109
34.7257
35.8279
36.9156
37.9864
39.0384
40.0693
41.077
42.0592
43.0139
43.9389
44.8321
45.6915
46.5149
47.3006
48.0466
48.7512
49.4127
50.0296
50.6005
51.124
51.599
52.0246
52.3998
52.7239
52.9964
53.217
53.3855
53.5018
53.566
53.5786
53.5401
53.4511
53.3125
53.1255
52.8912
52.6111
52.2868
51.9199
51.5123
51.0659
50.5825
50.0638
49.5118
48.9288
48.3168
47.6782
47.0153
46.3306
45.6265
44.9054
44.1698
43.4222
42.6649
41.9003
41.1308
40.3586
39.5858
38.8147
38.0472
37.2853
36.5307
35.7853
35.0506
34.3282
33.6196
32.9259
32.2485
31.5885
30.9467
30.3242
29.7217
29.14
28.5796
28.0411
27.5249
27.0313
26.5607
26.1132
25.689
25.2882
24.9108
24.5568
24.2261
23.9188
23.6347
23.3736
23.1354
22.9197
22.7262
22.5546
22.4045
22.2756
22.1673
22.0793
22.0112
21.9625
21.9327
21.9213
21.9279
21.9519
21.9928
22.0501
22.1232
22.2116
22.3146
22.4317
22.5622
22.7055
22.8609
23.0277
23.2051
23.3925
23.589
23.7938
24.0059
24.2244
24.4484
24.6768
24.9084
25.1422
25.3768
25.611
25.8434
26.0725
26.2967
26.5145
26.7242
26.9239
27.1119
27.2862
27.4448
27.5859
27.7071
27.8066
27.8823
27.9319
27.9536
27.9452
27.905
27.8311
27.7218
27.5758
27.3916
27.1681
26.9042
26.5992
26.2524
25.8636
25.4327
24.96
24.4462
23.892
23.2987
22.6677
22.0007
21.2996
20.5666
19.8042
19.0151
18.2023
17.3691
16.5192
15.6569
14.7871
13.9157
13.0499
12.1983
11.3723
10.5865
9.86158
9.22803
8.73764
8.49503
8.77763
10.7261
23.4909
46.9695
21.2374
16.8704
15.7624
15.6603
16.0112
16.6118
17.3681
18.2296
19.1662
20.1585
21.1932
22.2607
23.3537
24.4665
25.5945
26.7336
27.8806
29.0324
30.1861
31.3391
32.4888
33.6329
34.7689
35.8944
37.0071
38.1045
39.1842
40.2439
41.2811
42.2935
43.2788
44.2346
45.1587
46.0488
46.9029
47.7189
48.495
49.2292
49.92
50.5657
51.165
51.7166
52.2194
52.6724
53.0749
53.4262
53.7258
53.9735
54.169
54.3124
54.4039
54.4438
54.4326
54.3711
54.26
54.1003
53.8932
53.64
53.3421
53.0011
52.6188
52.1969
51.7373
51.2417
50.7119
50.1499
49.5577
48.9376
48.2916
47.6221
46.9314
46.2219
45.4959
44.7557
44.0039
43.2425
42.4741
41.7007
40.9246
40.1479
39.3727
38.601
37.8345
37.0752
36.3247
35.5846
34.8565
34.1417
33.4416
32.7573
32.09
31.4406
30.81
30.1991
29.6086
29.0391
28.4911
27.9651
27.4615
26.9805
26.5224
26.0874
25.6755
25.2869
24.9214
24.5793
24.2604
23.9648
23.6922
23.4423
23.2149
23.0098
22.8266
22.6649
22.5245
22.4048
22.3055
22.2263
22.1665
22.1259
22.1039
22.1
22.1138
22.1447
22.1922
22.2557
22.3348
22.4287
22.537
22.659
22.7941
22.9415
23.1007
23.2708
23.451
23.6407
23.8389
24.0448
24.2573
24.4756
24.6986
24.9251
25.154
25.384
25.6139
25.8422
26.0676
26.2884
26.5031
26.71
26.9073
27.0933
27.2661
27.4238
27.5644
27.686
27.7864
27.8639
27.9163
27.9417
27.9383
27.9042
27.8379
27.7378
27.6024
27.4306
27.2214
26.9737
26.6869
26.3605
25.9943
25.5882
25.1426
24.658
24.135
23.5747
22.9782
22.3469
21.6824
20.9864
20.2611
19.5086
18.7315
17.9327
17.1156
16.2842
15.4435
14.5993
13.7592
12.9326
12.132
11.3739
10.6816
10.0907
9.66205
9.52022
9.99719
12.4539
27.7451
46.9709
21.2363
16.8691
15.7611
15.659
16.0099
16.6104
17.3667
18.2282
19.1648
20.157
21.1917
22.2592
23.3521
24.4649
25.5929
26.732
27.879
29.0307
30.1844
31.3373
32.487
33.6311
34.7671
35.8925
37.0052
38.1025
39.1822
40.2419
41.2791
42.2915
43.2767
44.2325
45.1566
46.0467
46.9008
47.7168
48.4928
49.227
49.9178
50.5635
51.1628
51.7144
52.2172
52.6703
53.0727
53.424
53.7237
53.9713
54.1669
54.3103
54.4018
54.4417
54.4306
54.369
54.258
54.0983
53.8912
53.6381
53.3402
52.9993
52.617
52.1952
51.7356
51.24
50.7102
50.1483
49.5562
48.936
48.2901
47.6206
46.93
46.2205
45.4945
44.7544
44.0026
43.2413
42.4729
41.6995
40.9235
40.1469
39.3717
38.6
37.8336
37.0743
36.3238
35.5838
34.8557
34.1409
33.4408
32.7566
32.0892
31.4399
30.8094
30.1985
29.608
29.0385
28.4905
27.9646
27.4609
26.98
26.5219
26.0869
25.6751
25.2864
24.921
24.5789
24.2601
23.9644
23.6918
23.442
23.2146
23.0095
22.8263
22.6647
22.5242
22.4046
22.3053
22.2261
22.1664
22.1257
22.1037
22.0999
22.1136
22.1445
22.192
22.2556
22.3347
22.4287
22.537
22.659
22.7941
22.9415
23.1007
23.2708
23.451
23.6407
23.8389
24.0448
24.2574
24.4757
24.6986
24.9252
25.1541
25.3841
25.614
25.8423
26.0677
26.2885
26.5032
26.7101
26.9075
27.0935
27.2663
27.424
27.5646
27.6862
27.7866
27.8641
27.9165
27.9419
27.9385
27.9045
27.8381
27.738
27.6026
27.4308
27.2215
26.9739
26.687
26.3606
25.9944
25.5884
25.1428
24.6581
24.1351
23.5748
22.9783
22.347
21.6824
20.9865
20.2611
19.5086
18.7315
17.9327
17.1156
16.2842
15.4435
14.5993
13.7592
12.9326
12.1319
11.3738
10.6815
10.0906
9.66198
9.52015
9.99712
12.4539
27.7452
54.2874
24.3938
19.1539
17.6906
17.3973
17.6313
18.1562
18.8629
19.6927
20.6108
21.5947
22.6289
23.7023
24.8065
25.9349
27.0819
28.2432
29.4147
30.5928
31.7743
32.9562
34.1355
35.3094
36.4751
37.6299
38.7711
39.8959
41.0017
42.0857
43.1454
44.178
45.1811
46.1521
47.0887
47.9884
48.8492
49.6689
50.4456
51.1776
51.8632
52.501
53.0896
53.6281
54.1155
54.551
54.9341
55.2643
55.5414
55.7653
55.9362
56.0543
56.12
56.1338
56.0964
56.0088
55.8719
55.6867
55.4547
55.1772
54.8557
54.4918
54.0873
53.644
53.1636
52.648
52.099
51.5185
50.9084
50.271
49.6084
48.9228
48.2165
47.4917
46.7507
45.9959
45.2295
44.4538
43.671
42.8833
42.0929
41.3018
40.512
39.7254
38.944
38.1695
37.4036
36.6478
35.9037
35.1727
34.456
33.7549
33.0705
32.4037
31.7556
31.1269
30.5184
29.9306
29.3642
28.8197
28.2974
27.7976
27.3207
26.8667
26.4359
26.0282
25.6438
25.2829
24.9454
24.6312
24.3402
24.072
23.8265
23.6034
23.4024
23.2232
23.0654
22.9287
22.8127
22.7169
22.6409
22.5844
22.5467
22.5275
22.5263
22.5426
22.5757
22.6253
22.6907
22.7714
22.8667
22.9761
23.0988
23.2343
23.3818
23.5405
23.7098
23.8888
24.0766
24.2723
24.475
24.6837
24.8974
25.1149
25.335
25.5565
25.7781
25.9985
26.2161
26.4295
26.637
26.8371
27.028
27.208
27.3753
27.5279
27.664
27.7818
27.8792
27.9545
28.0058
28.0312
28.029
27.9977
27.9355
27.8413
27.7136
27.5514
27.3538
27.1201
26.8495
26.5417
26.1966
25.8142
25.3947
24.9384
24.446
23.9182
23.3559
22.7602
22.1323
21.4734
20.7852
20.0693
19.3279
18.5635
17.7789
16.9781
16.1656
15.3475
14.5316
13.7279
12.9499
12.2159
11.5518
10.9982
10.6249
10.5763
11.2382
14.1876
31.968
54.2888
24.3925
19.1525
17.6892
17.3959
17.6299
18.1548
18.8615
19.6913
20.6094
21.5932
22.6274
23.7008
24.8049
25.9332
27.0803
28.2415
29.4129
30.591
31.7725
32.9544
34.1336
35.3075
36.4732
37.628
38.7691
39.8939
40.9997
42.0837
43.1433
44.1759
45.179
46.15
47.0865
47.9863
48.847
49.6667
50.4434
51.1754
51.861
52.4988
53.0875
53.626
54.1133
54.5489
54.9319
55.2621
55.5393
55.7632
55.9341
56.0522
56.1179
56.1317
56.0944
56.0068
55.8699
55.6848
55.4528
55.1753
54.8538
54.49
54.0855
53.6422
53.1619
52.6464
52.0974
51.5169
50.9069
50.2695
49.607
48.9214
48.2151
47.4904
46.7494
45.9947
45.2283
44.4526
43.6699
42.8822
42.0918
41.3007
40.5109
39.7244
38.9431
38.1686
37.4027
36.6469
35.9029
35.1719
34.4552
33.7541
33.0697
32.403
31.7549
31.1263
30.5177
29.93
29.3636
28.8191
28.2968
27.7971
27.3201
26.8662
26.4354
26.0278
25.6434
25.2825
24.945
24.6309
24.3398
24.0716
23.8262
23.6031
23.4021
23.2229
23.0652
22.9285
22.8124
22.7166
22.6407
22.5841
22.5465
22.5273
22.5261
22.5424
22.5756
22.6252
22.6906
22.7713
22.8666
22.976
23.0987
23.2342
23.3817
23.5405
23.7098
23.8887
24.0765
24.2723
24.475
24.6838
24.8974
25.1149
25.335
25.5566
25.7782
25.9986
26.2162
26.4296
26.6371
26.8372
27.0282
27.2082
27.3754
27.528
27.6642
27.7819
27.8794
27.9547
28.0059
28.0314
28.0292
27.9978
27.9357
27.8414
27.7137
27.5516
27.354
27.1202
26.8496
26.5418
26.1967
25.8143
25.3947
24.9385
24.4461
23.9183
23.356
22.7603
22.1323
21.4734
20.7852
20.0693
19.3279
18.5635
17.7789
16.9781
16.1656
15.3475
14.5316
13.7279
12.9499
12.2158
11.5518
10.9981
10.6248
10.5762
11.2381
14.1875
31.9681
61.9899
27.7584
21.6186
19.7985
19.3213
19.4497
19.9124
20.5841
21.3977
22.3132
23.305
24.3555
25.4519
26.5845
27.7457
28.9294
30.1303
31.3438
32.5658
33.7926
35.0207
36.2466
37.4672
38.6792
39.8796
41.0652
42.2329
43.3796
44.5025
45.5985
46.6647
47.6983
48.6966
49.657
50.5771
51.4546
52.2872
53.0732
53.8107
54.4982
55.1343
55.7179
56.248
56.724
57.1452
57.5114
57.8223
58.078
58.2786
58.4246
58.5164
58.5547
58.5402
58.474
58.3569
58.1904
57.9755
57.7137
57.4066
57.0558
56.6629
56.2299
55.7584
55.2504
54.7075
54.1317
53.5248
52.8889
52.226
51.5383
50.828
50.0972
49.3483
48.5834
47.8047
47.0146
46.2153
45.4088
44.5975
43.7833
42.9683
42.1545
41.3439
40.5381
39.7391
38.9485
38.1678
37.3986
36.6422
35.9
35.1731
34.4628
33.77
33.0957
32.4406
31.8057
31.1914
30.5985
30.0273
29.4784
28.9521
28.4487
27.9683
27.5111
27.0773
26.6669
26.2803
25.9174
25.5779
25.2618
24.969
24.6991
24.4519
24.2272
24.0246
23.8437
23.6844
23.546
23.4284
23.3309
23.2533
23.195
23.1556
23.1346
23.1314
23.1456
23.1766
23.2238
23.2867
23.3647
23.4571
23.5633
23.6825
23.8142
23.9574
24.1115
24.2757
24.4489
24.6305
24.8193
25.0144
25.2146
25.419
25.6263
25.8353
26.0445
26.2528
26.4587
26.6605
26.8569
27.0462
27.2266
27.3966
27.5543
27.698
27.8258
27.936
28.0268
28.0965
28.1432
28.1653
28.1613
28.1297
28.069
27.9781
27.8559
27.7014
27.5138
27.2925
27.0371
26.7471
26.4226
26.0635
25.67
25.2424
24.7811
24.2866
23.7595
23.2004
22.6102
21.9897
21.34
20.6623
19.9581
19.2295
18.4789
17.7098
16.9267
16.1356
15.3443
14.5635
13.8076
13.0963
12.4586
11.9394
11.6176
11.6571
12.4965
15.9239
36.1622
61.9914
27.757
21.6171
19.797
19.3198
19.4482
19.9109
20.5826
21.3962
22.3117
23.3035
24.3539
25.4502
26.5828
27.744
28.9277
30.1285
31.342
32.564
33.7907
35.0187
36.2447
37.4652
38.6772
39.8776
41.0631
42.2308
43.3775
44.5004
45.5963
46.6625
47.6961
48.6944
49.6548
50.5749
51.4523
52.285
53.071
53.8085
54.4959
55.1321
55.7157
56.2458
56.7218
57.143
57.5092
57.8201
58.0758
58.2765
58.4225
58.5143
58.5526
58.5382
58.472
58.355
58.1884
57.9736
57.7118
57.4048
57.054
56.6612
56.2281
55.7567
55.2487
54.7059
54.1301
53.5232
52.8873
52.2245
51.5369
50.8266
50.0958
49.3469
48.582
47.8034
47.0134
46.2141
45.4077
44.5963
43.7822
42.9672
42.1535
41.3428
40.5372
39.7382
38.9475
38.1669
37.3977
36.6413
35.8991
35.1723
34.462
33.7693
33.095
32.4399
31.805
31.1908
30.5978
30.0267
29.4779
28.9516
28.4481
27.9678
27.5106
27.0768
26.6665
26.2799
25.9169
25.5775
25.2614
24.9686
24.6987
24.4515
24.2268
24.0242
23.8434
23.6841
23.5457
23.4281
23.3307
23.253
23.1948
23.1554
23.1343
23.1312
23.1454
23.1764
23.2237
23.2866
23.3646
23.457
23.5631
23.6824
23.8141
23.9573
24.1114
24.2756
24.4489
24.6304
24.8192
25.0143
25.2146
25.419
25.6263
25.8353
26.0446
26.2529
26.4587
26.6606
26.857
27.0462
27.2267
27.3967
27.5544
27.6981
27.8259
27.9361
28.0269
28.0966
28.1433
28.1654
28.1614
28.1298
28.0691
27.9782
27.856
27.7015
27.5139
27.2926
27.0371
26.7472
26.4227
26.0636
25.6701
25.2425
24.7811
24.2866
23.7595
23.2004
22.6102
21.9898
21.34
20.6623
19.9581
19.2295
18.4789
17.7098
16.9267
16.1355
15.3442
14.5634
13.8075
13.0962
12.4585
11.9393
11.6175
11.657
12.4964
15.9238
36.1623
70.1664
31.3692
24.2885
22.1029
21.4442
21.4746
21.8855
22.5343
23.3449
24.272
25.2865
26.3684
27.5032
28.68
29.8902
31.1267
32.3835
33.6553
34.9376
36.226
37.5164
38.8049
40.0879
41.3618
42.6228
43.8675
45.0924
46.2941
47.4691
48.6142
49.7262
50.8019
51.8385
52.8332
53.7832
54.6863
55.5401
56.3429
57.0927
57.7881
58.4278
59.0109
59.5366
60.0043
60.4137
60.7648
61.0575
61.2922
61.4694
61.5896
61.6537
61.6626
61.6174
61.5191
61.3691
61.1688
60.9197
60.6233
60.2813
59.8955
59.4677
58.9997
58.4935
57.9509
57.3736
56.7636
56.1228
55.4532
54.7569
54.036
53.2927
52.5291
51.7475
50.95
50.1389
49.3164
48.4846
47.6457
46.8018
45.955
45.1072
44.2606
43.4169
42.5781
41.7457
40.9216
40.1072
39.3042
38.5139
37.7376
36.9765
36.2319
35.5047
34.7959
34.1064
33.437
32.7883
32.1609
31.5555
30.9724
30.412
29.8746
29.3605
28.8698
28.4027
27.9595
27.5404
27.1452
26.7739
26.4264
26.1024
25.8019
25.5245
25.27
25.0381
24.8285
24.6408
24.4747
24.3297
24.2055
24.1015
24.0174
23.9527
23.9069
23.8794
23.8698
23.8775
23.902
23.9425
23.9986
24.0695
24.1546
24.2533
24.3647
24.4881
24.6228
24.7678
24.9223
25.0854
25.2561
25.4334
25.6161
25.8033
25.9936
26.1858
26.3787
26.5708
26.7607
26.9471
27.1283
27.3027
27.4688
27.6249
27.7693
27.9003
28.0163
28.1155
28.1962
28.2569
28.296
28.312
28.3034
28.2689
28.2075
28.1179
27.9993
27.851
27.6722
27.4624
27.2215
26.949
26.645
26.3095
25.9425
25.5442
25.115
24.6549
24.1643
23.6435
23.0929
22.5127
21.9036
21.2661
20.6014
19.9108
19.1964
18.4613
17.7096
16.9473
16.1823
15.4257
14.6927
14.0045
13.3927
12.9068
12.6345
12.7588
13.7704
17.6652
40.3235
70.1679
31.3677
24.2868
22.1013
21.4427
21.4731
21.8839
22.5328
23.3433
24.2704
25.2848
26.3667
27.5014
28.6782
29.8884
31.1248
32.3816
33.6534
34.9357
36.224
37.5143
38.8029
40.0859
41.3597
42.6207
43.8653
45.0902
46.2919
47.4669
48.612
49.7239
50.7997
51.8362
52.8309
53.7809
54.684
55.5378
56.3405
57.0904
57.7858
58.4255
59.0087
59.5343
60.0021
60.4115
60.7625
61.0553
61.29
61.4672
61.5875
61.6516
61.6605
61.6153
61.517
61.3671
61.1668
60.9177
60.6214
60.2794
59.8936
59.4658
58.9979
58.4917
57.9491
57.3719
56.762
56.1212
55.4516
54.7554
54.0345
53.2913
52.5277
51.7461
50.9487
50.1376
49.3151
48.4833
47.6444
46.8006
45.9538
45.1061
44.2595
43.4159
42.577
41.7447
40.9206
40.1063
39.3033
38.513
37.7367
36.9757
36.2311
35.5039
34.7951
34.1057
33.4362
32.7875
32.1602
31.5548
30.9717
30.4114
29.874
29.3599
28.8693
28.4022
27.959
27.5399
27.1447
26.7734
26.4259
26.102
25.8015
25.5241
25.2696
25.0377
24.8281
24.6405
24.4743
24.3294
24.2051
24.1012
24.0171
23.9524
23.9066
23.8792
23.8696
23.8773
23.9017
23.9423
23.9983
24.0693
24.1544
24.2531
24.3645
24.488
24.6226
24.7677
24.9222
25.0853
25.256
25.4333
25.6161
25.8032
25.9935
26.1857
26.3786
26.5707
26.7607
26.9471
27.1283
27.3027
27.4688
27.6249
27.7693
27.9004
28.0163
28.1155
28.1963
28.257
28.2961
28.312
28.3034
28.269
28.2075
28.1179
27.9994
27.851
27.6722
27.4625
27.2215
26.949
26.645
26.3095
25.9425
25.5442
25.115
24.6549
24.1643
23.6435
23.0929
22.5127
21.9036
21.2661
20.6014
19.9107
19.1964
18.4612
17.7096
16.9472
16.1822
15.4256
14.6926
14.0044
13.3926
12.9067
12.6343
12.7587
13.7703
17.6651
40.3237
78.9052
35.2651
27.1895
24.6236
23.782
23.7193
24.0866
24.7231
25.5426
26.4942
27.5451
28.6728
29.8609
31.0971
32.3718
33.6768
35.0054
36.3516
37.7101
39.0759
40.4444
41.8112
43.172
44.5226
45.8591
47.1772
48.4732
49.7431
50.9832
52.1897
53.3592
54.4881
55.5734
56.6119
57.601
58.538
59.4207
60.247
61.0153
61.7241
62.3722
62.9588
63.4833
63.9453
64.3448
64.6819
64.957
65.1706
65.3236
65.4169
65.4514
65.4285
65.3495
65.2159
65.029
64.7907
64.5025
64.1663
63.784
63.3573
62.8883
62.3789
61.8313
61.2471
60.6282
59.9766
59.2942
58.5832
57.8455
57.0833
56.2987
55.494
54.6712
53.8327
52.9805
52.1168
51.2439
50.3638
49.4786
48.5904
47.7012
46.8129
45.9275
45.0468
44.1724
43.3061
42.4495
41.6041
40.7713
39.9525
39.1489
38.3616
37.5918
36.8404
36.1084
35.3965
34.7054
34.0359
33.3884
32.7635
32.1615
31.5828
31.0277
30.4964
29.9889
29.5059
29.0473
28.6131
28.2033
27.8177
27.4563
27.1188
26.805
26.5146
26.2475
26.0031
25.7813
25.5817
25.4038
25.2473
25.1117
24.9965
24.9013
24.8256
24.7688
24.7304
24.71
24.7067
24.7202
24.7497
24.7945
24.8541
24.9276
25.0143
25.1135
25.2243
25.3459
25.4774
25.6177
25.766
25.9212
26.0823
26.248
26.4171
26.5885
26.7608
26.9328
27.1028
27.2697
27.4317
27.5875
27.7354
27.8739
28.0014
28.1162
28.2169
28.3017
28.3693
28.4181
28.4467
28.4538
28.4382
28.3987
28.3344
28.2444
28.1279
27.9844
27.8134
27.6146
27.3876
27.1325
26.8491
26.5375
26.1976
25.8296
25.4334
25.0091
24.5566
24.0758
23.5666
23.0288
22.4624
21.8676
21.2448
20.5948
19.9193
19.2208
18.5032
17.7722
17.0358
16.3055
15.597
14.9333
14.3481
13.8954
13.6717
13.8788
15.0582
19.4081
44.4193
78.9068
35.2634
27.1877
24.6219
23.7804
23.7176
24.085
24.7214
25.5409
26.4925
27.5434
28.671
29.8591
31.0953
32.3699
33.6749
35.0034
36.3496
37.708
39.0738
40.4422
41.809
43.1698
44.5204
45.8568
47.175
48.4709
49.7408
50.9808
52.1874
53.3568
54.4857
55.571
56.6095
57.5986
58.5356
59.4183
60.2446
61.0129
61.7217
62.3698
62.9564
63.4809
63.9429
64.3424
64.6796
64.9547
65.1684
65.3214
65.4146
65.4492
65.4264
65.3474
65.2137
65.0269
64.7886
64.5005
64.1644
63.782
63.3554
62.8864
62.3771
61.8294
61.2453
60.6265
59.9749
59.2926
58.5816
57.8439
57.0817
56.2972
55.4925
54.6698
53.8313
52.9791
52.1155
51.2426
50.3625
49.4773
48.5892
47.7
46.8118
45.9264
45.0457
44.1713
43.3051
42.4485
41.6031
40.7704
39.9516
39.148
38.3607
37.5909
36.8396
36.1076
35.3957
34.7046
34.0351
33.3877
32.7628
32.1608
31.5822
31.0271
30.4957
29.9883
29.5053
29.0467
28.6126
28.2027
27.8172
27.4558
27.1183
26.8045
26.5142
26.247
26.0027
25.7809
25.5813
25.4034
25.2469
25.1113
24.9961
24.9009
24.8252
24.7685
24.7301
24.7097
24.7064
24.7199
24.7494
24.7943
24.8538
24.9274
25.0141
25.1133
25.2241
25.3457
25.4772
25.6176
25.7659
25.9211
26.0821
26.2478
26.417
26.5884
26.7608
26.9327
27.1028
27.2696
27.4317
27.5875
27.7354
27.8739
28.0014
28.1162
28.2169
28.3017
28.3693
28.4181
28.4467
28.4538
28.4382
28.3987
28.3344
28.2444
28.1279
27.9844
27.8134
27.6145
27.3876
27.1325
26.8491
26.5374
26.1976
25.8295
25.4334
25.0091
24.5566
24.0757
23.5665
23.0288
22.4624
21.8676
21.2448
20.5948
19.9192
19.2207
18.5031
17.7721
17.0357
16.3054
15.5969
14.9332
14.3479
13.8953
13.6716
13.8786
15.058
19.408
44.4194
88.2945
39.4864
30.3496
27.383
26.3537
26.2004
26.531
27.1644
28.0041
28.9927
30.0933
31.2808
32.537
33.8478
35.2024
36.5917
38.008
39.4446
40.8953
42.3545
43.817
45.2777
46.7317
48.1743
49.6009
51.0069
52.3878
53.7392
55.0571
56.3372
57.5756
58.7686
59.9127
61.0047
62.0414
63.0204
63.9391
64.7956
65.5881
66.3152
66.976
67.5696
68.0957
68.5541
68.9451
69.269
69.5266
69.7186
69.8463
69.9108
69.9136
69.8561
69.74
69.5671
69.3391
69.058
68.7257
68.3442
67.9156
67.4419
66.9253
66.3678
65.7717
65.1387
64.4707
63.7698
63.0381
62.2775
61.4903
60.6784
59.8442
58.9898
58.1173
57.229
56.3269
55.4134
54.4905
53.5603
52.625
51.6865
50.747
49.8082
48.8722
47.9407
47.0156
46.0984
45.1909
44.2944
43.4106
42.5407
41.686
40.8477
40.027
39.2247
38.4419
37.6795
36.9381
36.2184
35.5211
34.8466
34.1955
33.568
32.9644
32.3851
31.8301
31.3001
30.795
30.3148
29.8597
29.4294
29.0238
28.6428
28.2862
27.9537
27.6451
27.36
27.0982
26.8592
26.6427
26.4482
26.2754
26.1237
25.9926
25.8817
25.7905
25.7183
25.6646
25.6289
25.6104
25.6085
25.6225
25.6518
25.6956
25.7531
25.8236
25.9061
25.9999
26.1039
26.2172
26.3389
26.4678
26.6029
26.743
26.8869
27.0334
27.1812
27.3289
27.4752
27.6186
27.7577
27.8911
28.0172
28.1345
28.2416
28.3369
28.4189
28.4864
28.5377
28.5718
28.5873
28.5831
28.5581
28.5116
28.4426
28.3505
28.2348
28.095
27.9309
27.7423
27.529
27.291
27.0284
26.7409
26.4288
26.0917
25.7297
25.3423
24.9293
24.4901
24.0241
23.5307
23.0093
22.4594
21.881
21.2742
20.6402
19.9811
19.3003
18.6034
17.8984
17.1968
16.5152
15.8777
15.3205
14.9019
14.7268
15.0154
16.3592
21.1543
48.4689
88.2962
39.4845
30.3478
27.3812
26.352
26.1987
26.5292
27.1627
28.0023
28.9908
30.0914
31.2789
32.535
33.8458
35.2004
36.5896
38.0059
39.4424
40.8931
42.3523
43.8147
45.2754
46.7294
48.172
49.5985
51.0044
52.3853
53.7368
55.0546
56.3347
57.5731
58.7661
59.9102
61.0021
62.0389
63.0179
63.9366
64.7931
65.5856
66.3127
66.9735
67.5671
68.0932
68.5517
68.9426
69.2666
69.5242
69.7163
69.844
69.9085
69.9113
69.8538
69.7378
69.5649
69.3369
69.0559
68.7236
68.3422
67.9136
67.4399
66.9233
66.3659
65.7698
65.1368
64.4689
63.7681
63.0363
62.2758
61.4886
60.6768
59.8426
58.9882
58.1158
57.2275
56.3255
55.412
54.4891
53.559
52.6237
51.6852
50.7457
49.807
48.871
47.9396
47.0145
46.0973
45.1898
44.2934
43.4096
42.5397
41.685
40.8468
40.026
39.2238
38.4411
37.6786
36.9372
36.2176
35.5203
34.8459
34.1947
33.5672
32.9637
32.3844
31.8294
31.2994
30.7943
30.3142
29.8591
29.4288
29.0232
28.6423
28.2857
27.9532
27.6446
27.3595
27.0977
26.8587
26.6422
26.4478
26.2749
26.1232
25.9922
25.8814
25.7901
25.718
25.6643
25.6285
25.61
25.6082
25.6222
25.6515
25.6953
25.7529
25.8233
25.9059
25.9996
26.1037
26.217
26.3387
26.4676
26.6027
26.7428
26.8867
27.0332
27.181
27.3287
27.475
27.6185
27.7576
27.891
28.0171
28.1344
28.2415
28.3368
28.4189
28.4863
28.5377
28.5717
28.5872
28.583
28.5581
28.5115
28.4425
28.3504
28.2347
28.095
27.9309
27.7422
27.529
27.291
27.0283
26.7409
26.4287
26.0917
25.7296
25.3423
24.9292
24.49
24.024
23.5306
23.0092
22.4594
21.8809
21.2741
20.6401
19.981
19.3002
18.6033
17.8983
17.1967
16.5151
15.8776
15.3203
14.9018
14.7266
15.0152
16.359
21.1541
48.4691
98.4231
44.075
33.7988
30.4056
29.1808
28.9378
29.2371
29.8762
30.7466
31.7843
32.948
34.2097
35.5487
36.9495
38.3999
39.8896
41.4099
42.9532
44.5126
46.0817
47.6544
49.2251
50.7881
52.3381
53.8699
55.3782
56.8581
58.3046
59.7132
61.079
62.398
63.6659
64.879
66.0336
67.1267
68.1554
69.1173
70.0101
70.8323
71.5825
72.2598
72.8636
73.3937
73.8503
74.2338
74.5448
74.7845
74.9541
75.0548
75.0884
75.0566
74.9613
74.8043
74.5879
74.3141
73.9852
73.6032
73.1706
72.6895
72.1622
71.5911
70.9784
70.3264
69.637
68.9121
68.1539
67.3645
66.5461
65.7008
64.8307
63.9381
63.0251
62.094
61.1469
60.186
59.2135
58.2315
57.2422
56.2476
55.2497
54.2507
53.2523
52.2567
51.2654
50.2805
49.3034
48.336
47.3796
46.4359
45.5062
44.5917
43.6938
42.8135
41.952
41.1101
40.2888
39.4888
38.7109
37.9557
37.2237
36.5155
35.8315
35.1719
34.537
33.9271
33.3426
32.7838
32.2506
31.7431
31.2611
30.8046
30.3735
29.9675
29.5864
29.23
28.898
28.5899
28.3056
28.0445
27.8063
27.5905
27.3967
27.2243
27.0729
26.9419
26.8306
26.7387
26.6653
26.6099
26.5717
26.5502
26.5445
26.5539
26.5776
26.6148
26.6646
26.7261
26.7983
26.8803
26.971
27.0695
27.1745
27.2849
27.3995
27.517
27.6363
27.7559
27.8746
27.9909
28.1034
28.2108
28.3115
28.4043
28.4876
28.5602
28.6206
28.6676
28.7001
28.7167
28.7166
28.6988
28.6624
28.6068
28.5314
28.4357
28.3195
28.1823
28.0243
27.8452
27.6451
27.4241
27.1821
26.9191
26.6349
26.3295
26.0023
25.6529
25.2804
24.8841
24.4629
24.0155
23.541
23.0381
22.5063
21.9452
21.3553
20.7383
20.0971
19.4371
18.7661
18.0959
17.4437
16.8346
16.3072
15.924
15.7979
16.1673
17.6727
22.9038
52.473
98.4248
44.0729
33.7967
30.4037
29.179
28.9359
29.2353
29.8743
30.7447
31.7823
32.946
34.2076
35.5466
36.9474
38.3977
39.8874
41.4077
42.9509
44.5103
46.0793
47.652
49.2226
50.7856
52.3356
53.8673
55.3756
56.8555
58.302
59.7105
61.0764
62.3954
63.6633
64.8763
66.031
67.1241
68.1528
69.1146
70.0074
70.8296
71.5798
72.2571
72.861
73.3911
73.8477
74.2312
74.5423
74.782
74.9516
75.0524
75.086
75.0542
74.9589
74.802
74.5856
74.3119
73.9829
73.601
73.1684
72.6873
72.1601
71.589
70.9764
70.3244
69.635
68.9102
68.1521
67.3627
66.5443
65.699
64.829
63.9364
63.0235
62.0924
61.1453
60.1845
59.212
58.2301
57.2407
56.2462
55.2483
54.2493
53.251
52.2554
51.2642
50.2792
49.3022
48.3348
47.3785
46.4348
45.5051
44.5907
43.6928
42.8125
41.951
41.1091
40.2878
39.4879
38.71
37.9548
37.2229
36.5147
35.8306
35.1711
34.5362
33.9263
33.3419
32.7831
32.2499
31.7424
31.2605
30.804
30.3729
29.9669
29.5858
29.2294
28.8974
28.5894
28.305
28.044
27.8058
27.59
27.3962
27.2239
27.0725
26.9414
26.8302
26.7382
26.6649
26.6095
26.5714
26.5498
26.5442
26.5536
26.5773
26.6145
26.6643
26.7258
26.798
26.88
26.9708
27.0692
27.1742
27.2846
27.3993
27.5168
27.6361
27.7558
27.8744
27.9907
28.1033
28.2106
28.3114
28.4042
28.4875
28.5601
28.6205
28.6675
28.7
28.7166
28.7165
28.6987
28.6624
28.6068
28.5313
28.4357
28.3194
28.1822
28.0242
27.8451
27.645
27.424
27.182
26.919
26.6349
26.3294
26.0022
25.6528
25.2804
24.884
24.4628
24.0155
23.5409
23.0381
22.5063
21.9451
21.3553
20.7382
20.0971
19.437
18.766
18.0958
17.4436
16.8345
16.307
15.9238
15.7977
16.167
17.6725
22.9037
52.4732
109.381
49.0746
37.5685
33.7178
32.2872
31.9535
32.2263
32.879
33.7907
34.8897
36.1301
37.4803
38.9174
40.4242
41.9867
43.5935
45.2348
46.9019
48.5871
50.283
51.9828
53.6801
55.3685
57.0418
58.6943
60.32
61.9133
63.4687
64.9811
66.4452
67.8564
69.2102
70.5024
71.7292
72.8872
73.9733
74.9851
75.9204
76.7775
77.5552
78.2527
78.8696
79.4059
79.8619
80.2385
80.5367
80.7578
80.9034
80.9752
80.9753
80.9057
80.7688
80.5668
80.3022
79.9775
79.595
79.1574
78.6673
78.127
77.5392
76.9063
76.2309
75.5152
74.7612
73.9712
73.1472
72.2916
71.4065
70.4941
69.5568
68.5966
67.6159
66.6168
65.6016
64.5725
63.5316
62.481
61.423
60.3596
59.2929
58.2249
57.1576
56.0928
55.0324
53.9783
52.9321
51.8955
50.8701
49.8573
48.8587
47.8755
46.909
45.9604
45.0307
44.1211
43.2323
42.3652
41.5207
40.6993
39.9017
39.1284
38.3797
37.6562
36.9581
36.2856
35.6392
35.0191
34.4255
33.8583
33.3176
32.8032
32.315
31.8528
31.4165
31.0057
30.6202
30.2597
29.9238
29.6121
29.3242
29.0596
28.8179
28.5986
28.401
28.2248
28.0692
27.9337
27.8175
27.7202
27.6408
27.5788
27.5334
27.5037
27.489
27.4883
27.5008
27.5256
27.5617
27.6081
27.6637
27.7275
27.7983
27.8749
27.9563
28.041
28.1279
28.2157
28.303
28.3886
28.471
28.5489
28.6209
28.6858
28.7423
28.7891
28.825
28.8488
28.8596
28.8565
28.8384
28.8048
28.755
28.6885
28.605
28.5042
28.3861
28.2505
28.0975
27.9273
27.7398
27.5353
27.3137
27.0751
26.8192
26.5455
26.2537
25.9428
25.6117
25.2593
24.8839
24.484
24.0578
23.6037
23.1204
22.6071
22.0636
21.491
20.892
20.2715
19.6372
19.0011
18.3806
17.8022
17.3065
16.96
16.8836
17.3335
18.9981
24.6565
56.4314
109.383
49.0723
37.5663
33.7158
32.2852
31.9515
32.2243
32.877
33.7886
34.8876
36.1279
37.4781
38.9152
40.4219
41.9844
43.5911
45.2324
46.8995
48.5846
50.2805
51.9803
53.6775
55.3658
57.0392
58.6916
60.3172
61.9105
63.466
64.9783
66.4424
67.8536
69.2074
70.4996
71.7264
72.8843
73.9705
74.9823
75.9176
76.7747
77.5525
78.25
78.8668
79.4031
79.8592
80.2359
80.5341
80.7552
80.9008
80.9726
80.9727
80.9032
80.7663
80.5644
80.2998
79.9751
79.5927
79.1551
78.665
78.1247
77.537
76.9041
76.2287
75.5131
74.7592
73.9692
73.1452
72.2896
71.4046
70.4923
69.555
68.5948
67.6142
66.6151
65.6
64.5708
63.53
62.4795
61.4215
60.3581
59.2915
58.2235
57.1561
56.0914
55.0311
53.977
52.9308
51.8942
50.8688
49.8561
48.8575
47.8743
46.9079
45.9593
45.0296
44.12
43.2312
42.3642
41.5197
40.6983
39.9008
39.1274
38.3788
37.6554
36.9572
36.2848
35.6384
35.0183
34.4247
33.8576
33.3169
32.8025
32.3143
31.8521
31.4158
31.0051
30.6196
30.2591
29.9232
29.6115
29.3236
29.0591
28.8174
28.598
28.4005
28.2243
28.0687
27.9332
27.8171
27.7197
27.6404
27.5784
27.533
27.5033
27.4886
27.4879
27.5005
27.5253
27.5614
27.6078
27.6634
27.7272
27.798
27.8747
27.956
28.0408
28.1277
28.2155
28.3028
28.3884
28.4708
28.5487
28.6208
28.6857
28.7421
28.7889
28.8248
28.8487
28.8595
28.8563
28.8383
28.8047
28.7548
28.6884
28.6049
28.5041
28.3859
28.2504
28.0974
27.9271
27.7397
27.5352
27.3136
27.075
26.819
26.5454
26.2536
25.9427
25.6117
25.2592
24.8838
24.4839
24.0577
23.6036
23.1204
22.607
22.0635
21.4909
20.8919
20.2714
19.6371
19.0009
18.3805
17.8021
17.3063
16.9598
16.8834
17.3333
18.9978
24.6563
56.4317
121.259
54.5307
41.6925
37.3483
35.6986
35.272
35.5222
36.1964
37.1598
38.3325
39.6633
41.1171
42.6683
44.2976
45.9892
47.7306
49.5105
51.3193
53.148
54.9886
56.8331
58.6743
60.505
62.3184
64.1076
65.8662
67.5878
69.2664
70.8961
72.4713
73.9868
75.4376
76.8192
78.1276
79.359
80.5103
81.5789
82.5626
83.4598
84.2692
84.9903
85.6228
86.167
86.6235
86.9935
87.2783
87.4796
87.5994
87.6399
87.6033
87.4924
87.3097
87.0579
86.7399
86.3585
85.9165
85.4168
84.8623
84.2557
83.5998
82.8974
82.1512
81.3635
80.5364
79.6724
78.7737
77.8427
76.8817
75.893
74.8788
73.8415
72.7833
71.7066
70.6134
69.5062
68.387
67.258
66.1214
64.9794
63.8339
62.687
61.5408
60.3971
59.2578
58.1248
56.9997
55.8844
54.7803
53.6891
52.6121
51.5509
50.5065
49.4804
48.4736
47.4871
46.522
45.5791
44.6592
43.7631
42.8913
42.0445
41.223
40.4274
39.658
38.915
38.1988
37.5098
36.8482
36.2139
35.607
35.0274
34.475
33.9497
33.4512
32.9794
32.5338
32.1143
31.7204
31.3519
31.0081
30.6887
30.3932
30.1211
29.8718
29.6448
29.4394
29.255
29.0909
28.9464
28.8208
28.7134
28.6234
28.5498
28.492
28.4489
28.4197
28.4034
28.399
28.4055
28.4218
28.4468
28.4793
28.5183
28.5625
28.6106
28.6614
28.7137
28.7661
28.8174
28.8662
28.9114
28.9515
28.9855
29.0121
29.0302
29.0388
29.0369
29.0235
28.9981
28.9599
28.9084
28.8432
28.7641
28.6708
28.5635
28.4422
28.3069
28.158
27.9957
27.8202
27.6316
27.43
27.2154
26.9875
26.7457
26.4892
26.2171
25.9278
25.6198
25.291
24.9393
24.5625
24.1585
23.7252
23.2613
22.766
22.2399
21.6853
21.1066
20.5114
19.9116
19.3252
18.7796
18.3174
18.0091
17.9832
18.5132
20.3346
26.4117
60.3449
121.261
54.5282
41.6901
37.3461
35.6964
35.2699
35.52
36.1942
37.1575
38.3303
39.661
41.1148
42.666
44.2951
45.9868
47.728
49.5079
51.3167
53.1454
54.9859
56.8304
58.6715
60.5022
62.3155
64.1047
65.8633
67.5849
69.2635
70.8932
72.4684
73.9838
75.4346
76.8162
78.1246
79.356
80.5074
81.576
82.5597
83.4568
84.2663
84.9874
85.6199
86.1641
86.6207
86.9907
87.2755
87.4769
87.5967
87.6371
87.6007
87.4898
87.3071
87.0554
86.7374
86.356
85.9141
85.4144
84.8599
84.2533
83.5975
82.8951
82.149
81.3613
80.5343
79.6703
78.7716
77.8407
76.8797
75.891
74.8769
73.8396
72.7815
71.7047
70.6116
69.5044
68.3852
67.2563
66.1198
64.9777
63.8323
62.6855
61.5393
60.3956
59.2564
58.1234
56.9983
55.883
54.779
53.6878
52.6109
51.5496
50.5053
49.4792
48.4724
47.486
46.5209
45.578
44.6582
43.762
42.8903
42.0435
41.2221
40.4265
39.6571
38.9141
38.1979
37.509
36.8473
36.2131
35.6062
35.0266
34.4743
33.9489
33.4505
32.9786
32.5331
32.1136
31.7198
31.3512
31.0075
30.6881
30.3926
30.1206
29.8713
29.6443
29.4389
29.2544
29.0904
28.9459
28.8204
28.713
28.6229
28.5494
28.4916
28.4485
28.4193
28.403
28.3986
28.4051
28.4214
28.4464
28.479
28.518
28.5622
28.6103
28.6611
28.7134
28.7659
28.8171
28.866
28.9111
28.9513
28.9853
29.0119
29.03
29.0386
29.0367
29.0234
28.9979
28.9597
28.9082
28.843
28.7639
28.6707
28.5634
28.442
28.3068
28.1579
27.9956
27.82
27.6315
27.4299
27.2153
26.9874
26.7456
26.4891
26.217
25.9277
25.6197
25.2909
24.9392
24.5625
24.1584
23.7251
23.2612
22.7659
22.2398
21.6852
21.1065
20.5112
19.9114
19.325
18.7794
18.3172
18.0088
17.983
18.513
20.3343
26.4115
60.3452
134.15
60.4912
46.2062
41.3275
39.4432
38.9202
39.1509
39.8541
40.8798
42.139
43.5747
45.1477
46.8295
48.5985
50.4373
52.3314
54.2686
56.2377
58.2287
60.2325
62.2402
64.2435
66.2343
68.2048
70.1475
72.0552
73.9206
75.7371
77.4982
79.1975
80.8295
82.3887
83.8703
85.2697
86.5832
87.8075
88.9396
89.9776
90.9197
91.7649
92.5126
93.1631
93.7166
94.1744
94.5376
94.8081
94.988
95.0797
95.0859
95.0092
94.8527
94.6195
94.3127
93.9356
93.4914
92.9832
92.4144
91.7881
91.1074
90.3755
89.5952
88.7697
87.9011
86.9919
86.0446
85.0617
84.0457
82.9989
81.9239
80.8229
79.6983
78.5525
77.3878
76.2065
75.0108
73.8029
72.5852
71.3597
70.1286
68.894
67.658
66.4226
65.1897
63.9613
62.7393
61.5253
60.3212
59.1285
57.9489
56.7838
55.6348
54.503
53.3898
52.2964
51.2238
50.1731
49.1452
48.141
47.1612
46.2064
45.2774
44.3746
43.4985
42.6494
41.8278
41.0338
40.2679
39.5303
38.8212
38.1405
37.4883
36.8644
36.2687
35.701
35.1611
34.6487
34.1634
33.7051
33.2732
32.8672
32.4869
32.1316
31.8008
31.4939
31.2104
30.9496
30.7108
30.4934
30.2967
30.1198
29.9619
29.8223
29.7002
29.5945
29.5044
29.4289
29.3671
29.3179
29.2803
29.2531
29.2353
29.2256
29.223
29.2262
29.2339
29.245
29.2582
29.2723
29.286
29.298
29.3072
29.3124
29.3124
29.3063
29.293
29.2716
29.2414
29.2016
29.1516
29.0911
29.0197
28.9372
28.8437
28.7391
28.6237
28.4978
28.3617
28.2157
28.0603
27.8958
27.7223
27.54
27.3488
27.1484
26.9379
26.7166
26.483
26.2354
25.9719
25.6899
25.3869
25.0601
24.7068
24.3244
23.911
23.4653
22.9873
22.4787
21.9436
21.3894
20.828
20.2776
19.7667
19.3396
19.0706
19.0959
19.7058
21.6817
28.1693
64.2151
134.152
60.4884
46.2036
41.3251
39.4409
38.9178
39.1485
39.8518
40.8774
42.1366
43.5722
45.1452
46.827
48.5959
50.4346
52.3287
54.2658
56.2348
58.2259
60.2296
62.2372
64.2405
66.2312
68.2018
70.1445
72.0521
73.9175
75.734
77.495
79.1944
80.8264
82.3856
83.8671
85.2666
86.5801
87.8043
88.9365
89.9744
90.9165
91.7618
92.5096
93.16
93.7136
94.1713
94.5346
94.8052
94.9851
95.0768
95.083
95.0064
94.8499
94.6167
94.31
93.9329
93.4887
92.9806
92.4119
91.7856
91.105
90.373
89.5928
88.7673
87.8987
86.9896
86.0423
85.0595
84.0435
82.9968
81.9218
80.8208
79.6963
78.5506
77.3859
76.2046
75.0089
73.8011
72.5833
71.3579
70.1268
68.8923
67.6563
66.4209
65.1881
63.9598
62.7377
61.5238
60.3197
59.127
57.9475
56.7824
55.6334
54.5017
53.3885
52.2951
51.2226
50.1719
49.144
48.1398
47.16
46.2053
45.2763
44.3735
43.4974
42.6484
41.8268
41.0328
40.2669
39.5294
38.8203
38.1397
37.4874
36.8635
36.2679
35.7002
35.1603
34.6479
34.1627
33.7043
33.2724
32.8666
32.4862
32.1309
31.8001
31.4933
31.2098
30.949
30.7103
30.4929
30.2961
30.1192
29.9614
29.8218
29.6997
29.594
29.5039
29.4285
29.3667
29.3175
29.2799
29.2527
29.2349
29.2252
29.2226
29.2258
29.2336
29.2447
29.2579
29.272
29.2857
29.2977
29.3069
29.3121
29.3122
29.306
29.2928
29.2714
29.2411
29.2013
29.1514
29.0909
29.0195
28.937
28.8435
28.7389
28.6235
28.4976
28.3615
28.2155
28.0601
27.8956
27.7221
27.5399
27.3487
27.1482
26.9378
26.7165
26.4829
26.2353
25.9718
25.6898
25.3868
25.06
24.7067
24.3244
23.911
23.4653
22.9872
22.4786
21.9435
21.3893
20.8278
20.2775
19.7665
19.3394
19.0704
19.0956
19.7055
21.6814
28.1691
64.2155
148.15
67.0061
51.1475
45.6881
43.5511
42.9268
43.1408
43.8806
44.9794
46.3383
47.8938
49.6023
51.4321
53.3591
55.3637
57.4299
59.5437
61.6927
63.8657
66.0522
68.2424
70.4267
72.5961
74.7419
76.8556
78.929
80.9543
82.9239
84.8307
86.6677
88.4288
90.1081
91.7002
93.2004
94.6047
95.9095
97.1119
98.2098
99.2016
100.086
100.864
101.534
102.098
102.557
102.913
103.168
103.325
103.386
103.354
103.233
103.026
102.737
102.37
101.927
101.414
100.832
100.187
99.4807
98.7177
97.9011
97.0341
96.12
95.1611
94.1601
93.1197
92.0426
90.9314
89.7886
88.6168
87.4185
86.196
84.9519
83.6885
82.4081
81.1131
79.8057
78.4883
77.163
75.8321
74.4976
73.1617
71.8263
70.4936
69.1655
67.8438
66.5304
65.2271
63.9354
62.6572
61.3938
60.1468
58.9176
57.7075
56.5177
55.3493
54.2034
53.081
51.9831
50.9103
49.8635
48.8432
47.8502
46.8848
45.9476
45.0388
44.1587
43.3077
42.4861
41.6942
40.9319
40.1993
39.4963
38.8228
38.1786
37.5634
36.9771
36.4194
35.8897
35.3879
34.9133
34.4656
34.0443
33.6487
33.2784
32.9326
32.6107
32.312
32.0359
31.7815
31.548
31.3347
31.1407
30.965
30.8067
30.665
30.5388
30.427
30.3287
30.2427
30.1679
30.1032
30.0474
29.9994
29.9578
29.9216
29.8894
29.8601
29.8324
29.8052
29.7772
29.7474
29.7146
29.6779
29.6363
29.589
29.5351
29.4741
29.4055
29.3289
29.244
29.1507
29.0492
28.9394
28.8219
28.6969
28.5649
28.4266
28.2823
28.1326
27.9779
27.8185
27.6546
27.4859
27.312
27.1322
26.9452
26.7496
26.5432
26.3237
26.0882
25.8337
25.5569
25.2545
24.9235
24.5612
24.1658
23.7368
23.2753
22.7852
22.2733
21.7516
21.2388
20.7639
20.3732
20.1445
20.2213
20.9105
23.0387
29.9292
68.0447
148.152
67.0031
51.1447
45.6855
43.5485
42.9243
43.1383
43.8781
44.9768
46.3357
47.8911
49.5996
51.4294
53.3563
55.3608
57.427
59.5407
61.6897
63.8627
66.0491
68.2392
70.4235
72.5929
74.7386
76.8523
78.9257
80.951
82.9206
84.8273
86.6644
88.4255
90.1047
91.6968
93.1971
94.6014
95.9062
97.1086
98.2065
99.1983
100.083
100.861
101.531
102.095
102.554
102.91
103.165
103.322
103.383
103.351
103.23
103.023
102.735
102.367
101.925
101.411
100.829
100.184
99.478
98.7151
97.8985
97.0315
96.1175
95.1587
94.1577
93.1173
92.0403
90.9291
89.7863
88.6146
87.4163
86.1938
84.9498
83.6864
82.406
81.1111
79.8038
78.4864
77.1611
75.8302
74.4958
73.1599
71.8246
70.4919
69.1638
67.8421
66.5288
65.2255
63.9339
62.6556
61.3923
60.1454
58.9162
57.7061
56.5163
55.3479
54.2021
53.0797
51.9818
50.909
49.8622
48.842
47.849
46.8837
45.9464
45.0377
44.1576
43.3066
42.4851
41.6932
40.931
40.1984
39.4954
38.8219
38.1777
37.5626
36.9763
36.4185
35.8889
35.3871
34.9126
34.4649
34.0436
33.648
33.2777
32.9319
32.61
32.3114
32.0353
31.7809
31.5475
31.3342
31.1401
30.9644
30.8062
30.6645
30.5383
30.4265
30.3282
30.2422
30.1675
30.1028
30.047
29.999
29.9574
29.9212
29.889
29.8597
29.8321
29.8049
29.7769
29.7471
29.7144
29.6776
29.636
29.5887
29.5349
29.4739
29.4053
29.3286
29.2438
29.1505
29.0489
28.9392
28.8217
28.6967
28.5647
28.4264
28.2821
28.1324
27.9777
27.8184
27.6544
27.4857
27.3119
27.1321
26.9451
26.7495
26.5431
26.3236
26.0881
25.8336
25.5568
25.2545
24.9234
24.5611
24.1657
23.7367
23.2752
22.785
22.2732
21.7515
21.2386
20.7637
20.373
20.1442
20.221
20.9102
23.0384
29.9289
68.0452
163.354
74.1283
56.5565
50.4649
48.0546
47.3231
47.5227
48.3066
49.4896
50.9619
52.6528
54.5139
56.51
58.6141
60.8043
63.0627
65.3737
67.7233
70.0988
72.4885
74.8812
77.2663
79.6337
81.9735
84.2763
86.533
88.7347
90.8731
92.9404
94.929
96.8321
98.6432
100.357
101.968
103.471
104.864
106.144
107.307
108.353
109.281
110.091
110.783
111.358
111.818
112.166
112.404
112.534
112.561
112.488
112.318
112.056
111.706
111.271
110.756
110.166
109.503
108.773
107.979
107.125
106.214
105.251
104.239
103.18
102.077
100.933
99.7507
98.5335
97.2838
96.0042
94.6974
93.3659
92.0122
90.6388
89.2481
87.8425
86.4243
84.9959
83.5595
82.1173
80.6716
79.2245
77.778
76.3343
74.8953
73.463
72.0392
70.6258
69.2244
67.8368
66.4645
65.1091
63.772
62.4546
61.1582
59.8839
58.6329
57.4063
56.2048
55.0296
53.8812
52.7605
51.668
50.6043
49.5699
48.5651
47.5904
46.6459
45.732
44.849
43.9971
43.1761
42.3862
41.6272
40.899
40.2013
39.5339
38.8964
38.2886
37.71
37.1602
36.6387
36.145
35.6784
35.2385
34.8244
34.4357
34.0715
33.731
33.4136
33.1183
32.8444
32.5908
32.3567
32.1411
31.9431
31.7615
31.5953
31.4435
31.305
31.1785
31.0629
30.9571
30.8598
30.7698
30.6859
30.607
30.5318
30.4591
30.3878
30.3167
30.2449
30.1713
30.0951
30.0154
29.9314
29.8426
29.7486
29.6489
29.5434
29.4321
29.3151
29.1925
29.0649
28.9327
28.7965
28.657
28.5149
28.3708
28.2255
28.0794
27.9328
27.7859
27.6384
27.49
27.3396
27.1859
27.0271
26.8609
26.6846
26.4948
26.2881
26.0607
25.8089
25.5289
25.2177
24.8727
24.493
24.0791
23.6345
23.1658
22.6848
22.2103
21.7723
21.4187
21.2308
21.3593
22.1272
24.4054
31.6915
71.838
163.357
74.125
56.5534
50.4621
48.0519
47.3205
47.52
48.3039
49.4869
50.9591
52.6499
54.511
56.5071
58.611
60.8012
63.0596
65.3705
67.72
70.0955
72.4852
74.8778
77.2629
79.6303
81.9701
84.2728
86.5295
88.7312
90.8696
92.9369
94.9255
96.8285
98.6397
100.353
101.964
103.468
104.861
106.14
107.304
108.35
109.278
110.087
110.779
111.355
111.815
112.163
112.4
112.531
112.558
112.485
112.315
112.053
111.703
111.268
110.753
110.163
109.5
108.77
107.976
107.122
106.211
105.248
104.236
103.177
102.074
100.93
99.7482
98.531
97.2814
96.0018
94.6951
93.3636
92.0099
90.6366
89.2459
87.8403
86.4222
84.9938
83.5574
82.1153
80.6696
79.2225
77.7761
76.3325
74.8935
73.4612
72.0375
70.624
69.2227
67.8351
66.4629
65.1075
63.7705
62.4531
61.1567
59.8825
58.6315
57.4048
56.2035
55.0282
53.8799
52.7592
51.6667
50.603
49.5687
48.5639
47.5892
46.6448
45.7309
44.8479
43.996
43.1751
42.3852
41.6263
40.898
40.2004
39.533
38.8955
38.2877
37.7092
37.1594
36.6379
36.1442
35.6776
35.2377
34.8237
34.435
34.0708
33.7304
33.4129
33.1177
32.8437
32.5902
32.3561
32.1406
31.9425
31.761
31.5948
31.443
31.3045
31.178
31.0624
30.9566
30.8593
30.7694
30.6855
30.6066
30.5314
30.4587
30.3874
30.3164
30.2446
30.171
30.0948
30.015
29.9311
29.8423
29.7483
29.6486
29.5432
29.4319
29.3148
29.1923
29.0646
28.9324
28.7962
28.6567
28.5146
28.3706
28.2253
28.0792
27.9326
27.7857
27.6383
27.4898
27.3395
27.1858
27.027
26.8608
26.6845
26.4947
26.288
26.0607
25.8088
25.5289
25.2176
24.8726
24.4929
24.079
23.6344
23.1656
22.6846
22.2101
21.7721
21.4185
21.2305
21.359
22.1269
24.405
31.6912
71.8385
179.864
81.9133
62.4756
55.6953
52.9887
52.1428
52.3298
53.1654
54.4441
56.044
57.8867
59.9184
62.1
64.4011
66.7977
69.2696
71.7992
74.3709
76.9705
79.5847
82.2011
84.8077
87.3932
89.9465
92.4572
94.915
97.3103
99.6338
101.877
104.031
106.089
108.045
109.89
111.622
113.234
114.722
116.085
117.32
118.424
119.399
120.243
120.958
121.545
122.006
122.344
122.562
122.664
122.653
122.533
122.31
121.987
121.568
121.06
120.466
119.79
119.038
118.215
117.323
116.369
115.355
114.285
113.164
111.994
110.779
109.52
108.222
106.888
105.52
104.121
102.694
101.242
99.7667
98.2715
96.7586
95.2305
93.6896
92.1384
90.579
89.0138
87.4451
85.8751
84.3058
82.7395
81.1781
79.6237
78.0781
76.5432
75.0208
73.5127
72.0205
70.5458
69.09
67.6546
66.241
64.8504
63.484
62.1428
60.8278
59.5401
58.2804
57.0495
55.848
54.6767
53.5359
52.4261
51.3477
50.3011
49.2863
48.3038
47.3538
46.4364
45.5516
44.6993
43.8792
43.0914
42.3354
41.6111
40.9179
40.2556
39.6237
39.0217
38.4491
37.9052
37.3894
36.9011
36.4395
36.0039
35.5936
35.2076
34.8451
34.5052
34.1871
33.8896
33.6118
33.3527
33.1112
32.8861
32.6765
32.4811
32.2988
32.1283
31.9685
31.8182
31.6761
31.541
31.4119
31.2874
31.1664
31.0479
30.9307
30.814
30.6968
30.5783
30.4578
30.3348
30.2087
30.0792
29.9463
29.8099
29.6701
29.5273
29.382
29.2346
29.086
28.9369
28.7882
28.6408
28.4955
28.3529
28.2138
28.0785
27.9471
27.8194
27.6948
27.5724
27.4505
27.3271
27.1996
27.065
26.9196
26.7594
26.5804
26.378
26.1483
25.8873
25.5922
25.2613
24.8949
24.4957
24.0702
23.63
23.1942
22.7933
22.477
22.33
22.5098
23.3556
25.7816
33.4571
75.6003
179.866
81.9096
62.4723
55.6923
52.9857
52.1399
52.3269
53.1625
54.4411
56.0409
57.8836
59.9153
62.0968
64.3979
66.7944
69.2662
71.7958
74.3674
76.967
79.5811
82.1975
84.8041
87.3895
89.9429
92.4535
94.9113
97.3066
99.6301
101.873
104.027
106.086
108.041
109.887
111.618
113.23
114.719
116.081
117.316
118.421
119.395
120.239
120.954
121.541
122.002
122.341
122.559
122.66
122.649
122.53
122.306
121.983
121.565
121.057
120.462
119.787
119.035
118.212
117.32
116.366
115.352
114.283
113.162
111.992
110.776
109.517
108.22
106.885
105.517
104.118
102.692
101.239
99.7643
98.2691
96.7563
95.2282
93.6874
92.1361
90.5768
89.0117
87.443
85.873
84.3038
82.7375
81.1761
79.6217
78.0761
76.5413
75.019
73.5109
72.0187
70.544
69.0883
67.653
66.2394
64.8488
63.4824
62.1412
60.8263
59.5386
58.279
57.0481
55.8467
54.6753
53.5345
52.4248
51.3465
50.2998
49.2851
48.3026
47.3527
46.4353
45.5505
44.6982
43.8782
43.0904
42.3344
41.6101
40.917
40.2547
39.6228
39.0209
38.4482
37.9043
37.3886
36.9003
36.4387
36.0032
35.5928
35.2069
34.8444
34.5046
34.1864
33.8889
33.6112
33.3521
33.1106
32.8856
32.676
32.4806
32.2982
32.1278
31.968
31.8177
31.6756
31.5406
31.4114
31.2869
31.166
31.0475
30.9304
30.8137
30.6965
30.578
30.4575
30.3344
30.2083
30.0789
29.946
29.8096
29.6698
29.5271
29.3817
29.2343
29.0857
28.9366
28.788
28.6406
28.4952
28.3527
28.2136
28.0783
27.9469
27.8192
27.6947
27.5722
27.4503
27.327
27.1995
27.0649
26.9195
26.7594
26.5803
26.378
26.1482
25.8872
25.5921
25.2612
24.8948
24.4956
24.07
23.6298
23.194
22.7931
22.4768
22.3297
22.5095
23.3552
25.7813
33.4568
75.6008
197.781
90.4196
68.9503
61.4191
58.3904
57.4219
57.5979
58.4928
59.879
61.6214
63.6331
65.8543
68.2413
70.7607
73.3854
76.0929
78.8636
81.68
84.5262
87.3872
90.2493
93.0989
95.9233
98.7104
101.448
104.126
106.732
109.258
111.692
114.027
116.253
118.365
120.354
122.216
123.944
125.537
126.989
128.3
129.467
130.491
131.372
132.111
132.709
133.171
133.497
133.693
133.762
133.709
133.539
133.256
132.865
132.372
131.782
131.1
130.332
129.482
128.555
127.557
126.492
125.364
124.178
122.938
121.646
120.306
118.921
117.496
116.032
114.534
113.004
111.444
109.859
108.251
106.621
104.974
103.311
101.635
99.9484
98.2538
96.5533
94.8494
93.1442
91.44
89.7389
88.0431
86.3546
84.6753
83.0073
81.3523
79.7121
78.0885
76.4831
74.8974
73.333
71.7912
70.2733
68.7807
67.3144
65.8755
64.465
63.0838
61.7328
60.4125
59.1237
57.867
56.6428
55.4516
54.2936
53.1693
52.0786
51.022
49.9997
49.0116
48.0578
47.1381
46.2523
45.4001
44.5814
43.7956
43.0425
42.3215
41.6322
40.9739
40.3461
39.7481
39.1793
38.6388
38.126
37.6399
37.1797
36.7445
36.3334
35.9454
35.5795
35.2345
34.9096
34.6034
34.315
34.0431
33.7866
33.5442
33.3148
33.0971
32.8899
32.692
32.5022
32.3194
32.1422
31.9698
31.8009
31.6347
31.4701
31.3065
31.143
30.9792
30.8145
30.6487
30.4816
30.3132
30.1437
29.9735
29.803
29.6328
29.4639
29.2971
29.1333
28.9737
28.8192
28.6709
28.5294
28.3955
28.2697
28.152
28.0422
27.9397
27.8433
27.7513
27.6614
27.5708
27.476
27.3732
27.2578
27.1253
26.9708
26.7897
26.5776
26.3311
26.048
25.728
25.3734
24.9904
24.5905
24.1928
23.8287
23.5494
23.4427
23.6733
24.5958
27.1677
35.2272
79.3389
197.783
90.4156
68.9467
61.4158
58.3873
57.4188
57.5947
58.4896
59.8758
61.6182
63.6298
65.8509
68.2379
70.7572
73.3819
76.0893
78.86
81.6763
84.5224
87.3835
90.2454
93.095
95.9194
98.7065
101.444
104.122
106.729
109.254
111.688
114.023
116.249
118.361
120.35
122.212
123.94
125.533
126.985
128.296
129.463
130.487
131.368
132.107
132.706
133.167
133.494
133.689
133.759
133.706
133.535
133.252
132.861
132.368
131.779
131.097
130.328
129.478
128.552
127.554
126.489
125.361
124.175
122.935
121.643
120.303
118.918
117.493
116.029
114.531
113.001
111.442
109.857
108.248
106.619
104.971
103.308
101.633
99.9461
98.2514
96.551
94.8471
93.142
91.4378
89.7368
88.041
86.3525
84.6733
83.0053
81.3503
79.7102
78.0866
76.4812
74.8956
73.3312
71.7894
70.2716
68.779
67.3127
65.8739
64.4635
63.0823
61.7312
60.411
59.1223
57.8656
56.6414
55.4502
54.2923
53.168
52.0774
51.0208
49.9985
49.0105
48.0567
47.137
46.2512
45.3991
44.5803
43.7946
43.0415
42.3205
41.6312
40.973
40.3452
39.7473
39.1784
38.638
38.1252
37.6391
37.1789
36.7438
36.3327
35.9447
35.5788
35.2339
34.9089
34.6028
34.3144
34.0425
33.786
33.5436
33.3142
33.0966
32.8894
32.6915
32.5018
32.3189
32.1418
31.9693
31.8005
31.6342
31.4697
31.3061
31.1427
30.9788
30.8142
30.6484
30.4813
30.3129
30.1434
29.9732
29.8027
29.6325
29.4636
29.2968
29.1331
28.9735
28.819
28.6706
28.5292
28.3953
28.2695
28.1518
28.0421
27.9396
27.8432
27.7512
27.6613
27.5707
27.4759
27.3731
27.2578
27.1253
26.9708
26.7897
26.5776
26.3311
26.048
25.7279
25.3733
24.9903
24.5903
24.1926
23.8285
23.5491
23.4424
23.6729
24.5954
27.1673
35.2269
79.3395
217.21
99.7092
76.0287
67.6787
64.2998
63.1992
63.3652
64.3272
65.8333
67.7338
69.9324
72.3628
74.9764
77.736
80.6116
83.578
86.6133
89.6979
92.8141
95.9452
99.0757
102.19
105.276
108.317
111.303
114.219
117.055
119.799
122.44
124.97
127.379
129.659
131.802
133.804
135.659
137.362
138.91
140.302
141.536
142.612
143.531
144.295
144.904
145.364
145.677
145.848
145.88
145.78
145.553
145.204
144.739
144.164
143.485
142.707
141.836
140.879
139.84
138.725
137.538
136.286
134.973
133.601
132.175
130.699
129.177
127.611
126.006
124.365
122.691
120.987
119.256
117.501
115.724
113.93
112.119
110.295
108.461
106.618
104.769
102.918
101.065
99.2128
97.3645
95.5217
93.6867
91.8615
90.0481
88.2483
86.4641
84.6971
82.9492
81.222
79.517
77.8356
76.1793
74.5494
72.947
71.3734
69.8294
68.3162
66.8346
65.3853
63.9691
62.5866
61.2382
59.9246
58.646
57.4028
56.1951
55.0232
53.8872
52.7874
51.7237
50.6961
49.7043
48.7481
47.8272
46.9413
46.09
45.2727
44.489
43.7383
43.0199
42.3332
41.6775
41.0519
40.4557
39.888
39.3478
38.8343
38.3465
37.8833
37.4437
37.0266
36.6309
36.2554
35.8989
35.5602
35.2382
34.9316
34.6391
34.3596
34.0917
33.8343
33.5861
33.346
33.1129
32.8856
32.6633
32.4449
32.2296
32.0167
31.8056
31.5958
31.387
31.1791
30.9719
30.7658
30.5611
30.3582
30.158
29.9611
29.7686
29.5817
29.4014
29.229
29.0655
28.9122
28.7699
28.6393
28.5209
28.4149
28.321
28.2384
28.1658
28.1015
28.0428
27.9867
27.9294
27.8668
27.7939
27.7056
27.5968
27.4621
27.2969
27.097
26.8597
26.5844
26.2728
25.9309
25.5699
25.2092
24.8808
24.6373
24.57
24.8503
25.8484
28.5643
37.0039
83.0629
217.213
99.7049
76.0248
67.6752
64.2964
63.1958
63.3618
64.3238
65.8299
67.7303
69.9289
72.3592
74.9727
77.7323
80.6079
83.5742
86.6094
89.694
92.8101
95.9412
99.0716
102.186
105.271
108.313
111.298
114.215
117.051
119.795
122.436
124.966
127.375
129.654
131.798
133.8
135.654
137.357
138.906
140.298
141.532
142.608
143.527
144.291
144.9
145.36
145.673
145.844
145.876
145.777
145.549
145.201
144.736
144.161
143.481
142.703
141.833
140.875
139.836
138.721
137.535
136.283
134.969
133.598
132.172
130.696
129.173
127.608
126.003
124.362
122.688
120.984
119.253
117.498
115.722
113.927
112.117
110.293
108.458
106.615
104.767
102.915
101.062
99.2104
97.3621
95.5195
93.6845
91.8593
90.0459
88.2462
86.462
84.6951
82.9472
81.22
79.515
77.8337
76.1775
74.5476
72.9452
71.3716
69.8277
68.3146
66.833
65.3837
63.9675
62.585
61.2367
59.9231
58.6446
57.4013
56.1937
55.0218
53.8859
52.7861
51.7225
50.6948
49.7031
48.7469
47.8261
46.9402
46.0889
45.2717
44.488
43.7373
43.0189
42.3323
41.6765
41.051
40.4548
39.8871
39.347
38.8335
38.3457
37.8826
37.443
37.0259
36.6302
36.2547
35.8982
35.5596
35.2376
34.931
34.6385
34.359
34.0911
33.8337
33.5856
33.3455
33.1124
32.8852
32.6628
32.4444
32.2291
32.0163
31.8052
31.5954
31.3866
31.1787
30.9716
30.7655
30.5608
30.3579
30.1576
29.9608
29.7683
29.5814
29.4011
29.2287
29.0653
28.912
28.7697
28.6391
28.5207
28.4147
28.3208
28.2382
28.1657
28.1013
28.0427
27.9866
27.9294
27.8667
27.7938
27.7056
27.5968
27.4621
27.2968
27.0969
26.8597
26.5843
26.2727
25.9308
25.5697
25.209
24.8806
24.6371
24.5697
24.85
25.848
28.5639
37.0037
83.0635
238.261
109.848
83.7622
74.5197
70.7597
69.5162
69.673
70.7101
72.3488
74.4236
76.8279
79.488
82.3503
85.3732
88.5235
91.773
95.0973
98.4747
101.885
105.31
108.733
112.136
115.504
118.822
122.075
125.25
128.333
131.313
134.178
136.918
139.522
141.983
144.293
146.444
148.433
150.254
151.904
153.382
154.686
155.817
156.776
157.564
158.184
158.64
158.937
159.078
159.07
158.918
158.628
158.206
157.66
156.995
156.217
155.334
154.352
153.277
152.115
150.872
149.554
148.165
146.712
145.198
143.626
142.002
140.328
138.61
136.851
135.054
133.223
131.361
129.471
127.556
125.62
123.664
121.693
119.708
117.712
115.708
113.698
111.685
109.671
107.659
105.65
103.647
101.653
99.6691
97.6976
95.7405
93.7998
91.8772
89.9747
88.0938
86.2362
84.4034
82.597
80.8182
79.0684
77.3487
75.6603
74.0042
72.3813
70.7924
69.2383
67.7197
66.2372
64.7912
63.3823
62.0106
60.6766
59.3803
58.1219
56.9015
55.7194
54.5753
53.4693
52.4009
51.3701
50.3763
49.4191
48.4982
47.6129
46.7627
45.9468
45.1647
44.4155
43.6984
43.0126
42.3572
41.7312
41.1336
40.5635
40.0197
39.5011
39.0067
38.5352
38.0854
37.6561
37.2461
36.8541
36.4789
36.1192
35.7737
35.4412
35.1204
34.8102
34.5093
34.2167
33.9314
33.6523
33.3786
33.1096
32.8446
32.583
32.3246
32.0691
31.8166
31.567
31.3209
31.0786
30.841
30.6088
30.3831
30.1651
29.9559
29.7571
29.5698
29.3954
29.235
29.0897
28.9603
28.8471
28.7505
28.67
28.6048
28.5536
28.5143
28.4841
28.4598
28.4373
28.412
28.3787
28.3319
28.2658
28.1748
28.0536
27.8976
27.7036
27.4704
27.1995
26.8964
26.5723
26.2466
25.9521
25.7429
25.7135
26.0421
27.1143
29.9729
38.7901
86.7829
238.263
109.843
83.758
74.5159
70.756
69.5126
69.6694
70.7064
72.3451
74.4199
76.8241
79.4841
82.3464
85.3693
88.5195
91.7689
95.0932
98.4705
101.881
105.306
108.729
112.132
115.5
118.817
122.07
125.245
128.329
131.309
134.174
136.914
139.518
141.979
144.288
146.44
148.428
150.249
151.9
153.378
154.682
155.813
156.771
157.559
158.18
158.636
158.932
159.074
159.066
158.914
158.624
158.202
157.656
156.991
156.213
155.331
154.348
153.273
152.111
150.868
149.55
148.162
146.709
145.194
143.623
141.998
140.325
138.607
136.848
135.051
133.22
131.358
129.468
127.553
125.617
123.662
121.69
119.705
117.709
115.705
113.695
111.682
109.668
107.656
105.647
103.645
101.651
99.6668
97.6953
95.7382
93.7975
91.875
89.9725
88.0916
86.2341
84.4014
82.595
80.8163
79.0665
77.3468
75.6585
74.0024
72.3795
70.7906
69.2366
67.7181
66.2356
64.7896
63.3807
62.0091
60.6751
59.3788
58.1205
56.9001
55.718
54.574
53.468
52.3997
51.3688
50.3751
49.418
48.4971
47.6118
46.7616
45.9458
45.1636
44.4145
43.6974
43.0116
42.3562
41.7303
41.1328
40.5626
40.0189
39.5003
39.0059
38.5344
38.0846
37.6554
37.2454
36.8535
36.4783
36.1186
35.7731
35.4406
35.1198
34.8096
34.5088
34.2162
33.9309
33.6518
33.3782
33.1092
32.8441
32.5826
32.3242
32.0687
31.8162
31.5666
31.3205
31.0783
30.8406
30.6085
30.3828
30.1648
29.9556
29.7568
29.5695
29.3951
29.2348
29.0895
28.96
28.8469
28.7503
28.6698
28.6047
28.5535
28.5141
28.484
28.4597
28.4373
28.4119
28.3787
28.3318
28.2658
28.1748
28.0535
27.8976
27.7036
27.4704
27.1994
26.8963
26.5721
26.2464
25.9518
25.7426
25.7132
26.0417
27.1139
29.9725
38.7898
86.7836
261.045
120.904
92.2056
81.9909
77.8158
76.4175
76.5654
77.6856
79.4702
81.7362
84.3657
87.2772
90.4111
93.7214
97.1711
100.729
104.368
108.063
111.793
115.537
119.276
122.991
126.665
130.281
133.823
137.276
140.626
143.86
146.965
149.929
152.743
155.397
157.883
160.194
162.325
164.271
166.029
167.598
168.975
170.163
171.161
171.974
172.603
173.053
173.33
173.438
173.384
173.174
172.815
172.314
171.677
170.913
170.029
169.031
167.928
166.724
165.428
164.046
162.585
161.049
159.444
157.774
156.043
154.257
152.421
150.537
148.61
146.644
144.642
142.608
140.546
138.458
136.347
134.218
132.071
129.911
127.74
125.561
123.376
121.189
119
116.814
114.631
112.456
110.289
108.133
105.99
103.863
101.753
99.6616
97.5917
95.5447
93.5221
91.5258
89.5571
87.6175
85.7084
83.8311
81.9867
80.1763
78.4009
76.6615
74.9588
73.2935
71.6664
70.0779
68.5285
67.0185
65.5484
64.1183
62.7283
61.3785
60.0689
58.7997
57.5709
56.382
55.2329
54.1233
53.0525
52.0203
51.026
50.0689
49.1485
48.264
47.4146
46.5995
45.8177
45.0683
44.3504
43.6629
43.0047
42.3746
41.7717
41.1946
40.6421
40.1131
39.6062
39.1201
38.6536
38.2053
37.774
37.3584
36.9572
36.5691
36.193
35.8277
35.4722
35.1253
34.7862
34.4541
34.1282
33.8081
33.4932
33.1834
32.8785
32.5787
32.2842
31.9956
31.7135
31.4387
31.1724
30.9156
30.6698
30.4363
30.2166
30.0123
29.8247
29.655
29.5044
29.3736
29.2633
29.1735
29.1038
29.0533
29.0206
29.0033
28.9986
29.003
29.012
29.0207
29.0237
29.0149
28.9881
28.9373
28.8567
28.7412
28.5872
28.3929
28.1595
27.8922
27.602
27.3087
27.0456
26.8684
26.8749
27.2501
28.3952
31.3954
40.5895
90.5121
261.047
120.899
92.2011
81.9868
77.8118
76.4137
76.5615
77.6817
79.4662
81.7322
84.3616
87.2731
90.4069
93.7172
97.1668
100.725
104.363
108.059
111.789
115.533
119.272
122.987
126.66
130.276
133.818
137.271
140.622
143.855
146.96
149.925
152.738
155.392
157.878
160.19
162.321
164.267
166.025
167.593
168.971
170.158
171.157
171.969
172.599
173.049
173.326
173.434
173.38
173.17
172.811
172.309
171.673
170.909
170.025
169.027
167.924
166.72
165.425
164.043
162.581
161.045
159.44
157.77
156.04
154.254
152.417
150.533
148.606
146.64
144.639
142.605
140.543
138.455
136.344
134.215
132.068
129.908
127.737
125.558
123.374
121.186
118.997
116.811
114.629
112.453
110.286
108.13
105.988
103.86
101.75
99.6593
97.5894
95.5424
93.5199
91.5236
89.5549
87.6154
85.7063
83.8291
81.9847
80.1744
78.399
76.6596
74.957
73.2917
71.6646
70.0762
68.5268
67.0169
65.5468
64.1167
62.7268
61.377
60.0674
58.7983
57.5695
56.3807
55.2316
54.122
53.0513
52.0191
51.0248
50.0678
49.1474
48.2629
47.4135
46.5984
45.8167
45.0673
44.3494
43.6619
43.0037
42.3738
41.7708
41.1938
40.6413
40.1123
39.6054
39.1194
38.6529
38.2046
37.7734
37.3578
36.9566
36.5685
36.1924
35.8272
35.4716
35.1248
34.7857
34.4536
34.1277
33.8076
33.4927
33.1829
32.8781
32.5783
32.2838
31.9952
31.7131
31.4384
31.172
30.9153
30.6695
30.436
30.2163
30.012
29.8244
29.6547
29.5041
29.3734
29.2631
29.1733
29.1036
29.0532
29.0204
29.0032
28.9986
29.0029
29.012
29.0207
29.0237
29.0148
28.9881
28.9373
28.8567
28.7412
28.5871
28.3928
28.1594
27.892
27.6018
27.3085
27.0453
26.8681
26.8746
27.2497
28.3948
31.395
40.5893
90.5129
285.678
132.953
101.417
90.1442
85.5173
83.951
84.0899
85.3013
87.2454
89.7203
92.5953
95.7806
99.2101
102.833
106.608
110.5
114.479
118.519
122.595
126.684
130.764
134.815
138.818
142.754
146.606
150.358
153.994
157.499
160.86
164.065
167.102
169.961
172.634
175.115
177.396
179.474
181.345
183.007
184.461
185.707
186.746
187.582
188.218
188.66
188.913
188.983
188.878
188.603
188.167
187.578
186.844
185.972
184.971
183.849
182.613
181.271
179.83
178.297
176.679
174.984
173.214
171.375
169.473
167.513
165.499
163.435
161.327
159.178
156.992
154.772
152.523
150.248
147.95
145.631
143.296
140.947
138.587
136.219
133.845
131.468
129.091
126.717
124.347
121.984
119.631
117.29
114.962
112.651
110.358
108.086
105.835
103.609
101.409
99.236
97.0924
94.9797
92.8991
90.852
88.8397
86.8634
84.924
83.0226
81.16
79.3371
77.5545
75.8128
74.1125
72.454
70.8378
69.2639
67.7327
66.2441
64.7981
63.3948
62.0343
60.7163
59.4405
58.2067
57.0143
55.8629
54.7518
53.6805
52.6483
51.6543
50.6977
49.7777
48.8933
48.0436
47.2275
46.4439
45.6917
44.9697
44.2767
43.6115
42.9728
42.3593
41.7697
41.2027
40.657
40.1311
39.6238
39.1337
38.6596
38.2002
37.7543
37.3208
36.8985
36.4865
36.084
35.6901
35.3042
34.9258
34.5546
34.1904
33.8333
33.4835
33.1415
32.8078
32.4832
32.1689
31.8659
31.5757
31.2997
31.0394
30.7966
30.5728
30.3695
30.1881
30.0296
29.895
29.7847
29.6989
29.6371
29.5983
29.5808
29.5824
29.5998
29.6293
29.6662
29.7052
29.7405
29.7657
29.7743
29.7596
29.7155
29.6364
29.5182
29.3589
29.159
28.9237
28.6639
28.3996
28.1648
28.0169
28.0568
28.4767
29.6932
32.8346
42.4071
94.2655
285.681
132.947
101.412
90.1398
85.513
83.9468
84.0857
85.2971
87.2412
89.716
92.591
95.7762
99.2056
102.828
106.603
110.495
114.475
118.515
122.59
126.679
130.759
134.81
138.813
142.749
146.602
150.353
153.989
157.494
160.855
164.06
167.097
169.956
172.63
175.11
177.391
179.469
181.34
183.003
184.456
185.702
186.741
187.577
188.214
188.656
188.909
188.979
188.873
188.599
188.163
187.574
186.84
185.968
184.967
183.845
182.609
181.266
179.826
178.293
176.675
174.98
173.21
171.371
169.47
167.509
165.495
163.432
161.323
159.174
156.988
154.769
152.52
150.245
147.946
145.628
143.293
140.944
138.584
136.216
133.842
131.465
129.088
126.714
124.344
121.981
119.628
117.287
114.959
112.648
110.356
108.083
105.833
103.607
101.406
99.2336
97.0901
94.9774
92.8969
90.8498
88.8376
86.8613
84.9219
83.0206
81.1581
79.3352
77.5526
75.8109
74.1107
72.4523
70.8361
69.2623
67.731
66.2425
64.7966
63.3933
62.0328
60.7148
59.4391
58.2053
57.013
55.8616
54.7506
53.6793
52.647
51.6531
50.6966
49.7766
48.8923
48.0426
47.2265
46.4429
45.6907
44.9687
44.2758
43.6106
42.9719
42.3585
41.7689
41.2019
40.6562
40.1303
39.6231
39.133
38.6589
38.1996
37.7537
37.3202
36.8979
36.486
36.0834
35.6895
35.3036
34.9253
34.5541
34.1899
33.8329
33.4831
33.141
32.8073
32.4828
32.1685
31.8655
31.5753
31.2993
31.0391
30.7963
30.5725
30.3693
30.1878
30.0294
29.8947
29.7845
29.6987
29.6369
29.5981
29.5807
29.5823
29.5997
29.6292
29.6661
29.7052
29.7405
29.7657
29.7743
29.7596
29.7155
29.6364
29.5182
29.3588
29.159
28.9236
28.6638
28.3994
28.1645
28.0166
28.0565
28.4762
29.6927
32.8342
42.4069
94.2663
312.282
146.071
111.46
99.0354
93.9168
92.1677
92.2971
93.608
95.7259
98.4277
101.57
105.052
108.802
112.763
116.889
121.143
125.491
129.902
134.35
138.809
143.256
147.668
152.024
156.304
160.488
164.559
168.5
172.294
175.927
179.387
182.66
185.737
188.609
191.267
193.706
195.922
197.911
199.671
201.204
202.508
203.588
204.446
205.087
205.517
205.742
205.769
205.605
205.26
204.74
204.055
203.213
202.224
201.097
199.839
198.459
196.966
195.368
193.673
191.887
190.019
188.071
186.051
183.964
181.815
179.61
177.353
175.049
172.703
170.318
167.899
165.449
162.972
160.471
157.949
155.411
152.858
150.295
147.723
145.145
142.566
139.986
137.409
134.837
132.273
129.72
127.179
124.653
122.144
119.654
117.187
114.742
112.323
109.932
107.57
105.238
102.94
100.675
98.4455
96.2529
94.0983
91.9829
89.9077
87.8736
85.8816
83.9322
82.0263
80.1643
78.3467
76.5738
74.846
73.1635
71.5263
69.9345
68.3879
66.8865
65.4303
64.0192
62.6526
61.3302
60.0515
58.8157
57.6224
56.4707
55.3598
54.2889
53.2571
52.2633
51.3066
50.3858
49.4998
48.6475
47.8275
47.0388
46.2798
45.5494
44.8461
44.1687
43.5157
42.8858
42.2776
41.6896
41.1206
40.5693
40.0343
39.5146
39.0088
38.516
38.0352
37.5655
37.1063
36.657
36.217
35.7863
35.3647
34.9524
34.5497
34.1572
33.7756
33.4059
33.0493
32.7071
32.3808
32.072
31.7825
31.5139
31.268
31.0464
30.8505
30.6814
30.54
30.4268
30.3419
30.2848
30.2543
30.2487
30.2655
30.3012
30.3519
30.4126
30.4777
30.541
30.5958
30.6351
30.6519
30.6396
30.5921
30.5051
30.3758
30.205
29.9972
29.7634
29.524
29.3137
29.1917
29.2623
29.7246
31.0113
34.2942
44.2489
98.0607
312.285
146.065
111.455
99.0306
93.9122
92.1633
92.2927
93.6035
95.7213
98.4231
101.565
105.047
108.797
112.758
116.885
121.138
125.486
129.897
134.345
138.804
143.251
147.663
152.019
156.299
160.483
164.554
168.494
172.288
175.922
179.381
182.655
185.732
188.603
191.262
193.701
195.917
197.906
199.666
201.199
202.503
203.583
204.441
205.082
205.512
205.737
205.764
205.601
205.255
204.735
204.05
203.209
202.22
201.092
199.834
198.455
196.962
195.364
193.669
191.883
190.015
188.067
186.047
183.96
181.811
179.606
177.349
175.045
172.699
170.314
167.895
165.445
162.968
160.467
157.946
155.407
152.855
150.291
147.719
145.142
142.562
139.983
137.406
134.834
132.27
129.717
127.176
124.65
122.141
119.652
117.184
114.74
112.321
109.929
107.567
105.236
102.937
100.672
98.4431
96.2506
94.0961
91.9807
89.9056
87.8715
85.8795
83.9302
82.0243
80.1623
78.3448
76.572
74.8443
73.1618
71.5246
69.9328
68.3863
66.8849
65.4288
64.0177
62.6511
61.3288
60.0501
58.8144
57.6211
56.4694
55.3586
54.2877
53.2559
52.2622
51.3055
50.3847
49.4988
48.6464
47.8265
47.0378
46.2788
45.5485
44.8452
44.1678
43.5149
42.885
42.2768
41.6888
41.1199
40.5686
40.0336
39.5139
39.0081
38.5154
38.0346
37.5649
37.1057
36.6564
36.2165
35.7858
35.3642
34.9519
34.5492
34.1567
33.7752
33.4055
33.0489
32.7067
32.3804
32.0717
31.7821
31.5136
31.2677
31.0461
30.8502
30.6811
30.5397
30.4266
30.3417
30.2846
30.2542
30.2486
30.2654
30.3012
30.3519
30.4126
30.4777
30.541
30.5959
30.6352
30.652
30.6396
30.5921
30.5051
30.3758
30.2049
29.9971
29.7633
29.5238
29.3135
29.1914
29.2619
29.7241
31.0109
34.2938
44.2487
98.0616
340.981
160.343
122.4
108.724
103.071
101.123
101.242
102.66
104.966
107.914
111.345
115.148
119.244
123.571
128.076
132.719
137.463
142.273
147.121
151.978
156.817
161.616
166.349
170.995
175.533
179.943
184.208
188.309
192.231
195.96
199.484
202.79
205.869
208.715
211.319
213.679
215.79
217.651
219.264
220.628
221.747
222.626
223.269
223.683
223.875
223.852
223.624
223.199
222.587
221.797
220.839
219.723
218.458
217.053
215.519
213.864
212.097
210.226
208.26
206.205
204.066
201.85
199.564
197.213
194.803
192.338
189.825
187.267
184.669
182.035
179.369
176.675
173.957
171.218
168.462
165.691
162.909
160.118
157.323
154.525
151.728
148.934
146.145
143.366
140.597
137.842
135.103
132.382
129.682
127.005
124.353
121.727
119.131
116.566
114.033
111.535
109.073
106.648
104.262
101.917
99.6127
97.3514
95.1337
92.9606
90.8328
88.751
86.716
84.7281
82.7878
80.8955
79.0512
77.2552
75.5074
73.8079
72.1564
70.5528
68.9971
67.4889
66.0278
64.6132
63.2445
61.9211
60.6421
59.4067
58.2141
57.0631
55.9529
54.8823
53.8501
52.8553
51.8965
50.9724
50.0818
49.2232
48.3954
47.5969
46.8262
46.082
45.3628
44.6673
43.9939
43.3413
42.7082
42.0933
41.4953
40.9132
40.3458
39.7922
39.2517
38.7235
38.2071
37.7021
37.2084
36.7261
36.2553
35.7966
35.3506
34.9181
34.5003
34.0986
33.7142
33.349
33.0046
32.6829
32.3858
32.115
31.8722
31.6587
31.4759
31.3246
31.2053
31.118
31.0621
31.0364
31.0388
31.0668
31.1168
31.1844
31.2644
31.3509
31.4375
31.5169
31.5818
31.6248
31.6388
31.6176
31.5562
31.4517
31.3045
31.119
30.9063
30.6871
30.497
30.397
30.4951
30.9975
32.3535
35.7791
46.1224
101.917
340.984
160.336
122.394
108.719
103.066
101.118
101.237
102.655
104.961
107.909
111.34
115.143
119.239
123.565
128.071
132.714
137.457
142.268
147.115
151.972
156.812
161.61
166.343
170.989
175.527
179.938
184.202
188.303
192.226
195.955
199.478
202.784
205.864
208.709
211.314
213.673
215.785
217.646
219.258
220.623
221.742
222.621
223.264
223.678
223.87
223.847
223.619
223.195
222.583
221.793
220.835
219.718
218.453
217.049
215.515
213.86
212.092
210.222
208.256
206.2
204.062
201.846
199.56
197.209
194.799
192.334
189.821
187.263
184.665
182.031
179.365
176.672
173.954
171.215
168.458
165.687
162.905
160.115
157.319
154.522
151.724
148.93
146.142
143.363
140.594
137.839
135.1
132.379
129.679
127.002
124.35
121.725
119.128
116.563
114.03
111.532
109.07
106.645
104.26
101.914
99.6104
97.3491
95.1315
92.9584
90.8306
88.7489
86.7139
84.7261
82.7859
80.8935
79.0493
77.2533
75.5056
73.8062
72.1547
70.5511
68.9954
67.4873
66.0262
64.6117
63.2431
61.9197
60.6407
59.4054
58.2127
57.0618
55.9516
54.8811
53.849
52.8541
51.8953
50.9713
50.0807
49.2222
48.3944
47.5959
46.8253
46.0811
45.362
44.6664
43.993
43.3405
42.7074
42.0925
41.4946
40.9125
40.3451
39.7916
39.2511
38.7229
38.2065
37.7015
37.2079
36.7256
36.2548
35.7961
35.3501
34.9176
34.4999
34.0981
33.7138
33.3486
33.0042
32.6826
32.3854
32.1147
31.8719
31.6585
31.4757
31.3244
31.2051
31.1178
31.0619
31.0362
31.0387
31.0667
31.1167
31.1843
31.2644
31.3509
31.4375
31.5169
31.5818
31.6248
31.6388
31.6176
31.5562
31.4517
31.3044
31.1189
30.9062
30.6869
30.4968
30.3967
30.4947
30.9971
32.353
35.7786
46.1222
101.918
371.906
175.855
134.308
119.274
113.039
110.875
110.981
112.516
115.025
118.239
121.981
126.131
130.6
135.319
140.232
145.293
150.461
155.699
160.974
166.256
171.515
176.724
181.859
186.895
191.809
196.579
201.186
205.612
209.839
213.852
217.638
221.185
224.483
227.523
230.3
232.808
235.045
237.01
238.703
240.127
241.285
242.181
242.822
243.216
243.369
243.291
242.991
242.479
241.766
240.862
239.777
238.523
237.109
235.547
233.846
232.016
230.068
228.009
225.849
223.594
221.25
218.825
216.326
213.758
211.128
208.441
205.703
202.919
200.093
197.23
194.334
191.409
188.458
185.487
182.497
179.493
176.477
173.453
170.425
167.394
164.364
161.338
158.318
155.308
152.309
149.325
146.358
143.411
140.485
137.584
134.709
131.863
129.048
126.265
123.517
120.805
118.132
115.498
112.906
110.357
107.851
105.391
102.977
100.61
98.2917
96.0221
93.8022
91.6325
89.5134
87.4453
85.4284
83.4629
81.5488
79.6861
77.8746
76.1141
74.4043
72.7452
71.1363
69.5771
68.0669
66.6049
65.1905
63.8227
62.5005
61.2229
59.9889
58.7972
57.6468
56.5362
55.4643
54.4297
53.431
52.4668
51.5357
50.6361
49.7666
48.9258
48.112
47.324
46.5601
45.8191
45.0994
44.3999
43.7193
43.0564
42.4102
41.7797
41.1643
40.5631
39.9758
39.4021
38.8419
38.2952
37.7626
37.2444
36.7415
36.2549
35.7858
35.3357
34.9062
34.4989
34.1158
33.7589
33.4301
33.1312
32.864
32.6299
32.4301
32.2655
32.1365
32.0431
31.9846
31.9596
31.9661
32.001
32.0607
32.1405
32.235
32.3379
32.4423
32.5408
32.6256
32.689
32.7235
32.7225
32.6807
32.595
32.4653
32.2963
32.0991
31.8948
31.7201
31.6379
31.76
32.3002
33.7246
37.295
48.0362
105.858
371.909
175.848
134.302
119.269
113.034
110.87
110.976
112.511
115.02
118.233
121.975
126.125
130.594
135.313
140.226
145.287
150.455
155.693
160.968
166.25
171.509
176.719
181.853
186.889
191.803
196.573
201.18
205.606
209.833
213.846
217.632
221.179
224.477
227.517
230.294
232.802
235.039
237.004
238.698
240.122
241.279
242.176
242.817
243.21
243.364
243.286
242.986
242.474
241.761
240.857
239.772
238.518
237.104
235.542
233.841
232.012
230.063
228.004
225.844
223.589
221.245
218.821
216.321
213.754
211.124
208.437
205.699
202.915
200.089
197.226
194.33
191.405
188.454
185.483
182.493
179.489
176.473
173.45
170.421
167.39
164.36
161.334
158.315
155.304
152.306
149.322
146.355
143.408
140.482
137.581
134.706
131.86
129.045
126.262
123.514
120.803
118.129
115.496
112.904
110.354
107.849
105.388
102.974
100.608
98.2894
96.0199
93.8
91.6304
89.5113
87.4432
85.4264
83.4609
81.5469
79.6842
77.8728
76.1123
74.4026
72.7435
71.1346
69.5755
68.0653
66.6034
65.189
63.8212
62.4991
61.2215
59.9875
58.7959
57.6455
56.535
55.4631
54.4286
53.4299
52.4657
51.5346
50.6351
49.7656
48.9248
48.1111
47.323
46.5592
45.8182
45.0986
44.3991
43.7185
43.0556
42.4095
41.779
41.1636
40.5624
39.9752
39.4015
38.8413
38.2947
37.762
37.2438
36.741
36.2544
35.7853
35.3353
34.9057
34.4985
34.1154
33.7585
33.4297
33.1309
32.8637
32.6296
32.4298
32.2652
32.1363
32.0429
31.9844
31.9595
31.966
32.0009
32.0606
32.1405
32.2349
32.3379
32.4423
32.5408
32.6257
32.6891
32.7236
32.7226
32.6807
32.5949
32.4652
32.2962
32.0989
31.8946
31.7198
31.6376
31.7596
32.2997
33.7241
37.2946
48.0361
105.859
405.193
192.703
147.262
130.754
123.887
121.487
121.579
123.238
125.966
129.465
133.542
138.064
142.933
148.073
153.423
158.932
164.553
170.248
175.979
181.713
187.418
193.065
198.626
204.074
209.385
214.536
219.505
224.272
228.82
233.131
237.192
240.99
244.515
247.758
250.713
253.375
255.741
257.811
259.586
261.068
262.262
263.173
263.808
264.176
264.284
264.143
263.764
263.157
262.333
261.305
260.083
258.68
257.106
255.374
253.494
251.478
249.335
247.075
244.707
242.238
239.676
237.027
234.301
231.502
228.638
225.715
222.738
219.712
216.644
213.536
210.394
207.223
204.025
200.806
197.568
194.315
191.051
187.778
184.501
181.222
177.944
174.671
171.404
168.148
164.904
161.676
158.466
155.277
152.111
148.97
145.858
142.776
139.727
136.712
133.734
130.795
127.896
125.04
122.227
119.459
116.739
114.066
111.443
108.869
106.347
103.877
101.46
99.0966
96.7868
94.5312
92.3303
90.1841
88.0927
86.0561
84.0742
82.1466
80.2732
78.4534
76.6872
74.9741
73.3134
71.7042
70.1458
68.6371
67.1773
65.7652
64.3997
63.0796
61.8036
60.5703
59.3785
58.2267
57.1134
56.0372
54.9965
53.9899
53.0157
52.0725
51.1587
50.2727
49.4132
48.5785
47.7674
46.9784
46.2104
45.4621
44.7326
44.0208
43.3262
42.6479
41.9856
41.3392
40.7085
40.0938
39.4954
38.9141
38.3508
37.8065
37.2827
36.7808
36.3026
35.8499
35.4248
35.0292
34.6653
34.335
34.0399
33.7815
33.5611
33.3794
33.237
33.1336
33.0684
33.0399
33.0458
33.083
33.1476
33.2345
33.3381
33.4518
33.5684
33.68
33.7786
33.8561
33.9045
33.9171
33.8882
33.8145
33.6958
33.5368
33.3489
33.1537
32.9891
32.9201
33.0625
33.6381
35.1306
38.8491
50.0007
109.908
405.195
192.695
147.255
130.748
123.882
121.481
121.573
123.233
125.96
129.459
133.536
138.058
142.927
148.067
153.417
158.926
164.547
170.242
175.973
181.707
187.412
193.059
198.62
204.068
209.379
214.53
219.499
224.266
228.813
233.125
237.186
240.984
244.509
247.752
250.707
253.369
255.735
257.805
259.58
261.063
262.257
263.168
263.803
264.17
264.279
264.138
263.759
263.151
262.328
261.299
260.078
258.675
257.101
255.369
253.49
251.473
249.33
247.07
244.702
242.233
239.671
237.023
234.296
231.498
228.634
225.71
222.733
219.708
216.639
213.532
210.39
207.219
204.021
200.802
197.564
194.311
191.047
187.774
184.497
181.218
177.94
174.667
171.401
168.144
164.901
161.673
158.463
155.273
152.107
148.967
145.855
142.773
139.724
136.709
133.731
130.792
127.893
125.037
122.224
119.457
116.736
114.063
111.44
108.867
106.345
103.875
101.458
99.0943
96.7845
94.5291
92.3282
90.182
88.0907
86.0541
84.0722
82.1447
80.2713
78.4516
76.6855
74.9724
73.3117
71.7026
70.1442
68.6356
67.1758
65.7638
64.3983
63.0782
61.8022
60.569
59.3772
58.2254
57.1122
56.036
54.9954
53.9888
53.0147
52.0715
51.1577
50.2718
49.4122
48.5776
47.7665
46.9776
46.2096
45.4613
44.7318
44.0201
43.3254
42.6472
41.985
41.3385
40.7079
40.0931
39.4948
38.9136
38.3502
37.806
37.2822
36.7803
36.3021
35.8495
35.4244
35.0288
34.6649
34.3346
34.0396
33.7812
33.5608
33.3792
33.2368
33.1334
33.0682
33.0397
33.0457
33.083
33.1475
33.2345
33.3381
33.4518
33.5684
33.68
33.7787
33.8561
33.9046
33.9171
33.8882
33.8144
33.6958
33.5367
33.3487
33.1535
32.9888
32.9198
33.0621
33.6377
35.1301
38.8486
50.0006
109.909
440.983
210.985
161.341
143.237
135.684
133.026
133.101
134.893
137.855
141.66
146.096
151.017
156.314
161.905
167.722
173.707
179.812
185.993
192.209
198.423
204.601
210.711
216.722
222.606
228.336
233.888
239.236
244.362
249.245
253.868
258.216
262.275
266.036
269.488
272.627
275.446
277.944
280.12
281.976
283.515
284.743
285.664
286.288
286.624
286.681
286.469
286.002
285.29
284.346
283.183
281.814
280.25
278.505
276.591
274.52
272.304
269.953
267.479
264.89
262.194
259.398
256.513
253.544
250.5
247.388
244.213
240.982
237.701
234.375
231.008
227.606
224.173
220.713
217.23
213.729
210.212
206.684
203.147
199.606
196.063
192.522
188.986
185.457
181.939
178.434
174.947
171.478
168.031
164.609
161.214
157.849
154.516
151.218
147.956
144.733
141.551
138.412
135.317
132.269
129.27
126.32
123.42
120.574
117.78
115.041
112.358
109.73
107.16
104.647
102.192
99.7948
97.4562
95.176
92.9543
90.7909
88.6856
86.638
84.6477
82.7143
80.8376
79.0168
77.2512
75.5398
73.8817
72.2758
70.721
69.216
67.7595
66.3503
64.987
63.668
62.3919
61.1573
59.9624
58.8058
57.6858
56.6009
55.5493
54.5296
53.5401
52.5793
51.6457
50.7378
49.8543
48.9938
48.1553
47.3377
46.54
45.7616
45.0018
44.2602
43.5367
42.8314
42.1445
41.4765
40.8281
40.2004
39.5946
39.0122
38.4548
37.9242
37.4224
36.9515
36.5137
36.111
35.7454
35.4186
35.1321
34.8871
34.6843
34.5242
34.4064
34.3301
34.2934
34.294
34.3285
34.3926
34.4812
34.5882
34.7067
34.8292
34.9475
35.0532
35.1378
35.1932
35.2121
35.1889
35.1199
35.0051
34.8491
34.6638
34.4714
34.3112
34.2506
34.4095
35.0182
36.5789
40.4498
52.0278
114.095
440.985
210.977
161.334
143.231
135.678
133.02
133.095
134.887
137.849
141.654
146.09
151.011
156.308
161.899
167.715
173.701
179.806
185.986
192.202
198.416
204.595
210.705
216.716
222.6
228.33
233.881
239.23
244.356
249.239
253.862
258.209
262.269
266.03
269.482
272.62
275.44
277.938
280.114
281.97
283.509
284.737
285.658
286.283
286.618
286.675
286.464
285.996
285.284
284.341
283.178
281.808
280.245
278.5
276.586
274.515
272.299
269.948
267.474
264.885
262.189
259.393
256.508
253.539
250.495
247.383
244.208
240.978
237.697
234.37
231.004
227.602
224.169
220.709
217.226
213.725
210.208
206.68
203.143
199.602
196.059
192.518
188.982
185.453
181.935
178.431
174.943
171.474
168.028
164.606
161.211
157.846
154.513
151.214
147.953
144.73
141.548
138.409
135.314
132.267
129.267
126.317
123.418
120.571
117.777
115.039
112.355
109.728
107.158
104.645
102.189
99.7925
97.4539
95.1738
92.9522
90.7888
88.6835
86.636
84.6457
82.7124
80.8357
79.015
77.2494
75.5381
73.8801
72.2742
70.7194
69.2144
67.7581
66.3489
64.9856
63.6666
62.3906
61.156
59.9612
58.8046
57.6846
56.5997
55.5482
54.5285
53.5391
52.5783
51.6447
50.7368
49.8533
48.9929
48.1545
47.3369
46.5392
45.7608
45.001
44.2595
43.536
42.8307
42.1438
41.4758
40.8275
40.1998
39.5941
39.0117
38.4542
37.9237
37.4219
36.951
36.5132
36.1106
35.745
35.4182
35.1317
34.8868
34.6841
34.524
34.4062
34.3299
34.2933
34.2939
34.3284
34.3926
34.4812
34.5882
34.7067
34.8292
34.9475
35.0532
35.1378
35.1932
35.2122
35.1889
35.1199
35.0051
34.8491
34.6637
34.4712
34.3109
34.2502
34.4091
35.0178
36.5784
40.4494
52.0277
114.096
479.423
230.808
176.633
156.801
148.503
145.564
145.618
147.551
150.764
154.896
159.716
165.063
170.818
176.889
183.203
189.696
196.315
203.011
209.74
216.463
223.141
229.74
236.226
242.568
248.738
254.709
260.456
265.956
271.189
276.136
280.782
285.112
289.116
292.784
296.11
299.089
301.72
304.003
305.939
307.532
308.789
309.717
310.325
310.621
310.619
310.329
309.764
308.938
307.864
306.556
305.027
303.291
301.363
299.255
296.98
294.551
291.98
289.278
286.454
283.516
280.474
277.337
274.112
270.809
267.433
263.993
260.494
256.942
253.344
249.703
246.026
242.316
238.579
234.818
231.038
227.242
223.434
219.618
215.798
211.975
208.155
204.34
200.533
196.737
192.956
189.193
185.449
181.729
178.035
174.37
170.736
167.136
163.572
160.047
156.564
153.123
149.729
146.381
143.083
139.836
136.641
133.501
130.416
127.388
124.418
121.507
118.656
115.866
113.136
110.468
107.863
105.319
102.838
100.42
98.0632
95.7688
93.5361
91.3645
89.2537
87.2031
85.2124
83.2806
81.4069
79.5902
77.8293
76.123
74.4701
72.8691
71.3188
69.8175
68.3638
66.9562
65.593
64.2725
62.9932
61.7532
60.5511
59.3849
58.2532
57.1542
56.0864
55.0481
54.0379
53.0544
52.0963
51.1624
50.2517
49.3631
48.4961
47.65
46.8245
46.0194
45.235
44.4715
43.7294
43.0098
42.3135
41.6421
40.9969
40.3798
39.7928
39.2379
38.7172
38.233
37.7875
37.3825
37.0199
36.701
36.4271
36.1988
36.0165
35.8797
35.7873
35.7375
35.7275
35.7538
35.8119
35.8962
36.0004
36.1173
36.2389
36.3569
36.4625
36.5468
36.6015
36.6192
36.5938
36.5218
36.4032
36.2428
36.0528
35.8566
35.6947
35.6373
35.8088
36.4485
38.0779
42.1072
54.1311
118.45
479.425
230.799
176.625
156.794
148.497
145.558
145.612
147.545
150.757
154.89
159.71
165.057
170.811
176.883
183.196
189.689
196.308
203.004
209.734
216.456
223.134
229.733
236.219
242.561
248.732
254.702
260.449
265.95
271.182
276.13
280.775
285.106
289.109
292.778
296.103
299.083
301.714
303.996
305.932
307.526
308.783
309.711
310.319
310.615
310.613
310.323
309.759
308.932
307.858
306.55
305.021
303.286
301.357
299.249
296.974
294.546
291.974
289.273
286.449
283.511
280.469
277.332
274.107
270.804
267.429
263.988
260.489
256.938
253.339
249.698
246.021
242.311
238.574
234.814
231.033
227.238
223.43
219.614
215.793
211.971
208.151
204.336
200.529
196.733
192.952
189.189
185.446
181.726
178.032
174.366
170.732
167.132
163.569
160.044
156.56
153.12
149.725
146.378
143.08
139.833
136.638
133.498
130.413
127.385
124.415
121.505
118.653
115.863
113.134
110.466
107.86
105.317
102.836
100.417
98.061
95.7667
93.534
91.3625
89.2517
87.2011
85.2105
83.2788
81.4051
79.5884
77.8276
76.1213
74.4684
72.8675
71.3172
69.816
68.3624
66.9548
65.5916
64.2712
62.9919
61.752
60.5498
59.3838
58.2521
57.1531
56.0853
55.047
54.0369
53.0535
52.0954
51.1615
50.2508
49.3622
48.4952
47.6492
46.8237
46.0187
45.2343
44.4707
43.7287
43.0091
42.3129
41.6414
40.9963
40.3793
39.7923
39.2373
38.7167
38.2325
37.787
37.3821
37.0195
36.7006
36.4267
36.1985
36.0162
35.8795
35.7871
35.7373
35.7274
35.7537
35.8118
35.8961
36.0003
36.1173
36.239
36.357
36.4625
36.5469
36.6016
36.6192
36.5938
36.5218
36.4031
36.2427
36.0527
35.8564
35.6945
35.6369
35.8084
36.4481
38.0774
42.1068
54.1311
118.451
520.667
252.283
193.229
171.528
162.424
159.179
159.207
161.29
164.769
169.25
174.48
180.281
186.522
193.105
199.946
206.978
214.141
221.383
228.655
235.914
243.119
250.231
257.216
264.039
270.67
277.08
283.242
289.132
294.728
300.012
304.965
309.574
313.828
317.716
321.233
324.375
327.139
329.527
331.54
333.185
334.467
335.396
335.98
336.231
336.161
335.783
335.112
334.161
332.945
331.48
329.781
327.862
325.737
323.423
320.931
318.277
315.472
312.529
309.456
306.263
302.961
299.558
296.064
292.487
288.834
285.114
281.333
277.496
273.61
269.681
265.714
261.713
257.684
253.63
249.556
245.466
241.364
237.253
233.137
229.019
224.904
220.795
216.693
212.604
208.531
204.475
200.441
196.431
192.448
188.496
184.577
180.693
176.848
173.044
169.283
165.568
161.901
158.285
154.72
151.21
147.755
144.358
141.021
137.743
134.527
131.374
128.285
125.26
122.3
119.406
116.579
113.817
111.123
108.494
105.933
103.437
101.008
98.6436
96.3443
94.1092
91.938
89.8299
87.7839
85.7988
83.8735
82.0066
80.1969
78.4428
76.7428
75.0955
73.4992
71.9522
70.4529
68.9995
67.5902
66.2234
64.8972
63.6099
62.3598
61.145
59.964
58.8151
57.6968
56.6076
55.5463
54.5115
53.5022
52.5176
51.5568
50.6194
49.705
48.8135
47.9452
47.1003
46.2796
45.484
44.7147
43.973
43.2607
42.5796
41.9317
41.3192
40.7443
40.2093
39.7166
39.2678
38.8647
38.5089
38.2013
37.9428
37.7333
37.5723
37.4587
37.3902
37.3641
37.3763
37.4221
37.4958
37.5906
37.6989
37.8126
37.9229
38.0206
38.0967
38.1427
38.1508
38.115
38.0318
37.9011
37.7283
37.5261
37.319
37.1492
37.0896
37.2698
37.9386
39.638
43.8328
56.3263
123.006
520.669
252.274
193.222
171.521
162.417
159.173
159.201
161.283
164.762
169.244
174.473
180.274
186.515
193.098
199.939
206.971
214.134
221.376
228.648
235.907
243.112
250.224
257.209
264.032
270.663
277.073
283.235
289.125
294.721
300.005
304.958
309.567
313.821
317.709
321.227
324.368
327.132
329.52
331.534
333.179
334.461
335.389
335.973
336.224
336.154
335.777
335.106
334.155
332.94
331.475
329.775
327.856
325.732
323.417
320.926
318.271
315.467
312.524
309.451
306.258
302.955
299.553
296.059
292.482
288.829
285.109
281.327
277.491
273.605
269.676
265.709
261.709
257.679
253.625
249.551
245.461
241.359
237.248
233.132
229.015
224.9
220.79
216.689
212.6
208.526
204.471
200.437
196.427
192.444
188.492
184.573
180.689
176.844
173.04
169.279
165.565
161.898
158.281
154.717
151.207
147.752
144.355
141.017
137.74
134.524
131.371
128.282
125.257
122.298
119.404
116.576
113.815
111.12
108.492
105.93
103.435
101.006
98.6415
96.3422
94.1071
91.936
89.8279
87.782
85.7969
83.8717
82.0049
80.1951
78.4411
76.7412
75.0939
73.4976
71.9507
70.4514
68.998
67.5889
66.2221
64.8959
63.6087
62.3585
61.1438
59.9628
58.814
57.6957
56.6066
55.5453
54.5105
53.5013
52.5167
51.5559
50.6185
49.7041
48.8127
47.9444
47.0996
46.2789
45.4833
44.714
43.9724
43.2601
42.579
41.9311
41.3186
40.7438
40.2088
39.7161
39.2673
38.8643
38.5085
38.201
37.9424
37.733
37.5721
37.4585
37.3901
37.3639
37.3762
37.4221
37.4957
37.5905
37.6989
37.8126
37.9229
38.0206
38.0968
38.1427
38.1508
38.115
38.0317
37.901
37.7282
37.526
37.3188
37.1489
37.0892
37.2694
37.9381
39.6375
43.8324
56.3263
123.007
564.875
275.53
211.229
187.509
177.531
173.953
173.95
176.189
179.951
184.804
190.469
196.753
203.511
210.636
218.036
225.638
233.377
241.194
249.038
256.861
264.619
272.271
279.777
287.103
294.215
301.081
307.674
313.969
319.941
325.571
330.841
335.736
340.245
344.358
348.068
351.372
354.269
356.76
358.848
360.54
361.842
362.764
363.317
363.514
363.367
362.892
362.104
361.018
359.65
358.017
356.135
354.02
351.688
349.154
346.433
343.541
340.49
337.292
333.957
330.495
326.919
323.237
319.46
315.595
311.652
307.638
303.56
299.425
295.238
291.007
286.735
282.429
278.093
273.731
269.349
264.95
260.537
256.116
251.69
247.262
242.836
238.416
234.004
229.606
225.222
220.858
216.516
212.2
207.912
203.656
199.434
195.25
191.107
187.006
182.951
178.945
174.989
171.087
167.239
163.449
159.718
156.049
152.441
148.898
145.421
142.01
138.668
135.393
132.189
129.054
125.99
122.997
120.075
117.224
114.444
111.735
109.097
106.528
104.028
101.597
99.2346
96.9393
94.7104
92.5468
90.4471
88.4099
86.4339
84.5175
82.659
80.857
79.1096
77.415
75.7716
74.1775
72.6309
71.1298
69.6725
68.257
66.8816
65.5444
64.2437
62.9779
61.7453
60.5444
59.3739
58.2325
57.1191
56.0327
54.9728
53.9386
52.93
51.947
50.9896
50.0583
49.154
48.2775
47.4302
46.6135
45.8292
45.0792
44.3656
43.6908
43.0569
42.4664
41.9215
41.424
40.9756
40.5777
40.2315
39.9373
39.6953
39.5047
39.3641
39.2712
39.2227
39.2145
39.2416
39.2977
39.3759
39.4684
39.5664
39.661
39.7427
39.8022
39.8308
39.8206
39.7656
39.6623
39.511
39.3174
39.0951
38.8697
38.6853
38.6181
38.8032
39.4994
41.2707
45.64
58.6308
127.802
564.877
275.52
211.221
187.502
177.524
173.946
173.943
176.182
179.944
184.797
190.462
196.745
203.504
210.628
218.029
225.631
233.369
241.186
249.031
256.854
264.612
272.263
279.77
287.096
294.207
301.074
307.667
313.961
319.934
325.563
330.834
335.729
340.238
344.351
348.061
351.365
354.262
356.753
358.842
360.533
361.835
362.757
363.31
363.507
363.361
362.886
362.098
361.012
359.644
358.011
356.129
354.014
351.682
349.148
346.427
343.535
340.484
337.286
333.951
330.49
326.913
323.232
319.454
315.59
311.647
307.633
303.555
299.42
295.233
291.002
286.73
282.424
278.088
273.726
269.344
264.945
260.532
256.111
251.685
247.257
242.831
238.411
234
229.601
225.218
220.854
216.512
212.196
207.908
203.652
199.43
195.246
191.103
187.002
182.948
178.941
174.986
171.083
167.236
163.446
159.715
156.045
152.438
148.895
145.418
142.007
138.665
135.39
132.186
129.051
125.988
122.995
120.073
117.222
114.442
111.733
109.094
106.526
104.026
101.595
99.2324
96.9372
94.7084
92.5448
90.4451
88.408
86.4321
84.5157
82.6573
80.8553
79.1079
77.4134
75.7701
74.176
72.6294
71.1284
69.6711
68.2556
66.8802
65.5431
64.2425
62.9767
61.7441
60.5433
59.3728
58.2314
57.118
56.0317
54.9718
53.9377
52.9291
51.9461
50.9887
50.0575
49.1532
48.2767
47.4294
46.6128
45.8285
45.0785
44.365
43.6902
43.0563
42.4658
41.921
41.4235
40.9751
40.5773
40.2311
39.937
39.695
39.5044
39.3639
39.271
39.2225
39.2144
39.2415
39.2977
39.3759
39.4684
39.5664
39.661
39.7427
39.8023
39.8308
39.8207
39.7656
39.6623
39.511
39.3173
39.095
38.8694
38.685
38.6178
38.8028
39.4989
41.2702
45.6396
58.6309
127.803
612.212
300.675
230.737
204.838
193.913
189.972
189.932
192.336
196.398
201.645
207.772
214.567
221.874
229.571
237.563
245.766
254.111
262.534
270.979
279.394
287.731
295.946
303.997
311.846
319.457
326.797
333.837
340.548
346.908
352.894
358.488
363.675
368.443
372.782
376.687
380.154
383.181
385.772
387.93
389.662
390.977
391.886
392.4
392.533
392.301
391.719
390.803
389.57
388.039
386.226
384.149
381.826
379.273
376.508
373.545
370.402
367.092
363.626
360.016
356.273
352.409
348.436
344.362
340.197
335.951
331.63
327.242
322.795
318.294
313.747
309.157
304.532
299.875
295.192
290.486
285.763
281.026
276.28
271.528
266.774
262.021
257.275
252.537
247.812
243.103
238.413
233.747
229.107
224.497
219.919
215.378
210.876
206.416
202.001
197.635
193.319
189.057
184.851
180.703
176.616
172.591
168.631
164.738
160.913
157.157
153.473
149.86
146.321
142.856
139.465
136.15
132.911
129.747
126.659
123.647
120.711
117.85
115.064
112.351
109.712
107.146
104.652
102.229
99.8763
97.5916
95.3739
93.2216
91.1331
89.1067
87.1407
85.2332
83.3825
81.5865
79.8435
78.1514
76.5083
74.9122
73.3611
71.8532
70.3866
68.9595
67.57
66.2165
64.8975
63.6116
62.3573
61.1337
59.9398
58.7748
57.6383
56.5299
55.4496
54.3977
53.3747
52.3813
51.4186
50.4881
49.5911
48.7296
47.9056
47.1212
46.3789
45.6808
45.0295
44.4273
43.8758
43.3767
42.9313
42.5408
42.2054
41.925
41.6988
41.525
41.4012
41.3238
41.2885
41.2897
41.321
41.375
41.4436
41.5178
41.5882
41.6452
41.6792
41.6813
41.6436
41.5602
41.4276
41.2466
41.0234
40.7727
40.5212
40.3156
40.2353
40.4214
41.1437
42.9898
47.5444
61.0651
132.878
612.214
300.663
230.728
204.83
193.906
189.965
189.924
192.328
196.39
201.637
207.764
214.559
221.866
229.564
237.555
245.758
254.103
262.526
270.971
279.386
287.723
295.938
303.989
311.838
319.449
326.789
333.829
340.541
346.9
352.886
358.48
363.667
368.435
372.775
376.68
380.146
383.174
385.765
387.923
389.655
390.971
391.879
392.393
392.527
392.294
391.712
390.796
389.564
388.032
386.22
384.143
381.82
379.267
376.502
373.539
370.396
367.086
363.62
360.01
356.267
352.404
348.43
344.356
340.192
335.945
331.624
327.237
322.789
318.289
313.741
309.152
304.526
299.87
295.186
290.481
285.758
281.021
276.275
271.522
266.769
262.016
257.27
252.532
247.807
243.098
238.409
233.742
229.102
224.492
219.915
215.373
210.871
206.412
201.997
197.631
193.315
189.053
184.847
180.699
176.612
172.588
168.628
164.734
160.909
157.154
153.469
149.857
146.318
142.853
139.462
136.147
132.908
129.744
126.657
123.645
120.708
117.847
115.061
112.349
109.71
107.144
104.65
102.227
99.8741
97.5895
95.3718
93.2196
91.1311
89.1048
87.1388
85.2314
83.3807
81.5849
79.8419
78.1498
76.5067
74.9107
73.3597
71.8518
70.3853
68.9581
67.5687
66.2153
64.8963
63.6104
62.3562
61.1326
59.9387
58.7738
57.6373
56.5289
55.4487
54.3968
53.3738
52.3804
51.4178
50.4873
49.5903
48.7289
47.9049
47.1206
46.3782
45.6802
45.029
44.4268
43.8753
43.3762
42.9309
42.5403
42.205
41.9247
41.6985
41.5248
41.401
41.3237
41.2883
41.2895
41.3209
41.375
41.4436
41.5178
41.5882
41.6452
41.6792
41.6813
41.6437
41.5602
41.4276
41.2465
41.0233
40.7725
40.521
40.3153
40.2349
40.4209
41.1432
42.9893
47.544
61.0653
132.879
662.851
327.85
251.863
223.616
211.668
207.331
207.245
209.822
214.2
219.864
226.481
233.817
241.703
250.006
258.62
267.457
276.438
285.497
294.571
303.604
312.546
321.348
329.965
338.357
346.485
354.315
361.814
368.955
375.711
382.061
387.985
393.469
398.498
403.065
407.163
410.79
413.945
416.631
418.853
420.62
421.94
422.826
423.292
423.352
423.024
422.323
421.268
419.877
418.17
416.166
413.882
411.339
408.553
405.544
402.328
398.921
395.34
391.593
387.695
383.659
379.497
375.219
370.837
366.36
361.797
357.157
352.447
347.676
342.848
337.972
333.052
328.094
323.103
318.084
313.042
307.981
302.905
297.819
292.726
287.631
282.537
277.448
272.368
267.3
262.249
257.217
252.209
247.228
242.277
237.361
232.481
227.643
222.849
218.102
213.405
208.762
204.175
199.646
195.18
190.777
186.44
182.173
177.975
173.85
169.799
165.823
161.924
158.103
154.36
150.698
147.115
143.613
140.193
136.853
133.594
130.416
127.319
124.301
121.363
118.503
115.721
113.016
110.387
107.833
105.352
102.943
100.603
98.3325
96.1281
93.9883
91.9113
89.8951
87.9376
86.0369
84.1908
82.3974
80.6544
78.96
77.312
75.7085
74.1475
72.6273
71.146
69.7021
68.294
66.9204
65.5802
64.2724
62.9963
61.7512
60.537
59.3536
58.2013
57.0807
55.9926
54.9381
53.9186
52.9358
51.9915
51.0879
50.2271
49.4117
48.6439
47.9262
47.261
46.6497
46.094
45.5953
45.1544
44.7716
44.4466
44.1782
43.9647
43.8031
43.6898
43.6199
43.5876
43.5862
43.6079
43.6442
43.6859
43.7231
43.7462
43.7452
43.7113
43.6364
43.5147
43.3432
43.123
42.8611
42.5732
42.2879
42.054
41.955
42.1384
42.8861
44.8109
49.5639
63.6529
138.283
662.853
327.838
251.853
223.607
211.66
207.323
207.237
209.814
214.192
219.856
226.473
233.809
241.694
249.998
258.612
267.448
276.43
285.488
294.562
303.596
312.538
321.339
329.957
338.349
346.477
354.307
361.806
368.947
375.703
382.053
387.978
393.461
398.491
403.058
407.156
410.783
413.938
416.624
418.846
420.613
421.933
422.819
423.285
423.346
423.017
422.316
421.261
419.871
418.164
416.159
413.876
411.332
408.547
405.538
402.322
398.915
395.334
391.587
387.689
383.653
379.491
375.213
370.831
366.354
361.791
357.151
352.442
347.67
342.843
337.966
333.046
328.088
323.097
318.079
313.037
307.976
302.9
297.814
292.721
287.626
282.532
277.443
272.363
267.295
262.244
257.212
252.204
247.223
242.272
237.356
232.477
227.638
222.844
218.097
213.401
208.757
204.17
199.642
195.176
190.773
186.437
182.169
177.971
173.846
169.795
165.819
161.92
158.099
154.357
150.694
147.112
143.61
140.19
136.85
133.591
130.414
127.316
124.299
121.36
118.501
115.718
113.014
110.385
107.831
105.35
102.941
100.601
98.3305
96.1261
93.9864
91.9094
89.8933
87.9358
86.0352
84.1891
82.3957
80.6528
78.9584
77.3105
75.707
74.1461
72.6259
71.1446
69.7008
68.2927
66.9192
65.5791
64.2713
62.9951
61.7501
60.5359
59.3526
58.2003
57.0798
55.9917
54.9372
53.9178
52.935
51.9907
51.0871
50.2264
49.411
48.6433
47.9256
47.2604
46.6491
46.0935
45.5948
45.1539
44.7712
44.4462
44.1779
43.9644
43.8029
43.6896
43.6197
43.5875
43.5861
43.6079
43.6442
43.6859
43.7232
43.7462
43.7453
43.7113
43.6364
43.5147
43.3432
43.1229
42.861
42.573
42.2876
42.0537
41.9546
42.138
42.8856
44.8105
49.5636
63.6531
138.284
716.971
357.196
274.726
243.949
230.895
226.128
225.989
228.744
233.456
239.561
246.694
254.602
263.098
272.038
281.307
290.808
300.457
310.181
319.912
329.59
339.161
348.572
357.776
366.729
375.39
383.724
391.695
399.275
406.436
413.156
419.415
425.196
430.488
435.282
439.571
443.354
446.631
449.406
451.685
453.478
454.795
455.649
456.056
456.033
455.596
454.765
453.559
451.999
450.104
447.896
445.394
442.618
439.588
436.323
432.841
429.161
425.295
421.256
417.06
412.718
408.245
403.652
398.951
394.15
389.26
384.29
379.247
374.14
368.974
363.757
358.495
353.193
347.855
342.489
337.097
331.685
326.256
320.816
315.369
309.917
304.466
299.019
293.58
288.154
282.743
277.352
271.984
266.644
261.335
256.061
250.826
245.633
240.485
235.386
230.34
225.35
220.418
215.549
210.744
206.006
201.339
196.743
192.223
187.779
183.413
179.128
174.924
170.803
166.766
162.813
158.947
155.166
151.472
147.864
144.343
140.908
137.559
134.296
131.117
128.022
125.011
122.082
119.234
116.466
113.777
111.165
108.627
106.162
103.769
101.445
99.1884
96.9968
94.8682
92.8005
90.7914
88.8387
86.9404
85.0942
83.2979
81.5495
79.847
78.1884
76.5719
74.9958
73.4585
71.9587
70.4951
69.0667
67.6728
66.3127
64.9863
63.6935
62.4346
61.2103
60.0213
58.8689
57.7544
56.6797
55.6467
54.6575
53.7144
52.8199
51.9764
51.1863
50.4519
49.7746
49.1561
48.5975
48.0998
47.6629
47.2864
46.9689
46.7084
46.5017
46.3448
46.2324
46.1586
46.116
46.0967
46.0918
46.0916
46.0862
46.0655
46.0197
45.9395
45.8172
45.6471
45.4265
45.1572
44.8471
44.513
44.1856
43.9163
43.793
43.9703
44.743
46.7518
51.7196
66.4253
144.093
716.972
357.183
274.715
243.94
230.887
226.12
225.98
228.736
233.448
239.553
246.686
254.593
263.089
272.03
281.299
290.8
300.449
310.172
319.903
329.582
339.152
348.563
357.767
366.72
375.382
383.715
391.687
399.267
406.428
413.148
419.407
425.188
430.48
435.274
439.564
443.347
446.624
449.399
451.678
453.471
454.787
455.642
456.049
456.026
455.589
454.758
453.553
451.992
450.098
447.889
445.387
442.611
439.581
436.316
432.835
429.155
425.289
421.25
417.053
412.712
408.239
403.646
398.944
394.144
389.254
384.284
379.241
374.134
368.968
363.751
358.489
353.187
347.85
342.483
337.091
331.679
326.251
320.811
315.363
309.911
304.46
299.013
293.575
288.148
282.737
277.346
271.979
266.639
261.33
256.056
250.821
245.628
240.48
235.382
230.336
225.345
220.414
215.544
210.739
206.002
201.335
196.739
192.219
187.775
183.409
179.124
174.92
170.799
166.762
162.81
158.943
155.163
151.468
147.861
144.34
140.905
137.556
134.293
131.114
128.02
125.008
122.079
119.232
116.464
113.775
111.162
108.625
106.16
103.767
101.443
99.1864
96.9949
94.8663
92.7986
90.7896
88.837
86.9387
85.0925
83.2963
81.5479
79.8455
78.1869
76.5705
74.9944
73.4572
71.9574
70.4938
69.0655
67.6716
66.3115
64.9852
63.6924
62.4336
61.2092
60.0203
58.8679
57.7535
56.6788
55.6458
54.6567
53.7136
52.8191
51.9756
51.1856
50.4512
49.774
49.1555
48.597
48.0993
47.6624
47.2859
46.9686
46.7081
46.5014
46.3445
46.2322
46.1584
46.1159
46.0967
46.0917
46.0916
46.0862
46.0655
46.0197
45.9395
45.8172
45.6471
45.4265
45.1571
44.8469
44.5128
44.1853
43.916
43.7926
43.9698
44.7425
46.7513
51.7193
66.4256
144.095
774.755
388.86
299.449
265.951
251.704
246.469
246.266
249.207
254.269
260.838
268.516
277.025
286.163
295.773
305.729
315.926
326.272
336.689
347.104
357.453
367.675
377.717
387.526
397.057
406.267
415.116
423.57
431.597
439.169
446.262
452.857
458.937
464.49
469.508
473.984
477.917
481.31
484.166
486.493
488.302
489.605
490.417
490.754
490.635
490.078
489.105
487.737
485.994
483.9
481.475
478.742
475.722
472.436
468.905
465.147
461.181
457.02
452.678
448.173
443.516
438.723
433.805
428.774
423.64
418.413
413.103
407.718
402.264
396.751
391.183
385.567
379.91
374.215
368.489
362.736
356.96
351.166
345.359
339.542
333.72
327.897
322.077
316.264
310.462
304.675
298.908
293.164
287.447
281.761
276.111
270.5
264.932
259.411
253.941
248.525
243.168
237.872
232.64
227.477
222.384
217.365
212.422
207.558
202.775
198.075
193.46
188.932
184.492
180.141
175.881
171.712
167.634
163.649
159.756
155.955
152.247
148.631
145.106
141.671
138.327
135.072
131.905
128.825
125.83
122.92
120.091
117.343
114.673
112.079
109.56
107.113
104.735
102.425
100.18
97.9986
95.8773
93.8144
91.8074
89.8542
87.9524
86.1001
84.2951
82.5355
80.8195
79.1455
77.512
75.9178
74.3617
72.8429
71.361
69.9155
68.5066
67.1345
65.7998
64.5035
63.2466
62.0308
60.8578
59.7296
58.6484
57.6166
56.6366
55.7109
54.8421
54.0318
53.2818
52.5936
51.9684
51.4067
50.9086
50.4732
50.0992
49.784
49.5242
49.3154
49.1522
49.028
48.9354
48.8658
48.81
48.7582
48.7001
48.6253
48.524
48.387
48.2065
47.9773
47.697
47.3682
46.9999
46.6104
46.2323
45.9202
45.7668
45.9344
46.7321
48.8304
54.0308
69.4052
150.339
774.756
388.846
299.438
265.941
251.695
246.46
246.257
249.198
254.26
260.829
268.507
277.016
286.154
295.764
305.72
315.917
326.263
336.68
347.095
357.444
367.667
377.708
387.517
397.048
406.258
415.107
423.561
431.588
439.16
446.254
452.849
458.929
464.482
469.5
473.976
477.91
481.302
484.158
486.486
488.295
489.598
490.409
490.747
490.627
490.071
489.098
487.73
485.987
483.893
481.468
478.736
475.716
472.43
468.898
465.14
461.174
457.013
452.672
448.166
443.51
438.717
433.798
428.767
423.633
418.407
413.097
407.711
402.258
396.744
391.177
385.561
379.904
374.209
368.483
362.73
356.954
351.16
345.353
339.536
333.714
327.891
322.071
316.258
310.456
304.67
298.902
293.158
287.441
281.756
276.105
270.494
264.927
259.406
253.936
248.52
243.163
237.867
232.635
227.472
222.379
217.36
212.418
207.554
202.771
198.071
193.457
188.928
184.488
180.138
175.877
171.708
167.631
163.645
159.753
155.952
152.244
148.628
145.103
141.669
138.324
135.069
131.902
128.822
125.828
122.917
120.089
117.341
114.671
112.077
109.558
107.111
104.733
102.423
100.178
97.9966
95.8754
93.8126
91.8056
89.8524
87.9508
86.0985
84.2935
82.534
80.818
79.1441
77.5106
75.9164
74.3603
72.8416
71.3597
69.9143
68.5054
67.1334
65.7987
64.5024
63.2456
62.0298
60.8569
59.7287
58.6475
57.6157
56.6358
55.7101
54.8413
54.0311
53.2811
52.593
51.9678
51.4062
50.9081
50.4728
50.0988
49.7836
49.5239
49.3151
49.152
49.0278
48.9352
48.8657
48.8099
48.7581
48.7
48.6253
48.524
48.3869
48.2065
47.9772
47.697
47.3681
46.9997
46.6102
46.232
45.9199
45.7664
45.9339
46.7316
48.83
54.0306
69.4056
150.341
836.393
422.999
326.165
289.741
274.207
268.464
268.186
271.319
276.749
283.806
292.055
301.197
311.008
321.32
331.995
342.918
353.992
365.13
376.255
387.297
398.193
408.884
419.316
429.44
439.209
448.585
457.529
466.008
473.994
481.463
488.394
494.771
500.582
505.817
510.474
514.55
518.049
520.977
523.342
525.156
526.433
527.19
527.445
527.217
526.529
525.401
523.857
521.92
519.613
516.961
513.986
510.711
507.158
503.349
499.304
495.043
490.577
485.924
481.1
476.12
470.998
465.746
460.378
454.903
449.332
443.674
437.937
432.13
426.26
420.333
414.355
408.333
402.271
396.175
390.05
383.899
377.728
371.542
365.343
359.137
352.928
346.72
340.517
334.324
328.144
321.983
315.844
309.732
303.65
297.604
291.598
285.636
279.721
273.859
268.053
262.307
256.625
251.01
245.466
239.997
234.604
229.293
224.064
218.921
213.866
208.901
204.027
199.248
194.563
189.975
185.483
181.09
176.795
172.598
168.5
164.501
160.6
156.796
153.09
149.48
145.965
142.545
139.218
135.982
132.837
129.779
126.807
123.919
121.113
118.386
115.736
113.161
110.659
108.227
105.862
103.562
101.324
99.1471
97.0276
94.9635
92.9525
90.9925
89.0814
87.2173
85.3985
83.6235
81.8908
80.1994
78.5484
76.9373
75.3656
73.8334
72.341
70.8889
69.4783
68.1101
66.7861
65.508
64.2778
63.0978
61.9703
60.8979
59.8832
58.9285
58.0353
57.2055
56.4404
55.7411
55.1079
54.5408
54.0388
53.6
53.2218
52.9004
52.631
52.4079
52.2241
52.0717
51.9419
51.8252
51.7112
51.5896
51.4499
51.282
51.0769
50.8271
50.5274
50.1764
49.7773
49.3404
48.8856
48.4479
48.0855
47.8959
48.0501
48.8728
51.0671
56.5191
72.6169
157.065
836.394
422.984
326.154
289.731
274.198
268.455
268.177
271.31
276.74
283.796
292.046
301.187
310.999
321.311
331.985
342.908
353.982
365.12
376.245
387.288
398.184
408.875
419.307
429.43
439.2
448.576
457.52
465.999
473.986
481.455
488.386
494.763
500.574
505.809
510.466
514.542
518.042
520.969
523.334
525.148
526.426
527.183
527.438
527.21
526.521
525.394
523.85
521.913
519.606
516.954
513.979
510.704
507.151
503.342
499.298
495.036
490.57
485.917
481.093
476.113
470.991
465.74
460.371
454.896
449.325
443.667
437.931
432.124
426.253
420.326
414.349
408.327
402.265
396.169
390.043
383.893
377.722
371.535
365.337
359.131
352.922
346.714
340.511
334.318
328.138
321.977
315.838
309.726
303.645
297.599
291.593
285.63
279.716
273.854
268.048
262.302
256.62
251.005
245.461
239.992
234.6
229.288
224.059
218.916
213.861
208.896
204.023
199.244
194.559
189.971
185.48
181.086
176.791
172.594
168.497
164.497
160.596
156.793
153.087
149.477
145.962
142.542
139.215
135.98
132.834
129.776
126.804
123.917
121.11
118.384
115.734
113.159
110.657
108.224
105.86
103.56
101.322
99.1452
97.0258
94.9617
92.9508
90.9908
89.0798
87.2157
85.397
83.622
81.8894
80.198
78.547
76.9359
75.3643
73.8321
72.3397
70.8878
69.4771
68.109
66.785
65.5069
64.2768
63.0968
61.9694
60.8971
59.8823
58.9277
58.0346
57.2048
56.4397
55.7404
55.1073
54.5403
54.0383
53.5995
53.2214
52.9
52.6307
52.4076
52.2239
52.0715
51.9418
51.825
51.7111
51.5896
51.4499
51.282
51.0769
50.827
50.5274
50.1763
49.7772
49.3402
48.8854
48.4476
48.0851
47.8955
48.0497
48.8724
51.0667
56.5188
72.6174
157.066
902.079
459.773
355.011
315.448
298.527
292.231
291.866
295.196
301.01
308.578
317.429
327.232
337.75
348.795
360.219
371.898
383.727
395.613
407.473
419.231
430.82
442.178
453.248
463.976
474.316
484.225
493.664
502.599
511
518.844
526.108
532.777
538.838
544.285
549.113
553.322
556.917
559.904
562.294
564.1
565.339
566.027
566.186
565.837
565.003
563.707
561.975
559.831
557.3
554.408
551.18
547.639
543.81
539.715
535.376
530.808
526.03
521.057
515.908
510.598
505.14
499.55
493.838
488.016
482.094
476.082
469.989
463.822
457.589
451.296
444.95
438.555
432.118
425.644
419.137
412.602
406.044
399.466
392.874
386.271
379.662
373.052
366.444
359.844
353.255
346.683
340.131
333.605
327.109
320.647
314.226
307.848
301.519
295.242
289.024
282.867
276.776
270.755
264.809
258.939
253.151
247.447
241.831
236.305
230.872
225.534
220.294
215.153
210.113
205.175
200.341
195.61
190.985
186.465
182.05
177.741
173.537
169.437
165.441
161.548
157.757
154.068
150.478
146.986
143.59
140.289
137.079
133.959
130.927
127.98
125.115
122.331
119.625
116.993
114.434
111.944
109.522
107.165
104.869
102.633
100.454
98.3294
96.2578
94.2369
92.2648
90.3398
88.4605
86.6257
84.8345
83.0863
81.3807
79.7176
78.0973
76.5206
74.9882
73.5014
72.0618
70.6713
69.3318
68.0457
66.8154
65.6433
64.5321
63.4841
62.5005
61.5832
60.7333
59.9519
59.2393
58.5949
58.0177
57.5055
57.0554
56.6632
56.3239
56.0312
55.7778
55.5554
55.3549
55.1663
54.9792
54.7828
54.5666
54.3204
54.0354
53.7042
53.3224
52.8889
52.4082
51.8917
51.3614
50.8548
50.4339
50.2019
50.3392
51.1873
53.4845
59.209
76.0909
164.33
902.079
459.757
354.999
315.437
298.517
292.222
291.856
295.187
301
308.569
317.419
327.223
337.74
348.785
360.209
371.889
383.718
395.603
407.463
419.221
430.811
442.169
453.238
463.967
474.307
484.216
493.655
502.59
510.992
518.835
526.099
532.768
538.83
544.276
549.104
553.314
556.909
559.896
562.286
564.093
565.331
566.02
566.179
565.83
564.995
563.7
561.967
559.823
557.293
554.401
551.173
547.632
543.803
539.708
535.369
530.801
526.023
521.051
515.901
510.591
505.134
499.543
493.831
488.009
482.087
476.076
469.982
463.815
457.582
451.289
444.943
438.549
432.112
425.637
419.13
412.595
406.037
399.46
392.867
386.265
379.656
373.046
366.438
359.837
353.249
346.676
340.125
333.599
327.103
320.641
314.22
307.842
301.513
295.237
289.018
282.862
276.771
270.75
264.803
258.934
253.146
247.443
241.826
236.3
230.867
225.53
220.29
215.149
210.109
205.171
200.337
195.607
190.981
186.461
182.047
177.738
173.533
169.433
165.437
161.544
157.754
154.065
150.475
146.983
143.588
140.286
137.076
133.957
130.924
127.977
125.113
122.329
119.622
116.991
114.432
111.942
109.52
107.162
104.867
102.631
100.452
98.3276
96.2561
94.2352
92.2631
90.3381
88.4589
86.6242
84.833
83.0848
81.3792
79.7162
78.096
76.5193
74.9869
73.5002
72.0606
70.6701
69.3307
68.0446
66.8144
65.6423
64.5311
63.4832
62.4997
61.5824
60.7326
59.9512
59.2386
58.5943
58.0171
57.505
57.0549
56.6628
56.3235
56.0309
55.7775
55.5552
55.3547
55.1662
54.9791
54.7828
54.5665
54.3204
54.0353
53.7041
53.3223
52.8888
52.408
51.8915
51.3612
50.8546
50.4336
50.2015
50.3388
51.1868
53.4841
59.2088
76.0915
164.332
972.011
499.353
386.133
343.202
324.789
317.895
317.427
320.96
327.174
335.278
344.757
355.253
366.507
378.316
390.52
402.985
415.597
428.255
440.872
453.366
465.666
477.706
489.425
500.768
511.685
522.132
532.068
541.458
550.273
558.486
566.077
573.03
579.334
584.981
589.968
594.298
597.975
601.008
603.409
605.193
606.378
606.984
607.032
606.547
605.552
604.075
602.142
599.778
597.012
593.87
590.378
586.563
582.448
578.059
573.417
568.538
563.44
558.143
552.664
547.019
541.222
535.288
529.23
523.058
516.782
510.414
503.961
497.43
490.83
484.167
477.447
470.676
463.858
456.999
450.103
443.176
436.221
429.242
422.246
415.235
408.214
401.187
394.161
387.138
380.123
373.122
366.14
359.181
352.251
345.354
338.495
331.68
324.914
318.202
311.547
304.956
298.433
291.982
285.608
279.315
273.106
266.986
260.958
255.025
249.19
243.455
237.824
232.298
226.879
221.569
216.369
211.28
206.303
201.439
196.686
192.046
187.519
183.103
178.798
174.604
170.52
166.544
162.674
158.91
155.248
151.687
148.224
144.858
141.585
138.404
135.311
132.305
129.381
126.538
123.773
121.083
118.464
115.915
113.433
111.014
108.657
106.359
104.117
101.93
99.7953
97.7114
95.6767
93.69
91.7502
89.8566
88.0088
86.2068
84.4507
82.7413
81.0793
79.4661
77.9033
76.3926
74.9361
73.5362
72.1952
70.9157
69.7002
68.5509
67.4688
66.4558
65.5129
64.641
63.8401
63.1096
62.4482
61.8534
61.3218
60.8491
60.4298
60.0571
59.7235
59.4203
59.1378
58.8659
58.5938
58.3106
58.0056
57.6687
57.2912
56.8662
56.3897
55.8615
55.2872
54.6797
54.0631
53.4779
52.99
52.7091
52.8257
53.6997
56.108
62.1284
79.8622
172.205
972.011
499.336
386.121
343.191
324.778
317.885
317.417
320.95
327.164
335.268
344.746
355.243
366.497
378.306
390.51
402.975
415.587
428.245
440.862
453.356
465.657
477.696
489.415
500.758
511.675
522.122
532.058
541.449
550.264
558.477
566.068
573.022
579.325
584.972
589.96
594.29
597.967
601
603.401
605.185
606.37
606.976
607.024
606.539
605.545
604.068
602.134
599.771
597.005
593.863
590.371
586.556
582.441
578.052
573.41
568.531
563.433
558.136
552.657
547.012
541.215
535.282
529.223
523.051
516.775
510.407
503.954
497.423
490.823
484.16
477.44
470.669
463.851
456.992
450.096
443.169
436.214
429.236
422.239
415.228
408.207
401.181
394.154
387.131
380.116
373.116
366.134
359.175
352.244
345.347
338.489
331.674
324.908
318.196
311.541
304.951
298.428
291.977
285.603
279.31
273.101
266.981
260.953
255.02
249.185
243.451
237.819
232.294
226.875
221.565
216.365
211.276
206.299
201.435
196.682
192.043
187.515
183.099
178.795
174.601
170.517
166.541
162.671
158.907
155.245
151.684
148.221
144.855
141.582
138.401
135.309
132.302
129.379
126.536
123.771
121.08
118.462
115.913
113.43
111.012
108.655
106.357
104.115
101.928
99.7935
97.7097
95.675
93.6884
91.7486
89.8551
88.0073
86.2053
84.4493
82.7399
81.078
79.4648
77.902
76.3913
74.9349
73.535
72.1941
70.9147
69.6992
68.5499
67.4679
66.4549
65.5121
64.6402
63.8394
63.109
62.4476
61.8528
61.3213
60.8487
60.4293
60.0568
59.7232
59.42
59.1376
58.8657
58.5937
58.3105
58.0055
57.6686
57.2911
56.8661
56.3896
55.8614
55.287
54.6795
54.0629
53.4776
52.9897
52.7087
52.8253
53.6993
56.1076
62.1283
79.8629
172.206
1046.39
541.913
419.683
373.144
353.127
345.584
344.999
348.738
355.369
364.031
374.166
385.386
397.407
410.011
423.024
436.302
449.721
463.175
476.569
489.817
502.842
515.576
527.953
539.916
551.414
562.4
572.832
582.674
591.896
600.471
608.38
615.606
622.139
627.973
633.105
637.54
641.284
644.346
646.741
648.487
649.602
650.108
650.03
649.394
648.225
646.553
644.405
641.811
638.798
635.395
631.631
627.533
623.126
618.436
613.486
608.29
602.87
597.246
591.435
585.453
579.317
573.039
566.633
560.111
553.482
546.757
539.943
533.049
526.082
519.047
511.952
504.8
497.598
490.35
483.061
475.735
468.376
460.989
453.579
446.149
438.704
431.25
423.789
416.329
408.873
401.427
393.996
386.585
379.2
371.847
364.53
357.256
350.029
342.856
335.742
328.693
321.712
314.806
307.979
301.235
294.58
288.018
281.552
275.185
268.922
262.765
256.718
250.782
244.959
239.252
233.663
228.191
222.839
217.606
212.494
207.502
202.63
197.877
193.244
188.729
184.331
180.05
175.882
171.827
167.881
164.044
160.312
156.684
153.155
149.725
146.39
143.147
139.993
136.926
133.941
131.037
128.211
125.459
122.778
120.166
117.62
115.137
112.716
110.352
108.045
105.793
103.594
101.446
99.3486
97.3009
95.3023
93.3527
91.4524
89.6018
87.802
86.0541
84.3597
82.7207
81.1391
79.6172
78.1574
76.7622
75.4341
74.1749
72.9858
71.8682
70.8235
69.852
68.9537
68.1277
67.3724
66.685
66.0619
65.4982
64.9881
64.5245
64.0994
63.7036
63.3273
62.9598
62.5902
62.2074
61.8006
61.3599
60.8767
60.3446
59.7602
59.1243
58.4436
57.733
57.0187
56.3445
55.7809
55.4443
55.5364
56.4372
58.9656
65.3082
83.9697
180.761
1046.39
541.895
419.669
373.132
353.116
345.573
344.988
348.727
355.358
364.021
374.155
385.375
397.396
410
423.013
436.291
449.711
463.165
476.558
489.806
502.832
515.566
527.943
539.907
551.405
562.39
572.822
582.665
591.887
600.462
608.371
615.597
622.13
627.964
633.097
637.532
641.275
644.338
646.734
648.479
649.594
650.101
650.023
649.386
648.218
646.546
644.398
641.803
638.791
635.388
631.624
627.526
623.119
618.429
613.479
608.283
602.863
597.239
591.427
585.446
579.309
573.032
566.626
560.104
553.475
546.749
539.936
533.042
526.074
519.04
511.944
504.793
497.591
490.343
483.053
475.727
468.369
460.982
453.571
446.141
438.697
431.242
423.782
416.322
408.866
401.42
393.989
386.578
379.193
371.84
364.523
357.249
350.023
342.85
335.736
328.686
321.706
314.8
307.973
301.23
294.575
288.012
281.546
275.18
268.917
262.76
256.713
250.777
244.955
239.248
233.658
228.187
222.835
217.602
212.49
207.498
202.626
197.873
193.24
188.725
184.328
180.046
175.879
171.823
167.878
164.041
160.309
156.681
153.153
149.722
146.387
143.144
139.99
136.923
133.939
131.035
128.209
125.457
122.776
120.164
117.618
115.135
112.714
110.35
108.044
105.791
103.592
101.444
99.3469
97.2992
95.3006
93.3511
91.4508
89.6003
87.8005
86.0527
84.3584
82.7194
81.1378
79.6159
78.1562
76.761
75.433
74.1738
72.9848
71.8673
70.8226
69.8511
68.9529
68.127
67.3717
66.6844
66.0613
65.4977
64.9876
64.5241
64.099
63.7033
63.327
62.9596
62.59
62.2072
61.8005
61.3598
60.8766
60.3445
59.7601
59.1241
58.4434
57.7327
57.0185
56.3442
55.7805
55.4439
55.536
56.4368
58.9653
65.3081
83.9705
180.762
1125.42
587.636
455.817
405.42
383.68
375.436
374.715
378.663
385.727
394.971
405.79
417.762
430.579
444.007
457.857
471.973
486.224
500.494
514.682
528.698
542.461
555.896
568.937
581.524
593.602
605.124
616.046
626.332
635.951
644.877
653.089
660.574
667.32
673.324
678.584
683.105
686.897
689.97
692.341
694.029
695.056
695.446
695.225
694.421
693.064
691.182
688.808
685.97
682.701
679.029
674.985
670.598
665.894
660.902
655.638
650.124
644.381
638.429
632.287
625.971
619.497
612.879
606.13
599.261
592.282
585.204
578.033
570.778
563.446
556.042
548.573
541.042
533.455
525.817
518.132
510.403
502.636
494.834
487.002
479.145
471.266
463.372
455.466
447.553
439.64
431.732
423.834
415.952
408.092
400.261
392.463
384.706
376.996
369.338
361.738
354.203
346.739
339.35
332.043
324.822
317.693
310.66
303.727
296.9
290.181
283.575
277.083
270.71
264.457
258.327
252.321
246.441
240.689
235.064
229.567
224.199
218.959
213.847
208.864
204.007
199.275
194.668
190.182
185.817
181.57
177.438
173.419
169.512
165.711
162.016
158.423
154.928
151.529
148.223
145.007
141.876
138.828
135.861
132.97
130.152
127.406
124.728
122.115
119.565
117.075
114.645
112.271
109.952
107.688
105.476
103.318
101.211
99.1578
97.1573
95.2108
93.3195
91.485
89.7089
87.9935
86.3409
84.7536
83.234
81.7846
80.4065
79.1011
77.8699
76.7138
75.6331
74.6276
73.6961
72.8366
72.0461
71.3206
70.6549
70.0426
69.4763
68.9476
68.4469
67.964
67.4879
67.0075
66.5115
65.9892
65.4307
64.8277
64.1744
63.468
62.7106
61.9101
61.0834
60.2594
59.4853
58.8365
58.4371
58.5008
59.4296
62.0884
68.7825
88.4561
190.079
1125.42
587.617
455.803
405.408
383.668
375.424
374.703
378.652
385.716
394.96
405.779
417.75
430.568
443.996
457.846
471.963
486.213
500.483
514.672
528.688
542.45
555.886
568.927
581.514
593.592
605.114
616.036
626.322
635.941
644.867
653.08
660.565
667.311
673.315
678.575
683.097
686.888
689.962
692.333
694.021
695.048
695.438
695.217
694.414
693.056
691.175
688.8
685.963
682.694
679.022
674.978
670.591
665.887
660.895
655.631
650.117
644.374
638.422
632.28
625.964
619.49
612.872
606.122
599.253
592.275
585.196
578.026
570.771
563.439
556.035
548.565
541.034
533.448
525.809
518.124
510.395
502.628
494.826
486.995
479.137
471.259
463.364
455.458
447.546
439.633
431.725
423.827
415.945
408.085
400.254
392.456
384.7
376.989
369.331
361.732
354.197
346.732
339.344
332.037
324.816
317.687
310.654
303.722
296.894
290.176
283.569
277.078
270.705
264.452
258.322
252.316
246.437
240.684
235.059
229.563
224.195
218.955
213.843
208.86
204.003
199.271
194.664
190.179
185.813
181.566
177.435
173.416
169.508
165.708
162.013
158.42
154.925
151.527
148.221
145.004
141.873
138.826
135.858
132.967
130.15
127.404
124.726
122.113
119.563
117.073
114.643
112.269
109.95
107.686
105.474
103.316
101.21
99.1561
97.1557
95.2093
93.318
91.4835
89.7075
87.9921
86.3395
84.7523
83.2327
81.7834
80.4053
79.1
77.8688
76.7128
75.6321
74.6267
73.6952
72.8358
72.0454
71.32
70.6543
70.042
69.4759
68.9472
68.4466
67.9637
67.4877
67.0073
66.5113
65.989
65.4305
64.8276
64.1742
63.4679
62.7104
61.9099
61.0832
60.2592
59.4849
58.8361
58.4367
58.5004
59.4292
62.0881
68.7825
88.457
190.08
1209.3
636.708
494.701
440.181
416.594
407.591
406.715
410.876
418.387
428.236
439.765
452.517
466.161
480.44
495.153
510.131
525.233
540.336
555.333
570.128
584.635
598.777
612.483
625.69
638.344
650.394
661.796
672.514
682.515
691.776
700.275
707.998
714.938
721.091
726.457
731.043
734.861
737.923
740.249
741.859
742.778
743.033
742.652
741.664
740.103
737.999
735.385
732.294
728.759
724.811
720.482
715.802
710.799
705.501
699.925
694.095
688.032
681.757
675.289
668.645
661.84
654.888
647.803
640.595
633.275
625.851
618.332
610.724
603.034
595.267
587.428
579.522
571.554
563.527
555.446
547.314
539.136
530.916
522.657
514.365
506.044
497.699
489.335
480.957
472.572
464.185
455.802
447.429
439.074
430.742
422.441
414.177
405.957
397.787
389.675
381.628
373.651
365.751
357.934
350.206
342.573
335.04
327.611
320.293
313.088
306.002
299.037
292.197
285.485
278.903
272.454
266.138
259.958
253.914
248.006
242.236
236.605
231.11
225.752
220.53
215.442
210.487
205.662
200.966
196.397
191.952
187.628
183.422
179.332
175.355
171.487
167.725
164.065
160.505
157.041
153.67
150.387
147.191
144.076
141.041
138.082
135.197
132.381
129.633
126.95
124.33
121.771
119.271
116.829
114.445
112.116
109.844
107.628
105.468
103.365
101.321
99.3374
97.4152
95.5568
93.7645
92.0404
90.3872
88.8071
87.3006
85.8694
84.5147
83.2372
82.0372
80.9141
79.8664
78.8918
77.9871
77.1477
76.3681
75.6415
74.96
74.3149
73.6961
73.0931
72.4946
71.8891
71.2655
70.6129
69.9217
69.1839
68.3943
67.5511
66.6574
65.7229
64.7664
63.8197
62.9339
62.1899
61.72
61.7513
62.7098
65.5106
72.5888
93.3682
200.245
1209.3
636.687
494.686
440.168
416.581
407.579
406.703
410.864
418.375
428.225
439.753
452.506
466.149
480.429
495.141
510.119
525.221
540.325
555.322
570.118
584.625
598.766
612.472
625.68
638.334
650.384
661.786
672.504
682.506
691.766
700.266
707.989
714.929
721.082
726.448
731.035
734.853
737.915
740.241
741.851
742.771
743.025
742.644
741.657
740.095
737.991
735.378
732.287
728.752
724.804
720.475
715.794
710.791
705.494
699.918
694.087
688.024
681.75
675.281
668.637
661.832
654.881
647.795
640.588
633.267
625.844
618.324
610.716
603.026
595.259
587.42
579.514
571.546
563.519
555.438
547.306
539.128
530.908
522.649
514.357
506.036
497.691
489.327
480.949
472.564
464.177
455.794
447.422
439.066
430.735
422.433
414.169
405.949
397.78
389.668
381.621
373.644
365.744
357.927
350.2
342.566
335.033
327.605
320.287
313.083
305.996
299.032
292.192
285.48
278.898
272.449
266.133
259.953
253.909
248.002
242.232
236.6
231.106
225.748
220.526
215.438
210.483
205.658
200.963
196.394
191.948
187.624
183.419
179.329
175.352
171.483
167.722
164.062
160.502
157.038
153.667
150.385
147.188
144.074
141.039
138.08
135.194
132.379
129.631
126.948
124.328
121.769
119.269
116.827
114.443
112.114
109.842
107.626
105.466
103.364
101.32
99.3358
97.4137
95.5553
93.763
92.039
90.3858
88.8058
87.2993
85.8682
84.5135
83.2362
82.0362
80.9131
79.8655
78.891
77.9863
77.147
76.3674
75.6409
74.9595
74.3144
73.6957
73.0927
72.4943
71.8888
71.2652
70.6127
69.9215
69.1838
68.3942
67.551
66.6572
65.7226
64.7661
63.8194
62.9335
62.1895
61.7196
61.7509
62.7094
65.5102
72.5888
93.3692
200.246
1298.23
689.32
536.504
477.584
452.018
442.198
441.146
445.52
453.494
463.969
476.234
489.794
504.291
519.447
535.045
550.905
566.876
582.827
598.643
614.224
629.478
644.325
658.692
672.514
685.733
698.298
710.165
721.297
731.662
741.235
749.998
757.937
765.046
771.322
776.77
781.396
785.215
788.242
790.499
792.009
792.799
792.898
792.338
791.15
789.369
787.029
784.166
780.813
777.005
772.775
768.158
763.183
757.882
752.28
746.396
740.255
733.88
727.291
720.506
713.545
706.421
699.149
691.74
684.207
676.558
668.802
660.947
652.998
644.961
636.841
628.643
620.371
612.028
603.618
595.146
586.613
578.025
569.384
560.696
551.964
543.193
534.388
525.555
516.7
507.828
498.945
490.059
481.176
472.304
463.449
454.619
445.823
437.066
428.358
419.705
411.115
402.596
394.154
385.796
377.53
369.361
361.295
353.339
345.497
337.775
330.176
322.706
315.368
308.166
301.101
294.177
287.396
280.758
274.266
267.921
261.723
255.672
249.768
244.011
238.398
232.93
227.603
222.417
217.368
212.455
207.675
203.025
198.502
194.103
189.825
185.665
181.618
177.681
173.851
170.124
166.496
162.964
159.525
156.173
152.907
149.722
146.616
143.586
140.627
137.739
134.919
132.163
129.472
126.842
124.273
121.765
119.316
116.927
114.598
112.33
110.124
107.981
105.903
103.892
101.95
100.08
98.2832
96.5623
94.9175
93.3503
91.8618
90.4525
89.1224
87.8706
86.6955
85.5943
84.5634
83.598
82.6919
81.8381
81.0282
80.2529
79.502
78.7645
78.0287
77.2832
76.5165
75.7179
74.8781
73.9895
73.0476
72.0515
71.0058
69.9217
68.8207
67.7375
66.7275
65.8776
65.3291
65.3237
66.3138
69.2695
76.7683
98.7574
211.352
1298.23
689.299
536.488
477.571
452.006
442.186
441.134
445.508
453.481
463.957
476.222
489.782
504.279
519.435
535.033
550.894
566.865
582.816
598.632
614.213
629.467
644.315
658.682
672.504
685.723
698.288
710.155
721.287
731.652
741.226
749.989
757.928
765.037
771.314
776.761
781.388
785.206
788.234
790.491
792.001
792.791
792.89
792.33
791.143
789.362
787.022
784.158
780.805
776.997
772.768
768.15
763.176
757.875
752.273
746.389
740.248
733.872
727.283
720.499
713.537
706.413
699.141
691.732
684.199
676.55
668.794
660.938
652.989
644.952
636.833
628.635
620.362
612.02
603.61
595.137
586.605
578.016
569.376
560.687
551.955
543.184
534.38
525.547
516.691
507.819
498.937
490.051
481.168
472.295
463.441
454.612
445.815
437.059
428.351
419.698
411.108
402.589
394.147
385.789
377.523
369.354
361.288
353.332
345.491
337.768
330.17
322.701
315.363
308.16
301.096
294.172
287.39
280.753
274.261
267.916
261.718
255.667
249.764
244.006
238.394
232.925
227.599
222.413
217.364
212.451
207.671
203.021
198.499
194.1
189.822
185.661
181.614
177.678
173.848
170.121
166.493
162.962
159.522
156.171
152.904
149.72
146.614
143.583
140.625
137.737
134.916
132.161
129.469
126.84
124.271
121.763
119.314
116.925
114.596
112.328
110.122
107.979
105.901
103.89
101.949
100.078
98.2817
96.5609
94.9162
93.349
91.8605
90.4513
89.1213
87.8696
86.6945
85.5934
84.5626
83.5972
82.6912
81.8374
81.0276
80.2524
79.5016
78.7641
78.0284
77.2829
76.5162
75.7176
74.8779
73.9893
73.0474
72.0513
71.0055
69.9215
68.8204
67.7372
66.7271
65.8772
65.3287
65.3233
66.3134
69.2693
76.7684
98.7586
211.354
1392.41
745.666
581.397
517.792
490.11
479.409
478.159
482.746
491.195
502.318
515.344
529.738
545.112
561.169
577.673
594.433
611.286
628.093
644.734
661.102
677.101
692.648
707.666
722.089
735.857
748.918
761.229
772.751
783.454
793.314
802.313
810.439
817.687
824.058
829.557
834.195
837.986
840.951
843.113
844.498
845.136
845.059
844.3
842.895
840.881
838.293
835.169
831.546
827.46
822.947
818.041
812.776
807.182
801.281
795.098
788.657
781.981
775.091
768.006
760.744
753.318
745.743
738.031
730.191
722.233
714.164
705.991
697.719
689.352
680.896
672.353
663.728
655.022
646.239
637.383
628.455
619.46
610.401
601.282
592.108
582.882
573.611
564.299
554.954
545.58
536.186
526.779
517.366
507.954
498.553
489.17
479.814
470.494
461.217
451.993
442.83
433.735
424.718
415.787
406.947
398.208
389.575
381.056
372.656
364.381
356.237
348.227
340.357
332.63
325.049
317.618
310.339
303.213
296.242
289.429
282.773
276.274
269.933
263.748
257.719
251.843
246.12
240.546
235.121
229.841
224.704
219.706
214.845
210.117
205.518
201.046
196.695
192.463
188.346
184.339
180.439
176.642
172.944
169.341
165.829
162.405
159.065
155.806
152.625
149.519
146.486
143.523
140.628
137.799
135.035
132.336
129.7
127.128
124.619
122.175
119.796
117.484
115.24
113.067
110.966
108.939
106.989
105.117
103.323
101.609
99.976
98.4237
96.9522
95.5602
94.2457
93.0058
91.8362
90.7317
89.6859
88.6911
87.7387
86.8188
85.9208
85.0334
84.1447
83.2429
82.3166
81.3553
80.3499
79.2933
78.1818
77.0158
75.801
74.551
73.2895
72.0549
70.9071
69.9397
69.3038
69.2572
70.2813
73.4065
81.3663
104.68
223.503
1392.41
745.643
581.381
517.777
490.097
479.396
478.146
482.733
491.182
502.306
515.331
529.726
545.1
561.156
577.661
594.421
611.274
628.081
644.722
661.09
677.09
692.637
707.655
722.078
735.846
748.908
761.219
772.742
783.445
793.305
802.304
810.43
817.679
824.05
829.549
834.187
837.978
840.943
843.105
844.491
845.129
845.051
844.293
842.888
840.873
838.285
835.162
831.539
827.453
822.94
818.034
812.769
807.175
801.274
795.09
788.649
781.973
775.083
767.999
760.736
753.31
745.735
738.023
730.183
722.225
714.156
705.982
697.71
689.344
680.887
672.344
663.719
655.013
646.23
637.374
628.446
619.451
610.392
601.273
592.099
582.873
573.602
564.29
554.945
545.571
536.178
526.77
517.357
507.946
498.545
489.162
479.806
470.486
461.209
451.985
442.822
433.728
424.711
415.779
406.94
398.201
389.568
381.049
372.649
364.375
356.23
348.221
340.351
332.624
325.044
317.613
310.333
303.207
296.237
289.424
282.768
276.269
269.928
263.743
257.714
251.838
246.115
240.542
235.117
229.837
224.7
219.702
214.841
210.113
205.515
201.042
196.692
192.46
188.343
184.336
180.436
176.639
172.941
169.338
165.826
162.402
159.062
155.803
152.623
149.517
146.484
143.52
140.625
137.797
135.033
132.334
129.698
127.126
124.617
122.173
119.794
117.482
115.239
113.065
110.964
108.937
106.988
105.115
103.322
101.608
99.9746
98.4225
96.951
95.559
94.2446
93.0047
91.8352
90.7308
89.6851
88.6904
87.738
86.8182
85.9203
85.0329
84.1443
83.2425
82.3163
81.355
80.3496
79.2931
78.1816
77.0155
75.8007
74.5507
73.2892
72.0546
70.9067
69.9393
69.3034
69.2568
70.2809
73.4063
81.3664
104.682
223.505
1492.03
805.94
629.558
560.968
531.028
519.38
517.907
522.707
531.645
543.436
557.246
572.497
588.772
605.748
623.176
640.848
658.591
676.26
693.725
710.876
727.612
743.845
759.499
774.503
788.797
802.33
815.057
826.939
837.949
848.062
857.263
865.542
872.896
879.327
884.843
889.459
893.192
896.064
898.103
899.336
899.798
899.522
898.545
896.906
894.644
891.797
888.405
884.507
880.142
875.346
870.156
864.605
858.726
852.539
846.07
839.346
832.388
825.218
817.855
810.314
802.612
794.76
786.769
778.649
770.408
762.051
753.585
745.014
736.341
727.57
718.704
709.743
700.691
691.55
682.322
673.01
663.616
654.143
644.596
634.978
625.295
615.551
605.753
595.906
586.019
576.098
566.151
556.186
546.214
536.241
526.279
516.335
506.421
496.545
486.717
476.947
467.243
457.616
448.073
438.625
429.278
420.041
410.921
401.926
393.061
384.332
375.746
367.307
359.019
350.887
342.913
335.1
327.452
319.97
312.656
305.51
298.533
291.723
285.081
278.605
272.295
266.147
260.16
254.333
248.661
243.142
237.773
232.551
227.471
222.531
217.726
213.052
208.506
204.082
199.778
195.588
191.509
187.536
183.665
179.892
176.214
172.626
169.126
165.709
162.372
159.113
155.929
152.819
149.779
146.809
143.907
141.073
138.307
135.608
132.977
130.415
127.923
125.503
123.156
120.885
118.691
116.577
114.543
112.589
110.717
108.928
107.221
105.596
104.052
102.586
101.194
99.8723
98.6152
97.4156
96.2654
95.1554
94.0754
93.0144
91.9607
90.9023
89.8271
88.7236
87.5816
86.3922
85.1492
83.8497
82.4951
81.093
79.6591
78.2201
76.8179
75.5177
74.4202
73.6875
73.595
74.6557
77.9666
86.4321
111.198
236.807
1492.03
805.916
629.541
560.953
531.015
519.367
517.894
522.694
531.632
543.423
557.233
572.485
588.759
605.736
623.163
640.835
658.579
676.248
693.714
710.864
727.6
743.834
759.488
774.492
788.787
802.32
815.047
826.93
837.94
848.053
857.254
865.533
872.887
879.318
884.835
889.451
893.184
896.057
898.095
899.329
899.79
899.514
898.538
896.899
894.637
891.79
888.398
884.5
880.134
875.339
870.148
864.598
858.719
852.531
846.063
839.338
832.38
825.21
817.847
810.306
802.604
794.752
786.761
778.641
770.399
762.042
753.576
745.005
736.332
727.561
718.694
709.734
700.682
691.541
682.313
673
663.606
654.134
644.586
634.969
625.285
615.542
605.743
595.897
586.009
576.088
566.141
556.177
546.205
536.232
526.27
516.327
506.412
496.536
486.709
476.938
467.235
457.608
448.066
438.617
429.271
420.034
410.914
401.919
393.054
384.326
375.74
367.301
359.013
350.881
342.907
335.094
327.446
319.965
312.651
305.505
298.527
291.718
285.076
278.6
272.29
266.142
260.156
254.328
248.656
243.138
237.769
232.547
227.467
222.527
217.722
213.049
208.502
204.079
199.775
195.585
191.506
187.533
183.662
179.889
176.211
172.624
169.123
165.706
162.369
159.11
155.927
152.816
149.776
146.806
143.905
141.071
138.304
135.605
132.975
130.413
127.921
125.501
123.154
120.883
118.69
116.576
114.541
112.588
110.716
108.927
107.22
105.595
104.051
102.584
101.193
99.8713
98.6142
97.4147
96.2645
95.1546
94.0748
93.0138
91.9602
90.9018
89.8266
88.7232
87.5812
86.3919
85.1489
83.8494
82.4948
81.0927
79.6589
78.2198
76.8176
75.5173
74.4198
73.6871
73.5946
74.6553
77.9663
86.4323
111.2
236.809
1597.26
870.333
681.163
607.28
574.935
562.272
560.551
565.563
575.001
587.479
602.094
618.224
635.418
653.332
671.694
690.286
708.924
727.452
745.735
763.657
781.114
798.015
814.28
829.838
844.629
858.6
871.707
883.913
895.19
905.518
914.88
923.272
930.691
937.142
942.639
947.195
950.834
953.58
955.464
956.517
956.776
956.279
955.066
953.176
950.653
947.538
943.872
939.697
935.054
929.98
924.514
918.692
912.541
906.085
899.352
892.367
885.153
877.73
870.118
862.331
854.384
846.287
838.052
829.686
821.195
812.584
803.859
795.02
786.072
777.015
767.851
758.581
749.205
739.726
730.144
720.461
710.679
700.802
690.832
680.774
670.632
660.412
650.12
639.762
629.348
618.883
608.379
597.843
587.285
576.716
566.146
555.585
545.045
534.536
524.07
513.656
503.307
493.031
482.839
472.742
462.748
452.866
443.105
433.473
423.977
414.625
405.421
396.373
387.485
378.762
370.206
361.824
353.618
345.589
337.738
330.068
322.577
315.266
308.135
301.181
294.405
287.804
281.375
275.117
269.026
263.1
257.335
251.727
246.272
240.967
235.808
230.79
225.908
221.159
216.537
212.039
207.66
203.395
199.24
195.19
191.242
187.391
183.634
179.966
176.385
172.887
169.47
166.131
162.868
159.679
156.563
153.519
150.547
147.646
144.817
142.061
139.378
136.771
134.24
131.788
129.416
127.127
124.919
122.794
120.752
118.795
116.921
115.131
113.421
111.79
110.233
108.745
107.321
105.953
104.632
103.348
102.092
100.851
99.6136
98.3674
97.1003
95.8009
94.4589
93.0661
91.6168
90.1091
88.546
86.937
85.2999
83.6646
82.0773
80.6087
79.3676
78.5278
78.384
79.4846
82.999
92.02
118.379
251.384
1597.26
870.308
681.146
607.265
574.921
562.258
560.538
565.549
574.987
587.465
602.08
618.211
635.405
653.319
671.681
690.273
708.911
727.44
745.724
763.646
781.103
798.004
814.269
829.828
844.619
858.59
871.697
883.904
895.181
905.509
914.872
923.263
930.682
937.134
942.631
947.188
950.826
953.573
955.456
956.51
956.769
956.272
955.059
953.169
950.646
947.531
943.865
939.69
935.047
929.973
924.507
918.684
912.534
906.077
899.344
892.359
885.145
877.723
870.11
862.323
854.375
846.279
838.043
829.677
821.186
812.575
803.849
795.011
786.063
777.006
767.841
758.571
749.195
739.716
730.134
720.451
710.669
700.792
690.822
680.764
670.622
660.402
650.109
639.752
629.338
618.873
608.369
597.833
587.275
576.706
566.136
555.576
545.036
534.527
524.061
513.648
503.298
493.022
482.831
472.734
462.74
452.858
443.097
433.466
423.97
414.617
405.414
396.366
387.478
378.755
370.2
361.818
353.612
345.583
337.733
330.062
322.572
315.261
308.129
301.176
294.4
287.799
281.371
275.112
269.022
263.096
257.33
251.722
246.268
240.963
235.804
230.786
225.904
221.155
216.534
212.036
207.657
203.392
199.237
195.187
191.239
187.388
183.631
179.963
176.382
172.884
169.467
166.128
162.865
159.676
156.56
153.516
150.544
147.644
144.815
142.059
139.376
136.769
134.238
131.786
129.414
127.125
124.917
122.792
120.751
118.793
116.92
115.129
113.42
111.789
110.232
108.744
107.32
105.952
104.631
103.348
102.091
100.85
99.613
98.3669
97.0999
95.8005
94.4585
93.0657
91.6164
90.1088
88.5457
86.9367
85.2996
83.6643
82.077
80.6083
79.3672
78.5273
78.3836
79.4842
82.9989
92.0202
118.38
251.385
1708.26
939.034
736.388
656.897
621.995
608.247
606.252
611.473
621.423
634.605
650.045
667.073
685.202
704.064
723.369
742.883
762.411
781.79
800.877
819.552
837.706
855.246
872.09
888.167
903.415
917.783
931.227
943.712
955.211
965.705
975.182
983.639
991.077
997.505
1002.94
1007.39
1010.9
1013.48
1015.18
1016.02
1016.05
1015.31
1013.84
1011.68
1008.89
1005.5
1001.56
997.107
992.191
986.851
981.123
975.047
968.644
961.944
954.975
947.761
940.324
932.686
924.862
916.869
908.718
900.42
891.983
883.413
874.716
865.894
856.95
847.885
838.699
829.393
819.966
810.417
800.747
790.955
781.042
771.008
760.855
750.586
740.202
729.709
719.11
708.412
697.62
686.743
675.789
664.767
653.686
642.556
631.389
620.196
608.989
597.78
586.58
575.403
564.261
553.165
542.129
531.164
520.281
509.491
498.807
488.236
477.79
467.478
457.307
447.286
437.422
427.722
418.19
408.834
399.658
390.666
381.861
373.245
364.82
356.587
348.547
340.699
333.043
325.579
318.304
311.217
304.315
297.597
291.058
284.696
278.507
272.487
266.633
260.939
255.401
250.015
244.777
239.68
234.722
229.896
225.197
220.622
216.164
211.821
207.586
203.456
199.426
195.493
191.653
187.902
184.237
180.656
177.157
173.736
170.394
167.128
163.938
160.823
157.785
154.823
151.938
149.132
146.406
143.762
141.201
138.724
136.331
134.022
131.799
129.661
127.608
125.639
123.75
121.94
120.204
118.536
116.929
115.377
113.869
112.395
110.945
109.506
108.066
106.613
105.134
103.618
102.056
100.438
98.7614
97.0241
95.231
93.3934
91.5321
89.6804
87.8889
86.2344
84.8347
83.8766
83.6761
84.8199
88.558
98.1893
126.296
267.361
1708.26
939.007
736.37
656.881
621.98
608.233
606.238
611.459
621.409
634.591
650.031
667.059
685.188
704.05
723.356
742.87
762.398
781.777
800.865
819.54
837.694
855.235
872.079
888.156
903.405
917.773
931.217
943.702
955.202
965.696
975.174
983.631
991.069
997.497
1002.93
1007.39
1010.89
1013.48
1015.17
1016.01
1016.04
1015.3
1013.83
1011.68
1008.88
1005.49
1001.55
997.1
992.185
986.844
981.116
975.04
968.637
961.937
954.967
947.753
940.316
932.678
924.854
916.861
908.71
900.411
891.974
883.404
874.707
865.885
856.94
847.875
838.689
829.383
819.955
810.407
800.737
790.945
781.032
770.998
760.845
750.575
740.191
729.698
719.099
708.401
697.61
686.733
675.779
664.756
653.675
642.546
631.379
620.186
608.979
597.77
586.571
575.394
564.251
553.156
542.12
531.155
520.272
509.483
498.798
488.228
477.782
467.47
457.299
447.279
437.415
427.714
418.183
408.827
399.651
390.66
381.855
373.239
364.814
356.581
348.541
340.693
333.038
325.573
318.299
311.212
304.31
297.592
291.053
284.691
278.503
272.483
266.628
260.934
255.397
250.011
244.773
239.677
234.718
229.892
225.194
220.618
216.161
211.817
207.583
203.453
199.423
195.49
191.65
187.899
184.235
180.654
177.154
173.734
170.391
167.125
163.935
160.821
157.783
154.821
151.936
149.13
146.404
143.76
141.199
138.722
136.329
134.02
131.797
129.659
127.607
125.637
123.749
121.939
120.203
118.535
116.928
115.376
113.868
112.394
110.944
109.505
108.065
106.612
105.134
103.618
102.055
100.438
98.7611
97.0238
95.2306
93.3931
91.5318
89.68
87.8885
86.2341
84.8343
83.8761
83.6757
84.8196
88.5579
98.1897
126.297
267.363
1825.17
1012.22
795.403
709.983
672.371
657.469
655.173
660.602
671.074
684.975
701.257
719.198
738.274
758.09
778.339
798.77
819.178
839.39
859.259
878.658
897.476
915.618
933
949.55
965.208
979.922
993.651
1006.36
1018.03
1028.63
1038.17
1046.64
1054.04
1060.4
1065.71
1070.02
1073.35
1075.74
1077.21
1077.81
1077.58
1076.57
1074.83
1072.39
1069.32
1065.65
1061.43
1056.71
1051.54
1045.95
1039.98
1033.67
1027.05
1020.14
1012.97
1005.57
997.95
990.142
982.156
974.007
965.704
957.257
948.672
939.952
931.102
922.12
913.009
903.766
894.391
884.88
875.233
865.446
855.517
845.446
835.23
824.871
814.367
803.722
792.938
782.018
770.966
759.79
748.496
737.092
725.586
713.99
702.313
690.568
678.766
666.92
655.045
643.152
631.257
619.373
607.515
595.696
583.929
572.23
560.61
549.082
537.659
526.353
515.174
504.133
493.239
482.503
471.93
461.53
451.311
441.278
431.436
421.789
412.342
403.097
394.056
385.22
376.59
368.167
359.949
351.937
344.128
336.521
329.113
321.902
314.885
308.057
301.415
294.955
288.673
282.564
276.623
270.845
265.226
259.76
254.442
249.267
244.229
239.324
234.545
229.889
225.351
220.924
216.606
212.392
208.277
204.258
200.332
196.495
192.745
189.08
185.498
181.997
178.577
175.237
171.976
168.797
165.698
162.681
159.748
156.9
154.138
151.462
148.871
146.367
143.949
141.618
139.372
137.21
135.13
133.126
131.196
129.332
127.527
125.773
124.061
122.379
120.717
119.061
117.399
115.718
114.007
112.253
110.447
108.583
106.655
104.665
102.618
100.529
98.4206
96.3302
94.3136
92.4544
90.8797
89.791
89.5276
90.7187
94.7026
105.005
135.03
284.878
1825.17
1012.19
795.384
709.967
672.356
657.454
655.159
660.587
671.06
684.961
701.243
719.184
738.26
758.077
778.325
798.757
819.165
839.378
859.247
878.647
897.465
915.607
932.989
949.54
965.198
979.913
993.641
1006.35
1018.02
1028.62
1038.16
1046.63
1054.03
1060.39
1065.71
1070.02
1073.35
1075.73
1077.2
1077.8
1077.57
1076.57
1074.82
1072.39
1069.31
1065.64
1061.43
1056.71
1051.53
1045.94
1039.97
1033.66
1027.04
1020.13
1012.96
1005.56
997.942
990.134
982.148
973.998
965.696
957.248
948.663
939.943
931.092
922.111
912.999
903.756
894.381
884.87
875.222
865.435
855.506
845.435
835.219
824.859
814.356
803.711
792.926
782.006
770.955
759.779
748.485
737.08
725.575
713.979
702.302
690.557
678.755
666.91
655.034
643.142
631.247
619.363
607.505
595.686
583.92
572.22
560.6
549.073
537.65
526.344
515.165
504.125
493.231
482.495
471.923
461.523
451.303
441.27
431.429
421.783
412.336
403.09
394.049
385.213
376.584
368.161
359.943
351.931
344.123
336.516
329.108
321.897
314.88
308.052
301.41
294.95
288.668
282.559
276.618
270.841
265.222
259.756
254.438
249.263
244.225
239.32
234.542
229.886
225.347
220.921
216.603
212.388
208.274
204.255
200.329
196.492
192.742
189.077
185.495
181.994
178.574
175.234
171.974
168.794
165.695
162.679
159.746
156.898
154.136
151.459
148.869
146.365
143.947
141.616
139.371
137.209
135.128
133.125
131.194
129.33
127.526
125.772
124.06
122.378
120.716
119.06
117.398
115.717
114.006
112.252
110.447
108.582
106.655
104.664
102.618
100.529
98.4202
96.3299
94.3133
92.454
90.8793
89.7905
89.5272
90.7184
94.7025
105.005
135.032
284.88
1948.09
1090.05
858.369
766.699
726.225
710.098
707.479
713.114
724.119
738.754
755.892
774.755
794.784
815.555
836.741
858.075
879.343
900.363
920.982
941.067
960.506
979.201
997.069
1014.04
1030.05
1045.04
1059
1071.87
1083.63
1094.29
1103.83
1112.24
1119.56
1125.78
1130.93
1135.04
1138.15
1140.29
1141.5
1141.82
1141.31
1140.01
1137.98
1135.25
1131.89
1127.94
1123.46
1118.49
1113.07
1107.25
1101.07
1094.56
1087.76
1080.68
1073.36
1065.82
1058.08
1050.16
1042.07
1033.83
1025.44
1016.91
1008.24
999.433
990.493
981.416
972.2
962.839
953.332
943.672
933.855
923.877
913.734
903.423
892.941
882.287
871.46
860.461
849.292
837.957
826.46
814.809
803.009
791.07
779.002
766.816
754.524
742.139
729.675
717.146
704.568
691.956
679.326
666.694
654.075
641.487
628.943
616.46
604.054
591.737
579.525
567.431
555.467
543.645
531.977
520.472
509.14
497.992
487.035
476.275
465.718
455.37
445.234
435.313
425.61
416.128
406.866
397.825
389.005
380.406
372.025
363.861
355.911
348.173
340.642
333.316
326.19
319.26
312.522
305.969
299.598
293.402
287.377
281.517
275.817
270.27
264.871
259.615
254.496
249.509
244.647
239.907
235.283
230.771
226.365
222.063
217.86
213.753
209.739
205.815
201.98
198.231
194.567
190.989
187.494
184.085
180.76
177.521
174.368
171.304
168.329
165.44
162.64
159.927
157.302
154.764
152.313
149.944
147.657
145.445
143.305
141.229
139.209
137.237
135.303
133.394
131.499
129.606
127.701
125.771
123.804
121.789
119.717
117.58
115.377
113.108
110.783
108.417
106.036
103.683
101.419
99.3337
97.5662
96.3334
96.0005
97.2434
101.497
112.538
144.669
304.086
1948.08
1090.02
858.349
766.683
726.209
710.083
707.464
713.099
724.104
738.739
755.877
774.741
794.77
815.542
836.727
858.062
879.331
900.351
920.97
941.055
960.495
979.19
997.058
1014.03
1030.04
1045.04
1058.99
1071.86
1083.63
1094.28
1103.82
1112.24
1119.55
1125.77
1130.92
1135.04
1138.14
1140.28
1141.49
1141.82
1141.3
1140.01
1137.97
1135.25
1131.89
1127.94
1123.45
1118.48
1113.06
1107.24
1101.06
1094.56
1087.75
1080.67
1073.35
1065.81
1058.07
1050.15
1042.06
1033.82
1025.43
1016.9
1008.23
999.423
990.483
981.406
972.189
962.829
953.321
943.661
933.844
923.866
913.723
903.412
892.929
882.275
871.448
860.449
849.28
837.945
826.448
814.797
802.997
791.058
778.99
766.804
754.512
742.127
729.663
717.135
704.557
691.945
679.315
666.683
654.065
641.476
628.933
616.45
604.044
591.728
579.516
567.422
555.458
543.637
531.968
520.464
509.132
497.984
487.027
476.267
465.711
455.363
445.227
435.306
425.604
416.121
406.859
397.819
388.999
380.4
372.019
363.855
355.906
348.167
340.637
333.311
326.185
319.255
312.517
305.964
299.593
293.398
287.373
281.513
275.813
270.266
264.867
259.611
254.492
249.505
244.644
239.903
235.28
230.767
226.362
222.06
217.857
213.75
209.736
205.812
201.977
198.228
194.565
190.986
187.492
184.082
180.757
177.518
174.366
171.302
168.326
165.438
162.637
159.925
157.3
154.762
152.311
149.942
147.655
145.444
143.303
141.227
139.208
137.236
135.301
133.393
131.498
129.605
127.7
125.77
123.803
121.788
119.716
117.58
115.376
113.108
110.783
108.416
106.036
103.683
101.418
99.3333
97.5658
96.3329
96.0001
97.2431
101.497
112.539
144.672
304.088
2077.06
1172.65
925.431
827.195
783.71
766.297
763.332
769.174
780.722
796.104
814.107
833.9
854.881
876.6
898.707
920.923
943.021
964.811
986.135
1006.86
1026.86
1046.05
1064.34
1081.66
1097.95
1113.16
1127.26
1140.22
1152.02
1162.65
1172.11
1180.41
1187.56
1193.59
1198.51
1202.38
1205.21
1207.06
1207.97
1207.98
1207.16
1205.55
1203.21
1200.19
1196.54
1192.32
1187.58
1182.37
1176.74
1170.72
1164.37
1157.71
1150.77
1143.58
1136.17
1128.55
1120.76
1112.8
1104.68
1096.42
1088.02
1079.48
1070.81
1062
1053.04
1043.95
1034.7
1025.3
1015.72
1005.98
996.056
985.944
975.64
965.137
954.431
943.519
932.4
921.074
909.542
897.807
885.875
873.752
861.445
848.966
836.323
823.532
810.603
797.554
784.398
771.153
757.837
744.465
731.057
717.631
704.205
690.797
677.424
664.106
650.858
637.698
624.64
611.702
598.896
586.237
573.736
561.408
549.263
537.311
525.562
514.021
502.697
491.594
480.718
470.072
459.66
449.482
439.542
429.839
420.373
411.144
402.15
393.389
384.858
376.555
368.476
360.617
352.974
345.541
338.315
331.289
324.458
317.817
311.36
305.08
298.972
293.03
287.248
281.619
276.138
270.798
265.595
260.522
255.574
250.746
246.033
241.431
236.936
232.543
228.25
224.053
219.951
215.941
212.021
208.191
204.45
200.797
197.234
193.76
190.376
187.084
183.882
180.769
177.746
174.811
171.966
169.208
166.536
163.947
161.437
159.002
156.636
154.331
152.079
149.871
147.695
145.54
143.393
141.24
139.069
136.867
134.62
132.319
129.954
127.519
125.013
122.439
119.807
117.136
114.457
111.815
109.277
106.944
104.964
103.572
103.162
104.462
109.013
120.866
155.311
325.145
2077.06
1172.62
925.411
827.178
783.694
766.281
763.317
769.159
780.706
796.088
814.093
833.885
854.867
876.586
898.693
920.91
943.008
964.799
986.123
1006.85
1026.85
1046.04
1064.33
1081.65
1097.94
1113.15
1127.25
1140.21
1152.01
1162.64
1172.1
1180.4
1187.55
1193.58
1198.51
1202.37
1205.2
1207.05
1207.96
1207.98
1207.16
1205.55
1203.2
1200.18
1196.54
1192.32
1187.58
1182.37
1176.73
1170.72
1164.37
1157.7
1150.76
1143.57
1136.16
1128.55
1120.75
1112.79
1104.67
1096.41
1088.01
1079.47
1070.8
1061.99
1053.03
1043.94
1034.69
1025.28
1015.71
1005.97
996.044
985.933
975.628
965.125
954.418
943.507
932.388
921.061
909.529
897.794
885.862
873.739
861.433
848.953
836.311
823.519
810.591
797.541
784.386
771.141
757.825
744.453
731.046
717.62
704.193
690.785
677.414
664.095
650.848
637.687
624.63
611.692
598.886
586.227
573.727
561.399
549.254
537.303
525.553
514.013
502.689
491.587
480.711
470.065
459.652
449.475
439.535
429.832
420.367
411.138
402.144
393.383
384.853
376.55
368.471
360.612
352.968
345.536
338.309
331.284
324.453
317.812
311.355
305.075
298.968
293.026
287.244
281.615
276.134
270.794
265.591
260.518
255.57
250.742
246.03
241.428
236.932
232.54
228.247
224.05
219.948
215.937
212.018
208.188
204.447
200.794
197.231
193.757
190.374
187.082
183.88
180.767
177.743
174.809
171.964
169.206
166.534
163.945
161.435
159.001
156.634
154.33
152.078
149.87
147.694
145.539
143.392
141.239
139.068
136.866
134.619
132.318
129.953
127.518
125.012
122.438
119.807
117.136
114.457
111.814
109.277
106.943
104.963
103.572
103.162
104.462
109.013
120.867
155.313
325.147
2212.08
1260.13
996.711
891.607
844.976
826.221
822.896
828.949
841.049
857.188
876.064
896.786
918.711
941.36
964.364
987.428
1010.31
1032.83
1054.8
1076.09
1096.6
1116.21
1134.84
1152.43
1168.92
1184.26
1198.42
1211.38
1223.13
1233.65
1242.96
1251.06
1257.98
1263.74
1268.38
1271.93
1274.44
1275.95
1276.52
1276.19
1275.03
1273.1
1270.44
1267.11
1263.19
1258.71
1253.73
1248.31
1242.5
1236.33
1229.86
1223.1
1216.09
1208.85
1201.42
1193.81
1186.04
1178.12
1170.06
1161.88
1153.56
1145.11
1136.52
1127.8
1118.93
1109.9
1100.71
1091.34
1081.79
1072.04
1062.08
1051.9
1041.5
1030.86
1019.98
1008.86
997.483
985.861
973.99
961.875
949.519
936.931
924.118
911.091
897.863
884.448
870.862
857.12
843.241
829.244
815.148
800.974
786.741
772.472
758.185
743.903
729.646
715.433
701.285
687.22
673.257
659.412
645.702
632.143
618.751
605.539
592.521
579.706
567.104
554.725
542.575
530.662
518.991
507.565
496.39
485.467
474.798
464.384
454.225
444.32
434.668
425.267
416.115
407.207
398.54
390.111
381.914
373.944
366.196
358.665
351.344
344.228
337.309
330.583
324.042
317.679
311.489
305.464
299.598
293.886
288.32
282.894
277.603
272.442
267.404
262.485
257.681
252.987
248.4
243.915
239.532
235.246
231.056
226.961
222.96
219.052
215.238
211.516
207.889
204.356
200.915
197.564
194.305
191.136
188.056
185.065
182.158
179.333
176.587
173.912
171.304
168.753
166.25
163.787
161.35
158.927
156.505
154.071
151.611
149.11
146.558
143.944
141.258
138.496
135.658
132.749
129.781
126.775
123.768
120.808
117.97
115.363
113.149
111.582
111.087
112.449
117.328
130.075
167.059
348.23
2212.08
1260.1
996.69
891.589
844.96
826.205
822.88
828.933
841.034
857.173
876.049
896.771
918.696
941.346
964.35
987.415
1010.3
1032.81
1054.79
1076.08
1096.59
1116.2
1134.83
1152.42
1168.91
1184.25
1198.41
1211.37
1223.12
1233.64
1242.95
1251.06
1257.98
1263.74
1268.38
1271.93
1274.43
1275.95
1276.51
1276.19
1275.03
1273.09
1270.43
1267.11
1263.18
1258.7
1253.73
1248.31
1242.49
1236.33
1229.85
1223.09
1216.08
1208.84
1201.41
1193.8
1186.03
1178.11
1170.06
1161.87
1153.55
1145.1
1136.51
1127.79
1118.92
1109.89
1100.7
1091.33
1081.78
1072.03
1062.07
1051.89
1041.49
1030.85
1019.97
1008.84
997.47
985.847
973.977
961.861
949.506
936.917
924.104
911.077
897.85
884.435
870.848
857.107
843.228
829.231
815.136
800.961
786.729
772.46
758.173
743.892
729.634
715.422
701.274
687.209
673.246
659.401
645.692
632.133
618.741
605.53
592.512
579.697
567.096
554.717
542.567
530.654
518.983
507.558
496.382
485.459
474.791
464.377
454.218
444.314
434.662
425.261
416.109
407.201
398.535
390.105
381.908
373.939
366.191
358.66
351.339
344.223
337.305
330.578
324.037
317.674
311.484
305.46
299.594
293.882
288.316
282.89
277.599
272.438
267.4
262.482
257.677
252.984
248.396
243.912
239.528
235.242
231.053
226.958
222.957
219.049
215.235
211.514
207.886
204.354
200.912
197.562
194.303
191.134
188.054
185.062
182.156
179.331
176.585
173.91
171.302
168.751
166.249
163.785
161.348
158.926
156.504
154.07
151.61
149.11
146.558
143.943
141.257
138.496
135.658
132.748
129.78
126.775
123.767
120.807
117.97
115.362
113.148
111.581
111.087
112.449
117.328
130.076
167.062
348.232
2353.02
1352.52
1072.29
960.05
910.16
890.023
886.332
892.604
905.269
922.172
941.921
963.563
986.415
1009.97
1033.83
1057.7
1081.32
1104.48
1127.04
1148.83
1169.75
1189.69
1208.58
1226.34
1242.93
1258.3
1272.43
1285.3
1296.9
1307.22
1316.29
1324.11
1330.72
1336.14
1340.42
1343.59
1345.72
1346.84
1347.03
1346.33
1344.81
1342.53
1339.54
1335.92
1331.73
1327.01
1321.83
1316.24
1310.29
1304.03
1297.49
1290.7
1283.69
1276.5
1269.14
1261.62
1253.98
1246.21
1238.32
1230.31
1222.18
1213.93
1205.54
1197.02
1188.33
1179.48
1170.45
1161.22
1151.78
1142.11
1132.2
1122.04
1111.61
1100.9
1089.9
1078.62
1067.03
1055.15
1042.97
1030.5
1017.73
1004.69
991.367
977.787
963.961
949.905
935.635
921.172
906.535
891.746
876.827
861.802
846.693
831.525
816.321
801.105
785.901
770.73
755.616
740.581
725.644
710.825
696.144
681.62
667.27
653.109
639.151
625.407
611.889
598.607
585.569
572.784
560.257
547.994
535.998
524.274
512.822
501.645
490.741
480.112
469.755
459.668
449.848
440.293
430.997
421.957
413.168
404.624
396.319
388.248
380.404
372.781
365.371
358.169
351.166
344.356
337.732
331.287
325.014
318.905
312.955
307.156
301.503
295.988
290.607
285.355
280.225
275.213
270.316
265.529
260.849
256.273
251.8
247.426
243.152
238.976
234.898
230.917
227.033
223.246
219.553
215.952
212.444
209.027
205.699
202.459
199.304
196.228
193.229
190.299
187.431
184.616
181.845
179.106
176.387
173.675
170.956
168.216
165.44
162.616
159.731
156.774
153.738
150.619
147.417
144.14
140.802
137.43
134.061
130.752
127.584
124.676
122.205
120.445
119.856
121.287
126.526
140.257
180.03
373.526
2353.02
1352.48
1072.27
960.032
910.142
890.006
886.315
892.588
905.253
922.156
941.906
963.548
986.4
1009.95
1033.82
1057.68
1081.3
1104.47
1127.02
1148.82
1169.74
1189.68
1208.57
1226.33
1242.92
1258.3
1272.43
1285.29
1296.89
1307.21
1316.28
1324.1
1330.71
1336.13
1340.41
1343.59
1345.71
1346.84
1347.02
1346.33
1344.8
1342.52
1339.54
1335.92
1331.72
1327
1321.82
1316.23
1310.28
1304.02
1297.48
1290.69
1283.69
1276.49
1269.13
1261.62
1253.97
1246.2
1238.31
1230.3
1222.17
1213.92
1205.53
1197.01
1188.32
1179.47
1170.44
1161.21
1151.77
1142.1
1132.19
1122.02
1111.59
1100.88
1089.89
1078.6
1067.02
1055.14
1042.96
1030.48
1017.72
1004.67
991.352
977.773
963.947
949.891
935.621
921.158
906.521
891.732
876.814
861.789
846.68
831.512
816.309
801.093
785.888
770.718
755.605
740.569
725.632
710.814
696.133
681.61
667.26
653.099
639.141
625.397
611.879
598.598
585.56
572.775
560.249
547.986
535.991
524.266
512.815
501.637
490.734
480.105
469.748
459.661
449.842
440.286
430.991
421.951
413.162
404.618
396.314
388.243
380.399
372.776
365.366
358.164
351.161
344.352
337.728
331.283
325.009
318.901
312.951
307.152
301.499
295.984
290.603
285.351
280.221
275.209
270.312
265.525
260.845
256.27
251.796
247.423
243.149
238.973
234.894
230.913
227.03
223.243
219.55
215.949
212.441
209.024
205.697
202.457
199.301
196.226
193.227
190.297
187.429
184.614
181.843
179.104
176.385
173.673
170.954
168.214
165.439
162.615
159.73
156.773
153.737
150.618
147.416
144.139
140.802
137.43
134.061
130.752
127.584
124.676
122.204
120.444
119.856
121.286
126.526
140.258
180.033
373.528
2499.6
1449.75
1152.21
1032.61
979.387
957.852
953.804
960.309
973.547
991.218
1011.83
1034.38
1058.13
1082.54
1107.22
1131.82
1156.1
1179.85
1202.9
1225.09
1246.33
1266.5
1285.53
1303.36
1319.95
1335.24
1349.23
1361.89
1373.23
1383.25
1391.98
1399.42
1405.63
1410.63
1414.47
1417.21
1418.9
1419.59
1419.35
1418.25
1416.34
1413.7
1410.4
1406.49
1402.04
1397.12
1391.77
1386.06
1380.04
1373.75
1367.23
1360.49
1353.59
1346.53
1339.34
1332.04
1324.64
1317.14
1309.54
1301.84
1294.03
1286.11
1278.05
1269.85
1261.48
1252.93
1244.17
1235.2
1225.98
1216.49
1206.73
1196.66
1186.29
1175.58
1164.54
1153.15
1141.4
1129.31
1116.85
1104.04
1090.89
1077.39
1063.57
1049.43
1034.99
1020.27
1005.29
990.072
974.638
959.013
943.222
927.293
911.251
895.124
878.939
862.723
846.502
830.304
814.153
798.073
782.089
766.224
750.5
734.939
719.558
704.374
689.403
674.659
660.154
645.9
631.907
618.183
604.736
591.571
578.694
566.108
553.815
541.818
530.115
518.707
507.593
496.77
486.236
475.986
466.017
456.324
446.901
437.743
428.844
420.197
411.795
403.631
395.698
387.988
380.495
373.209
366.125
359.233
352.527
345.999
339.642
333.448
327.411
321.525
315.781
310.176
304.703
299.357
294.134
289.028
284.037
279.157
274.386
269.721
265.161
260.703
256.348
252.095
247.943
243.888
239.93
236.066
232.296
228.617
225.029
221.526
218.107
214.766
211.498
208.296
205.151
202.054
198.994
195.959
192.937
189.913
186.873
183.801
180.685
177.508
174.26
170.931
167.512
164.002
160.402
156.722
152.98
149.205
145.44
141.747
138.216
134.977
132.222
130.25
129.558
131.064
136.7
151.516
194.351
401.237
2499.6
1449.72
1152.19
1032.6
979.369
957.834
953.786
960.292
973.531
991.202
1011.82
1034.36
1058.11
1082.53
1107.2
1131.81
1156.09
1179.84
1202.89
1225.08
1246.32
1266.49
1285.52
1303.36
1319.94
1335.23
1349.22
1361.88
1373.22
1383.25
1391.97
1399.42
1405.62
1410.63
1414.47
1417.21
1418.89
1419.58
1419.35
1418.24
1416.34
1413.7
1410.39
1406.49
1402.04
1397.11
1391.77
1386.06
1380.03
1373.75
1367.22
1360.49
1353.58
1346.52
1339.34
1332.04
1324.63
1317.13
1309.53
1301.83
1294.02
1286.1
1278.04
1269.83
1261.47
1252.91
1244.16
1235.18
1225.96
1216.48
1206.71
1196.65
1186.27
1175.57
1164.52
1153.13
1141.39
1129.29
1116.84
1104.03
1090.87
1077.37
1063.55
1049.41
1034.97
1020.25
1005.28
990.057
974.623
958.998
943.208
927.279
911.237
895.11
878.925
862.71
846.49
830.291
814.14
798.061
782.077
766.212
750.489
734.928
719.548
704.364
689.393
674.649
660.144
645.891
631.898
618.174
604.727
591.563
578.686
566.1
553.808
541.81
530.108
518.7
507.586
496.764
486.229
475.98
466.011
456.318
446.895
437.737
428.838
420.191
411.789
403.625
395.692
387.983
380.489
373.204
366.12
359.229
352.523
345.995
339.638
333.444
327.407
321.52
315.777
310.172
304.699
299.353
294.13
289.024
284.033
279.154
274.383
269.718
265.157
260.7
256.345
252.091
247.94
243.885
239.927
236.063
232.293
228.615
225.026
221.524
218.105
214.764
211.496
208.293
205.149
202.052
198.992
195.958
192.936
189.912
186.871
183.8
180.683
177.507
174.259
170.93
167.511
164.001
160.401
156.722
152.98
149.204
145.439
141.746
138.216
134.977
132.221
130.249
129.558
131.064
136.701
151.517
194.355
401.239
2651.28
1551.63
1236.43
1109.36
1052.78
1029.86
1025.48
1032.24
1046.06
1064.49
1085.96
1109.37
1133.98
1159.2
1184.62
1209.89
1234.75
1258.98
1282.41
1304.9
1326.33
1346.61
1365.67
1383.44
1399.89
1414.98
1428.7
1441.04
1452
1461.61
1469.88
1476.85
1482.56
1487.06
1490.39
1492.61
1493.8
1494.01
1493.31
1491.77
1489.47
1486.47
1482.85
1478.67
1474.01
1468.92
1463.46
1457.7
1451.67
1445.44
1439.03
1432.45
1425.76
1418.96
1412.08
1405.13
1398.11
1391.02
1383.85
1376.61
1369.27
1361.82
1354.24
1346.51
1338.6
1330.49
1322.15
1313.56
1304.68
1295.5
1285.99
1276.13
1265.9
1255.29
1244.27
1232.84
1221
1208.73
1196.03
1182.92
1169.39
1155.45
1141.12
1126.41
1111.35
1095.94
1080.22
1064.21
1047.94
1031.43
1014.71
997.817
980.778
963.625
946.388
929.099
911.787
894.483
877.215
860.012
842.902
825.912
809.066
792.387
775.894
759.608
743.545
727.722
712.154
696.853
681.83
667.096
652.658
638.523
624.697
611.185
597.988
585.108
572.547
560.304
548.378
536.766
525.465
514.472
503.781
493.389
483.289
473.474
463.939
454.677
445.679
436.939
428.449
420.199
412.184
404.393
396.819
389.454
382.29
375.317
368.53
361.918
355.476
349.196
343.071
337.095
331.261
325.563
319.997
314.558
309.24
304.042
298.959
293.988
289.128
284.376
279.732
275.193
270.76
266.426
262.19
258.051
254.005
250.052
246.188
242.41
238.713
235.091
231.538
228.047
224.608
221.21
217.842
214.491
211.143
207.783
204.397
200.967
197.481
193.922
190.281
186.545
182.71
178.773
174.738
170.618
166.432
162.215
158.014
153.9
149.97
146.367
143.3
141.094
140.29
141.879
147.954
163.965
210.171
431.601
2651.28
1551.6
1236.41
1109.34
1052.76
1029.85
1025.46
1032.22
1046.04
1064.48
1085.94
1109.36
1133.97
1159.19
1184.61
1209.88
1234.73
1258.97
1282.4
1304.89
1326.32
1346.6
1365.66
1383.43
1399.88
1414.97
1428.69
1441.03
1452
1461.6
1469.88
1476.85
1482.56
1487.05
1490.38
1492.61
1493.8
1494
1493.31
1491.77
1489.47
1486.47
1482.85
1478.67
1474
1468.91
1463.46
1457.69
1451.67
1445.44
1439.02
1432.45
1425.75
1418.96
1412.07
1405.12
1398.1
1391.01
1383.84
1376.6
1369.26
1361.81
1354.23
1346.5
1338.59
1330.48
1322.14
1313.54
1304.67
1295.49
1285.98
1276.12
1265.89
1255.27
1244.26
1232.83
1220.98
1208.71
1196.02
1182.9
1169.37
1155.43
1141.11
1126.4
1111.33
1095.93
1080.21
1064.2
1047.92
1031.41
1014.69
997.802
980.764
963.611
946.374
929.085
911.774
894.47
877.202
859.999
842.89
825.9
809.054
792.375
775.883
759.597
743.534
727.712
712.144
696.843
681.821
667.087
652.649
638.514
624.689
611.176
597.979
585.1
572.539
560.297
548.37
536.758
525.458
514.465
503.775
493.382
483.282
473.468
463.933
454.671
445.674
436.933
428.443
420.194
412.178
404.388
396.814
389.449
382.285
375.313
368.525
361.914
355.472
349.192
343.067
337.09
331.256
325.559
319.993
314.554
309.236
304.038
298.955
293.984
289.124
284.373
279.728
275.19
270.756
266.423
262.187
258.047
254.002
250.049
246.186
242.407
238.71
235.089
231.536
228.045
224.605
221.208
217.84
214.489
211.141
207.782
204.395
200.966
197.479
193.921
190.28
186.544
182.709
178.772
174.737
170.617
166.432
162.214
158.014
153.9
149.97
146.367
143.3
141.094
140.289
141.879
147.954
163.966
210.175
431.603
2807.09
1657.76
1324.83
1190.34
1130.48
1106.24
1101.55
1108.57
1122.97
1142.16
1164.44
1188.69
1214.09
1240.05
1266.12
1291.96
1317.28
1341.88
1365.58
1388.23
1409.73
1429.98
1448.92
1466.49
1482.66
1497.41
1510.72
1522.6
1533.06
1542.12
1549.83
1556.21
1561.32
1565.22
1567.95
1569.6
1570.23
1569.9
1568.71
1566.72
1564.01
1560.66
1556.73
1552.32
1547.48
1542.27
1536.78
1531.04
1525.11
1519.04
1512.85
1506.56
1500.22
1493.82
1487.4
1480.95
1474.47
1467.96
1461.4
1454.79
1448.1
1441.3
1434.37
1427.28
1419.99
1412.48
1404.71
1396.65
1388.26
1379.51
1370.38
1360.84
1350.86
1340.43
1329.52
1318.13
1306.24
1293.85
1280.96
1267.57
1253.68
1239.31
1224.48
1209.19
1193.48
1177.36
1160.87
1144.02
1126.85
1109.4
1091.7
1073.77
1055.67
1037.41
1019.04
1000.6
982.114
963.618
945.146
926.735
908.413
890.21
872.152
854.266
836.573
819.097
801.857
784.872
768.156
751.726
735.594
719.77
704.265
689.086
674.239
659.729
645.56
631.733
618.25
605.11
592.311
579.853
567.73
555.94
544.478
533.337
522.512
511.996
501.783
491.863
482.231
472.876
463.792
454.968
446.397
438.07
429.977
422.11
414.459
407.017
399.773
392.721
385.852
379.157
372.63
366.263
360.049
353.983
348.057
342.268
336.609
331.077
325.668
320.378
315.205
310.146
305.2
300.365
295.637
291.011
286.486
282.058
277.725
273.485
269.333
265.265
261.275
257.358
253.505
249.708
245.956
242.239
238.543
234.854
231.158
227.438
223.679
219.864
215.978
212.006
207.937
203.761
199.471
195.069
190.56
185.958
181.287
176.586
171.908
167.33
162.962
158.959
155.548
153.085
152.156
153.838
160.399
177.729
227.64
464.873
2807.07
1657.71
1324.81
1190.33
1130.46
1106.22
1101.53
1108.55
1122.96
1142.14
1164.42
1188.67
1214.07
1240.03
1266.11
1291.94
1317.27
1341.87
1365.57
1388.22
1409.72
1429.97
1448.91
1466.48
1482.65
1497.4
1510.71
1522.59
1533.05
1542.12
1549.82
1556.21
1561.32
1565.21
1567.95
1569.6
1570.22
1569.9
1568.71
1566.72
1564.01
1560.65
1556.73
1552.31
1547.47
1542.27
1536.77
1531.03
1525.11
1519.04
1512.84
1506.56
1500.21
1493.82
1487.39
1480.94
1474.46
1467.95
1461.39
1454.78
1448.08
1441.29
1434.36
1427.26
1419.98
1412.47
1404.7
1396.63
1388.24
1379.5
1370.37
1360.83
1350.85
1340.41
1329.51
1318.11
1306.22
1293.83
1280.94
1267.55
1253.66
1239.3
1224.46
1209.18
1193.46
1177.35
1160.85
1144
1126.84
1109.39
1091.68
1073.76
1055.65
1037.4
1019.03
1000.59
982.099
963.604
945.133
926.721
908.4
890.197
872.14
854.253
836.562
819.086
801.846
784.861
768.146
751.716
735.584
719.761
704.256
689.077
674.23
659.72
645.551
631.725
618.242
605.102
592.304
579.845
567.723
555.933
544.471
533.33
522.505
511.99
501.776
491.857
482.225
472.87
463.786
454.963
446.392
438.064
429.972
422.104
414.454
407.011
399.768
392.716
385.847
379.152
372.625
366.258
360.045
353.978
348.053
342.263
336.605
331.073
325.664
320.374
315.201
310.143
305.196
300.361
295.633
291.008
286.482
282.055
277.722
273.482
269.33
265.262
261.272
257.355
253.502
249.705
245.954
242.237
238.541
234.852
231.156
227.436
223.677
219.862
215.976
212.005
207.936
203.76
199.471
195.068
190.559
185.957
181.287
176.585
171.907
167.33
162.962
158.958
155.548
153.085
152.156
153.838
160.399
177.731
227.645
464.875
2965.28
1767.5
1417.28
1275.63
1212.67
1187.19
1182.24
1189.52
1204.48
1224.38
1247.43
1272.43
1298.55
1325.16
1351.78
1378.07
1403.74
1428.57
1452.38
1475.05
1496.46
1516.52
1535.18
1552.39
1568.13
1582.37
1595.12
1606.39
1616.2
1624.6
1631.61
1637.29
1641.69
1644.89
1646.95
1647.94
1647.95
1647.05
1645.33
1642.87
1639.75
1636.06
1631.86
1627.25
1622.29
1617.06
1611.6
1605.99
1600.28
1594.49
1588.66
1582.81
1576.97
1571.15
1565.36
1559.59
1553.85
1548.11
1542.36
1536.58
1530.73
1524.78
1518.69
1512.43
1505.96
1499.23
1492.21
1484.84
1477.1
1468.94
1460.33
1451.23
1441.62
1431.47
1420.77
1409.49
1397.62
1385.17
1372.12
1358.48
1344.26
1329.47
1314.12
1298.25
1281.86
1265
1247.68
1229.95
1211.84
1193.38
1174.62
1155.59
1136.33
1116.89
1097.31
1077.62
1057.86
1038.08
1018.32
998.6
978.969
959.455
940.088
920.897
901.909
883.148
864.636
846.395
828.442
810.794
793.465
776.467
759.812
743.508
727.561
711.979
696.763
681.918
667.444
653.34
639.606
626.24
613.236
600.593
588.303
576.361
564.762
553.496
542.558
531.938
521.628
511.619
501.902
492.468
483.307
474.41
465.766
457.366
449.201
441.261
433.537
426.019
418.699
411.568
404.618
397.84
391.228
384.775
378.473
372.317
366.302
360.422
354.672
349.05
343.551
338.173
332.914
327.77
322.735
317.806
312.979
308.251
303.619
299.079
294.626
290.255
285.959
281.732
277.563
273.444
269.363
265.307
261.263
257.215
253.147
249.042
244.883
240.654
236.337
231.92
227.388
222.733
217.951
213.043
208.016
202.887
197.686
192.454
187.253
182.167
177.317
172.873
169.085
166.338
165.273
167.058
174.153
192.938
246.914
501.264
2965.17
1767.31
1417.2
1275.65
1212.68
1187.18
1182.21
1189.5
1204.47
1224.36
1247.41
1272.42
1298.54
1325.14
1351.77
1378.06
1403.73
1428.56
1452.37
1475.04
1496.45
1516.52
1535.18
1552.39
1568.12
1582.36
1595.11
1606.38
1616.2
1624.59
1631.6
1637.28
1641.69
1644.89
1646.95
1647.94
1647.95
1647.05
1645.33
1642.87
1639.75
1636.05
1631.86
1627.25
1622.29
1617.05
1611.6
1605.99
1600.28
1594.49
1588.65
1582.81
1576.96
1571.14
1565.35
1559.58
1553.84
1548.1
1542.35
1536.57
1530.71
1524.76
1518.68
1512.42
1505.95
1499.22
1492.19
1484.83
1477.08
1468.92
1460.31
1451.21
1441.6
1431.46
1420.75
1409.47
1397.61
1385.15
1372.1
1358.46
1344.24
1329.45
1314.1
1298.23
1281.84
1264.98
1247.66
1229.93
1211.82
1193.36
1174.6
1155.57
1136.32
1116.88
1097.29
1077.6
1057.85
1038.07
1018.3
998.586
978.955
959.441
940.075
920.884
901.897
883.136
864.625
846.384
828.431
810.783
793.454
776.457
759.802
743.498
727.552
711.97
696.754
681.909
667.435
653.332
639.598
626.232
613.229
600.585
588.296
576.354
564.755
553.49
542.551
531.931
521.622
511.613
501.896
492.462
483.301
474.404
465.76
457.361
449.196
441.256
433.531
426.014
418.694
411.563
404.613
397.835
391.224
384.77
378.469
372.313
366.297
360.417
354.668
349.046
343.547
338.169
332.91
327.766
322.731
317.802
312.975
308.247
303.616
299.076
294.623
290.252
285.956
281.729
277.56
273.441
269.361
265.305
261.261
257.213
253.145
249.04
244.882
240.652
236.336
231.918
227.387
222.732
217.95
213.042
208.015
202.886
197.685
192.453
187.252
182.166
177.317
172.872
169.084
166.338
165.272
167.057
174.153
192.939
246.919
501.267
3122.74
1880.15
1513.91
1365.52
1299.68
1273.04
1267.8
1275.31
1290.78
1311.31
1335.05
1360.74
1387.47
1414.6
1441.65
1468.25
1494.11
1519.01
1542.78
1565.29
1586.43
1606.13
1624.33
1641
1656.12
1669.68
1681.7
1692.21
1701.22
1708.79
1714.97
1719.82
1723.41
1725.82
1727.11
1727.39
1726.72
1725.21
1722.94
1720
1716.48
1712.47
1708.05
1703.3
1698.3
1693.12
1687.82
1682.46
1677.1
1671.75
1666.44
1661.21
1656.06
1651.01
1646.06
1641.19
1636.4
1631.66
1626.94
1622.21
1617.43
1612.56
1607.54
1602.34
1596.89
1591.15
1585.06
1578.58
1571.66
1564.25
1556.31
1547.8
1538.68
1528.93
1518.53
1507.45
1495.68
1483.21
1470.05
1456.2
1441.65
1426.44
1410.58
1394.1
1377.01
1359.36
1341.18
1322.5
1303.38
1283.84
1263.94
1243.72
1223.23
1202.51
1181.61
1160.57
1139.45
1118.28
1097.11
1075.98
1054.94
1034
1013.22
992.619
972.229
952.079
932.193
912.596
893.306
874.343
855.722
837.459
819.564
802.047
784.917
768.18
751.84
735.899
720.36
705.222
690.484
676.143
662.196
648.637
635.462
622.664
610.236
598.17
586.457
575.09
564.058
553.352
542.963
532.879
523.091
513.588
504.361
495.397
486.688
478.222
469.99
461.981
454.186
446.596
439.201
431.993
424.964
418.106
411.411
404.872
398.485
392.242
386.139
380.171
374.335
368.625
363.04
357.576
352.223
346.979
341.84
336.801
331.859
327.008
322.242
317.556
312.941
308.389
303.891
299.434
295.006
290.594
286.182
281.752
277.289
272.774
268.188
263.514
258.735
253.836
248.805
243.633
238.316
232.857
227.266
221.563
215.782
209.97
204.194
198.551
193.172
188.243
184.039
180.981
179.764
181.662
189.346
209.731
268.164
541.029
3122.32
1879.23
1513.41
1365.53
1299.74
1273.05
1267.79
1275.29
1290.76
1311.29
1335.04
1360.72
1387.45
1414.59
1441.64
1468.23
1494.1
1519
1542.77
1565.28
1586.42
1606.12
1624.32
1640.99
1656.11
1669.68
1681.7
1692.2
1701.22
1708.79
1714.97
1719.82
1723.41
1725.82
1727.11
1727.38
1726.72
1725.21
1722.93
1720
1716.48
1712.46
1708.04
1703.3
1698.3
1693.11
1687.82
1682.46
1677.09
1671.74
1666.43
1661.2
1656.05
1651
1646.05
1641.18
1636.39
1631.65
1626.93
1622.2
1617.42
1612.55
1607.53
1602.32
1596.87
1591.13
1585.05
1578.57
1571.64
1564.23
1556.29
1547.78
1538.66
1528.92
1518.51
1507.43
1495.66
1483.2
1470.03
1456.18
1441.64
1426.42
1410.56
1394.08
1376.99
1359.34
1341.16
1322.48
1303.36
1283.82
1263.92
1243.7
1223.21
1202.49
1181.59
1160.55
1139.43
1118.26
1097.1
1075.97
1054.92
1033.99
1013.21
992.606
972.216
952.066
932.181
912.584
893.294
874.332
855.712
837.448
819.554
802.037
784.908
768.17
751.83
735.89
720.351
705.213
690.475
676.135
662.188
648.629
635.455
622.657
610.229
598.163
586.451
575.083
564.052
553.346
542.956
532.873
523.085
513.583
504.355
495.392
486.682
478.216
469.984
461.976
454.181
446.591
439.196
431.988
424.959
418.101
411.406
404.868
398.48
392.238
386.135
380.167
374.33
368.621
363.036
357.572
352.219
346.975
341.836
336.798
331.855
327.004
322.239
317.552
312.938
308.386
303.888
299.431
295.004
290.592
286.179
281.75
277.287
272.772
268.186
263.512
258.734
253.835
248.804
243.632
238.315
232.856
227.265
221.563
215.781
209.969
204.194
198.551
193.171
188.243
184.039
180.98
179.764
181.662
189.347
209.732
268.169
541.032
3273.3
1996.42
1616.51
1461.01
1392.13
1364.21
1358.57
1366.18
1382.04
1403.12
1427.44
1453.68
1480.9
1508.42
1535.74
1562.48
1588.36
1613.15
1636.69
1658.84
1679.52
1698.65
1716.19
1732.12
1746.43
1759.13
1770.24
1779.8
1787.85
1794.44
1799.65
1803.55
1806.21
1807.72
1808.16
1807.65
1806.26
1804.1
1801.26
1797.85
1793.95
1789.67
1785.08
1780.28
1775.34
1770.33
1765.32
1760.36
1755.51
1750.77
1746.19
1741.78
1737.54
1733.5
1729.62
1725.9
1722.32
1718.83
1715.4
1711.99
1708.54
1704.99
1701.3
1697.39
1693.2
1688.68
1683.75
1678.36
1672.46
1665.98
1658.87
1651.1
1642.62
1633.39
1623.39
1612.6
1601
1588.58
1575.35
1561.31
1546.46
1530.83
1514.44
1497.31
1479.49
1461
1441.9
1422.21
1401.99
1381.3
1360.17
1338.66
1316.83
1294.72
1272.4
1249.9
1227.3
1204.63
1181.94
1159.29
1136.7
1114.23
1091.91
1069.79
1047.88
1026.23
1004.85
983.79
963.056
942.673
922.659
903.029
883.798
864.975
846.57
828.589
811.039
793.921
777.238
760.989
745.173
729.787
714.828
700.29
686.168
672.453
659.14
646.218
633.68
621.515
609.715
598.267
587.161
576.388
565.934
555.79
545.943
536.383
527.098
518.077
509.309
500.783
492.489
484.416
476.555
468.896
461.43
454.148
447.043
440.106
433.332
426.712
420.243
413.917
407.73
401.679
395.758
389.961
384.281
378.712
373.251
367.891
362.628
357.455
352.366
347.353
342.407
337.519
332.676
327.867
323.077
318.29
313.49
308.658
303.776
298.825
293.784
288.635
283.36
277.944
272.375
266.643
260.747
254.69
248.486
242.158
235.743
229.296
222.892
216.637
210.677
205.216
200.554
197.151
195.768
197.789
206.122
228.264
291.577
584.445
3272.68
1992.03
1613.6
1460.57
1392.24
1364.29
1358.58
1366.16
1382.02
1403.1
1427.42
1453.66
1480.88
1508.41
1535.73
1562.47
1588.35
1613.14
1636.68
1658.83
1679.51
1698.64
1716.19
1732.12
1746.43
1759.13
1770.24
1779.8
1787.84
1794.44
1799.65
1803.55
1806.21
1807.71
1808.16
1807.65
1806.26
1804.1
1801.26
1797.85
1793.95
1789.67
1785.08
1780.28
1775.33
1770.32
1765.31
1760.36
1755.5
1750.77
1746.18
1741.77
1737.54
1733.49
1729.61
1725.89
1722.31
1718.82
1715.39
1711.98
1708.52
1704.98
1701.28
1697.37
1693.19
1688.66
1683.73
1678.35
1672.44
1665.96
1658.86
1651.08
1642.6
1633.37
1623.37
1612.58
1600.98
1588.56
1575.33
1561.28
1546.44
1530.81
1514.42
1497.29
1479.47
1460.98
1441.88
1422.19
1401.98
1381.28
1360.15
1338.64
1316.81
1294.71
1272.38
1249.89
1227.28
1204.61
1181.93
1159.27
1136.69
1114.22
1091.9
1069.77
1047.87
1026.21
1004.84
983.778
963.044
942.661
922.648
903.018
883.787
864.965
846.56
828.58
811.029
793.912
777.229
760.98
745.164
729.779
714.82
700.282
686.16
672.446
659.132
646.211
633.673
621.509
609.708
598.26
587.155
576.381
565.928
555.784
545.937
536.377
527.092
518.071
509.303
500.778
492.484
484.411
476.55
468.891
461.425
454.143
447.038
440.102
433.327
426.708
420.238
413.912
407.726
401.674
395.754
389.957
384.276
378.708
373.247
367.887
362.624
357.452
352.363
347.35
342.404
337.516
332.673
327.864
323.074
318.287
313.487
308.656
303.774
298.822
293.782
288.633
283.359
277.943
272.374
266.642
260.746
254.689
248.485
242.157
235.743
229.295
222.892
216.637
210.676
205.215
200.553
197.151
195.767
197.789
206.122
228.265
291.582
584.448
3400.58
2125.16
1733.42
1565.42
1491.32
1461.3
1454.88
1462.36
1478.45
1499.92
1524.68
1551.33
1578.88
1606.62
1634.04
1660.74
1686.43
1710.9
1733.99
1755.57
1775.56
1793.9
1810.57
1825.54
1838.83
1850.46
1860.46
1868.88
1875.79
1881.25
1885.34
1888.15
1889.76
1890.27
1889.79
1888.43
1886.27
1883.44
1880.04
1876.17
1871.94
1867.44
1862.77
1858.01
1853.25
1848.56
1844
1839.63
1835.47
1831.57
1827.94
1824.59
1821.53
1818.74
1816.22
1813.93
1811.84
1809.9
1808.06
1806.25
1804.42
1802.5
1800.4
1798.06
1795.4
1792.35
1788.82
1784.76
1780.08
1774.73
1768.64
1761.77
1754.06
1745.49
1736
1725.59
1714.24
1701.93
1688.67
1674.46
1659.31
1643.26
1626.31
1608.52
1589.91
1570.53
1550.42
1529.65
1508.25
1486.3
1463.84
1440.93
1417.65
1394.03
1370.16
1346.09
1321.88
1297.58
1273.24
1248.92
1224.67
1200.54
1176.55
1152.77
1129.22
1105.94
1082.96
1060.31
1038.01
1016.1
994.577
973.473
952.8
932.57
912.791
893.473
874.62
856.237
838.324
820.883
803.91
787.405
771.361
755.774
740.638
725.944
711.684
697.85
684.431
671.417
658.797
646.559
634.693
623.186
612.027
601.202
590.701
580.509
570.616
561.01
551.677
542.607
533.788
525.209
516.859
508.728
500.806
493.083
485.55
478.199
471.023
464.013
457.164
450.468
443.921
437.516
431.25
425.112
419.094
413.192
407.4
401.71
396.118
390.615
385.193
379.844
374.557
369.32
364.121
358.945
353.777
348.599
343.393
338.138
332.815
327.401
321.877
316.222
310.418
304.448
298.3
291.965
285.443
278.738
271.868
264.859
257.753
250.612
243.52
236.595
229.995
223.949
218.783
215.001
213.433
215.589
224.633
248.706
317.359
631.808
3406.05
2105.45
1719.49
1562.16
1491.01
1461.39
1454.92
1462.36
1478.43
1499.9
1524.67
1551.32
1578.87
1606.61
1634.03
1660.73
1686.42
1710.9
1733.98
1755.56
1775.55
1793.9
1810.56
1825.54
1838.83
1850.45
1860.46
1868.88
1875.79
1881.25
1885.34
1888.15
1889.76
1890.27
1889.79
1888.43
1886.27
1883.44
1880.04
1876.17
1871.94
1867.44
1862.77
1858.01
1853.25
1848.55
1843.99
1839.62
1835.47
1831.57
1827.93
1824.58
1821.52
1818.74
1816.21
1813.92
1811.83
1809.89
1808.05
1806.24
1804.41
1802.48
1800.38
1798.04
1795.39
1792.33
1788.81
1784.74
1780.06
1774.71
1768.62
1761.75
1754.04
1745.47
1735.98
1725.57
1714.22
1701.91
1688.65
1674.44
1659.29
1643.23
1626.29
1608.5
1589.89
1570.51
1550.4
1529.63
1508.23
1486.28
1463.82
1440.91
1417.63
1394.01
1370.14
1346.07
1321.86
1297.56
1273.22
1248.91
1224.66
1200.52
1176.54
1152.75
1129.21
1105.92
1082.95
1060.3
1038
1016.08
994.565
973.462
952.789
932.559
912.781
893.463
874.61
856.227
838.315
820.873
803.902
787.396
771.353
755.766
740.63
725.936
711.677
697.843
684.424
671.41
658.79
646.552
634.687
623.18
612.02
601.196
590.694
580.503
570.61
561.004
551.671
542.601
533.782
525.203
516.854
508.723
500.8
493.077
485.545
478.194
471.018
464.008
457.159
450.463
443.916
437.512
431.246
425.107
419.09
413.188
407.395
401.706
396.114
390.611
385.19
379.84
374.553
369.317
364.118
358.942
353.774
348.596
343.39
338.136
332.812
327.399
321.875
316.22
310.416
304.446
298.298
291.964
285.441
278.737
271.867
264.858
257.752
250.611
243.52
236.594
229.995
223.948
218.782
215
213.432
215.589
224.633
248.708
317.365
631.812
3437
2308.09
1889.97
1687.56
1599.91
1565.17
1557.07
1564.04
1580.12
1601.8
1626.84
1653.73
1681.43
1709.2
1736.5
1762.94
1788.23
1812.14
1834.54
1855.3
1874.36
1891.67
1907.21
1920.99
1933.03
1943.37
1952.05
1959.15
1964.73
1968.89
1971.7
1973.28
1973.73
1973.16
1971.68
1969.4
1966.45
1962.94
1958.99
1954.7
1950.19
1945.57
1940.92
1936.33
1931.9
1927.7
1923.78
1920.21
1917
1914.17
1911.76
1909.76
1908.16
1906.95
1906.1
1905.56
1905.29
1905.22
1905.3
1905.43
1905.55
1905.56
1905.38
1904.91
1904.07
1902.77
1900.91
1898.41
1895.19
1891.18
1886.31
1880.51
1873.74
1865.95
1857.09
1847.16
1836.12
1823.98
1810.72
1796.36
1780.92
1764.42
1746.89
1728.38
1708.93
1688.58
1667.39
1645.43
1622.76
1599.43
1575.52
1551.09
1526.22
1500.97
1475.42
1449.63
1423.66
1397.59
1371.46
1345.33
1319.27
1293.32
1267.54
1241.96
1216.62
1191.58
1166.86
1142.49
1118.51
1094.93
1071.79
1049.1
1026.87
1005.12
983.862
963.104
942.85
923.106
903.873
885.152
866.939
849.233
832.028
815.319
799.098
783.357
768.087
753.278
738.92
725.001
711.509
698.432
685.758
673.473
661.565
650.02
638.825
627.967
617.432
607.208
597.281
587.639
578.269
569.16
560.299
551.674
543.276
535.094
527.117
519.337
511.745
504.332
497.091
490.015
483.097
476.33
469.709
463.221
456.859
450.616
444.486
438.46
432.531
426.691
420.929
415.235
409.598
404.004
398.438
392.884
387.324
381.74
376.11
370.412
364.625
358.725
352.69
346.498
340.129
333.567
326.798
319.815
312.617
305.212
297.619
289.869
282.011
274.112
266.268
258.607
251.307
244.617
238.896
234.695
232.922
235.226
245.05
271.241
345.732
683.433
3505
2224.53
1837.04
1673.23
1597.22
1564.86
1557.07
1564.04
1580.11
1601.78
1626.82
1653.72
1681.42
1709.19
1736.49
1762.93
1788.22
1812.14
1834.53
1855.3
1874.35
1891.66
1907.21
1920.99
1933.03
1943.37
1952.05
1959.15
1964.73
1968.89
1971.7
1973.28
1973.73
1973.16
1971.68
1969.4
1966.45
1962.94
1958.99
1954.7
1950.19
1945.56
1940.91
1936.33
1931.9
1927.69
1923.78
1920.2
1916.99
1914.17
1911.75
1909.75
1908.15
1906.94
1906.09
1905.55
1905.28
1905.21
1905.28
1905.42
1905.53
1905.54
1905.36
1904.9
1904.06
1902.75
1900.89
1898.39
1895.17
1891.16
1886.29
1880.49
1873.72
1865.92
1857.07
1847.14
1836.1
1823.95
1810.7
1796.34
1780.9
1764.4
1746.87
1728.36
1708.9
1688.56
1667.37
1645.41
1622.73
1599.41
1575.5
1551.07
1526.2
1500.95
1475.4
1449.61
1423.65
1397.57
1371.44
1345.32
1319.26
1293.31
1267.52
1241.94
1216.61
1191.57
1166.84
1142.48
1118.5
1094.92
1071.78
1049.08
1026.86
1005.11
983.851
963.093
942.84
923.097
903.864
885.142
866.93
849.224
832.019
815.31
799.09
783.349
768.079
753.271
738.913
724.994
711.502
698.425
685.751
673.466
661.558
650.013
638.819
627.961
617.426
607.202
597.275
587.633
578.264
569.154
560.293
551.669
543.271
535.088
527.112
519.332
511.74
504.327
497.086
490.01
483.092
476.325
469.704
463.216
456.854
450.611
444.481
438.456
432.527
426.687
420.925
415.232
409.594
404
398.434
392.88
387.321
381.737
376.107
370.41
364.623
358.723
352.688
346.496
340.127
333.565
326.796
319.813
312.616
305.211
297.618
289.868
282.01
274.112
266.267
258.607
251.307
244.616
238.895
234.695
232.922
235.226
245.051
271.243
345.739
683.437
2999.85
2688.55
2094.45
1827.62
1718.21
1676
1665.24
1671.28
1687.11
1708.81
1733.93
1760.87
1788.52
1816.09
1843.05
1868.98
1893.6
1916.7
1938.14
1957.82
1975.68
1991.68
2005.85
2018.18
2028.72
2037.53
2044.68
2050.24
2054.31
2056.98
2058.37
2058.59
2057.77
2056.02
2053.46
2050.24
2046.48
2042.3
2037.83
2033.18
2028.48
2023.83
2019.34
2015.1
2011.18
2007.68
2004.63
2002.11
2000.11
1998.66
1997.77
1997.44
1997.65
1998.36
1999.54
2001.12
2003.04
2005.23
2007.59
2010.03
2012.46
2014.77
2016.85
2018.59
2019.89
2020.64
2020.73
2020.07
2018.56
2016.12
2012.66
2008.13
2002.44
1995.57
1987.46
1978.1
1967.45
1955.51
1942.29
1927.79
1912.04
1895.07
1876.92
1857.63
1837.25
1815.85
1793.48
1770.22
1746.14
1721.31
1695.81
1669.72
1643.13
1616.09
1588.71
1561.04
1533.16
1505.15
1477.07
1448.98
1420.94
1393.03
1365.28
1337.75
1310.48
1283.53
1256.92
1230.69
1204.88
1179.52
1154.62
1130.21
1106.3
1082.92
1060.07
1037.76
1016
994.796
974.145
954.05
934.507
915.515
897.066
879.156
861.776
844.917
828.569
812.721
797.362
782.479
768.06
754.091
740.559
727.449
714.748
702.44
690.513
678.951
667.739
656.865
646.314
636.071
626.124
616.459
607.063
597.925
589.032
580.372
571.936
563.711
555.69
547.861
540.218
532.751
525.454
518.319
511.334
504.489
497.777
491.188
484.715
478.348
472.078
465.896
459.789
453.745
447.751
441.792
435.851
429.909
423.947
417.943
411.874
405.716
399.444
393.034
386.46
379.7
372.732
365.539
358.106
350.427
342.502
334.341
325.966
317.412
308.735
300.01
291.343
282.877
274.808
267.41
261.077
256.415
254.415
256.877
267.557
296.07
376.939
739.653
3543.91
2353.6
1971.33
1796.06
1711.59
1674.86
1665.09
1671.26
1687.1
1708.79
1733.92
1760.86
1788.5
1816.08
1843.04
1868.97
1893.6
1916.7
1938.14
1957.81
1975.67
1991.68
2005.84
2018.18
2028.72
2037.53
2044.68
2050.24
2054.31
2056.98
2058.37
2058.6
2057.77
2056.02
2053.47
2050.24
2046.48
2042.3
2037.83
2033.18
2028.48
2023.83
2019.34
2015.09
2011.18
2007.67
2004.63
2002.1
2000.1
1998.66
1997.77
1997.44
1997.64
1998.36
1999.53
2001.11
2003.03
2005.22
2007.58
2010.02
2012.45
2014.75
2016.83
2018.57
2019.87
2020.62
2020.71
2020.05
2018.54
2016.1
2012.64
2008.1
2002.42
1995.55
1987.44
1978.07
1967.42
1955.49
1942.26
1927.77
1912.02
1895.05
1876.89
1857.6
1837.22
1815.82
1793.46
1770.2
1746.12
1721.29
1695.79
1669.7
1643.1
1616.07
1588.69
1561.02
1533.14
1505.13
1477.05
1448.96
1420.93
1393.01
1365.26
1337.73
1310.47
1283.51
1256.9
1230.68
1204.87
1179.5
1154.61
1130.2
1106.29
1082.91
1060.06
1037.75
1015.99
994.786
974.135
954.04
934.498
915.506
897.058
879.148
861.768
844.909
828.561
812.713
797.354
782.472
768.053
754.084
740.552
727.442
714.741
702.434
690.506
678.944
667.733
656.859
646.307
636.065
626.118
616.453
607.058
597.919
589.026
580.367
571.93
563.706
555.684
547.856
540.213
532.746
525.449
518.314
511.329
504.485
497.772
491.184
484.71
478.344
472.074
465.892
459.785
453.741
447.748
441.788
435.847
429.906
423.944
417.94
411.871
405.713
399.442
393.031
386.458
379.698
372.731
365.537
358.105
350.426
342.501
334.34
325.965
317.411
308.734
300.009
291.342
282.876
274.807
267.409
261.077
256.415
254.415
256.877
267.558
296.072
376.946
739.656
2993.18
2869.95
2237.7
1957.96
1839.58
1792.24
1779.02
1783.99
1799.4
1820.93
1845.94
1872.71
1900.07
1927.21
1953.55
1978.71
2002.38
2024.38
2044.57
2062.87
2079.23
2093.65
2106.15
2116.76
2125.55
2132.59
2137.96
2141.77
2144.13
2145.15
2144.96
2143.7
2141.49
2138.48
2134.81
2130.61
2126.04
2121.21
2116.28
2111.36
2106.59
2102.06
2097.9
2094.19
2091.02
2088.46
2086.57
2085.38
2084.92
2085.18
2086.18
2087.9
2090.3
2093.33
2096.95
2101.06
2105.6
2110.45
2115.51
2120.68
2125.82
2130.82
2135.54
2139.86
2143.64
2146.78
2149.13
2150.59
2151.05
2150.42
2148.59
2145.5
2141.07
2135.26
2128.01
2119.3
2109.1
2097.41
2084.24
2069.6
2053.52
2036.03
2017.18
1997.03
1975.64
1953.07
1929.41
1904.72
1879.09
1852.61
1825.38
1797.47
1768.97
1739.99
1710.59
1680.87
1650.9
1620.77
1590.56
1560.32
1530.15
1500.08
1470.2
1440.55
1411.19
1382.16
1353.51
1325.28
1297.49
1270.19
1243.39
1217.13
1191.42
1166.27
1141.7
1117.73
1094.35
1071.58
1049.4
1027.83
1006.87
986.496
966.718
947.523
928.905
910.852
893.354
876.399
859.974
844.066
828.661
813.745
799.302
785.318
771.777
758.664
745.963
733.658
721.734
710.176
698.969
688.096
677.545
667.3
657.347
647.674
638.266
629.112
620.199
611.517
603.053
594.799
586.744
578.878
571.194
563.683
556.33
549.125
542.058
535.12
528.302
521.591
514.979
508.452
501.997
495.601
489.248
482.919
476.597
470.261
463.887
457.453
450.932
444.298
437.523
430.581
423.443
416.085
408.484
400.62
392.481
384.057
375.351
366.376
357.155
347.73
338.162
328.537
318.971
309.624
300.712
292.536
285.531
280.359
278.106
280.739
292.355
323.411
411.238
800.82
3532.54
2478.69
2118.5
1929.01
1833.44
1791.13
1778.86
1783.97
1799.39
1820.92
1845.93
1872.7
1900.06
1927.2
1953.55
1978.7
2002.38
2024.38
2044.56
2062.86
2079.23
2093.65
2106.15
2116.76
2125.55
2132.59
2137.96
2141.77
2144.13
2145.15
2144.97
2143.7
2141.5
2138.49
2134.81
2130.62
2126.04
2121.22
2116.28
2111.36
2106.59
2102.06
2097.9
2094.18
2091.01
2088.45
2086.57
2085.38
2084.91
2085.18
2086.18
2087.89
2090.29
2093.32
2096.94
2101.05
2105.58
2110.43
2115.5
2120.66
2125.8
2130.8
2135.52
2139.84
2143.62
2146.75
2149.11
2150.57
2151.03
2150.39
2148.57
2145.48
2141.05
2135.23
2127.98
2119.27
2109.07
2097.39
2084.21
2069.57
2053.49
2036
2017.16
1997.01
1975.61
1953.05
1929.38
1904.69
1879.07
1852.59
1825.35
1797.44
1768.95
1739.97
1710.57
1680.85
1650.88
1620.75
1590.54
1560.31
1530.13
1500.07
1470.19
1440.54
1411.18
1382.15
1353.5
1325.26
1297.48
1270.17
1243.38
1217.12
1191.4
1166.26
1141.69
1117.72
1094.34
1071.57
1049.39
1027.82
1006.86
986.487
966.709
947.515
928.896
910.843
893.346
876.391
859.966
844.059
828.654
813.738
799.295
785.311
771.77
758.657
745.956
733.652
721.728
710.17
698.962
688.09
677.539
667.294
657.341
647.668
638.26
629.106
620.194
611.511
603.048
594.794
586.738
578.873
571.189
563.678
556.325
549.12
542.053
535.116
528.297
521.587
514.974
508.447
501.993
495.597
489.244
482.915
476.594
470.257
463.884
457.45
450.929
444.295
437.521
430.578
423.441
416.083
408.482
400.619
392.479
384.056
375.35
366.374
357.154
347.729
338.161
328.536
318.971
309.624
300.711
292.535
285.53
280.358
278.105
280.739
292.355
323.414
411.246
800.824
3431.02
2929.71
2325.42
2075.92
1961.98
1913.01
1898.08
1902.04
1916.91
1938.1
1962.79
1989.16
2015.98
2042.4
2067.86
2091.93
2114.35
2134.93
2153.54
2170.14
2184.7
2197.22
2207.76
2216.37
2223.13
2228.13
2231.5
2233.34
2233.79
2232.99
2231.08
2228.2
2224.52
2220.19
2215.36
2210.18
2204.82
2199.41
2194.1
2189.03
2184.32
2180.1
2176.47
2173.54
2171.38
2170.07
2169.66
2170.16
2171.6
2173.97
2177.27
2181.46
2186.49
2192.3
2198.82
2205.93
2213.54
2221.53
2229.76
2238.1
2246.41
2254.52
2262.3
2269.59
2276.24
2282.11
2287.05
2290.94
2293.65
2295.07
2295.09
2293.64
2290.63
2286
2279.72
2271.74
2262.04
2250.63
2237.51
2222.7
2206.24
2188.17
2168.55
2147.44
2124.91
2101.05
2075.94
2049.67
2022.33
1994.04
1964.89
1934.97
1904.4
1873.26
1841.66
1809.68
1777.43
1744.99
1712.44
1679.87
1647.35
1614.96
1582.75
1550.8
1519.16
1487.88
1457.02
1426.6
1396.68
1367.29
1338.44
1310.18
1282.52
1255.48
1229.07
1203.3
1178.18
1153.72
1129.91
1106.76
1084.27
1062.43
1041.22
1020.66
1000.72
981.391
962.667
944.533
926.974
909.977
893.525
877.604
862.196
847.287
832.858
818.893
805.376
792.288
779.615
767.339
755.443
743.911
732.728
721.878
711.345
701.116
691.175
681.51
672.106
662.952
654.036
645.345
636.87
628.599
620.523
612.631
604.907
597.339
589.917
582.63
575.466
568.413
561.459
554.589
547.788
541.04
534.327
527.629
520.925
514.191
507.401
500.529
493.547
486.424
479.131
471.636
463.91
455.926
447.659
439.087
430.196
420.979
411.438
401.586
391.453
381.086
370.552
359.947
349.401
339.09
329.253
320.222
312.476
306.741
304.206
307.023
319.661
353.5
448.911
867.306
3257.68
2613.62
2271.25
2067.31
1960.97
1913.07
1898.18
1902.08
1916.92
1938.09
1962.78
1989.15
2015.97
2042.39
2067.85
2091.92
2114.34
2134.92
2153.54
2170.14
2184.7
2197.22
2207.76
2216.37
2223.13
2228.14
2231.5
2233.34
2233.79
2232.99
2231.08
2228.21
2224.53
2220.19
2215.36
2210.19
2204.82
2199.41
2194.1
2189.03
2184.32
2180.1
2176.47
2173.54
2171.38
2170.06
2169.65
2170.15
2171.59
2173.96
2177.26
2181.45
2186.48
2192.29
2198.8
2205.92
2213.53
2221.51
2229.75
2238.09
2246.39
2254.5
2262.28
2269.57
2276.22
2282.09
2287.03
2290.92
2293.62
2295.04
2295.07
2293.61
2290.6
2285.98
2279.69
2271.71
2262.01
2250.6
2237.48
2222.67
2206.21
2188.14
2168.52
2147.41
2124.89
2101.03
2075.91
2049.64
2022.31
1994.02
1964.86
1934.95
1904.37
1873.24
1841.63
1809.66
1777.41
1744.97
1712.42
1679.85
1647.33
1614.94
1582.73
1550.78
1519.15
1487.87
1457
1426.59
1396.67
1367.27
1338.43
1310.17
1282.51
1255.46
1229.05
1203.29
1178.17
1153.71
1129.9
1106.75
1084.26
1062.42
1041.22
1020.65
1000.71
981.382
962.659
944.524
926.966
909.969
893.517
877.596
862.189
847.279
832.851
818.886
805.369
792.282
779.608
767.332
755.436
743.905
732.722
721.872
711.339
701.11
691.169
681.504
672.101
662.947
654.03
645.34
636.864
628.594
620.518
612.626
604.902
597.334
589.912
582.625
575.461
568.409
561.454
554.584
547.784
541.036
534.323
527.625
520.921
514.187
507.398
500.526
493.544
486.421
479.128
471.633
463.908
455.924
447.657
439.085
430.195
420.978
411.436
401.585
391.452
381.085
370.551
359.946
349.4
339.089
329.252
320.222
312.476
306.741
304.206
307.023
319.662
353.503
448.92
867.31
15514
4374.41
2612.99
2226.51
2093.28
2039.55
2022.53
2025.38
2039.57
2060.24
2084.39
2110.1
2136.09
2161.5
2185.74
2208.41
2229.23
2248.05
2264.75
2279.31
2291.72
2302.03
2310.28
2316.58
2321.03
2323.74
2324.86
2324.51
2322.86
2320.07
2316.29
2311.7
2306.47
2300.77
2294.76
2288.63
2282.53
2276.62
2271.06
2265.99
2261.54
2257.85
2255.02
2253.15
2252.32
2252.61
2254.05
2256.65
2260.42
2265.35
2271.42
2278.57
2286.74
2295.84
2305.77
2316.41
2327.62
2339.26
2351.17
2363.19
2375.14
2386.85
2398.13
2408.82
2418.74
2427.71
2435.59
2442.22
2447.46
2451.19
2453.29
2453.66
2452.22
2448.91
2443.68
2436.49
2427.33
2416.2
2403.11
2388.09
2371.19
2352.45
2331.94
2309.74
2285.94
2260.62
2233.89
2205.86
2176.64
2146.33
2115.06
2082.93
2050.05
2016.54
1982.51
1948.07
1913.31
1878.33
1843.24
1808.11
1773.04
1738.1
1703.37
1668.92
1634.81
1601.09
1567.82
1535.05
1502.82
1471.16
1440.11
1409.69
1379.93
1350.84
1322.45
1294.75
1267.77
1241.49
1215.94
1191.1
1166.97
1143.55
1120.83
1098.8
1077.45
1056.76
1036.73
1017.34
998.58
980.425
962.863
945.876
929.447
913.558
898.191
883.328
868.951
855.04
841.579
828.549
815.932
803.711
791.869
780.389
769.253
758.448
747.956
737.763
727.855
718.218
708.838
699.703
690.801
682.121
673.651
665.375
657.278
649.349
641.574
633.94
626.435
619.044
611.752
604.544
597.402
590.308
583.24
576.176
569.092
561.962
554.755
547.444
539.994
532.374
524.55
516.487
508.153
499.517
490.552
481.236
471.551
461.49
451.057
440.267
429.153
417.768
406.187
394.517
382.902
371.537
360.687
350.718
342.156
335.798
332.949
335.961
349.715
386.593
490.26
939.504
3229.39
2808.45
2423.17
2205.58
2092.1
2039.98
2022.79
2025.47
2039.6
2060.24
2084.38
2110.09
2136.08
2161.5
2185.74
2208.4
2229.23
2248.04
2264.75
2279.31
2291.72
2302.03
2310.29
2316.59
2321.03
2323.75
2324.86
2324.52
2322.87
2320.07
2316.3
2311.71
2306.48
2300.77
2294.77
2288.63
2282.53
2276.62
2271.06
2265.99
2261.54
2257.85
2255.02
2253.15
2252.32
2252.6
2254.04
2256.64
2260.41
2265.34
2271.41
2278.56
2286.73
2295.83
2305.76
2316.39
2327.61
2339.25
2351.16
2363.17
2375.12
2386.82
2398.11
2408.8
2418.71
2427.69
2435.57
2442.2
2447.44
2451.16
2453.26
2453.63
2452.19
2448.88
2443.65
2436.46
2427.3
2416.17
2403.08
2388.06
2371.16
2352.42
2331.91
2309.71
2285.91
2260.6
2233.87
2205.84
2176.61
2146.31
2115.03
2082.9
2050.03
2016.52
1982.49
1948.05
1913.29
1878.31
1843.22
1808.09
1773.02
1738.09
1703.36
1668.9
1634.79
1601.07
1567.81
1535.04
1502.81
1471.15
1440.1
1409.68
1379.92
1350.83
1322.43
1294.74
1267.75
1241.48
1215.93
1191.09
1166.96
1143.54
1120.82
1098.79
1077.44
1056.75
1036.72
1017.34
998.572
980.417
962.855
945.868
929.44
913.551
898.184
883.321
868.944
855.034
841.572
828.542
815.926
803.705
791.863
780.382
769.247
758.442
747.95
737.757
727.849
718.212
708.832
699.698
690.796
682.115
673.645
665.369
657.273
649.344
641.568
633.935
626.43
619.039
611.747
604.539
597.398
590.303
583.236
576.172
569.088
561.958
554.752
547.44
539.991
532.371
524.547
516.484
508.151
499.515
490.55
481.234
471.549
461.489
451.055
440.266
429.152
417.767
406.186
394.516
382.901
371.537
360.687
350.718
342.156
335.798
332.949
335.961
349.715
386.596
490.269
939.508
15673.3
4759.79
2809.41
2375.21
2229.71
2171.48
2152.29
2153.91
2167.28
2187.21
2210.58
2235.36
2260.22
2284.29
2306.97
2327.86
2346.72
2363.4
2377.83
2389.98
2399.9
2407.64
2413.29
2416.97
2418.82
2418.97
2417.59
2414.84
2410.91
2405.96
2400.2
2393.8
2386.96
2379.87
2372.71
2365.67
2358.92
2352.64
2346.99
2342.12
2338.18
2335.28
2333.56
2333.1
2333.99
2336.29
2340.01
2345.18
2351.78
2359.79
2369.16
2379.83
2391.7
2404.67
2418.59
2433.34
2448.73
2464.6
2480.75
2496.99
2513.11
2528.92
2544.19
2558.73
2572.34
2584.82
2596
2605.69
2613.75
2620.04
2624.43
2626.8
2627.08
2625.2
2621.1
2614.75
2606.13
2595.26
2582.16
2566.85
2549.4
2529.87
2508.34
2484.9
2459.64
2432.68
2404.14
2374.14
2342.81
2310.26
2276.63
2242.04
2206.62
2170.5
2133.8
2096.63
2059.12
2021.37
1983.48
1945.56
1907.71
1870
1832.52
1795.35
1758.55
1722.18
1686.32
1650.99
1616.26
1582.16
1548.72
1515.98
1483.96
1452.67
1422.14
1392.38
1363.39
1335.17
1307.74
1281.09
1255.22
1230.11
1205.77
1182.17
1159.32
1137.19
1115.77
1095.05
1075
1055.62
1036.88
1018.77
1001.26
984.335
967.978
952.169
936.886
922.11
907.822
894.002
880.632
867.691
855.162
843.026
831.266
819.864
808.804
798.069
787.643
777.512
767.661
758.076
748.743
739.65
730.784
722.126
713.66
705.372
697.249
689.276
681.437
673.716
666.097
658.561
651.088
643.657
636.244
628.824
621.368
613.848
606.23
598.481
590.565
582.444
574.081
565.439
556.48
547.171
537.48
527.383
516.863
505.91
494.528
482.736
470.569
458.087
445.374
432.548
419.77
407.255
395.295
384.295
374.834
367.788
364.586
367.805
382.772
422.967
535.608
1017.82
3512.95
3113.26
2575.31
2343.03
2226.19
2171.51
2152.5
2154.01
2167.31
2187.22
2210.58
2235.35
2260.21
2284.28
2306.96
2327.86
2346.72
2363.4
2377.83
2389.98
2399.9
2407.64
2413.29
2416.98
2418.82
2418.97
2417.59
2414.85
2410.91
2405.97
2400.2
2393.81
2386.97
2379.87
2372.71
2365.67
2358.92
2352.64
2346.99
2342.12
2338.18
2335.28
2333.56
2333.1
2333.99
2336.28
2340.01
2345.17
2351.77
2359.78
2369.15
2379.82
2391.69
2404.65
2418.58
2433.32
2448.71
2464.58
2480.73
2496.97
2513.09
2528.89
2544.17
2558.71
2572.31
2584.79
2595.97
2605.66
2613.73
2620.01
2624.39
2626.77
2627.05
2625.17
2621.06
2614.71
2606.1
2595.23
2582.13
2566.82
2549.37
2529.84
2508.31
2484.87
2459.61
2432.65
2404.12
2374.12
2342.78
2310.23
2276.6
2242.01
2206.6
2170.47
2133.77
2096.61
2059.1
2021.35
1983.46
1945.54
1907.69
1869.98
1832.5
1795.33
1758.53
1722.17
1686.3
1650.98
1616.25
1582.15
1548.71
1515.97
1483.94
1452.66
1422.13
1392.36
1363.37
1335.16
1307.73
1281.08
1255.21
1230.1
1205.76
1182.16
1159.31
1137.18
1115.76
1095.04
1075
1055.61
1036.88
1018.76
1001.25
984.328
967.971
952.162
936.879
922.103
907.815
893.996
880.625
867.685
855.156
843.02
831.26
819.858
808.798
798.063
787.637
777.506
767.655
758.07
748.737
739.644
730.779
722.12
713.654
705.367
697.244
689.27
681.432
673.711
666.092
658.556
651.083
643.652
636.239
628.819
621.364
613.844
606.226
598.477
590.561
582.441
574.078
565.436
556.477
547.168
537.478
527.381
516.861
505.908
494.527
482.735
470.568
458.086
445.373
432.547
419.769
407.254
395.295
384.295
374.834
367.788
364.586
367.805
382.773
422.97
535.618
1017.83
15932.3
5012.85
2979.52
2523.34
2370.18
2308.33
2287.13
2287.49
2299.88
2318.88
2341.19
2364.72
2388.12
2410.48
2431.22
2449.96
2466.47
2480.62
2492.37
2501.74
2508.79
2513.6
2516.31
2517.06
2516.01
2513.34
2509.23
2503.87
2497.48
2490.25
2482.39
2474.12
2465.65
2457.17
2448.91
2441.05
2433.78
2427.3
2421.77
2417.36
2414.21
2412.46
2412.22
2413.58
2416.62
2421.41
2427.94
2436.21
2446.21
2457.88
2471.18
2485.99
2502.2
2519.67
2538.25
2557.74
2577.95
2598.67
2619.68
2640.73
2661.6
2682.05
2701.82
2720.7
2738.44
2754.84
2769.67
2782.77
2793.94
2803.03
2809.91
2814.45
2816.58
2816.2
2813.28
2807.78
2799.7
2789.04
2775.84
2760.14
2742.01
2721.53
2698.8
2673.91
2647
2618.18
2587.6
2555.38
2521.67
2486.62
2450.36
2413.04
2374.81
2335.8
2296.15
2255.99
2215.45
2174.65
2133.71
2092.74
2051.84
2011.11
1970.64
1930.51
1890.79
1851.56
1812.88
1774.79
1737.36
1700.62
1664.61
1629.37
1594.91
1561.26
1528.44
1496.45
1465.31
1435.02
1405.58
1377
1349.26
1322.35
1296.27
1271.02
1246.56
1222.89
1200
1177.86
1156.46
1135.77
1115.79
1096.48
1077.83
1059.81
1042.41
1025.61
1009.37
993.689
978.534
963.888
949.73
936.04
922.797
909.981
897.574
885.557
873.912
862.62
851.666
841.032
830.703
820.663
810.897
801.392
792.132
783.095
774.266
765.629
757.167
748.865
740.704
732.667
724.735
716.886
709.098
701.346
693.604
685.842
678.03
670.133
662.115
653.938
645.561
636.943
628.041
618.813
609.218
599.218
588.778
577.87
566.475
554.582
542.196
529.337
516.045
502.384
488.449
474.371
460.327
446.557
433.383
421.251
410.799
402.991
399.394
402.827
419.113
462.92
585.305
1102.7
15567.9
4662.57
2903.93
2509.87
2368.44
2308.41
2287.32
2287.59
2299.92
2318.89
2341.19
2364.72
2388.11
2410.48
2431.22
2449.96
2466.47
2480.62
2492.38
2501.74
2508.79
2513.61
2516.32
2517.07
2516.02
2513.34
2509.23
2503.88
2497.48
2490.25
2482.4
2474.13
2465.65
2457.18
2448.91
2441.05
2433.79
2427.3
2421.78
2417.36
2414.21
2412.46
2412.21
2413.57
2416.62
2421.41
2427.93
2436.2
2446.2
2457.87
2471.17
2485.98
2502.19
2519.66
2538.23
2557.72
2577.93
2598.65
2619.66
2640.71
2661.58
2682.02
2701.8
2720.67
2738.41
2754.81
2769.64
2782.73
2793.9
2803
2809.87
2814.42
2816.54
2816.17
2813.25
2807.75
2799.66
2789
2775.8
2760.1
2741.98
2721.5
2698.76
2673.88
2646.97
2618.15
2587.57
2555.35
2521.64
2486.59
2450.33
2413.02
2374.78
2335.77
2296.12
2255.96
2215.43
2174.63
2133.69
2092.72
2051.83
2011.1
1970.62
1930.49
1890.78
1851.55
1812.86
1774.78
1737.35
1700.61
1664.6
1629.35
1594.9
1561.25
1528.42
1496.44
1465.3
1435.01
1405.57
1376.99
1349.25
1322.34
1296.27
1271.01
1246.55
1222.88
1199.99
1177.85
1156.45
1135.77
1115.78
1096.47
1077.82
1059.81
1042.41
1025.6
1009.37
993.682
978.528
963.882
949.724
936.033
922.79
909.975
897.568
885.551
873.905
862.614
851.66
841.026
830.697
820.657
810.892
801.386
792.127
783.09
774.261
765.623
757.162
748.859
740.699
732.662
724.73
716.881
709.093
701.341
693.599
685.838
678.026
670.129
662.111
653.935
645.558
636.94
628.038
618.81
609.216
599.216
588.776
577.868
566.473
554.581
542.195
529.336
516.044
502.383
488.448
474.37
460.326
446.556
433.382
421.251
410.799
402.991
399.394
402.828
419.114
462.924
585.316
1102.7
16406
5207.32
3146.12
2674.03
2514.64
2449.86
2426.89
2425.96
2437.21
2455.02
2475.98
2497.94
2519.5
2539.77
2558.17
2574.33
2588.07
2599.28
2607.95
2614.13
2617.92
2619.45
2618.87
2616.37
2612.13
2606.37
2599.3
2591.15
2582.14
2572.51
2562.49
2552.31
2542.2
2532.4
2523.12
2514.58
2506.99
2500.53
2495.4
2491.76
2489.76
2489.55
2491.23
2494.9
2500.62
2508.46
2518.37
2530.38
2544.42
2560.44
2578.34
2598
2619.26
2641.97
2665.9
2690.86
2716.59
2742.85
2769.37
2795.89
2822.11
2847.77
2872.59
2896.29
2918.63
2939.35
2958.22
2975.03
2989.59
3001.72
3011.28
3018.14
3022.2
3023.39
3021.67
3017
3009.39
2998.85
2985.42
2969.18
2950.2
2928.57
2904.42
2877.86
2849.04
2818.1
2785.19
2750.47
2714.1
2676.23
2637.04
2596.69
2555.33
2513.12
2470.21
2426.76
2382.89
2338.75
2294.47
2250.16
2205.94
2161.92
2118.19
2074.84
2031.96
1989.62
1947.88
1906.81
1866.46
1826.88
1788.1
1750.16
1713.08
1676.89
1641.61
1607.24
1573.8
1541.29
1509.71
1479.05
1449.32
1420.49
1392.57
1365.54
1339.38
1314.08
1289.62
1265.98
1243.14
1221.08
1199.77
1179.2
1159.35
1140.18
1121.69
1103.83
1086.6
1069.96
1053.9
1038.39
1023.41
1008.94
994.956
981.437
968.362
955.712
943.466
931.606
920.113
908.969
898.158
887.662
877.464
867.55
857.901
848.493
839.31
830.335
821.548
812.933
804.468
796.135
787.909
779.769
771.688
763.638
755.589
747.509
739.362
731.11
722.711
714.123
705.3
696.196
686.761
676.949
666.714
656.012
644.805
633.06
620.755
607.878
594.434
580.443
565.95
551.026
535.776
520.343
504.926
489.787
475.285
461.91
450.367
441.713
437.671
441.327
459.039
506.776
639.72
1194.58
16274.1
5129.51
3133.09
2671.77
2514.51
2450.07
2427.06
2426.05
2437.25
2455.04
2475.99
2497.94
2519.5
2539.77
2558.17
2574.33
2588.07
2599.28
2607.95
2614.13
2617.92
2619.45
2618.88
2616.38
2612.14
2606.38
2599.31
2591.16
2582.15
2572.52
2562.49
2552.31
2542.21
2532.41
2523.13
2514.59
2506.99
2500.53
2495.4
2491.76
2489.76
2489.55
2491.22
2494.89
2500.62
2508.45
2518.37
2530.37
2544.41
2560.43
2578.33
2597.98
2619.25
2641.95
2665.88
2690.84
2716.57
2742.83
2769.35
2795.86
2822.08
2847.74
2872.56
2896.26
2918.6
2939.32
2958.19
2975
2989.55
3001.68
3011.24
3018.1
3022.16
3023.36
3021.63
3016.96
3009.35
2998.81
2985.39
2969.15
2950.17
2928.54
2904.38
2877.83
2849.01
2818.07
2785.16
2750.44
2714.07
2676.21
2637.02
2596.66
2555.3
2513.1
2470.19
2426.73
2382.87
2338.73
2294.45
2250.14
2205.92
2161.9
2118.17
2074.82
2031.94
1989.6
1947.87
1906.8
1866.45
1826.87
1788.09
1750.15
1713.07
1676.88
1641.6
1607.23
1573.79
1541.28
1509.7
1479.04
1449.31
1420.48
1392.56
1365.53
1339.37
1314.07
1289.61
1265.97
1243.13
1221.07
1199.77
1179.2
1159.34
1140.18
1121.68
1103.82
1086.59
1069.95
1053.89
1038.38
1023.41
1008.93
994.95
981.431
968.356
955.706
943.46
931.6
920.107
908.964
898.152
887.656
877.459
867.545
857.895
848.487
839.305
830.329
821.543
812.927
804.463
796.129
787.904
779.764
771.683
763.633
755.585
747.505
739.358
731.106
722.707
714.12
705.297
696.192
686.758
676.946
666.711
656.01
644.802
633.058
620.753
607.877
594.432
580.442
565.949
551.025
535.775
520.343
504.925
489.787
475.284
461.91
450.366
441.713
437.671
441.327
459.041
506.779
639.731
1194.58
16631.9
5255.44
3317.93
2833.33
2664.89
2596.42
2571.52
2569.17
2579.07
2595.42
2614.7
2634.71
2654.03
2671.79
2687.41
2700.56
2711.08
2718.9
2724.06
2726.65
2726.79
2724.66
2720.46
2714.39
2706.69
2697.6
2687.36
2676.24
2664.49
2652.37
2640.14
2628.06
2616.37
2605.34
2595.19
2586.17
2578.48
2572.34
2567.94
2565.46
2565.05
2566.86
2570.99
2577.53
2586.56
2598.07
2612.07
2628.51
2647.34
2668.46
2691.75
2717.04
2744.16
2772.89
2802.98
2834.18
2866.2
2898.74
2931.49
2964.14
2996.37
3027.85
3058.27
3087.32
3114.71
3140.17
3163.44
3184.28
3202.48
3217.85
3230.25
3239.53
3245.59
3248.37
3247.81
3243.91
3236.66
3226.1
3212.29
3195.3
3175.24
3152.22
3126.38
3097.87
3066.84
3033.46
2997.9
2960.34
2920.97
2879.95
2837.49
2793.75
2748.91
2703.16
2656.66
2609.57
2562.04
2514.24
2466.29
2418.33
2370.49
2322.88
2275.6
2228.76
2182.44
2136.73
2091.7
2047.4
2003.91
1961.25
1919.49
1878.65
1838.76
1799.85
1761.93
1725.01
1689.1
1654.21
1620.34
1587.48
1555.62
1524.75
1494.87
1465.95
1437.99
1410.95
1384.83
1359.6
1335.23
1311.72
1289.02
1267.12
1246
1225.62
1205.97
1187.01
1168.73
1151.1
1134.09
1117.68
1101.85
1086.57
1071.82
1057.57
1043.81
1030.5
1017.64
1005.21
993.166
981.508
970.212
959.261
948.636
938.32
928.289
918.522
908.999
899.702
890.611
881.703
872.958
864.352
855.861
847.458
839.113
830.796
822.472
814.105
805.654
797.077
788.326
779.354
770.109
760.538
750.587
740.202
729.331
717.925
705.939
693.338
680.094
666.194
651.64
636.455
620.688
604.415
587.752
570.858
553.951
537.323
521.368
506.629
493.881
484.29
479.744
483.625
502.877
554.878
699.248
1293.92
16581
5251.32
3324.54
2835.69
2665.64
2596.74
2571.68
2569.25
2579.11
2595.44
2614.7
2634.71
2654.03
2671.79
2687.41
2700.56
2711.08
2718.91
2724.07
2726.65
2726.8
2724.67
2720.46
2714.4
2706.7
2697.6
2687.37
2676.25
2664.5
2652.38
2640.15
2628.06
2616.38
2605.34
2595.2
2586.17
2578.48
2572.34
2567.94
2565.46
2565.05
2566.86
2570.98
2577.53
2586.55
2598.07
2612.06
2628.5
2647.32
2668.44
2691.73
2717.03
2744.14
2772.87
2802.96
2834.16
2866.17
2898.71
2931.47
2964.11
2996.34
3027.82
3058.23
3087.29
3114.68
3140.14
3163.41
3184.24
3202.44
3217.82
3230.21
3239.49
3245.55
3248.33
3247.78
3243.87
3236.62
3226.06
3212.25
3195.26
3175.2
3152.19
3126.35
3097.84
3066.81
3033.43
2997.87
2960.31
2920.94
2879.92
2837.46
2793.72
2748.89
2703.14
2656.63
2609.54
2562.02
2514.21
2466.27
2418.31
2370.47
2322.86
2275.58
2228.74
2182.43
2136.72
2091.68
2047.39
2003.89
1961.24
1919.48
1878.64
1838.75
1799.84
1761.91
1725
1689.09
1654.2
1620.33
1587.47
1555.61
1524.74
1494.86
1465.94
1437.98
1410.94
1384.82
1359.59
1335.23
1311.71
1289.01
1267.12
1245.99
1225.61
1205.96
1187.01
1168.73
1151.09
1134.08
1117.68
1101.84
1086.56
1071.81
1057.56
1043.8
1030.5
1017.64
1005.2
993.16
981.502
970.207
959.255
948.63
938.314
928.283
918.516
908.994
899.697
890.605
881.698
872.953
864.347
855.856
847.453
839.108
830.791
822.468
814.101
805.65
797.073
788.322
779.35
770.105
760.534
750.583
740.199
729.328
717.922
705.937
693.336
680.092
666.192
651.639
636.454
620.687
604.414
587.751
570.857
553.951
537.323
521.368
506.629
493.881
484.29
479.744
483.626
502.879
554.882
699.26
1293.93
3413.95
4164.5
3365.31
2984.07
2819.29
2747.99
2720.96
2716.94
2725.22
2739.78
2757.02
2774.67
2791.33
2806.12
2818.5
2828.18
2835.02
2839
2840.22
2838.78
2834.88
2828.73
2820.56
2810.62
2799.19
2786.54
2772.96
2758.73
2744.15
2729.49
2715.06
2701.12
2687.97
2675.86
2665.05
2655.8
2648.33
2642.88
2639.63
2638.78
2640.48
2644.87
2652.07
2662.15
2675.18
2691.13
2709.98
2731.67
2756.13
2783.21
2812.76
2844.58
2878.44
2914.07
2951.19
2989.48
3028.61
3068.23
3107.98
3147.49
3186.38
3224.31
3260.9
3295.82
3328.73
3359.33
3387.34
3412.49
3434.56
3453.35
3468.7
3480.46
3488.54
3492.86
3493.4
3490.13
3483.08
3472.3
3457.87
3439.88
3418.46
3393.75
3365.91
3335.1
3301.5
3265.32
3226.73
3185.95
3143.18
3098.63
3052.49
3004.98
2956.29
2906.61
2856.13
2805.03
2753.48
2701.65
2649.69
2597.74
2545.94
2494.42
2443.29
2392.66
2342.62
2293.26
2244.66
2196.89
2149.99
2104.04
2059.07
2015.11
1972.21
1930.37
1889.63
1849.98
1811.44
1774.02
1737.7
1702.48
1668.36
1635.33
1603.36
1572.44
1542.56
1513.68
1485.8
1458.89
1432.92
1407.86
1383.7
1360.4
1337.94
1316.29
1295.42
1275.32
1255.94
1237.27
1219.27
1201.92
1185.2
1169.08
1153.53
1138.54
1124.07
1110.1
1096.61
1083.59
1071
1058.82
1047.04
1035.64
1024.59
1013.88
1003.49
993.375
983.533
973.936
964.564
955.392
946.396
937.551
928.828
920.198
911.628
903.084
894.525
885.912
877.199
868.337
859.274
849.955
840.323
830.317
819.877
808.941
797.45
785.348
772.584
759.115
744.911
729.954
714.245
697.807
680.692
662.984
644.809
626.342
607.823
589.575
572.033
555.797
541.721
531.087
525.968
530.07
550.978
607.594
764.305
1401.21
3411.05
4178.68
3367.89
2985.43
2819.91
2748.27
2721.1
2717.01
2725.25
2739.8
2757.02
2774.67
2791.33
2806.12
2818.5
2828.18
2835.02
2839.01
2840.22
2838.79
2834.89
2828.74
2820.57
2810.63
2799.2
2786.55
2772.97
2758.74
2744.15
2729.5
2715.07
2701.13
2687.97
2675.86
2665.06
2655.8
2648.34
2642.88
2639.63
2638.78
2640.48
2644.87
2652.06
2662.15
2675.17
2691.12
2709.97
2731.66
2756.11
2783.2
2812.74
2844.56
2878.42
2914.05
2951.17
2989.46
3028.59
3068.2
3107.95
3147.45
3186.35
3224.28
3260.87
3295.78
3328.7
3359.3
3387.3
3412.45
3434.52
3453.32
3468.66
3480.42
3488.5
3492.82
3493.36
3490.09
3483.04
3472.26
3457.83
3439.84
3418.42
3393.72
3365.87
3335.06
3301.47
3265.28
3226.7
3185.92
3143.15
3098.6
3052.46
3004.95
2956.26
2906.58
2856.1
2805
2753.46
2701.62
2649.66
2597.72
2545.92
2494.4
2443.27
2392.64
2342.61
2293.25
2244.65
2196.87
2149.98
2104.03
2059.06
2015.1
1972.2
1930.36
1889.61
1849.97
1811.43
1774.01
1737.69
1702.47
1668.35
1635.32
1603.35
1572.43
1542.55
1513.68
1485.79
1458.88
1432.91
1407.85
1383.69
1360.39
1337.93
1316.28
1295.42
1275.31
1255.93
1237.26
1219.26
1201.92
1185.2
1169.07
1153.53
1138.53
1124.06
1110.09
1096.61
1083.58
1070.99
1058.82
1047.04
1035.63
1024.59
1013.88
1003.48
993.37
983.527
973.931
964.558
955.386
946.391
937.545
928.823
920.193
911.623
903.079
894.521
885.908
877.194
868.332
859.27
849.951
840.319
830.314
819.874
808.938
797.447
785.345
772.581
759.113
744.909
729.952
714.243
697.806
680.691
662.983
644.808
626.341
607.823
589.575
572.033
555.797
541.721
531.087
525.969
530.071
550.979
607.599
764.318
1401.21
3337.57
4093.78
3504.22
3146.97
2979.44
2904.51
2874.99
2869
2875.34
2887.77
2902.56
2917.43
2930.97
2942.31
2950.97
2956.68
2959.36
2959.05
2955.87
2949.99
2941.66
2931.12
2918.66
2904.57
2889.17
2872.77
2855.69
2838.26
2820.79
2803.61
2787.03
2771.36
2756.89
2743.93
2732.75
2723.61
2716.76
2712.44
2710.85
2712.19
2716.62
2724.28
2735.27
2749.67
2767.51
2788.75
2813.35
2841.22
2872.25
2906.27
2943.06
2982.38
3023.95
3067.46
3112.55
3158.86
3205.99
3253.54
3301.08
3348.2
3394.47
3439.47
3482.81
3524.1
3562.98
3599.1
3632.16
3661.87
3688
3710.32
3728.68
3742.93
3752.97
3758.74
3760.21
3757.39
3750.31
3739.05
3723.7
3704.39
3681.27
3654.49
3624.25
3590.74
3554.16
3514.74
3472.69
3428.25
3381.65
3333.11
3282.87
3231.15
3178.16
3124.13
3069.25
3013.74
2957.77
2901.52
2845.16
2788.86
2732.75
2676.98
2621.66
2566.92
2512.85
2459.55
2407.09
2355.56
2305.02
2255.51
2207.09
2159.8
2113.66
2068.69
2024.93
1982.37
1941.02
1900.89
1861.97
1824.25
1787.73
1752.38
1718.2
1685.17
1653.25
1622.44
1592.69
1564
1536.33
1509.66
1483.95
1459.18
1435.31
1412.33
1390.2
1368.88
1348.36
1328.6
1309.57
1291.25
1273.61
1256.62
1240.26
1224.49
1209.3
1194.65
1180.53
1166.9
1153.76
1141.07
1128.81
1116.96
1105.5
1094.42
1083.67
1073.24
1063.1
1053.23
1043.61
1034.2
1025
1015.95
1007.04
998.228
989.481
980.758
972.017
963.21
954.287
945.194
935.871
926.257
916.286
905.891
895.003
883.551
871.469
858.691
845.16
830.825
815.65
799.612
782.709
764.964
746.433
727.204
707.416
687.261
667.002
646.995
627.721
609.841
594.297
582.5
576.728
581.038
603.715
665.317
835.325
1516.92
3336.73
4095.8
3501.86
3146.99
2979.76
2904.71
2875.1
2869.06
2875.37
2887.78
2902.56
2917.43
2930.97
2942.31
2950.97
2956.68
2959.36
2959.06
2955.87
2950
2941.67
2931.13
2918.67
2904.58
2889.18
2872.78
2855.7
2838.26
2820.8
2803.62
2787.04
2771.36
2756.9
2743.94
2732.75
2723.61
2716.76
2712.44
2710.85
2712.19
2716.62
2724.27
2735.26
2749.66
2767.5
2788.74
2813.33
2841.21
2872.24
2906.25
2943.04
2982.36
3023.93
3067.44
3112.53
3158.83
3205.96
3253.51
3301.05
3348.16
3394.43
3439.44
3482.78
3524.07
3562.94
3599.06
3632.12
3661.83
3687.95
3710.28
3728.64
3742.89
3752.93
3758.7
3760.17
3757.35
3750.27
3739.01
3723.66
3704.35
3681.23
3654.45
3624.21
3590.7
3554.12
3514.7
3472.66
3428.22
3381.62
3333.08
3282.84
3231.12
3178.13
3124.1
3069.23
3013.71
2957.74
2901.49
2845.14
2788.84
2732.73
2676.96
2621.64
2566.9
2512.83
2459.53
2407.08
2355.55
2305
2255.5
2207.08
2159.79
2113.65
2068.68
2024.92
1982.36
1941.01
1900.88
1861.96
1824.24
1787.72
1752.38
1718.2
1685.16
1653.24
1622.43
1592.69
1564
1536.33
1509.65
1483.94
1459.17
1435.31
1412.32
1390.19
1368.87
1348.35
1328.59
1309.57
1291.25
1273.61
1256.62
1240.25
1224.48
1209.29
1194.64
1180.52
1166.9
1153.75
1141.06
1128.8
1116.95
1105.5
1094.41
1083.66
1073.23
1063.09
1053.22
1043.6
1034.2
1024.99
1015.95
1007.03
998.223
989.476
980.754
972.012
963.206
954.283
945.189
935.867
926.253
916.283
905.888
894.999
883.548
871.466
858.689
845.158
830.823
815.648
799.61
782.707
764.963
746.432
727.204
707.416
687.261
667.002
646.995
627.721
609.841
594.297
582.5
576.728
581.039
603.717
665.321
835.339
1516.93
3367.72
4223.34
3673.46
3316.34
3143.93
3065.28
3033.15
3024.96
3029.06
3038.97
3050.89
3062.52
3072.45
3079.85
3084.28
3085.52
3083.56
3078.48
3070.45
3059.73
3046.57
3031.31
3014.25
2995.76
2976.18
2955.88
2935.2
2914.51
2894.17
2874.53
2855.93
2838.7
2823.18
2809.67
2798.47
2789.87
2784.14
2781.5
2782.19
2786.4
2794.29
2806
2821.64
2841.26
2864.84
2892.36
2923.73
2958.84
2997.51
3039.54
3084.66
3132.58
3182.94
3235.38
3289.47
3344.79
3400.87
3457.23
3513.4
3568.9
3623.24
3675.97
3726.62
3774.77
3820.02
3862
3900.37
3934.84
3965.14
3991.05
4012.41
4029.08
4040.95
4047.99
4050.17
4047.52
4040.1
4028.01
4011.38
3990.34
3965.08
3935.8
3902.7
3866
3825.96
3782.81
3736.81
3688.21
3637.27
3584.25
3529.41
3472.99
3415.23
3356.38
3296.65
3236.27
3175.43
3114.35
3053.19
2992.13
2931.32
2870.93
2811.07
2751.87
2693.44
2635.88
2579.27
2523.7
2469.22
2415.91
2363.79
2312.91
2263.31
2215.01
2168.02
2122.35
2078.01
2035
1993.31
1952.94
1913.86
1876.07
1839.55
1804.27
1770.21
1737.34
1705.63
1675.07
1645.61
1617.23
1589.9
1563.58
1538.25
1513.86
1490.4
1467.83
1446.11
1425.22
1405.13
1385.8
1367.2
1349.32
1332.11
1315.55
1299.62
1284.28
1269.51
1255.29
1241.59
1228.38
1215.65
1203.37
1191.52
1180.07
1168.99
1158.27
1147.86
1137.76
1127.92
1118.33
1108.95
1099.76
1090.71
1081.78
1072.91
1064.07
1055.21
1046.27
1037.21
1027.95
1018.43
1008.59
998.346
987.623
976.344
964.428
951.799
938.383
924.111
908.925
892.781
875.649
857.524
838.428
818.416
797.586
776.085
754.123
731.99
710.076
688.912
669.228
652.061
638.965
632.441
636.934
661.49
728.455
912.758
1641.54
3367.48
4221.14
3668.92
3315.64
3144.04
3065.41
3033.24
3025.01
3029.08
3038.98
3050.9
3062.52
3072.45
3079.85
3084.28
3085.53
3083.57
3078.48
3070.46
3059.74
3046.58
3031.32
3014.26
2995.77
2976.19
2955.89
2935.21
2914.52
2894.18
2874.54
2855.94
2838.71
2823.18
2809.67
2798.48
2789.88
2784.14
2781.5
2782.19
2786.39
2794.29
2806
2821.63
2841.25
2864.83
2892.35
2923.72
2958.82
2997.49
3039.52
3084.64
3132.56
3182.92
3235.35
3289.44
3344.76
3400.83
3457.2
3513.37
3568.86
3623.21
3675.93
3726.58
3774.73
3819.98
3861.96
3900.33
3934.79
3965.09
3991.01
4012.37
4029.03
4040.91
4047.94
4050.12
4047.47
4040.06
4027.97
4011.33
3990.3
3965.04
3935.76
3902.66
3865.97
3825.92
3782.77
3736.77
3688.17
3637.24
3584.22
3529.38
3472.96
3415.2
3356.35
3296.62
3236.24
3175.41
3114.32
3053.16
2992.11
2931.3
2870.91
2811.05
2751.85
2693.42
2635.86
2579.26
2523.68
2469.21
2415.89
2363.78
2312.9
2263.3
2215
2168.01
2122.34
2078
2034.99
1993.3
1952.93
1913.86
1876.07
1839.54
1804.26
1770.2
1737.33
1705.63
1675.06
1645.61
1617.23
1589.89
1563.57
1538.24
1513.86
1490.4
1467.82
1446.11
1425.22
1405.12
1385.79
1367.2
1349.31
1332.1
1315.55
1299.61
1284.27
1269.5
1255.28
1241.58
1228.38
1215.65
1203.37
1191.51
1180.07
1168.99
1158.26
1147.86
1137.75
1127.92
1118.33
1108.95
1099.75
1090.71
1081.77
1072.91
1064.07
1055.2
1046.27
1037.2
1027.95
1018.43
1008.59
998.343
987.62
976.34
964.425
951.796
938.38
924.109
908.923
892.779
875.648
857.523
838.427
818.416
797.585
776.084
754.123
731.99
710.076
688.912
669.228
652.061
638.965
632.442
636.936
661.492
728.46
912.773
1641.55
3444.33
4410.48
3853.05
3488.49
3311.37
3229.52
3194.9
3184.35
3185.91
3192.93
3201.54
3209.43
3215.24
3218.19
3217.86
3214.13
3207.03
3196.71
3183.41
3167.43
3149.1
3128.79
3106.88
3083.76
3059.85
3035.53
3011.21
2987.28
2964.15
2942.18
2921.76
2903.25
2887
2873.35
2862.61
2855.08
2851.06
2850.78
2854.48
2862.36
2874.58
2891.28
2912.54
2938.41
2968.84
3003.75
3043.06
3086.58
3134.1
3185.36
3240.02
3297.73
3358.06
3420.57
3484.76
3550.14
3616.15
3682.26
3747.92
3812.58
3875.7
3936.76
3995.25
4050.71
4102.7
4150.82
4194.7
4234.04
4268.55
4298.03
4322.29
4341.2
4354.69
4362.72
4365.28
4362.44
4354.29
4340.94
4322.54
4299.29
4271.39
4239.06
4202.55
4162.12
4118.05
4070.6
4020.07
3966.75
3910.92
3852.87
3792.87
3731.21
3668.16
3603.96
3538.88
3473.14
3406.97
3340.58
3274.18
3207.93
3142.02
3076.61
3011.82
2947.8
2884.66
2822.51
2761.43
2701.52
2642.82
2585.41
2529.34
2474.64
2421.34
2369.47
2319.04
2270.06
2222.54
2176.47
2131.85
2088.66
2046.88
2006.5
1967.5
1929.85
1893.52
1858.49
1824.72
1792.18
1760.85
1730.68
1701.64
1673.7
1646.83
1620.99
1596.14
1572.25
1549.29
1527.23
1506.02
1485.65
1466.07
1447.26
1429.19
1411.82
1395.13
1379.09
1363.67
1348.85
1334.6
1320.88
1307.69
1294.99
1282.77
1270.98
1259.6
1248.61
1237.98
1227.68
1217.68
1207.95
1198.46
1189.17
1180.05
1171.05
1162.14
1153.26
1144.35
1135.37
1126.24
1116.9
1107.28
1097.29
1086.85
1075.88
1064.28
1051.98
1038.87
1024.87
1009.9
993.895
976.8
958.578
939.217
918.735
897.189
874.68
851.369
827.482
803.336
779.36
756.137
734.472
715.508
700.956
693.561
698.193
724.725
797.435
997.058
1775.53
3444.27
4406.11
3847.46
3487.46
3311.37
3229.61
3194.97
3184.39
3185.93
3192.94
3201.54
3209.44
3215.25
3218.19
3217.87
3214.14
3207.04
3196.72
3183.42
3167.44
3149.11
3128.8
3106.89
3083.78
3059.86
3035.54
3011.22
2987.29
2964.16
2942.19
2921.77
2903.26
2887.01
2873.35
2862.61
2855.09
2851.06
2850.78
2854.48
2862.35
2874.58
2891.27
2912.53
2938.4
2968.82
3003.74
3043.04
3086.56
3134.08
3185.34
3240
3297.7
3358.03
3420.54
3484.73
3550.1
3616.12
3682.23
3747.89
3812.54
3875.66
3936.72
3995.21
4050.67
4102.66
4150.77
4194.65
4233.99
4268.51
4297.98
4322.24
4341.16
4354.65
4362.67
4365.24
4362.4
4354.24
4340.89
4322.5
4299.25
4271.35
4239.02
4202.51
4162.09
4118.01
4070.57
4020.04
3966.72
3910.89
3852.83
3792.84
3731.18
3668.13
3603.94
3538.85
3473.12
3406.95
3340.56
3274.16
3207.91
3142
3076.59
3011.8
2947.79
2884.65
2822.5
2761.42
2701.5
2642.81
2585.4
2529.33
2474.63
2421.33
2369.46
2319.03
2270.06
2222.53
2176.47
2131.84
2088.65
2046.87
2006.5
1967.49
1929.84
1893.52
1858.48
1824.71
1792.18
1760.84
1730.67
1701.64
1673.7
1646.82
1620.98
1596.13
1572.24
1549.29
1527.22
1506.02
1485.64
1466.07
1447.26
1429.18
1411.82
1395.13
1379.09
1363.67
1348.84
1334.59
1320.88
1307.69
1294.99
1282.76
1270.98
1259.6
1248.61
1237.98
1227.67
1217.67
1207.94
1198.45
1189.16
1180.04
1171.05
1162.13
1153.25
1144.35
1135.36
1126.24
1116.9
1107.27
1097.28
1086.85
1075.88
1064.28
1051.97
1038.86
1024.86
1009.9
993.893
976.798
958.577
939.216
918.734
897.188
874.68
851.369
827.482
803.336
779.36
756.138
734.473
715.509
700.956
693.562
698.194
724.727
797.44
997.073
1775.53
3540.58
4707.77
4047.6
3663.29
3481.19
3396.68
3359.73
3346.7
3345.41
3349.12
3353.95
3357.61
3358.78
3356.72
3351.13
3341.91
3329.18
3313.16
3294.17
3272.55
3248.71
3223.08
3196.09
3168.2
3139.84
3111.47
3083.53
3056.46
3030.68
3006.62
2984.68
2965.26
2948.72
2935.43
2925.74
2919.95
2918.36
2921.25
2928.84
2941.34
2958.91
2981.68
3009.72
3043.03
3081.53
3125.14
3173.69
3226.96
3284.68
3346.51
3412.05
3480.86
3552.43
3626.24
3701.7
3778.24
3855.22
3932.03
4008.04
4082.63
4155.2
4225.17
4291.99
4355.14
4414.16
4468.61
4518.11
4562.33
4601.01
4633.91
4660.86
4681.76
4696.52
4705.15
4707.67
4704.17
4694.76
4679.61
4658.89
4632.83
4601.67
4565.67
4525.12
4480.32
4431.56
4379.18
4323.48
4264.79
4203.44
4139.73
4073.98
4006.49
3937.55
3867.45
3796.46
3724.84
3652.82
3580.64
3508.5
3436.62
3365.16
3294.3
3224.19
3154.96
3086.74
3019.65
2953.76
2889.18
2825.97
2764.18
2703.88
2645.09
2587.85
2532.18
2478.1
2425.61
2374.71
2325.39
2277.66
2231.49
2186.85
2143.74
2102.13
2061.98
2023.26
1985.95
1950.01
1915.41
1882.1
1850.06
1819.24
1789.6
1761.12
1733.75
1707.46
1682.21
1657.96
1634.67
1612.32
1590.87
1570.28
1550.52
1531.56
1513.37
1495.92
1479.17
1463.09
1447.67
1432.87
1418.66
1405.02
1391.93
1379.35
1367.25
1355.61
1344.39
1333.57
1323.12
1313.01
1303.2
1293.66
1284.35
1275.23
1266.25
1257.37
1248.53
1239.68
1230.74
1221.65
1212.33
1202.7
1192.67
1182.14
1171.03
1159.21
1146.61
1133.1
1118.6
1103
1086.23
1068.23
1048.94
1028.34
1006.46
983.336
959.084
933.87
907.942
881.642
855.441
829.979
806.141
785.185
768.993
760.581
765.279
793.862
872.689
1088.67
1919.28
3540.46
4699.04
4041.35
3662.18
3481.15
3396.74
3359.78
3346.73
3345.42
3349.13
3353.96
3357.61
3358.78
3356.73
3351.13
3341.92
3329.19
3313.17
3294.18
3272.56
3248.72
3223.09
3196.11
3168.21
3139.85
3111.48
3083.54
3056.47
3030.69
3006.63
2984.69
2965.26
2948.72
2935.44
2925.74
2919.95
2918.36
2921.24
2928.83
2941.33
2958.9
2981.67
3009.71
3043.01
3081.51
3125.12
3173.67
3226.94
3284.66
3346.49
3412.02
3480.83
3552.4
3626.2
3701.67
3778.2
3855.18
3931.99
4008
4082.59
4155.15
4225.12
4291.94
4355.09
4414.11
4468.56
4518.06
4562.28
4600.96
4633.86
4660.81
4681.71
4696.47
4705.1
4707.62
4704.12
4694.72
4679.56
4658.85
4632.79
4601.63
4565.63
4525.08
4480.28
4431.52
4379.14
4323.44
4264.76
4203.4
4139.69
4073.94
4006.46
3937.52
3867.43
3796.44
3724.81
3652.79
3580.61
3508.48
3436.6
3365.14
3294.28
3224.17
3154.94
3086.73
3019.63
2953.75
2889.17
2825.95
2764.17
2703.86
2645.08
2587.84
2532.17
2478.09
2425.6
2374.7
2325.39
2277.65
2231.48
2186.85
2143.74
2102.12
2061.97
2023.26
1985.95
1950.01
1915.4
1882.1
1850.05
1819.23
1789.6
1761.12
1733.75
1707.46
1682.2
1657.95
1634.67
1612.32
1590.87
1570.28
1550.52
1531.56
1513.37
1495.91
1479.16
1463.09
1447.67
1432.86
1418.66
1405.02
1391.92
1379.34
1367.25
1355.6
1344.39
1333.57
1323.12
1313
1303.2
1293.65
1284.34
1275.22
1266.25
1257.37
1248.53
1239.67
1230.74
1221.65
1212.33
1202.7
1192.67
1182.14
1171.02
1159.21
1146.6
1133.1
1118.59
1103
1086.23
1068.23
1048.94
1028.34
1006.46
983.336
959.084
933.87
907.942
881.643
855.442
829.98
806.141
785.186
768.994
760.582
765.28
793.864
872.695
1088.68
1919.28
15521
5839.17
4339.25
3853.2
3655.34
3566.81
3527.3
3511.53
3507.03
3507
3507.55
3506.44
3502.42
3494.83
3483.43
3468.22
3449.39
3427.25
3402.16
3374.57
3344.94
3313.77
3281.54
3248.76
3215.93
3183.55
3152.1
3122.06
3093.91
3068.08
3045.03
3025.17
3008.91
2996.63
2988.7
2985.45
2987.19
2994.2
3006.72
3024.96
3049.07
3079.17
3115.32
3157.44
3205.45
3259.21
3318.49
3383.02
3452.44
3526.33
3604.2
3685.52
3769.71
3856.11
3944.08
4032.92
4121.92
4210.38
4297.58
4382.84
4465.48
4544.88
4620.43
4691.57
4757.81
4818.68
4873.79
4922.81
4965.46
5001.52
5030.82
5053.28
5068.87
5077.59
5079.52
5074.76
5063.48
5045.86
5022.13
4992.55
4957.41
4917.02
4871.69
4821.76
4767.6
4709.54
4647.95
4583.19
4515.6
4445.55
4373.37
4299.4
4223.95
4147.33
4069.84
3991.76
3913.34
3834.83
3756.46
3678.44
3600.96
3524.21
3448.35
3373.51
3299.83
3227.42
3156.38
3086.8
3018.75
2952.29
2887.47
2824.33
2762.9
2703.2
2645.23
2589.01
2534.54
2481.79
2430.77
2381.45
2333.81
2287.82
2243.45
2200.67
2159.45
2119.75
2081.53
2044.76
2009.39
1975.38
1942.7
1911.3
1881.14
1852.19
1824.39
1797.72
1772.13
1747.59
1724.06
1701.49
1679.86
1659.13
1639.27
1620.24
1602.01
1584.54
1567.82
1551.8
1536.46
1521.77
1507.7
1494.23
1481.33
1468.96
1457.09
1445.69
1434.74
1424.19
1414.03
1404.21
1394.69
1385.44
1376.4
1367.54
1358.79
1350.1
1341.4
1332.62
1323.69
1314.51
1305
1295.05
1284.56
1273.42
1261.52
1248.73
1234.94
1220.04
1203.91
1186.46
1167.61
1147.3
1125.5
1102.21
1077.49
1051.44
1024.24
996.162
967.568
938.974
911.081
884.859
861.694
843.65
834.038
838.692
869.361
954.646
1188
2073.13
15519.1
5830.05
4336.47
3853.27
3655.57
3566.92
3527.35
3511.56
3507.05
3507.01
3507.55
3506.45
3502.43
3494.84
3483.44
3468.23
3449.4
3427.26
3402.17
3374.58
3344.96
3313.78
3281.55
3248.77
3215.94
3183.56
3152.11
3122.07
3093.92
3068.09
3045.04
3025.18
3008.91
2996.64
2988.7
2985.45
2987.19
2994.2
3006.72
3024.95
3049.06
3079.16
3115.3
3157.42
3205.43
3259.19
3318.47
3382.99
3452.41
3526.3
3604.17
3685.49
3769.67
3856.08
3944.04
4032.88
4121.88
4210.33
4297.53
4382.79
4465.43
4544.83
4620.38
4691.52
4757.76
4818.63
4873.74
4922.76
4965.41
5001.46
5030.77
5053.23
5068.82
5077.54
5079.47
5074.71
5063.43
5045.81
5022.08
4992.51
4957.37
4916.97
4871.65
4821.72
4767.56
4709.5
4647.91
4583.15
4515.57
4445.52
4373.34
4299.37
4223.92
4147.31
4069.82
3991.73
3913.31
3834.8
3756.44
3678.42
3600.95
3524.2
3448.33
3373.49
3299.81
3227.4
3156.37
3086.79
3018.74
2952.28
2887.46
2824.32
2762.89
2703.19
2645.22
2589.01
2534.53
2481.79
2430.76
2381.44
2333.8
2287.81
2243.44
2200.67
2159.44
2119.74
2081.53
2044.75
2009.38
1975.38
1942.69
1911.29
1881.14
1852.18
1824.39
1797.72
1772.13
1747.59
1724.05
1701.49
1679.86
1659.13
1639.27
1620.24
1602
1584.54
1567.81
1551.79
1536.46
1521.77
1507.7
1494.23
1481.32
1468.95
1457.08
1445.69
1434.73
1424.19
1414.02
1404.2
1394.69
1385.43
1376.4
1367.53
1358.78
1350.09
1341.4
1332.62
1323.68
1314.5
1304.99
1295.04
1284.56
1273.42
1261.52
1248.73
1234.94
1220.04
1203.91
1186.46
1167.61
1147.3
1125.5
1102.21
1077.49
1051.44
1024.24
996.162
967.569
938.975
911.082
884.86
861.695
843.652
834.04
838.694
869.364
954.651
1188.01
2073.13
16078.3
6247.69
4566.72
4039.19
3831.61
3739.49
3697.2
3678.35
3670.21
3665.95
3661.69
3655.28
3645.52
3631.85
3614.13
3592.44
3567.06
3538.38
3506.86
3473.01
3437.37
3400.48
3362.93
3325.25
3288.01
3251.74
3217
3184.29
3154.12
3126.99
3103.36
3083.69
3068.41
3057.94
3052.65
3052.91
3059.03
3071.31
3089.99
3115.28
3147.33
3186.24
3232
3284.52
3343.67
3409.23
3480.92
3558.38
3641.15
3728.73
3820.53
3915.9
4014.14
4114.52
4216.25
4318.55
4420.62
4521.64
4620.84
4717.44
4810.71
4899.95
4984.53
5063.84
5137.36
5204.61
5265.19
5318.75
5365.02
5403.81
5434.98
5458.47
5474.28
5482.44
5483.07
5476.32
5462.38
5441.5
5413.94
5380.02
5340.06
5294.42
5243.47
5187.6
5127.18
5062.63
4994.34
4922.71
4848.13
4770.98
4691.64
4610.46
4527.81
4444.01
4359.38
4274.22
4188.8
4103.4
4018.25
3933.58
3849.6
3766.48
3684.41
3603.54
3523.99
3445.88
3369.33
3294.41
3221.19
3149.75
3080.13
3012.36
2946.48
2882.5
2820.43
2760.26
2702.01
2645.64
2591.15
2538.52
2487.7
2438.69
2391.43
2345.89
2302.05
2259.84
2219.24
2180.2
2142.68
2106.63
2072
2038.76
2006.86
1976.26
1946.91
1918.77
1891.8
1865.96
1841.21
1817.5
1794.81
1773.09
1752.3
1732.42
1713.41
1695.23
1677.85
1661.24
1645.38
1630.22
1615.75
1601.94
1588.74
1576.13
1564.08
1552.56
1541.52
1530.95
1520.81
1511.05
1501.64
1492.54
1483.69
1475.04
1466.54
1458.11
1449.7
1441.21
1432.57
1423.68
1414.43
1404.72
1394.42
1383.42
1371.57
1358.76
1344.83
1329.66
1313.13
1295.11
1275.52
1254.26
1231.3
1206.64
1180.32
1152.44
1123.19
1092.86
1061.83
1030.68
1000.15
971.325
945.707
925.566
914.528
918.971
951.698
1043.71
1295.37
2237.22
16077.1
6244.64
4567.11
4040.33
3832.11
3739.65
3697.25
3678.38
3670.23
3665.95
3661.7
3655.28
3645.52
3631.86
3614.14
3592.45
3567.07
3538.39
3506.87
3473.02
3437.38
3400.5
3362.94
3325.26
3288.02
3251.76
3217.01
3184.3
3154.13
3126.99
3103.36
3083.69
3068.41
3057.94
3052.65
3052.9
3059.02
3071.3
3089.98
3115.27
3147.32
3186.22
3231.98
3284.5
3343.65
3409.21
3480.89
3558.35
3641.12
3728.7
3820.49
3915.86
4014.1
4114.47
4216.21
4318.51
4420.57
4521.59
4620.79
4717.39
4810.66
4899.9
4984.48
5063.79
5137.31
5204.55
5265.13
5318.69
5364.96
5403.75
5434.93
5458.42
5474.22
5482.39
5483.02
5476.27
5462.33
5441.45
5413.89
5379.97
5340.02
5294.38
5243.43
5187.56
5127.15
5062.6
4994.31
4922.68
4848.09
4770.95
4691.61
4610.44
4527.79
4443.99
4359.36
4274.19
4188.78
4103.38
4018.23
3933.56
3849.58
3766.47
3684.4
3603.52
3523.97
3445.87
3369.31
3294.39
3221.18
3149.74
3080.12
3012.35
2946.47
2882.49
2820.42
2760.26
2702
2645.64
2591.15
2538.51
2487.7
2438.68
2391.42
2345.89
2302.04
2259.84
2219.24
2180.2
2142.67
2106.62
2072
2038.76
2006.86
1976.26
1946.91
1918.77
1891.8
1865.96
1841.2
1817.5
1794.8
1773.08
1752.3
1732.42
1713.4
1695.22
1677.85
1661.24
1645.37
1630.22
1615.75
1601.93
1588.74
1576.13
1564.08
1552.55
1541.52
1530.95
1520.8
1511.05
1501.64
1492.53
1483.68
1475.03
1466.53
1458.11
1449.69
1441.21
1432.57
1423.67
1414.43
1404.71
1394.42
1383.41
1371.57
1358.75
1344.83
1329.66
1313.13
1295.11
1275.51
1254.26
1231.3
1206.64
1180.32
1152.44
1123.19
1092.86
1061.84
1030.68
1000.16
971.326
945.708
925.568
914.53
918.973
951.7
1043.71
1295.38
2237.2
16654.9
6523.78
4771.84
4224.28
4010.05
3914.4
3868.96
3846.58
3834.32
3825.29
3815.69
3803.41
3787.36
3767.1
3742.55
3713.92
3681.59
3646.02
3607.78
3567.44
3525.63
3482.97
3440.08
3397.58
3356.09
3316.2
3278.49
3243.52
3211.85
3184
3160.48
3141.78
3128.36
3120.66
3119.08
3124.01
3135.77
3154.68
3180.97
3214.86
3256.47
3305.9
3363.03
3427.76
3499.89
3579.13
3665.1
3757.34
3855.3
3958.34
4065.77
4176.8
4290.62
4406.37
4523.16
4640.07
4756.21
4870.67
4982.59
5091.1
5195.43
5294.82
5388.58
5476.09
5556.8
5630.19
5695.89
5753.55
5802.95
5843.89
5876.28
5900.08
5915.33
5922.11
5920.58
5910.93
5893.42
5868.33
5835.99
5796.76
5751.02
5699.17
5641.64
5578.86
5511.27
5439.31
5363.42
5284.04
5201.61
5116.53
5029.23
4940.09
4849.49
4757.78
4665.32
4572.42
4479.39
4386.49
4293.99
4202.12
4111.11
4021.14
3932.4
3845.04
3759.2
3675.01
3592.56
3511.94
3433.23
3356.5
3281.77
3209.1
3138.51
3070
3003.59
2939.26
2877.02
2816.85
2758.71
2702.59
2648.45
2596.26
2545.98
2497.56
2450.96
2406.14
2363.06
2321.65
2281.89
2243.71
2207.07
2171.92
2138.21
2105.91
2074.95
2045.29
2016.9
1989.72
1963.71
1938.84
1915.06
1892.32
1870.61
1849.87
1830.06
1811.17
1793.15
1775.97
1759.59
1744
1729.15
1715.02
1701.57
1688.77
1676.59
1664.99
1653.95
1643.42
1633.38
1623.78
1614.57
1605.72
1597.16
1588.85
1580.72
1572.7
1564.72
1556.68
1548.49
1540.05
1531.24
1521.94
1512.02
1501.34
1489.74
1477.08
1463.2
1447.94
1431.17
1412.74
1392.52
1370.44
1346.41
1320.44
1292.54
1262.83
1231.48
1198.81
1165.23
1131.35
1097.99
1066.31
1037.98
1015.46
1002.72
1006.71
1041.36
1140.25
1410.99
2411.41
16654.4
6523.51
4773.76
4225.98
4010.7
3914.6
3869.02
3846.61
3834.33
3825.3
3815.7
3803.41
3787.37
3767.11
3742.56
3713.93
3681.6
3646.04
3607.79
3567.46
3525.64
3482.98
3440.09
3397.6
3356.1
3316.21
3278.49
3243.53
3211.86
3184.01
3160.49
3141.79
3128.36
3120.66
3119.08
3124
3135.76
3154.66
3180.96
3214.84
3256.46
3305.88
3363.01
3427.74
3499.86
3579.1
3665.07
3757.31
3855.26
3958.3
4065.72
4176.76
4290.58
4406.33
4523.11
4640.02
4756.16
4870.62
4982.53
5091.05
5195.38
5294.76
5388.52
5476.03
5556.74
5630.13
5695.83
5753.5
5802.89
5843.83
5876.23
5900.03
5915.28
5922.06
5920.53
5910.88
5893.37
5868.28
5835.94
5796.71
5750.97
5699.13
5641.6
5578.82
5511.23
5439.27
5363.38
5284.01
5201.57
5116.5
5029.2
4940.06
4849.46
4757.76
4665.3
4572.4
4479.36
4386.47
4293.97
4202.1
4111.09
4021.13
3932.39
3845.03
3759.19
3674.99
3592.55
3511.93
3433.22
3356.49
3281.77
3209.09
3138.5
3069.99
3003.58
2939.26
2877.02
2816.84
2758.71
2702.59
2648.45
2596.26
2545.97
2497.55
2450.96
2406.14
2363.05
2321.65
2281.88
2243.71
2207.07
2171.92
2138.21
2105.9
2074.95
2045.29
2016.9
1989.72
1963.71
1938.84
1915.05
1892.32
1870.6
1849.86
1830.06
1811.17
1793.14
1775.96
1759.59
1743.99
1729.14
1715.01
1701.57
1688.77
1676.59
1664.99
1653.95
1643.42
1633.38
1623.77
1614.57
1605.71
1597.16
1588.85
1580.72
1572.7
1564.71
1556.67
1548.49
1540.04
1531.24
1521.94
1512.02
1501.34
1489.74
1477.08
1463.2
1447.94
1431.17
1412.73
1392.52
1370.44
1346.41
1320.44
1292.54
1262.83
1231.49
1198.81
1165.23
1131.35
1097.99
1066.32
1037.98
1015.46
1002.72
1006.71
1041.36
1140.24
1410.98
2411.34
17272.5
6785.18
4975.37
4411.31
4190.64
4091.04
4041.95
4015.54
3998.62
3984.29
3968.78
3950.09
3927.22
3899.85
3868.02
3832.05
3792.4
3749.67
3704.48
3657.52
3609.49
3561.07
3512.96
3465.85
3420.39
3377.24
3337.04
3300.39
3267.88
3240.08
3217.53
3200.77
3190.27
3186.51
3189.93
3200.91
3219.81
3246.94
3282.56
3326.85
3379.92
3441.82
3512.35
3591.36
3678.56
3773.57
3875.91
3984.98
4100.11
4220.53
4345.39
4473.78
4604.74
4737.29
4870.39
5003.02
5134.17
5262.84
5388.07
5508.95
5624.61
5734.26
5837.19
5932.7
6020.25
6099.38
6169.67
6230.84
6282.66
6324.97
6357.72
6380.92
6394.64
6399.03
6394.29
6380.67
6358.49
6328.09
6289.85
6244.2
6191.57
6132.42
6067.23
5996.48
5920.67
5840.28
5755.81
5667.72
5576.51
5482.61
5386.48
5288.53
5189.19
5088.82
4987.8
4886.47
4785.14
4684.11
4583.65
4484.02
4385.44
4288.1
4192.21
4097.91
4005.35
3914.65
3825.93
3739.25
3654.71
3572.36
3492.24
3414.38
3338.81
3265.53
3194.54
3125.84
3059.41
2995.23
2933.28
2873.51
2815.89
2760.38
2706.93
2655.5
2606.04
2558.5
2512.83
2468.97
2426.87
2386.49
2347.76
2310.63
2275.06
2240.99
2208.37
2177.16
2147.3
2118.75
2091.46
2065.39
2040.5
2016.74
1994.08
1972.47
1951.89
1932.28
1913.62
1895.88
1879.02
1863
1847.81
1833.41
1819.75
1806.81
1794.56
1782.96
1771.98
1761.58
1751.72
1742.37
1733.47
1724.99
1716.86
1709.02
1701.41
1693.95
1686.56
1679.14
1671.59
1663.8
1655.63
1646.96
1637.63
1627.49
1616.36
1604.08
1590.47
1575.34
1558.53
1539.88
1519.23
1496.47
1471.51
1444.32
1414.92
1383.39
1349.94
1314.87
1278.63
1241.86
1205.47
1170.7
1139.37
1114.16
1099.37
1102.58
1138.9
1244.57
1534.83
2595.05
17272.5
6785.9
4977.86
4413.23
4191.35
4091.25
4042.02
4015.56
3998.64
3984.3
3968.79
3950.1
3927.24
3899.86
3868.03
3832.06
3792.42
3749.68
3704.5
3657.54
3609.5
3561.08
3512.97
3465.86
3420.4
3377.25
3337.05
3300.39
3267.88
3240.08
3217.53
3200.77
3190.27
3186.51
3189.92
3200.9
3219.8
3246.93
3282.54
3326.83
3379.9
3441.79
3512.33
3591.33
3678.53
3773.54
3875.87
3984.94
4100.07
4220.48
4345.34
4473.73
4604.7
4737.23
4870.33
5002.96
5134.11
5262.78
5388.01
5508.89
5624.55
5734.2
5837.13
5932.64
6020.19
6099.32
6169.62
6230.78
6282.6
6324.91
6357.67
6380.86
6394.59
6398.97
6394.23
6380.62
6358.44
6328.04
6289.81
6244.15
6191.52
6132.38
6067.19
5996.44
5920.63
5840.25
5755.77
5667.69
5576.47
5482.58
5386.45
5288.51
5189.16
5088.8
4987.78
4886.44
4785.12
4684.09
4583.64
4484
4385.42
4288.09
4192.19
4097.9
4005.34
3914.64
3825.92
3739.25
3654.71
3572.35
3492.23
3414.37
3338.8
3265.52
3194.53
3125.84
3059.41
2995.23
2933.27
2873.5
2815.88
2760.37
2706.93
2655.5
2606.04
2558.5
2512.83
2468.97
2426.87
2386.48
2347.75
2310.63
2275.06
2240.99
2208.37
2177.15
2147.3
2118.74
2091.46
2065.39
2040.5
2016.74
1994.08
1972.47
1951.88
1932.28
1913.62
1895.88
1879.02
1863
1847.81
1833.4
1819.75
1806.81
1794.56
1782.95
1771.97
1761.57
1751.72
1742.36
1733.47
1724.98
1716.85
1709.01
1701.4
1693.95
1686.55
1679.14
1671.59
1663.79
1655.63
1646.96
1637.63
1627.49
1616.36
1604.08
1590.47
1575.34
1558.53
1539.88
1519.23
1496.47
1471.51
1444.32
1414.92
1383.4
1349.94
1314.87
1278.63
1241.87
1205.47
1170.71
1139.37
1114.16
1099.38
1102.59
1138.88
1244.52
1534.73
2594.83
17910.1
7049.36
5181.23
4600.26
4372.6
4268.54
4215.32
4184.37
4162.28
4142.11
4120.16
4094.53
4064.35
4029.41
3989.89
3946.22
3898.98
3848.88
3796.63
3743.02
3688.81
3634.78
3581.69
3530.3
3481.31
3435.45
3393.39
3355.79
3323.29
3296.49
3275.99
3262.34
3256.06
3257.66
3267.6
3286.29
3314.1
3351.36
3398.3
3455.11
3521.88
3598.47
3684.72
3780.35
3884.99
3998.11
4119.11
4247.24
4381.68
4521.49
4665.67
4813.16
4962.84
5113.56
5264.18
5413.54
5560.52
5704.03
5843.01
5976.51
6103.57
6223.35
6335.13
6438.25
6532.15
6616.36
6690.51
6754.33
6807.62
6850.29
6882.32
6903.77
6914.78
6915.56
6906.36
6887.51
6859.38
6822.39
6776.98
6723.64
6662.87
6595.19
6521.13
6441.23
6356.05
6266.12
6171.98
6074.14
5973.13
5869.45
5763.56
5655.92
5546.98
5437.13
5326.78
5216.27
5105.96
4996.14
4887.1
4779.11
4672.39
4567.16
4463.61
4361.9
4262.18
4164.57
4069.18
3976.08
3885.37
3797.07
3711.25
3627.92
3547.11
3468.81
3393.02
3319.73
3248.92
3180.55
3114.59
3051.01
2989.76
2930.79
2874.05
2819.49
2767.05
2716.69
2668.33
2621.93
2577.42
2534.75
2493.86
2454.7
2417.2
2381.32
2346.99
2314.18
2282.82
2252.86
2224.27
2196.98
2170.97
2146.17
2122.56
2100.09
2078.72
2058.41
2039.13
2020.84
2003.52
1987.12
1971.61
1956.97
1943.16
1930.14
1917.88
1906.35
1895.51
1885.32
1875.75
1866.76
1858.3
1850.31
1842.74
1835.53
1828.6
1821.88
1815.27
1808.67
1801.97
1795.05
1787.76
1779.96
1771.48
1762.14
1751.75
1740.12
1727.04
1712.31
1695.73
1677.1
1656.24
1633.02
1607.31
1579.06
1548.26
1515
1479.46
1441.96
1402.97
1363.19
1323.57
1285.48
1250.86
1222.63
1205.43
1207.45
1244.97
1357.02
1666.58
2786.57
17910.8
7050.51
5183.91
4602.24
4373.33
4268.76
4215.4
4184.41
4162.3
4142.13
4120.17
4094.54
4064.36
4029.42
3989.9
3946.23
3899
3848.89
3796.65
3743.03
3688.82
3634.79
3581.71
3530.31
3481.33
3435.46
3393.4
3355.8
3323.29
3296.5
3275.99
3262.33
3256.05
3257.65
3267.59
3286.27
3314.09
3351.34
3398.28
3455.09
3521.85
3598.44
3684.69
3780.32
3884.95
3998.07
4119.07
4247.2
4381.63
4521.44
4665.62
4813.11
4962.78
5113.5
5264.12
5413.48
5560.46
5703.97
5842.95
5976.45
6103.51
6223.29
6335.07
6438.19
6532.08
6616.3
6690.45
6754.27
6807.56
6850.23
6882.26
6903.72
6914.73
6915.5
6906.3
6887.46
6859.33
6822.34
6776.94
6723.6
6662.82
6595.14
6521.09
6441.2
6356.02
6266.09
6171.94
6074.11
5973.1
5869.42
5763.53
5655.9
5546.95
5437.11
5326.76
5216.25
5105.94
4996.12
4887.08
4779.09
4672.38
4567.15
4463.6
4361.89
4262.17
4164.56
4069.17
3976.08
3885.36
3797.07
3711.25
3627.92
3547.11
3468.81
3393.02
3319.73
3248.91
3180.55
3114.59
3051.01
2989.76
2930.79
2874.05
2819.49
2767.05
2716.69
2668.33
2621.93
2577.42
2534.75
2493.86
2454.7
2417.2
2381.32
2346.99
2314.18
2282.82
2252.86
2224.27
2196.98
2170.97
2146.17
2122.56
2100.09
2078.71
2058.41
2039.13
2020.84
2003.51
1987.12
1971.61
1956.97
1943.16
1930.14
1917.88
1906.34
1895.5
1885.32
1875.75
1866.76
1858.29
1850.3
1842.74
1835.52
1828.6
1821.87
1815.26
1808.67
1801.97
1795.05
1787.76
1779.96
1771.48
1762.13
1751.75
1740.11
1727.04
1712.31
1695.72
1677.09
1656.24
1633.02
1607.31
1579.06
1548.26
1515
1479.46
1441.96
1402.97
1363.19
1323.57
1285.48
1250.87
1222.64
1205.45
1207.44
1244.89
1356.79
1666.18
2785.95
18546.4
7314.18
5387.76
4789.6
4554.6
4445.75
4388.02
4352.11
4324.37
4297.86
4268.96
4235.9
4197.96
4155.05
4107.5
4055.88
4000.88
3943.3
3883.99
3823.81
3763.62
3704.28
3646.61
3591.43
3539.53
3491.67
3448.58
3410.98
3379.55
3354.93
3337.77
3328.66
3328.16
3336.82
3355.11
3383.48
3422.31
3471.92
3532.55
3604.33
3687.31
3781.22
3885.82
4000.73
4125.42
4259.25
4401.41
4551.01
4707.02
4868.33
5033.77
5202.08
5371.99
5542.2
5711.43
5878.38
6041.83
6200.61
6353.53
6499.58
6637.82
6767.39
6887.53
6997.61
7097.06
7185.44
7262.43
7327.77
7381.34
7423.08
7453.05
7471.37
7478.25
7473.96
7458.84
7433.28
7397.74
7352.69
7298.67
7236.21
7165.89
7088.3
7004.04
6913.7
6817.89
6717.19
6612.21
6503.49
6391.61
6277.09
6160.45
6042.18
5922.73
5802.56
5682.06
5561.61
5441.58
5322.28
5204.02
5087.05
4971.63
4857.96
4746.25
4636.66
4529.32
4424.38
4321.93
4222.05
4124.81
4030.26
3938.44
3849.36
3763.05
3679.49
3598.67
3520.58
3445.18
3372.44
3302.32
3234.77
3169.74
3107.17
3047.02
2989.21
2933.69
2880.4
2829.27
2780.24
2733.24
2688.22
2645.11
2603.84
2564.37
2526.63
2490.56
2456.1
2423.21
2391.83
2361.9
2333.38
2306.23
2280.39
2255.82
2232.48
2210.34
2189.34
2169.45
2150.65
2132.88
2116.13
2100.36
2085.54
2071.62
2058.58
2046.38
2035
2024.39
2014.51
2005.34
1996.83
1988.92
1981.57
1974.72
1968.3
1962.24
1956.45
1950.83
1945.28
1939.67
1933.88
1927.73
1921.08
1913.74
1905.5
1896.16
1885.5
1873.28
1859.27
1843.22
1824.93
1804.17
1780.75
1754.54
1725.43
1693.41
1658.53
1620.98
1581.06
1539.29
1496.39
1453.39
1411.75
1373.58
1342.02
1322.06
1322.46
1360.67
1478.33
1805.88
2982.71
18550.3
7316.27
5390.58
4791.47
4555.26
4445.94
4388.09
4352.14
4324.39
4297.87
4268.97
4235.91
4197.97
4155.07
4107.52
4055.89
4000.89
3943.31
3884.01
3823.83
3763.64
3704.29
3646.62
3591.44
3539.54
3491.68
3448.59
3410.98
3379.55
3354.93
3337.77
3328.65
3328.15
3336.8
3355.09
3383.46
3422.29
3471.9
3532.52
3604.31
3687.28
3781.18
3885.78
4000.69
4125.38
4259.2
4401.36
4550.96
4706.96
4868.28
5033.71
5202.02
5371.93
5542.14
5711.37
5878.32
6041.77
6200.55
6353.47
6499.52
6637.76
6767.33
6887.47
6997.54
7096.99
7185.38
7262.36
7327.71
7381.28
7423.02
7452.99
7471.32
7478.19
7473.9
7458.79
7433.23
7397.69
7352.65
7298.62
7236.16
7165.85
7088.26
7004
6913.66
6817.85
6717.16
6612.17
6503.46
6391.58
6277.06
6160.43
6042.15
5922.71
5802.54
5682.04
5561.6
5441.56
5322.27
5204
5087.04
4971.61
4857.95
4746.24
4636.65
4529.32
4424.37
4321.92
4222.04
4124.8
4030.25
3938.43
3849.36
3763.04
3679.48
3598.67
3520.58
3445.18
3372.44
3302.32
3234.77
3169.74
3107.17
3047.02
2989.21
2933.69
2880.4
2829.27
2780.24
2733.24
2688.22
2645.11
2603.84
2564.37
2526.63
2490.56
2456.1
2423.21
2391.83
2361.9
2333.38
2306.23
2280.39
2255.82
2232.48
2210.33
2189.34
2169.45
2150.65
2132.88
2116.13
2100.36
2085.54
2071.62
2058.58
2046.38
2034.99
2024.38
2014.51
2005.34
1996.82
1988.92
1981.57
1974.72
1968.3
1962.24
1956.45
1950.83
1945.28
1939.67
1933.87
1927.73
1921.08
1913.73
1905.5
1896.16
1885.5
1873.28
1859.26
1843.22
1824.93
1804.17
1780.75
1754.54
1725.43
1693.41
1658.53
1620.98
1581.07
1539.29
1496.39
1453.39
1411.76
1373.6
1342.04
1322.07
1322.36
1360.28
1477.4
1804.41
2981.23
19160.8
7572.68
5591.22
4976.96
4734.85
4621.19
4558.79
4517.6
4483.83
4450.54
4414.27
4373.36
4327.28
4276.1
4220.28
4160.54
4097.71
4032.7
3966.46
3899.96
3834.15
3769.95
3708.27
3650.01
3596
3547.07
3504.01
3467.58
3438.52
3417.53
3405.29
3402.45
3409.61
3427.34
3456.17
3496.55
3548.89
3613.49
3690.56
3780.23
3882.29
3996.48
4122.42
4259.57
4407.24
4564.58
4730.6
4904.2
5084.13
5269.1
5457.7
5648.52
5840.08
6030.94
6219.7
6404.87
6585.13
6759.24
6926
7084.35
7233.31
7372.01
7499.71
7615.77
7719.66
7810.99
7889.46
7954.9
8007.24
8046.49
8072.78
8086.31
8087.37
8076.32
8053.59
8019.63
7975
7920.24
7855.96
7782.79
7701.38
7612.36
7516.43
7414.22
7306.41
7193.63
7076.54
6955.73
6831.82
6705.37
6576.93
6447.02
6316.13
6184.73
6053.24
5922.06
5791.56
5662.07
5533.91
5407.35
5282.63
5159.99
5039.6
4921.64
4806.25
4693.55
4583.65
4476.62
4372.52
4271.4
4173.29
4078.19
3986.12
3897.07
3811
3727.91
3647.74
3570.46
3496.01
3424.34
3355.4
3289.11
3225.42
3164.26
3105.56
3049.25
2995.26
2943.52
2893.97
2846.53
2801.14
2757.73
2716.23
2676.59
2638.73
2602.61
2568.16
2535.32
2504.05
2474.28
2445.98
2419.09
2393.57
2369.37
2346.46
2324.79
2304.32
2285.02
2266.85
2249.79
2233.79
2218.83
2204.87
2191.88
2179.82
2168.67
2158.38
2148.93
2140.27
2132.36
2125.16
2118.6
2112.64
2107.2
2102.2
2097.55
2093.16
2088.9
2084.66
2080.27
2075.57
2070.39
2064.52
2057.74
2049.81
2040.49
2029.51
2016.6
2001.49
1983.9
1963.59
1940.33
1913.93
1884.25
1851.25
1814.95
1775.51
1733.26
1688.71
1642.62
1596.12
1550.77
1508.84
1473.73
1450.79
1449.41
1488.2
1611.09
1953.9
3176.4
19183.2
7579.95
5594.94
4978.48
4735.25
4621.29
4558.84
4517.64
4483.85
4450.56
4414.28
4373.38
4327.29
4276.11
4220.3
4160.56
4097.72
4032.71
3966.48
3899.98
3834.16
3769.96
3708.29
3650.02
3596.01
3547.07
3504.01
3467.58
3438.52
3417.53
3405.29
3402.44
3409.6
3427.33
3456.15
3496.53
3548.86
3613.46
3690.53
3780.2
3882.25
3996.44
4122.38
4259.53
4407.19
4564.53
4730.55
4904.14
5084.08
5269.04
5457.64
5648.45
5840.02
6030.88
6219.63
6404.81
6585.07
6759.17
6925.94
7084.29
7233.24
7371.95
7499.65
7615.7
7719.59
7810.92
7889.4
7954.84
8007.18
8046.43
8072.72
8086.25
8087.32
8076.27
8053.53
8019.58
7974.95
7920.19
7855.92
7782.75
7701.33
7612.33
7516.39
7414.18
7306.37
7193.6
7076.51
6955.7
6831.79
6705.34
6576.91
6447
6316.11
6184.71
6053.22
5922.04
5791.54
5662.06
5533.9
5407.34
5282.63
5159.98
5039.59
4921.63
4806.25
4693.55
4583.65
4476.62
4372.52
4271.4
4173.28
4078.19
3986.12
3897.07
3811
3727.91
3647.74
3570.46
3496.01
3424.34
3355.4
3289.11
3225.42
3164.26
3105.56
3049.25
2995.26
2943.53
2893.97
2846.53
2801.14
2757.73
2716.23
2676.59
2638.73
2602.61
2568.16
2535.32
2504.05
2474.28
2445.98
2419.09
2393.57
2369.37
2346.46
2324.79
2304.32
2285.02
2266.85
2249.79
2233.79
2218.83
2204.87
2191.88
2179.82
2168.67
2158.38
2148.93
2140.27
2132.36
2125.16
2118.6
2112.64
2107.19
2102.19
2097.55
2093.16
2088.9
2084.65
2080.26
2075.57
2070.39
2064.52
2057.74
2049.81
2040.49
2029.51
2016.6
2001.49
1983.9
1963.59
1940.33
1913.93
1884.26
1851.25
1814.95
1775.51
1733.26
1688.71
1642.63
1596.12
1550.78
1508.87
1473.75
1450.72
1448.96
1486.67
1607.51
1948.57
3174.1
19693.2
7804.05
5782.88
5158.46
4911.03
4793.17
4726.23
4679.65
4639.55
4599.15
4555.13
4506.06
4451.56
4391.89
4327.69
4259.82
4189.23
4116.98
4044.13
3971.73
3900.83
3832.44
3767.55
3707.11
3652.03
3603.2
3561.48
3527.67
3502.59
3486.98
3481.57
3487.08
3504.14
3533.38
3575.34
3630.51
3699.29
3781.96
3878.71
3989.53
4114.04
4251.88
4402.5
4565.18
4739
4922.89
5115.62
5315.84
5522.08
5732.82
5946.41
6161.27
6375.75
6588.14
6796.94
7000.63
7197.78
7387.08
7567.3
7737.33
7896.18
8043.01
8177.07
8297.77
8404.63
8497.31
8575.58
8639.34
8688.61
8723.48
8744.16
8750.96
8744.26
8724.5
8692.2
8647.93
8592.3
8525.98
8449.64
8364
8269.76
8167.67
8058.46
7942.85
7821.56
7695.29
7564.73
7430.55
7293.39
7153.84
7012.5
6869.92
6726.61
6583.05
6439.7
6296.96
6155.23
6014.84
5876.11
5739.32
5604.72
5472.54
5342.97
5216.16
5092.27
4971.41
4853.68
4739.14
4627.85
4519.85
4415.17
4313.79
4215.73
4120.95
4029.43
3941.14
3856.03
3774.04
3695.11
3619.19
3546.21
3476.08
3408.75
3344.14
3282.16
3222.76
3165.84
3111.33
3059.15
3009.24
2961.52
2915.91
2872.36
2830.77
2791.11
2753.29
2717.25
2682.95
2650.32
2619.3
2589.85
2561.91
2535.44
2510.39
2486.72
2464.4
2443.37
2423.61
2405.07
2387.74
2371.57
2356.53
2342.59
2329.72
2317.88
2307.05
2297.19
2288.27
2280.24
2273.08
2266.73
2261.14
2256.24
2251.97
2248.26
2244.99
2242.08
2239.4
2236.8
2234.14
2231.23
2227.88
2223.87
2218.95
2212.85
2205.31
2196.02
2184.66
2170.93
2154.51
2135.1
2112.42
2086.24
2056.36
2022.7
1985.25
1944.14
1899.69
1852.43
1803.16
1753.08
1703.9
1658.09
1619.35
1593.56
1591.08
1632.39
1764.03
2120.84
3348.38
19819
7838.42
5792.71
5159.95
4910.92
4793.04
4726.21
4679.67
4639.58
4599.17
4555.15
4506.07
4451.57
4391.91
4327.71
4259.83
4189.25
4117
4044.15
3971.75
3900.84
3832.45
3767.56
3707.11
3652.04
3603.21
3561.48
3527.67
3502.58
3486.97
3481.56
3487.06
3504.13
3533.36
3575.32
3630.49
3699.26
3781.93
3878.68
3989.49
4114
4251.83
4402.46
4565.13
4738.95
4922.83
5115.56
5315.78
5522.02
5732.76
5946.35
6161.21
6375.68
6588.08
6796.87
7000.56
7197.71
7387.01
7567.23
7737.26
7896.12
8042.94
8177
8297.7
8404.56
8497.24
8575.52
8639.28
8688.55
8723.42
8744.1
8750.91
8744.2
8724.45
8692.15
8647.88
8592.26
8525.93
8449.6
8363.95
8269.72
8167.64
8058.42
7942.81
7821.53
7695.26
7564.71
7430.53
7293.36
7153.82
7012.48
6869.9
6726.59
6583.04
6439.69
6296.95
6155.22
6014.83
5876.1
5739.31
5604.72
5472.54
5342.96
5216.16
5092.27
4971.41
4853.68
4739.14
4627.85
4519.86
4415.17
4313.79
4215.73
4120.95
4029.44
3941.15
3856.03
3774.04
3695.12
3619.2
3546.21
3476.09
3408.76
3344.14
3282.17
3222.76
3165.84
3111.33
3059.16
3009.25
2961.52
2915.92
2872.36
2830.78
2791.11
2753.29
2717.26
2682.95
2650.32
2619.3
2589.85
2561.91
2535.44
2510.39
2486.73
2464.4
2443.37
2423.61
2405.07
2387.74
2371.57
2356.53
2342.59
2329.72
2317.88
2307.05
2297.19
2288.26
2280.24
2273.08
2266.73
2261.13
2256.24
2251.97
2248.25
2244.99
2242.08
2239.4
2236.8
2234.14
2231.23
2227.88
2223.87
2218.95
2212.85
2205.31
2196.02
2184.66
2170.93
2154.51
2135.1
2112.43
2086.24
2056.36
2022.7
1985.25
1944.14
1899.69
1852.43
1803.17
1753.09
1703.92
1658.12
1619.34
1593.26
1589.56
1627.26
1751.46
2101.94
3352.96
19788.5
7921.1
5936.48
5325.5
5079.64
4959.7
4888.86
4836.97
4790.41
4742.64
4690.62
4633.15
4570.08
4501.86
4429.3
4353.43
4275.36
4196.25
4117.28
4039.62
3964.39
3892.71
3825.63
3764.19
3709.36
3662.09
3623.31
3593.91
3574.74
3566.62
3570.36
3586.7
3616.36
3659.99
3718.19
3791.43
3880.12
3984.51
4104.72
4240.39
4391.15
4556.42
4735.44
4927.22
5130.6
5344.22
5566.6
5796.09
6030.97
6269.51
6509.71
6749.81
6988.01
7222.53
7451.7
7673.92
7887.7
8091.64
8284.51
8465.18
8632.68
8786.19
8925
9048.58
9156.52
9248.56
9324.55
9384.5
9428.49
9456.75
9469.58
9467.4
9450.68
9419.98
9375.93
9319.18
9250.46
9170.52
9080.12
8980.07
8871.15
8754.19
8629.98
8499.31
8362.96
8221.7
8076.26
7927.35
7775.64
7621.8
7466.42
7310.08
7153.34
6996.68
6840.57
6685.45
6531.7
6379.68
6229.7
6082.06
5937
5794.74
5655.47
5519.36
5386.54
5257.11
5131.17
5008.79
4890
4774.83
4663.3
4555.39
4451.1
4350.4
4253.24
4159.58
4069.36
3982.51
3898.98
3818.67
3741.53
3667.47
3596.4
3528.25
3462.93
3400.35
3340.43
3283.09
3228.25
3175.82
3125.73
3077.89
3032.24
2988.69
2947.19
2907.65
2870.03
2834.24
2800.24
2767.97
2737.37
2708.39
2680.98
2655.09
2630.69
2607.73
2586.17
2565.98
2547.12
2529.56
2513.27
2498.21
2484.36
2471.68
2460.15
2449.74
2440.41
2432.14
2424.89
2418.62
2413.28
2408.82
2405.19
2402.31
2400.11
2398.48
2397.33
2396.52
2395.91
2395.32
2394.58
2393.46
2391.73
2389.12
2385.34
2380.07
2372.99
2363.72
2351.92
2337.21
2319.24
2297.67
2272.2
2242.6
2208.7
2170.47
2127.99
2081.58
2031.75
1979.36
1925.7
1872.63
1822.89
1780.61
1752.58
1751.25
1802.26
1961.32
2352.92
3423.08
20479.3
8081.53
5975.77
5331.51
5079.71
4959.4
4888.76
4836.97
4790.42
4742.66
4690.64
4633.17
4570.09
4501.87
4429.32
4353.45
4275.37
4196.26
4117.29
4039.63
3964.41
3892.72
3825.64
3764.19
3709.36
3662.09
3623.31
3593.91
3574.73
3566.61
3570.34
3586.68
3616.34
3659.97
3718.16
3791.4
3880.09
3984.48
4104.68
4240.35
4391.1
4556.37
4735.38
4927.16
5130.54
5344.16
5566.54
5796.02
6030.9
6269.45
6509.64
6749.74
6987.94
7222.46
7451.63
7673.85
7887.63
8091.57
8284.44
8465.11
8632.62
8786.12
8924.93
9048.51
9156.46
9248.5
9324.49
9384.44
9428.43
9456.69
9469.53
9467.34
9450.63
9419.93
9375.88
9319.14
9250.42
9170.48
9080.08
8980.03
8871.12
8754.15
8629.94
8499.28
8362.93
8221.67
8076.24
7927.32
7775.62
7621.78
7466.4
7310.07
7153.32
6996.66
6840.56
6685.44
6531.69
6379.67
6229.7
6082.06
5936.99
5794.74
5655.47
5519.36
5386.54
5257.11
5131.18
5008.79
4890
4774.83
4663.3
4555.4
4451.11
4350.4
4253.25
4159.58
4069.36
3982.52
3898.98
3818.68
3741.54
3667.47
3596.41
3528.26
3462.93
3400.35
3340.44
3283.1
3228.25
3175.83
3125.73
3077.89
3032.24
2988.7
2947.19
2907.66
2870.03
2834.25
2800.25
2767.97
2737.37
2708.39
2680.98
2655.1
2630.69
2607.73
2586.18
2565.98
2547.12
2529.56
2513.27
2498.21
2484.36
2471.68
2460.15
2449.74
2440.41
2432.14
2424.89
2418.62
2413.28
2408.82
2405.19
2402.31
2400.11
2398.48
2397.33
2396.52
2395.9
2395.32
2394.58
2393.46
2391.73
2389.12
2385.34
2380.07
2372.99
2363.72
2351.92
2337.21
2319.24
2297.67
2272.2
2242.6
2208.7
2170.47
2128
2081.58
2031.75
1979.37
1925.71
1872.65
1822.91
1780.52
1751.77
1747.36
1788.45
1924.43
2292.9
3498.65
16583.6
7649.62
6014.91
5469.5
5237.52
5119.02
5045.35
4988.37
4935.27
4879.99
4819.81
4753.85
4682.18
4605.5
4524.8
4441.27
4356.17
4270.8
4186.46
4104.41
4025.89
3952.09
3884.14
3823.16
3770.2
3726.29
3692.43
3669.58
3658.67
3660.6
3676.24
3706.42
3751.9
3813.39
3891.49
3986.71
4099.39
4229.74
4377.62
4542.48
4723.76
4920.65
5132.09
5356.82
5593.33
5839.95
6094.96
6356.25
6621.84
6889.74
7157.85
7424.17
7686.73
7943.63
8193.08
8433.41
8663.05
8880.62
9084.84
9274.62
9449.03
9607.28
9748.75
9872.99
9979.67
10068.6
10139.8
10193.4
10229.6
10248.6
10251
10237.3
10208
10163.9
10105.6
10034
9949.85
9854.03
9747.4
9630.83
9505.23
9371.46
9230.41
9082.93
8929.87
8772.03
8610.21
8445.16
8277.59
8108.18
7937.59
7766.41
7595.19
7424.47
7254.72
7086.38
6919.84
6755.46
6593.57
6434.45
6278.35
6125.49
5976.04
5830.17
5687.99
5549.62
5415.13
5284.57
5157.98
5035.37
4916.75
4802.09
4691.37
4584.55
4481.57
4382.38
4286.91
4195.07
4106.81
4022.02
3940.63
3862.54
3787.65
3715.89
3647.15
3581.35
3518.38
3458.17
3400.61
3345.63
3293.14
3243.04
3195.27
3149.75
3106.39
3065.13
3025.9
2988.64
2953.27
2919.74
2888
2857.99
2829.65
2802.95
2777.84
2754.27
2732.22
2711.63
2692.49
2674.75
2658.39
2643.38
2629.69
2617.29
2606.15
2596.26
2587.57
2580.08
2573.73
2568.5
2564.34
2561.21
2559.05
2557.79
2557.35
2557.63
2558.54
2559.92
2561.64
2563.52
2565.36
2566.93
2567.96
2568.17
2567.24
2564.82
2560.53
2553.97
2544.73
2532.38
2516.5
2496.68
2472.55
2443.8
2410.22
2371.69
2328.26
2280.21
2228.05
2172.69
2115.5
2058.52
2004.82
1959.12
1929.55
1932.37
2005.57
2241.55
2809.87
3000.99
21074.2
8273.76
6132.23
5489.48
5239.84
5119
5045.25
4988.35
4935.28
4880
4819.83
4753.86
4682.2
4605.52
4524.82
4441.29
4356.19
4270.82
4186.48
4104.43
4025.9
3952.09
3884.15
3823.16
3770.2
3726.29
3692.43
3669.57
3658.66
3660.59
3676.22
3706.4
3751.88
3813.36
3891.46
3986.67
4099.35
4229.7
4377.57
4542.43
4723.7
4920.59
5132.03
5356.76
5593.26
5839.88
6094.89
6356.18
6621.77
6889.66
7157.78
7424.1
7686.65
7943.56
8193.01
8433.34
8662.98
8880.55
9084.77
9274.55
9448.96
9607.21
9748.69
9872.92
9979.6
10068.6
10139.8
10193.4
10229.5
10248.6
10251
10237.2
10207.9
10163.8
10105.6
10033.9
9949.81
9853.99
9747.36
9630.8
9505.19
9371.43
9230.38
9082.9
8929.84
8772.01
8610.19
8445.14
8277.57
8108.17
7937.58
7766.39
7595.18
7424.46
7254.71
7086.37
6919.83
6755.46
6593.57
6434.45
6278.35
6125.49
5976.04
5830.17
5688
5549.63
5415.13
5284.58
5157.98
5035.38
4916.75
4802.1
4691.38
4584.55
4481.58
4382.39
4286.91
4195.08
4106.82
4022.03
3940.63
3862.54
3787.66
3715.9
3647.16
3581.36
3518.39
3458.18
3400.62
3345.64
3293.14
3243.05
3195.28
3149.75
3106.4
3065.14
3025.91
2988.64
2953.28
2919.75
2888
2857.99
2829.66
2802.96
2777.84
2754.28
2732.22
2711.64
2692.49
2674.76
2658.4
2643.38
2629.69
2617.29
2606.15
2596.26
2587.57
2580.08
2573.73
2568.5
2564.35
2561.21
2559.05
2557.79
2557.35
2557.63
2558.54
2559.92
2561.64
2563.52
2565.36
2566.93
2567.96
2568.17
2567.24
2564.82
2560.53
2553.98
2544.73
2532.38
2516.5
2496.68
2472.55
2443.81
2410.22
2371.69
2328.27
2280.21
2228.05
2172.69
2115.51
2058.54
2004.83
1958.96
1928.21
1925.74
1980.79
2170.81
2682.5
3587.79
15691.2
7550.54
6098.58
5604.13
5386.6
5270.73
5194.73
5132.77
5073.08
5010.19
4941.83
4867.42
4787.33
4702.47
4614.05
4523.42
4432.01
4341.24
4252.54
4167.27
4086.78
4012.33
3945.16
3886.46
3837.37
3799.01
3772.46
3758.76
3758.95
3774.01
3804.89
3852.5
3917.67
4001.13
4103.52
4225.3
4366.77
4527.98
4708.32
4907.18
5123.72
5356.78
5604.94
5866.64
6139.94
6422.72
6712.9
7008.22
7306.38
7605.12
7902.14
8195.25
8482.33
8761.36
9030.46
9287.91
9532.13
9761.71
9975.42
10172.2
10351.2
10511.8
10653.3
10775.4
10878
10961
11024.5
11068.7
11094
11100.9
11089.9
11061.7
11017
10956.7
10881.5
10792.4
10690.3
10576.2
10451
10315.6
10171.2
10018.6
9858.74
9692.62
9521.09
9345.04
9165.29
8982.64
8797.84
8611.61
8424.61
8237.46
8050.75
7865
7680.71
7498.32
7318.22
7140.79
6966.34
6795.14
6627.45
6463.47
6303.38
6147.32
5995.4
5847.73
5704.36
5565.33
5430.67
5300.37
5174.43
5052.82
4935.48
4822.38
4713.43
4608.58
4507.73
4410.81
4317.71
4228.35
4142.62
4060.43
3981.68
3906.25
3834.05
3764.97
3698.93
3635.8
3575.51
3517.95
3463.03
3410.67
3360.77
3313.26
3268.05
3225.06
3184.23
3145.49
3108.76
3073.99
3041.12
3010.09
2980.85
2953.35
2927.56
2903.42
2880.9
2859.96
2840.58
2822.72
2806.35
2791.45
2777.99
2765.94
2755.29
2746.02
2738.09
2731.5
2726.2
2722.17
2719.37
2717.76
2717.28
2717.87
2719.46
2721.94
2725.21
2729.15
2733.58
2738.34
2743.21
2747.94
2752.27
2755.87
2758.4
2759.47
2758.66
2755.52
2749.57
2740.33
2727.3
2710
2687.96
2660.81
2628.22
2590.02
2546.19
2496.95
2442.82
2384.71
2324.1
2263.22
2205.46
2156.18
2124.7
2130.33
2220.6
2514.85
3155.86
3007.69
21146
8339.04
6247.64
5631.64
5390.79
5271.13
5194.71
5132.76
5073.09
5010.21
4941.85
4867.43
4787.34
4702.49
4614.06
4523.44
4432.02
4341.26
4252.55
4167.29
4086.79
4012.33
3945.16
3886.46
3837.37
3799.01
3772.45
3758.75
3758.94
3773.99
3804.87
3852.47
3917.64
4001.1
4103.48
4225.26
4366.73
4527.93
4708.27
4907.13
5123.66
5356.72
5604.88
5866.58
6139.87
6422.65
6712.83
7008.14
7306.31
7605.04
7902.07
8195.18
8482.25
8761.28
9030.39
9287.84
9532.05
9761.64
9975.35
10172.2
10351.2
10511.7
10653.2
10775.3
10877.9
10960.9
11024.4
11068.6
11094
11100.8
11089.9
11061.7
11017
10956.6
10881.5
10792.4
10690.3
10576.1
10450.9
10315.6
10171.2
10018.6
9858.72
9692.59
9521.07
9345.02
9165.27
8982.62
8797.83
8611.6
8424.6
8237.45
8050.74
7865
7680.7
7498.31
7318.22
7140.79
6966.34
6795.14
6627.45
6463.47
6303.38
6147.32
5995.41
5847.74
5704.36
5565.34
5430.68
5300.38
5174.44
5052.83
4935.49
4822.39
4713.44
4608.59
4507.74
4410.81
4317.72
4228.36
4142.63
4060.44
3981.69
3906.26
3834.06
3764.98
3698.93
3635.81
3575.52
3517.96
3463.04
3410.68
3360.78
3313.27
3268.05
3225.07
3184.24
3145.49
3108.77
3074
3041.12
3010.09
2980.85
2953.36
2927.56
2903.42
2880.9
2859.97
2840.58
2822.72
2806.36
2791.45
2777.99
2765.94
2755.3
2746.02
2738.1
2731.5
2726.2
2722.17
2719.37
2717.76
2717.28
2717.87
2719.46
2721.94
2725.21
2729.15
2733.58
2738.34
2743.21
2747.94
2752.27
2755.87
2758.4
2759.47
2758.66
2755.52
2749.58
2740.34
2727.3
2710
2687.97
2660.81
2628.22
2590.02
2546.19
2496.95
2442.82
2384.71
2324.1
2263.23
2205.49
2156.09
2123.67
2125.43
2209.94
2577.57
4320.12
15545.6
15545
7567.12
6196.65
5734.79
5528.49
5414.72
5336.24
5269.19
5202.82
5132.32
5055.86
4973.23
4885.08
4792.56
4697.09
4600.21
4503.48
4408.48
4316.75
4229.77
4148.97
4075.73
4011.37
3957.18
3914.4
3884.25
3867.9
3866.51
3881.22
3913.12
3963.26
4032.62
4122.09
4232.45
4364.31
4518.06
4693.89
4891.34
5109.64
5347.83
5604.74
5878.84
6168.13
6470.61
6784.03
7105.95
7433.88
7765.25
8097.49
8428.06
8754.49
9074.39
9385.54
9685.82
9973.31
10246.3
10503.1
10742.4
10963.1
11164.2
11344.9
11504.6
11643
11759.7
11854.9
11928.5
11980.8
12012.3
12023.4
12014.7
11987.1
11941.2
11878
11798.4
11703.3
11593.9
11471.1
11336
11189.7
11033.3
10867.7
10694.1
10513.5
10326.8
10135
9939.02
9739.76
9538.04
9334.63
9130.28
8925.68
8721.46
8518.23
8316.51
8116.8
7919.56
7725.17
7534
7346.36
7162.52
6982.71
6807.14
6635.97
6469.33
6307.32
6150.02
5997.48
5849.72
5706.75
5568.55
5435.11
5306.36
5182.26
5062.73
4947.69
4837.07
4730.75
4628.65
4530.65
4436.65
4346.54
4260.2
4177.52
4098.4
4022.7
3950.34
3881.18
3815.14
3752.09
3691.95
3634.61
3579.97
3527.94
3478.44
3431.38
3386.68
3344.26
3304.05
3265.98
3229.98
3196
3163.97
3133.86
3105.6
3079.15
3054.47
3031.53
3010.28
2990.71
2972.77
2956.46
2941.73
2928.57
2916.97
2906.9
2898.35
2891.3
2885.73
2881.63
2878.96
2877.69
2877.8
2879.22
2881.91
2885.79
2890.77
2896.75
2903.6
2911.16
2919.24
2927.62
2936.06
2944.25
2951.87
2958.53
2963.81
2967.24
2968.33
2966.53
2961.28
2952
2938.12
2919.09
2894.4
2863.66
2826.58
2783.06
2733.25
2677.62
2617.11
2553.27
2488.52
2426.57
2373.35
2339.08
2344.44
2439.28
2747.06
3384.31
3074.82
17701.5
7996.43
6292.65
5754.79
5532.05
5415.2
5336.27
5269.19
5202.83
5132.33
5055.88
4973.25
4885.1
4792.58
4697.11
4600.22
4503.5
4408.5
4316.76
4229.78
4148.98
4075.73
4011.37
3957.18
3914.4
3884.24
3867.89
3866.5
3881.2
3913.1
3963.23
4032.59
4122.06
4232.42
4364.26
4518.01
4693.84
4891.29
5109.58
5347.77
5604.68
5878.78
6168.06
6470.54
6783.95
7105.88
7433.81
7765.18
8097.42
8427.98
8754.41
9074.32
9385.47
9685.75
9973.24
10246.2
10503
10742.4
10963.1
11164.2
11344.8
11504.6
11642.9
11759.7
11854.8
11928.4
11980.8
12012.2
12023.3
12014.7
11987
11941.2
11877.9
11798.3
11703.3
11593.9
11471.1
11336
11189.7
11033.2
10867.7
10694.1
10513.4
10326.7
10135
9939.01
9739.75
9538.03
9334.62
9130.27
8925.67
8721.46
8518.22
8316.51
8116.8
7919.56
7725.17
7534
7346.36
7162.52
6982.72
6807.15
6635.98
6469.34
6307.33
6150.03
5997.49
5849.73
5706.76
5568.56
5435.12
5306.37
5182.27
5062.74
4947.71
4837.08
4730.76
4628.66
4530.66
4436.66
4346.55
4260.21
4177.54
4098.41
4022.72
3950.35
3881.19
3815.15
3752.1
3691.96
3634.62
3579.98
3527.95
3478.45
3431.39
3386.69
3344.27
3304.06
3265.98
3229.99
3196.01
3163.98
3133.86
3105.6
3079.15
3054.48
3031.53
3010.29
2990.71
2972.78
2956.46
2941.74
2928.58
2916.97
2906.9
2898.35
2891.3
2885.74
2881.63
2878.96
2877.69
2877.8
2879.22
2881.91
2885.79
2890.78
2896.76
2903.6
2911.16
2919.24
2927.62
2936.06
2944.25
2951.87
2958.53
2963.81
2967.24
2968.33
2966.53
2961.28
2952
2938.12
2919.09
2894.41
2863.67
2826.59
2783.07
2733.25
2677.62
2617.11
2553.27
2488.52
2426.59
2373.32
2338.44
2340.97
2433.02
2830.75
4761.5
15444.7
15714
7652.58
6308.78
5863.4
5663.7
5550.52
5468.95
5396.55
5323.46
5245.46
5161.18
5070.77
4975.18
4875.8
4774.26
4672.28
4571.57
4473.86
4380.81
4293.99
4214.97
4145.22
4086.16
4039.2
4005.69
3986.96
3984.32
3999.05
4032.42
4085.65
4159.88
4256.18
4375.5
4518.59
4685.99
4878
5094.43
5334.23
5596.55
5879.77
6182.28
6502.08
6836.82
7183.99
7540.88
7904.67
8272.49
8641.45
9008.7
9371.48
9727.13
10073.2
10407.2
10727.1
11031
11317
11583.8
11829.9
12054.3
12256.3
12435.1
12590.2
12721.6
12829.1
12912.9
12973.2
13010.5
13025.3
13018.4
12990.5
12942.5
12875.4
12790.2
12688
12570
12437.1
12290.7
12132
11961.9
11781.8
11592.8
11396
11192.5
10983.2
10769.4
10551.8
10331.4
10109.1
9885.74
9662.01
9438.63
9216.26
8995.5
8776.89
8560.93
8348.06
8138.68
7933.13
7731.72
7534.71
7342.32
7154.73
6972.09
6794.52
6622.1
6454.89
6292.93
6136.21
5984.73
5838.46
5697.35
5561.34
5430.35
5304.29
5183.08
5066.6
4954.75
4847.42
4744.47
4645.79
4551.26
4460.75
4374.14
4291.3
4212.1
4136.44
4064.18
3995.21
3929.42
3866.7
3806.94
3750.04
3695.9
3644.43
3595.54
3549.14
3505.15
3463.49
3424.1
3386.9
3351.84
3318.85
3287.88
3258.89
3231.82
3206.64
3183.32
3161.81
3142.09
3124.14
3107.94
3093.45
3080.68
3069.6
3060.2
3052.47
3046.41
3042
3039.23
3038.08
3038.53
3040.54
3044.1
3049.13
3055.59
3063.38
3072.41
3082.55
3093.65
3105.53
3117.95
3130.66
3143.34
3155.65
3167.18
3177.47
3186
3192.23
3195.54
3195.29
3190.81
3181.43
3166.48
3145.34
3117.49
3082.52
3040.21
2990.61
2934.15
2871.74
2804.98
2736.43
2670.15
2612.6
2574.87
2578.78
2675.11
2986.46
3609.91
3149.79
16368.2
7827.39
6354.14
5874.02
5665.83
5550.85
5468.98
5396.55
5323.46
5245.46
5161.2
5070.79
4975.2
4875.82
4774.28
4672.29
4571.59
4473.88
4380.82
4294
4214.98
4145.22
4086.16
4039.2
4005.68
3986.95
3984.3
3999.04
4032.4
4085.62
4159.85
4256.15
4375.46
4518.54
4685.95
4877.95
5094.38
5334.17
5596.49
5879.7
6182.21
6502.01
6836.75
7183.91
7540.8
7904.59
8272.41
8641.37
9008.62
9371.41
9727.06
10073.1
10407.1
10727
11030.9
11317
11583.7
11829.8
12054.3
12256.2
12435
12590.2
12721.6
12829.1
12912.8
12973.1
13010.4
13025.3
13018.3
12990.4
12942.5
12875.4
12790.2
12688
12569.9
12437.1
12290.7
12131.9
11961.9
11781.8
11592.8
11396
11192.4
10983.2
10769.4
10551.8
10331.4
10109.1
9885.74
9662
9438.62
9216.25
8995.5
8776.89
8560.93
8348.07
8138.69
7933.14
7731.73
7534.72
7342.33
7154.74
6972.1
6794.53
6622.11
6454.91
6292.94
6136.22
5984.75
5838.48
5697.37
5561.35
5430.36
5304.31
5183.1
5066.62
4954.77
4847.43
4744.48
4645.81
4551.28
4460.77
4374.15
4291.31
4212.12
4136.45
4064.19
3995.22
3929.44
3866.71
3806.95
3750.05
3695.92
3644.44
3595.55
3549.15
3505.16
3463.5
3424.11
3386.91
3351.84
3318.86
3287.89
3258.9
3231.83
3206.65
3183.32
3161.82
3142.1
3124.15
3107.94
3093.46
3080.68
3069.6
3060.2
3052.48
3046.42
3042
3039.23
3038.08
3038.53
3040.55
3044.1
3049.13
3055.59
3063.38
3072.41
3082.56
3093.66
3105.53
3117.95
3130.66
3143.35
3155.66
3167.18
3177.47
3186.01
3192.23
3195.54
3195.29
3190.81
3181.43
3166.48
3145.35
3117.5
3082.52
3040.21
2990.62
2934.16
2871.74
2804.97
2736.42
2670.14
2612.57
2574.51
2576.64
2672.75
3079.88
5054.97
15860.5
15923
7765.87
6426
5987.62
5790.85
5676.79
5591.55
5513.64
5433.91
5348.73
5257.16
5159.69
5057.58
4952.47
4846.2
4740.64
4637.7
4539.21
4446.96
4362.66
4287.97
4224.49
4173.78
4137.34
4116.69
4113.29
4128.61
4164.1
4221.14
4301.11
4405.26
4534.73
4690.47
4873.16
5083.23
5320.82
5584.52
5873.29
6185.69
6519.79
6873.34
7243.77
7628.23
8023.69
8426.97
8834.85
9244.09
9651.5
10054
10448.5
10832.4
11203
11557.9
11895
12212.3
12508.2
12781.3
13030.4
13254.6
13453.2
13625.8
13772
13892
13985.7
14053.6
14096.2
14114
14107.9
14078.8
14027.5
13955.3
13863.1
13752.3
13624
13479.5
13320.1
13147
12961.6
12765.1
12558.8
12343.9
12121.6
11893
11659.3
11421.5
11180.6
10937.5
10693.2
10448.5
10204.1
9960.84
9719.28
9480.05
9243.68
9010.68
8781.48
8556.46
8335.95
8120.25
7909.59
7704.19
7504.21
7309.77
7120.97
6937.88
6760.53
6588.94
6423.09
6262.95
6108.48
5959.59
5816.22
5678.26
5545.62
5418.17
5295.81
5178.39
5065.79
4957.88
4854.52
4755.57
4660.89
4570.35
4483.8
4401.12
4322.17
4246.83
4174.96
4106.45
4041.18
3979.03
3919.9
3863.67
3810.26
3759.56
3711.49
3665.96
3622.89
3582.21
3543.84
3507.73
3473.81
3442.03
3412.34
3384.7
3359.06
3335.4
3313.68
3293.87
3275.96
3259.92
3245.75
3233.43
3222.95
3214.31
3207.51
3202.55
3199.42
3198.12
3198.64
3200.98
3205.11
3211.01
3218.64
3227.95
3238.87
3251.3
3265.13
3280.22
3296.37
3313.37
3330.96
3348.8
3366.54
3383.74
3399.91
3414.5
3426.88
3436.39
3442.29
3443.82
3440.18
3430.59
3414.29
3390.59
3358.94
3318.99
3270.64
3214.22
3150.59
3081.37
3009.24
2938.55
2876.3
2834.51
2836.53
2936.18
3267.03
3974.4
3222.76
16116.6
7828.21
6444.18
5992.33
5791.88
5676.94
5591.54
5513.62
5433.9
5348.73
5257.17
5159.7
5057.6
4952.49
4846.21
4740.66
4637.71
4539.22
4446.97
4362.67
4287.97
4224.49
4173.77
4137.34
4116.68
4113.28
4128.6
4164.07
4221.12
4301.08
4405.23
4534.69
4690.42
4873.11
5083.18
5320.77
5584.46
5873.23
6185.63
6519.72
6873.27
7243.7
7628.16
8023.61
8426.89
8834.78
9244.02
9651.42
10053.9
10448.5
10832.4
11202.9
11557.9
11894.9
12212.3
12508.2
12781.3
13030.4
13254.6
13453.2
13625.7
13772
13891.9
13985.7
14053.6
14096.1
14114
14107.9
14078.7
14027.5
13955.3
13863.1
13752.3
13624
13479.5
13320
13147
12961.6
12765.1
12558.8
12343.9
12121.6
11893
11659.3
11421.5
11180.6
10937.5
10693.2
10448.5
10204.1
9960.85
9719.28
9480.05
9243.69
9010.69
8781.49
8556.47
8335.96
8120.26
7909.61
7704.2
7504.22
7309.78
7120.98
6937.89
6760.55
6588.96
6423.11
6262.97
6108.49
5959.61
5816.24
5678.28
5545.64
5418.19
5295.82
5178.41
5065.81
4957.9
4854.54
4755.59
4660.91
4570.36
4483.82
4401.14
4322.19
4246.85
4174.98
4106.47
4041.19
3979.04
3919.91
3863.69
3810.27
3759.57
3711.5
3665.97
3622.9
3582.22
3543.85
3507.74
3473.82
3442.04
3412.35
3384.71
3359.07
3335.41
3313.69
3293.88
3275.97
3259.93
3245.76
3233.43
3222.96
3214.32
3207.52
3202.55
3199.42
3198.12
3198.65
3200.98
3205.11
3211.01
3218.65
3227.95
3238.87
3251.3
3265.14
3280.22
3296.38
3313.38
3330.96
3348.81
3366.55
3383.75
3399.92
3414.5
3426.89
3436.39
3442.3
3443.83
3440.19
3430.6
3414.3
3390.6
3358.95
3318.99
3270.64
3214.22
3150.59
3081.35
3009.21
2938.5
2876.21
2834.13
2834.52
2932.39
3342.07
5338.44
16435.7
16113.2
7879.44
6538.29
6103.02
5907.26
5791.5
5702.37
5619.07
5533.09
5441.33
5343.3
5239.85
5132.52
5023.21
4913.94
4806.79
4703.8
4606.95
4518.15
4439.24
4372.02
4318.21
4279.52
4257.63
4254.2
4270.89
4309.34
4371.18
4457.99
4571.25
4712.32
4882.35
5082.32
5312.65
5573.47
5863.82
6182.2
6527.02
6896.19
7287.21
7697.17
8122.89
8560.94
9007.76
9459.71
9913.17
10364.5
10810.4
11247.3
11672.3
12082.4
12475.1
12847.8
13198.5
13525.5
13827.1
14102
14349.4
14568.5
14758.8
14920
15052.2
15155.6
15230.5
15277.5
15297.4
15290.9
15259.2
15203.2
15124.2
15023.4
14902.1
14761.6
14603.5
14429
14239.7
14036.8
13821.8
13596
13360.9
13117.6
12867.6
12611.8
12351.6
12088.1
11822.2
11554.9
11287.1
11019.8
10753.6
10489.3
10227.6
9968.98
9714.07
9463.31
9217.13
8975.89
8739.91
8509.46
8284.76
8066
7853.31
7646.8
7446.54
7252.58
7064.93
6883.57
6708.47
6539.58
6376.81
6220.09
6069.31
5924.36
5785.11
5651.42
5523.16
5400.18
5282.34
5169.49
5061.46
4958.12
4859.31
4764.87
4674.66
4588.53
4506.34
4427.96
4353.23
4282.04
4214.26
4149.77
4088.44
4030.18
3974.86
3922.41
3872.71
3825.68
3781.24
3739.31
3699.82
3662.7
3627.89
3595.34
3565
3536.82
3510.77
3486.82
3464.93
3445.08
3427.27
3411.46
3397.66
3385.86
3376.06
3368.27
3362.48
3358.72
3356.99
3357.3
3359.65
3364.04
3370.48
3378.94
3389.41
3401.85
3416.2
3432.39
3450.31
3469.83
3490.76
3512.91
3536
3559.71
3583.65
3607.39
3630.39
3652.07
3671.74
3688.67
3702.02
3710.94
3714.5
3711.77
3701.82
3683.8
3656.96
3620.77
3574.98
3519.74
3455.83
3384.83
3309.53
3234.5
3167.28
3120.92
3121.12
3231.27
3659.98
5317.5
15138.6
16168.8
7899.93
6544.9
6104.87
5907.64
5791.51
5702.32
5619.03
5533.07
5441.33
5343.31
5239.86
5132.54
5023.22
4913.96
4806.81
4703.81
4606.96
4518.15
4439.25
4372.02
4318.21
4279.52
4257.62
4254.19
4270.87
4309.32
4371.16
4457.96
4571.22
4712.28
4882.31
5082.27
5312.6
5573.42
5863.76
6182.14
6526.95
6896.13
7287.14
7697.1
8122.81
8560.86
9007.68
9459.64
9913.1
10364.5
10810.3
11247.3
11672.2
12082.4
12475
12847.7
13198.5
13525.4
13827
14102
14349.4
14568.4
14758.7
14920
15052.2
15155.5
15230.4
15277.5
15297.3
15290.9
15259.1
15203.2
15124.1
15023.3
14902
14761.6
14603.5
14429
14239.6
14036.7
13821.7
13596
13360.9
13117.6
12867.5
12611.8
12351.6
12088.1
11822.2
11554.9
11287.1
11019.8
10753.6
10489.3
10227.6
9968.99
9714.08
9463.32
9217.14
8975.9
8739.93
8509.48
8284.78
8066.02
7853.33
7646.82
7446.56
7252.6
7064.95
6883.59
6708.49
6539.6
6376.83
6220.11
6069.33
5924.38
5785.12
5651.44
5523.18
5400.2
5282.36
5169.51
5061.48
4958.14
4859.32
4764.89
4674.68
4588.55
4506.36
4427.97
4353.25
4282.06
4214.28
4149.78
4088.46
4030.19
3974.88
3922.42
3872.72
3825.69
3781.25
3739.32
3699.83
3662.71
3627.9
3595.35
3565.01
3536.84
3510.79
3486.83
3464.94
3445.09
3427.28
3411.47
3397.67
3385.87
3376.07
3368.27
3362.49
3358.73
3357
3357.31
3359.65
3364.05
3370.48
3378.95
3389.42
3401.85
3416.21
3432.39
3450.31
3469.83
3490.77
3512.91
3536
3559.71
3583.66
3607.39
3630.4
3652.07
3671.75
3688.67
3702.03
3710.95
3714.51
3711.77
3701.82
3683.8
3656.97
3620.78
3574.98
3519.75
3455.83
3384.81
3309.48
3234.41
3167.11
3120.37
3118.07
3215.8
3615.35
5534.42
15749.2
16258.2
7978.51
6638.07
6205.23
6009.96
5892.44
5799.68
5711.48
5619.98
5522.61
5419.35
5311.39
5200.58
5089.06
4979.05
4872.8
4772.5
4680.27
4598.17
4528.17
4472.23
4432.23
4410.05
4407.58
4426.69
4469.25
4537.14
4632.17
4756.09
4910.56
5096.92
5316.21
5569.17
5856.07
6176.2
6527.62
6908.6
7316.81
7749.44
8203.25
8674.65
9159.78
9654.62
10155.1
10657.1
11156.6
11649.8
12132.9
12602.5
13055.3
13488.5
13899.5
14285.8
14645.7
14977.3
15279.3
15550.7
15790.7
15998.9
16175
16319.1
16431.4
16512.5
16562.8
16583.4
16575.1
16539.1
16476.6
16388.8
16277.3
16143.4
15988.7
15814.6
15622.7
15414.6
15191.8
14955.9
14708.3
14450.5
14183.8
13909.8
13629.7
13344.8
13056.2
12765.1
12472.6
12179.6
11887.1
11595.9
11306.8
11020.5
10737.7
10459
10184.8
9915.7
9651.99
9394.05
9142.18
8896.62
8657.56
8425.16
8199.54
7980.77
7768.9
7563.94
7365.88
7174.68
6990.27
6812.59
6641.52
6476.96
6318.79
6166.85
6021.02
5881.12
5747.02
5618.53
5495.5
5377.76
5265.14
5157.47
5054.58
4956.31
4862.51
4773
4687.64
4606.27
4528.76
4454.96
4384.73
4317.95
4254.5
4194.25
4137.1
4082.94
4031.67
3983.2
3937.44
3894.32
3853.75
3815.68
3780.03
3746.76
3715.81
3687.15
3660.73
3636.53
3614.53
3594.69
3577.02
3561.5
3548.13
3536.92
3527.87
3521
3516.33
3513.87
3513.64
3515.68
3519.99
3526.6
3535.51
3546.74
3560.29
3576.12
3594.21
3614.5
3636.89
3661.29
3687.52
3715.38
3744.63
3774.93
3805.9
3837.09
3867.94
3897.83
3926.03
3951.72
3974
3991.87
4004.28
4010.14
4008.34
3997.82
3977.61
3946.94
3905.34
3852.77
3789.83
3718.03
3640.18
3561.07
3488.74
3437.14
3433.26
3541.69
3983.11
5916.86
16662.5
16273.7
7984.91
6640.34
6205.85
6010.02
5892.35
5799.59
5711.43
5619.95
5522.61
5419.35
5311.4
5200.6
5089.08
4979.07
4872.82
4772.51
4680.28
4598.17
4528.18
4472.23
4432.22
4410.05
4407.57
4426.68
4469.23
4537.12
4632.14
4756.06
4910.52
5096.88
5316.16
5569.11
5856.01
6176.14
6527.56
6908.53
7316.74
7749.37
8203.18
8674.58
9159.7
9654.55
10155
10657
11156.5
11649.7
12132.8
12602.4
13055.3
13488.5
13899.4
14285.8
14645.6
14977.2
15279.2
15550.7
15790.7
15998.9
16175
16319.1
16431.4
16512.4
16562.8
16583.4
16575.1
16539.1
16476.5
16388.8
16277.3
16143.4
15988.6
15814.6
15622.7
15414.6
15191.8
14955.9
14708.3
14450.4
14183.8
13909.8
13629.7
13344.8
13056.2
12765.1
12472.6
12179.6
11887.1
11595.9
11306.8
11020.5
10737.8
10459
10184.8
9915.71
9652
9394.07
9142.2
8896.64
8657.58
8425.18
8199.56
7980.79
7768.92
7563.96
7365.9
7174.7
6990.3
6812.61
6641.54
6476.99
6318.81
6166.87
6021.04
5881.15
5747.04
5618.55
5495.52
5377.78
5265.16
5157.49
5054.6
4956.33
4862.53
4773.02
4687.66
4606.29
4528.78
4454.98
4384.75
4317.97
4254.52
4194.27
4137.12
4082.96
4031.69
3983.22
3937.46
3894.33
3853.77
3815.69
3780.04
3746.77
3715.82
3687.16
3660.74
3636.54
3614.54
3594.7
3577.03
3561.51
3548.14
3536.93
3527.88
3521.01
3516.33
3513.87
3513.65
3515.68
3519.99
3526.6
3535.52
3546.75
3560.29
3576.13
3594.21
3614.5
3636.9
3661.29
3687.52
3715.39
3744.63
3774.93
3805.91
3837.09
3867.95
3897.84
3926.04
3951.73
3974
3991.87
4004.29
4010.15
4008.35
3997.82
3977.61
3946.95
3905.34
3852.77
3789.82
3718.01
3640.12
3560.95
3488.49
3436.46
3430.21
3525.08
3903.7
5707.42
16028.2
16332.8
8053.78
6720.04
6290.82
6096.49
5977.66
5881.89
5789.66
5693.74
5592.16
5485.33
5374.84
5262.82
5151.64
5043.72
4941.47
4847.24
4763.3
4691.86
4635.07
4595.04
4573.89
4573.71
4596.63
4644.78
4720.28
4825.3
4961.83
5131.7
5336.62
5577.89
5856.41
6172.56
6526.06
6914.44
7335.76
7787.46
8266.37
8768.85
9290.85
9828.01
10375.8
10929.7
11485
12037.2
12582
13115.3
13633.2
14132.2
14609
15060.8
15485.1
15879.6
16242.7
16572.9
16869
17130.3
17356.4
17547
17702.3
17822.7
17908.6
17960.8
17980.4
17968.4
17926.1
17854.8
17756.1
17631.4
17482.4
17310.7
17118.1
16906.1
16676.6
16431.2
16171.5
15899.3
15616
15323.3
15022.7
14715.5
14403.2
14087
13768.2
13448
13127.3
12807.3
12488.8
12172.7
11859.7
11550.6
11246
10946.4
10652.4
10364.4
10082.7
9807.71
9539.64
9278.7
9025.07
8778.87
8540.18
8309.05
8085.49
7869.49
7661
7459.96
7266.27
7079.83
6900.51
6728.17
6562.66
6403.82
6251.49
6105.48
5965.62
5831.72
5703.6
5581.07
5463.95
5352.06
5245.2
5143.21
5045.9
4953.11
4864.67
4780.42
4700.21
4623.88
4551.3
4482.32
4416.82
4354.67
4295.76
4239.96
4187.19
4137.35
4090.34
4046.08
4004.49
3965.52
3929.09
3895.15
3863.65
3834.55
3807.82
3783.42
3761.35
3741.58
3724.11
3708.93
3696.04
3685.48
3677.24
3671.37
3667.87
3666.8
3668.18
3672.05
3678.45
3687.41
3698.97
3713.16
3729.98
3749.46
3771.57
3796.29
3823.54
3853.25
3885.27
3919.43
3955.48
3993.12
4031.97
4071.56
4111.34
4150.65
4188.71
4224.64
4257.45
4286.03
4309.19
4325.65
4334.09
4333.23
4321.82
4298.82
4263.47
4215.46
4155.14
4083.88
4004.44
3921.77
3844.37
3787.13
3778.47
3883.61
4316.13
6284.72
17338.2
16337
8055.78
6720.81
6290.98
6096.41
5977.53
5881.79
5789.59
5693.71
5592.15
5485.33
5374.85
5262.83
5151.65
5043.73
4941.48
4847.25
4763.31
4691.86
4635.07
4595.04
4573.88
4573.7
4596.62
4644.76
4720.26
4825.27
4961.79
5131.66
5336.57
5577.84
5856.36
6172.51
6526
6914.38
7335.7
7787.39
8266.3
8768.78
9290.77
9827.94
10375.8
10929.6
11484.9
12037.1
12582
13115.3
13633.2
14132.2
14609
15060.8
15485
15879.6
16242.7
16572.8
16868.9
17130.3
17356.3
17547
17702.3
17822.6
17908.6
17960.8
17980.4
17968.4
17926.1
17854.8
17756.1
17631.4
17482.4
17310.7
17118
16906.1
16676.6
16431.1
16171.5
15899.2
15616
15323.3
15022.7
14715.5
14403.2
14087
13768.3
13448
13127.3
12807.3
12488.8
12172.7
11859.7
11550.6
11246
10946.5
10652.4
10364.4
10082.7
9807.74
9539.66
9278.72
9025.09
8778.89
8540.21
8309.08
8085.52
7869.52
7661.03
7459.99
7266.3
7079.85
6900.53
6728.19
6562.69
6403.85
6251.52
6105.51
5965.65
5831.75
5703.63
5581.1
5463.98
5352.08
5245.22
5143.23
5045.92
4953.13
4864.69
4780.45
4700.23
4623.9
4551.32
4482.34
4416.84
4354.69
4295.77
4239.98
4187.21
4137.37
4090.35
4046.09
4004.51
3965.53
3929.1
3895.16
3863.66
3834.56
3807.83
3783.44
3761.36
3741.59
3724.12
3708.94
3696.06
3685.49
3677.25
3671.38
3667.88
3666.81
3668.19
3672.06
3678.45
3687.42
3698.98
3713.16
3729.99
3749.47
3771.58
3796.29
3823.55
3853.26
3885.28
3919.44
3955.49
3993.13
4031.97
4071.57
4111.35
4150.65
4188.72
4224.65
4257.46
4286.04
4309.2
4325.66
4334.1
4333.23
4321.83
4298.83
4263.47
4215.46
4155.13
4083.85
4004.36
3921.6
3843.99
3786.02
3773.62
3854.54
4118.78
4816.39
3444.28
16329.7
8100.17
6780.94
6357.58
6165.09
6045.65
5947.75
5852.65
5753.82
5649.88
5541.7
5431.23
5320.88
5213.24
5110.93
5016.51
4932.5
4861.33
4805.4
4767.04
4748.62
4752.47
4781
4836.64
4921.8
5038.88
5190.23
5378.07
5604.34
5870.67
6178.18
6527.43
6918.29
7348.04
7814.44
8314.61
8845
9401.5
9979.53
10574.2
11180.4
11793
12406.7
13016.5
13617.7
14205.5
14775.7
15324.3
15847.9
16343.2
16807.6
17238.7
17634.6
17993.8
18315.1
18597.9
18841.5
19046.1
19211.6
19338.7
19427.9
19480.2
19496.7
19478.8
19427.7
19345.1
19232.6
19091.9
18924.9
18733.3
18519
18283.9
18029.9
17758.7
17472.2
17172.3
16860.6
16538.8
16208.5
15871.4
15528.8
15182.3
14833
14482.4
14131.4
13781.3
13433
13087.5
12745.5
12407.8
12075.2
11748.1
11427.2
11112.9
10805.6
10505.7
10213.4
9928.89
9652.44
9384.14
9124.07
8872.29
8628.81
8393.59
8166.6
7947.76
7736.96
7534.08
7338.99
7151.54
6971.55
6798.84
6633.25
6474.56
6322.58
6177.11
6037.95
5904.88
5777.71
5656.24
5540.25
5429.57
5323.98
5223.31
5127.37
5035.98
4948.97
4866.17
4787.43
4712.6
4641.53
4574.08
4510.12
4449.53
4392.2
4338.01
4286.87
4238.68
4193.36
4150.83
4111.02
4073.87
4039.32
4007.33
3977.85
3950.85
3926.31
3904.22
3884.56
3867.33
3852.54
3840.2
3830.33
3822.96
3818.13
3815.89
3816.27
3819.33
3825.13
3833.72
3845.15
3859.5
3876.8
3897.11
3920.45
3946.84
3976.29
4008.76
4044.19
4082.49
4123.49
4166.99
4212.72
4260.3
4309.28
4359.1
4409.09
4458.44
4506.22
4551.33
4592.58
4628.6
4657.95
4679.07
4690.4
4690.4
4677.68
4651.13
4610.07
4554.53
4485.61
4405.94
4320.55
4238.33
4175.15
4161.32
4263.86
4674.69
6333.73
16061.5
16331
8100.89
6781.24
6357.59
6164.97
6045.5
5947.64
5852.58
5753.78
5649.86
5541.7
5431.24
5320.89
5213.25
5110.94
5016.52
4932.51
4861.34
4805.4
4767.04
4748.61
4752.46
4780.99
4836.62
4921.78
5038.85
5190.2
5378.03
5604.3
5870.62
6178.13
6527.38
6918.24
7347.98
7814.38
8314.55
8844.94
9401.43
9979.46
10574.1
11180.3
11792.9
12406.6
13016.5
13617.6
14205.4
14775.6
15324.3
15847.8
16343.2
16807.6
17238.7
17634.6
17993.8
18315.1
18597.8
18841.5
19046
19211.6
19338.6
19427.9
19480.2
19496.7
19478.8
19427.7
19345.1
19232.6
19091.9
18924.9
18733.3
18519
18283.9
18029.9
17758.7
17472.2
17172.3
16860.6
16538.8
16208.5
15871.4
15528.9
15182.3
14833.1
14482.4
14131.5
13781.3
13433
13087.5
12745.5
12407.8
12075.2
11748.1
11427.2
11112.9
10805.7
10505.7
10213.4
9928.92
9652.47
9384.17
9124.1
8872.32
8628.84
8393.62
8166.63
7947.79
7736.98
7534.11
7339.02
7151.56
6971.57
6798.87
6633.27
6474.59
6322.61
6177.14
6037.97
5904.91
5777.74
5656.26
5540.28
5429.59
5324.01
5223.33
5127.39
5036
4948.99
4866.19
4787.46
4712.62
4641.55
4574.1
4510.14
4449.55
4392.22
4338.03
4286.89
4238.7
4193.38
4150.85
4111.04
4073.89
4039.34
4007.34
3977.86
3950.87
3926.33
3904.23
3884.57
3867.35
3852.55
3840.21
3830.34
3822.97
3818.14
3815.9
3816.28
3819.34
3825.14
3833.73
3845.16
3859.51
3876.81
3897.11
3920.45
3946.85
3976.29
4008.76
4044.2
4082.49
4123.5
4167
4212.72
4260.3
4309.29
4359.11
4409.1
4458.45
4506.22
4551.34
4592.59
4628.61
4657.96
4679.08
4690.41
4690.41
4677.69
4651.13
4610.07
4554.52
4485.57
4405.85
4320.33
4237.85
4173.9
4156.5
4237.22
4496.33
4873.33
3178.99
16249.4
8114.78
6818.9
6404.21
6214.53
6095.22
5996.25
5899.79
5800.02
5696.13
5589.44
5482.23
5377.17
5277.06
5184.7
5102.82
5034.1
4981.19
4946.68
4933.17
4943.31
4979.76
5045.23
5142.49
5274.29
5443.33
5652.17
5903.14
6198.15
6538.62
6925.28
7358.09
7834.39
8351.25
8905.5
9493.16
10109.6
10749.6
11407.8
12078.3
12755.3
13432.9
14105.7
14768
15414.9
16041.4
16643.4
17216.9
17758.5
18265.2
18734.5
19164.4
19553.4
19900.2
20204.1
20464.8
20682.2
20856.7
20988.7
21079.3
21129.4
21140.4
21113.7
21051
20954
20824.6
20664.7
20476.3
20261.4
20022
19760.3
19478.3
19177.9
18861.2
18530.2
18186.6
17832.4
17469.3
17099
16723.1
16343.1
15960.4
15576.5
15192.5
14809.5
14428.8
14051.3
13677.8
13309.2
12946.2
12589.4
12239.5
11896.9
11562.1
11235.3
10916.9
10607.2
10306.3
10014.3
9731.4
9457.54
9192.76
8937.04
8690.31
8452.48
8223.45
8003.07
7791.2
7587.66
7392.27
7204.83
7025.15
6852.99
6688.16
6530.41
6379.54
6235.31
6097.5
5965.88
5840.24
5720.36
5606.02
5497.01
5393.14
5294.21
5200.02
5110.4
5025.17
4944.16
4867.21
4794.17
4724.89
4659.25
4597.1
4538.33
4482.82
4430.48
4381.2
4334.91
4291.51
4250.94
4213.13
4178.04
4145.61
4115.8
4088.6
4063.97
4041.9
4022.4
4005.46
3991.1
3979.33
3970.2
3963.75
3960.02
3959.06
3960.96
3965.76
3973.55
3984.41
3998.42
4015.66
4036.21
4060.15
4087.54
4118.44
4152.88
4190.88
4232.42
4277.43
4325.81
4377.39
4431.92
4489.08
4548.43
4609.44
4671.43
4733.57
4794.88
4854.23
4910.28
4961.54
5006.35
5042.94
5069.43
5083.94
5084.66
5070.04
5038.96
4990.98
4926.82
4848.82
4761.95
4675.42
4606.01
4586.49
4691.37
5135.14
6823.9
17392.4
16250.1
8115.15
6819.11
6404.19
6214.41
6095.08
5996.13
5899.71
5799.98
5696.11
5589.44
5482.24
5377.18
5277.07
5184.71
5102.83
5034.11
4981.19
4946.68
4933.17
4943.3
4979.75
5045.22
5142.47
5274.26
5443.29
5652.14
5903.1
6198.11
6538.57
6925.22
7358.04
7834.33
8351.19
8905.44
9493.09
10109.5
10749.6
11407.7
12078.2
12755.2
13432.9
14105.6
14768
15414.8
16041.4
16643.4
17216.9
17758.5
18265.2
18734.5
19164.4
19553.4
19900.2
20204.1
20464.8
20682.2
20856.6
20988.7
21079.3
21129.4
21140.4
21113.7
21051
20954
20824.6
20664.7
20476.3
20261.4
20022
19760.3
19478.3
19177.9
18861.2
18530.2
18186.6
17832.4
17469.3
17099
16723.1
16343.1
15960.5
15576.5
15192.5
14809.6
14428.8
14051.3
13677.8
13309.2
12946.2
12589.5
12239.5
11896.9
11562.1
11235.3
10917
10607.2
10306.3
10014.4
9731.43
9457.57
9192.8
8937.07
8690.34
8452.51
8223.48
8003.1
7791.23
7587.69
7392.3
7204.87
7025.18
6853.02
6688.19
6530.44
6379.57
6235.34
6097.53
5965.91
5840.27
5720.39
5606.05
5497.04
5393.17
5294.23
5200.05
5110.43
5025.19
4944.18
4867.23
4794.19
4724.92
4659.27
4597.12
4538.35
4482.84
4430.5
4381.22
4334.92
4291.53
4250.95
4213.15
4178.05
4145.62
4115.82
4088.61
4063.98
4041.92
4022.41
4005.47
3991.11
3979.35
3970.22
3963.76
3960.03
3959.08
3960.97
3965.77
3973.56
3984.42
3998.43
4015.67
4036.22
4060.16
4087.55
4118.45
4152.89
4190.89
4232.42
4277.44
4325.82
4377.39
4431.93
4489.09
4548.44
4609.45
4671.43
4733.58
4794.89
4854.24
4910.29
4961.55
5006.36
5042.95
5069.44
5083.95
5084.67
5070.05
5038.96
4990.97
4926.77
4848.7
4761.69
4674.84
4604.56
4581.11
4661.03
4931.56
5251.43
3243.15
16076.1
8094.54
6832.66
6429.99
6243.92
6125.42
6026.65
5930.75
5832.6
5731.86
5630.26
5530.37
5435.1
5347.44
5270.36
5206.78
5159.59
5131.64
5125.83
5145.05
5192.28
5270.57
5383.04
5532.83
5723.03
5956.62
6236.29
6564.32
6942.42
7371.52
7851.69
8380.3
8953.69
9568.31
10219.7
10902.6
11611.2
12339.3
13080.4
13827.9
14575.4
15316.6
16045.2
16755.8
17442.9
18101.9
18728.5
19318.9
19869.9
20378.9
20843.8
21262.9
21635.1
21959.7
22236.3
22465.2
22646.7
22781.6
22871
22916.2
22918.7
22880.2
22802.5
22687.6
22537.7
22354.8
22141.2
21899.2
21630.9
21338.7
21024.8
20691.4
20340.7
19974.9
19595.8
19205.6
18806.2
18399.2
17986.6
17569.9
17150.7
16730.3
16310.2
15891.6
15475.7
15063.5
14655.9
14253.9
13858.1
13469.4
13088.2
12715.2
12350.8
11995.3
11649.1
11312.3
10985.3
10668
10360.7
10063.3
9775.87
9498.32
9230.6
8972.61
8724.22
8485.27
8255.6
8035.02
7823.32
7620.28
7425.69
7239.3
7060.87
6890.16
6726.92
6570.91
6421.87
6279.56
6143.74
6014.17
5890.62
5772.84
5660.63
5553.77
5452.04
5355.25
5263.2
5175.7
5092.58
5013.67
4938.82
4867.86
4800.65
4737.07
4676.98
4620.27
4566.84
4516.57
4469.39
4425.21
4383.97
4345.59
4310.02
4277.22
4247.15
4219.79
4195.12
4173.13
4153.82
4137.21
4123.31
4112.16
4103.8
4098.28
4095.68
4096.05
4099.48
4106.07
4115.9
4129.08
4145.72
4165.93
4189.82
4217.51
4249.09
4284.68
4324.33
4368.13
4416.09
4468.22
4524.45
4584.67
4648.7
4716.25
4786.95
4860.27
4935.58
5012.06
5088.7
5164.32
5237.49
5306.59
5369.77
5425
5470.08
5502.74
5520.69
5521.86
5504.53
5467.69
5411.46
5337.76
5251.28
5161.28
5085.14
5056.88
5153.96
5601.03
7316.33
18450.4
16076.3
8094.77
6832.97
6429.99
6243.79
6125.28
6026.53
5930.67
5832.55
5731.84
5630.25
5530.37
5435.11
5347.45
5270.37
5206.79
5159.59
5131.64
5125.82
5145.04
5192.27
5270.56
5383.02
5532.8
5723
5956.58
6236.25
6564.28
6942.37
7371.47
7851.64
8380.24
8953.64
9568.25
10219.6
10902.5
11611.1
12339.2
13080.3
13827.9
14575.4
15316.5
16045.2
16755.8
17442.9
18101.9
18728.5
19318.8
19869.9
20378.9
20843.8
21262.9
21635.1
21959.7
22236.3
22465.2
22646.7
22781.6
22871
22916.2
22918.7
22880.2
22802.5
22687.6
22537.7
22354.8
22141.2
21899.2
21630.9
21338.7
21024.8
20691.4
20340.8
19974.9
19595.8
19205.6
18806.2
18399.3
17986.6
17569.9
17150.7
16730.3
16310.3
15891.7
15475.7
15063.5
14655.9
14253.9
13858.2
13469.4
13088.3
12715.3
12350.8
11995.3
11649.1
11312.4
10985.3
10668.1
10360.7
10063.4
9775.9
9498.36
9230.64
8972.65
8724.26
8485.31
8255.64
8035.06
7823.35
7620.32
7425.72
7239.33
7060.9
6890.19
6726.95
6570.94
6421.9
6279.59
6143.77
6014.2
5890.65
5772.87
5660.66
5553.8
5452.07
5355.28
5263.22
5175.73
5092.61
5013.7
4938.84
4867.88
4800.67
4737.09
4677
4620.29
4566.86
4516.59
4469.41
4425.23
4383.99
4345.6
4310.04
4277.24
4247.17
4219.81
4195.14
4173.14
4153.84
4137.22
4123.32
4112.17
4103.81
4098.3
4095.69
4096.06
4099.5
4106.08
4115.91
4129.09
4145.73
4165.94
4189.83
4217.52
4249.1
4284.69
4324.34
4368.14
4416.1
4468.23
4524.46
4584.68
4648.71
4716.26
4786.95
4860.28
4935.59
5012.07
5088.71
5164.33
5237.5
5306.6
5369.78
5425.01
5470.09
5502.75
5520.7
5521.86
5504.52
5467.67
5411.41
5337.62
5250.95
5160.59
5083.62
5052.39
5129.57
5420.33
5798
3420.95
15759.4
8040.93
6819.72
6433.54
6252.11
6135.34
6038.46
5945.68
5852.42
5758.77
5666.78
5579.28
5499.37
5430.2
5374.97
5336.79
5318.76
5324.03
5355.81
5417.41
5512.23
5643.78
5815.61
6031.25
6294.13
6607.35
6973.59
7394.86
7872.31
8406.12
8993.64
9630.42
10312.4
11034.6
11791.1
12575.4
13380.5
14199
15023.6
15847.1
16662.3
17462.5
18241.4
18993.3
19712.8
20395.3
21036.9
21634
22183.8
22684.2
23133.4
23530.4
23874.5
24165.6
24404
24590.2
24725.3
24810.6
24847.6
24838
24783.9
24687.3
24550.6
24376
24166
23923
23649.6
23348.2
23021.3
22671.3
22300.8
21912
21507.3
21088.8
20658.7
20219.1
19772
19319.1
18862.2
18403
17943.1
17483.8
17026.5
16572.4
16122.7
15678.4
15240.4
14809.4
14386.3
13971.7
13566.1
13170
12783.8
12407.8
12042.3
11687.4
11343.3
11010.1
10687.7
10376.2
10075.5
9785.59
9506.26
9237.4
8978.83
8730.37
8491.79
8262.89
8043.41
7833.11
7631.72
7438.99
7254.64
7078.4
6910.01
6749.18
6595.65
6449.16
6309.43
6176.21
6049.26
5928.32
5813.15
5703.54
5599.25
5500.07
5405.8
5316.24
5231.2
5150.52
5074.02
5001.53
4932.93
4868.06
4806.79
4749.01
4694.6
4643.46
4595.5
4550.64
4508.81
4469.94
4433.97
4400.87
4370.6
4343.14
4318.48
4296.6
4277.53
4261.28
4247.87
4237.35
4229.78
4225.22
4223.76
4225.47
4230.45
4238.83
4250.71
4266.23
4285.53
4308.74
4336.03
4367.53
4403.4
4443.78
4488.81
4538.6
4593.25
4652.81
4717.3
4786.67
4860.81
4939.5
5022.45
5109.2
5199.14
5291.51
5385.31
5479.33
5572.09
5661.85
5746.6
5824.05
5891.65
5946.71
5986.41
6008.04
6009.17
5988.02
5943.95
5878.15
5794.78
5702.89
5619.94
5579.91
5656.42
6048.97
7487.57
16118.2
15758.7
8040.16
6820.09
6433.45
6251.93
6135.19
6038.34
5945.59
5852.37
5758.75
5666.77
5579.28
5499.38
5430.21
5374.98
5336.79
5318.76
5324.03
5355.81
5417.4
5512.22
5643.76
5815.58
6031.23
6294.1
6607.32
6973.55
7394.81
7872.27
8406.07
8993.59
9630.37
10312.4
11034.6
11791.1
12575.4
13380.4
14198.9
15023.6
15847
16662.2
17462.5
18241.4
18993.3
19712.8
20395.3
21036.9
21633.9
22183.8
22684.2
23133.4
23530.4
23874.5
24165.6
24404
24590.2
24725.3
24810.6
24847.6
24838
24783.9
24687.4
24550.6
24376
24166
23923.1
23649.6
23348.2
23021.3
22671.4
22300.8
21912
21507.3
21088.8
20658.8
20219.2
19772
19319.1
18862.2
18403
17943.1
17483.8
17026.5
16572.5
16122.8
15678.4
15240.4
14809.5
14386.4
13971.7
13566.1
13170.1
12783.8
12407.9
12042.3
11687.4
11343.3
11010.1
10687.7
10376.2
10075.6
9785.63
9506.3
9237.44
8978.87
8730.4
8491.83
8262.93
8043.45
7833.14
7631.76
7439.02
7254.67
7078.44
6910.04
6749.22
6595.69
6449.19
6309.46
6176.25
6049.29
5928.35
5813.18
5703.57
5599.28
5500.1
5405.83
5316.27
5231.23
5150.55
5074.04
5001.56
4932.95
4868.08
4806.81
4749.03
4694.62
4643.48
4595.52
4550.66
4508.83
4469.96
4433.99
4400.89
4370.62
4343.16
4318.49
4296.62
4277.55
4261.29
4247.88
4237.37
4229.8
4225.24
4223.77
4225.48
4230.47
4238.84
4250.72
4266.24
4285.54
4308.75
4336.04
4367.54
4403.41
4443.79
4488.82
4538.61
4593.26
4652.82
4717.31
4786.68
4860.81
4939.51
5022.46
5109.21
5199.15
5291.52
5385.32
5479.34
5572.1
5661.87
5746.62
5824.06
5891.67
5946.72
5986.42
6008.05
6009.17
5988
5943.89
5877.99
5794.41
5702.07
5618.33
5577.18
5650.25
6008.67
7137.27
15271
15443
8024.35
6774.82
6409.59
6236.4
6123.74
6031.46
5945.26
5861.17
5779.61
5702.89
5634.07
5576.41
5533.24
5507.92
5503.8
5524.29
5572.91
5653.29
5769.22
5924.62
6123.49
6369.84
6667.56
7020.22
7430.89
7901.93
8434.72
9029.51
9683.57
10391.5
11148.8
11949.8
12787.8
13655.4
14544.9
15447.9
16356.4
17262
18157.1
19034
19885.9
20706.3
21489.6
22230.6
22925.1
23569.5
24160.7
24696.5
25175.2
25595.8
25957.8
26261.2
26506.4
26694.4
26826.3
26903.8
26928.7
26903
26829.1
26709.3
26546.1
26342.3
26100.5
25823.5
25514
25174.8
24808.6
24418.1
24005.9
23574.6
23126.7
22664.7
22190.7
21707
21215.7
20718.8
20218.2
19715.6
19212.7
18711
18212
17716.8
17226.8
16742.9
16266.3
15797.6
15337.8
14887.4
14447
14017.2
13598.3
13190.7
12794.6
12410.2
12037.7
11677
11328.2
10991.3
10666.3
10352.9
10051.1
9760.71
9481.5
9213.29
8955.82
8708.85
8472.12
8245.34
8028.25
7820.53
7621.91
7432.07
7250.73
7077.58
6912.34
6754.69
6604.37
6461.08
6324.56
6194.52
6070.72
5952.9
5840.81
5734.23
5632.92
5536.67
5445.27
5358.54
5276.29
5198.33
5124.51
5054.68
4988.68
4926.39
4867.68
4812.43
4760.54
4711.93
4666.49
4624.17
4584.89
4548.61
4515.29
4484.88
4457.38
4432.77
4411.05
4392.25
4376.37
4363.48
4353.61
4346.83
4343.23
4342.89
4345.93
4352.45
4362.6
4376.52
4394.36
4416.3
4442.51
4473.18
4508.51
4548.69
4593.93
4644.41
4700.32
4761.82
4829.05
4902.1
4981.02
5065.79
5156.29
5252.31
5353.5
5459.33
5569.11
5681.9
5796.5
5911.43
6024.87
6134.66
6238.29
6332.87
6415.25
6482.03
6529.77
6555.18
6555.53
6529.13
6476.17
6399.95
6308.93
6220.55
6169.14
6227.44
6586.27
7972.75
16725.8
15441.9
8017.58
6774.53
6409.05
6236.02
6123.54
6031.33
5945.19
5861.13
5779.59
5702.88
5634.07
5576.42
5533.25
5507.93
5503.81
5524.29
5572.91
5653.29
5769.21
5924.61
6123.47
6369.82
6667.53
7020.18
7430.85
7901.89
8434.68
9029.47
9683.52
10391.5
11148.8
11949.7
12787.7
13655.4
14544.8
15447.9
16356.3
17262
18157.1
19034
19885.9
20706.3
21489.6
22230.6
22925.1
23569.5
24160.7
24696.5
25175.2
25595.8
25957.8
26261.2
26506.4
26694.4
26826.4
26903.9
26928.7
26903.1
26829.1
26709.3
26546.1
26342.3
26100.5
25823.5
25514
25174.8
24808.6
24418.1
24005.9
23574.7
23126.8
22664.7
22190.7
21707
21215.7
20718.8
20218.2
19715.6
19212.7
18711
18212
17716.8
17226.8
16743
16266.3
15797.7
15337.8
14887.4
14447.1
14017.3
13598.4
13190.8
12794.7
12410.3
12037.7
11677
11328.3
10991.4
10666.3
10353
10051.2
9760.75
9481.55
9213.33
8955.86
8708.89
8472.16
8245.38
8028.29
7820.57
7621.95
7432.11
7250.77
7077.62
6912.37
6754.73
6604.4
6461.12
6324.59
6194.56
6070.75
5952.93
5840.84
5734.26
5632.95
5536.7
5445.3
5358.57
5276.31
5198.36
5124.54
5054.7
4988.71
4926.41
4867.7
4812.45
4760.57
4711.95
4666.51
4624.19
4584.91
4548.63
4515.3
4484.9
4457.39
4432.78
4411.07
4392.26
4376.39
4363.49
4353.62
4346.85
4343.24
4342.9
4345.94
4352.46
4362.61
4376.53
4394.37
4416.31
4442.52
4473.19
4508.52
4548.7
4593.94
4644.42
4700.33
4761.83
4829.06
4902.11
4981.03
5065.8
5156.3
5252.32
5353.51
5459.34
5569.12
5681.91
5796.52
5911.44
6024.89
6134.68
6238.3
6332.88
6415.26
6482.04
6529.78
6555.18
6555.51
6529.07
6476.01
6399.56
6308.04
6218.68
6165.87
6223.29
6578.78
7909.76
16703.1
20071
8599.64
6772.39
6364.77
6195.54
6089.78
6006.04
5931.13
5861.73
5798.61
5744.28
5701.93
5675
5666.98
5681.47
5722.11
5792.71
5897.25
6039.9
6225.01
6457.07
6740.57
7079.91
7479.15
7941.8
8470.53
9066.95
9731.37
10460.8
11248.8
12090.3
12978.8
13906.9
14866.2
15848
16843
17842.2
18836.3
19816.8
20775.3
21704.2
22596.6
23446.2
24247.7
24996.3
25688.3
26320.6
26890.9
27397.6
27839.8
28217.1
28529.7
28778.4
28964.4
29089.1
29154.5
29162.7
29116.2
29017.5
28869.4
28674.9
28436.8
28158.1
27842
27491.4
27109.4
26699
26263.1
25804.6
25326.2
24830.7
24320.6
23798.5
23266.6
22727.3
22182.6
21634.6
21085
20535.8
19988.5
19444.5
18905.3
18372.1
17846
17328.1
16819.3
16320.3
15831.9
15354.6
14889.1
14435.6
13994.5
13566.1
13150.6
12748
12358.4
11981.9
11618.4
11267.7
10929.8
10604.4
10291.5
9990.66
9701.79
9424.58
9158.75
8904.01
8660.06
8426.59
8203.27
7989.78
7785.79
7590.99
7405.03
7227.61
7058.39
6897.07
6743.34
6596.9
6457.45
6324.7
6198.39
6078.24
5964
5855.42
5752.27
5654.31
5561.34
5473.16
5389.56
5310.37
5235.42
5164.55
5097.61
5034.46
4974.98
4919.04
4866.54
4817.39
4771.5
4728.79
4689.21
4652.7
4619.22
4588.74
4561.25
4536.74
4515.22
4496.71
4481.25
4468.87
4459.64
4453.65
4450.99
4451.75
4456.08
4464.1
4475.97
4491.87
4511.98
4536.49
4565.64
4599.64
4638.74
4683.2
4733.26
4789.19
4851.24
4919.67
4994.68
5076.49
5165.24
5261.03
5363.86
5473.64
5590.16
5713.02
5841.64
5975.18
6112.54
6252.26
6392.52
6531.07
6665.19
6791.73
6907.05
7007.15
7087.76
7144.61
7173.77
7172.23
7138.82
7075.56
6989.97
6899.25
6839.02
6886.35
7243.71
8707.06
18330.2
20070.8
8592.46
6776.48
6364.98
6195.17
6089.54
6005.9
5931.06
5861.69
5798.59
5744.27
5701.93
5675
5666.99
5681.47
5722.11
5792.71
5897.24
6039.89
6225
6457.05
6740.55
7079.89
7479.12
7941.76
8470.49
9066.91
9731.33
10460.7
11248.7
12090.2
12978.8
13906.8
14866.2
15848
16843
17842.1
18836.3
19816.8
20775.3
21704.2
22596.6
23446.3
24247.7
24996.3
25688.3
26320.7
26891
27397.7
27839.8
28217.1
28529.8
28778.5
28964.4
29089.1
29154.5
29162.8
29116.2
29017.6
28869.5
28674.9
28436.8
28158.1
27842
27491.4
27109.4
26699
26263.1
25804.6
25326.3
24830.7
24320.7
23798.5
23266.6
22727.3
22182.6
21634.6
21085.1
20535.8
19988.5
19444.5
18905.3
18372.1
17846.1
17328.2
16819.3
16320.3
15831.9
15354.7
14889.1
14435.6
13994.5
13566.1
13150.6
12748
12358.5
11982
11618.4
11267.7
10929.8
10604.5
10291.5
9990.71
9701.83
9424.62
9158.79
8904.06
8660.11
8426.63
8203.31
7989.82
7785.83
7591.03
7405.07
7227.65
7058.43
6897.11
6743.38
6596.93
6457.48
6324.74
6198.42
6078.27
5964.03
5855.45
5752.3
5654.34
5561.37
5473.18
5389.59
5310.4
5235.45
5164.58
5097.64
5034.49
4975
4919.06
4866.57
4817.41
4771.52
4728.81
4689.23
4652.72
4619.24
4588.76
4561.27
4536.76
4515.24
4496.73
4481.26
4468.88
4459.66
4453.67
4451
4451.77
4456.09
4464.11
4475.99
4491.88
4511.99
4536.5
4565.65
4599.65
4638.75
4683.21
4733.27
4789.2
4851.25
4919.68
4994.69
5076.5
5165.25
5261.04
5363.87
5473.66
5590.17
5713.03
5841.65
5975.2
6112.55
6252.28
6392.54
6531.08
6665.21
6791.74
6907.06
7007.16
7087.77
7144.62
7173.75
7172.18
7138.68
7075.23
6989.19
6897.54
6835.72
6881.55
7239.56
8699.54
18376.4
20683.5
8694.24
6735.43
6296.01
6129.52
6033.97
5963.89
5906.43
5858.78
5822.02
5798.85
5792.6
5806.85
5845.32
5911.87
6010.57
6145.73
6321.9
6543.86
6816.61
7145.15
7534.41
7988.94
8512.68
9108.64
9778.6
10522.9
11337.9
12216.2
13152
14137.9
15165.5
16225.4
17307.8
18402.5
19499.1
20587.8
21658.9
22703.3
23712.8
24679.7
25597.3
26460
27262.8
28001.8
28673.7
29276.5
29808.5
30269.1
30658
30975.8
31223.6
31402.8
31515.3
31563.4
31549.6
31476.8
31347.9
31166
30934.4
30656.5
30335.5
29974.8
29577.7
29147.7
28688
28201.7
27691.9
27161.7
26614
26051.5
25476.9
24892.8
24301.4
23705.1
23106
22506.1
21907.2
21311
20719.1
20132.9
19553.7
18982.8
18421.1
17869.7
17329.3
16800.7
16284.5
15781.3
15291.3
14815.1
14352.7
13904.5
13470.5
13050.7
12645.1
12253.7
11876.3
11512.8
11162.9
10826.5
10503.2
10192.9
9895.2
9609.8
9336.38
9074.63
8824.18
8584.7
8355.83
8137.21
7928.48
7729.3
7539.3
7358.14
7185.48
7020.98
6864.32
6715.17
6573.22
6438.18
6309.75
6187.65
6071.61
5961.37
5856.69
5757.33
5663.07
5573.7
5489.01
5408.83
5332.97
5261.28
5193.59
5129.77
5069.68
5013.21
4960.25
4910.7
4864.47
4821.5
4781.71
4745.06
4711.51
4681.03
4653.61
4629.25
4607.95
4589.76
4574.71
4562.85
4554.25
4549.02
4547.26
4549.09
4554.64
4564.09
4577.61
4595.39
4617.66
4644.65
4676.61
4713.82
4756.58
4805.18
4859.95
4921.23
4989.34
5064.64
5147.44
5238.05
5336.75
5443.78
5559.29
5683.35
5815.91
5956.75
6105.47
6261.41
6423.59
6590.69
6760.95
6932.12
7101.38
7265.33
7419.93
7560.55
7682.06
7779.04
7846.16
7878.78
7873.91
7831.81
7758.52
7670.66
7605.33
7646.11
8016.18
9598.8
20227.9
20679.6
8702.91
6744.14
6297.49
6129.41
6033.77
5963.77
5906.37
5858.75
5822
5798.85
5792.61
5806.86
5845.32
5911.87
6010.57
6145.73
6321.89
6543.85
6816.59
7145.13
7534.39
7988.91
8512.65
9108.6
9778.57
10522.9
11337.9
12216.2
13152
14137.9
15165.4
16225.4
17307.8
18402.5
19499.1
20587.8
21658.9
22703.3
23712.8
24679.7
25597.4
26460
27262.9
28001.8
28673.8
29276.6
29808.6
30269.1
30658.1
30975.9
31223.6
31402.8
31515.3
31563.5
31549.7
31476.9
31348
31166.1
30934.5
30656.5
30335.5
29974.8
29577.8
29147.8
28688
28201.7
27692
27161.8
26614
26051.6
25477
24892.8
24301.4
23705.2
23106.1
22506.1
21907.2
21311
20719.1
20132.9
19553.8
18982.8
18421.2
17869.8
17329.4
16800.8
16284.6
15781.3
15291.4
14815.1
14352.8
13904.5
13470.5
13050.7
12645.2
12253.8
11876.4
11512.8
11163
10826.5
10503.3
10193
9895.25
9609.84
9336.43
9074.67
8824.22
8584.74
8355.87
8137.25
7928.52
7729.34
7539.34
7358.18
7185.52
7021.02
6864.36
6715.21
6573.26
6438.22
6309.78
6187.68
6071.64
5961.41
5856.72
5757.36
5663.1
5573.73
5489.04
5408.86
5333
5261.3
5193.61
5129.79
5069.71
5013.24
4960.27
4910.72
4864.5
4821.52
4781.73
4745.08
4711.53
4681.05
4653.63
4629.26
4607.97
4589.78
4574.72
4562.86
4554.27
4549.04
4547.27
4549.1
4554.66
4564.11
4577.62
4595.41
4617.67
4644.66
4676.62
4713.83
4756.59
4805.19
4859.96
4921.24
4989.36
5064.65
5147.45
5238.06
5336.76
5443.79
5559.3
5683.36
5815.92
5956.77
6105.48
6261.42
6423.6
6590.7
6760.96
6932.13
7101.4
7265.35
7419.94
7560.56
7682.07
7779.05
7846.16
7878.75
7873.82
7831.56
7757.96
7669.44
7602.95
7642.4
8012.79
9598.78
20255.5
18417.5
8166.98
6611.22
6196.88
6039.3
5958.67
5908.63
5876.3
5859.22
5858.74
5877.67
5919.48
5987.91
6086.96
6220.91
6394.33
6612.14
6879.59
7202.13
7585.31
8034.58
8554.98
9150.89
9825.59
10581
11417.4
12330.1
13310.5
14352
15446.2
16583.6
17753.6
18945.3
20147.2
21348.1
22536.9
23703
24836.7
25929
26971.6
27957.6
28880.9
29736.4
30520
31228.7
31860.2
32413.4
32887.7
33283.2
33600.8
33841.9
34008.5
34102.7
34127.4
34085.5
33980.1
33814.8
33592.9
33318.3
32994.5
32625.2
32214.2
31765.1
31281.7
30767.3
30225.5
29659.6
29072.8
28468.3
27849
27217.8
26577.3
25930.1
25278.5
24624.9
23971.2
23319.4
22671.3
22028.6
21392.7
20765
20146.8
19539.1
18942.8
18359
17788.2
17231.2
16688.5
16160.4
15647.4
15149.6
14667.3
14200.5
13749.3
13313.6
12893.2
12488.1
12098.1
11722.9
11362.2
11015.8
10683.3
10364.4
10058.8
9766.2
9486.11
9218.2
8962.1
8717.41
8483.76
8260.74
8047.98
7845.09
7651.69
7467.41
7291.89
7124.77
6965.7
6814.35
6670.39
6533.5
6403.39
6279.74
6162.29
6050.77
5944.91
5844.47
5749.23
5658.96
5573.46
5492.53
5416.01
5343.71
5275.49
5211.19
5150.69
5093.86
5040.59
4990.78
4944.35
4901.23
4861.34
4824.65
4791.1
4760.69
4733.39
4709.22
4688.19
4670.33
4655.69
4644.33
4636.35
4631.84
4630.93
4633.74
4640.45
4651.23
4666.28
4685.82
4710.11
4739.4
4774.01
4814.25
4860.45
4913
4972.27
5038.69
5112.66
5194.64
5285.06
5384.36
5492.96
5611.25
5739.57
5878.19
6027.25
6186.79
6356.63
6536.35
6725.22
6922.13
7125.51
7333.22
7542.45
7749.69
7950.56
8139.89
8311.68
8459.28
8575.74
8654.41
8690.01
8680.34
8629.29
8552.25
8487.5
8525.68
8913.52
10628.8
22345.1
18415
8184.82
6617.33
6198.21
6039.38
5958.56
5908.55
5876.26
5859.2
5858.73
5877.68
5919.49
5987.92
6086.97
6220.91
6394.33
6612.14
6879.58
7202.11
7585.29
8034.56
8554.96
9150.86
9825.56
10581
11417.4
12330
13310.5
14352
15446.2
16583.6
17753.6
18945.3
20147.2
21348.1
22536.9
23703
24836.8
25929
26971.7
27957.7
28881
29736.4
30520.1
31228.7
31860.3
32413.5
32887.7
33283.2
33600.9
33842
34008.5
34102.8
34127.5
34085.6
33980.2
33814.8
33593
33318.3
32994.5
32625.3
32214.3
31765.2
31281.7
30767.3
30225.5
29659.6
29072.9
28468.4
27849.1
27217.9
26577.4
25930.1
25278.6
24624.9
23971.2
23319.5
22671.4
22028.6
21392.8
20765.1
20146.8
19539.1
18942.9
18359
17788.3
17231.3
16688.5
16160.4
15647.4
15149.7
14667.3
14200.6
13749.3
13313.6
12893.3
12488.2
12098.1
11722.9
11362.2
11015.8
10683.3
10364.5
10058.9
9766.24
9486.15
9218.25
8962.14
8717.46
8483.8
8260.79
8048.02
7845.13
7651.73
7467.45
7291.93
7124.8
6965.74
6814.38
6670.42
6533.54
6403.42
6279.78
6162.33
6050.8
5944.94
5844.5
5749.26
5658.99
5573.49
5492.56
5416.04
5343.74
5275.51
5211.22
5150.71
5093.88
5040.61
4990.81
4944.38
4901.25
4861.36
4824.67
4791.12
4760.71
4733.41
4709.24
4688.2
4670.34
4655.7
4644.35
4636.37
4631.86
4630.94
4633.76
4640.47
4651.24
4666.29
4685.83
4710.12
4739.42
4774.02
4814.26
4860.46
4913.01
4972.29
5038.7
5112.68
5194.65
5285.07
5384.37
5492.97
5611.26
5739.58
5878.2
6027.27
6186.81
6356.64
6536.36
6725.23
6922.15
7125.53
7333.23
7542.47
7749.7
7950.58
8139.91
8311.69
8459.29
8575.74
8654.4
8689.95
8680.18
8628.93
8551.51
8486.09
8523.46
8911.32
10629
22357.4
15510.2
7624.37
6436.2
6067.2
5926.97
5868.04
5846.2
5848.72
5873.35
5921.57
5996.3
6101.11
6240
6417.34
6637.94
6907.02
7230.22
7613.5
8062.92
8584.44
9183.57
9865.03
10632.4
11487.6
12430.6
13455.1
14551.3
15711.6
16926.4
18184.8
19475.1
20784.9
22101.6
23412.7
24706.3
25970.8
27195.8
28371.4
29489.3
30542
31523.1
32427.7
33251.5
33991.8
34646.5
35214.6
35696
36091.3
36401.6
36628.9
36775.6
36844.3
36838.3
36761
36616.1
36407.4
36138.8
35814.5
35438.5
35014.8
34547.6
34040.8
33498.4
32924.2
32321.8
31695
31047.1
30381.4
29701.2
29009.4
28308.8
27602.1
26891.9
26180.5
25470
24762.5
24059.9
23363.8
22675.8
21997.3
21329.6
20673.8
20030.9
19401.8
18787.2
18187.7
17604
17036.4
16485.3
15950.8
15433.3
14932.7
14449
13982.1
13532
13098.5
12681.2
12279.9
11894.4
11524.2
11169.1
10828.6
10502.4
10190.1
9891.32
9605.59
9332.52
9071.71
8822.73
8585.16
8358.58
8142.56
7936.71
7740.62
7553.9
7376.15
7207.01
7046.12
6893.12
6747.66
6609.43
6478.1
6353.36
6234.92
6122.5
6015.83
5914.67
5818.77
5727.92
5641.89
5560.5
5483.57
5410.91
5342.37
5277.81
5217.08
5160.06
5106.65
5056.74
5010.25
4967.1
4927.22
4890.58
4857.13
4826.85
4799.73
4775.79
4755.04
4737.52
4723.29
4712.43
4705.02
4701.18
4701.04
4704.76
4712.51
4724.49
4740.93
4762.06
4788.18
4819.58
4856.6
4899.6
4948.99
5005.19
5068.66
5139.88
5219.39
5307.72
5405.43
5513.11
5631.34
5760.68
5901.69
6054.85
6220.59
6399.21
6590.84
6795.4
7012.5
7241.36
7480.75
7728.78
7982.85
8239.5
8494.21
8741.4
8974.26
9184.94
9364.69
9504.52
9596.24
9634.38
9619.62
9565.04
9509.16
9549.37
9957.13
11812.4
24721.7
15514.4
7636.19
6439.01
6068.02
5927.14
5868.04
5846.16
5848.7
5873.34
5921.57
5996.3
6101.12
6240.01
6417.35
6637.94
6907.01
7230.22
7613.49
8062.91
8584.43
9183.56
9865.01
10632.4
11487.5
12430.6
13455
14551.3
15711.6
16926.4
18184.8
19475.1
20784.9
22101.6
23412.7
24706.3
25970.9
27195.8
28371.5
29489.4
30542.1
31523.2
32427.7
33251.6
33991.9
34646.6
35214.7
35696.1
36091.4
36401.7
36629
36775.7
36844.4
36838.4
36761.1
36616.2
36407.5
36138.9
35814.6
35438.6
35014.9
34547.7
34040.9
33498.5
32924.2
32321.9
31695
31047.1
30381.5
29701.2
29009.4
28308.8
27602.2
26892
26180.6
25470.1
24762.6
24060
23363.9
22675.9
21997.4
21329.7
20673.9
20031
19401.8
18787.2
18187.8
17604.1
17036.5
16485.3
15950.9
15433.3
14932.7
14449
13982.2
13532.1
13098.5
12681.2
12280
11894.4
11524.3
11169.2
10828.7
10502.5
10190.2
9891.37
9605.63
9332.57
9071.76
8822.78
8585.21
8358.62
8142.61
7936.76
7740.66
7553.94
7376.19
7207.05
7046.16
6893.15
6747.7
6609.46
6478.13
6353.39
6234.95
6122.53
6015.86
5914.7
5818.8
5727.95
5641.92
5560.53
5483.59
5410.93
5342.4
5277.83
5217.1
5160.09
5106.67
5056.77
5010.27
4967.12
4927.24
4890.6
4857.15
4826.87
4799.75
4775.81
4755.05
4737.54
4723.31
4712.44
4705.04
4701.2
4701.06
4704.78
4712.53
4724.51
4740.94
4762.08
4788.19
4819.59
4856.61
4899.62
4949
5005.2
5068.67
5139.89
5219.4
5307.73
5405.45
5513.13
5631.35
5760.69
5901.7
6054.87
6220.61
6399.23
6590.86
6795.41
7012.51
7241.38
7480.76
7728.79
7982.87
8239.51
8494.23
8741.41
8974.28
9184.95
9364.7
9504.52
9596.21
9634.29
9619.42
9564.63
9508.41
9548.22
9955.95
11812.5
24726.7
3392.77
6464.22
6149.3
5899.4
5795.22
5768.66
5785.94
5835.82
5916.31
6028.95
6176.73
6363.4
6593.27
6871.24
7202.77
7593.84
8050.86
8580.38
9188.86
9882.21
10665.4
11542.1
12514.2
13581.3
14734.1
15962.1
17256.1
18605.1
19996.9
21418
22854.7
24293.3
25719.9
27121.6
28486.1
29802.2
31059.6
32249.6
33364.6
34398.1
35345.3
36202.2
36966.2
37635.7
38210.1
38689.7
39075.6
39369.6
39574.1
39691.9
39726.4
39681.2
39560.4
39367.9
39108.2
38785.7
38404.7
37969.9
37485.5
36956.1
36385.9
35779.2
35140.1
34472.5
33780.2
33066.9
32336.2
31591.3
30835.4
30071.5
29302.4
28530.7
27758.8
26989.1
26223.6
25464.2
24712.7
23970.6
23239.6
22520.8
21815.3
21124.3
20448.5
19788.8
19145.7
18519.9
17911.7
17321.5
16749.5
16195.8
15660.5
15143.7
14645.1
14164.6
13702
13257
12829.3
12418.5
12024.3
11646.2
11283.9
10936.8
10604.6
10286.9
9983.11
9692.9
9415.79
9151.32
8899.05
8658.52
8429.27
8210.87
8002.88
7804.86
7616.42
7437.14
7266.64
7104.54
6950.48
6804.09
6665.04
6532.99
6407.63
6288.65
6175.76
6068.68
5967.16
5870.96
5779.84
5693.6
5612.03
5534.94
5462.17
5393.55
5328.94
5268.19
5211.17
5157.79
5107.93
5061.51
5018.46
4978.71
4942.22
4908.95
4878.87
4851.99
4828.31
4807.87
4790.7
4776.87
4766.46
4759.58
4756.35
4756.9
4761.42
4770.08
4783.11
4800.76
4823.29
4851
4884.25
4923.39
4968.85
5021.07
5080.54
5147.79
5223.39
5307.96
5402.15
5506.66
5622.22
5749.57
5889.49
6042.76
6210.13
6392.34
6590.01
6803.67
7033.66
7280.04
7542.53
7820.36
8112.17
8415.75
8727.96
9044.44
9359.41
9665.55
9953.87
10213.8
10433.8
10602.1
10708.9
10750.2
10735.2
10700.7
10749.7
11179.4
13182.7
27424.8
3393.05
6469.97
6146.81
5898.88
5795.24
5768.69
5785.94
5835.82
5916.31
6028.95
6176.74
6363.4
6593.27
6871.24
7202.77
7593.84
8050.86
8580.38
9188.85
9882.2
10665.4
11542.1
12514.1
13581.3
14734.1
15962.1
17256.1
18605.1
19996.9
21418
22854.8
24293.3
25719.9
27121.6
28486.2
29802.2
31059.7
32249.7
33364.7
34398.2
35345.4
36202.3
36966.3
37635.8
38210.2
38689.8
39075.7
39369.7
39574.2
39692
39726.5
39681.3
39560.5
39368
39108.3
38785.7
38404.8
37969.9
37485.6
36956.2
36386
35779.3
35140.1
34472.5
33780.2
33067
32336.3
31591.4
30835.5
30071.6
29302.5
28530.8
27758.9
26989.2
26223.6
25464.2
24712.7
23970.7
23239.6
22520.8
21815.4
21124.3
20448.6
19788.8
19145.8
18520
17911.8
17321.6
16749.6
16195.9
15660.6
15143.7
14645.1
14164.6
13702
13257
12829.3
12418.6
12024.4
11646.3
11283.9
10936.9
10604.7
10286.9
9983.16
9692.94
9415.83
9151.37
8899.1
8658.56
8429.32
8210.91
8002.92
7804.91
7616.46
7437.18
7266.68
7104.58
6950.52
6804.13
6665.07
6533.03
6407.66
6288.68
6175.79
6068.71
5967.19
5870.99
5779.87
5693.63
5612.06
5534.97
5462.2
5393.58
5328.96
5268.21
5211.2
5157.81
5107.95
5061.53
5018.48
4978.73
4942.24
4908.96
4878.89
4852.01
4828.33
4807.88
4790.71
4776.89
4766.48
4759.6
4756.36
4756.92
4761.43
4770.1
4783.13
4800.77
4823.3
4851.01
4884.26
4923.41
4968.86
5021.08
5080.55
5147.8
5223.4
5307.97
5402.16
5506.67
5622.23
5749.58
5889.5
6042.77
6210.15
6392.35
6590.03
6803.69
7033.67
7280.05
7542.54
7820.38
8112.18
8415.77
8727.98
9044.46
9359.43
9665.57
9953.89
10213.8
10433.8
10602.1
10708.8
10750.1
10734.9
10700.3
10749.1
11178.8
13182.6
27426.7
3238.39
6015.34
5894.54
5715.37
5653.8
5671.84
5742.56
5856.09
6010.64
6207.76
6450.51
6742.9
7089.72
7496.5
7969.49
8515.43
9141.35
9854.15
10660.1
11564.4
12570.6
13679.8
14891.7
16192
17570
19014.7
20513.2
22051.5
23614.5
25186.9
26753.4
28299.3
29810.6
31274.2
32678.4
34012.9
35268.5
36437.8
37514.7
38494.4
39373.5
40149.9
40822.5
41391.4
41857.4
42222.3
42488.4
42658.9
42737.1
42727
42632.8
42459
42210.2
41891.2
41506.9
41062.1
40561.7
40010.4
39413.1
38774.2
38098.3
37389.7
36652.6
35891.1
35109
34310
33497.5
32674.9
31845.2
31011.3
30176
29341.8
28511.1
27685.9
26868.3
26060.1
25262.9
24478.1
23707.2
22951.2
22211.2
21488
20782.5
20095.2
19426.7
18777.4
18147.6
17537.5
16947.3
16376.9
15826.5
15295.8
14784.6
14292.8
13819.9
13365.6
12929.5
12511.2
12110.1
11725.9
11358
11005.9
10669.2
10347.4
10040.1
9746.67
9466.73
9199.76
8945.29
8702.84
8471.91
8252.05
8042.79
7843.68
7654.29
7474.22
7303.05
7140.4
6985.89
6839.15
6699.84
6567.61
6442.12
6323.06
6210.14
6103.07
6001.58
5905.43
5814.39
5728.23
5646.77
5569.81
5497.18
5428.72
5364.27
5303.7
5246.87
5193.69
5144.04
5097.84
5055.02
5015.51
4979.27
4946.26
4916.45
4889.86
4866.48
4846.36
4829.54
4816.09
4806.11
4799.7
4796.99
4798.14
4803.33
4812.76
4826.67
4845.32
4869.01
4898.06
4932.85
4973.78
5021.31
5075.94
5138.22
5208.74
5288.16
5377.2
5476.61
5587.23
5709.94
5845.67
5995.42
6160.2
6341.07
6539.1
6755.32
6990.71
7246.11
7522.18
7819.29
8137.37
8475.76
8833
9206.62
9592.76
9985.96
10378.7
10761.4
11121.7
11445.4
11716.7
11920.4
12046
12095.8
12102.4
12171.8
12627.3
14788.6
30542.8
3238.35
6010.34
5888.12
5713.74
5653.62
5671.87
5742.58
5856.1
6010.65
6207.76
6450.52
6742.91
7089.73
7496.51
7969.49
8515.43
9141.35
9854.14
10660.1
11564.4
12570.6
13679.8
14891.7
16192
17570
19014.7
20513.2
22051.5
23614.5
25186.9
26753.5
28299.4
29810.7
31274.3
32678.5
34013
35268.6
36437.9
37514.8
38494.5
39373.6
40150
40822.7
41391.5
41857.5
42222.4
42488.6
42659
42737.2
42727.1
42632.9
42459.1
42210.3
41891.3
41507
41062.2
40561.8
40010.5
39413.1
38774.2
38098.3
37389.8
36652.7
35891.2
35109.1
34310.1
33497.6
32674.9
31845.2
31011.4
30176.1
29341.9
28511.1
27686
26868.4
26060.1
25262.9
24478.2
23707.2
22951.2
22211.2
21488.1
20782.5
20095.3
19426.8
18777.5
18147.6
17537.6
16947.3
16377
15826.5
15295.8
14784.7
14292.8
13819.9
13365.7
12929.6
12511.3
12110.2
11725.9
11358
11006
10669.3
10347.5
10040.1
9746.72
9466.78
9199.81
8945.34
8702.88
8471.96
8252.09
8042.83
7843.72
7654.33
7474.26
7303.09
7140.44
6985.93
6839.19
6699.88
6567.64
6442.15
6323.1
6210.17
6103.1
6001.61
5905.46
5814.42
5728.26
5646.8
5569.84
5497.21
5428.74
5364.29
5303.72
5246.9
5193.71
5144.06
5097.86
5055.04
5015.53
4979.29
4946.27
4916.47
4889.87
4866.5
4846.37
4829.56
4816.11
4806.12
4799.71
4797
4798.15
4803.34
4812.78
4826.69
4845.34
4869.02
4898.07
4932.86
4973.79
5021.32
5075.95
5138.23
5208.75
5288.17
5377.21
5476.62
5587.25
5709.95
5845.69
5995.43
6160.21
6341.09
6539.12
6755.34
6990.72
7246.12
7522.2
7819.31
8137.39
8475.77
8833.02
9206.64
9592.78
9985.99
10378.8
10761.4
11121.7
11445.4
11716.7
11920.4
12045.9
12095.7
12102.2
12171.6
12627.1
14788.6
30543.5
3120.58
5803.18
5645.25
5521.82
5515.99
5595.89
5739.48
5938.18
6190.41
6497.73
6863.37
7291.69
7788.11
8358.93
9011.15
9752.19
10589.4
11529.3
12577.2
13736.5
15007.9
16387.5
17857.1
19405.8
21020.3
22685.1
24384.1
26100.2
27816.3
29515.8
31182.6
32802
34360.6
35846.2
37248.7
38559
39770.2
40876.7
41874.3
42760.4
43533.5
44193.6
44741.3
45178.4
45507.4
45731.4
45854.2
45880
45813.2
45658.8
45421.6
45106.9
44719.9
44265.8
43749.9
43177.4
42553.3
41882.7
41170.4
40421.2
39639.5
38829.8
37996.2
37142.8
36273.4
35391.5
34500.5
33603.6
32703.9
31804.1
30906.8
30014.4
29129.1
28252.9
27387.6
26534.9
25696.4
24873.2
24066.6
23277.6
22507.1
21755.9
21024.4
20313.4
19623
18953.8
18305.7
17679.1
17073.8
16489.9
15927.1
15385.4
14864.5
14363.9
13883.2
13422.1
12979.9
12556.2
12150.4
11761.9
11390.3
11035
10695.4
10371.1
10061.6
9766.35
9484.87
9216.64
8961.14
8717.87
8486.31
8265.97
8056.35
7857.01
7667.49
7487.37
7316.25
7153.72
6999.41
6852.93
6713.93
6582.06
6456.96
6338.32
6225.82
6119.17
6018.1
5922.37
5831.73
5745.98
5664.92
5588.36
5516.12
5448.05
5383.98
5323.79
5267.34
5214.52
5165.24
5119.4
5076.94
5037.78
5001.88
4969.21
4939.75
4913.49
4890.45
4870.66
4854.19
4841.1
4831.49
4825.49
4823.22
4824.86
4830.59
4840.63
4855.23
4874.66
4899.25
4929.34
4965.33
5007.67
5056.84
5113.4
5177.94
5251.14
5333.72
5426.49
5530.34
5646.21
5775.15
5918.27
6076.78
6251.98
6445.24
6657.97
6891.68
7147.84
7427.93
7733.3
8065.13
8424.28
8811.09
9225.2
9665.25
10128.5
10610.3
11103.8
11599.3
12083.5
12539.7
12947.9
13286.5
13536.3
13689.4
13769.2
13880.1
14370.2
16702.4
34197.6
3120.49
5788.41
5636.98
5519.57
5515.63
5595.9
5739.51
5938.2
6190.42
6497.74
6863.37
7291.7
7788.12
8358.93
9011.16
9752.2
10589.4
11529.3
12577.2
13736.5
15007.9
16387.5
17857.1
19405.9
21020.3
22685.2
24384.2
26100.3
27816.4
29515.8
31182.7
32802.1
34360.7
35846.3
37248.8
38559.2
39770.4
40876.8
41874.4
42760.5
43533.7
44193.7
44741.4
45178.5
45507.5
45731.6
45854.4
45880.1
45813.4
45658.9
45421.7
45107
44720
44265.9
43750
43177.5
42553.4
41882.8
41170.5
40421.2
39639.6
38829.9
37996.3
37142.9
36273.4
35391.5
34500.6
33603.7
32704
31804.2
30906.9
30014.4
29129.1
28252.9
27387.7
26535
25696.4
24873.2
24066.7
23277.7
22507.2
21755.9
21024.5
20313.4
19623.1
18953.8
18305.8
17679.1
17073.9
16489.9
15927.2
15385.5
14864.5
14363.9
13883.3
13422.1
12980
12556.2
12150.4
11762
11390.3
11035
10695.5
10371.2
10061.6
9766.4
9484.92
9216.68
8961.19
8717.91
8486.35
8266.01
8056.39
7857.05
7667.53
7487.41
7316.29
7153.76
6999.44
6852.97
6713.97
6582.09
6456.99
6338.35
6225.85
6119.2
6018.13
5922.39
5831.76
5746.01
5664.94
5588.38
5516.14
5448.07
5384
5323.81
5267.36
5214.54
5165.26
5119.42
5076.95
5037.8
5001.9
4969.23
4939.77
4913.51
4890.46
4870.68
4854.2
4841.11
4831.51
4825.5
4823.24
4824.87
4830.6
4840.64
4855.24
4874.67
4899.26
4929.35
4965.34
5007.67
5056.85
5113.4
5177.95
5251.14
5333.73
5426.5
5530.35
5646.22
5775.16
5918.28
6076.8
6252
6445.25
6657.98
6891.69
7147.85
7427.94
7733.32
8065.15
8424.29
8811.1
9225.22
9665.27
10128.5
10610.3
11103.9
11599.3
12083.5
12539.7
12947.9
13286.5
13536.2
13689.3
13769.2
13880
14370.1
16702.4
34197.9
15208.5
6569.92
5497.72
5348.79
5408.03
5572.5
5815.21
6127.63
6508.21
6958.57
7482.21
8084.05
8770.23
9547.88
10424.7
11408.4
12506
13722.7
15061.5
16522.8
18095.1
19759.6
21502.6
23307.9
25157.4
27031.9
28912.1
30778.8
32613.9
34400.4
36122.9
37767.8
39323.2
40779.3
42127.9
43362.8
44479.4
45474.6
46347
47096.3
47723.3
48229.9
48618.9
48893.6
49058.3
49117.3
49075.7
48938.5
48711.3
48399.5
48008.7
47544.7
47012.9
46419
45768.4
45066.5
44318.3
43529.1
42703.6
41846.6
40962.4
40055.5
39129.9
38189.5
37237.9
36278.6
35314.9
34349.7
33385.9
32426.2
31473
30528.4
29594.5
28673.2
27766.2
26874.8
26000.5
25144.4
24307.5
23490.7
22694.7
21920.2
21167.5
20437.1
19729.3
19044.2
18381.9
17742.4
17125.7
16531.6
15960
15410.5
14882.8
14376.4
13890.8
13425.5
12979.8
12553.1
12144.8
11754.2
11380.9
11024.1
10683.4
10358.3
10048.1
9752.47
9470.82
9202.61
8947.32
8704.39
8473.29
8253.48
8044.46
7845.76
7656.93
7477.53
7307.17
7145.44
6991.96
6846.36
6708.25
6577.29
6453.11
6335.36
6223.74
6117.93
6017.67
5922.7
5832.8
5747.75
5667.36
5591.46
5519.86
5452.41
5388.94
5329.32
5273.42
5221.14
5172.36
5127.02
5085.03
5046.33
5010.87
4978.62
4949.56
4923.68
4901
4881.56
4865.41
4852.66
4843.38
4837.72
4835.8
4837.82
4843.95
4854.42
4869.5
4889.48
4914.69
4945.5
4982.33
5025.66
5076
5133.95
5200.16
5275.36
5360.35
5456.03
5563.38
5683.49
5817.54
5966.83
6132.78
6316.96
6521.05
6746.88
6996.41
7271.7
7574.9
7908.2
8273.74
8673.52
9109.22
9581.98
10092.1
10638.6
11218.6
11826.9
12454.7
13089.2
13712.2
14300
14824.3
15255
15569.8
15776
15967.9
16512.8
19034.4
38569.2
15208
6553.8
5494.9
5347.93
5407.91
5572.54
5815.25
6127.66
6508.22
6958.58
7482.22
8084.06
8770.23
9547.89
10424.7
11408.4
12506
13722.8
15061.5
16522.8
18095.1
19759.6
21502.6
23308
25157.5
27032
28912.1
30778.9
32613.9
34400.4
36123
37767.9
39323.4
40779.4
42128.1
43362.9
44479.5
45474.8
46347.1
47096.4
47723.4
48230
48619
48893.8
49058.4
49117.5
49075.8
48938.7
48711.4
48399.6
48008.9
47544.8
47013
46419.1
45768.5
45066.5
44318.4
43529.2
42703.7
41846.6
40962.5
40055.6
39130
38189.5
37237.9
36278.7
35314.9
34349.8
33386
32426.3
31473
30528.5
29594.6
28673.3
27766.2
26874.9
26000.5
25144.4
24307.6
23490.8
22694.8
21920.2
21167.6
20437.2
19729.4
19044.2
18381.9
17742.5
17125.8
16531.7
15960
15410.5
14882.8
14376.4
13890.8
13425.5
12979.8
12553.1
12144.8
11754.3
11380.9
11024.2
10683.5
10358.3
10048.2
9752.52
9470.86
9202.65
8947.36
8704.43
8473.32
8253.52
8044.5
7845.8
7656.97
7477.57
7307.21
7145.48
6992
6846.39
6708.29
6577.32
6453.14
6335.39
6223.77
6117.96
6017.7
5922.73
5832.82
5747.77
5667.39
5591.48
5519.88
5452.43
5388.96
5329.34
5273.44
5221.15
5172.38
5127.03
5085.04
5046.34
5010.89
4978.64
4949.58
4923.7
4901.02
4881.57
4865.43
4852.67
4843.4
4837.73
4835.82
4837.83
4843.96
4854.43
4869.51
4889.49
4914.7
4945.51
4982.34
5025.66
5076.01
5133.96
5200.16
5275.36
5360.35
5456.03
5563.39
5683.5
5817.54
5966.84
6132.79
6316.97
6521.06
6746.9
6996.42
7271.71
7574.92
7908.22
8273.76
8673.54
9109.24
9582
10092.1
10638.6
11218.6
11826.9
12454.7
13089.2
13712.2
14300.1
14824.3
15255
15569.8
15776
15967.8
16512.8
19034.4
38569.3
15607.5
6592.77
5316.8
5214.53
5373.31
5656.96
6035.02
6498.79
7046.74
7680.74
8404.78
9224.58
10147.3
11181
12334
13613.5
15025.6
16572.2
18251.6
20042.8
21928.7
23891.4
25910.5
27963.9
30029
32083.4
34105.8
36076.3
37977.2
39792.8
41509.8
43117.1
44605.9
45969.3
47202.8
48303.2
49269.3
50101.1
50799.9
51368.1
51809
52126.4
52325.1
52410.1
52386.8
52260.9
52038.3
51724.9
51326.8
50849.8
50300.1
49683.5
49005.7
48272.3
47488.8
46660.6
45792.7
44890
43957.3
42999
42019.6
41023
40013.3
38993.9
37968.5
36940.2
35912.1
34887
33867.6
32856.2
31855.1
30866.3
29891.6
28932.8
27991.3
27068.4
26165.2
25282.8
24422
23583.6
22768
21975.8
21207.3
20462.8
19742.4
19046.1
18374
17726
17101.9
16501.5
15924.6
15370.8
14839.7
14330.8
13843.4
13376.8
12930.4
12503.3
12095
11704.7
11331.7
10975.4
10635.4
10311
10001.8
9707.17
9426.73
9159.88
8906.05
8664.66
8435.12
8216.88
8009.41
7812.22
7624.86
7446.93
7278.01
7117.73
6965.71
6821.57
6684.93
6555.42
6432.67
6316.31
6206
6101.44
6002.35
5908.47
5819.59
5735.51
5656.05
5581.04
5510.31
5443.68
5381.01
5322.14
5266.96
5215.35
5167.21
5122.47
5081.06
5042.91
5007.97
4976.22
4947.61
4922.15
4899.85
4880.75
4864.92
4852.45
4843.46
4838.07
4836.42
4838.69
4845.08
4855.82
4871.18
4891.47
4917.02
4948.22
4985.52
5029.4
5080.43
5139.2
5206.44
5282.91
5369.49
5467.16
5577
5700.2
5838.09
5992.13
6163.94
6355.35
6568.35
6805.17
7068.25
7360.27
7684.11
8042.86
8439.77
8878.21
9361.48
9892.64
10474.3
11107.9
11793.7
12529.3
13309
14122
14951.1
15770.9
16547.2
17238.6
17803.9
18225.4
18573.1
19219.5
21963.4
43941.7
15604.7
6588.19
5319.69
5215.22
5373.5
5657.05
6035.08
6498.82
7046.77
7680.76
8404.79
9224.59
10147.3
11181
12334
13613.5
15025.7
16572.2
18251.6
20042.9
21928.8
23891.5
25910.6
27964
30029.1
32083.5
34105.8
36076.4
37977.3
39793
41510
43117.3
44606
45969.5
47202.9
48303.4
49269.4
50101.2
50800.1
51368.3
51809.1
52126.6
52325.3
52410.3
52387
52261.1
52038.4
51725
51326.9
50849.9
50300.2
49683.6
49005.7
48272.4
47488.9
46660.7
45792.7
44890.1
43957.3
42999.1
42019.7
41023.1
40013.3
38994
37968.5
36940.3
35912.2
34887.1
33867.6
32856.2
31855.1
30866.3
29891.7
28932.9
27991.3
27068.4
26165.3
25282.9
24422.1
23583.6
22768.1
21975.9
21207.4
20462.9
19742.5
19046.2
18374.1
17726
17101.9
16501.6
15924.7
15370.9
14839.8
14330.8
13843.4
13376.9
12930.4
12503.4
12095.1
11704.7
11331.7
10975.5
10635.4
10311
10001.8
9707.21
9426.77
9159.91
8906.08
8664.69
8435.15
8216.91
8009.44
7812.25
7624.9
7446.96
7278.04
7117.76
6965.74
6821.6
6684.96
6555.45
6432.7
6316.34
6206.03
6101.47
6002.37
5908.49
5819.61
5735.53
5656.07
5581.06
5510.33
5443.7
5381.02
5322.15
5266.97
5215.35
5167.22
5122.47
5081.06
5042.91
5007.98
4976.23
4947.63
4922.17
4899.87
4880.77
4864.94
4852.47
4843.47
4838.07
4836.42
4838.7
4845.09
4855.83
4871.19
4891.47
4917.02
4948.23
4985.52
5029.4
5080.42
5139.2
5206.43
5282.9
5369.48
5467.15
5577
5700.2
5838.09
5992.13
6163.95
6355.35
6568.36
6805.18
7068.26
7360.28
7684.12
8042.87
8439.79
8878.23
9361.49
9892.66
10474.3
11107.9
11793.7
12529.3
13309
14122
14951.1
15771
16547.3
17238.6
17803.9
18225.5
18573.1
19219.6
21963.4
43941.6
15185.1
6398.19
5155.42
5181.53
5496.88
5951.17
6513.51
7175.65
7936.74
8799.61
9769.6
10854
12061.8
13402.8
14885.2
16514.5
18296.8
20216.6
22251.8
24385.1
26593.1
28849.4
31126.4
33396.7
35634.1
37814.4
39916.3
41921.2
43813.8
45581.7
47215.3
48707.8
50054.7
51253.7
52304
53206.8
53964.4
54580.2
55058.5
55404.2
55622.9
55720.4
55703
55577.1
55349
55025.3
54612.3
54116.6
53544.4
52901.8
52194.8
51429.1
50610.6
49744.5
48836.1
47890.5
46912.5
45906.7
44877.7
43829.5
42766.2
41691.6
40609.3
39522.7
38435
37349.2
36268
35194
34129.6
33077
32038.2
31015
30009.1
29021.9
28054.7
27108.7
26184.8
25283.9
24406.6
23553.6
22725.2
21921.8
21143.5
20390.6
19663
18960.8
18283.7
17631.7
17004.6
16402
15823.8
15269.5
14738.7
14230.7
13744.8
13280.1
12836
12411.4
12005.6
11617.8
11247.3
10893.5
10555.9
10233.9
9927.06
9634.96
9357.09
9092.91
8841.81
8603.15
8376.3
8160.63
7955.6
7760.73
7575.57
7399.75
7232.89
7074.65
6924.66
6782.53
6647.9
6520.37
6399.53
6285.02
6176.45
6073.49
5975.87
5883.35
5795.72
5712.81
5634.47
5560.55
5490.87
5425.26
5363.55
5305.59
5251.26
5200.44
5153.05
5109
5068.24
5030.7
4996.34
4965.13
4937.03
4912.02
4890.1
4871.33
4855.77
4843.55
4834.78
4829.6
4828.13
4830.56
4837.08
4847.92
4863.36
4883.72
4909.34
4940.62
4978.02
5022.05
5073.27
5132.32
5199.92
5276.92
5364.25
5462.95
5574.21
5699.31
5839.68
5996.92
6172.83
6369.45
6589.09
6834.36
7108.17
7413.8
7754.89
8135.46
8559.98
9033.31
9560.64
10147.4
10799
11520.4
12316
13188.2
14136.6
15155.9
16233.5
17346.5
18459.2
19520.9
20470.5
21256.2
21903.2
22760.3
25800
50814.3
15180.9
6398.22
5161.41
5183.23
5497.26
5951.27
6513.55
7175.67
7936.76
8799.63
9769.61
10854
12061.9
13402.8
14885.2
16514.5
18296.9
20216.6
22251.8
24385.2
26593.2
28849.4
31126.5
33396.8
35634.2
37814.5
39916.4
41921.4
43814
45581.8
47215.5
48708
50054.9
51253.8
52304.2
53207
53964.6
54580.4
55058.6
55404.3
55623
55720.5
55703.1
55577.2
55349.1
55025.4
54612.4
54116.7
53544.5
52901.9
52194.8
51429.2
50610.6
49744.5
48836.1
47890.5
46912.5
45906.8
44877.7
43829.5
42766.2
41691.7
40609.4
39522.8
38435.1
37349.2
36268
35194
34129.7
33077.1
32038.3
31015.1
30009.2
29022
28054.8
27108.8
26184.9
25284
24406.7
23553.6
22725.2
21921.8
21143.6
20390.7
19663.1
18960.8
18283.8
17631.8
17004.6
16402.1
15823.9
15269.6
14738.7
14230.7
13744.8
13280.2
12836
12411.5
12005.7
11617.9
11247.4
10893.6
10555.9
10233.9
9927.09
9634.99
9357.12
9092.93
8841.82
8603.17
8376.31
8160.65
7955.62
7760.75
7575.6
7399.77
7232.92
7074.68
6924.68
6782.56
6647.92
6520.39
6399.56
6285.04
6176.47
6073.51
5975.89
5883.37
5795.73
5712.82
5634.49
5560.56
5490.89
5425.27
5363.56
5305.6
5251.26
5200.43
5153.03
5108.98
5068.21
5030.67
4996.33
4965.14
4937.05
4912.04
4890.12
4871.34
4855.8
4843.57
4834.79
4829.58
4828.11
4830.54
4837.07
4847.92
4863.36
4883.72
4909.34
4940.63
4978.02
5022.04
5073.25
5132.29
5199.9
5276.89
5364.21
5462.93
5574.2
5699.3
5839.67
5996.91
6172.83
6369.46
6589.1
6834.37
7108.18
7413.81
7754.9
8135.47
8559.99
9033.32
9560.66
10147.4
10799
11520.4
12316
13188.2
14136.6
15155.9
16233.5
17346.6
18459.2
19520.9
20470.5
21256.2
21903.3
22760.3
25800
50814.2
16106.8
6333.24
5162.29
5406.01
5960.21
6654.28
7457.92
8364.97
9378.45
10505.5
11755.6
13140.2
14671.6
16363.8
18224.2
20248.1
22416.8
24716.3
27120.3
29597.9
32114.4
34634.5
37123.8
39551
41888.5
44112.9
46205.5
48151.8
49941.3
51567.2
53025.8
54316
55438.9
56397.3
57195.5
57838.9
58333.5
58686.1
58903.7
58993.5
58963
58819.5
58570.3
58222.6
57783.3
57259.3
56657
55983
55243.2
54443.6
53589.9
52687.4
51741.4
50756.9
49738.7
48691.4
47619.4
46526.8
45417.7
44295.8
43164.9
42028.2
40889.1
39750.6
38615.6
37486.8
36366.5
35257.3
34161.1
33079.9
32015.6
30969.6
29943.6
28938.6
27955.9
26996.4
26060.9
25150.2
24264.7
23404.8
22571
21763.3
20981.9
20226.8
19497.9
18795.1
18118.2
17467.1
16841.4
16240.9
15665.4
15114.5
14587.7
14084.3
13603.5
13144.2
12705.5
12286.3
11885.7
11502.8
11136.9
10787.4
10453.7
10135.5
9832.46
9544.1
9270.04
9009.76
8762.62
8527.88
8304.77
8092.62
7890.83
7698.93
7516.53
7343.31
7178.98
7023.25
6875.76
6736.12
6603.96
6478.88
6360.42
6248.15
6141.66
6040.6
5944.68
5853.66
5767.38
5685.73
5608.6
5535.88
5467.4
5402.94
5342.31
5285.37
5232
5182.06
5135.47
5092.17
5052.09
5015.18
4981.41
4950.75
4923.18
4898.65
4877.11
4858.61
4843.26
4831.2
4822.59
4817.56
4816.2
4818.7
4825.23
4836.03
4851.39
4871.62
4897.05
4928.12
4965.31
5009.11
5060.11
5118.92
5186.28
5263.09
5350.33
5449.16
5560.81
5686.65
5828.17
5987.05
6165.21
6364.91
6588.69
6839.53
7120.79
7436.34
7790.5
8188.19
8635.08
9137.64
9703.15
10339.6
11055.8
11861
12765
13777.1
14905.4
16154.1
17521.3
18994
20543.9
22120.9
23650.7
25046.1
26268
27595.1
31138.6
60156.4
16103.4
6336.86
5172.53
5409.24
5960.93
6654.4
7457.93
8364.97
9378.45
10505.5
11755.6
13140.2
14671.6
16363.9
18224.3
20248.1
22416.9
24716.3
27120.4
29597.9
32114.5
34634.5
37123.9
39551.1
41888.6
44113
46205.6
48151.9
49941.4
51567.3
53025.9
54316.1
55439
56397.4
57195.7
57839
58333.6
58686.2
58903.8
58993.6
58963.1
58819.6
58570.4
58222.7
57783.4
57259.3
56657.1
55983.1
55243.3
54443.7
53589.9
52687.5
51741.5
50757
49738.8
48691.4
47619.4
46526.8
45417.7
44295.8
43164.9
42028.2
40889.2
39750.7
38615.7
37486.8
36366.6
35257.3
34161.1
33079.9
32015.6
30969.7
29943.6
28938.7
27956
26996.5
26061
25150.2
24264.7
23404.9
22571
21763.4
20982
20226.8
19497.9
18795.2
18118.3
17467.1
16841.4
16241
15665.5
15114.6
14587.8
14084.4
13603.6
13144.3
12705.5
12286.3
11885.7
11502.9
11137
10787.4
10453.8
10135.6
9832.48
9544.11
9270.04
9009.76
8762.61
8527.87
8304.76
8092.61
7890.83
7698.94
7516.54
7343.33
7179
7023.27
6875.77
6736.13
6603.97
6478.89
6360.43
6248.16
6141.67
6040.61
5944.69
5853.67
5767.39
5685.73
5608.6
5535.89
5467.4
5402.95
5342.32
5285.37
5231.98
5182.02
5135.41
5092.07
5051.97
5015.06
4981.33
4950.75
4923.21
4898.67
4877.12
4858.62
4843.29
4831.24
4822.58
4817.46
4816.07
4818.61
4825.19
4836.02
4851.37
4871.58
4897.04
4928.13
4965.31
5009.1
5060.07
5118.87
5186.23
5263.01
5350.25
5449.1
5560.78
5686.63
5828.14
5987.02
6165.19
6364.89
6588.68
6839.52
7120.8
7436.35
7790.51
8188.2
8635.09
9137.66
9703.16
10339.6
11055.8
11861
12765
13777.1
14905.4
16154.2
17521.3
18994.1
20544
22121
23650.7
25046.1
26268.1
27595.1
31138.6
60156.3
15650.1
6214.49
5620
6266.69
7160.84
8148.95
9217.61
10370.4
11625.8
13004.8
14528
16214.7
18080.9
20134
22373.8
24791.3
27362.6
30054.1
32823.1
35622.8
38406
41128.6
43751.7
46242.9
48576.9
50735
52704.6
54478.7
56054.6
57433.2
58618.5
59616.4
60434.5
61081.3
61565.9
61898
62087.1
62142.6
62073.7
61889.4
61598.1
61208.1
60726.8
60161.7
59519.6
58807
58030.1
57194.6
56306.2
55369.9
54390.9
53373.8
52323.2
51243.4
50138.5
49012.6
47869.4
46712.6
45545.5
44371.6
43194
42015.7
40839.5
39668.1
38504
37349.6
36207.2
35078.6
33965.9
32870.7
31794.7
30739.1
29705.3
28694.4
27707.3
26744.9
25807.7
24896.5
24011.5
23153.1
22321.5
21516.8
20739
19988
19263.7
18565.8
17894.2
17248.7
16628.8
16034.6
15465.7
14922.1
14403.2
13908.2
13436.1
12985.6
12555.6
12144.8
11752.1
11376.4
11016.9
10673.2
10344.7
10031.4
9732.94
9449.21
9179.91
8924.58
8682.58
8452.87
8234.5
8026.64
7828.66
7640.11
7460.69
7290.22
7128.61
6975.65
6830.97
6694.15
6564.82
6442.62
6326.93
6217.22
6113.05
6014.02
5919.84
5830.29
5745.26
5664.73
5588.71
5517.18
5449.93
5386.67
5327.12
5271.21
5218.89
5169.89
5124.11
5081.56
5042.17
5005.83
4972.54
4942.36
4915.28
4891.25
4870.08
4851.76
4836.43
4824.37
4815.84
4810.94
4809.66
4812.15
4818.62
4829.27
4844.43
4864.4
4889.41
4919.99
4956.74
5000.09
5050.58
5108.77
5175.38
5251.34
5337.79
5435.97
5547.17
5672.85
5814.42
5973.55
6152.23
6352.86
6578.23
6831.62
7116.82
7438.28
7800.87
8210.2
8673.02
9197.4
9792.78
10469.9
11241.1
12120.3
13124
14270.5
15579.6
17070.4
18759.1
20654.4
22751
25020.8
27402.2
29797.4
32112.3
34522
39205.1
74286
15648.2
6228.96
5634.66
6271.7
7162.09
8149.16
9217.59
10370.3
11625.7
13004.8
14528
16214.7
18080.9
20134.1
22373.9
24791.3
27362.6
30054.1
32823.2
35622.9
38406.1
41128.7
43751.8
46243
48577
50735.1
52704.8
54478.8
56054.7
57433.3
58618.6
59616.5
60434.6
61081.4
61566.1
61898.1
62087.2
62142.7
62073.8
61889.5
61598.2
61208.1
60726.9
60161.8
59519.7
58807.1
58030.1
57194.7
56306.2
55369.9
54390.9
53373.8
52323.2
51243.4
50138.5
49012.6
47869.4
46712.6
45545.5
44371.6
43194
42015.7
40839.5
39668.1
38504
37349.7
36207.2
35078.6
33965.9
32870.8
31794.7
30739.2
29705.4
28694.5
27707.4
26744.9
25807.8
24896.5
24011.5
23153.2
22321.6
21516.9
20739
19988
19263.7
18565.9
17894.3
17248.7
16628.9
16034.7
15465.8
14922.1
14403.2
13908.3
13436.2
12985.7
12555.6
12144.8
11752.1
11376.4
11017
10673.2
10344.7
10031.4
9732.94
9449.2
9179.88
8924.56
8682.54
8452.84
8234.47
8026.61
7828.64
7640.1
7460.68
7290.22
7128.61
6975.64
6830.96
6694.14
6564.82
6442.61
6326.91
6217.21
6113.03
6014
5919.82
5830.27
5745.24
5664.69
5588.68
5517.15
5449.9
5386.65
5327.11
5271.19
5218.83
5169.78
5123.94
5081.3
5041.82
5005.43
4972.22
4942.26
4915.34
4891.3
4870.05
4851.7
4836.45
4824.48
4815.83
4810.63
4809.19
4811.82
4818.49
4829.24
4844.33
4864.2
4889.31
4920.02
4956.78
5000.09
5050.55
5108.72
5175.3
5251.18
5337.58
5435.83
5547.16
5672.86
5814.39
5973.48
6152.16
6352.78
6578.15
6831.54
7116.81
7438.29
7800.88
8210.2
8673.02
9197.41
9792.79
10469.9
11241.1
12120.4
13124
14270.5
15579.6
17070.5
18759.2
20654.4
22751
25020.9
27402.2
29797.5
32112.4
34522
39205.1
74285.8
3310.52
5248.02
7010.23
8515.61
9799.39
10970.7
12122.6
13344.1
14695.1
16216
17935.7
19875.9
22051.7
24467.4
27111
29951.8
32943.6
36027.8
39138.9
42212
45188
48017.3
50661
53091.3
55290.4
57249.2
58965.9
60444.2
61691.9
62719.9
63540.7
64168
64615.9
64898.4
65028.9
65020.3
64884.7
64633.3
64276.4
63823.6
63283.5
62663.9
61972.2
61214.8
60397.9
59526.9
58607.1
57643.2
56639.7
55600.7
54530.4
53432.5
52310.6
51168.2
50008.7
48835.2
47650.9
46458.8
45261.8
44062.6
42864
41668.5
40478.5
39296.4
38124.4
36964.5
35818.6
34688.7
33576.3
32483
31410.1
30359
29330.6
28326
27346
26391.4
25462.6
24560.1
23684.3
22835.4
22013.6
21218.8
20450.9
19710
18995.7
18307.8
17646
17010.2
16400
15815.5
15256.6
14723.6
14216.2
13733.7
13273.9
12835.7
12417.4
12018
11636.1
11269.7
10917.9
10580.6
10257.8
9949.5
9655.86
9376.95
9112.76
8862.96
8627.22
8403.61
8190.78
7987.66
7793.59
7608.21
7431.38
7263.18
7103.9
6953.59
6811.76
6677.76
6551.25
6432.42
6319.82
6212.83
6110.98
6013.86
5921.19
5832.79
5748.59
5668.73
5593.43
5522.82
5456.66
5394.41
5335.49
5280.22
5229.21
5181.35
5136.29
5094.41
5055.8
5019.94
4986.78
4956.65
4929.73
4906.25
4885.38
4867.01
4851.33
4838.88
4830.24
4825.66
4824.48
4826.97
4833.45
4843.81
4858.77
4878.64
4903.03
4932.75
4969.02
5011.91
5061.95
5119.35
5184.75
5259.31
5344.49
5441.7
5552.02
5677.23
5818.4
5976.96
6154.8
6354.53
6579.22
6832.37
7117.97
7441.47
7808.12
8223.49
8695.13
9232.67
9847.78
10553.9
11366.3
12303.8
13389.5
14653
16128.9
17856.4
19878.1
22238.2
24977.7
28126
31689
35638.2
39933.1
44794
52713.1
100504
3310.23
5264
7019.5
8518.98
9800.24
10970.8
12122.5
13343.9
14694.9
16215.9
17935.6
19875.9
22051.6
24467.4
27111
29951.8
32943.6
36027.8
39139
42212.1
45188.1
48017.4
50661.1
53091.4
55290.5
57249.3
58966
60444.3
61692
62720
63540.8
64168.1
64616
64898.4
65028.9
65020.3
64884.7
64633.3
64276.5
63823.7
63283.5
62664
61972.2
61214.8
60397.9
59526.9
58607.1
57643.2
56639.6
55600.7
54530.4
53432.5
52310.6
51168.2
50008.7
48835.2
47650.9
46458.8
45261.8
44062.6
42864
41668.5
40478.5
39296.4
38124.4
36964.5
35818.7
34688.7
33576.3
32483
31410.2
30359
29330.7
28326.1
27346.1
26391.4
25462.6
24560.2
23684.4
22835.5
22013.6
21218.8
20451
19710
18995.7
18307.8
17646.1
17010.2
16400.1
15815.5
15256.6
14723.6
14216.3
13733.7
13273.9
12835.8
12417.5
12018.1
11636.1
11269.7
10917.9
10580.6
10257.8
9949.47
9655.81
9376.88
9112.68
8862.93
8627.15
8403.54
8190.71
7987.59
7793.54
7608.16
7431.3
7263.08
7103.79
6953.5
6811.69
6677.72
6551.27
6432.41
6319.79
6212.81
6110.95
6013.83
5921.16
5832.73
5748.5
5668.6
5593.29
5522.69
5456.53
5394.29
5335.42
5280.16
5229.06
5181.06
5135.88
5093.8
5054.84
5018.65
4985.56
4956.18
4929.83
4906.28
4885.17
4866.65
4851.25
4839.35
4830.75
4825.03
4823.12
4826.03
4833.09
4844
4858.59
4877.73
4902.34
4932.66
4969.17
5012.03
5062.03
5119.51
5184.9
5259.16
5343.9
5441.28
5552.2
5677.59
5818.62
5976.93
6154.66
6354.29
6578.81
6831.85
7117.82
7441.43
7808.09
8223.45
8695.11
9232.67
9847.8
10553.9
11366.3
12303.8
13389.6
14653.1
16128.9
17856.4
19878.2
22238.3
24977.7
28126.1
31689.1
35638.3
39933.2
44794.1
52713.1
100503
1869.93
6299.88
9268.39
11160.5
12504.5
13655.6
14792
16029.8
17455.4
19125.8
21076
23327
25886.9
28748
31874.4
35200.8
38646.9
42123
45537.9
48810.5
51875.8
54686.1
57211.1
59435.4
61355.7
62978.3
64316.4
65387.5
66211.9
66811
67206.4
67418.8
67467.8
67371.5
67146.4
66807
66366.5
65836.3
65226.3
64545.5
63801.2
63000.3
62148.3
61250.6
60311.4
59335
58324.8
57284.3
56216.5
55124.5
54010.9
52878.5
51729.8
50567.5
49394
48211.8
47023.3
45830.9
44637
43443.7
42253.5
41068.4
39890.6
38722
37564.7
36420.5
35291.1
34178.1
33083.1
32007.5
30952.5
29919.2
28908.7
27922
26959.6
26022.4
25110.8
24225.2
23365.9
22533.2
21727
20947.5
20194.5
19467.9
18767.5
18092.9
17443.9
16820.3
16222
15649
15101.9
14581.8
14089.5
13623.5
13178.9
12756.8
12352.1
11966.4
11598.3
11243.2
10899.5
10567.9
10249.4
9944.81
9654.6
9379.46
9119.88
8874.46
8646.39
8429.88
8222.98
8024.3
7833.33
7649.92
7474.24
7306.88
7148.67
7000.15
6860.46
6728.2
6602.21
6487.77
6378.78
6274.41
6174.42
6078.58
5986.72
5898.72
5814.63
5734.73
5659.51
5589.3
5523.88
5462.28
5401.93
5344.87
5296.52
5251.22
5206.5
5164.49
5127.02
5091.86
5057.97
5026.43
4998.16
4975.72
4954.75
4935.8
4918.81
4904.58
4894.51
4891.07
4890.27
4893.33
4901.26
4911.03
4925.52
4946.59
4970.17
4998.14
5034.91
5077.43
5127.76
5184.26
5247.49
5319.72
5403.75
5501.54
5611.02
5736.76
5878.4
6036.88
6213.5
6411.48
6634.54
6886.47
7169.17
7491.51
7859.55
8276.65
8750.4
9292
9916.09
10638.5
11476.3
12450.9
13591.7
14941.9
16552.2
18486
20819
23643.4
27071.5
31237.6
36301.7
42468.2
50075.2
60179.2
77580.9
167737
1869.68
6301.28
9269.28
11160.6
12504.2
13655.1
14791.5
16029.3
17455.1
19125.5
21075.8
23326.8
25886.8
28747.9
31874.3
35200.8
38646.9
42123.1
45537.9
48810.6
51875.9
54686.2
57211.2
59435.5
61355.8
62978.4
64316.5
65387.6
66212
66811.1
67206.5
67418.8
67467.9
67371.6
67146.4
66807.1
66366.5
65836.3
65226.3
64545.4
63801.2
63000.2
62148.3
61250.5
60311.4
59334.9
58324.7
57284.2
56216.5
55124.4
54010.8
52878.4
51729.8
50567.5
49394
48211.8
47023.3
45830.9
44636.9
43443.7
42253.5
41068.4
39890.6
38722
37564.7
36420.5
35291.1
34178.1
33083.2
32007.5
30952.5
29919.3
28908.8
27922
26959.7
26022.4
25110.8
24225.2
23366
22533.2
21727.1
20947.6
20194.6
19468
18767.5
18093
17444
16820.4
16222.1
15649.1
15102
14581.8
14089.5
13623.6
13179
12756.7
12352.4
11966.8
11598.7
11243.4
10899.6
10568
10249.6
9944.91
9654.64
9379.38
9119.68
8874.54
8646.36
8429.85
8222.94
8024.26
7833.27
7649.81
7473.98
7306.45
7148.18
6999.74
6860.15
6728.02
6602.55
6488.02
6378.98
6274.61
6174.62
6078.77
5986.87
5898.81
5814.6
5734.58
5659.29
5589.06
5523.58
5461.9
5401.65
5344.67
5296.12
5250.46
5205.61
5163.24
5124.75
5088
5053.56
5024.93
4998.51
4975.09
4953.56
4934.07
4918.12
4906.9
4899.65
4892.29
4887.8
4891.91
4900.45
4913.07
4926.57
4943
4966.28
4996.7
5034.91
5077.91
5128.45
5185.78
5249.8
5321.41
5402.03
5499.16
5611.58
5738.52
5879.95
6037.45
6213.5
6410.84
6632.67
6883.3
7168.22
7491.19
7859.31
8276.42
8750.23
9291.91
9916.07
10638.5
11476.3
12450.9
13591.9
14941.9
16552.2
18486
20819
23643.5
27071.6
31237.7
36301.8
42468.3
50075.3
60179.3
77581
167736
5.97376
951.79
2666.79
4937.85
7432.79
9913.99
12280.9
14558.2
16846.6
19256.1
21876.3
24767.3
27955.9
31437.7
35160.7
39033.3
42944.4
46778.7
50426.5
53801.5
56844.2
59520.5
61818
63741
65305.9
66537.6
67465.2
68120.4
68534.5
68737.9
68758.4
68621.6
68349.9
67962.9
67477.4
66907.8
66266.1
65562.3
64804.5
63999.8
63153.5
62270.3
61353.9
60407.4
59433.6
58434.6
57412.6
56369.4
55306.8
54226.4
53130.1
52019.5
50896.3
49762.4
48619.5
47469.6
46314.6
45156.5
43997.1
42838.6
41682.8
40531.8
39387.5
38251.7
37126.3
36013.1
34913.6
33829.6
32762.4
31713.5
30684.1
29675.3
28688.3
27723.8
26782.6
25865.6
24973.1
24105.6
23263.5
22447
21656.1
20891
20151.6
19437.7
18749.1
18085.6
17446.9
16832.8
16243.1
15678.3
15139.8
14630.6
14154.4
13707.5
13273.3
12874.4
12477.3
12098.7
11747.1
11404.5
11066.6
10736.7
10418
10112.5
9821.67
9548.15
9294.42
9043.44
8825.43
8616.3
8413.9
8217.13
8026.26
7841.92
7665.19
7497.63
7339.13
7190.36
7049.78
6915.69
6772.87
6664.27
6560.04
6457.62
6358.02
6261.81
6169.28
6080.64
5996.22
5916.46
5841.48
5771.5
5707.44
5649.29
5582.14
5512.21
5472.84
5437.38
5391.53
5342.8
5305.6
5272.18
5236.15
5199.97
5166.28
5152.32
5130.47
5109.77
5089.34
5067.44
5044.31
5043.12
5043.22
5050.97
5072.63
5080.86
5088.19
5114.6
5137.31
5161.77
5208
5247.06
5298.33
5351.92
5408.49
5475.38
5560.5
5670.85
5777.25
5905.23
6049.13
6210.22
6387.38
6585.57
6812.04
7073.87
7352.89
7671.37
8042.48
8461.05
8932.69
9470.02
10093.6
10822.3
11671.3
12658.5
13814.2
15206.4
16893.4
18961.2
21514.9
24692.6
28680.2
33729
40182.4
48524.3
59531.8
74809.8
100850
149485
5.97346
951.73
2666.5
4937.26
7431.98
9913.1
12280
14557.5
16846
19255.6
21876
24767
27955.7
31437.5
35160.6
39033.3
42944.4
46778.7
50426.5
53801.5
56844.2
59520.6
61818.1
63741
65306
66537.6
67465.3
68120.4
68534.6
68737.9
68758.5
68621.6
68349.9
67962.9
67477.4
66907.8
66266.1
65562.2
64804.5
63999.7
63153.4
62270.2
61353.8
60407.3
59433.5
58434.5
57412.5
56369.3
55306.7
54226.4
53130
52019.4
50896.2
49762.3
48619.5
47469.6
46314.6
45156.4
43997.1
42838.6
41682.8
40531.8
39387.5
38251.7
37126.3
36013.1
34913.7
33829.6
32762.5
31713.5
30684.1
29675.4
28688.3
27723.8
26782.7
25865.6
24973.1
24105.7
23263.6
22447.1
21656.2
20891.1
20151.7
19437.8
18749.2
18085.7
17447
16832.8
16243.2
15678.4
15139.8
14630.5
14154.5
13708.3
13274.2
12873.6
12478.2
12100.6
11749.1
11406.3
11068.3
10738.3
10419.5
10113.9
9822.9
9548.71
9293.98
9044.43
8826.05
8616.88
8414.45
8217.65
8026.71
7842.17
7664.97
7496.79
7338.04
7189.44
7049.01
6914.81
6774.61
6665.99
6561.68
6459.25
6359.64
6263.39
6170.78
6081.98
5997.32
5917.3
5842.16
5772.04
5707.54
5648.78
5581.55
5511.64
5472.11
5435.84
5390.16
5341.22
5301.62
5262.57
5223.48
5202.31
5173.49
5148.52
5125.16
5103.08
5085.33
5074.72
5076.18
5064.37
5048.14
5059.27
5069.71
5091.16
5101.48
5104.32
5120.32
5152.61
5205.08
5248.04
5301.17
5359.38
5423.06
5493.55
5556.7
5654.44
5774.56
5909.3
6054.93
6213.42
6388.72
6584.3
6803.97
7054.87
7347.65
7669.49
8041.15
8459.81
8931.55
9469.03
10092.9
10821.6
11670.6
12658.3
13814.8
15206.5
16893.4
18961.2
21514.9
24692.6
28680.3
33729.1
40182.5
48524.4
59532
74809.9
100850
149485
3.84785
412.238
1146.14
2268.1
3801.47
5779.3
8181.38
10925.8
13923.2
17125.1
20546.7
24211.2
28119.8
32253.9
36555.3
40958.1
45309.8
49465.5
53299.5
56728.4
59707.5
62223
64284.7
65918.7
67161.6
68055.5
68644.2
68970.4
69074.2
68991.5
68754.1
68389.5
67920.5
67366.5
66743
66062.6
65335.1
64568.4
63768.4
62939.4
62084.9
61207.2
60308
59388.6
58450
57493
56518.1
55526
54517.4
53493.1
52453.9
51401
50335.3
49258.2
48171.1
47075.6
45973.2
44865.8
43755.1
42643
41531.4
40422.3
39317.4
38218.7
37128.1
36047.4
34978.2
33922.3
32881.2
31856.3
30849
29860.5
28892
27944.3
27018.6
26115.3
25235.3
24379
23546.8
22739.1
21956
21197.6
20464
19754.9
19070.4
18410.2
17773.9
17161.5
16572.7
16008.3
15470.4
14965.7
14504.1
14075.4
13620.2
13295.5
12878.4
12461.1
12123.2
11794.8
11460.2
11126.9
10802.1
10490.2
10195.2
9928.55
9713.44
9412.3
9211.29
9011.04
8810.32
8611.13
8416.14
8228.11
8051.72
7892.24
7739.11
7589.13
7442.72
7316.86
7074.53
6966.86
6869.45
6768.79
6668.04
6569.72
6475.23
6385.75
6302.8
6227.05
6156.03
6088.64
6032.31
6000.28
5924.57
5810.76
5799.99
5798.11
5747.6
5662.75
5612.84
5580.4
5541.57
5500.01
5461.94
5512.53
5495.12
5472.67
5445.92
5394.8
5289.45
5281.99
5282.16
5314.27
5417.22
5422.37
5368.29
5400.66
5422.24
5447.14
5556.6
5560.58
5603.03
5640.36
5675.25
5729.58
5825.13
6008.24
6083.03
6204.76
6344.19
6508.66
6688.88
6892.79
7142.82
7479.66
7771.63
8078.07
8456.4
8881.83
9352.96
9881.37
10499.9
11235.9
12097.2
13084.6
14202.7
15617.1
17351.2
19508.6
22216.7
25649.7
30054.5
35782.2
43331.9
53410.3
67108
86148.3
117895
152709
3.84785
412.234
1146.11
2267.99
3801.23
5778.91
8180.85
10925.2
13922.6
17124.6
20546.2
24210.8
28119.6
32253.7
36555.1
40958
45309.7
49465.5
53299.5
56728.4
59707.6
62223.1
64284.7
65918.7
67161.6
68055.6
68644.3
68970.5
69074.2
68991.5
68754.1
68389.5
67920.5
67366.5
66743
66062.5
65335.1
64568.4
63768.3
62939.3
62084.8
61207.1
60307.9
59388.6
58450
57492.9
56518
55525.9
54517.3
53493
52453.9
51400.9
50335.2
49258.1
48171.1
47075.5
45973.2
44865.8
43755.1
42643
41531.4
40422.3
39317.4
38218.8
37128.2
36047.4
34978.3
33922.4
32881.2
31856.3
30849
29860.6
28892
27944.4
27018.6
26115.4
25235.4
24379.1
23546.9
22739.2
21956.1
21197.7
20464.1
19755
19070.5
18410.3
17774
17161.6
16572.8
16008.3
15470.4
14965.8
14505.1
14078.9
13623.8
13291.2
12880.6
12468.3
12131.5
11802.8
11468
11134.5
10809.5
10497.3
10201.5
9932.3
9712.38
9417.09
9215.38
9015.02
8814.17
8614.86
8419.65
8231.15
8053.76
7893.06
7739.49
7589.79
7442.51
7313.38
7079.84
6972.65
6875.22
6774.6
6673.81
6575.39
6480.75
6391
6307.73
6231.7
6160.51
6092.75
6035.24
6001.8
5925.26
5810.36
5800.53
5797.59
5748.35
5663.74
5609.52
5563.93
5522.06
5563.36
5534.06
5505.87
5479.93
5454.92
5427.62
5388.85
5417.15
5396.61
5343.75
5398.51
5387.61
5436.63
5438
5387.79
5371.89
5412.72
5541.08
5561.52
5611.16
5664.51
5734.13
5837.08
5821.23
5912.7
6048.85
6200.69
6355.49
6517.63
6694.15
6890.24
7112.37
7382.31
7747.17
8069.46
8450.55
8876.31
9347.43
9875.7
10494.5
11230.4
12091.8
13080.9
14203.6
15617.3
17351.3
19508.6
22216.8
25649.8
30054.6
35782.3
43332
53410.5
67108.2
86148.5
117896
152709
3.39935
491.402
1280.83
2251.22
3390.28
4737.96
6387.49
8457.67
11058.7
14239.8
17935.7
22021.2
26356.8
30851
35475.1
40469.5
45359.8
49918.1
53998.4
57528.6
60488.3
62891.3
64775
66190.6
67196.4
67852
68214.8
68337.3
68265.6
68039.4
67691.8
67249.6
66734.5
66163.3
65548.7
64900.5
64225.3
63528
62811.5
62077.6
61327
60559.9
59776
58974.6
58155.1
57316.8
56459.3
55582
54685
53768.2
52831.9
51876.8
50903.5
49913.3
48907.2
47886.9
46853.9
45810.1
44757.2
43697.3
42632.5
41564.9
40496.6
39429.7
38366.2
37308.4
36258
35217.1
34187.4
33170.7
32168.5
31182.3
30213.5
29263.2
28332.6
27422.7
26534.2
25667.8
24824.2
24003.7
23206.8
22433.7
21684.5
20959.2
20257.8
19580.1
18925.8
18294.9
17687
17102.7
16545.4
16026.6
15568.5
15132.1
14440.1
14610.4
14042.8
13259.6
12883.9
12560.2
12222.6
11878.1
11539.2
11213.8
10913.3
10698.7
10820.3
10195.6
10018.8
9836.58
9634.23
9424.56
9217.36
9021.62
8856.27
8748.54
8632.53
8487.43
8336.27
8433.39
7638.18
7463.8
7364.75
7264.05
7160.34
7058.21
6960.89
6871.73
6795.83
6735.29
6678.86
6621.85
6599.24
6710.33
6657.44
6400.39
6499.5
6602.81
6536.3
6286.01
6158.84
6108.17
6065.83
6037.91
6047.16
6576.36
6634.5
6626.06
6592.02
6421.22
5785.79
5690.11
5677.25
5823.22
6433.78
6449.4
5936.42
5913.43
5922.43
5993.43
6544.76
6257.78
6193.43
6152.64
6117.83
6152.05
6306.14
6949.75
6744.62
6764.49
6848.75
6999.17
7180.12
7399.98
7747.86
8565.5
9021.09
9281.85
9665.7
10114.2
10602
11125.5
11742.8
12513.1
13427.6
14414.2
15229.2
16655.8
18458.9
20725
23593.4
27264.2
32029.7
38313.3
46719.2
58086.1
73628.7
94996.6
127423
155857
3.39935
491.403
1280.83
2251.21
3390.24
4737.87
6387.32
8457.42
11058.4
14239.4
17935.3
22020.8
26356.5
30850.7
35474.9
40469.4
45359.6
49918
53998.3
57528.6
60488.3
62891.4
64775
66190.6
67196.4
67852
68214.8
68337.3
68265.6
68039.4
67691.8
67249.6
66734.5
66163.2
65548.7
64900.4
64225.3
63527.9
62811.4
62077.5
61327
60559.9
59775.9
58974.5
58155
57316.7
56459.2
55582
54684.9
53768.1
52831.9
51876.7
50903.5
49913.2
48907.2
47886.9
46853.9
45810.1
44757.2
43697.3
42632.6
41564.9
40496.6
39429.7
38366.3
37308.4
36258.1
35217.2
34187.5
33170.8
32168.6
31182.4
30213.6
29263.3
28332.7
27422.8
26534.3
25667.9
24824.3
24003.9
23207
22433.8
21684.6
20959.3
20257.9
19580.2
18926
18295
17687.1
17102.8
16545.4
16027.2
15572.3
15143.3
14449.8
14592.1
14048.6
13282.6
12908.8
12584.1
12245.7
11900.7
11561.2
11235
10932.5
10710.1
10814.8
10211.3
10035
9853.24
9650.83
9440.82
9233.08
9036.4
8869.57
8760.79
8645.3
8500.73
8343.71
8422.9
7650.52
7475.62
7375.81
7274.97
7171.16
7068.87
6971.32
6881.9
6805.78
6745.27
6688.88
6631.32
6607.3
6719.15
6666.07
6404.28
6509.24
6613.07
6550.42
6298.64
6163.03
6091.4
6091.49
6607.59
6645.9
6635.24
6617.75
6599.52
6512.93
6140.41
6198.41
6153.14
5988.3
6395.92
6131.56
6232.86
6196.21
5939.71
5810.35
5900.87
6496.29
6259.38
6212.87
6214.91
6323.7
6770.33
6323.18
6353.44
6505.54
6680.8
6844.17
7009.68
7188.57
7388.27
7625.92
8004.5
8897.8
9244.79
9643.47
10093.7
10580.7
11102.4
11719.4
12488.6
13402.6
14394.8
15227.6
16654.5
18458.2
20724.8
23593.4
27264.3
32029.8
38313.4
46719.4
58086.3
73628.8
94996.8
127423
155857
9.02258
1286.95
2124.18
3247.15
4649.36
6221.01
7913.76
9743.39
11750.5
13993.5
16524.2
19342
22386.4
25605.2
29311.2
36219
42399.6
47850.2
52568.3
56557.8
59841.9
62467.6
64501.6
66022
67110.7
67845.9
68298.9
68531.3
68594.4
68529.8
68370.2
68140.6
67859.4
67540.1
67191.6
66819.7
66427.7
66016.7
65586.6
65136.2
64663.7
64167
63643.7
63091.5
62508.3
61892.4
61242.2
60556.8
59835.4
59077.8
58284.2
57455.3
56591.9
55695.3
54767.4
53809.9
52825
51815.2
50783
49731.1
48662.4
47579.6
46485.6
45383.4
44275.8
43165.6
42055.6
40948.2
39846.2
38751.8
37667.3
36594.8
35536.2
34493.4
33467.8
32460.9
31474.1
30508.5
29564.9
28644.3
27747.3
26874.4
26026
25202.4
24403.6
23629.7
22880.6
22156
21455.4
20778.6
20127.7
19516
18975.1
18324.7
15533
19625.2
18471.4
14475.4
13489.2
13050.4
12691.5
12343.3
12004.7
11682.5
11403
11446.3
14538.9
11672.4
11119.5
10883.5
10663.3
10438.1
10217.9
10018.9
9896.74
9979.2
9974.92
9855.35
9798.62
12613
8755.73
8031.45
7834.01
7715.87
7609.11
7507.2
7412.24
7329.61
7270.11
7239.89
7208.86
7170.62
7225.83
7844.72
7862.06
7232.94
7767.47
7969.15
7840.08
7054.09
6776.89
6693.82
6669.52
6765.45
7126.35
11000.4
11674.4
11806.3
11822.3
11311.9
7227.65
6474.46
6355.66
6885.24
10788.8
11138
7383.63
6692.73
6597.14
6961.48
10683.3
8093.27
7057.51
6785.49
6684.25
6797.88
7188.27
11016.6
8488.95
7530.95
7395.4
7486.96
7650.33
7883.83
8506.86
12521.8
14244.4
14378.5
14685.4
15222
15852.1
16463.4
17203.5
18224.4
19499.5
20704.7
19329.6
20335.1
22295.6
24900.8
28210.1
32432.1
37896.9
45080.5
54636.3
67415.9
84444.4
107470
136067
157726
9.02258
1286.95
2124.19
3247.16
4649.37
6221.01
7913.72
9743.31
11750.3
13993.3
16524
19341.8
22386.2
25604.9
29311
36218.8
42399.4
47850.1
52568.2
56557.7
59841.9
62467.6
64501.6
66022.1
67110.7
67845.9
68298.9
68531.3
68594.4
68529.8
68370.2
68140.5
67859.4
67540.1
67191.6
66819.7
66427.7
66016.7
65586.6
65136.2
64663.7
64167
63643.7
63091.5
62508.3
61892.4
61242.2
60556.8
59835.4
59077.8
58284.3
57455.3
56591.9
55695.4
54767.4
53809.9
52825.1
51815.3
50783.1
49731.2
48662.5
47579.7
46485.7
45383.5
44275.9
43165.7
42055.7
40948.4
39846.3
38752
37667.5
36595
35536.4
34493.5
33467.9
32461.1
31474.3
30508.6
29565.1
28644.5
27747.5
26874.6
26026.2
25202.5
24403.8
23629.9
22880.8
22156.2
21455.6
20778.7
20127.9
19517.4
18981.2
18331.7
15515.3
19608.4
18497.8
14492.6
13485.1
13037.8
12676.7
12328.5
11990.4
11668.5
11387.8
11420.6
14527.4
11685.2
11116.2
10875.5
10654.5
10429.4
10209.2
10009.9
9887.02
9969.04
9966.2
9847.56
9781.02
12610.6
8775.44
8034.02
7829.79
7710
7603.01
7501.16
7406.29
7323.75
7264.35
7234.11
7202.89
7164.44
7220.81
7837.01
7852.31
7229.89
7767.07
7965.69
7840.83
7058.76
6779.83
6715.28
7048.47
10920
11592
11797.8
11876.7
11954.5
11657.7
8404.8
7756.05
7541.56
7150.48
10593.7
8181.04
7858.78
7566.59
6717.68
6470.28
6854.67
10645
8100.65
7071.07
6867.58
7203.32
10599
7493.95
7100.25
7100.86
7191.62
7318.43
7467.51
7637.75
7833.58
8098.61
8898.73
13615.8
14280.1
14678.2
15228.9
15859.7
16471.3
17214.5
18237.1
19515.3
20735.1
19363.3
20345
22297.5
24901
28210.1
32432.2
37897.1
45080.7
54636.4
67416
84444.6
107470
136068
157727
199.631
280.282
337.562
363.883
412.87
491.69
609.252
778.992
1022.37
1375.78
1896.13
2663.44
3777.69
5340.63
7319.19
37200.4
46710.9
55928.1
64373.3
71783.8
78075.2
83288.7
87539.5
90975.8
93749.9
96002.1
97852.4
99398.3
100716
101863
102881
103799
104636
105403
106108
106751
107330
107843
108285
108648
108928
109118
109211
109204
109090
108867
108532
108084
107522
106846
106058
105160
104155
103047
101840
100541
99153.4
97684.6
96140.7
94528.4
92854.5
91126
89349.9
87533
85682.3
83804.4
81905.7
79992.7
78071.1
76146.8
74225
72310.9
70409
68523.7
66659
64818.4
63005.3
61222.5
59472.5
57757.7
56080
54440.8
52841.6
51283.4
49766.9
48292.7
46860.9
45471.4
44123.9
42817.3
41547.1
40288.5
38966.8
37375.5
8551.63
50140.3
46070.1
8690.68
8076.77
7828.54
7662.86
7519.33
7385.89
7260.14
7143
7096.31
39006.1
8495.45
8463.27
8374.1
8255
8131.89
8015.71
7919.59
7904.11
8170.34
8259.15
8183.96
7919.94
39328.4
8605.26
8368.42
8245.86
8150.79
8064.2
7983.73
7910.56
7847.88
7802.01
7779.52
7759.75
7731.89
7679.44
7199.68
7365.45
8601.27
7520.91
7328.99
7161.73
7463.41
7410.23
7369.66
7413.84
7604.91
8574.8
37307.7
37526.6
37678.3
38047.8
38181
8572.52
8325.97
8323.73
8636.53
37215.8
37477.1
7897.44
7507.13
7596.31
8605.47
36990.5
7386.19
7568.5
7580.19
8278.39
8529.2
8674
38003.5
7595.48
7896.28
7938.85
8017.04
8136.64
8284.06
8454.75
36778
42612.3
39932
40060.7
41367.1
42932.3
43498.8
44853.9
47322.7
50661.2
54299.3
41651
43084.1
47313.5
52852.4
59762.3
68471.5
79625.2
94085.8
112899
137116
166646
208071
212130
216806
199.631
280.282
337.561
363.882
412.869
491.688
609.247
778.983
1022.36
1375.75
1896.08
2663.37
3777.59
5340.51
7319.05
37199.7
46710.2
55927.6
64372.9
71783.5
78075
83288.5
87539.4
90975.7
93749.8
96002
97852.3
99398.3
100716
101863
102881
103799
104636
105403
106108
106751
107331
107844
108285
108649
108928
109118
109212
109204
109090
108867
108533
108084
107522
106846
106058
105160
104155
103047
101841
100541
99153.6
97684.8
96140.9
94528.5
92854.7
91126.2
89350
87533.1
85682.4
83804.4
81905.8
79992.7
78071.2
76146.8
74225.1
72310.9
70409
68523.7
66659
64818.4
63005.3
61222.5
59472.5
57757.7
56079.9
54440.8
52841.6
51283.4
49766.9
48292.7
46860.9
45471.3
44123.8
42817.4
41547.5
40290.9
38977.2
37377.4
8549.26
50122.4
46069.5
8692.94
8077.84
7828.77
7662.6
7518.89
7385.5
7259.82
7142.59
7095.43
38993.4
8493.95
8464.05
8375.51
8256.4
8133.19
8016.89
7920.54
7904.58
8170.72
8259.95
8185.39
7922.31
39347.8
8606.2
8368.74
8245.73
8150.46
8063.81
7983.36
7910.22
7847.62
7801.99
7779.6
7759.45
7730.9
7676.86
7196.36
7365.34
8601.96
7521.87
7331.91
7168.1
7474.1
7438.2
7591.43
8567.19
37347.2
37669.8
37665.7
37858.8
38551.2
37935.3
7488.63
7257.15
7346.27
8654.19
37351.3
7466.6
7261.99
7235.35
8229.56
8371.92
8710.07
36941.4
7375.88
7568.05
7534.03
7746.21
36875.9
8142.03
8549.53
7993.15
7863.9
7903.37
8002.89
8131.77
8282.24
8453.64
8716.17
42604.8
39924.2
40057.7
41363.6
42924.6
43489.1
44850.1
47323
50662.7
54298.8
41645.3
43079.7
47311.2
52851.4
59762
68471.4
79625.2
94085.9
112900
137116
166647
208071
212130
216806
)
;
boundaryField
{
leftAndRight
{
type epsilonWallFunction;
value nonuniform List<scalar>
440
(
1.16803
1.16816
5.99586
5.9965
12.781
12.782
19.6326
19.6338
26.3816
26.3828
33.1161
33.1173
39.9445
39.9458
46.9695
46.9709
54.2874
54.2888
61.9899
61.9914
70.1664
70.1679
78.9052
78.9068
88.2945
88.2962
98.4231
98.4248
109.381
109.383
121.259
121.261
134.15
134.152
148.15
148.152
163.354
163.357
179.864
179.866
197.781
197.783
217.21
217.213
238.261
238.263
261.045
261.047
285.678
285.681
312.282
312.285
340.981
340.984
371.906
371.909
405.193
405.195
440.983
440.985
479.423
479.425
520.667
520.669
564.875
564.877
612.212
612.214
662.851
662.853
716.971
716.972
774.755
774.756
836.393
836.394
902.079
902.079
972.011
972.011
1046.39
1046.39
1125.42
1125.42
1209.3
1209.3
1298.23
1298.23
1392.41
1392.41
1492.03
1492.03
1597.26
1597.26
1708.26
1708.26
1825.17
1825.17
1948.09
1948.08
2077.06
2077.06
2212.08
2212.08
2353.02
2353.02
2499.6
2499.6
2651.28
2651.28
2807.09
2807.07
2965.28
2965.17
3122.74
3122.32
3273.3
3272.68
3400.58
3406.05
3437
3505
2999.85
3543.91
2993.18
3532.54
3431.02
3257.68
15514
3229.39
15673.3
3512.95
15932.3
15567.9
16406
16274.1
16631.9
16581
3413.95
3411.05
3337.57
3336.73
3367.72
3367.48
3444.33
3444.27
3540.58
3540.46
15521
15519.1
16078.3
16077.1
16654.9
16654.4
17272.5
17272.5
17910.1
17910.8
18546.4
18550.3
19160.8
19183.2
19693.2
19819
19788.5
20479.3
16583.6
21074.2
15691.2
21146
15545
17701.5
15714
16368.2
15923
16116.6
16113.2
16168.8
16258.2
16273.7
16332.8
16337
16329.7
16331
16249.4
16250.1
16076.1
16076.3
15759.4
15758.7
15443
15441.9
20071
20070.8
20683.5
20679.6
18417.5
18415
15510.2
15514.4
3392.77
3393.05
3238.39
3238.35
3120.58
3120.49
15208.5
15208
15607.5
15604.7
15185.1
15180.9
16106.8
16103.4
15650.1
15648.2
3310.52
3310.23
1869.93
1869.68
0.662494
0.662496
3.27285
3.27285
6.99908
6.99908
10.956
10.956
15.0224
15.0224
19.2312
19.2312
23.4908
23.4909
27.7451
27.7452
31.968
31.9681
36.1622
36.1623
40.3235
40.3237
44.4193
44.4194
48.4689
48.4691
52.473
52.4732
56.4314
56.4317
60.3449
60.3452
64.2151
64.2155
68.0447
68.0452
71.838
71.8385
75.6003
75.6008
79.3389
79.3395
83.0629
83.0635
86.7829
86.7836
90.5121
90.5129
94.2655
94.2663
98.0607
98.0616
101.917
101.918
105.858
105.859
109.908
109.909
114.095
114.096
118.45
118.451
123.006
123.007
127.802
127.803
132.878
132.879
138.283
138.284
144.093
144.095
150.339
150.341
157.065
157.066
164.33
164.332
172.205
172.206
180.761
180.762
190.079
190.08
200.245
200.246
211.352
211.354
223.503
223.505
236.807
236.809
251.384
251.385
267.361
267.363
284.878
284.88
304.086
304.088
325.145
325.147
348.23
348.232
373.526
373.528
401.237
401.239
431.601
431.603
464.873
464.875
501.264
501.267
541.029
541.032
584.445
584.448
631.808
631.812
683.433
683.437
739.653
739.656
800.82
800.824
867.306
867.31
939.504
939.508
1017.82
1017.83
1102.7
1102.7
1194.58
1194.58
1293.92
1293.93
1401.21
1401.21
1516.92
1516.93
1641.54
1641.55
1775.53
1775.53
1919.28
1919.28
2073.13
2073.13
2237.22
2237.2
2411.41
2411.34
2595.05
2594.83
2786.57
2785.95
2982.71
2981.23
3176.4
3174.1
3348.38
3352.96
3423.08
3498.65
3000.99
3587.79
3007.69
15545.6
3074.82
15444.7
3149.79
15860.5
3222.76
16435.7
15138.6
15749.2
16662.5
16028.2
17338.2
3444.28
16061.5
3178.99
17392.4
3243.15
18450.4
3420.95
16118.2
15271
16725.8
16703.1
18330.2
18376.4
20227.9
20255.5
22345.1
22357.4
24721.7
24726.7
27424.8
27426.7
30542.8
30543.5
34197.6
34197.9
38569.2
38569.3
43941.7
43941.6
50814.3
50814.2
60156.4
60156.3
74286
74285.8
100504
100503
167737
167736
)
;
}
frontAndBack
{
type empty;
}
hot
{
type epsilonWallFunction;
value nonuniform List<scalar>
400
(
1.16803
1.16816
5.46533
5.46586
11.6389
11.6397
17.873
17.874
23.9441
23.9452
29.8672
29.8684
35.6711
35.6723
41.3755
41.3768
46.9926
46.9939
52.5291
52.5304
57.9888
57.9901
63.3735
63.3748
68.6838
68.6852
73.9198
73.9211
79.0808
79.0822
84.1663
84.1677
89.1754
89.1767
94.1071
94.1085
98.9607
98.962
103.735
103.736
108.429
108.431
113.042
113.044
117.573
117.574
122.02
122.021
126.381
126.383
130.656
130.657
134.841
134.843
138.936
138.937
142.936
142.938
146.84
146.842
150.644
150.645
154.344
154.346
157.937
157.939
161.419
161.421
164.785
164.786
168.03
168.032
171.15
171.151
174.139
174.141
176.993
176.995
179.707
179.708
182.274
182.276
184.691
184.693
186.953
186.955
189.054
189.056
190.99
190.992
192.758
192.76
194.353
194.355
195.772
195.774
197.013
197.015
198.073
198.075
198.95
198.952
199.644
199.645
200.153
200.155
200.478
200.48
200.619
200.621
200.579
200.581
200.358
200.36
199.96
199.962
199.388
199.39
198.646
198.648
197.738
197.74
196.672
196.673
195.466
195.468
194.138
194.14
192.669
192.67
191.063
191.064
189.327
189.329
187.471
187.472
185.5
185.501
183.424
183.426
181.251
181.253
178.99
178.991
176.649
176.651
174.238
174.239
171.764
171.765
169.236
169.237
166.664
166.665
164.055
164.056
161.418
161.419
158.761
158.762
156.092
156.093
153.419
153.42
150.749
150.75
148.089
148.089
145.445
145.446
142.825
142.826
140.235
140.235
137.679
137.68
135.164
135.165
132.695
132.695
130.275
130.276
127.91
127.911
125.604
125.604
123.359
123.359
121.179
121.179
119.067
119.067
117.025
117.025
115.055
115.055
113.16
113.16
111.34
111.34
109.597
109.597
107.932
107.932
106.346
106.346
104.838
104.838
103.41
103.41
102.061
102.061
100.79
100.79
99.5986
99.5983
98.4845
98.4842
97.4475
97.4472
96.4865
96.4862
95.6005
95.6002
94.7882
94.7879
94.0483
94.0479
93.3788
93.3784
92.779
92.7786
92.2467
92.2462
91.7792
91.7787
91.3745
91.374
91.0319
91.0314
90.7488
90.7483
90.5231
90.5225
90.3524
90.3519
90.2347
90.2341
90.1676
90.167
90.1488
90.1482
90.176
90.1755
90.2468
90.2462
90.3588
90.3582
90.5094
90.5088
90.6961
90.6955
90.9163
90.9157
91.1673
91.1667
91.4464
91.4458
91.7508
91.7502
92.0775
92.0769
92.4235
92.4229
92.7858
92.7851
93.1609
93.1602
93.5456
93.5449
93.9364
93.9357
94.3294
94.3287
94.721
94.7203
95.107
95.1063
95.4832
95.4825
95.8452
95.8445
96.1884
96.1877
96.508
96.5072
96.7988
96.7981
97.0557
97.055
97.2732
97.2725
97.4457
97.445
97.5674
97.5667
97.6322
97.6315
97.634
97.6333
97.5667
97.566
97.4238
97.4231
97.1991
97.1985
96.8863
96.8857
96.4791
96.4784
95.9713
95.9707
95.3571
95.3565
94.6306
94.63
93.7866
93.786
92.8199
92.8193
91.7274
91.7269
90.5266
90.526
89.2092
89.2087
87.7603
87.7598
86.176
86.1755
84.4551
84.4546
82.5979
82.5975
80.6056
80.6052
78.4806
78.4802
76.2261
76.2257
73.8465
73.8462
71.3474
71.3471
68.7352
68.7349
66.0174
66.0171
63.2026
63.2023
60.3
60.2998
57.32
57.3198
54.2732
54.2731
51.1712
51.171
48.0254
48.0253
44.8478
44.8476
41.6499
41.6498
38.443
38.4429
35.2369
35.2368
32.0349
32.0348
28.8336
28.8335
25.6712
25.6712
22.5181
22.5181
19.3682
19.3682
16.2029
16.2029
13.0373
13.0373
9.83636
9.83638
6.48644
6.48645
3.09401
3.09402
0.662494
0.662496
)
;
}
cold
{
type epsilonWallFunction;
value nonuniform List<scalar>
400
(
199.631
199.631
280.282
280.282
337.562
337.561
363.883
363.882
412.87
412.869
491.69
491.688
609.252
609.247
778.992
778.983
1022.37
1022.36
1375.78
1375.75
1896.13
1896.08
2663.44
2663.37
3777.69
3777.59
5340.63
5340.51
7319.19
7319.05
37200.4
37199.7
46710.9
46710.2
55928.1
55927.6
64373.3
64372.9
71783.8
71783.5
78075.2
78075
83288.7
83288.5
87539.5
87539.4
90975.8
90975.7
93749.9
93749.8
96002.1
96002
97852.4
97852.3
99398.3
99398.3
100716
100716
101863
101863
102881
102881
103799
103799
104636
104636
105403
105403
106108
106108
106751
106751
107330
107331
107843
107844
108285
108285
108648
108649
108928
108928
109118
109118
109211
109212
109204
109204
109090
109090
108867
108867
108532
108533
108084
108084
107522
107522
106846
106846
106058
106058
105160
105160
104155
104155
103047
103047
101840
101841
100541
100541
99153.4
99153.6
97684.6
97684.8
96140.7
96140.9
94528.4
94528.5
92854.5
92854.7
91126
91126.2
89349.9
89350
87533
87533.1
85682.3
85682.4
83804.4
83804.4
81905.7
81905.8
79992.7
79992.7
78071.1
78071.2
76146.8
76146.8
74225
74225.1
72310.9
72310.9
70409
70409
68523.7
68523.7
66659
66659
64818.4
64818.4
63005.3
63005.3
61222.5
61222.5
59472.5
59472.5
57757.7
57757.7
56080
56079.9
54440.8
54440.8
52841.6
52841.6
51283.4
51283.4
49766.9
49766.9
48292.7
48292.7
46860.9
46860.9
45471.4
45471.3
44123.9
44123.8
42817.3
42817.4
41547.1
41547.5
40288.5
40290.9
38966.8
38977.2
37375.5
37377.4
8551.63
8549.26
50140.3
50122.4
46070.1
46069.5
8690.68
8692.94
8076.77
8077.84
7828.54
7828.77
7662.86
7662.6
7519.33
7518.89
7385.89
7385.5
7260.14
7259.82
7143
7142.59
7096.31
7095.43
39006.1
38993.4
8495.45
8493.95
8463.27
8464.05
8374.1
8375.51
8255
8256.4
8131.89
8133.19
8015.71
8016.89
7919.59
7920.54
7904.11
7904.58
8170.34
8170.72
8259.15
8259.95
8183.96
8185.39
7919.94
7922.31
39328.4
39347.8
8605.26
8606.2
8368.42
8368.74
8245.86
8245.73
8150.79
8150.46
8064.2
8063.81
7983.73
7983.36
7910.56
7910.22
7847.88
7847.62
7802.01
7801.99
7779.52
7779.6
7759.75
7759.45
7731.89
7730.9
7679.44
7676.86
7199.68
7196.36
7365.45
7365.34
8601.27
8601.96
7520.91
7521.87
7328.99
7331.91
7161.73
7168.1
7463.41
7474.1
7410.23
7438.2
7369.66
7591.43
7413.84
8567.19
7604.91
37347.2
8574.8
37669.8
37307.7
37665.7
37526.6
37858.8
37678.3
38551.2
38047.8
37935.3
38181
7488.63
8572.52
7257.15
8325.97
7346.27
8323.73
8654.19
8636.53
37351.3
37215.8
7466.6
37477.1
7261.99
7897.44
7235.35
7507.13
8229.56
7596.31
8371.92
8605.47
8710.07
36990.5
36941.4
7386.19
7375.88
7568.5
7568.05
7580.19
7534.03
8278.39
7746.21
8529.2
36875.9
8674
8142.03
38003.5
8549.53
7595.48
7993.15
7896.28
7863.9
7938.85
7903.37
8017.04
8002.89
8136.64
8131.77
8284.06
8282.24
8454.75
8453.64
36778
8716.17
42612.3
42604.8
39932
39924.2
40060.7
40057.7
41367.1
41363.6
42932.3
42924.6
43498.8
43489.1
44853.9
44850.1
47322.7
47323
50661.2
50662.7
54299.3
54298.8
41651
41645.3
43084.1
43079.7
47313.5
47311.2
52852.4
52851.4
59762.3
59762
68471.5
68471.4
79625.2
79625.2
94085.8
94085.9
112899
112900
137116
137116
166646
166647
208071
208071
212130
212130
216806
216806
)
;
}
inlet
{
type fixedValue;
value uniform 0.01;
}
outlet
{
type zeroGradient;
}
}
// ************************************************************************* //
| |
4a5d57e8d126b4ab86bd6e8debcb3e906074d891 | 224bb4c15505e0b494eec0b911ee3fc67e6935db | /SourceSDK/filesystem.cpp | 1c6eeb11d372d85d661dadd51f9acd4c36bbae7f | [] | no_license | MoeMod/Thanatos-Launcher | 7b19dcb432172ee35f050b4f4f46e37a1e46c612 | 1f38c7cc1ebc911805ecf83222b5254d4b25a132 | refs/heads/master | 2021-12-27T15:27:02.097029 | 2021-09-09T17:05:04 | 2021-09-09T17:05:04 | 128,214,239 | 9 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 1,195 | cpp | filesystem.cpp | #include "filesystem.h"
#include <windows.h>
#include <malloc.h>
wchar_t *UTF8ToUnicode(const char* str);
char *GetFileType(const char fileName[], char type[])
{
int i = strlen(fileName) - 1, j;
char ch;
for (type[0] = '\0'; i >= 0; i--)
{
if (fileName[i] == '.')
{
for (j = i; fileName[j] != '\0'; j++)
{
ch = fileName[j];
type[j - i] = ('A' <= ch && ch <= 'Z') ? (ch + 'a' - 'A') : ch;
}
type[j - i] = '\0';
break;
}
else if (fileName[i] == '/' || fileName[i] == '\\')
{
break;
}
}
return type;
}
bool IFileSystem::FileExists(const char *pFileName, const char *pPathID)
{
return FileExists(pFileName);
}
bool IFileSystem::IsFileWritable(char const *pFileName, const char *pPathID)
{
return false;
}
bool IFileSystem::SetFileWritable(char const *pFileName, bool writable, const char *pPathID)
{
return false;
}
bool IFileSystem::IsDirectory(const char *pFileName, const char *pathID)
{
return false;
}
bool IFileSystem::GetFileTypeForFullPath(char const *pFullPath, wchar_t *buf, size_t bufSizeInBytes)
{
static char charBuf[32];
GetFileType(pFullPath, charBuf);
wcsncpy(buf, UTF8ToUnicode(charBuf), bufSizeInBytes);
return false;
} |
f1ff2abcd799c7cbaa965c2fe5dcae1d711210e6 | c552e4caf87b824466fa298cdddd2c495eb5ae50 | /SEERC/16/C.cpp | 86f6d40989858ce3e69506fb60ea38175ead2b8e | [] | no_license | BufferNihility/acm-icpc | d2dffc535061f0f2a5bedda4f53533634d14347f | e7261bdf35fe390e32872d89eb54f4a4835feb0f | refs/heads/master | 2022-02-22T03:54:57.445377 | 2019-10-08T11:09:17 | 2019-10-08T11:09:17 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,100 | cpp | C.cpp | #include <bits/stdc++.h>
using namespace std;
#define PII pair<int, int>
#define AA first
#define BB second
#define MP make_pair
const int N = 2e6+1000;
char a[N];
int f[N], Next[N];
int getNext(char b[N], int m) {
int j, k;
j = 0;
k = -1;
Next[0] = -1;
for(int i = 0; i < m; i++) {
while(k != -1 && b[k + 1] != b[i]) k = Next[k];
if(b[k + 1] == b[i] && k + 1 != i) k++;
Next[i] = k;
}
return Next[m - 1];
}
int main() {
// freopen("a.in", "r", stdin);
int n, m;
scanf("%d%d", &n, &m);
scanf("%s", a);
int cnt = n;
int k = getNext(a, cnt);
bool flag = true;
while(m--) {
int op; scanf("%d", &op);
if(op == 2) { if(flag) f[cnt - 1]++; flag = false;}
else if(op == 1) {
char buf[5]; scanf("%s", buf);
a[cnt++] = buf[0];
while(k != -1 && a[k + 1] != a[cnt - 1]) k = Next[k];
if(a[k + 1] == a[cnt - 1] && k + 1 != cnt - 1) k++;
Next[cnt - 1] = k;
f[cnt - 1] = f[k];
flag = true;
}
else {
if(m == 0) printf("%d", f[cnt - 1]);
else printf("%d\n", f[cnt - 1]);
}
}
return 0;
}
|
6ffceb5d2886bfb4a7c72cc78c7e699f7982edcd | a725f75e7d70539f7b3e8cacac48a8c39c90b68f | /RandomMover.h | 7c5b10e49d87e4d38ff2a8845922ec2177e022c1 | [] | no_license | simonwulf/StarClone64 | f9b1bd805980028f4e4f5248d25d4c34654c71c5 | 75db2d03e4a36af0a5def87c81a526ffcb940f1e | refs/heads/master | 2016-09-05T10:24:49.699552 | 2014-01-19T17:44:48 | 2014-01-19T17:44:48 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 340 | h | RandomMover.h | #ifndef RANDOMMOVER_H
#define RANDOMMOVER_H
#include <glm/core/type_vec3.hpp>
#include "ControllerComponent.h"
#include "Event.h"
class RandomMover : public ControllerComponent {
public:
RandomMover();
~RandomMover();
void update(const Event& e);
private:
glm::vec3 m_vTarget;
float m_fSpeed;
void updateTarget();
};
#endif |
cd420f1f300220202f56dd18b27c0f47cfe223de | f3e673e43674feb6746948e76160335bfab7585e | /q_lib/include/q/synth/sin.hpp | 4e04357c8f910edda89bfb04591a756caa46e117 | [
"MIT"
] | permissive | christofmuc/Q | df008d0b1617a3b7ea01b1279881d3f16796e1da | 38c14796241ed8fb453bc39f7801e9ddb4dae7c8 | refs/heads/master | 2020-09-07T13:19:55.440427 | 2020-04-01T13:05:15 | 2020-04-01T13:05:15 | 220,793,497 | 2 | 1 | null | 2020-04-01T13:05:16 | 2019-11-10T13:23:53 | C++ | UTF-8 | C++ | false | false | 979 | hpp | sin.hpp | /*=============================================================================
Copyright (c) 2014-2019 Joel de Guzman. All rights reserved.
Distributed under the MIT License [ https://opensource.org/licenses/MIT ]
=============================================================================*/
#if !defined(CYCFI_Q_SIN_HPP_DECEMBER_24_2015)
#define CYCFI_Q_SIN_HPP_DECEMBER_24_2015
#include <q/support/phase.hpp>
#include <q/detail/sin_table.hpp>
namespace cycfi { namespace q
{
////////////////////////////////////////////////////////////////////////////
// sin_synth: Synthesizes sine waves.
////////////////////////////////////////////////////////////////////////////
struct sin_synth
{
constexpr float operator()(phase p) const
{
return detail::sin_gen(p);
}
constexpr float operator()(phase_iterator i) const
{
return (*this)(i._phase);
}
};
constexpr auto sin = sin_synth{};
}}
#endif
|
ef03559b57195846746427acac6112d75529932d | a4e432c33f2637061790bdbebef44dd8aa84e061 | /SGFramework-Master/SGFramework-Master_ToExe/02_CustomVariable/DeletePointer/DeletePointer.hpp | 60301cadada8459d13e8b0926d2fd51e5c8496d9 | [] | no_license | pusanmodoki/SG-Framework | e2725ac1fd02faa01e4a7dde5288866006b74b20 | 8c55b7bbdb54784f811791f1e217eadcc209802d | refs/heads/master | 2022-12-22T01:01:01.395236 | 2020-08-24T18:02:06 | 2020-08-24T18:02:06 | 288,960,715 | 0 | 0 | null | null | null | null | SHIFT_JIS | C++ | false | false | 4,165 | hpp | DeletePointer.hpp | /*----------------------------------------------------------------------------------
ポインタをdeleteするためだけに作成したDeletePointer.h
------------------------------------------------------------------------------------*/
#ifndef SGFRAMEWORK_HEADER_DELETE_POINTER_HPP_
#define SGFRAMEWORK_HEADER_DELETE_POINTER_HPP_
#include <vector>
#include <list>
#include <map>
#include <deque>
#include <Windows.h>
#include <algorithm>
//Framework namespace
namespace SGFramework
{
//削除するための関数を格納するnamespace Deleting
namespace Deleteing
{
//プロトタイプ宣言
//単体か配列か選択
template<class T>
inline void DeletePointer(T *& pt, const bool isArray);
//単体版
template<class T>
inline void DeletePointer(T *& pt);
//配列版
template<class T>
inline void DeleteArrayPointer(T *& pt);
//vector単体版
template<class T>
inline void DeletePointer(std::vector<T*>& pt);
//deque単体版
template<class T>
inline void DeletePointer(std::deque<T*>& pt);
//list単体版
template<class T>
inline void DeletePointer(std::list<T*>& pt);
//map単体版
template<class T>
inline void DeletePointer(std::map<T, T*>& pt);
//----------------------------------------------------------------------------------
//[DeletePointer]
//ポインターをdeleteし、NULLを代入する
//引数1: 削除するポインタ(参照)
//引数2: 配列かどうか
template<class T>
inline void DeletePointer(T *& pt, const bool isArray)
{
//delete
if (IS_FALSE(isArray)) delete pt;
else delete[] pt;
pt = nullptr; //NULL代入
}
//----------------------------------------------------------------------------------
//[DeletePointer]
//ポインターをdeleteし、NULLを代入する
//※配列でない場合のみの対応, 配列はオーバーロードかDeleteArrayPointer
//引数1: 削除するポインタ(参照)
template<class T>
inline void DeletePointer(T *& pt)
{
delete pt; //delete
pt = nullptr; //NULL代入
}
//----------------------------------------------------------------------------------
//[DeleteArrayPointer]
//ポインターをdeleteし、NULLを代入する
//※配列の場合のみの対応, 配列でない場合はDeletePointer
//引数1: 削除するポインタ(参照)
template<class T>
inline void DeleteArrayPointer(T *& pt)
{
delete[] pt; //delete
pt = nullptr; //NULL代入
}
//----------------------------------------------------------------------------------
//[DeletePointer]
//ポインターをdeleteし、リストをクリアする
//※要素にnewしたポインタは単体であること
//引数1: 削除するポインタリスト(参照)
template<class T>
inline void DeletePointer(std::vector<T*>& pt)
{
for (T*& t : pt) delete t;
pt.clear();
}
//----------------------------------------------------------------------------------
//[DeletePointer]
//ポインターをdeleteし、リストをクリアする
//※要素にnewしたポインタは単体であること
//引数1: 削除するポインタリスト(参照)
template<class T>
void DeletePointer(std::deque<T*>& pt)
{
for (T*& t : pt) delete t;
pt.clear();
}
//----------------------------------------------------------------------------------
//[DeletePointer]
//ポインターをdeleteし、リストをクリアする
//※要素にnewしたポインタは単体であること
//引数1: 削除するポインタリスト(参照)
template<class T>
inline void DeletePointer(std::list<T*>& pt)
{
for (T*& t : pt) delete t;
pt.clear();
}
//----------------------------------------------------------------------------------
//[DeletePointer]
//ポインターをdeleteし、リストをクリアする
//※要素にnewしたポインタは単体であること
//引数1: 削除するポインタリスト(参照)
template<class T>
inline void DeletePointer(std::map<T, T*>& pt)
{
for (T*& t : pt) delete t;
pt.clear();
}
}
}
#endif // !SGFRAMEWORK_HEADER_DELETE_POINTER_HPP_ |
0764e682e0b6a2c8ca0379bbc61dd3a94495970d | 6d8c5e578ba64574257e229ede28d7ac3817ea44 | /pos/Src/TransactionUtility.hpp | c09838915603bfbf5a6a76ec7c133ff235e6e1a3 | [] | no_license | suyuti/Hypercom | 0771b4a1a88fdf0077799de6fb9146ae4884c998 | fca325792378f83008d19f9f0f577e3f2ed6cb83 | refs/heads/master | 2021-01-13T01:28:46.126789 | 2015-02-26T20:39:25 | 2015-02-26T20:39:25 | 31,387,832 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,559 | hpp | TransactionUtility.hpp | //=============================================================================
// Company:
// Hypercom Inc
//
// Product:
// Hypercom Foundation Classes
// (c) Copyright 2006
//
// File Name:
// TransactionUtility.hpp
//
//
// File Contents:
// Declaration of the class TransactionUtility
//
//=============================================================================
#if !defined(_TRANSACTIONUTILITY_HPP_)
#define _TRANSACTIONUTILITY_HPP_
#if defined(__GNUC__)
#pragma interface
#endif
#include <compiler.h>
#include <HString.hpp>
#include <HypCOptions.hpp>
#include <HypCTransactionData.hpp>
#include <HypCTransactionStep.hpp>
#include <HypCPCL.hpp>
//=============================================================================
// Public defines and typedefs
//=============================================================================
const char * const LastReceiptFile = "D:\\lastprint.bin";
//=============================================================================
// Forward definitions
//=============================================================================
enum Exec_Action;
class HypCTransactionManager;
class HypCApplication;
class HypCJournal;
class HypCPOSConfig;
class HypCPrinter;
class HypCTransactionStepFactory;
//=============================================================================
//!
//! \brief
//! Commonly used transaction utilities.
//!
//! A service class that implements some Hyperware-specific functions of
//! HypCTransaction class. The class is used by high-level transaction
//! classes (really, by their steps).
//!
//! \sa
//! HypCTransaction
//!
//=============================================================================
class TransactionUtility
{
//=============================================================================
// Member structures, enumerations, and class definitions
//=============================================================================
public:
//! The transaction record is data tagged by its name.
typedef HypCTransactionData HypCTransRecord;
//=============================================================================
// Member functions
//=============================================================================
public:
//! Check attribute
static bool IsAttributeSet( HypCTransRecord& transRecord, int AttributeID );
//! Is this transaction processed offline
static bool Offline( HypCTransRecord& transRecord );
//! Is total amount below floor limit
static bool BelowFloorLimit( HypCTransRecord& transRecord,
HypCPOSConfig& posConfig );
//! Is the expiration date valid
static bool ValidExpirationDate( HypCTransaction& trans, HypCPOSConfig& posConfig );
//! Set the attributes associated with this transaction
static void SetAttribute( HypCTransaction& trans, int AttributeID );
//! print using the specified script
static void PrintReceipt( HypCPCL* pPCL, HypCTransaction& trans,
const char* receipt, bool save = false );
protected:
private:
//! Prohibit this class from being copied...
TransactionUtility ( const TransactionUtility& rhs );
//! Prohibit this class from being copied...
TransactionUtility& operator= ( const TransactionUtility& rhs );
//=============================================================================
// Member variables
//=============================================================================
private:
};
// TransactionUtility
#endif // #if !defined(_TRANSACTIONUTILITY_HPP_)
|
99b086517fa281b423362a21de54a488854c4279 | 5271bbc481638119722568b9ab0f34f5b561554c | /webserviceDay2/webserviceDay2.ino | 613573b05942d7fd49a16a67b6e93a69ff34ef6e | [] | no_license | pritambuzz/Internet-of-things | a5e6dc5b97b2c1317a28dcbd7a36ccf08655cd1b | c284b8771197153b31c035e49e9accb2c1c6ad12 | refs/heads/master | 2020-06-01T03:22:35.436992 | 2019-06-07T02:28:21 | 2019-06-07T02:28:21 | 190,614,058 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 12,565 | ino | webserviceDay2.ino | #include <dht11.h>
#include<LiquidCrystal.h> //include LCD library to work with LCD display
#include <SoftwareSerial.h>
SoftwareSerial WiFi_Serial(3, 4); //WiFi module connected to pins 3-Rx, 4-Tx
LiquidCrystal lcd(8, 9, 10, 11, 12, 13); //LCD connected to pins RS-En, E-Rs, 10-D4, 11-D5, 12-D6, 13-D7
/*==========================================================================================*/
/*CHANGE THE PARAMETERS BELOW ACCORDING TO YOUR DEVICE INFORMATION CREATED ON AXELTA OSMOSIS*/
/*==========================================================================================*/
#define Device_No "WKSP-01"
#define client "Workshop"
#define Device_Type "SAM"
#define Device_Key "LUJPIOJV7L5NHCWQ1F4J"
#define Node_No "012"
/*==========================================================================================*/
#define SSID "Tenda_52E3C0" //Your WiFi username
#define PASS "pritam@1234567" //Your WiFi Password
/*==========================================================================================*/
#define DST_IP "52.26.112.134" //axelta.com URL / IP address
int R = 5; // REED SWITCH
int P = 6; // POWER
int X = 7; // PIR
int T = A2; // TEMPERATURE - A2 has already been defined as Analog Pin 2 in
int H = A5; //HUMIDITY
int L = A4; //LIGHT
int CNT = 7;
float CELSIUS, HUM, LIGHT;
dht11 DHT11;
int i = 1;
int Start_chck = 0;
/*==========================================================================================*/
/* SETUP FUNCTION */
/*==========================================================================================*/
void setup()
{
Serial.begin(115200); // Begin serial monitor to receive 115200 bits per second (BAUD RATE)
lcd.begin(16, 2);
WiFi_Serial.begin(115200);
WiFi_Serial.println("AT+UART_DEF=9600,8,1,0,0"); // set WiFi Send/Receive from 115200 bits per second (BAUD RATE) to 9600 bits per second
delay(2000);
WiFi_Serial.begin(9600); // Begin serial monitor to receive 9600 bits per second (BAUD RATE)
WiFi_Serial.println("ATE0");
delay(200);
WiFi_Serial.println("AT+CWQAP"); // Disconnect from previous network connections
delay(500);
pinMode(P, INPUT);
pinMode(R, INPUT);
pinMode(X, INPUT);
}
/*==========================================================================================*/
/* FUNCTION TO CHECK WIFI Module CONNECTED TO ARDUINO BOARD */
/*==========================================================================================*/
void WIFI_Check()
{
WiFi_Serial.println("AT"); // send a Attention command
delay(500);
if (WiFi_Serial.available())
{
if (WiFi_Serial.find("OK")) // check with expected output
{
Serial.println("WIFI PLUGGED ON TO THE BOARD..!");
Serial.println();
Serial.println();
WiFi_Serial.println("AT+CWMODE=1"); //set mode to client mode
delay(500);
Start_chck = 1;
i = 1;
}
}
else
{
Serial.println("WIFI NOT PLUGGED..!");
Serial.println();
Serial.println("PLUG IN YOUR WIFI CHIP");
Serial.println();
Serial.println();
}
}
/*==========================================================================================*/
/* FUNCTION TO CHECK WIFI MODULE CONNECTED TO WIFI NETWORK */
/*==========================================================================================*/
void connectWiFi()
{
WiFi_Serial.println("AT+CWJAP?"); //check if WIFI connected to any WiFi network
delay(5000);
if (WiFi_Serial.available())
{
if (WiFi_Serial.find("No AP")) //we receive reponse "No AP" when not connected to any network
{
Serial.println("NOT CONNECTED TO WIFI NETWORK");
Serial.println();
Serial.println();
Serial.println("Trying to Connect to WiFi Network");
String cmd = "AT+CWJAP=\""; // connected to specified network passing mentioned WiFi username and password
cmd += SSID;
cmd += "\",\"";
cmd += PASS;
cmd += "\"";
WiFi_Serial.println(cmd);
Serial.println(cmd);
delay(5000);
if (WiFi_Serial.available())
{
String RES_input = "";
while (WiFi_Serial.available()) // read the data into a variable as long as the
{
RES_input += (char)WiFi_Serial.read();
}
Serial.println(RES_input);
if (WiFi_Serial.find("WIFI CONNECTED"))
{
Serial.println("CONNECTED TO WIFI NETWORK..!");
}
}
}
else
{
lcd.clear();
lcd.print("CONNECTED TO");
lcd.setCursor(0, 1);
lcd.print("WIFI NETWORK..!!");
Serial.println("CONNECTED TO WIFI NETWORK..!");
Serial.println();
Serial.println();
post();
i = 0;
}
}
}
/*==========================================================================================*/
/* FUNCTION TO GET TEMPERATURE SENSOR OUTPUT */
/*==========================================================================================*/
void TEMPERATURE()
{
Serial.print("Geeting Temp\t");
lcd.clear();
int value_temp = analogRead(T); //Read analog value of temperature sensor output from pin A2
delay(10);
value_temp = analogRead(T);
delay(10);
float millivolts_temp = (value_temp / 1023.0) * 5000; //convert it to milli volts output ([actual temperature output from sensor] * [Input voltage (5V = 5000mV)] / [Resolution of ADC 2^10 = 1024])
CELSIUS = millivolts_temp / 10;
lcd.setCursor(0, 0);
lcd.print("T:");
lcd.print(CELSIUS);
Serial.print("T:\t");
Serial.print(CELSIUS); Serial.print("\t");
}
/*==========================================================================================*/
/* FUNCTION TO GET HUMIDITY SENSOR OUTPUT */
/*==========================================================================================*/
void HUMIDITY()
{
Serial.print("Getting Hum ");
int chk = DHT11.read(H);
HUM = DHT11.humidity;
lcd.setCursor(9, 0);
lcd.print("H:");
lcd.print(HUM);
Serial.print("H: ");
Serial.print(HUM); Serial.print("\t");
}
/*==========================================================================================*/
/* FUNCTION TO GET LDR SENSOR OUTPUT */
/*==========================================================================================*/
void LIG()
{
Serial.print("Getting Lig ");
int value_lig = analogRead(L);
delay(10);
value_lig = analogRead(L);
float volts_lig = (value_lig / 1023.0) * 5;
LIGHT = 500/(4*((5-volts_lig)/volts_lig)); // calculate the Lux = 500/[R1 * ((Vin - Vsense)/Vsense)]
lcd.setCursor(0, 1);
lcd.print("L:");
lcd.print(LIGHT);
Serial.print("L: ");
Serial.print(LIGHT); Serial.println("\t");
delay(2000);
lcd.clear();
}
/*==========================================================================================*/
/* FUNCTION TO GET POWER SENSOR OUTPUT */
/*==========================================================================================*/
void POWER()
{
Serial.print("PWR STATUS\t");
if (digitalRead(P) == LOW) // if output form sensor is '0' then print NO power
{
lcd.setCursor(0, 0);
lcd.print("P:OFF");
Serial.print("P:OFF"); Serial.print("\t");
}
else
{
lcd.setCursor(0, 0);
lcd.print("P:ON");
Serial.print("P:ON"); Serial.print("\t");
}
}
/*==========================================================================================*/
/* FUNCTION TO GET REED SWITCH SENSOR OUTPUT */
/*==========================================================================================*/
void REED()
{
Serial.print("REED STATUS ");
if (digitalRead(R) == LOW)
{
lcd.setCursor(6, 0);
lcd.print("R:OPEN");
Serial.print("R:OPEN"); Serial.print("\t");
}
else
{
lcd.setCursor(6, 0);
lcd.print("R:CLOSE");
Serial.print("R:CLOSE"); Serial.print("\t");
}
}
/*==========================================================================================*/
/* FUNCTION TO GET PIR SENSOR OUTPUT */
/*==========================================================================================*/
void PIR()
{
Serial.print("PIR STATUS ");
if (digitalRead(X) == LOW)
{
lcd.setCursor(0, 1);
lcd.print("X:YES");
Serial.print("X:YES"); Serial.print("\t");
}
else
{
lcd.setCursor(0, 1);
lcd.print("X:NO ");
Serial.print("X:NO"); Serial.println("\t");
}
delay(2000);
}
/*==========================================================================================*/
/* FUNCTION TO POST THE DATA TO AXELTA OSMOSIS CLOUD PLATFORM */
/*==========================================================================================*/
void post()
{
String data; //form the JSON string with the available sensor data
data += "{\"device_no\":\"" + String(Device_No) + "\",\"client\":\"" + String(client) + "\",\"device_type\":\"" + String(Device_Type) + "\",\"device_key\":\"" + String(Device_Key) + "\",\"node_no\":\"" + String(Node_No) + "\",\"TEMP\":\"";
data += String(CELSIUS);
data += "\",\"HUM\":\"";
data += String(HUM);
data += "\",\"LDR\":\"";
data += String(LIGHT);
data += "\",\"POWER\":\"";
if (digitalRead(P) == LOW)
{
data += "ON.";
}
else
{
data += "OFF";
}
data += "\",\"DOOR\":\"";
if (digitalRead(R) == LOW)
{
data += "OPEN.";
}
else
{
data += "CLOSE";
}
data += "\"}";
String uri = "/WebServicesTraining/rest/service/storeData";
String port = "8080";
String http_req = "POST " + uri + " HTTP/1.1\r\n" + "Host: " + DST_IP + ":" + port + "\r\n" + "Accept: *" + "/" + "*\r\n" + "Content-Length: " + data.length() + "\r\n" ;
String http_req1 = "Content-Type: application/json\r\n\r\n" ; // form the headder to post the WiFi data
Serial.println(data);
Serial.println(http_req);
Serial.println(http_req1);
int len_hedder1 = (http_req.length());
int len_hedder2 = (http_req1.length());
int len_data = data.length();
int Total_req_data_Length = (len_hedder1 + len_hedder2 + len_data); // total length of headder and data
Serial.println();
String cmd = "AT+CIPSTART=\"TCP\",\""; // open the tcp port for Axelta Osmosis
cmd += DST_IP;
cmd += "\",8080";
Serial.println(cmd);
WiFi_Serial.println(cmd);
delay(5000);
if (WiFi_Serial.available())
{
String RES_input = "";
while (WiFi_Serial.available()) // read the data into a variable as long as the
{
RES_input += (char)WiFi_Serial.read();
}
Serial.println(RES_input);
if (WiFi_Serial.find("CONNECT"));
Serial.print("AT+CIPSEND="); // start sending data to opened TCP port
WiFi_Serial.print("AT+CIPSEND=");
WiFi_Serial.println(Total_req_data_Length); //specify the total length of data
delay(100);
if (WiFi_Serial.available());
RES_input = "";
while (WiFi_Serial.available()) // read the data into a variable as long as the
{
RES_input += (char)WiFi_Serial.read();
}
Serial.println(RES_input);
{
if (WiFi_Serial.find(">")); // when ">" is response from WiFi that means it is ready to receive the total length of data
{
WiFi_Serial.print(http_req); //Send headder first
WiFi_Serial.print(http_req1);
WiFi_Serial.print(data); //later send data
delay(2000);
}
}
if (WiFi_Serial.available()) // wait for response and print the same to terminal
{
delay(100);
String RES_input = "";
while (WiFi_Serial.available()) // read the data into a variable as long as the
{
RES_input += (char)WiFi_Serial.read();
}
lcd.clear();
Serial.println(RES_input);
Serial.println();
Serial.println();
}
}
}
void loop()
{
lcd.clear();
lcd.setCursor(0, 0);
lcd.print("Axetla Systems");
delay(1000);
lcd.clear();
while (1)
{
if (CNT < 1) //CNT for Time Delay
{
if (Start_chck == 0)
{
WIFI_Check();
if (i == 1)
{
connectWiFi();
}
}
else
{
CNT = 7;
Start_chck = 0;
}
}
TEMPERATURE();
HUMIDITY();
LIG();
POWER();
REED();
PIR();
Serial.println();
CNT--;
}
}
|
c36c8114148290349cd04fb610e5da30be144a82 | 09eaf2b22ad39d284eea42bad4756a39b34da8a2 | /ojs/icpc/4643/4643.cpp | fcb6b8c1030873bc6ae74f603ec546b096662d1a | [] | no_license | victorsenam/treinos | 186b70c44b7e06c7c07a86cb6849636210c9fc61 | 72a920ce803a738e25b6fc87efa32b20415de5f5 | refs/heads/master | 2021-01-24T05:58:48.713217 | 2018-10-14T13:51:29 | 2018-10-14T13:51:29 | 41,270,007 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,403 | cpp | 4643.cpp | #include <bits/stdc++.h>
using namespace std;
typedef unsigned long long int ull;
typedef long long int ll;
#define DEBUG(...) {fprintf(stderr, __VA_ARGS__);}
const int N = 200;
const int K = 13;
const int M = (1<<11);
char memo[M][M];
int visi[M][M], turn;
char it[N][K];
int n, m;
string prt (int ms) {
return bitset<K>(ms).to_string();
}
char pd (int wh, int an) {
char & me = memo[wh][an];
if (visi[wh][an] == turn) return me;
visi[wh][an] = turn;
me = K;
int cnt = 0;
int ms;
int j;
for (int i = 0; i < n && cnt <= 1; i++) {
ms = 1;
for (j = 0; j < m; j++, (ms<<=1)) {
if (!(wh&ms)) continue;
if (!!(an&ms) != (it[i][j]-'0')) break;
}
cnt += (j == m);
}
if (cnt <= 1) {
//DEBUG("(%s,%s) defined\n", prt(wh).c_str(), prt(an).c_str());
me = 0;
} else {
ms = 1;
for (j = 0; j < m; j++, (ms<<=1)) {
if (wh&ms) continue;
char loc = max(pd((wh|ms), an), pd((wh|ms), (an|ms)))+1;
me = min(me, loc);
//if (me == loc) DEBUG("(%s,%s) add %d\n", prt(wh).c_str(), prt(an).c_str(), j);
}
}
return me;
}
int main () {
while (scanf("%d %d", &m, &n) != EOF && (n || m)) {
turn++;
for (int i = 0; i < n; i++)
scanf(" %s", it[i]);
printf("%d\n", pd(0, 0));
}
}
|
fa9b6b9c1707ef2ae4e236e57d05a1fa88d38bbd | 45874c847c5a2fc4e89e05a7fc8ad9b63d8c4860 | /libclc/generic/include/clc/integer/gentype.inc | 032bdc0cadbaf00e4b8c8845d63a93a4a69a548f | [
"NCSA",
"Apache-2.0",
"LLVM-exception",
"MIT",
"BSD-3-Clause",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | intel/llvm | 2f023cefec793a248d8a237267410f5e288116c5 | a3d10cf63ddbdcc23712c45afd1b6b0a2ff5b190 | refs/heads/sycl | 2023-08-24T18:53:49.800759 | 2023-08-24T17:38:35 | 2023-08-24T17:38:35 | 166,008,577 | 1,050 | 735 | NOASSERTION | 2023-09-14T20:35:07 | 2019-01-16T09:05:33 | null | UTF-8 | C++ | false | false | 18,491 | inc | gentype.inc | //===----------------------------------------------------------------------===//
//
// 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
//
//===----------------------------------------------------------------------===//
//These 2 defines only change when switching between data sizes or base types to
//keep this file manageable.
#define __CLC_GENSIZE 8
#define __CLC_SCALAR_GENTYPE char
#define __CLC_GEN_S
#define __CLC_GENTYPE char
#define __CLC_SPIRV_INTERFACE_GENTYPE schar
#define __CLC_U_GENTYPE uchar
#define __CLC_S_GENTYPE char
#define __CLC_SCALAR 1
#define __CLC_VECSIZE
#include __CLC_BODY
#undef __CLC_VECSIZE
#undef __CLC_SCALAR
#undef __CLC_GENTYPE
#undef __CLC_U_GENTYPE
#undef __CLC_S_GENTYPE
#undef __CLC_SPIRV_INTERFACE_GENTYPE
#define __CLC_GENTYPE char2
#define __CLC_SPIRV_INTERFACE_GENTYPE schar2
#define __CLC_U_GENTYPE uchar2
#define __CLC_S_GENTYPE char2
#define __CLC_VECSIZE 2
#include __CLC_BODY
#undef __CLC_VECSIZE
#undef __CLC_GENTYPE
#undef __CLC_U_GENTYPE
#undef __CLC_S_GENTYPE
#undef __CLC_SPIRV_INTERFACE_GENTYPE
#define __CLC_GENTYPE char3
#define __CLC_SPIRV_INTERFACE_GENTYPE schar3
#define __CLC_U_GENTYPE uchar3
#define __CLC_S_GENTYPE char3
#define __CLC_VECSIZE 3
#include __CLC_BODY
#undef __CLC_VECSIZE
#undef __CLC_GENTYPE
#undef __CLC_U_GENTYPE
#undef __CLC_S_GENTYPE
#undef __CLC_SPIRV_INTERFACE_GENTYPE
#define __CLC_GENTYPE char4
#define __CLC_SPIRV_INTERFACE_GENTYPE schar4
#define __CLC_U_GENTYPE uchar4
#define __CLC_S_GENTYPE char4
#define __CLC_VECSIZE 4
#include __CLC_BODY
#undef __CLC_VECSIZE
#undef __CLC_GENTYPE
#undef __CLC_U_GENTYPE
#undef __CLC_S_GENTYPE
#undef __CLC_SPIRV_INTERFACE_GENTYPE
#define __CLC_GENTYPE char8
#define __CLC_SPIRV_INTERFACE_GENTYPE schar8
#define __CLC_U_GENTYPE uchar8
#define __CLC_S_GENTYPE char8
#define __CLC_VECSIZE 8
#include __CLC_BODY
#undef __CLC_VECSIZE
#undef __CLC_GENTYPE
#undef __CLC_U_GENTYPE
#undef __CLC_S_GENTYPE
#undef __CLC_SPIRV_INTERFACE_GENTYPE
#define __CLC_GENTYPE char16
#define __CLC_SPIRV_INTERFACE_GENTYPE schar16
#define __CLC_U_GENTYPE uchar16
#define __CLC_S_GENTYPE char16
#define __CLC_VECSIZE 16
#include __CLC_BODY
#undef __CLC_VECSIZE
#undef __CLC_GENTYPE
#undef __CLC_U_GENTYPE
#undef __CLC_S_GENTYPE
#undef __CLC_SPIRV_INTERFACE_GENTYPE
#ifndef __CLC_NO_SCHAR
#undef __CLC_GEN_S
#undef __CLC_SCALAR_GENTYPE
#define __CLC_SCALAR_GENTYPE schar
#define __CLC_GEN_S
#define __CLC_GENTYPE schar
#define __CLC_SPIRV_INTERFACE_GENTYPE schar
#define __CLC_U_GENTYPE uchar
#define __CLC_S_GENTYPE schar
#define __CLC_SCALAR 1
#define __CLC_VECSIZE
#include __CLC_BODY
#undef __CLC_VECSIZE
#undef __CLC_SCALAR
#undef __CLC_GENTYPE
#undef __CLC_U_GENTYPE
#undef __CLC_S_GENTYPE
#undef __CLC_SPIRV_INTERFACE_GENTYPE
#define __CLC_GENTYPE schar2
#define __CLC_SPIRV_INTERFACE_GENTYPE schar2
#define __CLC_U_GENTYPE uchar2
#define __CLC_S_GENTYPE schar2
#define __CLC_VECSIZE 2
#include __CLC_BODY
#undef __CLC_VECSIZE
#undef __CLC_GENTYPE
#undef __CLC_U_GENTYPE
#undef __CLC_S_GENTYPE
#undef __CLC_SPIRV_INTERFACE_GENTYPE
#define __CLC_GENTYPE schar3
#define __CLC_SPIRV_INTERFACE_GENTYPE schar3
#define __CLC_U_GENTYPE uchar3
#define __CLC_S_GENTYPE schar3
#define __CLC_VECSIZE 3
#include __CLC_BODY
#undef __CLC_VECSIZE
#undef __CLC_GENTYPE
#undef __CLC_U_GENTYPE
#undef __CLC_S_GENTYPE
#undef __CLC_SPIRV_INTERFACE_GENTYPE
#define __CLC_GENTYPE schar4
#define __CLC_SPIRV_INTERFACE_GENTYPE schar4
#define __CLC_U_GENTYPE uchar4
#define __CLC_S_GENTYPE schar4
#define __CLC_VECSIZE 4
#include __CLC_BODY
#undef __CLC_VECSIZE
#undef __CLC_GENTYPE
#undef __CLC_U_GENTYPE
#undef __CLC_S_GENTYPE
#undef __CLC_SPIRV_INTERFACE_GENTYPE
#define __CLC_GENTYPE schar8
#define __CLC_SPIRV_INTERFACE_GENTYPE schar8
#define __CLC_U_GENTYPE uchar8
#define __CLC_S_GENTYPE schar8
#define __CLC_VECSIZE 8
#include __CLC_BODY
#undef __CLC_VECSIZE
#undef __CLC_GENTYPE
#undef __CLC_U_GENTYPE
#undef __CLC_S_GENTYPE
#undef __CLC_SPIRV_INTERFACE_GENTYPE
#define __CLC_GENTYPE schar16
#define __CLC_SPIRV_INTERFACE_GENTYPE schar16
#define __CLC_U_GENTYPE uchar16
#define __CLC_S_GENTYPE schar16
#define __CLC_VECSIZE 16
#include __CLC_BODY
#undef __CLC_VECSIZE
#undef __CLC_GENTYPE
#undef __CLC_U_GENTYPE
#undef __CLC_S_GENTYPE
#undef __CLC_SPIRV_INTERFACE_GENTYPE
#endif // __CLC_NO_SCHAR
#undef __CLC_SCALAR_GENTYPE
#define __CLC_SCALAR_GENTYPE uchar
#undef __CLC_GEN_S
#define __CLC_GEN_U
#define __CLC_GENTYPE uchar
#define __CLC_SPIRV_INTERFACE_GENTYPE uchar
#define __CLC_U_GENTYPE uchar
#define __CLC_S_GENTYPE schar
#define __CLC_SCALAR 1
#define __CLC_VECSIZE
#include __CLC_BODY
#undef __CLC_VECSIZE
#undef __CLC_SCALAR
#undef __CLC_GENTYPE
#undef __CLC_U_GENTYPE
#undef __CLC_S_GENTYPE
#undef __CLC_SPIRV_INTERFACE_GENTYPE
#define __CLC_GENTYPE uchar2
#define __CLC_SPIRV_INTERFACE_GENTYPE uchar2
#define __CLC_U_GENTYPE uchar2
#define __CLC_S_GENTYPE schar2
#define __CLC_VECSIZE 2
#include __CLC_BODY
#undef __CLC_VECSIZE
#undef __CLC_GENTYPE
#undef __CLC_U_GENTYPE
#undef __CLC_S_GENTYPE
#undef __CLC_SPIRV_INTERFACE_GENTYPE
#define __CLC_GENTYPE uchar3
#define __CLC_SPIRV_INTERFACE_GENTYPE uchar3
#define __CLC_U_GENTYPE uchar3
#define __CLC_S_GENTYPE schar3
#define __CLC_VECSIZE 3
#include __CLC_BODY
#undef __CLC_VECSIZE
#undef __CLC_GENTYPE
#undef __CLC_U_GENTYPE
#undef __CLC_S_GENTYPE
#undef __CLC_SPIRV_INTERFACE_GENTYPE
#define __CLC_GENTYPE uchar4
#define __CLC_SPIRV_INTERFACE_GENTYPE uchar4
#define __CLC_U_GENTYPE uchar4
#define __CLC_S_GENTYPE schar4
#define __CLC_VECSIZE 4
#include __CLC_BODY
#undef __CLC_VECSIZE
#undef __CLC_GENTYPE
#undef __CLC_U_GENTYPE
#undef __CLC_S_GENTYPE
#undef __CLC_SPIRV_INTERFACE_GENTYPE
#define __CLC_GENTYPE uchar8
#define __CLC_SPIRV_INTERFACE_GENTYPE uchar8
#define __CLC_U_GENTYPE uchar8
#define __CLC_S_GENTYPE schar8
#define __CLC_VECSIZE 8
#include __CLC_BODY
#undef __CLC_VECSIZE
#undef __CLC_GENTYPE
#undef __CLC_U_GENTYPE
#undef __CLC_S_GENTYPE
#undef __CLC_SPIRV_INTERFACE_GENTYPE
#define __CLC_GENTYPE uchar16
#define __CLC_SPIRV_INTERFACE_GENTYPE uchar16
#define __CLC_U_GENTYPE uchar16
#define __CLC_S_GENTYPE schar16
#define __CLC_VECSIZE 16
#include __CLC_BODY
#undef __CLC_VECSIZE
#undef __CLC_GENTYPE
#undef __CLC_U_GENTYPE
#undef __CLC_S_GENTYPE
#undef __CLC_SPIRV_INTERFACE_GENTYPE
#undef __CLC_GENSIZE
#define __CLC_GENSIZE 16
#undef __CLC_SCALAR_GENTYPE
#define __CLC_SCALAR_GENTYPE short
#undef __CLC_GEN_U
#define __CLC_GEN_S
#define __CLC_GENTYPE short
#define __CLC_SPIRV_INTERFACE_GENTYPE short
#define __CLC_U_GENTYPE ushort
#define __CLC_S_GENTYPE short
#define __CLC_SCALAR 1
#define __CLC_VECSIZE
#include __CLC_BODY
#undef __CLC_VECSIZE
#undef __CLC_SCALAR
#undef __CLC_GENTYPE
#undef __CLC_U_GENTYPE
#undef __CLC_S_GENTYPE
#undef __CLC_SPIRV_INTERFACE_GENTYPE
#define __CLC_GENTYPE short2
#define __CLC_SPIRV_INTERFACE_GENTYPE short2
#define __CLC_U_GENTYPE ushort2
#define __CLC_S_GENTYPE short2
#define __CLC_VECSIZE 2
#include __CLC_BODY
#undef __CLC_VECSIZE
#undef __CLC_GENTYPE
#undef __CLC_U_GENTYPE
#undef __CLC_S_GENTYPE
#undef __CLC_SPIRV_INTERFACE_GENTYPE
#define __CLC_GENTYPE short3
#define __CLC_SPIRV_INTERFACE_GENTYPE short3
#define __CLC_U_GENTYPE ushort3
#define __CLC_S_GENTYPE short3
#define __CLC_VECSIZE 3
#include __CLC_BODY
#undef __CLC_VECSIZE
#undef __CLC_GENTYPE
#undef __CLC_U_GENTYPE
#undef __CLC_S_GENTYPE
#undef __CLC_SPIRV_INTERFACE_GENTYPE
#define __CLC_GENTYPE short4
#define __CLC_SPIRV_INTERFACE_GENTYPE short4
#define __CLC_U_GENTYPE ushort4
#define __CLC_S_GENTYPE short4
#define __CLC_VECSIZE 4
#include __CLC_BODY
#undef __CLC_VECSIZE
#undef __CLC_GENTYPE
#undef __CLC_U_GENTYPE
#undef __CLC_S_GENTYPE
#undef __CLC_SPIRV_INTERFACE_GENTYPE
#define __CLC_GENTYPE short8
#define __CLC_SPIRV_INTERFACE_GENTYPE short8
#define __CLC_U_GENTYPE ushort8
#define __CLC_S_GENTYPE short8
#define __CLC_VECSIZE 8
#include __CLC_BODY
#undef __CLC_VECSIZE
#undef __CLC_GENTYPE
#undef __CLC_U_GENTYPE
#undef __CLC_S_GENTYPE
#undef __CLC_SPIRV_INTERFACE_GENTYPE
#define __CLC_GENTYPE short16
#define __CLC_SPIRV_INTERFACE_GENTYPE short16
#define __CLC_U_GENTYPE ushort16
#define __CLC_S_GENTYPE short16
#define __CLC_VECSIZE 16
#include __CLC_BODY
#undef __CLC_VECSIZE
#undef __CLC_GENTYPE
#undef __CLC_U_GENTYPE
#undef __CLC_S_GENTYPE
#undef __CLC_SPIRV_INTERFACE_GENTYPE
#undef __CLC_SCALAR_GENTYPE
#define __CLC_SCALAR_GENTYPE ushort
#undef __CLC_GEN_S
#define __CLC_GEN_U
#define __CLC_GENTYPE ushort
#define __CLC_SPIRV_INTERFACE_GENTYPE ushort
#define __CLC_U_GENTYPE ushort
#define __CLC_S_GENTYPE short
#define __CLC_SCALAR 1
#define __CLC_VECSIZE
#include __CLC_BODY
#undef __CLC_VECSIZE
#undef __CLC_SCALAR
#undef __CLC_GENTYPE
#undef __CLC_U_GENTYPE
#undef __CLC_S_GENTYPE
#undef __CLC_SPIRV_INTERFACE_GENTYPE
#define __CLC_GENTYPE ushort2
#define __CLC_SPIRV_INTERFACE_GENTYPE ushort2
#define __CLC_U_GENTYPE ushort2
#define __CLC_S_GENTYPE short2
#define __CLC_VECSIZE 2
#include __CLC_BODY
#undef __CLC_VECSIZE
#undef __CLC_GENTYPE
#undef __CLC_U_GENTYPE
#undef __CLC_S_GENTYPE
#undef __CLC_SPIRV_INTERFACE_GENTYPE
#define __CLC_GENTYPE ushort3
#define __CLC_SPIRV_INTERFACE_GENTYPE ushort3
#define __CLC_U_GENTYPE ushort3
#define __CLC_S_GENTYPE short3
#define __CLC_VECSIZE 3
#include __CLC_BODY
#undef __CLC_VECSIZE
#undef __CLC_GENTYPE
#undef __CLC_U_GENTYPE
#undef __CLC_S_GENTYPE
#undef __CLC_SPIRV_INTERFACE_GENTYPE
#define __CLC_GENTYPE ushort4
#define __CLC_SPIRV_INTERFACE_GENTYPE ushort4
#define __CLC_U_GENTYPE ushort4
#define __CLC_S_GENTYPE short4
#define __CLC_VECSIZE 4
#include __CLC_BODY
#undef __CLC_VECSIZE
#undef __CLC_GENTYPE
#undef __CLC_U_GENTYPE
#undef __CLC_S_GENTYPE
#undef __CLC_SPIRV_INTERFACE_GENTYPE
#define __CLC_GENTYPE ushort8
#define __CLC_SPIRV_INTERFACE_GENTYPE ushort8
#define __CLC_U_GENTYPE ushort8
#define __CLC_S_GENTYPE short8
#define __CLC_VECSIZE 8
#include __CLC_BODY
#undef __CLC_VECSIZE
#undef __CLC_GENTYPE
#undef __CLC_U_GENTYPE
#undef __CLC_S_GENTYPE
#undef __CLC_SPIRV_INTERFACE_GENTYPE
#define __CLC_GENTYPE ushort16
#define __CLC_SPIRV_INTERFACE_GENTYPE ushort16
#define __CLC_U_GENTYPE ushort16
#define __CLC_S_GENTYPE short16
#define __CLC_VECSIZE 16
#include __CLC_BODY
#undef __CLC_VECSIZE
#undef __CLC_GENTYPE
#undef __CLC_U_GENTYPE
#undef __CLC_S_GENTYPE
#undef __CLC_SPIRV_INTERFACE_GENTYPE
#undef __CLC_GENSIZE
#define __CLC_GENSIZE 32
#undef __CLC_SCALAR_GENTYPE
#define __CLC_SCALAR_GENTYPE int
#undef __CLC_GEN_U
#define __CLC_GEN_S
#define __CLC_GENTYPE int
#define __CLC_SPIRV_INTERFACE_GENTYPE int
#define __CLC_U_GENTYPE uint
#define __CLC_S_GENTYPE int
#define __CLC_SCALAR 1
#define __CLC_VECSIZE
#include __CLC_BODY
#undef __CLC_VECSIZE
#undef __CLC_SCALAR
#undef __CLC_GENTYPE
#undef __CLC_U_GENTYPE
#undef __CLC_S_GENTYPE
#undef __CLC_SPIRV_INTERFACE_GENTYPE
#define __CLC_GENTYPE int2
#define __CLC_SPIRV_INTERFACE_GENTYPE int2
#define __CLC_U_GENTYPE uint2
#define __CLC_S_GENTYPE int2
#define __CLC_VECSIZE 2
#include __CLC_BODY
#undef __CLC_VECSIZE
#undef __CLC_GENTYPE
#undef __CLC_U_GENTYPE
#undef __CLC_S_GENTYPE
#undef __CLC_SPIRV_INTERFACE_GENTYPE
#define __CLC_GENTYPE int3
#define __CLC_SPIRV_INTERFACE_GENTYPE int3
#define __CLC_U_GENTYPE uint3
#define __CLC_S_GENTYPE int3
#define __CLC_VECSIZE 3
#include __CLC_BODY
#undef __CLC_VECSIZE
#undef __CLC_GENTYPE
#undef __CLC_U_GENTYPE
#undef __CLC_S_GENTYPE
#undef __CLC_SPIRV_INTERFACE_GENTYPE
#define __CLC_GENTYPE int4
#define __CLC_SPIRV_INTERFACE_GENTYPE int4
#define __CLC_U_GENTYPE uint4
#define __CLC_S_GENTYPE int4
#define __CLC_VECSIZE 4
#include __CLC_BODY
#undef __CLC_VECSIZE
#undef __CLC_GENTYPE
#undef __CLC_U_GENTYPE
#undef __CLC_S_GENTYPE
#undef __CLC_SPIRV_INTERFACE_GENTYPE
#define __CLC_GENTYPE int8
#define __CLC_SPIRV_INTERFACE_GENTYPE int8
#define __CLC_U_GENTYPE uint8
#define __CLC_S_GENTYPE int8
#define __CLC_VECSIZE 8
#include __CLC_BODY
#undef __CLC_VECSIZE
#undef __CLC_GENTYPE
#undef __CLC_U_GENTYPE
#undef __CLC_S_GENTYPE
#undef __CLC_SPIRV_INTERFACE_GENTYPE
#define __CLC_GENTYPE int16
#define __CLC_SPIRV_INTERFACE_GENTYPE int16
#define __CLC_U_GENTYPE uint16
#define __CLC_S_GENTYPE int16
#define __CLC_VECSIZE 16
#include __CLC_BODY
#undef __CLC_VECSIZE
#undef __CLC_GENTYPE
#undef __CLC_U_GENTYPE
#undef __CLC_S_GENTYPE
#undef __CLC_SPIRV_INTERFACE_GENTYPE
#undef __CLC_SCALAR_GENTYPE
#define __CLC_SCALAR_GENTYPE uint
#undef __CLC_GEN_S
#define __CLC_GEN_U
#define __CLC_GENTYPE uint
#define __CLC_SPIRV_INTERFACE_GENTYPE uint
#define __CLC_U_GENTYPE uint
#define __CLC_S_GENTYPE int
#define __CLC_SCALAR 1
#define __CLC_VECSIZE
#include __CLC_BODY
#undef __CLC_VECSIZE
#undef __CLC_SCALAR
#undef __CLC_GENTYPE
#undef __CLC_U_GENTYPE
#undef __CLC_S_GENTYPE
#undef __CLC_SPIRV_INTERFACE_GENTYPE
#define __CLC_GENTYPE uint2
#define __CLC_SPIRV_INTERFACE_GENTYPE uint2
#define __CLC_U_GENTYPE uint2
#define __CLC_S_GENTYPE int2
#define __CLC_VECSIZE 2
#include __CLC_BODY
#undef __CLC_VECSIZE
#undef __CLC_GENTYPE
#undef __CLC_U_GENTYPE
#undef __CLC_S_GENTYPE
#undef __CLC_SPIRV_INTERFACE_GENTYPE
#define __CLC_GENTYPE uint3
#define __CLC_SPIRV_INTERFACE_GENTYPE uint3
#define __CLC_U_GENTYPE uint3
#define __CLC_S_GENTYPE int3
#define __CLC_VECSIZE 3
#include __CLC_BODY
#undef __CLC_VECSIZE
#undef __CLC_GENTYPE
#undef __CLC_U_GENTYPE
#undef __CLC_S_GENTYPE
#undef __CLC_SPIRV_INTERFACE_GENTYPE
#define __CLC_GENTYPE uint4
#define __CLC_SPIRV_INTERFACE_GENTYPE uint4
#define __CLC_U_GENTYPE uint4
#define __CLC_S_GENTYPE int4
#define __CLC_VECSIZE 4
#include __CLC_BODY
#undef __CLC_VECSIZE
#undef __CLC_GENTYPE
#undef __CLC_U_GENTYPE
#undef __CLC_S_GENTYPE
#undef __CLC_SPIRV_INTERFACE_GENTYPE
#define __CLC_GENTYPE uint8
#define __CLC_SPIRV_INTERFACE_GENTYPE uint8
#define __CLC_U_GENTYPE uint8
#define __CLC_S_GENTYPE int8
#define __CLC_VECSIZE 8
#include __CLC_BODY
#undef __CLC_VECSIZE
#undef __CLC_GENTYPE
#undef __CLC_U_GENTYPE
#undef __CLC_S_GENTYPE
#undef __CLC_SPIRV_INTERFACE_GENTYPE
#define __CLC_GENTYPE uint16
#define __CLC_SPIRV_INTERFACE_GENTYPE uint16
#define __CLC_U_GENTYPE uint16
#define __CLC_S_GENTYPE int16
#define __CLC_VECSIZE 16
#include __CLC_BODY
#undef __CLC_VECSIZE
#undef __CLC_GENTYPE
#undef __CLC_U_GENTYPE
#undef __CLC_S_GENTYPE
#undef __CLC_SPIRV_INTERFACE_GENTYPE
#undef __CLC_GENSIZE
#define __CLC_GENSIZE 64
#undef __CLC_SCALAR_GENTYPE
#define __CLC_SCALAR_GENTYPE long
#undef __CLC_GEN_U
#define __CLC_GEN_S
#define __CLC_GENTYPE long
#define __CLC_SPIRV_INTERFACE_GENTYPE long
#define __CLC_U_GENTYPE ulong
#define __CLC_S_GENTYPE long
#define __CLC_SCALAR 1
#define __CLC_VECSIZE
#include __CLC_BODY
#undef __CLC_VECSIZE
#undef __CLC_SCALAR
#undef __CLC_GENTYPE
#undef __CLC_U_GENTYPE
#undef __CLC_S_GENTYPE
#undef __CLC_SPIRV_INTERFACE_GENTYPE
#define __CLC_GENTYPE long2
#define __CLC_SPIRV_INTERFACE_GENTYPE long2
#define __CLC_U_GENTYPE ulong2
#define __CLC_S_GENTYPE long2
#define __CLC_VECSIZE 2
#include __CLC_BODY
#undef __CLC_VECSIZE
#undef __CLC_GENTYPE
#undef __CLC_U_GENTYPE
#undef __CLC_S_GENTYPE
#undef __CLC_SPIRV_INTERFACE_GENTYPE
#define __CLC_GENTYPE long3
#define __CLC_SPIRV_INTERFACE_GENTYPE long3
#define __CLC_U_GENTYPE ulong3
#define __CLC_S_GENTYPE long3
#define __CLC_VECSIZE 3
#include __CLC_BODY
#undef __CLC_VECSIZE
#undef __CLC_GENTYPE
#undef __CLC_U_GENTYPE
#undef __CLC_S_GENTYPE
#undef __CLC_SPIRV_INTERFACE_GENTYPE
#define __CLC_GENTYPE long4
#define __CLC_SPIRV_INTERFACE_GENTYPE long4
#define __CLC_U_GENTYPE ulong4
#define __CLC_S_GENTYPE long4
#define __CLC_VECSIZE 4
#include __CLC_BODY
#undef __CLC_VECSIZE
#undef __CLC_GENTYPE
#undef __CLC_U_GENTYPE
#undef __CLC_S_GENTYPE
#undef __CLC_SPIRV_INTERFACE_GENTYPE
#define __CLC_GENTYPE long8
#define __CLC_SPIRV_INTERFACE_GENTYPE long8
#define __CLC_U_GENTYPE ulong8
#define __CLC_S_GENTYPE long8
#define __CLC_VECSIZE 8
#include __CLC_BODY
#undef __CLC_VECSIZE
#undef __CLC_GENTYPE
#undef __CLC_U_GENTYPE
#undef __CLC_S_GENTYPE
#undef __CLC_SPIRV_INTERFACE_GENTYPE
#define __CLC_GENTYPE long16
#define __CLC_SPIRV_INTERFACE_GENTYPE long16
#define __CLC_U_GENTYPE ulong16
#define __CLC_S_GENTYPE long16
#define __CLC_VECSIZE 16
#include __CLC_BODY
#undef __CLC_VECSIZE
#undef __CLC_GENTYPE
#undef __CLC_U_GENTYPE
#undef __CLC_S_GENTYPE
#undef __CLC_SPIRV_INTERFACE_GENTYPE
#undef __CLC_SCALAR_GENTYPE
#define __CLC_SCALAR_GENTYPE ulong
#undef __CLC_GEN_S
#define __CLC_GEN_U
#define __CLC_GENTYPE ulong
#define __CLC_SPIRV_INTERFACE_GENTYPE ulong
#define __CLC_U_GENTYPE ulong
#define __CLC_S_GENTYPE long
#define __CLC_SCALAR 1
#define __CLC_VECSIZE
#include __CLC_BODY
#undef __CLC_VECSIZE
#undef __CLC_SCALAR
#undef __CLC_GENTYPE
#undef __CLC_U_GENTYPE
#undef __CLC_S_GENTYPE
#undef __CLC_SPIRV_INTERFACE_GENTYPE
#define __CLC_GENTYPE ulong2
#define __CLC_SPIRV_INTERFACE_GENTYPE ulong2
#define __CLC_U_GENTYPE ulong2
#define __CLC_S_GENTYPE long2
#define __CLC_VECSIZE 2
#include __CLC_BODY
#undef __CLC_VECSIZE
#undef __CLC_GENTYPE
#undef __CLC_U_GENTYPE
#undef __CLC_S_GENTYPE
#undef __CLC_SPIRV_INTERFACE_GENTYPE
#define __CLC_GENTYPE ulong3
#define __CLC_SPIRV_INTERFACE_GENTYPE ulong3
#define __CLC_U_GENTYPE ulong3
#define __CLC_S_GENTYPE long3
#define __CLC_VECSIZE 3
#include __CLC_BODY
#undef __CLC_VECSIZE
#undef __CLC_GENTYPE
#undef __CLC_U_GENTYPE
#undef __CLC_S_GENTYPE
#undef __CLC_SPIRV_INTERFACE_GENTYPE
#define __CLC_GENTYPE ulong4
#define __CLC_SPIRV_INTERFACE_GENTYPE ulong4
#define __CLC_U_GENTYPE ulong4
#define __CLC_S_GENTYPE long4
#define __CLC_VECSIZE 4
#include __CLC_BODY
#undef __CLC_VECSIZE
#undef __CLC_GENTYPE
#undef __CLC_U_GENTYPE
#undef __CLC_S_GENTYPE
#undef __CLC_SPIRV_INTERFACE_GENTYPE
#define __CLC_GENTYPE ulong8
#define __CLC_SPIRV_INTERFACE_GENTYPE ulong8
#define __CLC_U_GENTYPE ulong8
#define __CLC_S_GENTYPE long8
#define __CLC_VECSIZE 8
#include __CLC_BODY
#undef __CLC_VECSIZE
#undef __CLC_GENTYPE
#undef __CLC_U_GENTYPE
#undef __CLC_S_GENTYPE
#undef __CLC_SPIRV_INTERFACE_GENTYPE
#define __CLC_GENTYPE ulong16
#define __CLC_SPIRV_INTERFACE_GENTYPE ulong16
#define __CLC_U_GENTYPE ulong16
#define __CLC_S_GENTYPE long16
#define __CLC_VECSIZE 16
#include __CLC_BODY
#undef __CLC_VECSIZE
#undef __CLC_GENTYPE
#undef __CLC_U_GENTYPE
#undef __CLC_S_GENTYPE
#undef __CLC_SPIRV_INTERFACE_GENTYPE
#undef __CLC_GEN_U
#undef __CLC_CHAR
#undef __CLC_GENSIZE
#undef __CLC_SCALAR_GENTYPE
#undef __CLC_BODY
|
e9654bd4825a764d1ea13890f2958af180f8ec98 | b39efc1753e05829ae50f516969efdf088de4e59 | /450qstns/01array/22.cpp | 7c74dc941c343c68907ae20cf5868b6802e24321 | [] | no_license | iamshm/myCppPractice | cccbf5e13023d98bf06eda957925fdd8369ee4ed | 53afd204c3957e0d1b8c60dcceee493770ee4929 | refs/heads/main | 2023-06-14T06:05:51.029639 | 2021-07-05T18:35:28 | 2021-07-05T18:35:28 | 335,724,940 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,016 | cpp | 22.cpp | //factorial of a large number
#include <bits/stdc++.h>
using namespace std;
#define endl '\n'
#define mod 1000000007
#define inf 1e18
#define MAX 100000
void shm() {
#ifndef ONLINE_JUDGE
freopen("D:\\cpp\\input.txt", "r", stdin);
freopen("D:\\cpp\\output.txt", "w", stdout);
#endif
ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
}
int multiply(int num, int ans[], int ansLen) {
int carry = 0;
for (int i = 0; i < ansLen; i++) {
int product = ans[i] * num + carry;
ans[i] = product % 10;
carry = product / 10;
}
while (carry) { // if we carry it means the no of digits has increased so we insert a digit of ans in new index
ans[ansLen] = carry % 10 ;
carry /= 10;
ansLen++;
}
return ansLen;
}
void factorialLargeNumber(int n) {
int ans[MAX];
int ansLen = 1 ;
ans[0] = 1;
for (int i = 2 ; i <= n; i++)
ansLen = multiply(i, ans, ansLen);
for (int i = ansLen - 1; i >= 0; i--) {
cout << ans[i];
}
return ;
}
int main()
{
shm();
int n;
cin >> n;
factorialLargeNumber(n);
} |
20c818a8647659780e4af649f4a50f672f30a1a6 | e872bbb9d9105b58515ca4d2546841bb8e02f783 | /ACMContest/BUAASummerPractice/Week1/F.cpp | b4169b08e941c017358577cd87d4857fb241b93e | [] | no_license | SyncShinee/ACM-ICPC | 91049d2ef9a107732c1ad0094a761d95767f0bf8 | 81ab1f424dd2cdd9acfa070c7395029ea76c750b | refs/heads/master | 2020-12-24T03:33:06.389897 | 2016-07-17T12:48:30 | 2016-07-17T12:48:30 | 35,202,594 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,438 | cpp | F.cpp | #include <cstdio>
#include <algorithm>
#include <cstring>
#include <queue>
#include <vector>
#include <stack>
#define N 100010
using namespace std;
typedef long long ll;
struct edge {
ll to, next;
}e[N << 1];
ll vis[N], head[N], n, side, u, v, pre[N], nxt[N], deep[N], dmt1, dmt2, dmt_len, f[N][2];
queue <ll> q;
void build(ll x, ll y) {
e[side].to = y;
e[side].next = head[x];
head[x] = side++;
}
int main() {
scanf("%lld", &n);
side = 0;
memset(head, -1, sizeof head);
for (ll i = 1; i < n; ++i) {
scanf("%lld%lld", &u, &v);
build(u, v);
build(v, u);
}
memset(vis, 0, sizeof vis);
memset(deep, 0, sizeof deep);
q.push(1);
vis[1] = 1;
while (!q.empty()) {
u = q.front();
q.pop();
for (ll i = head[u]; ~i; i = e[i].next) {
if (!vis[e[i].to]) {
vis[e[i].to] = 1;
q.push(e[i].to);
}
}
}
dmt2 = u;
q.push(u);
vis[u] = 2;
while (!q.empty()) {
u = q.front();
q.pop();
for (ll i = head[u]; ~i; i = e[i].next) {
if (vis[e[i].to] < 2) {
vis[e[i].to] = 2;
pre[e[i].to] = u;
q.push(e[i].to);
}
}
}
dmt1 = u;
memset(vis, 0, sizeof vis);
dmt_len = 0;
for (ll i = dmt1; i != dmt2; i = pre[i]) {
vis[i] = 3;
dmt_len++;
nxt[pre[i]] = i;
}
vis[dmt2] = 3;
v = 0;
ll ans = (dmt_len / 2) * ((dmt_len - 1) / 2);
for (ll x = dmt1; x != dmt2; x = pre[x]) {
f[x][0] = v;
f[x][1] = dmt_len - v;
for (ll y = head[x]; ~y; y = e[y].next) {
if (vis[e[y].to]) {
continue;
}
q.push(e[y].to);
vis[e[y].to] = 1;
deep[e[y].to] = 1;
while (!q.empty()) {
u = q.front();
q.pop();
for (ll i = head[u]; ~i; i = e[i].next) {
if (!vis[e[i].to]) {
vis[e[i].to] = 1;
q.push(e[i].to);
deep[e[i].to] = deep[u] + 1;
}
}
}
f[x][0] = max(deep[u] + v, f[x][0]);
f[x][1] = max(deep[u] + dmt_len - v, f[x][1]);
q.push(u);
vis[u] = 2;
deep[u] = 0;
while (!q.empty()) {
u = q.front();
q.pop();
for (ll i = head[u]; ~i; i = e[i].next) {
if (vis[e[i].to] < 2) {
vis[e[i].to] = 2;
deep[e[i].to] = deep[u] + 1;
q.push(e[i].to);
}
}
}
ans = max(ans, dmt_len * deep[u]);
}
v++;
}
ll mx = 0;
for (ll i = dmt1; i != dmt2; i = pre[i]) {
mx = max(mx, f[i][0]);
ans = max(ans, mx * f[pre[i]][1]);
}
mx = 0;
for (ll i = dmt2; i != dmt1; i = nxt[i]) {
mx = max(mx, f[i][1]);
ans = max(ans, mx * f[nxt[i]][0]);
}
printf("%lld\n", ans);
return 0;
} |
330a170baa9f80316c86a6bd54f0f8870909d4d5 | b1171d64287d2152b9609b222a8a8ef2e1525cf9 | /src/shaderprogram.cpp | 7660e9686217dfb35e27be1047fe568c293767c5 | [] | no_license | lfilipozzi/3DRenderer | 07eac201f84d5917bb613b67b50edac53e02a23f | a06388e3bb7f9f907b2c0d967eba403c094aba6e | refs/heads/master | 2021-07-20T06:21:25.660916 | 2021-01-23T00:02:21 | 2021-01-23T00:02:21 | 234,675,889 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 6,956 | cpp | shaderprogram.cpp | #include "../include/shaderprogram.h"
#include <QOpenGLFunctions>
/***
* _____ _ _
* / ____|| | | |
* | (___ | |__ __ _ __| | ___ _ __
* \___ \ | '_ \ / _` | / _` | / _ \| '__|
* ____) || | | || (_| || (_| || __/| |
* |_____/ |_| |_| \__,_| \__,_| \___||_|
*
*
*/
Shader::Shader(QString vShader, QString fShader) {
// Compile vertex shader
if (!addShaderFromSourceFile(QOpenGLShader::Vertex, vShader.toUtf8()))
qCritical() << "Unable to compile vertex shader. Log:" << log();
// Compile fragment shader
if (!addShaderFromSourceFile(QOpenGLShader::Fragment,fShader.toUtf8()))
qCritical() << "Unable to compile fragment shader. Log:" << log();
// Link the shaders together into a program
if (!link())
qCritical() << "Unable to link shader program. Log:" << log();
}
/***
* ____ _ _ _
* / __ \ | | (_) | |
* | | | || |__ _ ___ ___ | |_
* | | | || '_ \ | | / _ \ / __|| __|
* | |__| || |_) || || __/| (__ | |_
* \____/ |_.__/ | | \___| \___| \__|
* _____ _ _/ | _
* / ____|| | |__/ | |
* | (___ | |__ __ _ __| | ___ _ __
* \___ \ | '_ \ / _` | / _` | / _ \| '__|
* ____) || | | || (_| || (_| || __/| |
* |_____/ |_| |_| \__,_| \__,_| \___||_|
*
*
*/
void ObjectShader::setMaterialUniforms(const Material & material) {
// Set material properties
setUniformValue("Ka", material.getAmbientColor());
setUniformValue("Kd", material.getDiffuseColor());
setUniformValue("Ks", material.getSpecularColor());
setUniformValue("shininess", material.getShininess());
setUniformValue("alpha", material.getAlpha());
setUniformValue("heightScale", material.getHeightScale());
// Apply the texture
if (material.getDiffuseTexture() != nullptr)
material.getDiffuseTexture()->bind(COLOR_TEXTURE_UNIT);
if (material.getNormalTexture() != nullptr)
material.getNormalTexture()->bind(NORMAL_TEXTURE_UNIT);
if (material.getBumpTexture() != nullptr)
material.getBumpTexture()->bind(BUMP_TEXTURE_UNIT);
setUniformValue("diffuseSampler", COLOR_TEXTURE_UNIT);
setUniformValue("normalSampler", NORMAL_TEXTURE_UNIT);
setUniformValue("depthSampler", BUMP_TEXTURE_UNIT);
for (unsigned int i = 0; i < NUM_CASCADES; i++) {
char name[128] = {0};
snprintf(name, sizeof(name), "shadowMap[%d]", i);
setUniformValue(name, SHADOW_TEXTURE_UNITS[i]);
}
}
void ObjectShader::setMatrixUniforms(
const QMatrix4x4 & M, const QMatrix4x4 & V, const QMatrix4x4 & P,
const QMatrix4x4 lVP[]
) {
QMatrix4x4 MV = V*M;
QMatrix4x4 MVP = P * MV;
QMatrix3x3 N = MV.normalMatrix();
// Set matrices uniform
setUniformValue("M", M);
setUniformValue("MV", MV);
setUniformValue("MVP", MVP);
setUniformValue("N", N);
// Set camera position uniform
QVector3D cameraPosition(V.inverted().column(3));
setUniformValue("cameraPosition",
QVector3D(V*QVector4D(cameraPosition))
);
// Set light transform uniform for shadow mapping for all cascades
QOpenGLContext * context = QOpenGLContext::currentContext();
if (!context) {
qWarning() << __FILE__ << __LINE__ <<
"Requires a valid current OpenGL context. \n" <<
"Unable to draw the object.";
return;
}
QOpenGLFunctions * glFunctions = context->functions();
for(unsigned int i = 0; i < NUM_CASCADES; i++) {
// Find the location of the uniform
char name[128] = {0};
snprintf(name, sizeof(name), "lMVP[%d]", i);
GLuint location = glFunctions->glGetUniformLocation(
programId(), name
);
// Set uniform
QMatrix4x4 lMVP = lVP[i] * M;
glFunctions->glUniformMatrix4fv(location, 1, GL_FALSE, lMVP.constData());
}
}
void ObjectShader::setLightUniforms(
const CasterLight & light, const QMatrix4x4 & V
) {
setUniformValue("lightIntensity", light.getIntensity());
setUniformValue("lightDirection", V * light.getDirection());
}
void ObjectShader::setCascadeUniforms(
const std::array<float,NUM_CASCADES+1> & cascades
) {
QOpenGLContext * context = QOpenGLContext::currentContext();
if (!context) {
qWarning() << __FILE__ << __LINE__ <<
"Requires a valid current OpenGL context. \n" <<
"Unable to draw the object.";
return;
}
QOpenGLFunctions * glFunctions = context->functions();
GLuint location = glFunctions->glGetUniformLocation(
programId(), "endCascade"
);
glFunctions->glUniform1fv(location, NUM_CASCADES, cascades.data()+1);
}
/***
* ____ _ _ _
* / __ \ | | (_) | |
* | | | || |__ _ ___ ___ | |_
* | | | || '_ \ | | / _ \ / __|| __|
* | |__| || |_) || || __/| (__ | |_
* \____/ |_.__/ | | \___| \___| \__|
* _____ _ _/ | _
* / ____|| | |__/ | |
* | (___ | |__ __ _ __| | ___ __ __
* \___ \ | '_ \ / _` | / _` | / _ \\ \ /\ / /
* ____) || | | || (_| || (_| || (_) |\ V V /
* |_____/ |_| |_| \__,_| \__,_| \___/ \_/\_/
* _____ _ _
* / ____|| | | |
* | (___ | |__ __ _ __| | ___ _ __
* \___ \ | '_ \ / _` | / _` | / _ \| '__|
* ____) || | | || (_| || (_| || __/| |
* |_____/ |_| |_| \__,_| \__,_| \___||_|
*
*
*/
void ObjectShadowShader::setMaterialUniforms(const Material & /*material*/) {
// Nothing to do: no need to apply material to render the shadow
// frame buffer.
}
void ObjectShadowShader::setMatrixUniforms(
const QMatrix4x4 & M, const QMatrix4x4 & /*V*/, const QMatrix4x4 & /*P*/,
const QMatrix4x4 lVP[]
) {
QMatrix4x4 lMVP = lVP[0] * M;
setUniformValue("lMVP", lMVP);
}
void ObjectShadowShader::setLightUniforms(
const CasterLight & /*light*/, const QMatrix4x4 & /*V*/
) {
// Nothing to do
}
void ObjectShadowShader::setCascadeUniforms(
const std::array<float,NUM_CASCADES+1> & cascades
) {
// Nothing to do
(void)cascades;
}
|
aef0671dfa46237e36337958b91c052e1b21e10e | 05cf250793d00cdd7fc7c03cd60a2a705865eab9 | /libmazinger-engine/src/main/native/hll/HllMatcher.cpp | f3ec2ec409ee86eb331a163fbf3532474e48d0e5 | [] | no_license | SoffidIAM/esso | 53dcfcbf22b02f0b2fdc1314eb55749c5d1ca158 | 8b3e04e596a549b9b8ecab186f16680298afd1dc | refs/heads/master | 2022-07-25T06:59:29.348943 | 2022-07-07T13:10:37 | 2022-07-07T13:10:37 | 19,988,314 | 9 | 5 | null | 2020-10-12T23:51:27 | 2014-05-20T16:25:21 | C++ | UTF-8 | C++ | false | false | 1,955 | cpp | HllMatcher.cpp | /*
* HllMatcher.cpp
*
* Created on: 26/03/2014
* Author: bubu
*/
#include <MazingerInternal.h>
#include <HllMatcher.h>
#include <HllApplication.h>
#include "HllRowPatternSpec.h"
#include "HllPatternSpec.h"
#include <ConfigReader.h>
#include <stdlib.h>
#include <stdio.h>
HllMatcher::HllMatcher():
m_apps(0)
{
m_bMatched = 0;
m_pMatchedSpec = NULL;
m_pApp = NULL;
}
HllMatcher::~HllMatcher() {
m_apps.clear();
}
int HllMatcher::search(ConfigReader& reader, HllApplication& app) {
if (MZNC_waitMutex()) {
m_pApp = &app;
m_apps.clear();
for (std::vector<HllPatternSpec*>::iterator it = reader.getHllPatternSpecs().begin();
it != reader.getHllPatternSpecs().end();
it ++)
{
HllPatternSpec* pSpec = *it;
if (pSpec->matches(app))
{
m_apps.push_back(pSpec);
m_bMatched = true;
}
}
MZNC_endMutex();
}
return m_bMatched;
}
int HllMatcher::isFound() {
return m_bMatched;
}
void HllMatcher::triggerMatchEvent() {
if (m_bMatched)
{
printf ("Triggering mathced apps\n");
for (std::vector<HllPatternSpec*>::iterator it1 = m_apps.begin();
it1 != m_apps.end();
it1++)
{
printf ("Triggering mathced app\n");
HllPatternSpec* pApp = *it1;
m_pMatchedSpec = pApp;
for (std::vector<Action*>::iterator it = pApp->m_actions.begin();
it != pApp->m_actions.end();
it ++)
{
printf ("Triggering matched action\n");
(*it)->executeAction(*this);
}
m_pMatchedSpec = NULL;
}
}
}
void HllMatcher::dumpDiagnostic(HllApplication* app) {
}
void MZNHllMatch (HllApplication *app) {
static ConfigReader *c = NULL;
if (MZNC_waitMutex())
{
PMAZINGER_DATA pMazinger = MazingerEnv::getDefaulEnv()->getData();
if (pMazinger != NULL && pMazinger->started)
{
HllMatcher m;
if (c == NULL)
{
c = new ConfigReader(pMazinger);
c->parseHll();
}
std::string url;
m.search(*c, *app);
m.triggerMatchEvent();
}
MZNC_endMutex();
}
}
|
66e6cf783f3d0250f10c634295a8a23147587df8 | 7f6e5bde1cb6b34ece975f9903a780b0aa0a101d | /chp05/난수만들기.cpp | 262697821195b64f5877995b1ac84619d5ecfba4 | [] | no_license | BackYunki/cpp-ModernCPPStudy | d3e172b81eb3b52b118b44e2cf7ed9666af9b5ea | dbb32711c014f7b1c953036ac96fbc7bb6d21296 | refs/heads/master | 2020-04-26T08:27:24.972904 | 2019-08-24T16:03:53 | 2019-08-24T16:03:53 | null | 0 | 0 | null | null | null | null | UHC | C++ | false | false | 814 | cpp | 난수만들기.cpp | #include <iostream>
#include <ctime> // std::time();
#include <cstdlib> // std::rand(), std::srand();
#include <random> // c++11 에 추가된 라이브러리
int main()
{
using namespace std;
//// 랜덤넘버를 가지고 만든 프로그램의 디버깅은 시드를 고정시킨뒤 할것
//srand(static_cast<unsigned int>(time(0)));
//for (size_t i = 1; i <= 100; i++)
//{
// cout << rand() << '\t';
// if (i % 5 == 0) cout << endl;
//}
random_device rd;
mt19937 mersenne(rd()); // create a mesenne twister,
uniform_int_distribution<> dice(1, 100);
int chk[101] = { 0, };
for (size_t i = 1; i <= 1000; ++i)
{
unsigned int num = dice(mersenne);
//cout << num << endl;
chk[num]++;
}
for (size_t i = 1; i <= 100; i++)
{
cout << i << ": " << chk[i]/1000.0 << endl;
}
return 0;
} |
e5c41971ac262c0c6b5d4c66326a4f0eb4649fe8 | 0ba1f65704a4b678f9705c5632daf32a9c67990d | /LG/LGP2657.cpp | 0696694c471c9029a7f83f2fddec22c6c3e4aab9 | [] | no_license | Challestend/challestends-code-set | 7f9e3a239ca32bc6424ac2a68ad46fb60b55ee43 | bd7d6935216d56f3667a6f939298eb84fe44fa6a | refs/heads/master | 2020-03-26T15:59:18.440653 | 2020-01-06T09:22:30 | 2020-01-06T09:22:30 | 145,075,894 | 0 | 0 | null | 2018-08-17T05:44:32 | 2018-08-17T05:30:09 | null | UTF-8 | C++ | false | false | 1,827 | cpp | LGP2657.cpp | #include<cstdio>
#include<cstring>
#define re register
#define max(a,b) ((a)>=(b)?(a):(b))
#define min(a,b) ((a)<=(b)?(a):(b))
#define abs(a) ((a)>=0?(a):(-(a)))
namespace cltstream{
template <typename _tp>
inline void read(_tp& x){
int sn=1;
char c=getchar();
for(;c!=45&&(c<48||c>57);c=getchar());
if(c==45)
sn=-1,c=getchar();
for(x=0;c>=48&&c<=57;x=(x<<3)+(x<<1)+(c^48),c=getchar());
x*=sn;
}
template <typename _tp>
inline void write(_tp x){
if(x<0)
putchar(45),x=-x;
if(!x)
putchar(48);
else{
int digit[20];
for(digit[0]=0;x;digit[++digit[0]]=x%10,x/=10);
for(;digit[0];putchar(digit[digit[0]--]^48));
}
}
}
int a,b;
int num[11],v[10][11][2],f[10][11][2];
void breakDown(int x){
if(x)
for(num[0]=0;x;num[++num[0]]=x%10,x/=10);
else
num[num[0]=1]=0;
}
int dfs(int pre,int pos,int touchLimit,int leadingZero){
if(!touchLimit&&v[pre][pos][leadingZero])
return f[pre][pos][leadingZero];
if(!pos)
return 1;
int res=0;
if(touchLimit){
for(re int i=0;i<=num[pos];++i)
if(leadingZero||abs(i-pre)>=2)
res+=dfs(i,pos-1,touchLimit&&i==num[pos],leadingZero&&!i);
}
else{
for(re int i=0;i<10;++i)
if(leadingZero||abs(i-pre)>=2)
res+=dfs(i,pos-1,touchLimit,leadingZero&&!i);
v[pre][pos][leadingZero]=1;
f[pre][pos][leadingZero]=res;
}
return res;
}
int main(){
cltstream::read(a);
cltstream::read(b);
breakDown(a-1);
a=dfs(0,num[0],1,1);
memset(v,0,sizeof(v));
memset(f,0,sizeof(f));
breakDown(b);
b=dfs(0,num[0],1,1);
cltstream::write(b-a);
return 0;
}
|
6ad7c712f3ea9f9951bfee6d93b46653b99d6eeb | 4718b9b11110db8eb23980c6d12940bd5b754f34 | /bench/ml2cpp-demo/GradientBoostingRegressor/RandomReg_10/ml2cpp-demo_GradientBoostingRegressor_RandomReg_10.cpp | b43eddafa5dd8732014abe46b7ac2e481876f9eb | [
"BSD-3-Clause"
] | permissive | ssh352/ml2cpp | 74d38935256cf9d034d08ede37a7d8bdcfa25540 | 999eb1e7238b9ee2ee32d47ac4f12e1530a3ba6f | refs/heads/master | 2023-01-27T12:07:15.929729 | 2020-12-07T12:26:54 | 2020-12-07T12:26:54 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 43,142 | cpp | ml2cpp-demo_GradientBoostingRegressor_RandomReg_10.cpp | // ********************************************************
// This C++ code was automatically generated by ml2cpp (development version).
// Copyright 2020
// https://github.com/antoinecarme/ml2cpp
// Model : GradientBoostingRegressor
// Dataset : RandomReg_10
// This CPP code can be compiled using any C++-17 compiler.
// g++ -Wall -Wno-unused-function -std=c++17 -g -o ml2cpp-demo_GradientBoostingRegressor_RandomReg_10.exe ml2cpp-demo_GradientBoostingRegressor_RandomReg_10.cpp
// Model deployment code
// ********************************************************
#include "../../Generic.i"
namespace {
namespace SubModel_0_0 {
typedef std::vector<double> tNodeData;
std::map<int, tNodeData> Decision_Tree_Node_data = {
{ 3 , {-208.77804517 }} ,
{ 4 , {-437.34093868 }} ,
{ 6 , {-113.60421645 }} ,
{ 7 , {122.45884789 }} ,
{ 10 , {-309.90060672 }} ,
{ 11 , {-32.15578898 }} ,
{ 13 , {61.43992483 }} ,
{ 14 , {231.09071529 }}
};
int get_decision_tree_node_index(std::any Feature_0, std::any Feature_1, std::any Feature_2, std::any Feature_3, std::any Feature_4, std::any Feature_5, std::any Feature_6, std::any Feature_7, std::any Feature_8, std::any Feature_9) {
int lNodeIndex = (Feature_2 <= 0.4864888936281204) ? ( (Feature_5 <= -0.6670668423175812) ? ( (Feature_5 <= -0.8804325759410858) ? ( 3 ) : ( 4 ) ) : ( (Feature_8 <= -0.10979260504245758) ? ( 6 ) : ( 7 ) ) ) : ( (Feature_4 <= -1.197551190853119) ? ( (Feature_5 <= 0.10777395963668823) ? ( 10 ) : ( 11 ) ) : ( (Feature_0 <= -0.3104289323091507) ? ( 13 ) : ( 14 ) ) );
return lNodeIndex;
}
std::vector<std::string> get_input_names(){
std::vector<std::string> lFeatures = { "Feature_0", "Feature_1", "Feature_2", "Feature_3", "Feature_4", "Feature_5", "Feature_6", "Feature_7", "Feature_8", "Feature_9" };
return lFeatures;
}
std::vector<std::string> get_output_names(){
std::vector<std::string> lOutputs = { "Estimator" };
return lOutputs;
}
tTable compute_regression(std::any Feature_0, std::any Feature_1, std::any Feature_2, std::any Feature_3, std::any Feature_4, std::any Feature_5, std::any Feature_6, std::any Feature_7, std::any Feature_8, std::any Feature_9) {
int lNodeIndex = get_decision_tree_node_index(Feature_0, Feature_1, Feature_2, Feature_3, Feature_4, Feature_5, Feature_6, Feature_7, Feature_8, Feature_9);
std::vector<double> lNodeValue = Decision_Tree_Node_data[ lNodeIndex ];
tTable lTable;
std::any lEstimator = lNodeValue [ 0 ];
lTable[ "Estimator" ] = { lEstimator };
return lTable;
}
tTable compute_model_outputs_from_table( tTable const & iTable) {
tTable lTable = compute_regression(iTable.at("Feature_0")[0], iTable.at("Feature_1")[0], iTable.at("Feature_2")[0], iTable.at("Feature_3")[0], iTable.at("Feature_4")[0], iTable.at("Feature_5")[0], iTable.at("Feature_6")[0], iTable.at("Feature_7")[0], iTable.at("Feature_8")[0], iTable.at("Feature_9")[0]);
return lTable;
}
} // eof namespace SubModel_0_0
namespace SubModel_1_0 {
typedef std::vector<double> tNodeData;
std::map<int, tNodeData> Decision_Tree_Node_data = {
{ 3 , {-326.50910641 }} ,
{ 4 , {-98.85523416 }} ,
{ 6 , {-87.4471466 }} ,
{ 7 , {173.77311 }} ,
{ 10 , {-278.91054605 }} ,
{ 11 , {-28.94021008 }} ,
{ 13 , {55.29593235 }} ,
{ 14 , {207.98164376 }}
};
int get_decision_tree_node_index(std::any Feature_0, std::any Feature_1, std::any Feature_2, std::any Feature_3, std::any Feature_4, std::any Feature_5, std::any Feature_6, std::any Feature_7, std::any Feature_8, std::any Feature_9) {
int lNodeIndex = (Feature_2 <= 0.4864888936281204) ? ( (Feature_7 <= 0.48319585621356964) ? ( (Feature_1 <= -1.1535027623176575) ? ( 3 ) : ( 4 ) ) : ( (Feature_8 <= -0.13740999344736338) ? ( 6 ) : ( 7 ) ) ) : ( (Feature_4 <= -1.197551190853119) ? ( (Feature_5 <= 0.10777395963668823) ? ( 10 ) : ( 11 ) ) : ( (Feature_0 <= -0.3104289323091507) ? ( 13 ) : ( 14 ) ) );
return lNodeIndex;
}
std::vector<std::string> get_input_names(){
std::vector<std::string> lFeatures = { "Feature_0", "Feature_1", "Feature_2", "Feature_3", "Feature_4", "Feature_5", "Feature_6", "Feature_7", "Feature_8", "Feature_9" };
return lFeatures;
}
std::vector<std::string> get_output_names(){
std::vector<std::string> lOutputs = { "Estimator" };
return lOutputs;
}
tTable compute_regression(std::any Feature_0, std::any Feature_1, std::any Feature_2, std::any Feature_3, std::any Feature_4, std::any Feature_5, std::any Feature_6, std::any Feature_7, std::any Feature_8, std::any Feature_9) {
int lNodeIndex = get_decision_tree_node_index(Feature_0, Feature_1, Feature_2, Feature_3, Feature_4, Feature_5, Feature_6, Feature_7, Feature_8, Feature_9);
std::vector<double> lNodeValue = Decision_Tree_Node_data[ lNodeIndex ];
tTable lTable;
std::any lEstimator = lNodeValue [ 0 ];
lTable[ "Estimator" ] = { lEstimator };
return lTable;
}
tTable compute_model_outputs_from_table( tTable const & iTable) {
tTable lTable = compute_regression(iTable.at("Feature_0")[0], iTable.at("Feature_1")[0], iTable.at("Feature_2")[0], iTable.at("Feature_3")[0], iTable.at("Feature_4")[0], iTable.at("Feature_5")[0], iTable.at("Feature_6")[0], iTable.at("Feature_7")[0], iTable.at("Feature_8")[0], iTable.at("Feature_9")[0]);
return lTable;
}
} // eof namespace SubModel_1_0
namespace SubModel_2_0 {
typedef std::vector<double> tNodeData;
std::map<int, tNodeData> Decision_Tree_Node_data = {
{ 3 , {-176.11170265 }} ,
{ 4 , {-368.54439658 }} ,
{ 6 , {-96.03900139 }} ,
{ 7 , {99.38716021 }} ,
{ 10 , {-251.01949144 }} ,
{ 11 , {-26.04618907 }} ,
{ 13 , {75.12779906 }} ,
{ 14 , {204.70712522 }}
};
int get_decision_tree_node_index(std::any Feature_0, std::any Feature_1, std::any Feature_2, std::any Feature_3, std::any Feature_4, std::any Feature_5, std::any Feature_6, std::any Feature_7, std::any Feature_8, std::any Feature_9) {
int lNodeIndex = (Feature_2 <= 0.4864888936281204) ? ( (Feature_5 <= -0.6670668423175812) ? ( (Feature_5 <= -0.8804325759410858) ? ( 3 ) : ( 4 ) ) : ( (Feature_8 <= -0.18419555574655533) ? ( 6 ) : ( 7 ) ) ) : ( (Feature_4 <= -1.197551190853119) ? ( (Feature_5 <= 0.10777395963668823) ? ( 10 ) : ( 11 ) ) : ( (Feature_1 <= -0.19500725716352463) ? ( 13 ) : ( 14 ) ) );
return lNodeIndex;
}
std::vector<std::string> get_input_names(){
std::vector<std::string> lFeatures = { "Feature_0", "Feature_1", "Feature_2", "Feature_3", "Feature_4", "Feature_5", "Feature_6", "Feature_7", "Feature_8", "Feature_9" };
return lFeatures;
}
std::vector<std::string> get_output_names(){
std::vector<std::string> lOutputs = { "Estimator" };
return lOutputs;
}
tTable compute_regression(std::any Feature_0, std::any Feature_1, std::any Feature_2, std::any Feature_3, std::any Feature_4, std::any Feature_5, std::any Feature_6, std::any Feature_7, std::any Feature_8, std::any Feature_9) {
int lNodeIndex = get_decision_tree_node_index(Feature_0, Feature_1, Feature_2, Feature_3, Feature_4, Feature_5, Feature_6, Feature_7, Feature_8, Feature_9);
std::vector<double> lNodeValue = Decision_Tree_Node_data[ lNodeIndex ];
tTable lTable;
std::any lEstimator = lNodeValue [ 0 ];
lTable[ "Estimator" ] = { lEstimator };
return lTable;
}
tTable compute_model_outputs_from_table( tTable const & iTable) {
tTable lTable = compute_regression(iTable.at("Feature_0")[0], iTable.at("Feature_1")[0], iTable.at("Feature_2")[0], iTable.at("Feature_3")[0], iTable.at("Feature_4")[0], iTable.at("Feature_5")[0], iTable.at("Feature_6")[0], iTable.at("Feature_7")[0], iTable.at("Feature_8")[0], iTable.at("Feature_9")[0]);
return lTable;
}
} // eof namespace SubModel_2_0
namespace SubModel_3_0 {
typedef std::vector<double> tNodeData;
std::map<int, tNodeData> Decision_Tree_Node_data = {
{ 3 , {-219.68151786 }} ,
{ 4 , {1.53788453 }} ,
{ 6 , {-63.12781904 }} ,
{ 7 , {105.11332453 }} ,
{ 9 , {50.92143164 }} ,
{ 11 , {228.02920134 }} ,
{ 12 , {332.25653745 }}
};
int get_decision_tree_node_index(std::any Feature_0, std::any Feature_1, std::any Feature_2, std::any Feature_3, std::any Feature_4, std::any Feature_5, std::any Feature_6, std::any Feature_7, std::any Feature_8, std::any Feature_9) {
int lNodeIndex = (Feature_8 <= 1.3777701258659363) ? ( (Feature_5 <= -0.6693825721740723) ? ( (Feature_1 <= -0.07982141990214586) ? ( 3 ) : ( 4 ) ) : ( (Feature_8 <= -0.1578926146030426) ? ( 6 ) : ( 7 ) ) ) : ( (Feature_0 <= -1.5720696449279785) ? ( 9 ) : ( (Feature_8 <= 1.8881685733795166) ? ( 11 ) : ( 12 ) ) );
return lNodeIndex;
}
std::vector<std::string> get_input_names(){
std::vector<std::string> lFeatures = { "Feature_0", "Feature_1", "Feature_2", "Feature_3", "Feature_4", "Feature_5", "Feature_6", "Feature_7", "Feature_8", "Feature_9" };
return lFeatures;
}
std::vector<std::string> get_output_names(){
std::vector<std::string> lOutputs = { "Estimator" };
return lOutputs;
}
tTable compute_regression(std::any Feature_0, std::any Feature_1, std::any Feature_2, std::any Feature_3, std::any Feature_4, std::any Feature_5, std::any Feature_6, std::any Feature_7, std::any Feature_8, std::any Feature_9) {
int lNodeIndex = get_decision_tree_node_index(Feature_0, Feature_1, Feature_2, Feature_3, Feature_4, Feature_5, Feature_6, Feature_7, Feature_8, Feature_9);
std::vector<double> lNodeValue = Decision_Tree_Node_data[ lNodeIndex ];
tTable lTable;
std::any lEstimator = lNodeValue [ 0 ];
lTable[ "Estimator" ] = { lEstimator };
return lTable;
}
tTable compute_model_outputs_from_table( tTable const & iTable) {
tTable lTable = compute_regression(iTable.at("Feature_0")[0], iTable.at("Feature_1")[0], iTable.at("Feature_2")[0], iTable.at("Feature_3")[0], iTable.at("Feature_4")[0], iTable.at("Feature_5")[0], iTable.at("Feature_6")[0], iTable.at("Feature_7")[0], iTable.at("Feature_8")[0], iTable.at("Feature_9")[0]);
return lTable;
}
} // eof namespace SubModel_3_0
namespace SubModel_4_0 {
typedef std::vector<double> tNodeData;
std::map<int, tNodeData> Decision_Tree_Node_data = {
{ 3 , {-252.20320059 }} ,
{ 4 , {-121.33851569 }} ,
{ 6 , {-48.95960236 }} ,
{ 7 , {137.19688391 }} ,
{ 10 , {-37.60655466 }} ,
{ 11 , {125.61672399 }} ,
{ 13 , {137.24703325 }} ,
{ 14 , {245.25440849 }}
};
int get_decision_tree_node_index(std::any Feature_0, std::any Feature_1, std::any Feature_2, std::any Feature_3, std::any Feature_4, std::any Feature_5, std::any Feature_6, std::any Feature_7, std::any Feature_8, std::any Feature_9) {
int lNodeIndex = (Feature_2 <= 0.8179076910018921) ? ( (Feature_5 <= -0.5199595391750336) ? ( (Feature_1 <= -0.931333601474762) ? ( 3 ) : ( 4 ) ) : ( (Feature_7 <= 0.6698598563671112) ? ( 6 ) : ( 7 ) ) ) : ( (Feature_8 <= -0.1578926146030426) ? ( (Feature_1 <= -0.07556744664907455) ? ( 10 ) : ( 11 ) ) : ( (Feature_4 <= 0.3107970803976059) ? ( 13 ) : ( 14 ) ) );
return lNodeIndex;
}
std::vector<std::string> get_input_names(){
std::vector<std::string> lFeatures = { "Feature_0", "Feature_1", "Feature_2", "Feature_3", "Feature_4", "Feature_5", "Feature_6", "Feature_7", "Feature_8", "Feature_9" };
return lFeatures;
}
std::vector<std::string> get_output_names(){
std::vector<std::string> lOutputs = { "Estimator" };
return lOutputs;
}
tTable compute_regression(std::any Feature_0, std::any Feature_1, std::any Feature_2, std::any Feature_3, std::any Feature_4, std::any Feature_5, std::any Feature_6, std::any Feature_7, std::any Feature_8, std::any Feature_9) {
int lNodeIndex = get_decision_tree_node_index(Feature_0, Feature_1, Feature_2, Feature_3, Feature_4, Feature_5, Feature_6, Feature_7, Feature_8, Feature_9);
std::vector<double> lNodeValue = Decision_Tree_Node_data[ lNodeIndex ];
tTable lTable;
std::any lEstimator = lNodeValue [ 0 ];
lTable[ "Estimator" ] = { lEstimator };
return lTable;
}
tTable compute_model_outputs_from_table( tTable const & iTable) {
tTable lTable = compute_regression(iTable.at("Feature_0")[0], iTable.at("Feature_1")[0], iTable.at("Feature_2")[0], iTable.at("Feature_3")[0], iTable.at("Feature_4")[0], iTable.at("Feature_5")[0], iTable.at("Feature_6")[0], iTable.at("Feature_7")[0], iTable.at("Feature_8")[0], iTable.at("Feature_9")[0]);
return lTable;
}
} // eof namespace SubModel_4_0
namespace SubModel_5_0 {
typedef std::vector<double> tNodeData;
std::map<int, tNodeData> Decision_Tree_Node_data = {
{ 3 , {-185.91889384 }} ,
{ 4 , {-36.72374794 }} ,
{ 6 , {-15.39934961 }} ,
{ 7 , {144.62910189 }} ,
{ 10 , {141.14763755 }} ,
{ 11 , {50.72524871 }} ,
{ 13 , {212.2184176 }} ,
{ 14 , {312.11402041 }}
};
int get_decision_tree_node_index(std::any Feature_0, std::any Feature_1, std::any Feature_2, std::any Feature_3, std::any Feature_4, std::any Feature_5, std::any Feature_6, std::any Feature_7, std::any Feature_8, std::any Feature_9) {
int lNodeIndex = (Feature_8 <= 1.3777701258659363) ? ( (Feature_1 <= -0.2953660264611244) ? ( (Feature_5 <= -0.5290045142173767) ? ( 3 ) : ( 4 ) ) : ( (Feature_2 <= 0.4809132218360901) ? ( 6 ) : ( 7 ) ) ) : ( (Feature_2 <= -0.3942183628678322) ? ( (Feature_2 <= -1.2252161800861359) ? ( 10 ) : ( 11 ) ) : ( (Feature_2 <= 1.5560894012451172) ? ( 13 ) : ( 14 ) ) );
return lNodeIndex;
}
std::vector<std::string> get_input_names(){
std::vector<std::string> lFeatures = { "Feature_0", "Feature_1", "Feature_2", "Feature_3", "Feature_4", "Feature_5", "Feature_6", "Feature_7", "Feature_8", "Feature_9" };
return lFeatures;
}
std::vector<std::string> get_output_names(){
std::vector<std::string> lOutputs = { "Estimator" };
return lOutputs;
}
tTable compute_regression(std::any Feature_0, std::any Feature_1, std::any Feature_2, std::any Feature_3, std::any Feature_4, std::any Feature_5, std::any Feature_6, std::any Feature_7, std::any Feature_8, std::any Feature_9) {
int lNodeIndex = get_decision_tree_node_index(Feature_0, Feature_1, Feature_2, Feature_3, Feature_4, Feature_5, Feature_6, Feature_7, Feature_8, Feature_9);
std::vector<double> lNodeValue = Decision_Tree_Node_data[ lNodeIndex ];
tTable lTable;
std::any lEstimator = lNodeValue [ 0 ];
lTable[ "Estimator" ] = { lEstimator };
return lTable;
}
tTable compute_model_outputs_from_table( tTable const & iTable) {
tTable lTable = compute_regression(iTable.at("Feature_0")[0], iTable.at("Feature_1")[0], iTable.at("Feature_2")[0], iTable.at("Feature_3")[0], iTable.at("Feature_4")[0], iTable.at("Feature_5")[0], iTable.at("Feature_6")[0], iTable.at("Feature_7")[0], iTable.at("Feature_8")[0], iTable.at("Feature_9")[0]);
return lTable;
}
} // eof namespace SubModel_5_0
namespace SubModel_6_0 {
typedef std::vector<double> tNodeData;
std::map<int, tNodeData> Decision_Tree_Node_data = {
{ 3 , {-137.20816742 }} ,
{ 4 , {-231.34282554 }} ,
{ 6 , {-119.32161195 }} ,
{ 7 , {-15.75975266 }} ,
{ 10 , {-119.82952352 }} ,
{ 11 , {63.48532014 }} ,
{ 13 , {-16.82848268 }} ,
{ 14 , {145.22505636 }}
};
int get_decision_tree_node_index(std::any Feature_0, std::any Feature_1, std::any Feature_2, std::any Feature_3, std::any Feature_4, std::any Feature_5, std::any Feature_6, std::any Feature_7, std::any Feature_8, std::any Feature_9) {
int lNodeIndex = (Feature_8 <= -0.3908981829881668) ? ( (Feature_3 <= -1.0433723628520966) ? ( (Feature_0 <= -0.8242994844913483) ? ( 3 ) : ( 4 ) ) : ( (Feature_7 <= -0.19038131833076477) ? ( 6 ) : ( 7 ) ) ) : ( (Feature_1 <= -0.5763004422187805) ? ( (Feature_2 <= 0.7259149551391602) ? ( 10 ) : ( 11 ) ) : ( (Feature_2 <= -0.3419182002544403) ? ( 13 ) : ( 14 ) ) );
return lNodeIndex;
}
std::vector<std::string> get_input_names(){
std::vector<std::string> lFeatures = { "Feature_0", "Feature_1", "Feature_2", "Feature_3", "Feature_4", "Feature_5", "Feature_6", "Feature_7", "Feature_8", "Feature_9" };
return lFeatures;
}
std::vector<std::string> get_output_names(){
std::vector<std::string> lOutputs = { "Estimator" };
return lOutputs;
}
tTable compute_regression(std::any Feature_0, std::any Feature_1, std::any Feature_2, std::any Feature_3, std::any Feature_4, std::any Feature_5, std::any Feature_6, std::any Feature_7, std::any Feature_8, std::any Feature_9) {
int lNodeIndex = get_decision_tree_node_index(Feature_0, Feature_1, Feature_2, Feature_3, Feature_4, Feature_5, Feature_6, Feature_7, Feature_8, Feature_9);
std::vector<double> lNodeValue = Decision_Tree_Node_data[ lNodeIndex ];
tTable lTable;
std::any lEstimator = lNodeValue [ 0 ];
lTable[ "Estimator" ] = { lEstimator };
return lTable;
}
tTable compute_model_outputs_from_table( tTable const & iTable) {
tTable lTable = compute_regression(iTable.at("Feature_0")[0], iTable.at("Feature_1")[0], iTable.at("Feature_2")[0], iTable.at("Feature_3")[0], iTable.at("Feature_4")[0], iTable.at("Feature_5")[0], iTable.at("Feature_6")[0], iTable.at("Feature_7")[0], iTable.at("Feature_8")[0], iTable.at("Feature_9")[0]);
return lTable;
}
} // eof namespace SubModel_6_0
namespace SubModel_7_0 {
typedef std::vector<double> tNodeData;
std::map<int, tNodeData> Decision_Tree_Node_data = {
{ 3 , {-216.47369625 }} ,
{ 4 , {-149.31764031 }} ,
{ 6 , {-107.38945076 }} ,
{ 7 , {-14.18377739 }} ,
{ 10 , {-201.3834581 }} ,
{ 11 , {-39.49575926 }} ,
{ 13 , {-25.62214369 }} ,
{ 14 , {105.45885918 }}
};
int get_decision_tree_node_index(std::any Feature_0, std::any Feature_1, std::any Feature_2, std::any Feature_3, std::any Feature_4, std::any Feature_5, std::any Feature_6, std::any Feature_7, std::any Feature_8, std::any Feature_9) {
int lNodeIndex = (Feature_8 <= -0.3908981829881668) ? ( (Feature_3 <= -1.0433723628520966) ? ( (Feature_4 <= -0.102871373295784) ? ( 3 ) : ( 4 ) ) : ( (Feature_7 <= -0.19038131833076477) ? ( 6 ) : ( 7 ) ) ) : ( (Feature_4 <= -1.116929292678833) ? ( (Feature_8 <= 0.4848606586456299) ? ( 10 ) : ( 11 ) ) : ( (Feature_2 <= -0.3419182002544403) ? ( 13 ) : ( 14 ) ) );
return lNodeIndex;
}
std::vector<std::string> get_input_names(){
std::vector<std::string> lFeatures = { "Feature_0", "Feature_1", "Feature_2", "Feature_3", "Feature_4", "Feature_5", "Feature_6", "Feature_7", "Feature_8", "Feature_9" };
return lFeatures;
}
std::vector<std::string> get_output_names(){
std::vector<std::string> lOutputs = { "Estimator" };
return lOutputs;
}
tTable compute_regression(std::any Feature_0, std::any Feature_1, std::any Feature_2, std::any Feature_3, std::any Feature_4, std::any Feature_5, std::any Feature_6, std::any Feature_7, std::any Feature_8, std::any Feature_9) {
int lNodeIndex = get_decision_tree_node_index(Feature_0, Feature_1, Feature_2, Feature_3, Feature_4, Feature_5, Feature_6, Feature_7, Feature_8, Feature_9);
std::vector<double> lNodeValue = Decision_Tree_Node_data[ lNodeIndex ];
tTable lTable;
std::any lEstimator = lNodeValue [ 0 ];
lTable[ "Estimator" ] = { lEstimator };
return lTable;
}
tTable compute_model_outputs_from_table( tTable const & iTable) {
tTable lTable = compute_regression(iTable.at("Feature_0")[0], iTable.at("Feature_1")[0], iTable.at("Feature_2")[0], iTable.at("Feature_3")[0], iTable.at("Feature_4")[0], iTable.at("Feature_5")[0], iTable.at("Feature_6")[0], iTable.at("Feature_7")[0], iTable.at("Feature_8")[0], iTable.at("Feature_9")[0]);
return lTable;
}
} // eof namespace SubModel_7_0
namespace SubModel_8_0 {
typedef std::vector<double> tNodeData;
std::map<int, tNodeData> Decision_Tree_Node_data = {
{ 3 , {-80.37727899 }} ,
{ 4 , {19.67833565 }} ,
{ 6 , {47.48681743 }} ,
{ 7 , {148.22745338 }} ,
{ 9 , {49.89778648 }} ,
{ 11 , {228.62330563 }} ,
{ 12 , {153.53608941 }}
};
int get_decision_tree_node_index(std::any Feature_0, std::any Feature_1, std::any Feature_2, std::any Feature_3, std::any Feature_4, std::any Feature_5, std::any Feature_6, std::any Feature_7, std::any Feature_8, std::any Feature_9) {
int lNodeIndex = (Feature_8 <= 1.3777701258659363) ? ( (Feature_2 <= 1.10337233543396) ? ( (Feature_1 <= -0.10812131687998772) ? ( 3 ) : ( 4 ) ) : ( (Feature_4 <= -0.22430559620261192) ? ( 6 ) : ( 7 ) ) ) : ( (Feature_6 <= -1.2776120901107788) ? ( 9 ) : ( (Feature_9 <= -0.7623916044831276) ? ( 11 ) : ( 12 ) ) );
return lNodeIndex;
}
std::vector<std::string> get_input_names(){
std::vector<std::string> lFeatures = { "Feature_0", "Feature_1", "Feature_2", "Feature_3", "Feature_4", "Feature_5", "Feature_6", "Feature_7", "Feature_8", "Feature_9" };
return lFeatures;
}
std::vector<std::string> get_output_names(){
std::vector<std::string> lOutputs = { "Estimator" };
return lOutputs;
}
tTable compute_regression(std::any Feature_0, std::any Feature_1, std::any Feature_2, std::any Feature_3, std::any Feature_4, std::any Feature_5, std::any Feature_6, std::any Feature_7, std::any Feature_8, std::any Feature_9) {
int lNodeIndex = get_decision_tree_node_index(Feature_0, Feature_1, Feature_2, Feature_3, Feature_4, Feature_5, Feature_6, Feature_7, Feature_8, Feature_9);
std::vector<double> lNodeValue = Decision_Tree_Node_data[ lNodeIndex ];
tTable lTable;
std::any lEstimator = lNodeValue [ 0 ];
lTable[ "Estimator" ] = { lEstimator };
return lTable;
}
tTable compute_model_outputs_from_table( tTable const & iTable) {
tTable lTable = compute_regression(iTable.at("Feature_0")[0], iTable.at("Feature_1")[0], iTable.at("Feature_2")[0], iTable.at("Feature_3")[0], iTable.at("Feature_4")[0], iTable.at("Feature_5")[0], iTable.at("Feature_6")[0], iTable.at("Feature_7")[0], iTable.at("Feature_8")[0], iTable.at("Feature_9")[0]);
return lTable;
}
} // eof namespace SubModel_8_0
namespace SubModel_9_0 {
typedef std::vector<double> tNodeData;
std::map<int, tNodeData> Decision_Tree_Node_data = {
{ 3 , {-73.44849391 }} ,
{ 4 , {-203.34660361 }} ,
{ 6 , {-41.48806981 }} ,
{ 7 , {67.69644813 }} ,
{ 10 , {185.20439924 }} ,
{ 11 , {120.5389185 }} ,
{ 12 , {44.90800783 }}
};
int get_decision_tree_node_index(std::any Feature_0, std::any Feature_1, std::any Feature_2, std::any Feature_3, std::any Feature_4, std::any Feature_5, std::any Feature_6, std::any Feature_7, std::any Feature_8, std::any Feature_9) {
int lNodeIndex = (Feature_8 <= 1.3777701258659363) ? ( (Feature_5 <= -0.6693825721740723) ? ( (Feature_5 <= -0.8804325759410858) ? ( 3 ) : ( 4 ) ) : ( (Feature_8 <= -0.1578926146030426) ? ( 6 ) : ( 7 ) ) ) : ( (Feature_9 <= 1.4576728343963623) ? ( (Feature_1 <= 0.3258654661476612) ? ( 10 ) : ( 11 ) ) : ( 12 ) );
return lNodeIndex;
}
std::vector<std::string> get_input_names(){
std::vector<std::string> lFeatures = { "Feature_0", "Feature_1", "Feature_2", "Feature_3", "Feature_4", "Feature_5", "Feature_6", "Feature_7", "Feature_8", "Feature_9" };
return lFeatures;
}
std::vector<std::string> get_output_names(){
std::vector<std::string> lOutputs = { "Estimator" };
return lOutputs;
}
tTable compute_regression(std::any Feature_0, std::any Feature_1, std::any Feature_2, std::any Feature_3, std::any Feature_4, std::any Feature_5, std::any Feature_6, std::any Feature_7, std::any Feature_8, std::any Feature_9) {
int lNodeIndex = get_decision_tree_node_index(Feature_0, Feature_1, Feature_2, Feature_3, Feature_4, Feature_5, Feature_6, Feature_7, Feature_8, Feature_9);
std::vector<double> lNodeValue = Decision_Tree_Node_data[ lNodeIndex ];
tTable lTable;
std::any lEstimator = lNodeValue [ 0 ];
lTable[ "Estimator" ] = { lEstimator };
return lTable;
}
tTable compute_model_outputs_from_table( tTable const & iTable) {
tTable lTable = compute_regression(iTable.at("Feature_0")[0], iTable.at("Feature_1")[0], iTable.at("Feature_2")[0], iTable.at("Feature_3")[0], iTable.at("Feature_4")[0], iTable.at("Feature_5")[0], iTable.at("Feature_6")[0], iTable.at("Feature_7")[0], iTable.at("Feature_8")[0], iTable.at("Feature_9")[0]);
return lTable;
}
} // eof namespace SubModel_9_0
namespace SubModel_10_0 {
typedef std::vector<double> tNodeData;
std::map<int, tNodeData> Decision_Tree_Node_data = {
{ 3 , {-118.29201989 }} ,
{ 4 , {-25.0774265 }} ,
{ 6 , {-30.2641612 }} ,
{ 7 , {86.3177518 }} ,
{ 10 , {-66.09975993 }} ,
{ 11 , {62.45645261 }} ,
{ 13 , {83.88369798 }} ,
{ 14 , {316.42361392 }}
};
int get_decision_tree_node_index(std::any Feature_0, std::any Feature_1, std::any Feature_2, std::any Feature_3, std::any Feature_4, std::any Feature_5, std::any Feature_6, std::any Feature_7, std::any Feature_8, std::any Feature_9) {
int lNodeIndex = (Feature_2 <= 0.4864888936281204) ? ( (Feature_7 <= 0.12788642197847366) ? ( (Feature_1 <= 0.21956638246774673) ? ( 3 ) : ( 4 ) ) : ( (Feature_5 <= 0.6095779836177826) ? ( 6 ) : ( 7 ) ) ) : ( (Feature_1 <= -0.5779649615287781) ? ( (Feature_4 <= -0.059223100543022156) ? ( 10 ) : ( 11 ) ) : ( (Feature_4 <= 1.9032750129699707) ? ( 13 ) : ( 14 ) ) );
return lNodeIndex;
}
std::vector<std::string> get_input_names(){
std::vector<std::string> lFeatures = { "Feature_0", "Feature_1", "Feature_2", "Feature_3", "Feature_4", "Feature_5", "Feature_6", "Feature_7", "Feature_8", "Feature_9" };
return lFeatures;
}
std::vector<std::string> get_output_names(){
std::vector<std::string> lOutputs = { "Estimator" };
return lOutputs;
}
tTable compute_regression(std::any Feature_0, std::any Feature_1, std::any Feature_2, std::any Feature_3, std::any Feature_4, std::any Feature_5, std::any Feature_6, std::any Feature_7, std::any Feature_8, std::any Feature_9) {
int lNodeIndex = get_decision_tree_node_index(Feature_0, Feature_1, Feature_2, Feature_3, Feature_4, Feature_5, Feature_6, Feature_7, Feature_8, Feature_9);
std::vector<double> lNodeValue = Decision_Tree_Node_data[ lNodeIndex ];
tTable lTable;
std::any lEstimator = lNodeValue [ 0 ];
lTable[ "Estimator" ] = { lEstimator };
return lTable;
}
tTable compute_model_outputs_from_table( tTable const & iTable) {
tTable lTable = compute_regression(iTable.at("Feature_0")[0], iTable.at("Feature_1")[0], iTable.at("Feature_2")[0], iTable.at("Feature_3")[0], iTable.at("Feature_4")[0], iTable.at("Feature_5")[0], iTable.at("Feature_6")[0], iTable.at("Feature_7")[0], iTable.at("Feature_8")[0], iTable.at("Feature_9")[0]);
return lTable;
}
} // eof namespace SubModel_10_0
namespace SubModel_11_0 {
typedef std::vector<double> tNodeData;
std::map<int, tNodeData> Decision_Tree_Node_data = {
{ 3 , {-136.61832829 }} ,
{ 4 , {-184.69920149 }} ,
{ 6 , {-70.42234415 }} ,
{ 7 , {1.32443607 }} ,
{ 10 , {-65.2706283 }} ,
{ 11 , {147.98112462 }} ,
{ 13 , {-10.64908702 }} ,
{ 14 , {99.4330047 }}
};
int get_decision_tree_node_index(std::any Feature_0, std::any Feature_1, std::any Feature_2, std::any Feature_3, std::any Feature_4, std::any Feature_5, std::any Feature_6, std::any Feature_7, std::any Feature_8, std::any Feature_9) {
int lNodeIndex = (Feature_8 <= -0.3908981829881668) ? ( (Feature_3 <= -1.0433723628520966) ? ( (Feature_6 <= -0.34999316930770874) ? ( 3 ) : ( 4 ) ) : ( (Feature_5 <= 0.26793916523456573) ? ( 6 ) : ( 7 ) ) ) : ( (Feature_1 <= -0.5763004422187805) ? ( (Feature_8 <= 1.3495553135871887) ? ( 10 ) : ( 11 ) ) : ( (Feature_2 <= -0.3419182002544403) ? ( 13 ) : ( 14 ) ) );
return lNodeIndex;
}
std::vector<std::string> get_input_names(){
std::vector<std::string> lFeatures = { "Feature_0", "Feature_1", "Feature_2", "Feature_3", "Feature_4", "Feature_5", "Feature_6", "Feature_7", "Feature_8", "Feature_9" };
return lFeatures;
}
std::vector<std::string> get_output_names(){
std::vector<std::string> lOutputs = { "Estimator" };
return lOutputs;
}
tTable compute_regression(std::any Feature_0, std::any Feature_1, std::any Feature_2, std::any Feature_3, std::any Feature_4, std::any Feature_5, std::any Feature_6, std::any Feature_7, std::any Feature_8, std::any Feature_9) {
int lNodeIndex = get_decision_tree_node_index(Feature_0, Feature_1, Feature_2, Feature_3, Feature_4, Feature_5, Feature_6, Feature_7, Feature_8, Feature_9);
std::vector<double> lNodeValue = Decision_Tree_Node_data[ lNodeIndex ];
tTable lTable;
std::any lEstimator = lNodeValue [ 0 ];
lTable[ "Estimator" ] = { lEstimator };
return lTable;
}
tTable compute_model_outputs_from_table( tTable const & iTable) {
tTable lTable = compute_regression(iTable.at("Feature_0")[0], iTable.at("Feature_1")[0], iTable.at("Feature_2")[0], iTable.at("Feature_3")[0], iTable.at("Feature_4")[0], iTable.at("Feature_5")[0], iTable.at("Feature_6")[0], iTable.at("Feature_7")[0], iTable.at("Feature_8")[0], iTable.at("Feature_9")[0]);
return lTable;
}
} // eof namespace SubModel_11_0
namespace SubModel_12_0 {
typedef std::vector<double> tNodeData;
std::map<int, tNodeData> Decision_Tree_Node_data = {
{ 3 , {-115.6145424 }} ,
{ 4 , {-34.72689534 }} ,
{ 6 , {14.56573633 }} ,
{ 7 , {252.22129678 }} ,
{ 10 , {-3.82679881 }} ,
{ 11 , {81.07500107 }} ,
{ 13 , {235.47886906 }} ,
{ 14 , {79.33495269 }}
};
int get_decision_tree_node_index(std::any Feature_0, std::any Feature_1, std::any Feature_2, std::any Feature_3, std::any Feature_4, std::any Feature_5, std::any Feature_6, std::any Feature_7, std::any Feature_8, std::any Feature_9) {
int lNodeIndex = (Feature_2 <= 0.4864888936281204) ? ( (Feature_7 <= 0.12788642197847366) ? ( (Feature_6 <= -0.19785263389348984) ? ( 3 ) : ( 4 ) ) : ( (Feature_5 <= 1.4352846145629883) ? ( 6 ) : ( 7 ) ) ) : ( (Feature_0 <= 1.8744382858276367) ? ( (Feature_1 <= -0.19500725716352463) ? ( 10 ) : ( 11 ) ) : ( (Feature_9 <= 0.5527465343475342) ? ( 13 ) : ( 14 ) ) );
return lNodeIndex;
}
std::vector<std::string> get_input_names(){
std::vector<std::string> lFeatures = { "Feature_0", "Feature_1", "Feature_2", "Feature_3", "Feature_4", "Feature_5", "Feature_6", "Feature_7", "Feature_8", "Feature_9" };
return lFeatures;
}
std::vector<std::string> get_output_names(){
std::vector<std::string> lOutputs = { "Estimator" };
return lOutputs;
}
tTable compute_regression(std::any Feature_0, std::any Feature_1, std::any Feature_2, std::any Feature_3, std::any Feature_4, std::any Feature_5, std::any Feature_6, std::any Feature_7, std::any Feature_8, std::any Feature_9) {
int lNodeIndex = get_decision_tree_node_index(Feature_0, Feature_1, Feature_2, Feature_3, Feature_4, Feature_5, Feature_6, Feature_7, Feature_8, Feature_9);
std::vector<double> lNodeValue = Decision_Tree_Node_data[ lNodeIndex ];
tTable lTable;
std::any lEstimator = lNodeValue [ 0 ];
lTable[ "Estimator" ] = { lEstimator };
return lTable;
}
tTable compute_model_outputs_from_table( tTable const & iTable) {
tTable lTable = compute_regression(iTable.at("Feature_0")[0], iTable.at("Feature_1")[0], iTable.at("Feature_2")[0], iTable.at("Feature_3")[0], iTable.at("Feature_4")[0], iTable.at("Feature_5")[0], iTable.at("Feature_6")[0], iTable.at("Feature_7")[0], iTable.at("Feature_8")[0], iTable.at("Feature_9")[0]);
return lTable;
}
} // eof namespace SubModel_12_0
namespace SubModel_13_0 {
typedef std::vector<double> tNodeData;
std::map<int, tNodeData> Decision_Tree_Node_data = {
{ 3 , {-123.89772888 }} ,
{ 4 , {-216.00531261 }} ,
{ 6 , {-17.9289167 }} ,
{ 7 , {-140.2554795 }} ,
{ 10 , {-77.24167357 }} ,
{ 11 , {4.27756279 }} ,
{ 13 , {27.77869135 }} ,
{ 14 , {142.30413692 }}
};
int get_decision_tree_node_index(std::any Feature_0, std::any Feature_1, std::any Feature_2, std::any Feature_3, std::any Feature_4, std::any Feature_5, std::any Feature_6, std::any Feature_7, std::any Feature_8, std::any Feature_9) {
int lNodeIndex = (Feature_4 <= -1.0482117533683777) ? ( (Feature_5 <= 0.21651247143745422) ? ( (Feature_8 <= 0.12232283083721995) ? ( 3 ) : ( 4 ) ) : ( (Feature_5 <= 1.1149399280548096) ? ( 6 ) : ( 7 ) ) ) : ( (Feature_8 <= -0.5495923459529877) ? ( (Feature_6 <= -0.16602688655257225) ? ( 10 ) : ( 11 ) ) : ( (Feature_0 <= 1.1636798977851868) ? ( 13 ) : ( 14 ) ) );
return lNodeIndex;
}
std::vector<std::string> get_input_names(){
std::vector<std::string> lFeatures = { "Feature_0", "Feature_1", "Feature_2", "Feature_3", "Feature_4", "Feature_5", "Feature_6", "Feature_7", "Feature_8", "Feature_9" };
return lFeatures;
}
std::vector<std::string> get_output_names(){
std::vector<std::string> lOutputs = { "Estimator" };
return lOutputs;
}
tTable compute_regression(std::any Feature_0, std::any Feature_1, std::any Feature_2, std::any Feature_3, std::any Feature_4, std::any Feature_5, std::any Feature_6, std::any Feature_7, std::any Feature_8, std::any Feature_9) {
int lNodeIndex = get_decision_tree_node_index(Feature_0, Feature_1, Feature_2, Feature_3, Feature_4, Feature_5, Feature_6, Feature_7, Feature_8, Feature_9);
std::vector<double> lNodeValue = Decision_Tree_Node_data[ lNodeIndex ];
tTable lTable;
std::any lEstimator = lNodeValue [ 0 ];
lTable[ "Estimator" ] = { lEstimator };
return lTable;
}
tTable compute_model_outputs_from_table( tTable const & iTable) {
tTable lTable = compute_regression(iTable.at("Feature_0")[0], iTable.at("Feature_1")[0], iTable.at("Feature_2")[0], iTable.at("Feature_3")[0], iTable.at("Feature_4")[0], iTable.at("Feature_5")[0], iTable.at("Feature_6")[0], iTable.at("Feature_7")[0], iTable.at("Feature_8")[0], iTable.at("Feature_9")[0]);
return lTable;
}
} // eof namespace SubModel_13_0
namespace SubModel_14_0 {
typedef std::vector<double> tNodeData;
std::map<int, tNodeData> Decision_Tree_Node_data = {
{ 3 , {-108.5983864 }} ,
{ 4 , {-34.77991095 }} ,
{ 6 , {57.17104373 }} ,
{ 7 , {84.04694586 }} ,
{ 10 , {-40.71594514 }} ,
{ 11 , {62.26102821 }} ,
{ 13 , {40.54914464 }} ,
{ 14 , {139.89083647 }}
};
int get_decision_tree_node_index(std::any Feature_0, std::any Feature_1, std::any Feature_2, std::any Feature_3, std::any Feature_4, std::any Feature_5, std::any Feature_6, std::any Feature_7, std::any Feature_8, std::any Feature_9) {
int lNodeIndex = (Feature_5 <= -0.6693825721740723) ? ( (Feature_2 <= 0.8048999309539795) ? ( (Feature_8 <= 0.3638743758201599) ? ( 3 ) : ( 4 ) ) : ( (Feature_4 <= 0.8961740070953965) ? ( 6 ) : ( 7 ) ) ) : ( (Feature_8 <= -0.1578926146030426) ? ( (Feature_1 <= 1.1039375066757202) ? ( 10 ) : ( 11 ) ) : ( (Feature_0 <= 1.1356269121170044) ? ( 13 ) : ( 14 ) ) );
return lNodeIndex;
}
std::vector<std::string> get_input_names(){
std::vector<std::string> lFeatures = { "Feature_0", "Feature_1", "Feature_2", "Feature_3", "Feature_4", "Feature_5", "Feature_6", "Feature_7", "Feature_8", "Feature_9" };
return lFeatures;
}
std::vector<std::string> get_output_names(){
std::vector<std::string> lOutputs = { "Estimator" };
return lOutputs;
}
tTable compute_regression(std::any Feature_0, std::any Feature_1, std::any Feature_2, std::any Feature_3, std::any Feature_4, std::any Feature_5, std::any Feature_6, std::any Feature_7, std::any Feature_8, std::any Feature_9) {
int lNodeIndex = get_decision_tree_node_index(Feature_0, Feature_1, Feature_2, Feature_3, Feature_4, Feature_5, Feature_6, Feature_7, Feature_8, Feature_9);
std::vector<double> lNodeValue = Decision_Tree_Node_data[ lNodeIndex ];
tTable lTable;
std::any lEstimator = lNodeValue [ 0 ];
lTable[ "Estimator" ] = { lEstimator };
return lTable;
}
tTable compute_model_outputs_from_table( tTable const & iTable) {
tTable lTable = compute_regression(iTable.at("Feature_0")[0], iTable.at("Feature_1")[0], iTable.at("Feature_2")[0], iTable.at("Feature_3")[0], iTable.at("Feature_4")[0], iTable.at("Feature_5")[0], iTable.at("Feature_6")[0], iTable.at("Feature_7")[0], iTable.at("Feature_8")[0], iTable.at("Feature_9")[0]);
return lTable;
}
} // eof namespace SubModel_14_0
namespace SubModel_15_0 {
typedef std::vector<double> tNodeData;
std::map<int, tNodeData> Decision_Tree_Node_data = {
{ 3 , {-83.28721963 }} ,
{ 4 , {0.53064747 }} ,
{ 6 , {-5.68985872 }} ,
{ 7 , {114.34673219 }} ,
{ 10 , {127.53386061 }} ,
{ 11 , {5.64255842 }} ,
{ 13 , {-0.36194169 }} ,
{ 14 , {98.24968542 }}
};
int get_decision_tree_node_index(std::any Feature_0, std::any Feature_1, std::any Feature_2, std::any Feature_3, std::any Feature_4, std::any Feature_5, std::any Feature_6, std::any Feature_7, std::any Feature_8, std::any Feature_9) {
int lNodeIndex = (Feature_2 <= 0.8179076910018921) ? ( (Feature_5 <= 0.2265688106417656) ? ( (Feature_3 <= 0.610985666513443) ? ( 3 ) : ( 4 ) ) : ( (Feature_7 <= 1.010027289390564) ? ( 6 ) : ( 7 ) ) ) : ( (Feature_8 <= -0.1578926146030426) ? ( (Feature_6 <= -1.792996883392334) ? ( 10 ) : ( 11 ) ) : ( (Feature_6 <= -1.3490328192710876) ? ( 13 ) : ( 14 ) ) );
return lNodeIndex;
}
std::vector<std::string> get_input_names(){
std::vector<std::string> lFeatures = { "Feature_0", "Feature_1", "Feature_2", "Feature_3", "Feature_4", "Feature_5", "Feature_6", "Feature_7", "Feature_8", "Feature_9" };
return lFeatures;
}
std::vector<std::string> get_output_names(){
std::vector<std::string> lOutputs = { "Estimator" };
return lOutputs;
}
tTable compute_regression(std::any Feature_0, std::any Feature_1, std::any Feature_2, std::any Feature_3, std::any Feature_4, std::any Feature_5, std::any Feature_6, std::any Feature_7, std::any Feature_8, std::any Feature_9) {
int lNodeIndex = get_decision_tree_node_index(Feature_0, Feature_1, Feature_2, Feature_3, Feature_4, Feature_5, Feature_6, Feature_7, Feature_8, Feature_9);
std::vector<double> lNodeValue = Decision_Tree_Node_data[ lNodeIndex ];
tTable lTable;
std::any lEstimator = lNodeValue [ 0 ];
lTable[ "Estimator" ] = { lEstimator };
return lTable;
}
tTable compute_model_outputs_from_table( tTable const & iTable) {
tTable lTable = compute_regression(iTable.at("Feature_0")[0], iTable.at("Feature_1")[0], iTable.at("Feature_2")[0], iTable.at("Feature_3")[0], iTable.at("Feature_4")[0], iTable.at("Feature_5")[0], iTable.at("Feature_6")[0], iTable.at("Feature_7")[0], iTable.at("Feature_8")[0], iTable.at("Feature_9")[0]);
return lTable;
}
} // eof namespace SubModel_15_0
std::vector<std::string> get_input_names(){
std::vector<std::string> lFeatures = { "Feature_0", "Feature_1", "Feature_2", "Feature_3", "Feature_4", "Feature_5", "Feature_6", "Feature_7", "Feature_8", "Feature_9" };
return lFeatures;
}
std::vector<std::string> get_output_names(){
std::vector<std::string> lOutputs = { "Estimator" };
return lOutputs;
}
tTable compute_regression(std::any Feature_0, std::any Feature_1, std::any Feature_2, std::any Feature_3, std::any Feature_4, std::any Feature_5, std::any Feature_6, std::any Feature_7, std::any Feature_8, std::any Feature_9) {
std::vector<tTable> lTreeScores = {
SubModel_0_0::compute_regression(Feature_0, Feature_1, Feature_2, Feature_3, Feature_4, Feature_5, Feature_6, Feature_7, Feature_8, Feature_9),
SubModel_1_0::compute_regression(Feature_0, Feature_1, Feature_2, Feature_3, Feature_4, Feature_5, Feature_6, Feature_7, Feature_8, Feature_9),
SubModel_2_0::compute_regression(Feature_0, Feature_1, Feature_2, Feature_3, Feature_4, Feature_5, Feature_6, Feature_7, Feature_8, Feature_9),
SubModel_3_0::compute_regression(Feature_0, Feature_1, Feature_2, Feature_3, Feature_4, Feature_5, Feature_6, Feature_7, Feature_8, Feature_9),
SubModel_4_0::compute_regression(Feature_0, Feature_1, Feature_2, Feature_3, Feature_4, Feature_5, Feature_6, Feature_7, Feature_8, Feature_9),
SubModel_5_0::compute_regression(Feature_0, Feature_1, Feature_2, Feature_3, Feature_4, Feature_5, Feature_6, Feature_7, Feature_8, Feature_9),
SubModel_6_0::compute_regression(Feature_0, Feature_1, Feature_2, Feature_3, Feature_4, Feature_5, Feature_6, Feature_7, Feature_8, Feature_9),
SubModel_7_0::compute_regression(Feature_0, Feature_1, Feature_2, Feature_3, Feature_4, Feature_5, Feature_6, Feature_7, Feature_8, Feature_9),
SubModel_8_0::compute_regression(Feature_0, Feature_1, Feature_2, Feature_3, Feature_4, Feature_5, Feature_6, Feature_7, Feature_8, Feature_9),
SubModel_9_0::compute_regression(Feature_0, Feature_1, Feature_2, Feature_3, Feature_4, Feature_5, Feature_6, Feature_7, Feature_8, Feature_9),
SubModel_10_0::compute_regression(Feature_0, Feature_1, Feature_2, Feature_3, Feature_4, Feature_5, Feature_6, Feature_7, Feature_8, Feature_9),
SubModel_11_0::compute_regression(Feature_0, Feature_1, Feature_2, Feature_3, Feature_4, Feature_5, Feature_6, Feature_7, Feature_8, Feature_9),
SubModel_12_0::compute_regression(Feature_0, Feature_1, Feature_2, Feature_3, Feature_4, Feature_5, Feature_6, Feature_7, Feature_8, Feature_9),
SubModel_13_0::compute_regression(Feature_0, Feature_1, Feature_2, Feature_3, Feature_4, Feature_5, Feature_6, Feature_7, Feature_8, Feature_9),
SubModel_14_0::compute_regression(Feature_0, Feature_1, Feature_2, Feature_3, Feature_4, Feature_5, Feature_6, Feature_7, Feature_8, Feature_9),
SubModel_15_0::compute_regression(Feature_0, Feature_1, Feature_2, Feature_3, Feature_4, Feature_5, Feature_6, Feature_7, Feature_8, Feature_9)
};
tTable lAggregatedTable = aggregate_gb_scores(lTreeScores, { "Estimator" });
tTable lTable;
std::any lEstimator = 26.40585273065242 + 0.1 * lAggregatedTable[ "Estimator" ][0];
lTable[ "Estimator" ] = { lEstimator };
return lTable;
}
tTable compute_model_outputs_from_table( tTable const & iTable) {
tTable lTable = compute_regression(iTable.at("Feature_0")[0], iTable.at("Feature_1")[0], iTable.at("Feature_2")[0], iTable.at("Feature_3")[0], iTable.at("Feature_4")[0], iTable.at("Feature_5")[0], iTable.at("Feature_6")[0], iTable.at("Feature_7")[0], iTable.at("Feature_8")[0], iTable.at("Feature_9")[0]);
return lTable;
}
} // eof namespace
int main() {
score_csv_file("outputs/ml2cpp-demo/datasets/RandomReg_10.csv");
return 0;
}
|
c1c8258d5f0b2fd8867fbd01c1911af52690eae4 | a18daf3156b54a92f26b37cc9f995827fa61363f | /study_2dbuffer.cpp | a71924c5b4ecb2935a7eebace7baac95cd5b9fdb | [] | no_license | hhcoder/StudyTMP | 59127083b086305f2ef1fe09325d844bd977cf7b | 5519c09aaac3095362c239cfcf318e56b9ddd4ad | refs/heads/master | 2021-06-26T15:57:25.252646 | 2021-04-10T18:43:07 | 2021-04-10T18:43:07 | 225,933,582 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,458 | cpp | study_2dbuffer.cpp | #include <string>
#include <fstream>
#include <vector>
#include <iostream>
namespace StudyBuffer
{
template <typename T>
class placement_memory_allocator
{
void* pre_allocated_memory;
public:
typedef size_t size_type;
typedef T* pointer;
typedef const T* const_pointer;
template<typename _Tp1>
struct rebind
{
typedef placement_memory_allocator<_Tp1> other;
};
pointer allocate(size_type n, const void *hint=0)
{
char* p = new(pre_allocated_memory) char [n * sizeof(T)];
return static_cast<T*>(p);
}
void deallocate(pointer p, size_type n)
{
std::cout << "deallocate does nothing" << std::endl;
}
placement_memory_allocator(T* p = 0)
: pre_allocated_memory(p)
{ std::cout << "Hello allocator!" << std::endl; }
placement_memory_allocator(const placement_memory_allocator &a)
{
pre_allocated_memory = a.pre_allocated_memory;
}
~placement_memory_allocator() throw() { }
};
template <typename T, typename AllocatorType = std::allocator<T>>
class Buf2D : public std::vector<T, AllocatorType> // default allocator
{
public:
using size_type = typename std::vector<T, AllocatorType>::size_type;
public:
Buf2D(const int in_width, const int in_height, const int in_stride, T* in_ext_buf)
: width(in_width),
height(in_height),
stride(in_stride),
allocator(in_ext_buf),
std::vector<T, AllocatorType>(allocator)
{}
Buf2D(const int in_width, const int in_height)
: width(in_width),
height(in_height),
stride(width),
std::vector<T, AllocatorType>(PixelCount())
{}
~Buf2D() {}
int Write(const char* out_fname)
{
// FILE* fp = fopen(out_fname, "wb");
// if (NULL == fp)
// return GeneralError::Fail;
// fwrite(buf, sizeof(T), PixelCount(), fp);
// fclose(fp);
return 1;
}
public:
inline int Width() const { return width; }
inline int Height() const { return height; }
inline int Stride() const { return stride; }
inline size_type PixelCount() const { return stride*height; }
inline decltype(auto) Begin() { return buf; }
protected:
int width;
int height;
int stride;
T* buf;
AllocatorType allocator;
};
void Exe()
{
Buf2D<uint16_t> internal_buf(640, 480);
double* ptr = new double[640*480];
// Buf2D<double> external_buf(640, 480, 640, ptr);
placement_memory_allocator<int> pl(nullptr);
std::vector<int, placement_memory_allocator<int>> my_vec(pl);
}
}
namespace StudyPlacementNew
{
void Exe()
{
int a[] = {1, 3, 5, 7, 9};
{
int* pa = new (a) int [5];
for (int i=0; i<5; i++)
std::cout << pa[i] << std::endl;
std::cout << "a: " << a << std::endl;
std::cout << "pa: " << pa << std::endl;
// delete[] pa;
::operator delete[](pa, 5);
}
}
}
namespace StudyScope
{
// template <typename T>
// struct MyVector : std::vector<T>
// {
// };
template <typename T>
struct BaseContainer
{
BaseContainer(int len)
{
}
typedef size_t size_type;
};
struct MyContainer : BaseContainer<int>
{
size_type length;
};
void Exe()
{
}
}
int main(int argc, char* argv[])
{
StudyPlacementNew::Exe();
StudyScope::Exe();
return 0;
}
|
1ca9c692421d1a8e7b3de2aabe88386d63ebda2a | b1b7e3d27e41651187295a4d1a10343a85f00646 | /src/luxa/style/MenuStyle.cxx | 0d7c62ba9a8fd56e728019dff94bfb94d6560860 | [] | no_license | sigsegv42/luxa | 75f74c8c370112c27737250948286f6f8f67f4b8 | 325971feac0027ddbd0b5146f885f3dd5af9d472 | refs/heads/master | 2020-05-19T03:17:59.665938 | 2013-05-18T05:55:28 | 2013-05-18T05:55:28 | 28,616,277 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 195 | cxx | MenuStyle.cxx | /**
* (c) Joshua Farr <j.wgasa@gmail.com>
*/
#include "MenuStyle.h"
using namespace Luxa;
MenuStyle::MenuStyle(const std::string & str) : Style(str, "menu")
{
}
MenuStyle::~MenuStyle()
{
}
|
36b8fe81043b42d7388b6462c1eca706a2a04cf5 | ef187d259d33e97c7b9ed07dfbf065cec3e41f59 | /work/atcoder/arc/arc080/F/answers/487822_MTWOCZWEIXVI.cpp | 18bb14dc827496cd36525eb82e33809274af9651 | [] | no_license | kjnh10/pcw | 847f7295ea3174490485ffe14ce4cdea0931c032 | 8f677701bce15517fb9362cc5b596644da62dca8 | refs/heads/master | 2020-03-18T09:54:23.442772 | 2018-07-19T00:26:09 | 2018-07-19T00:26:09 | 134,586,379 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,445 | cpp | 487822_MTWOCZWEIXVI.cpp | #include<bits/stdc++.h>
#define HEAP priority_queue
#define rep(i, n) for(int i = 0, _end_ = (n); i < _end_; ++i)
#define per(i, n) for(int i = (n) - 1; i >= 0 ; --i)
#define forn(i, l, r) for(int i = (l), _end_ = (r); i <= _end_; ++i)
#define nrof(i, r, l) for(int i = (r), _end_ = (l); i >= _end_; --i)
#define FOR(a, b) for(auto (a): (b))
#define mp make_pair
#define mt make_tuple
#define pb push_back
#define X first
#define Y second
#define eps 1e-6
#define pi 3.1415926535897932384626433832795
#define SZ(x) (int)x.size()
#define ALL(x) x.begin(), x.end()
using namespace std;
typedef long long LL;
typedef double flt;
typedef vector<int> vi;
typedef vector<LL> vl;
typedef pair<int,int> pii;
typedef pair<int,LL> pil;
typedef pair<LL,int> pli;
typedef pair<LL,LL> pll;
typedef vector<pil> vil;
typedef vector<pii> vii;
typedef vector<pli> vli;
typedef vector<pll> vll;
const int iinf = 1e9 + 7;
const int oo = 0x3f3f3f3f;
const LL linf = 1ll << 60;
const flt dinf = 1e60;
template <typename T> inline void scf(T &x)
{
bool f = 0;
x = 0;
char c = getchar();
while(c != '-' && (c < '0' || c > '9')) c = getchar();
if(c == '-') f = 1, c = getchar();
while(c >= '0' && c <= '9') x = x * 10 + c - '0', c = getchar();
if(f) x = -x;
return;
}
template <typename T1, typename T2> void scf(T1 &x, T2 &y)
{
scf(x);
return scf(y);
}
template <typename T1, typename T2, typename T3> void scf(T1 &x, T2 &y, T3 &z)
{
scf(x);
scf(y);
return scf(z);
}
template <typename T1, typename T2, typename T3, typename T4> void scf(T1 &x, T2 &y, T3 &z, T4 &w)
{
scf(x);
scf(y);
scf(z);
return scf(w);
}
inline char mygetchar()
{
char c = getchar();
while(c == ' ' || c == '\n') c = getchar();
return c;
}
template <typename T> inline bool chkmax(T &x, const T &y)
{
return y > x ? x = y, 1 : 0;
}
template <typename T> inline bool chkmin(T &x, const T &y)
{
return y < x ? x = y, 1 : 0;
}
#ifdef King_George
#define DEBUG
#define debug(...) fprintf(stderr, __VA_ARGS__)
#else
#define debug(...)
#endif
//---------------------------------------------------------head----------------------------------------------------
const int INF = 2147483647;
const int MaxN = 400;
const int MaxM = 79800;
template <class T>
inline void tension(T &a, const T &b)
{
if (b < a)
a = b;
}
template <class T>
inline void relax(T &a, const T &b)
{
if (b > a)
a = b;
}
template <class T>
inline int size(const T &a)
{
return (int)a.size();
}
inline int getint()
{
char c;
while (c = getchar(), '0' > c || c > '9');
int res = c - '0';
while (c = getchar(), '0' <= c && c <= '9')
res = res * 10 + c - '0';
return res;
}
const int MaxNX = MaxN + MaxN;
struct edge
{
int v, u, w;
edge(){}
edge(const int &_v, const int &_u, const int &_w)
: v(_v), u(_u), w(_w){}
};
int n, m;
edge mat[MaxNX + 1][MaxNX + 1];
int n_matches;
LL tot_weight;
int mate[MaxNX + 1];
int lab[MaxNX + 1];
int q_n, q[MaxN];
int fa[MaxNX + 1], col[MaxNX + 1];
int slackv[MaxNX + 1];
int n_x;
int bel[MaxNX + 1], blofrom[MaxNX + 1][MaxNX + 1];
vector<int> bloch[MaxNX + 1];
inline int e_delta(const edge &e) // does not work inside blossoms
{
return lab[e.v] + lab[e.u] - mat[e.v][e.u].w * 2;
}
inline void update_slackv(int v, int x)
{
if (!slackv[x] || e_delta(mat[v][x]) < e_delta(mat[slackv[x]][x]))
slackv[x] = v;
}
inline void calc_slackv(int x)
{
slackv[x] = 0;
for (int v = 1; v <= n; v++)
if (mat[v][x].w > 0 && bel[v] != x && col[bel[v]] == 0)
update_slackv(v, x);
}
inline void q_push(int x)
{
if (x <= n)
q[q_n++] = x;
else
{
for (int i = 0; i < size(bloch[x]); i++)
q_push(bloch[x][i]);
}
}
inline void set_mate(int xv, int xu)
{
mate[xv] = mat[xv][xu].u;
if (xv > n)
{
edge e = mat[xv][xu];
int xr = blofrom[xv][e.v];
int pr = find(bloch[xv].begin(), bloch[xv].end(), xr) - bloch[xv].begin();
if (pr % 2 == 1)
{
reverse(bloch[xv].begin() + 1, bloch[xv].end());
pr = size(bloch[xv]) - pr;
}
for (int i = 0; i < pr; i++)
set_mate(bloch[xv][i], bloch[xv][i ^ 1]);
set_mate(xr, xu);
rotate(bloch[xv].begin(), bloch[xv].begin() + pr, bloch[xv].end());
}
}
inline void set_bel(int x, int b)
{
bel[x] = b;
if (x > n)
{
for (int i = 0; i < size(bloch[x]); i++)
set_bel(bloch[x][i], b);
}
}
inline void augment(int xv, int xu)
{
while (true)
{
int xnu = bel[mate[xv]];
set_mate(xv, xu);
if (!xnu)
return;
set_mate(xnu, bel[fa[xnu]]);
xv = bel[fa[xnu]], xu = xnu;
}
}
inline int get_lca(int xv, int xu)
{
static bool book[MaxNX + 1];
for (int x = 1; x <= n_x; x++)
book[x] = false;
while (xv || xu)
{
if (xv)
{
if (book[xv])
return xv;
book[xv] = true;
xv = bel[mate[xv]];
if (xv)
xv = bel[fa[xv]];
}
swap(xv, xu);
}
return 0;
}
inline void add_blossom(int xv, int xa, int xu)
{
int b = n + 1;
while (b <= n_x && bel[b])
b++;
if (b > n_x)
n_x++;
lab[b] = 0;
col[b] = 0;
mate[b] = mate[xa];
bloch[b].clear();
bloch[b].push_back(xa);
for (int x = xv; x != xa; x = bel[fa[bel[mate[x]]]])
bloch[b].push_back(x), bloch[b].push_back(bel[mate[x]]), q_push(bel[mate[x]]);
reverse(bloch[b].begin() + 1, bloch[b].end());
for (int x = xu; x != xa; x = bel[fa[bel[mate[x]]]])
bloch[b].push_back(x), bloch[b].push_back(bel[mate[x]]), q_push(bel[mate[x]]);
set_bel(b, b);
for (int x = 1; x <= n_x; x++)
{
mat[b][x].w = mat[x][b].w = 0;
blofrom[b][x] = 0;
}
for (int i = 0; i < size(bloch[b]); i++)
{
int xs = bloch[b][i];
for (int x = 1; x <= n_x; x++)
if (mat[b][x].w == 0 || e_delta(mat[xs][x]) < e_delta(mat[b][x]))
mat[b][x] = mat[xs][x], mat[x][b] = mat[x][xs];
for (int x = 1; x <= n_x; x++)
if (blofrom[xs][x])
blofrom[b][x] = xs;
}
calc_slackv(b);
}
inline void expand_blossom1(int b) // lab[b] == 1
{
for (int i = 0; i < size(bloch[b]); i++)
set_bel(bloch[b][i], bloch[b][i]);
int xr = blofrom[b][mat[b][fa[b]].v];
int pr = find(bloch[b].begin(), bloch[b].end(), xr) - bloch[b].begin();
if (pr % 2 == 1)
{
reverse(bloch[b].begin() + 1, bloch[b].end());
pr = size(bloch[b]) - pr;
}
for (int i = 0; i < pr; i += 2)
{
int xs = bloch[b][i], xns = bloch[b][i + 1];
fa[xs] = mat[xns][xs].v;
col[xs] = 1, col[xns] = 0;
slackv[xs] = 0, calc_slackv(xns);
q_push(xns);
}
col[xr] = 1;
fa[xr] = fa[b];
for (int i = pr + 1; i < size(bloch[b]); i++)
{
int xs = bloch[b][i];
col[xs] = -1;
calc_slackv(xs);
}
bel[b] = 0;
}
inline void expand_blossom_final(int b) // at the final stage
{
for (int i = 0; i < size(bloch[b]); i++)
{
if (bloch[b][i] > n && lab[bloch[b][i]] == 0)
expand_blossom_final(bloch[b][i]);
else
set_bel(bloch[b][i], bloch[b][i]);
}
bel[b] = 0;
}
inline bool on_found_edge(const edge &e)
{
int xv = bel[e.v], xu = bel[e.u];
if (col[xu] == -1)
{
int nv = bel[mate[xu]];
fa[xu] = e.v;
col[xu] = 1, col[nv] = 0;
slackv[xu] = slackv[nv] = 0;
q_push(nv);
}
else if (col[xu] == 0)
{
int xa = get_lca(xv, xu);
if (!xa)
{
augment(xv, xu), augment(xu, xv);
for (int b = n + 1; b <= n_x; b++)
if (bel[b] == b && lab[b] == 0)
expand_blossom_final(b);
return true;
}
else
add_blossom(xv, xa, xu);
}
return false;
}
bool match()
{
for (int x = 1; x <= n_x; x++)
col[x] = -1, slackv[x] = 0;
q_n = 0;
for (int x = 1; x <= n_x; x++)
if (bel[x] == x && !mate[x])
fa[x] = 0, col[x] = 0, slackv[x] = 0, q_push(x);
if (q_n == 0)
return false;
while (true)
{
for (int i = 0; i < q_n; i++)
{
int v = q[i];
for (int u = 1; u <= n; u++)
if (mat[v][u].w > 0 && bel[v] != bel[u])
{
int d = e_delta(mat[v][u]);
if (d == 0)
{
if (on_found_edge(mat[v][u]))
return true;
}
else if (col[bel[u]] == -1 || col[bel[u]] == 0)
update_slackv(v, bel[u]);
}
}
int d = INF;
for (int v = 1; v <= n; v++)
if (col[bel[v]] == 0)
tension(d, lab[v]);
for (int b = n + 1; b <= n_x; b++)
if (bel[b] == b && col[b] == 1)
tension(d, lab[b] / 2);
for (int x = 1; x <= n_x; x++)
if (bel[x] == x && slackv[x])
{
if (col[x] == -1)
tension(d, e_delta(mat[slackv[x]][x]));
else if (col[x] == 0)
tension(d, e_delta(mat[slackv[x]][x]) / 2);
}
for (int v = 1; v <= n; v++)
{
if (col[bel[v]] == 0)
lab[v] -= d;
else if (col[bel[v]] == 1)
lab[v] += d;
}
for (int b = n + 1; b <= n_x; b++)
if (bel[b] == b)
{
if (col[bel[b]] == 0)
lab[b] += d * 2;
else if (col[bel[b]] == 1)
lab[b] -= d * 2;
}
q_n = 0;
for (int v = 1; v <= n; v++)
if (lab[v] == 0) // all unmatched vertices' labels are zero! cheers!
return false;
for (int x = 1; x <= n_x; x++)
if (bel[x] == x && slackv[x] && bel[slackv[x]] != x && e_delta(mat[slackv[x]][x]) == 0)
{
if (on_found_edge(mat[slackv[x]][x]))
return true;
}
for (int b = n + 1; b <= n_x; b++)
if (bel[b] == b && col[b] == 1 && lab[b] == 0)
expand_blossom1(b);
}
return false;
}
void calc_max_weight_match()
{
for (int v = 1; v <= n; v++)
mate[v] = 0;
n_x = n;
n_matches = 0;
tot_weight = 0;
bel[0] = 0;
for (int v = 1; v <= n; v++)
bel[v] = v, bloch[v].clear();
for (int v = 1; v <= n; v++)
for (int u = 1; u <= n; u++)
blofrom[v][u] = v == u ? v : 0;
int w_max = 0;
for (int v = 1; v <= n; v++)
for (int u = 1; u <= n; u++)
relax(w_max, mat[v][u].w);
for (int v = 1; v <= n; v++)
lab[v] = w_max;
while (match())
n_matches++;
for (int v = 1; v <= n; v++)
if (mate[v] && mate[v] < v)
tot_weight += mat[v][mate[v]].w;
}
const int maxn = 210;
const int maxm = 1e7 + 10;
inline bool isp(int n)
{
for(int i = 2; i * i <= n; ++i) if(n % i == 0) return 0;
return 1;
}
int calc(int n)
{
if(n % 2 == 0) return 2;
if(n == 1) return 3;
if(isp(n)) return 1;
return 3;
}
bool f[maxm];
int a[maxn];
int g[maxn][maxn];
int main()
{
scf(n);
while(n--)
{
int x;
scf(x);
f[x] = 1;
}
n = 0;
for(int i = 1; i <= 10000001; ++i) if(f[i] ^ f[i - 1]) a[n++] = i;
rep(i, n) rep(j, i) g[i][j] = g[j][i] = 4 - calc(abs(a[i] - a[j]));
#ifdef DEBUG
rep(i, n) printf("%d ", a[i]); puts("");
puts("");
rep(i, n)
{
rep(j, n) printf("%d ", g[i][j]);
puts("");
}
#endif
for (int v = 1; v <= n; v++)
for (int u = 1; u <= n; u++)
mat[v][u] = edge(v, u, 0);
forn(u, 1, n) forn(v, 1, u - 1)
{
mat[u][v].w = mat[v][u].w = g[u - 1][v - 1];
}
calc_max_weight_match();
printf("%d\n", n * 2 - tot_weight);
return 0;
} |
7aac142481c7f16fabdf01be2d26ff6257fc2b1c | dfc8fe480708a27a892d03a98fcccea22fee59fb | /port.cpp | 91f134ba833904765a041fdd91c8aa2cedee121e | [] | no_license | puddingmomentum/Azriel | dd4c4003ca44c48db326120afa7786f96a57cf28 | b7ed0e1425332ab7782114cbed8b1b3e353a4039 | refs/heads/master | 2022-10-08T18:06:49.990276 | 2022-09-16T09:44:37 | 2022-09-16T09:44:37 | 55,926,443 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,054 | cpp | port.cpp | #include "port.h"
Port::Port() : id(0), name(), latitude(), longitude(), gun(false), commodities()
{
commodities.insert("Food", 0);
commodities.insert("Cloth", 0);
commodities.insert("Minerals", 0);
commodities.insert("Wine", 0);
commodities.insert("Grain", 0);
commodities.insert("Timber", 0);
commodities.insert("Paper", 0);
commodities.insert("Leather", 0);
}
Port::~Port() {}
void Port::setId(int i)
{
id = i;
}
void Port::setName(QString n)
{
name = n;
}
void Port::setLongitude(QString s) {
longitude = s;
}
void Port::setLatitude(QString s) {
latitude = s;
}
void Port::setGun(QString g) {
gun = g.data()[0];
}
void Port::setCommodity(QMap<QString, int> c){
commodities = c;
}
QString Port::getName()
{
return name;
}
QString Port::getLongitude() {
return longitude;
}
QString Port::getLatitude() {
return latitude;
}
QChar Port::getGun()
{
return gun;
}
QMap<QString, int> Port::getCommodity() {
return commodities;
}
int Port::getId()
{
return id;
}
|
4d2d1153b071e950af1929c23903c622414dab3c | efc68e0a567bbb4b236a2bd27650743f2859ad9b | /trivia.cpp | fd0edf8c3e27af4df319cbb27ecb2a118b46a222 | [] | no_license | MiaArmstrong/Trivia | b5ae98ca604ed9a806c80198a7588bc171065630 | f1c4aaa1fc6d3b3eaef0e519a490a33b89dc35c5 | refs/heads/master | 2021-01-01T17:56:12.780461 | 2015-09-12T04:15:15 | 2015-09-12T04:15:15 | 42,344,298 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,886 | cpp | trivia.cpp | //Mia Armstrong
//CS 163 Assignment 5
//File: trivia.cpp
/* This file contains the functions for the trivia class. */
#include "trivia.h"
//This function sets the title and notes to NULL
trivia::trivia()
{
title = NULL;
notes = NULL;
}
//This function deallocates the title and notes if they are not NULL
trivia::~trivia()
{
if(title)
delete [] title;
if(notes)
delete [] notes;
}
//This function takes in a new title and new noteds and dynamicaly allocates
//them into new arrays in the data memebers.
//It returns an int, 0 for failure and 1 for success.
int trivia::create_entry(char * new_title, char * new_notes)
{
if (title)
delete [] title;
if (notes)
delete [] notes;
if (new_title)
{
title = new char[strlen(new_title) +1];
strcpy(title, new_title); //deep copy title
notes = new char[strlen(new_notes) +1];
strcpy(notes, new_notes); //deep copy notes
return 1;
}
else
return 0;
}
//This function takes the data object as an argument and copies it into the
//trivia data members. It returns an int, 0 for failure and 1 for success.
int trivia::copy_entry(const trivia & new_trivia)
{
if (title)
delete [] title;
if (notes)
delete [] notes; //deallocate memory owned by the current object
if(!new_trivia.title || !new_trivia.notes)
return 0; //check for trivia
if (new_trivia.title)
{
title = new char[strlen(new_trivia.title) +1];
strcpy(title, new_trivia.title); //deep copy title
}
if (new_trivia.notes)
{
notes = new char[strlen(new_trivia.notes) +1];
strcpy(notes, new_trivia.notes); //deep copy notes
}
}
//This function takes an empty trivia object and deep copies the memebers of th
//current object into the found data members.
//It returns a 1 for success and a 0 if there is no data member.
int trivia::retrieve(trivia & found) const
{
if (title)
{
found.title = new char[strlen(title) +1];
strcpy(found.title, title);
found.notes = new char[strlen(notes) +1];
strcpy(found.notes, notes);
return 1;
}
else
return 0;
}
//This function takes in a key title as an argument and compares it to the data menber title.
// It returns true if there is a match or flase if there is no match.
bool trivia::compare (char * key_title)
{
if(!title || !key_title)
return 0;
if (strcmp(title, key_title) == 0)
return true;
else
return false;
}
//This function displays one trivia object.
//it returns 1 for success and 0 for failure.
int trivia::display() const
{
if(title)
{
cout << endl;
cout << "Trivia about: " << title << endl;
cout << " * " << notes << endl;
return 1;
}
else
return 0;
}
|
e6071994f0cbbf5c44ba19d6f31d4b9879b744d8 | bd78a2da8093c8d0bfe87fca42e3a9497a1420e1 | /SourcesCode/ball.cpp | 645a467c40ae180e8c862a864e530ad42b3da184 | [] | no_license | lzh280/CoolBall | eeef8c1bbe48c4f33c0b6607e2eda641b5fd40e6 | c84877e87c4b58c20085658a51c0c49a866b845a | refs/heads/master | 2023-03-18T11:14:14.354185 | 2014-05-01T14:12:15 | 2014-05-01T14:12:15 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,209 | cpp | ball.cpp | #include "ball.h"
#include "utility.h"
#include <QPainter>
Ball::Ball()
{
m_color=produceRandomNumber(5);
m_isSelected=false;
}
Ball::Ball(bool load)
{
if(load)
m_isSelected=false;
}
Ball::~Ball()
{
}
void Ball::beenDrawed(QRect &rect,QPainter *paint)
{
if(!paint)
qDebug("QPainter init failed!");
//设置画笔和填充颜色
switch (m_color) {
case black:
paint->setPen(Qt::black);
paint->setBrush(QBrush(Qt::black,Qt::SolidPattern));
break;
case red:
paint->setPen(Qt::red);
paint->setBrush(QBrush(Qt::red,Qt::SolidPattern));
break;
case green:
paint->setPen(Qt::green);
paint->setBrush(QBrush(Qt::green,Qt::SolidPattern));
break;
case blue:
paint->setPen(Qt::blue);
paint->setBrush(QBrush(Qt::blue,Qt::SolidPattern));
break;
case gray:
paint->setPen(Qt::gray);
paint->setBrush(QBrush(Qt::gray,Qt::SolidPattern));
break;
default:
break;
}
paint->drawEllipse(rect.topLeft().x()+4,rect.topLeft().y()+4
,WIDTH-8,HEIGHT-8);
}
|
549a78d24492e110fd3d3ce48a62a590c11a550e | a680ef85bfdfe1a68a84ac60d92ffb78bb04f2cb | /NearestNeighbor/topological_search.hpp | e7e0b142c96cf3ca1a747e991282e775e048a799 | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | jingtangliao/ff | b2eaceac674b85cf4928fa89ee7f5eb156d6a6a2 | d308fe62045e241a4822bb855df97ee087420d9b | refs/heads/master | 2021-01-01T05:49:49.404482 | 2015-05-19T16:26:57 | 2015-05-19T16:26:57 | 39,890,825 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 26,379 | hpp | topological_search.hpp | /**
* \file topological_search.hpp
*
* This library contains two simple nearest-neighbor search algorithms implemented
* as functor templates. This library contains, in fact, three algorithms.
*
* First, a simple min_dist_linear_search algorithm is provided which is similar to std::min_element
* except that it stores and compares the best distance value associated to the best iterator
* to the current one (it is a simple linear search that avoid recomputation of the distance
* at every iteration, which would be required if std::min_element was used instead).
*
* Second, a linear_neighbor_search algorithm is provided which simply does an exhaustive linear
* search through all the vertices of a graph to find the nearest one to a given point, in a given
* topology (as of topologies in the Boost Graph Library). This algorithms simply wraps the
* min_dist_linear_search with the required distance and comparison function.
*
* Third, a best_only_neighbor_search algorithm is provided which is an approximation to an
* exhaustive linear search by picking a number of random vertices from the graph and performing
* a best only search down the graph to find the "nearest-neighbor". This is, of course, not going
* to find the nearest-neighbor, but can significantly cut down on query time if finding the
* nearest neighbor is not a strict requirement in the algorithm.
*
* \author Sven Mikael Persson <mikael.s.persson@gmail.com>
* \date February 2011
*/
/*
* Copyright 2011 Sven Mikael Persson
*
* THIS SOFTWARE IS DISTRIBUTED UNDER THE TERMS OF THE GNU GENERAL PUBLIC LICENSE v3 (GPLv3).
*
* This file is part of ReaK.
*
* ReaK is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* ReaK 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 ReaK (as LICENSE in the root folder).
* If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef REAK_TOPOLOGICAL_SEARCH_HPP
#define REAK_TOPOLOGICAL_SEARCH_HPP
#include <boost/bind.hpp>
#include <boost/graph/graph_concepts.hpp>
#include <boost/property_map/property_map.hpp>
#include <boost/graph/adjacency_list.hpp>
#include <boost/graph/topology.hpp>
#include <boost/graph/properties.hpp>
#include <vector>
#include <algorithm>
/**
* This function template is similar to std::min_element but can be used when the comparison
* involves computing a derived quantity (a.k.a. distance). This algorithm will search for the
* the element in the range [first,last) which has the "smallest" distance (of course, both the
* distance metric and comparison can be overriden to perform something other than the canonical
* Euclidean distance and less-than comparison, which would yield the element with minimum distance).
* \tparam DistanceValue The value-type for the distance measures.
* \tparam ForwardIterator The forward-iterator type.
* \tparam GetDistanceFunction The functor type to compute the distance measure.
* \tparam CompareFunction The functor type that can compare two distance measures (strict weak-ordering).
* \param first Start of the range in which to search.
* \param last One element past the last element in the range in which to search.
* \param distance A callable object that returns a DistanceValue for a given element from the ForwardIterator dereferencing.
* \param compare A callable object that returns true if the first element is the preferred one (less-than) of the two.
* \param inf A DistanceValue which represents infinity (i.e. the very worst value with which to initialize the search).
* \return The iterator to the best element in the range (best is defined as the one which would compare favorably to all the elements in the range with respect to the distance metric).
*/
template <typename DistanceValue,
typename ForwardIterator,
typename GetDistanceFunction,
typename CompareFunction>
inline ForwardIterator min_dist_linear_search(ForwardIterator first,
ForwardIterator last,
GetDistanceFunction distance,
CompareFunction compare,
DistanceValue inf = std::numeric_limits<DistanceValue>::infinity()) {
if(first == last) return last;
DistanceValue d_best = inf;
ForwardIterator result = last;
for(; first != last; ++first) {
DistanceValue d = distance(*first);
if(compare(d, d_best)) {
d_best = d;
result = first;
};
};
return result;
};
/**
* This function template is a specialization of min_dist_linear_search for the default comparison
* function which is the less-than operator.
* \tparam DistanceValue The value-type for the distance measures.
* \tparam ForwardIterator The forward-iterator type.
* \tparam GetDistanceFunction The functor type to compute the distance measure.
* \param first Start of the range in which to search.
* \param last One element past the last element in the range in which to search.
* \param distance A callable object that returns a DistanceValue for a given element from the ForwardIterator dereferencing.
* \param inf A DistanceValue which represents infinity (i.e. the very worst value with which to initialize the search).
* \return The iterator to the best element in the range (best is defined as the one which would compare favorably to all the elements in the range with respect to the distance metric).
*/
template <typename DistanceValue, typename ForwardIterator, typename GetDistanceFunction>
inline ForwardIterator min_dist_linear_search(ForwardIterator first,
ForwardIterator last,
GetDistanceFunction distance,
DistanceValue inf = std::numeric_limits<DistanceValue>::infinity()) {
return min_dist_linear_search(first,last,distance,std::less<DistanceValue>(),inf);
};
/**
* This function template is similar to std::min_element but can be used when the comparison
* involves computing a derived quantity (a.k.a. distance). This algorithm will search for the
* the elements in the range [first,last) with the "smallest" distances (of course, both the
* distance metric and comparison can be overriden to perform something other than the canonical
* Euclidean distance and less-than comparison, which would yield the element with minimum distance).
* This function will fill the output container with a number of nearest-neighbors.
* \tparam DistanceValue The value-type for the distance measures.
* \tparam ForwardIterator The forward-iterator type.
* \tparam OutputContainer The container type which can contain the list of nearest-neighbors (STL like container, with iterators, insert, size, and pop_back).
* \tparam GetDistanceFunction The functor type to compute the distance measure.
* \tparam CompareFunction The functor type that can compare two distance measures (strict weak-ordering).
* \param first Start of the range in which to search.
* \param last One element past the last element in the range in which to search.
* \param output The container that will have the sorted list of elements with the smallest distance.
* \param distance A callable object that returns a DistanceValue for a given element from the ForwardIterator dereferencing.
* \param compare A callable object that returns true if the first element is the preferred one (less-than) of the two.
* \param max_neighbors The maximum number of elements of smallest distance to output in the sorted list.
* \param radius The maximum distance value for which an element qualifies to be part of the output list.
*/
template <typename DistanceValue,
typename ForwardIterator,
typename OutputContainer,
typename GetDistanceFunction,
typename CompareFunction>
inline void min_dist_linear_search(ForwardIterator first,
ForwardIterator last,
OutputContainer& output,
GetDistanceFunction distance,
CompareFunction compare,
unsigned int max_neighbors = 1,
DistanceValue radius = std::numeric_limits<DistanceValue>::infinity()) {
output.clear();
if(first == last) return;
std::vector<DistanceValue> output_dist;
for(; first != last; ++first) {
DistanceValue d = distance(*first);
if(!compare(d, radius))
continue;
typename std::vector<DistanceValue>::iterator it_lo = std::lower_bound(output_dist.begin(),output_dist.end(),d,compare);
if((it_lo != output_dist.end()) || (output_dist.size() < max_neighbors)) {
output_dist.insert(it_lo, d);
typename OutputContainer::iterator itv = output.begin();
for(typename std::vector<DistanceValue>::iterator it = output_dist.begin(); (itv != output.end()) && (it != it_lo); ++itv,++it) ;
output.insert(itv, *first);
if(output.size() > max_neighbors) {
output.pop_back();
output_dist.pop_back();
};
};
};
};
/**
* This function template is similar to std::min_element but can be used when the comparison
* involves computing a derived quantity (a.k.a. distance). This algorithm will search for the
* the element in the range [first,last) which has the "smallest" distance (of course, both the
* distance metric and comparison can be overriden to perform something other than the canonical
* Euclidean distance and less-than comparison, which would yield the element with minimum distance).
* \tparam DistanceValue The value-type for the distance measures.
* \tparam ForwardIterator The forward-iterator type.
* \tparam OutputContainer The container type which can contain the list of nearest-neighbors (STL like container, with iterators, insert, size, and pop_back).
* \tparam GetDistanceFunction The functor type to compute the distance measure.
* \param first Start of the range in which to search.
* \param last One element past the last element in the range in which to search.
* \param output The container that will have the sorted list of elements with the smallest distance.
* \param distance A callable object that returns a DistanceValue for a given element from the ForwardIterator dereferencing.
* \param max_neighbors The maximum number of elements of smallest distance to output in the sorted list.
* \param radius The maximum distance value for which an element qualifies to be part of the output list.
*/
template <typename DistanceValue,
typename ForwardIterator,
typename OutputContainer,
typename GetDistanceFunction>
inline void min_dist_linear_search(ForwardIterator first,
ForwardIterator last,
OutputContainer& output,
GetDistanceFunction distance,
unsigned int max_neighbors = 1,
DistanceValue radius = std::numeric_limits<DistanceValue>::infinity()) {
min_dist_linear_search(first,last,output,distance,std::less<DistanceValue>(),max_neighbors,radius);
};
/**
* This functor template performs a linear nearest-neighbor search through a graph by invoquing
* the distance function of an underlying topology. The call operator will return the vertex
* of the graph whose position value is closest to a given position value.
* \tparam CompareFunction The functor type that can compare two distance measures (strict weak-ordering).
*/
template <typename CompareFunction = std::less<double> >
struct linear_neighbor_search {
CompareFunction m_compare;
/**
* Default constructor.
* \param compare The comparison functor for ordering the distances (strict weak ordering).
*/
linear_neighbor_search(CompareFunction compare = CompareFunction()) : m_compare(compare) { };
/**
* This function template computes the topological distance between a position and the position of a
* vertex of a graph. This function is used as a helper to the call-operator overloads.
* \tparam Vertex The vertex descriptor type.
* \tparam Topology The topology type which contains the positions.
* \tparam PositionMap The property-map type which can store the position associated with each vertex.
* \param p A position in the space.
* \param u A vertex which has a position associated to it, via the position property-map.
* \param space The topology objects which define the space in which the positions reside.
* \param position The property-map which can retrieve the position associated to each vertex.
*/
template <typename Vertex, typename Topology, typename PositionMap>
double distance(const typename boost::property_traits<PositionMap>::value_type& p,
Vertex u, const Topology& space, PositionMap position) const {
return space.distance(p, get(position, u));
};
/**
* This call-operator finds the nearest vertex of a graph, to a given position.
* \tparam Graph The graph type which can contain the vertices, should model boost::VertexListGraphConcept.
* \tparam Topology The topology type which contains the positions.
* \tparam PositionMap The property-map type which can store the position associated with each vertex.
* \param p A position in the space, to which the nearest-neighbor is sought.
* \param g A graph containing the vertices from which to find the nearest-neighbor.
* \param space The topology objects which define the space in which the positions reside.
* \param position The property-map which can retrieve the position associated to each vertex.
*/
template <typename Graph, typename Topology, typename PositionMap>
typename boost::graph_traits<Graph>::vertex_descriptor operator()(const typename boost::property_traits<PositionMap>::value_type& p,
Graph& g,
const Topology& space,
PositionMap position) {
typedef typename boost::graph_traits<Graph>::vertex_descriptor Vertex;
typedef typename boost::graph_traits<Graph>::vertex_iterator VertexIter;
VertexIter ui,ui_end; tie(ui,ui_end) = vertices(g);
return *(min_dist_linear_search(ui,ui_end,boost::bind(&linear_neighbor_search::distance<Vertex,Topology,PositionMap>,this,p,_1,space,position),m_compare,std::numeric_limits<double>::infinity()));
};
/**
* This call-operator finds the nearest vertices of a graph, to a given position.
* \tparam Graph The graph type which can contain the vertices, should
* model boost::VertexListGraphConcept.
* \tparam Topology The topology type which contains the positions.
* \tparam PositionMap The property-map type which can store the position associated
* with each vertex.
* \tparam OutputContainer The container type which can contain the list of
* nearest-neighbors (STL like container, with iterators, insert, size, and pop_back).
* \param p A position in the space, to which the nearest-neighbors are sought.
* \param output The container for the list of nearest-neighbors, the output of this
* function, and will be sorted from the nearest neighbor in increasing order.
* \param g A graph containing the vertices from which to find the nearest-neighbors.
* \param space The topology objects which define the space in which the positions reside.
* \param position The property-map which can retrieve the position associated to each vertex.
* \param max_neighbors The maximum number of neighbors to have in the list.
* \param radius The minimum distance around the position that a vertex should be in to be
* considered a neighbor.
*/
template <typename Graph, typename Topology, typename PositionMap, typename OutputContainer>
void operator()(const typename boost::property_traits<PositionMap>::value_type& p,
OutputContainer& output,
Graph& g,
const Topology& space,
PositionMap position,
unsigned int max_neighbors = 1,
double radius = std::numeric_limits<double>::infinity())
{
typedef typename boost::graph_traits<Graph>::vertex_descriptor Vertex;
typedef typename boost::graph_traits<Graph>::vertex_iterator VertexIter;
VertexIter ui,ui_end; tie(ui,ui_end) = boost::vertices(g);
min_dist_linear_search(ui,ui_end,output,
boost::bind(&linear_neighbor_search::distance<Vertex,Topology,PositionMap>,
this,p,_1,space,position),
m_compare,max_neighbors,radius);
};
};
/**
* This functor template performs a best-only nearest-neighbor search through a tree by invoquing
* the distance function of an underlying topology. The call operator will return the vertex
* of the graph whose position value is likely to be closest to a given position value. This
* algorithm is approximate. It will select a M vertices from the graph from which it starts
* a best-only search, where M is obtained as M = number_of_vertices / m_vertex_num_divider.
* \tparam CompareFunction The functor type that can compare two distance measures (strict weak-ordering).
*/
template <typename CompareFunction = std::less<double> >
struct best_only_neighbor_search {
unsigned int m_vertex_num_divider;
CompareFunction m_compare;
/**
* Default constructor.
* \param aVertexNumDivider The division factor (should be greater than 1) which determines the
* fraction of the total number of vertices that is used to stem the best-only searches.
* Typical values are between 4 and 10.
* \param compare The comparison functor for ordering the distances (strict weak ordering).
*/
best_only_neighbor_search(unsigned int aVertexNumDivider = 10,
CompareFunction compare = CompareFunction()) :
m_vertex_num_divider(aVertexNumDivider), m_compare(compare) { };
/**
* This function template computes the topological distance between a position and the position of a
* vertex of a graph. This function is used as a helper to the call-operator overloads.
* \tparam Vertex The vertex descriptor type.
* \tparam Topology The topology type which contains the positions.
* \tparam PositionMap The property-map type which can store the position associated with each vertex.
* \param p A position in the space.
* \param u A vertex which has a position associated to it, via the position property-map.
* \param space The topology objects which define the space in which the positions reside.
* \param position The property-map which can retrieve the position associated to each vertex.
*/
template <typename Vertex, typename Topology, typename PositionMap>
double distance(const typename boost::property_traits<PositionMap>::value_type& p,
Vertex u, const Topology& space, PositionMap position) const {
return space.distance(p, get(position, u));
};
template <typename Graph, typename Topology, typename PositionMap>
void search(const typename boost::property_traits<PositionMap>::value_type& p,
typename boost::graph_traits<Graph>::vertex_descriptor& u,
double& d_min, Graph& g, const Topology& space, PositionMap position) {
typedef typename boost::graph_traits<Graph>::vertex_descriptor Vertex;
typedef typename boost::graph_traits<Graph>::out_edge_iterator EdgeIter;
d_min = distance(p,u,space,position);
while(boost::out_degree(u,g)) {
Vertex v_min = u;
EdgeIter ei, ei_end;
for(boost::tie(ei,ei_end) = boost::out_edges(u,g); ei != ei_end; ++ei) {
Vertex v = boost::target(*ei,g); double d_v = distance(p,v,space,position);
if(m_compare(d_v,d_min)) {
d_min = d_v; v_min = v;
};
};
if(v_min == u)
return;
u = v_min;
};
return;
};
/**
* This call-operator finds the nearest vertex of a graph, to a given position.
* \tparam Graph The graph type which can contain the vertices, should
* model boost::VertexListGraphConcept and boost::IncidenceGraphConcept.
* \tparam Topology The topology type which contains the positions.
* \tparam PositionMap The property-map type which can store the position associated with each vertex.
* \param p A position in the space, to which the nearest-neighbor is sought.
* \param g A graph containing the vertices from which to find the nearest-neighbor,
* should be tree-structured.
* \param space The topology objects which define the space in which the positions reside.
* \param position The property-map which can retrieve the position associated to each vertex.
*/
template <typename Graph, typename Topology, typename PositionMap>
typename boost::graph_traits<Graph>::vertex_descriptor operator()(const typename boost::property_traits<PositionMap>::value_type& p,
Graph& g, const Topology& space, PositionMap position) {
typedef typename boost::graph_traits<Graph>::vertex_descriptor Vertex;
if(m_vertex_num_divider == 0)
m_vertex_num_divider = 1;
Vertex u_min = boost::vertex(std::rand() % boost::num_vertices(g),g);
double d_min;
search(p,u_min,d_min,g,space,position);
for(unsigned int i = 0; i < boost::num_vertices(g) / m_vertex_num_divider; ++i) {
double d_v; Vertex v = boost::vertex(std::rand() % boost::num_vertices(g),g);
search(p,v,d_v,g,space,position);
if(m_compare(d_v,d_min)) {
d_min = d_v; u_min = v;
};
};
return u_min;
};
template <typename Graph, typename Topology, typename PositionMap, typename OutputContainer>
void search(const typename boost::property_traits<PositionMap>::value_type& p,
typename boost::graph_traits<Graph>::vertex_descriptor u, OutputContainer& output, std::vector<double>& output_dist,
double d_min, Graph& g, const Topology& space, PositionMap position, unsigned int max_neighbors, double radius) {
typedef typename boost::graph_traits<Graph>::vertex_descriptor Vertex;
typedef typename boost::graph_traits<Graph>::out_edge_iterator EdgeIter;
if(m_compare(d_min, radius)) {
std::vector<double>::iterator it_lo = std::lower_bound(output_dist.begin(),output_dist.end(),d_min,m_compare);
if((it_lo != output_dist.end()) || (output_dist.size() < max_neighbors)) {
output_dist.insert(it_lo, d_min);
typename OutputContainer::iterator itv = output.begin();
for(std::vector<double>::iterator it = output_dist.begin(); (itv != output.end()) && (it != it_lo); ++itv,++it) ;
output.insert(itv, u);
if(output.size() > max_neighbors) {
output.pop_back();
output_dist.pop_back();
};
};
};
EdgeIter ei, ei_end;
for(boost::tie(ei,ei_end) = boost::out_edges(u,g); ei != ei_end; ++ei) {
Vertex v = boost::target(*ei,g); double d_v = distance(p,v,space,position);
if(m_compare(d_v,d_min))
search(p,v,output,output_dist,d_v,g,space,position,max_neighbors,radius);
};
};
/**
* This call-operator finds the nearest vertices of a graph, to a given position.
* \tparam Graph The graph type which can contain the vertices, should
* model boost::VertexListGraphConcept and boost::IncidenceGraphConcept.
* \tparam Topology The topology type which contains the positions.
* \tparam PositionMap The property-map type which can store the position associated
* with each vertex.
* \tparam OutputContainer The container type which can contain the list of
* nearest-neighbors (STL like container, with iterators, insert, size, and pop_back).
* \param p A position in the space, to which the nearest-neighbors are sought.
* \param output The container for the list of nearest-neighbors, the output of this
* function, and will be sorted from the nearest neighbor in increasing order.
* \param g A graph containing the vertices from which to find the nearest-neighbors,
* should be tree-structured.
* \param space The topology objects which define the space in which the positions reside.
* \param position The property-map which can retrieve the position associated to each vertex.
* \param max_neighbors The maximum number of neighbors to have in the list.
* \param radius The minimum distance around the position that a vertex should be in to be
* considered a neighbor.
*/
template <typename Graph, typename Topology, typename PositionMap, typename OutputContainer>
void operator()(const typename boost::property_traits<PositionMap>::value_type& p, OutputContainer& output,
Graph& g, const Topology& space, PositionMap position, unsigned int max_neighbors = 1, double radius = std::numeric_limits<double>::infinity()) {
typedef typename boost::graph_traits<Graph>::vertex_descriptor Vertex;
output.clear();
std::vector<double> output_dist;
if(m_vertex_num_divider == 0)
m_vertex_num_divider = 1;
for(unsigned int i = 0; i < boost::num_vertices(g) / m_vertex_num_divider; ++i) {
Vertex v = boost::vertex(std::rand() % boost::num_vertices(g),g);
double d_v = distance(p,v,space,position);
search(p,v,output,output_dist,d_v,g,space,position,max_neighbors,radius);
};
};
};
#endif
|
909a80acd2173d6fdfb04127e6cec5394bf674c6 | 492976adfdf031252c85de91a185bfd625738a0c | /src/Game/AI/AI/aiMagneGrabbedPartsRangeSelector.cpp | c6ea32c02f59a7bdfecb52a4994f5fd89daeaeb7 | [] | no_license | zeldaret/botw | 50ccb72c6d3969c0b067168f6f9124665a7f7590 | fd527f92164b8efdb746cffcf23c4f033fbffa76 | refs/heads/master | 2023-07-21T13:12:24.107437 | 2023-07-01T20:29:40 | 2023-07-01T20:29:40 | 288,736,599 | 1,350 | 117 | null | 2023-09-03T14:45:38 | 2020-08-19T13:16:30 | C++ | UTF-8 | C++ | false | false | 734 | cpp | aiMagneGrabbedPartsRangeSelector.cpp | #include "Game/AI/AI/aiMagneGrabbedPartsRangeSelector.h"
namespace uking::ai {
MagneGrabbedPartsRangeSelector::MagneGrabbedPartsRangeSelector(const InitArg& arg)
: RangeSelect(arg) {}
MagneGrabbedPartsRangeSelector::~MagneGrabbedPartsRangeSelector() = default;
bool MagneGrabbedPartsRangeSelector::init_(sead::Heap* heap) {
return RangeSelect::init_(heap);
}
void MagneGrabbedPartsRangeSelector::enter_(ksys::act::ai::InlineParamPack* params) {
RangeSelect::enter_(params);
}
void MagneGrabbedPartsRangeSelector::leave_() {
RangeSelect::leave_();
}
void MagneGrabbedPartsRangeSelector::loadParams_() {
RangeSelect::loadParams_();
getStaticParam(&mPartsName_s, "PartsName");
}
} // namespace uking::ai
|
49dcb7fb4bf77b5f72d9e123eb134dfe72054e7d | 3d98be08e31adc10cc3fdcc17c5a3c1b64c9681f | /nservicesecurity/model/NSecGroupModelAccess.cpp | 9182d698c08571b10ebcdfa85fa5f17e058c1db3 | [] | no_license | Strohhalm/nwebmedia | 3cf340e5c3c05b5aa942e97470e18f2281f8508c | 5fa80222b7618a8c44a1ec18668590f0dc198826 | refs/heads/master | 2021-01-23T14:46:29.661366 | 2015-09-04T12:21:52 | 2015-09-04T12:21:52 | 39,181,293 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 11,641 | cpp | NSecGroupModelAccess.cpp | //
// Created by strohhalm on 10.06.15.
//
#include <nmodel/NTypedResultSet.h>
#include "NSecGroupModelAccess.h"
namespace nox
{
namespace security
{
namespace model
{
NSecGroupModelAccess::NSecGroupModelAccess() : INModelAccess(NCOMPONENT_SERVICE_SECURITY, NXS(NOX_SEC_GROUP))
{
}
NSecGroupModelAccess::~NSecGroupModelAccess()
{
}
void NSecGroupModelAccess::insert(NSecGroupModel * model)
{
NAssertNull(model)
NAssertNull(model->getId())
NAssertNull(model->getValidFrom())
NAssertNull(model->getGroupName())
NAssertNull(model->getActive())
INIT_SQL_SECTION
INPreparedStatement * statement = getPreparedStatement("INSERT");
if (statement->getStatement().length() <= 0)
{
//@formatter:off
INSERT INTO TA(NOX_SEC_GROUP)
LEFT_BRACKET
FI(ID) COMMA
FI(VALID_FROM) COMMA
FI(VALID_TO) COMMA
FI(GROUP_NAME) COMMA
FI(DESCRIPTION) COMMA
FI(ACTIVE)
RIGHT_BRACKET
VALUES
LEFT_BRACKET
PA(id) COMMA
PA(validFrom) COMMA
PA(validTo) COMMA
PA(groupname) COMMA
PA(description) COMMA
PA(active)
RIGHT_BRACKET
//@formatter:on
statement->setStatement(SQL_STRING);
}
statement->clearParameters();
statement->addParameter(CreateNamedParameter(id, NInteger, model->getId()));
statement->addParameter(CreateNamedParameter(validFrom, NDate, model->getValidFrom()));
statement->addParameter(CreateNamedParameter(validTo, NDate, model->getValidTo()));
statement->addParameter(CreateNamedParameter(groupname, NString, model->getGroupName()));
statement->addParameter(CreateNamedParameter(description, NString, model->getGroupDescription()));
statement->addParameter(CreateNamedParameter(active, NBool, model->getActive()));
if (statement->execute() <= 0)
throw NRuntimeException("Could not insert a entry");
}
void NSecGroupModelAccess::update(NSecGroupModel * model)
{
NAssertNull(model)
NAssertNull(model->getId())
NAssertNull(model->getValidFrom())
NAssertNull(model->getGroupName())
NAssertNull(model->getActive())
INIT_SQL_SECTION
INPreparedStatement * statement = getPreparedStatement("UPDATE");
if (statement->getStatement().length() <= 0)
{
//@formatter:off
UPDATE TA(NOX_SEC_GROUP)
SET FI(VALID_FROM) EQ PA(validFrom) COMMA
FI(VALID_TO) EQ PA(validTo) COMMA
FI(GROUP_NAME) EQ PA(groupname) COMMA
FI(DESCRIPTION) EQ PA(description) COMMA
FI(ACTIVE) EQ PA(active)
WHERE FI(ID) EQ PA(id)
//@formatter:on
statement->setStatement(SQL_STRING);
}
statement->clearParameters();
statement->addParameter(CreateNamedParameter(id, NInteger, model->getId()));
statement->addParameter(CreateNamedParameter(validFrom, NDate, model->getValidFrom()));
statement->addParameter(CreateNamedParameter(validTo, NDate, model->getValidTo()));
statement->addParameter(CreateNamedParameter(groupname, NString, model->getGroupName()));
statement->addParameter(CreateNamedParameter(description, NString, model->getGroupDescription()));
statement->addParameter(CreateNamedParameter(active, NBool, model->getActive()));
if (statement->execute() <= 0)
throw NRuntimeException("Could not update a entry");
}
INTypedResultSet<NSecGroupModel> * NSecGroupModelAccess::read(NInteger * groupId)
{
NAssertNull(groupId)
INIT_SQL_SECTION
INPreparedStatement * statement = getPreparedStatement("READ");
if (statement->getStatement().length() <= 0)
{
//@formatter:off
SELECT FI(ID) COMMA
FI(VALID_FROM) COMMA
FI(VALID_TO) COMMA
FI(GROUP_NAME) COMMA
FI(DESCRIPTION) COMMA
FI(ACTIVE) COMMA
FROM TA(NOX_SEC_GROUP)
WHERE FI(ID) EQ PA(groupId)
//@formatter:on
statement->setStatement(SQL_STRING);
}
statement->clearParameters();
statement->addParameter(CreateNamedParameter(groupId, NInteger, groupId));
statement->executeQuery();
return new NTypedResultSet<NSecGroupModel>(statement->getResultSet());
}
INTypedResultSet<NSecGroupModel> * NSecGroupModelAccess::readGroupByName(NString * groupname, NBool * active,
NDate * date)
{
NAssertNull(groupname)
INIT_SQL_SECTION
NString statementName = "READ_BY_GROUPNAME";
if (active != NULL)
statementName += "_ACTIVE";
if (date != NULL)
statementName += "_DUE_DATE";
INPreparedStatement * statement = getPreparedStatement(statementName);
if (statement->getStatement().length() <= 0)
{
//@formatter:off
SELECT FI(ID) COMMA
FI(VALID_FROM) COMMA
FI(VALID_TO) COMMA
FI(GROUP_NAME) COMMA
FI(DESCRIPTION) COMMA
FI(ACTIVE)
FROM TA(NOX_SEC_GROUP)
WHERE FI(GROUP_NAME) EQ PA(groupname)
if (date != NULL)
{
AND FI(VALID_FROM) LT_OR_EQ PA(date)
AND LEFT_BRACKET PA(VALID_TO) GT_OR_EQ PA(date) OR
PA(VALID_TO) IS_NULL RIGHT_BRACKET
}
if (active != NULL)
{
AND FI(ACTIVE) EQ PA(active)
}
//@formatter:on
statement->setStatement(SQL_STRING);
}
statement->clearParameters();
statement->addParameter(CreateNamedParameter(groupname, NString, groupname));
if (date != NULL)
statement->addParameter(CreateNamedParameter(date, NDate, date));
if (active != NULL)
statement->addParameter(CreateNamedParameter(active, NBool, active));
statement->executeQuery();
return new NTypedResultSet<NSecGroupModel>(statement->getResultSet());
}
INTypedResultSet<NSecGroupModel> * NSecGroupModelAccess::readGroupByUserName(NString * username, NBool * active,
NDate * date)
{
NAssertNull(username)
INIT_SQL_SECTION
NString statementName = "READ_BY_USERNAME";
if (active != NULL)
statementName += "_ACTIVE";
if (date != NULL)
statementName += "_DUE_DATE";
INPreparedStatement * statement = getPreparedStatement(statementName);
if (statement->getStatement().length() <= 0)
{
//@formatter:off
SELECT FI(G.ID) COMMA
FI(G.VALID_FROM) COMMA
FI(G.VALID_TO) COMMA
FI(G.GROUP_NAME) COMMA
FI(G.DESCRIPTION) COMMA
FI(G.ACTIVE)
FROM TA(NOX_SEC_GROUP) TA(G)
WHERE FI(G.ID) IN LEFT_BRACKET
SELECT FI(UG.GROUP_ID)
FROM TA(NOX_SEC_USR_GRP) TA(UG)
WHERE FI(UG.USER_ID) IN LEFT_BRACKET
SELECT FI(U.ID)
FROM TA(NOX_SEC_USER) TA(U)
WHERE FI(U.USER_NAME) EQ PA(username)
if (date != NULL)
{
AND FI(U.VALID_FROM) LT_OR_EQ PA(date)
AND LEFT_BRACKET PA(U.VALID_TO) GT_OR_EQ PA(date) OR
PA(U.VALID_TO) IS_NULL RIGHT_BRACKET
}
if (active != NULL)
{
AND FI(ACTIVE) EQ PA(active)
}
RIGHT_BRACKET
if (date != NULL)
{
AND FI(UG.VALID_FROM) LT_OR_EQ PA(date)
AND LEFT_BRACKET FI(UG.VALID_TO) GT_OR_EQ PA(date)
FI(UG.VALID_TO) IS_NULL RIGHT_BRACKET
}
if (active != NULL)
{
AND FI(UG.ACTIVE) EQ PA(active)
}
RIGHT_BRACKET
if (date != NULL)
{
AND FI(G.VALID_FROM) LT_OR_EQ PA(date)
AND LEFT_BRACKET PA(G.VALID_TO) GT_OR_EQ PA(date) OR
PA(G.VALID_TO) IS_NULL RIGHT_BRACKET
}
if (active != NULL)
{
AND FI(G.ACTIVE) EQ PA(active)
}
//@formatter:on
statement->setStatement(SQL_STRING);
}
statement->clearParameters();
statement->addParameter(CreateNamedParameter(username, NString, username));
if (date != NULL)
statement->addParameter(CreateNamedParameter(dueDate, NDate, date));
if (active != NULL)
statement->addParameter(CreateNamedParameter(active, NBool, active));
statement->executeQuery();
return new NTypedResultSet<NSecGroupModel>(statement->getResultSet());
}
}
}
} |
67153f461736e33a355a9ccbc0c5db4440ee3bbb | 138b2169832202bb9db8dd3ab3621921b7420163 | /cpp/src/cacm_busq_local_main.cpp | 446cbd27b7038bdc36eea57b5d3624ee96955220 | [] | no_license | fcanay/algo3-tp3 | 111ec6c5401350c69c37929c8a880d19293f4749 | 3cad9e7610740cf22e2f0370be1b5d3845ca3721 | refs/heads/master | 2021-01-17T13:17:33.654788 | 2014-07-18T21:48:09 | 2014-07-18T21:48:09 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 278 | cpp | cacm_busq_local_main.cpp | #include "cacm.h"
#include "cacm_busq_local.h"
using namespace cacm;
using namespace cacm_busq_local;
int main(int argc, char const *argv[])
{
entrada e;
while (leer_instancia_listas_ordenadas(e))
{
salida s = resolver(e);
escribir_salida(s);
}
return 0;
}
|
9e601b0f42cb590ddcde92f80ebb992b7261a03d | 8911eae8c3b902b8f8128556da6e43345a011f23 | /src/bpffeature.h | df4f4839366ef59d6196db0e83db2a39a8cc5e04 | [
"Apache-2.0"
] | permissive | delphix/bpftrace | 85aeff7c2e5c5d2f6cde93a8c97e7ee13e6a457e | 5c01e35c47e5a3c37e37f6fbeac91c6119c53bd9 | refs/heads/master | 2023-08-16T19:49:47.777296 | 2021-04-29T04:19:16 | 2021-04-29T04:19:16 | 157,599,611 | 4 | 12 | Apache-2.0 | 2023-04-06T23:59:32 | 2018-11-14T19:25:09 | C++ | UTF-8 | C++ | false | false | 5,954 | h | bpffeature.h | #pragma once
#include <bcc/libbpf.h>
#include <memory>
#include <optional>
#include <string>
namespace libbpf {
#undef __BPF_FUNC_MAPPER
#include "libbpf/bpf.h"
} // namespace libbpf
namespace bpftrace {
#define DEFINE_MAP_TEST(var, maptype) \
protected: \
std::optional<bool> map_##var##_; \
\
public: \
bool has_map_##var(void) \
{ \
if (!map_##var##_.has_value()) \
map_##var##_ = std::make_optional<bool>(detect_map((maptype))); \
return *(map_##var##_); \
}
#define DEFINE_HELPER_TEST(name, progtype) \
protected: \
std::optional<bool> has_##name##_; \
\
public: \
bool has_helper_##name(void) \
{ \
if (!has_##name##_.has_value()) \
has_##name##_ = std::make_optional<bool>( \
detect_helper(libbpf::BPF_FUNC_##name, (progtype))); \
return *(has_##name##_); \
}
#define __DEFINE_PROG_TEST(var, progtype, name) \
protected: \
std::optional<bool> prog_##var##_; \
\
public: \
bool has_prog_##var(void) \
{ \
if (!prog_##var##_.has_value()) \
prog_##var##_ = std::make_optional<bool>( \
detect_prog_type((progtype), (name))); \
return *(prog_##var##_); \
}
#define DEFINE_PROG_TEST(var, progtype) __DEFINE_PROG_TEST(var, progtype, NULL)
#define DEFINE_PROG_TEST_FUNC(var, progtype, name) \
__DEFINE_PROG_TEST(var, progtype, name)
class BPFfeature
{
public:
BPFfeature() = default;
virtual ~BPFfeature() = default;
// Due to the unique_ptr usage the generated copy constructor & assignment
// don't work. Move works but doesn't make sense as the `has_*` functions
// will just reassign the unique_ptr.
// A single bpffeature should be constructed in main() and passed around,
// marking these as deleted to avoid accidentally copying/moving it.
BPFfeature(const BPFfeature&) = delete;
BPFfeature& operator=(const BPFfeature&) = delete;
BPFfeature(BPFfeature&&) = delete;
BPFfeature& operator=(BPFfeature&&) = delete;
int instruction_limit();
bool has_loop();
bool has_btf();
bool has_map_batch();
bool has_d_path();
bool has_uprobe_refcnt();
std::string report(void);
DEFINE_MAP_TEST(array, libbpf::BPF_MAP_TYPE_ARRAY);
DEFINE_MAP_TEST(hash, libbpf::BPF_MAP_TYPE_HASH);
DEFINE_MAP_TEST(percpu_array, libbpf::BPF_MAP_TYPE_PERCPU_ARRAY);
DEFINE_MAP_TEST(percpu_hash, libbpf::BPF_MAP_TYPE_ARRAY);
DEFINE_MAP_TEST(stack_trace, libbpf::BPF_MAP_TYPE_STACK_TRACE);
DEFINE_MAP_TEST(perf_event_array, libbpf::BPF_MAP_TYPE_PERF_EVENT_ARRAY);
DEFINE_HELPER_TEST(send_signal, libbpf::BPF_PROG_TYPE_KPROBE);
DEFINE_HELPER_TEST(override_return, libbpf::BPF_PROG_TYPE_KPROBE);
DEFINE_HELPER_TEST(get_current_cgroup_id, libbpf::BPF_PROG_TYPE_KPROBE);
DEFINE_HELPER_TEST(probe_read, libbpf::BPF_PROG_TYPE_KPROBE);
DEFINE_HELPER_TEST(probe_read_str, libbpf::BPF_PROG_TYPE_KPROBE);
DEFINE_HELPER_TEST(probe_read_user, libbpf::BPF_PROG_TYPE_KPROBE);
DEFINE_HELPER_TEST(probe_read_kernel, libbpf::BPF_PROG_TYPE_KPROBE);
DEFINE_HELPER_TEST(probe_read_user_str, libbpf::BPF_PROG_TYPE_KPROBE);
DEFINE_HELPER_TEST(probe_read_kernel_str, libbpf::BPF_PROG_TYPE_KPROBE);
DEFINE_HELPER_TEST(ktime_get_boot_ns, libbpf::BPF_PROG_TYPE_KPROBE);
DEFINE_PROG_TEST(kprobe, libbpf::BPF_PROG_TYPE_KPROBE);
DEFINE_PROG_TEST(tracepoint, libbpf::BPF_PROG_TYPE_TRACEPOINT);
DEFINE_PROG_TEST(perf_event, libbpf::BPF_PROG_TYPE_PERF_EVENT);
DEFINE_PROG_TEST(kfunc, libbpf::BPF_PROG_TYPE_TRACING);
DEFINE_PROG_TEST_FUNC(iter_task,
libbpf::BPF_PROG_TYPE_TRACING,
"bpf_iter__task");
DEFINE_PROG_TEST_FUNC(iter_task_file,
libbpf::BPF_PROG_TYPE_TRACING,
"bpf_iter__task_file");
protected:
std::optional<bool> has_loop_;
std::optional<bool> has_d_path_;
std::optional<int> insns_limit_;
std::optional<bool> has_map_batch_;
std::optional<bool> has_uprobe_refcnt_;
private:
bool detect_map(enum libbpf::bpf_map_type map_type);
bool detect_helper(enum libbpf::bpf_func_id func_id,
enum libbpf::bpf_prog_type prog_type);
bool detect_prog_type(enum libbpf::bpf_prog_type prog_type, const char* name);
};
#undef DEFINE_PROG_TEST
#undef DEFINE_MAP_TEST
#undef DEFINE_HELPER_TEST
} // namespace bpftrace
|
ac1edac05da45d222179b12087b418f69c42cd76 | 2abf85f2a387d6e47adf4046823e4f561a918d71 | /Tiway-var/main.cpp | 0ef2c4c402693c9da74a4e2d8d820ec28757135d | [] | no_license | tiway-deng/phpcpp- | 488345221627819ada39ed0a9a12fd8749e974f4 | b6ddc29076089151613927a4b54af643a160dfbb | refs/heads/main | 2023-06-12T14:27:20.748405 | 2021-07-09T03:14:55 | 2021-07-09T03:14:55 | 381,301,780 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,213 | cpp | main.cpp | #include <phpcpp.h>
#include <iostream>
#include<cstdio>
#include<time.h>
#include<stdlib.h>
#include <string>
/**
*
* 通过 char * 指针获取定长随机字符
* */
Php::Value gen_by_charp(Php::Parameters ¶ms)
{
//长度参数
int len = params[0];
//声明返回值长度,并返回指针给str
char* str = new char[len+1];
//srand函数是随机数发生器rand的初始化函数,我们常常使用系统时间来初始化;
//使用time函数来获取系统时间,得到的值是一个时间戳
srand(time(NULL)+1);
for (int i = 0; i < len; ++i)
{
switch ((rand() % 3))
{
case 1:
str[i] = 'A' + rand() % 26;
break;
case 2:
str[i] = 'a' + rand() % 26;
break;
default:
str[i] = '0' + rand() % 10;
break;
}
}
str[len+1] = '\0';
//str 本是Php::Value 对象
return str;
}
/**
*
* 通过 char 获取定长随机字符
* */
Php::Value gen_by_char(Php::Parameters ¶ms)
{
int len = params[0];
srand(time(NULL)+2);
char str[len+1];
int i;
for (i = 0; i < len; ++i)
{
switch ((rand() % 3))
{
case 1:
str[i] = 'A' + rand() % 26;
break;
case 2:
str[i] = 'a' + rand() % 26;
break;
default:
str[i] = '0' + rand() % 10;
break;
}
}
str[len+1] = '\0';
return str;
}
/**
*
* 通过 string 获取定长随机字符
* */
Php::Value gen_by_string(Php::Parameters ¶ms)
{
int len = params[0];
srand(time(NULL)+3);
std::string str = "";
for (int i = 0; i < len; ++i)
{
switch ((rand() % 3))
{
case 1:
str += 'A' + rand() % 26;
break;
case 2:
str += 'a' + rand() % 26;
break;
default:
str += '0' + rand() % 10;
break;
}
}
return str;
}
/**
* tell the compiler that the get_module is a pure C function
*/
extern "C" {
/**
* Function that is called by PHP right after the PHP process
* has started, and that returns an address of an internal PHP
* strucure with all the details and features of your extension
*
* @return void* a pointer to an address that is understood by PHP
*/
PHPCPP_EXPORT void *get_module()
{
// static(!) Php::Extension object that should stay in memory
// for the entire duration of the process (that's why it's static)
static Php::Extension extension("tiway", "1.0");
// @todo add your own functions, classes, namespaces to the extension
extension.add<gen_by_char>("gen_by_char", {
Php::ByRef("strLength", Php::Type::Numeric)
});
extension.add<gen_by_charp>("gen_by_charp", {
Php::ByRef("strLength", Php::Type::Numeric)
});
extension.add<gen_by_string>("gen_by_string", {
Php::ByRef("strLength", Php::Type::Numeric)
});
// return the extension
return extension;
}
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.